diff --git a/README.md b/README.md index 173008c..3ca7631 100644 --- a/README.md +++ b/README.md @@ -39,3 +39,146 @@ pnpm build ``` 在执行 `pnpm build` 之前,你可以在 `package.json` 中修改 `version` 字段,将其设置为你期望的版本号,构建完成后,项目的根目录中除了 `dist` 目录外,还会生成三个压缩包,文件名的格式统一为 `ndm-web-platform_v_`,文件格式则分别为 `zip`、`tar`、`tar.gz`。 + +## 业务结构 + +所有业务相关的页面都在 `src/pages` 目录下,路由配置在 `src/router/index.ts` 文件,除登录页之外,其余页面都作为 `src/layouts/app-layout.vue` 的子路由。 + +```bash +src/ + router/ + index.ts # 路由配置文件 + layouts/ + app-layout.vue # 布局 + pages/ + login/ + login-page.vue # 登录页面 + station/ + station-page.vue # 车站状态页面(首页) + device/ + device-page.vue # 设备诊断页面 + alarm/ + alarm-ignore-page.vue # 告警忽略管理页面 + alarm-log-page.vue # 设备告警记录页面 + log/ + call-log-page.vue # 上级调用日志页面 + vimp-log-page.vue # 视频平台日志页面 + permission/ + permission-page.vue # 权限管理页面 + error/ + not-found-page.vue # 404 页面 +``` + +## 数据轮询 + +由于后端服务的架构限制,需要前端向所有车站服务依次发送请求来获取数据,需要获取的数据包含车站状态、设备数据以及告警数据,因此需要设计一套数据轮询方案,定期从所有车站服务获取数据。 + +在项目中,`src/composables/query/` 目录下是所有数据轮询相关的代码,其中与业务相关的代码主要包括: + +- `use-line-stations-query.ts`: 查询所有车站 +- `use-line-devices-query.ts`: 查询所有设备 +- `use-line-alarms-query.ts`: 查询所有告警 +- `use-user-permission-query.ts`: 查询用户权限 + +在描述整个数据轮询流程之前,我们要明确项目中必须存在的几个关键概念: + +- 车站相关:车站query + 车站store +- 设备相关:设备query + 设备store +- 告警相关:告警query + 告警store +- 权限相关:权限query + 权限store + +整个数据轮询流程采用“单点驱动 + 变更监听 + 级联触发”的模式,如下图所示。 + +![数据轮询流程](./docs/assets/query-chain.png) + +1. 轮询入口:车站query + - 触发条件:以120秒的周期自动轮询车站列表 + - 数据流向:车站store +2. 核心调度:权限query + - 触发条件:车站query执行后触发 + - 数据流向:权限store,并计算当前用户在各车站的权限 + - 数据监听:监听车站和权限变化,触发设备query和告警query +3. 设备query & 告警query + - 触发条件:被动触发,由权限query主动调用 + - 数据流向:设备store & 告警store + +## 调试模式 + +在设置面板中有一系列与调试模式有关的设置项,主要用于开发和故障排查。 + +### 开启方式 + +调试模式默认隐藏,通过以下方式开启: + +1. 使用快捷键 `Ctrl + Alt + D` 唤起验证弹窗 +2. 输入授权码进行验证(授权码对应环境变量 `.env` 中的 `VITE_DEBUG_CODE`) +3. 验证通过后,在“系统设置”面板中会出现 **调试** 分组 + +### 设置项说明 + +#### 数据设置 + +- **显示设备原始数据** + - 控制是否在设备详情页显示“原始数据”标签页 + - 开启后可查看设备接口返回的原始 JSON 数据,便于排查字段缺失或格式错误 + +#### 网络设置 + +- **轮询车站** + - 控制是否定时拉取车站状态,进而触发权限、设备及告警数据的更新 + - 关闭后将暂停所有业务数据的自动轮询机制 +- **主动请求** + - 控制组件挂载时是否自动发起数据请求 + - 涵盖设备在线状态检测、用户登录验证等逻辑,关闭后组件在初始化时将不再自动拉取数据 +- **订阅消息** + - 控制是否通过 WebSocket (STOMP) 接收实时告警或状态推送 + - 关闭后将不再处理后端推送的实时消息 +- **模拟用户** + - 开启后使用内置的超管用户绕过登录 + - 开启时会自动进入调试模式,便于开发环境快速测试 + +#### 数据库设置 + +- **直接操作本地数据库** + - 控制某些业务逻辑(如交换机端口、安防箱回路)是否直接读写本地 IndexedDB + - 用于在无后端环境或特定测试场景下验证本地数据逻辑 + +## 离线开发 + +项目支持在无后端服务的情况下正常启动,具体操作取决于你的本地环境是否已有历史数据。 + +### 场景一:已有本地缓存 + +如果你的浏览器曾接入过现场环境,IndexedDB 中已保存了车站、设备等数据,只需在设置中关闭网络请求即可进入离线模式: + +1. 开启调试模式(`Ctrl + Alt + D`)。 +2. 在“网络设置”中,关闭 **轮询车站**、**主动请求** 和 **订阅消息**。 +3. 此时平台将停止向后端发起请求,直接展示本地缓存的历史数据。 + +### 场景二:全新环境启动(新人推荐) + +如果你是首次拉取项目且无法连接后端,需要按以下步骤操作: + +1. **模拟登录** + 在登录页按 `F12` 打开控制台,输入以下命令强制进入平台: + + ```javascript + window.$mockUser.value = true; + ``` + + 执行后平台将自动完成以下操作: + - 注入测试 Token 和管理员身份信息 + - 关闭所有网络请求(轮询、主动请求、消息订阅) + - 开启调试模式 + - 自动跳转至平台首页 + +2. **导入模拟数据** + 进入平台后,页面默认为空。需导入预设数据以填充内容: + - 打开“系统设置”(已自动开启调试模式)。 + - 在 **调试** -> **数据库设置** 中,勾选 **直接操作本地数据库**。 + - 点击该选项下方的 **导入数据** 按钮。 + - 依次导入项目根目录 `docs/data/` 下的三个文件: + - `ndm-station-store.json`(车站数据) + - `ndm-device-store.json`(设备数据) + - `ndm-alarm-store.json`(告警数据) + > **注意**:每次导入一个文件后,平台会自动刷新页面以应用数据。请等待刷新完成后,重新打开设置面板导入下一个文件。 diff --git a/docs/assets/query-chain.png b/docs/assets/query-chain.png new file mode 100644 index 0000000..3fee42e Binary files /dev/null and b/docs/assets/query-chain.png differ diff --git a/docs/data/ndm-alarm-store.json b/docs/data/ndm-alarm-store.json new file mode 100644 index 0000000..d3cd20d --- /dev/null +++ b/docs/data/ndm-alarm-store.json @@ -0,0 +1,527708 @@ +{ + "lineAlarms": { + "1001": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112440690227240", + "createdBy": null, + "createdTime": "2026-02-02 00:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:56", + "echoMap": {}, + "alarmNo": "1290023554", + "alarmDate": "1769962615941", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112449280161818", + "createdBy": null, + "createdTime": "2026-02-02 00:25:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:55", + "echoMap": {}, + "alarmNo": "1290023555", + "alarmDate": "1769963155896", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112457870096386", + "createdBy": null, + "createdTime": "2026-02-02 00:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:55", + "echoMap": {}, + "alarmNo": "1290023556", + "alarmDate": "1769963575926", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112466460030988", + "createdBy": null, + "createdTime": "2026-02-02 00:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:56", + "echoMap": {}, + "alarmNo": "1290023557", + "alarmDate": "1769963995879", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112560949311514", + "createdBy": null, + "createdTime": "2026-02-02 02:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:23:55", + "echoMap": {}, + "alarmNo": "1290023558", + "alarmDate": "1769970176058", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112616783886367", + "createdBy": null, + "createdTime": "2026-02-02 03:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:56", + "echoMap": {}, + "alarmNo": "1290023559", + "alarmDate": "1769974076105", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112651143624726", + "createdBy": null, + "createdTime": "2026-02-02 04:08:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:56", + "echoMap": {}, + "alarmNo": "1290023560", + "alarmDate": "1769976536341", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112676913428513", + "createdBy": null, + "createdTime": "2026-02-02 04:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:55", + "echoMap": {}, + "alarmNo": "1290023561", + "alarmDate": "1769978216273", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112689798330403", + "createdBy": null, + "createdTime": "2026-02-02 04:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:55", + "echoMap": {}, + "alarmNo": "1290023562", + "alarmDate": "1769979115698", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112779992643616", + "createdBy": null, + "createdTime": "2026-02-02 06:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:55", + "echoMap": {}, + "alarmNo": "1290023563", + "alarmDate": "1769985655677", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112788582578200", + "createdBy": null, + "createdTime": "2026-02-02 06:47:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:49", + "echoMap": {}, + "alarmNo": "1290023564", + "alarmDate": "1769986062970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112900251727875", + "createdBy": null, + "createdTime": "2026-02-02 08:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:55", + "echoMap": {}, + "alarmNo": "1290023565", + "alarmDate": "1769992795715", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112947496368171", + "createdBy": null, + "createdTime": "2026-02-02 09:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:55", + "echoMap": {}, + "alarmNo": "1290023566", + "alarmDate": "1769995675600", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112977561139209", + "createdBy": null, + "createdTime": "2026-02-02 09:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:55", + "echoMap": {}, + "alarmNo": "1290023568", + "alarmDate": "1769997055779", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113003330943009", + "createdBy": null, + "createdTime": "2026-02-02 10:17:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:39", + "echoMap": {}, + "alarmNo": "1290023569", + "alarmDate": "1769998657362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113054870550571", + "createdBy": null, + "createdTime": "2026-02-02 11:08:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:29", + "echoMap": {}, + "alarmNo": "1290023570", + "alarmDate": "1770001709266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060014", + "deviceName": "[304](10)虹桥火车站#3台扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113119295059974", + "createdBy": null, + "createdTime": "2026-02-02 12:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:55", + "echoMap": {}, + "alarmNo": "1290023572", + "alarmDate": "1770005095772", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113127884994613", + "createdBy": null, + "createdTime": "2026-02-02 12:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:55", + "echoMap": {}, + "alarmNo": "1290023573", + "alarmDate": "1770005815666", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113145064863786", + "createdBy": null, + "createdTime": "2026-02-02 12:37:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:02", + "echoMap": {}, + "alarmNo": "1290023575", + "alarmDate": "1770007057580", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113170834667566", + "createdBy": null, + "createdTime": "2026-02-02 13:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:55", + "echoMap": {}, + "alarmNo": "1290023576", + "alarmDate": "1770008755603", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113183719569445", + "createdBy": null, + "createdTime": "2026-02-02 13:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:55", + "echoMap": {}, + "alarmNo": "1290023577", + "alarmDate": "1770009475570", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113192309504000", + "createdBy": null, + "createdTime": "2026-02-02 13:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:55", + "echoMap": {}, + "alarmNo": "1290023578", + "alarmDate": "1770009775519", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113222374275075", + "createdBy": null, + "createdTime": "2026-02-02 13:53:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:55", + "echoMap": {}, + "alarmNo": "1290023579", + "alarmDate": "1770011635604", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113269618915365", + "createdBy": null, + "createdTime": "2026-02-02 14:37:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "alarmNo": "1290023580", + "alarmDate": "1770014257589", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113273913882626", + "createdBy": null, + "createdTime": "2026-02-02 14:37:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "alarmNo": "1290023581", + "alarmDate": "1770014275561", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [ + { + "id": "723112973266171910", + "createdBy": null, + "createdTime": "2026-02-02 09:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:30", + "echoMap": {}, + "alarmNo": "1290023567", + "alarmDate": "1769996824322", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1001040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1001" + }, + { + "id": "723113080640354306", + "createdBy": null, + "createdTime": "2026-02-02 11:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:26", + "echoMap": {}, + "alarmNo": "1290023571", + "alarmDate": "1770002887137", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1001040012", + "deviceName": "华为前端交换机11", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1001" + }, + { + "id": "723113132179961872", + "createdBy": null, + "createdTime": "2026-02-02 12:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:03", + "echoMap": {}, + "alarmNo": "1290023574", + "alarmDate": "1770006166345", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1001040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1001" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113273913882626", + "createdBy": null, + "createdTime": "2026-02-02 14:37:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "alarmNo": "1290023581", + "alarmDate": "1770014275561", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113269618915365", + "createdBy": null, + "createdTime": "2026-02-02 14:37:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "alarmNo": "1290023580", + "alarmDate": "1770014257589", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113222374275075", + "createdBy": null, + "createdTime": "2026-02-02 13:53:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:55", + "echoMap": {}, + "alarmNo": "1290023579", + "alarmDate": "1770011635604", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113192309504000", + "createdBy": null, + "createdTime": "2026-02-02 13:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:55", + "echoMap": {}, + "alarmNo": "1290023578", + "alarmDate": "1770009775519", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113183719569445", + "createdBy": null, + "createdTime": "2026-02-02 13:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:55", + "echoMap": {}, + "alarmNo": "1290023577", + "alarmDate": "1770009475570", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113170834667566", + "createdBy": null, + "createdTime": "2026-02-02 13:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:55", + "echoMap": {}, + "alarmNo": "1290023576", + "alarmDate": "1770008755603", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113145064863786", + "createdBy": null, + "createdTime": "2026-02-02 12:37:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:02", + "echoMap": {}, + "alarmNo": "1290023575", + "alarmDate": "1770007057580", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113132179961872", + "createdBy": null, + "createdTime": "2026-02-02 12:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:03", + "echoMap": {}, + "alarmNo": "1290023574", + "alarmDate": "1770006166345", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1001040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1001" + }, + { + "id": "723113127884994613", + "createdBy": null, + "createdTime": "2026-02-02 12:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:55", + "echoMap": {}, + "alarmNo": "1290023573", + "alarmDate": "1770005815666", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113119295059974", + "createdBy": null, + "createdTime": "2026-02-02 12:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:55", + "echoMap": {}, + "alarmNo": "1290023572", + "alarmDate": "1770005095772", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113080640354306", + "createdBy": null, + "createdTime": "2026-02-02 11:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:26", + "echoMap": {}, + "alarmNo": "1290023571", + "alarmDate": "1770002887137", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1001040012", + "deviceName": "华为前端交换机11", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1001" + }, + { + "id": "723113054870550571", + "createdBy": null, + "createdTime": "2026-02-02 11:08:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:29", + "echoMap": {}, + "alarmNo": "1290023570", + "alarmDate": "1770001709266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060014", + "deviceName": "[304](10)虹桥火车站#3台扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723113003330943009", + "createdBy": null, + "createdTime": "2026-02-02 10:17:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:39", + "echoMap": {}, + "alarmNo": "1290023569", + "alarmDate": "1769998657362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112977561139209", + "createdBy": null, + "createdTime": "2026-02-02 09:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:55", + "echoMap": {}, + "alarmNo": "1290023568", + "alarmDate": "1769997055779", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112973266171910", + "createdBy": null, + "createdTime": "2026-02-02 09:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:30", + "echoMap": {}, + "alarmNo": "1290023567", + "alarmDate": "1769996824322", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1001040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1001" + }, + { + "id": "723112947496368171", + "createdBy": null, + "createdTime": "2026-02-02 09:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:55", + "echoMap": {}, + "alarmNo": "1290023566", + "alarmDate": "1769995675600", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112900251727875", + "createdBy": null, + "createdTime": "2026-02-02 08:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:55", + "echoMap": {}, + "alarmNo": "1290023565", + "alarmDate": "1769992795715", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112788582578200", + "createdBy": null, + "createdTime": "2026-02-02 06:47:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:49", + "echoMap": {}, + "alarmNo": "1290023564", + "alarmDate": "1769986062970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1001060055", + "deviceName": "[720](10)虹桥火车站6#道岔", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112779992643616", + "createdBy": null, + "createdTime": "2026-02-02 06:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:55", + "echoMap": {}, + "alarmNo": "1290023563", + "alarmDate": "1769985655677", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112689798330403", + "createdBy": null, + "createdTime": "2026-02-02 04:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:55", + "echoMap": {}, + "alarmNo": "1290023562", + "alarmDate": "1769979115698", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112676913428513", + "createdBy": null, + "createdTime": "2026-02-02 04:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:55", + "echoMap": {}, + "alarmNo": "1290023561", + "alarmDate": "1769978216273", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112651143624726", + "createdBy": null, + "createdTime": "2026-02-02 04:08:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:56", + "echoMap": {}, + "alarmNo": "1290023560", + "alarmDate": "1769976536341", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112616783886367", + "createdBy": null, + "createdTime": "2026-02-02 03:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:56", + "echoMap": {}, + "alarmNo": "1290023559", + "alarmDate": "1769974076105", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112560949311514", + "createdBy": null, + "createdTime": "2026-02-02 02:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:23:55", + "echoMap": {}, + "alarmNo": "1290023558", + "alarmDate": "1769970176058", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112466460030988", + "createdBy": null, + "createdTime": "2026-02-02 00:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:56", + "echoMap": {}, + "alarmNo": "1290023557", + "alarmDate": "1769963995879", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112457870096386", + "createdBy": null, + "createdTime": "2026-02-02 00:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:55", + "echoMap": {}, + "alarmNo": "1290023556", + "alarmDate": "1769963575926", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112449280161818", + "createdBy": null, + "createdTime": "2026-02-02 00:25:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:55", + "echoMap": {}, + "alarmNo": "1290023555", + "alarmDate": "1769963155896", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + }, + { + "id": "723112440690227240", + "createdBy": null, + "createdTime": "2026-02-02 00:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:56", + "echoMap": {}, + "alarmNo": "1290023554", + "alarmDate": "1769962615941", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1001060004", + "deviceName": "[602](10)虹桥火车站弱电综合室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1001" + } + ] + }, + "1002": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112573834203231", + "createdBy": null, + "createdTime": "2026-02-02 00:17:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:25", + "echoMap": {}, + "alarmNo": "1310103232", + "alarmDate": "1769962646265", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112578129170450", + "createdBy": null, + "createdTime": "2026-02-02 00:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:18:05", + "echoMap": {}, + "alarmNo": "1310103233", + "alarmDate": "1769962683977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112608193941535", + "createdBy": null, + "createdTime": "2026-02-02 00:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:48", + "echoMap": {}, + "alarmNo": "1310103235", + "alarmDate": "1769964466761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112616783876149", + "createdBy": null, + "createdTime": "2026-02-02 01:08:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:20", + "echoMap": {}, + "alarmNo": "1310103236", + "alarmDate": "1769965699484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112625373810729", + "createdBy": null, + "createdTime": "2026-02-02 01:17:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:30", + "echoMap": {}, + "alarmNo": "1310103237", + "alarmDate": "1769966248658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112642553679873", + "createdBy": null, + "createdTime": "2026-02-02 01:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:02", + "echoMap": {}, + "alarmNo": "1310103238", + "alarmDate": "1769967481298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112664028516359", + "createdBy": null, + "createdTime": "2026-02-02 02:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:44", + "echoMap": {}, + "alarmNo": "1310103239", + "alarmDate": "1769969263287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112676913418307", + "createdBy": null, + "createdTime": "2026-02-02 02:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:16", + "echoMap": {}, + "alarmNo": "1310103240", + "alarmDate": "1769970494994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112694093287449", + "createdBy": null, + "createdTime": "2026-02-02 02:57:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:58", + "echoMap": {}, + "alarmNo": "1310103241", + "alarmDate": "1769972276834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112719863091252", + "createdBy": null, + "createdTime": "2026-02-02 03:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:42", + "echoMap": {}, + "alarmNo": "1310103242", + "alarmDate": "1769974060715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112737042960436", + "createdBy": null, + "createdTime": "2026-02-02 03:48:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:15", + "echoMap": {}, + "alarmNo": "1310103243", + "alarmDate": "1769975294375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112758517796885", + "createdBy": null, + "createdTime": "2026-02-02 04:17:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:58", + "echoMap": {}, + "alarmNo": "1310103244", + "alarmDate": "1769977077288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112784287600657", + "createdBy": null, + "createdTime": "2026-02-02 04:47:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:39", + "echoMap": {}, + "alarmNo": "1310103245", + "alarmDate": "1769978858172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112801467469831", + "createdBy": null, + "createdTime": "2026-02-02 05:08:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:12", + "echoMap": {}, + "alarmNo": "1310103246", + "alarmDate": "1769980090842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112831532240928", + "createdBy": null, + "createdTime": "2026-02-02 05:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:52", + "echoMap": {}, + "alarmNo": "1310103247", + "alarmDate": "1769981870782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112840122175577", + "createdBy": null, + "createdTime": "2026-02-02 05:47:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:57", + "echoMap": {}, + "alarmNo": "1310103248", + "alarmDate": "1769982446034", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112857302044691", + "createdBy": null, + "createdTime": "2026-02-02 05:58:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:25", + "echoMap": {}, + "alarmNo": "1310103249", + "alarmDate": "1769983104386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112861597011984", + "createdBy": null, + "createdTime": "2026-02-02 06:07:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:33", + "echoMap": {}, + "alarmNo": "1310103250", + "alarmDate": "1769983651549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112878776881185", + "createdBy": null, + "createdTime": "2026-02-02 06:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:05", + "echoMap": {}, + "alarmNo": "1310103251", + "alarmDate": "1769984884346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112908841652240", + "createdBy": null, + "createdTime": "2026-02-02 06:57:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:57", + "echoMap": {}, + "alarmNo": "1310103252", + "alarmDate": "1769986649195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112908841652260", + "createdBy": null, + "createdTime": "2026-02-02 06:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:47", + "echoMap": {}, + "alarmNo": "1310103253", + "alarmDate": "1769986666244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112913136619560", + "createdBy": null, + "createdTime": "2026-02-02 07:07:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:35", + "echoMap": {}, + "alarmNo": "1310103254", + "alarmDate": "1769987249100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112926021521443", + "createdBy": null, + "createdTime": "2026-02-02 07:18:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:20", + "echoMap": {}, + "alarmNo": "1310103255", + "alarmDate": "1769987898864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112934611456019", + "createdBy": null, + "createdTime": "2026-02-02 07:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:46", + "echoMap": {}, + "alarmNo": "1310103256", + "alarmDate": "1769988460376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112938906423296", + "createdBy": null, + "createdTime": "2026-02-02 07:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:04", + "echoMap": {}, + "alarmNo": "1310103257", + "alarmDate": "1769988478335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112947496357915", + "createdBy": null, + "createdTime": "2026-02-02 07:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:34", + "echoMap": {}, + "alarmNo": "1310103258", + "alarmDate": "1769989081616", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112956086292483", + "createdBy": null, + "createdTime": "2026-02-02 07:47:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:39", + "echoMap": {}, + "alarmNo": "1310103260", + "alarmDate": "1769989652560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112956086292493", + "createdBy": null, + "createdTime": "2026-02-02 07:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:03", + "echoMap": {}, + "alarmNo": "1310103261", + "alarmDate": "1769989681794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259837", + "createdBy": null, + "createdTime": "2026-02-02 07:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:51", + "echoMap": {}, + "alarmNo": "1310103262", + "alarmDate": "1769990264889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259856", + "createdBy": null, + "createdTime": "2026-02-02 07:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:03", + "echoMap": {}, + "alarmNo": "1310103263", + "alarmDate": "1769990270926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259872", + "createdBy": null, + "createdTime": "2026-02-02 07:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:10", + "echoMap": {}, + "alarmNo": "1310103264", + "alarmDate": "1769990282933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259883", + "createdBy": null, + "createdTime": "2026-02-02 07:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:38", + "echoMap": {}, + "alarmNo": "1310103265", + "alarmDate": "1769990300852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112968971194400", + "createdBy": null, + "createdTime": "2026-02-02 08:07:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:51", + "echoMap": {}, + "alarmNo": "1310103266", + "alarmDate": "1769990852184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112977561128964", + "createdBy": null, + "createdTime": "2026-02-02 08:17:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:46", + "echoMap": {}, + "alarmNo": "1310103267", + "alarmDate": "1769991464632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112977561128980", + "createdBy": null, + "createdTime": "2026-02-02 08:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:08", + "echoMap": {}, + "alarmNo": "1310103268", + "alarmDate": "1769991482160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112977561128991", + "createdBy": null, + "createdTime": "2026-02-02 08:18:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:44", + "echoMap": {}, + "alarmNo": "1310103269", + "alarmDate": "1769991500175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112981856096299", + "createdBy": null, + "createdTime": "2026-02-02 08:27:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:41", + "echoMap": {}, + "alarmNo": "1310103270", + "alarmDate": "1769992045734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112990446030894", + "createdBy": null, + "createdTime": "2026-02-02 08:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:48", + "echoMap": {}, + "alarmNo": "1310103271", + "alarmDate": "1769992661106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112994740998157", + "createdBy": null, + "createdTime": "2026-02-02 08:38:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:20", + "echoMap": {}, + "alarmNo": "1310103272", + "alarmDate": "1769992698569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112999035965460", + "createdBy": null, + "createdTime": "2026-02-02 08:47:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:43", + "echoMap": {}, + "alarmNo": "1310103273", + "alarmDate": "1769993245275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112999035965493", + "createdBy": null, + "createdTime": "2026-02-02 08:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:07", + "echoMap": {}, + "alarmNo": "1310103274", + "alarmDate": "1769993280649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113003330932744", + "createdBy": null, + "createdTime": "2026-02-02 08:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:25", + "echoMap": {}, + "alarmNo": "1310103275", + "alarmDate": "1769993298667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113003330932746", + "createdBy": null, + "createdTime": "2026-02-02 08:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:59", + "echoMap": {}, + "alarmNo": "1310103276", + "alarmDate": "1769993299337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113007625900045", + "createdBy": null, + "createdTime": "2026-02-02 08:57:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:43", + "echoMap": {}, + "alarmNo": "1310103277", + "alarmDate": "1769993850691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113011920867422", + "createdBy": null, + "createdTime": "2026-02-02 09:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:02", + "echoMap": {}, + "alarmNo": "1310103278", + "alarmDate": "1769994467196", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113016215834634", + "createdBy": null, + "createdTime": "2026-02-02 09:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:01", + "echoMap": {}, + "alarmNo": "1310103279", + "alarmDate": "1769994480245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510801990", + "createdBy": null, + "createdTime": "2026-02-02 09:17:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:29", + "echoMap": {}, + "alarmNo": "1310103280", + "alarmDate": "1769995045127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510801996", + "createdBy": null, + "createdTime": "2026-02-02 09:17:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:49", + "echoMap": {}, + "alarmNo": "1310103281", + "alarmDate": "1769995048655", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802012", + "createdBy": null, + "createdTime": "2026-02-02 09:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:48", + "echoMap": {}, + "alarmNo": "1310103282", + "alarmDate": "1769995061037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802030", + "createdBy": null, + "createdTime": "2026-02-02 09:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:05", + "echoMap": {}, + "alarmNo": "1310103283", + "alarmDate": "1769995079245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802038", + "createdBy": null, + "createdTime": "2026-02-02 09:18:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:16", + "echoMap": {}, + "alarmNo": "1310103284", + "alarmDate": "1769995085171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802047", + "createdBy": null, + "createdTime": "2026-02-02 09:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:21", + "echoMap": {}, + "alarmNo": "1310103285", + "alarmDate": "1769995090825", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113029100736559", + "createdBy": null, + "createdTime": "2026-02-02 09:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:47", + "echoMap": {}, + "alarmNo": "1310103286", + "alarmDate": "1769995661217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113033395703860", + "createdBy": null, + "createdTime": "2026-02-02 09:37:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:43", + "echoMap": {}, + "alarmNo": "1310103287", + "alarmDate": "1769996262202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113041985638430", + "createdBy": null, + "createdTime": "2026-02-02 09:47:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:04", + "echoMap": {}, + "alarmNo": "1310103288", + "alarmDate": "1769996871651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113050575573015", + "createdBy": null, + "createdTime": "2026-02-02 09:58:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:17", + "echoMap": {}, + "alarmNo": "1310103289", + "alarmDate": "1769997495885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113059165507626", + "createdBy": null, + "createdTime": "2026-02-02 10:17:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:45", + "echoMap": {}, + "alarmNo": "1310103290", + "alarmDate": "1769998659014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113063460474901", + "createdBy": null, + "createdTime": "2026-02-02 10:18:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:07", + "echoMap": {}, + "alarmNo": "1310103291", + "alarmDate": "1769998701168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113067755442185", + "createdBy": null, + "createdTime": "2026-02-02 10:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:59", + "echoMap": {}, + "alarmNo": "1310103292", + "alarmDate": "1769999277713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113072050409528", + "createdBy": null, + "createdTime": "2026-02-02 10:37:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:55", + "echoMap": {}, + "alarmNo": "1310103293", + "alarmDate": "1769999861498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113080640344094", + "createdBy": null, + "createdTime": "2026-02-02 10:47:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:43", + "echoMap": {}, + "alarmNo": "1310103294", + "alarmDate": "1770000445466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113080640344203", + "createdBy": null, + "createdTime": "2026-02-02 10:57:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:31", + "echoMap": {}, + "alarmNo": "1310103295", + "alarmDate": "1770001046959", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113080640344222", + "createdBy": null, + "createdTime": "2026-02-02 10:57:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:40", + "echoMap": {}, + "alarmNo": "1310103296", + "alarmDate": "1770001058625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113084935311412", + "createdBy": null, + "createdTime": "2026-02-02 10:58:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:25", + "echoMap": {}, + "alarmNo": "1310103297", + "alarmDate": "1770001098727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113089230278820", + "createdBy": null, + "createdTime": "2026-02-02 11:08:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:25", + "echoMap": {}, + "alarmNo": "1310103298", + "alarmDate": "1770001698876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113097820213314", + "createdBy": null, + "createdTime": "2026-02-02 11:18:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:12", + "echoMap": {}, + "alarmNo": "1310103299", + "alarmDate": "1770002280006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113097820213330", + "createdBy": null, + "createdTime": "2026-02-02 11:18:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:13", + "echoMap": {}, + "alarmNo": "1310103300", + "alarmDate": "1770002292282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113106410147884", + "createdBy": null, + "createdTime": "2026-02-02 11:27:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:33", + "echoMap": {}, + "alarmNo": "1310103301", + "alarmDate": "1770002846766", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113110705115142", + "createdBy": null, + "createdTime": "2026-02-02 11:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:47", + "echoMap": {}, + "alarmNo": "1310103302", + "alarmDate": "1770002861108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113110705115153", + "createdBy": null, + "createdTime": "2026-02-02 11:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:50", + "echoMap": {}, + "alarmNo": "1310103303", + "alarmDate": "1770002899915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113119295049747", + "createdBy": null, + "createdTime": "2026-02-02 11:37:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:13", + "echoMap": {}, + "alarmNo": "1310103304", + "alarmDate": "1770003446234", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113119295049774", + "createdBy": null, + "createdTime": "2026-02-02 11:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:47", + "echoMap": {}, + "alarmNo": "1310103305", + "alarmDate": "1770003461234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113123590017056", + "createdBy": null, + "createdTime": "2026-02-02 11:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:08", + "echoMap": {}, + "alarmNo": "1310103306", + "alarmDate": "1770003482222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113123590017076", + "createdBy": null, + "createdTime": "2026-02-02 11:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:23", + "echoMap": {}, + "alarmNo": "1310103307", + "alarmDate": "1770003491540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113127884984335", + "createdBy": null, + "createdTime": "2026-02-02 11:47:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:55", + "echoMap": {}, + "alarmNo": "1310103308", + "alarmDate": "1770004074210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113132179951666", + "createdBy": null, + "createdTime": "2026-02-02 11:57:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:53", + "echoMap": {}, + "alarmNo": "1310103309", + "alarmDate": "1770004646205", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113132179951708", + "createdBy": null, + "createdTime": "2026-02-02 11:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:05", + "echoMap": {}, + "alarmNo": "1310103310", + "alarmDate": "1770004678577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113140769886232", + "createdBy": null, + "createdTime": "2026-02-02 12:07:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:28", + "echoMap": {}, + "alarmNo": "1310103311", + "alarmDate": "1770005245679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113140769886237", + "createdBy": null, + "createdTime": "2026-02-02 12:07:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:51", + "echoMap": {}, + "alarmNo": "1310103312", + "alarmDate": "1770005256687", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113145064853506", + "createdBy": null, + "createdTime": "2026-02-02 12:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:04", + "echoMap": {}, + "alarmNo": "1310103313", + "alarmDate": "1770005277720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113145064853517", + "createdBy": null, + "createdTime": "2026-02-02 12:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:26", + "echoMap": {}, + "alarmNo": "1310103314", + "alarmDate": "1770005294029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788119", + "createdBy": null, + "createdTime": "2026-02-02 12:17:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:28", + "echoMap": {}, + "alarmNo": "1310103315", + "alarmDate": "1770005845881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788124", + "createdBy": null, + "createdTime": "2026-02-02 12:17:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:36", + "echoMap": {}, + "alarmNo": "1310103316", + "alarmDate": "1770005855096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788128", + "createdBy": null, + "createdTime": "2026-02-02 12:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:46", + "echoMap": {}, + "alarmNo": "1310103317", + "alarmDate": "1770005859887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788222", + "createdBy": null, + "createdTime": "2026-02-02 12:27:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:43", + "echoMap": {}, + "alarmNo": "1310103318", + "alarmDate": "1770006455586", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113162244722721", + "createdBy": null, + "createdTime": "2026-02-02 12:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:03", + "echoMap": {}, + "alarmNo": "1310103319", + "alarmDate": "1770007071199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113166539689989", + "createdBy": null, + "createdTime": "2026-02-02 12:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:10", + "echoMap": {}, + "alarmNo": "1310103320", + "alarmDate": "1770007088754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113166539689991", + "createdBy": null, + "createdTime": "2026-02-02 12:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:42", + "echoMap": {}, + "alarmNo": "1310103321", + "alarmDate": "1770007088868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113179424591924", + "createdBy": null, + "createdTime": "2026-02-02 12:57:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:44", + "echoMap": {}, + "alarmNo": "1310103322", + "alarmDate": "1770008252495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113183719559187", + "createdBy": null, + "createdTime": "2026-02-02 12:58:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:07", + "echoMap": {}, + "alarmNo": "1310103323", + "alarmDate": "1770008298433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113183719559192", + "createdBy": null, + "createdTime": "2026-02-02 12:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:44", + "echoMap": {}, + "alarmNo": "1310103324", + "alarmDate": "1770008300588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113192309493804", + "createdBy": null, + "createdTime": "2026-02-02 13:07:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:51", + "echoMap": {}, + "alarmNo": "1310103325", + "alarmDate": "1770008869774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113196604461069", + "createdBy": null, + "createdTime": "2026-02-02 13:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:08", + "echoMap": {}, + "alarmNo": "1310103326", + "alarmDate": "1770008881664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113213784330273", + "createdBy": null, + "createdTime": "2026-02-02 13:27:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:17", + "echoMap": {}, + "alarmNo": "1310103327", + "alarmDate": "1770010046449", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113213784330277", + "createdBy": null, + "createdTime": "2026-02-02 13:27:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:27", + "echoMap": {}, + "alarmNo": "1310103328", + "alarmDate": "1770010047448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060079", + "deviceName": "[311](10)2号航站楼2#台扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113222374264839", + "createdBy": null, + "createdTime": "2026-02-02 13:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:43", + "echoMap": {}, + "alarmNo": "1310103329", + "alarmDate": "1770010080975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113226669232153", + "createdBy": null, + "createdTime": "2026-02-02 13:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:23", + "echoMap": {}, + "alarmNo": "1310103330", + "alarmDate": "1770010102345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113235259166753", + "createdBy": null, + "createdTime": "2026-02-02 13:37:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:32", + "echoMap": {}, + "alarmNo": "1310103331", + "alarmDate": "1770010650527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113239554134043", + "createdBy": null, + "createdTime": "2026-02-02 13:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:07", + "echoMap": {}, + "alarmNo": "1310103332", + "alarmDate": "1770010681116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113243849101324", + "createdBy": null, + "createdTime": "2026-02-02 13:38:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:06", + "echoMap": {}, + "alarmNo": "1310103333", + "alarmDate": "1770010699215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113265323937842", + "createdBy": null, + "createdTime": "2026-02-02 13:57:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:30", + "echoMap": {}, + "alarmNo": "1310103334", + "alarmDate": "1770011846017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113269618905106", + "createdBy": null, + "createdTime": "2026-02-02 13:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:05", + "echoMap": {}, + "alarmNo": "1310103335", + "alarmDate": "1770011861430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113269618905112", + "createdBy": null, + "createdTime": "2026-02-02 13:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:49", + "echoMap": {}, + "alarmNo": "1310103336", + "alarmDate": "1770011862991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113273913872410", + "createdBy": null, + "createdTime": "2026-02-02 13:58:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:05", + "echoMap": {}, + "alarmNo": "1310103337", + "alarmDate": "1770011884269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113273913872427", + "createdBy": null, + "createdTime": "2026-02-02 13:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:22", + "echoMap": {}, + "alarmNo": "1310103338", + "alarmDate": "1770011894043", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113286798774289", + "createdBy": null, + "createdTime": "2026-02-02 14:07:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:54", + "echoMap": {}, + "alarmNo": "1310103339", + "alarmDate": "1770012461643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113286798774309", + "createdBy": null, + "createdTime": "2026-02-02 14:07:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:57", + "echoMap": {}, + "alarmNo": "1310103340", + "alarmDate": "1770012470234", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113295388708894", + "createdBy": null, + "createdTime": "2026-02-02 14:17:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:35", + "echoMap": {}, + "alarmNo": "1310103341", + "alarmDate": "1770013045607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113299683676169", + "createdBy": null, + "createdTime": "2026-02-02 14:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:47", + "echoMap": {}, + "alarmNo": "1310103342", + "alarmDate": "1770013060759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113299683676171", + "createdBy": null, + "createdTime": "2026-02-02 14:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:55", + "echoMap": {}, + "alarmNo": "1310103343", + "alarmDate": "1770013060911", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113303978643466", + "createdBy": null, + "createdTime": "2026-02-02 14:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:05", + "echoMap": {}, + "alarmNo": "1310103344", + "alarmDate": "1770013090787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113316863545355", + "createdBy": null, + "createdTime": "2026-02-02 14:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "alarmNo": "1310103345", + "alarmDate": "1770013662950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113316863545364", + "createdBy": null, + "createdTime": "2026-02-02 14:27:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:46", + "echoMap": {}, + "alarmNo": "1310103346", + "alarmDate": "1770013665232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113325453479968", + "createdBy": null, + "createdTime": "2026-02-02 14:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:46", + "echoMap": {}, + "alarmNo": "1310103347", + "alarmDate": "1770013702049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113346928316417", + "createdBy": null, + "createdTime": "2026-02-02 14:38:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "alarmNo": "1310103348", + "alarmDate": "1770014302191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723112586719105066", + "createdBy": null, + "createdTime": "2026-02-02 00:29:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:45", + "echoMap": {}, + "alarmNo": "1310103234", + "alarmDate": "1769963385392", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1002030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1002" + }, + { + "id": "723112951791325262", + "createdBy": null, + "createdTime": "2026-02-02 07:44:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:44", + "echoMap": {}, + "alarmNo": "1310103259", + "alarmDate": "1769989484682", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1002030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1002" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113346928316417", + "createdBy": null, + "createdTime": "2026-02-02 14:38:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "alarmNo": "1310103348", + "alarmDate": "1770014302191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113325453479968", + "createdBy": null, + "createdTime": "2026-02-02 14:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:46", + "echoMap": {}, + "alarmNo": "1310103347", + "alarmDate": "1770013702049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113316863545364", + "createdBy": null, + "createdTime": "2026-02-02 14:27:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:46", + "echoMap": {}, + "alarmNo": "1310103346", + "alarmDate": "1770013665232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113316863545355", + "createdBy": null, + "createdTime": "2026-02-02 14:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "alarmNo": "1310103345", + "alarmDate": "1770013662950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113303978643466", + "createdBy": null, + "createdTime": "2026-02-02 14:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:05", + "echoMap": {}, + "alarmNo": "1310103344", + "alarmDate": "1770013090787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113299683676171", + "createdBy": null, + "createdTime": "2026-02-02 14:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:55", + "echoMap": {}, + "alarmNo": "1310103343", + "alarmDate": "1770013060911", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113299683676169", + "createdBy": null, + "createdTime": "2026-02-02 14:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:47", + "echoMap": {}, + "alarmNo": "1310103342", + "alarmDate": "1770013060759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113295388708894", + "createdBy": null, + "createdTime": "2026-02-02 14:17:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:35", + "echoMap": {}, + "alarmNo": "1310103341", + "alarmDate": "1770013045607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113286798774309", + "createdBy": null, + "createdTime": "2026-02-02 14:07:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:57", + "echoMap": {}, + "alarmNo": "1310103340", + "alarmDate": "1770012470234", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113286798774289", + "createdBy": null, + "createdTime": "2026-02-02 14:07:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:54", + "echoMap": {}, + "alarmNo": "1310103339", + "alarmDate": "1770012461643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113273913872427", + "createdBy": null, + "createdTime": "2026-02-02 13:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:22", + "echoMap": {}, + "alarmNo": "1310103338", + "alarmDate": "1770011894043", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113273913872410", + "createdBy": null, + "createdTime": "2026-02-02 13:58:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:05", + "echoMap": {}, + "alarmNo": "1310103337", + "alarmDate": "1770011884269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113269618905112", + "createdBy": null, + "createdTime": "2026-02-02 13:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:49", + "echoMap": {}, + "alarmNo": "1310103336", + "alarmDate": "1770011862991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113269618905106", + "createdBy": null, + "createdTime": "2026-02-02 13:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:05", + "echoMap": {}, + "alarmNo": "1310103335", + "alarmDate": "1770011861430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113265323937842", + "createdBy": null, + "createdTime": "2026-02-02 13:57:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:30", + "echoMap": {}, + "alarmNo": "1310103334", + "alarmDate": "1770011846017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113243849101324", + "createdBy": null, + "createdTime": "2026-02-02 13:38:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:06", + "echoMap": {}, + "alarmNo": "1310103333", + "alarmDate": "1770010699215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113239554134043", + "createdBy": null, + "createdTime": "2026-02-02 13:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:07", + "echoMap": {}, + "alarmNo": "1310103332", + "alarmDate": "1770010681116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113235259166753", + "createdBy": null, + "createdTime": "2026-02-02 13:37:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:32", + "echoMap": {}, + "alarmNo": "1310103331", + "alarmDate": "1770010650527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113226669232153", + "createdBy": null, + "createdTime": "2026-02-02 13:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:23", + "echoMap": {}, + "alarmNo": "1310103330", + "alarmDate": "1770010102345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113222374264839", + "createdBy": null, + "createdTime": "2026-02-02 13:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:43", + "echoMap": {}, + "alarmNo": "1310103329", + "alarmDate": "1770010080975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113213784330277", + "createdBy": null, + "createdTime": "2026-02-02 13:27:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:27", + "echoMap": {}, + "alarmNo": "1310103328", + "alarmDate": "1770010047448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060079", + "deviceName": "[311](10)2号航站楼2#台扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113213784330273", + "createdBy": null, + "createdTime": "2026-02-02 13:27:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:17", + "echoMap": {}, + "alarmNo": "1310103327", + "alarmDate": "1770010046449", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113196604461069", + "createdBy": null, + "createdTime": "2026-02-02 13:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:08", + "echoMap": {}, + "alarmNo": "1310103326", + "alarmDate": "1770008881664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113192309493804", + "createdBy": null, + "createdTime": "2026-02-02 13:07:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:51", + "echoMap": {}, + "alarmNo": "1310103325", + "alarmDate": "1770008869774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113183719559192", + "createdBy": null, + "createdTime": "2026-02-02 12:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:44", + "echoMap": {}, + "alarmNo": "1310103324", + "alarmDate": "1770008300588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113183719559187", + "createdBy": null, + "createdTime": "2026-02-02 12:58:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:07", + "echoMap": {}, + "alarmNo": "1310103323", + "alarmDate": "1770008298433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113179424591924", + "createdBy": null, + "createdTime": "2026-02-02 12:57:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:44", + "echoMap": {}, + "alarmNo": "1310103322", + "alarmDate": "1770008252495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113166539689991", + "createdBy": null, + "createdTime": "2026-02-02 12:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:42", + "echoMap": {}, + "alarmNo": "1310103321", + "alarmDate": "1770007088868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113166539689989", + "createdBy": null, + "createdTime": "2026-02-02 12:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:10", + "echoMap": {}, + "alarmNo": "1310103320", + "alarmDate": "1770007088754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113162244722721", + "createdBy": null, + "createdTime": "2026-02-02 12:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:03", + "echoMap": {}, + "alarmNo": "1310103319", + "alarmDate": "1770007071199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788222", + "createdBy": null, + "createdTime": "2026-02-02 12:27:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:43", + "echoMap": {}, + "alarmNo": "1310103318", + "alarmDate": "1770006455586", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788128", + "createdBy": null, + "createdTime": "2026-02-02 12:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:46", + "echoMap": {}, + "alarmNo": "1310103317", + "alarmDate": "1770005859887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788124", + "createdBy": null, + "createdTime": "2026-02-02 12:17:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:36", + "echoMap": {}, + "alarmNo": "1310103316", + "alarmDate": "1770005855096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113153654788119", + "createdBy": null, + "createdTime": "2026-02-02 12:17:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:28", + "echoMap": {}, + "alarmNo": "1310103315", + "alarmDate": "1770005845881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113145064853517", + "createdBy": null, + "createdTime": "2026-02-02 12:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:26", + "echoMap": {}, + "alarmNo": "1310103314", + "alarmDate": "1770005294029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113145064853506", + "createdBy": null, + "createdTime": "2026-02-02 12:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:04", + "echoMap": {}, + "alarmNo": "1310103313", + "alarmDate": "1770005277720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113140769886237", + "createdBy": null, + "createdTime": "2026-02-02 12:07:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:51", + "echoMap": {}, + "alarmNo": "1310103312", + "alarmDate": "1770005256687", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113140769886232", + "createdBy": null, + "createdTime": "2026-02-02 12:07:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:28", + "echoMap": {}, + "alarmNo": "1310103311", + "alarmDate": "1770005245679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113132179951708", + "createdBy": null, + "createdTime": "2026-02-02 11:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:05", + "echoMap": {}, + "alarmNo": "1310103310", + "alarmDate": "1770004678577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113132179951666", + "createdBy": null, + "createdTime": "2026-02-02 11:57:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:53", + "echoMap": {}, + "alarmNo": "1310103309", + "alarmDate": "1770004646205", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113127884984335", + "createdBy": null, + "createdTime": "2026-02-02 11:47:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:55", + "echoMap": {}, + "alarmNo": "1310103308", + "alarmDate": "1770004074210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113123590017076", + "createdBy": null, + "createdTime": "2026-02-02 11:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:23", + "echoMap": {}, + "alarmNo": "1310103307", + "alarmDate": "1770003491540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113123590017056", + "createdBy": null, + "createdTime": "2026-02-02 11:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:08", + "echoMap": {}, + "alarmNo": "1310103306", + "alarmDate": "1770003482222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113119295049774", + "createdBy": null, + "createdTime": "2026-02-02 11:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:47", + "echoMap": {}, + "alarmNo": "1310103305", + "alarmDate": "1770003461234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113119295049747", + "createdBy": null, + "createdTime": "2026-02-02 11:37:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:13", + "echoMap": {}, + "alarmNo": "1310103304", + "alarmDate": "1770003446234", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113110705115153", + "createdBy": null, + "createdTime": "2026-02-02 11:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:50", + "echoMap": {}, + "alarmNo": "1310103303", + "alarmDate": "1770002899915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113110705115142", + "createdBy": null, + "createdTime": "2026-02-02 11:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:47", + "echoMap": {}, + "alarmNo": "1310103302", + "alarmDate": "1770002861108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113106410147884", + "createdBy": null, + "createdTime": "2026-02-02 11:27:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:33", + "echoMap": {}, + "alarmNo": "1310103301", + "alarmDate": "1770002846766", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113097820213330", + "createdBy": null, + "createdTime": "2026-02-02 11:18:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:13", + "echoMap": {}, + "alarmNo": "1310103300", + "alarmDate": "1770002292282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113097820213314", + "createdBy": null, + "createdTime": "2026-02-02 11:18:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:12", + "echoMap": {}, + "alarmNo": "1310103299", + "alarmDate": "1770002280006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113089230278820", + "createdBy": null, + "createdTime": "2026-02-02 11:08:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:25", + "echoMap": {}, + "alarmNo": "1310103298", + "alarmDate": "1770001698876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113084935311412", + "createdBy": null, + "createdTime": "2026-02-02 10:58:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:25", + "echoMap": {}, + "alarmNo": "1310103297", + "alarmDate": "1770001098727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113080640344222", + "createdBy": null, + "createdTime": "2026-02-02 10:57:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:40", + "echoMap": {}, + "alarmNo": "1310103296", + "alarmDate": "1770001058625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113080640344203", + "createdBy": null, + "createdTime": "2026-02-02 10:57:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:31", + "echoMap": {}, + "alarmNo": "1310103295", + "alarmDate": "1770001046959", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113080640344094", + "createdBy": null, + "createdTime": "2026-02-02 10:47:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:43", + "echoMap": {}, + "alarmNo": "1310103294", + "alarmDate": "1770000445466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113072050409528", + "createdBy": null, + "createdTime": "2026-02-02 10:37:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:55", + "echoMap": {}, + "alarmNo": "1310103293", + "alarmDate": "1769999861498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113067755442185", + "createdBy": null, + "createdTime": "2026-02-02 10:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:59", + "echoMap": {}, + "alarmNo": "1310103292", + "alarmDate": "1769999277713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113063460474901", + "createdBy": null, + "createdTime": "2026-02-02 10:18:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:07", + "echoMap": {}, + "alarmNo": "1310103291", + "alarmDate": "1769998701168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113059165507626", + "createdBy": null, + "createdTime": "2026-02-02 10:17:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:45", + "echoMap": {}, + "alarmNo": "1310103290", + "alarmDate": "1769998659014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113050575573015", + "createdBy": null, + "createdTime": "2026-02-02 09:58:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:17", + "echoMap": {}, + "alarmNo": "1310103289", + "alarmDate": "1769997495885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113041985638430", + "createdBy": null, + "createdTime": "2026-02-02 09:47:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:04", + "echoMap": {}, + "alarmNo": "1310103288", + "alarmDate": "1769996871651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113033395703860", + "createdBy": null, + "createdTime": "2026-02-02 09:37:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:43", + "echoMap": {}, + "alarmNo": "1310103287", + "alarmDate": "1769996262202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113029100736559", + "createdBy": null, + "createdTime": "2026-02-02 09:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:47", + "echoMap": {}, + "alarmNo": "1310103286", + "alarmDate": "1769995661217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802047", + "createdBy": null, + "createdTime": "2026-02-02 09:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:21", + "echoMap": {}, + "alarmNo": "1310103285", + "alarmDate": "1769995090825", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802038", + "createdBy": null, + "createdTime": "2026-02-02 09:18:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:16", + "echoMap": {}, + "alarmNo": "1310103284", + "alarmDate": "1769995085171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802030", + "createdBy": null, + "createdTime": "2026-02-02 09:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:05", + "echoMap": {}, + "alarmNo": "1310103283", + "alarmDate": "1769995079245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510802012", + "createdBy": null, + "createdTime": "2026-02-02 09:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:48", + "echoMap": {}, + "alarmNo": "1310103282", + "alarmDate": "1769995061037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510801996", + "createdBy": null, + "createdTime": "2026-02-02 09:17:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:49", + "echoMap": {}, + "alarmNo": "1310103281", + "alarmDate": "1769995048655", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113020510801990", + "createdBy": null, + "createdTime": "2026-02-02 09:17:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:29", + "echoMap": {}, + "alarmNo": "1310103280", + "alarmDate": "1769995045127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113016215834634", + "createdBy": null, + "createdTime": "2026-02-02 09:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:01", + "echoMap": {}, + "alarmNo": "1310103279", + "alarmDate": "1769994480245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113011920867422", + "createdBy": null, + "createdTime": "2026-02-02 09:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:02", + "echoMap": {}, + "alarmNo": "1310103278", + "alarmDate": "1769994467196", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113007625900045", + "createdBy": null, + "createdTime": "2026-02-02 08:57:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:43", + "echoMap": {}, + "alarmNo": "1310103277", + "alarmDate": "1769993850691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113003330932746", + "createdBy": null, + "createdTime": "2026-02-02 08:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:59", + "echoMap": {}, + "alarmNo": "1310103276", + "alarmDate": "1769993299337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723113003330932744", + "createdBy": null, + "createdTime": "2026-02-02 08:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:25", + "echoMap": {}, + "alarmNo": "1310103275", + "alarmDate": "1769993298667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112999035965493", + "createdBy": null, + "createdTime": "2026-02-02 08:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:07", + "echoMap": {}, + "alarmNo": "1310103274", + "alarmDate": "1769993280649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112999035965460", + "createdBy": null, + "createdTime": "2026-02-02 08:47:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:43", + "echoMap": {}, + "alarmNo": "1310103273", + "alarmDate": "1769993245275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112994740998157", + "createdBy": null, + "createdTime": "2026-02-02 08:38:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:20", + "echoMap": {}, + "alarmNo": "1310103272", + "alarmDate": "1769992698569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112990446030894", + "createdBy": null, + "createdTime": "2026-02-02 08:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:48", + "echoMap": {}, + "alarmNo": "1310103271", + "alarmDate": "1769992661106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112981856096299", + "createdBy": null, + "createdTime": "2026-02-02 08:27:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:41", + "echoMap": {}, + "alarmNo": "1310103270", + "alarmDate": "1769992045734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112977561128991", + "createdBy": null, + "createdTime": "2026-02-02 08:18:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:44", + "echoMap": {}, + "alarmNo": "1310103269", + "alarmDate": "1769991500175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112977561128980", + "createdBy": null, + "createdTime": "2026-02-02 08:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:08", + "echoMap": {}, + "alarmNo": "1310103268", + "alarmDate": "1769991482160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112977561128964", + "createdBy": null, + "createdTime": "2026-02-02 08:17:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:46", + "echoMap": {}, + "alarmNo": "1310103267", + "alarmDate": "1769991464632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112968971194400", + "createdBy": null, + "createdTime": "2026-02-02 08:07:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:51", + "echoMap": {}, + "alarmNo": "1310103266", + "alarmDate": "1769990852184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259883", + "createdBy": null, + "createdTime": "2026-02-02 07:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:38", + "echoMap": {}, + "alarmNo": "1310103265", + "alarmDate": "1769990300852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259872", + "createdBy": null, + "createdTime": "2026-02-02 07:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:10", + "echoMap": {}, + "alarmNo": "1310103264", + "alarmDate": "1769990282933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259856", + "createdBy": null, + "createdTime": "2026-02-02 07:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:03", + "echoMap": {}, + "alarmNo": "1310103263", + "alarmDate": "1769990270926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112960381259837", + "createdBy": null, + "createdTime": "2026-02-02 07:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:51", + "echoMap": {}, + "alarmNo": "1310103262", + "alarmDate": "1769990264889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112956086292493", + "createdBy": null, + "createdTime": "2026-02-02 07:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:03", + "echoMap": {}, + "alarmNo": "1310103261", + "alarmDate": "1769989681794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112956086292483", + "createdBy": null, + "createdTime": "2026-02-02 07:47:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:39", + "echoMap": {}, + "alarmNo": "1310103260", + "alarmDate": "1769989652560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112951791325262", + "createdBy": null, + "createdTime": "2026-02-02 07:44:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:44", + "echoMap": {}, + "alarmNo": "1310103259", + "alarmDate": "1769989484682", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1002030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1002" + }, + { + "id": "723112947496357915", + "createdBy": null, + "createdTime": "2026-02-02 07:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:34", + "echoMap": {}, + "alarmNo": "1310103258", + "alarmDate": "1769989081616", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060059", + "deviceName": "[310](10)2号航站楼1#台扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112938906423296", + "createdBy": null, + "createdTime": "2026-02-02 07:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:04", + "echoMap": {}, + "alarmNo": "1310103257", + "alarmDate": "1769988478335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112934611456019", + "createdBy": null, + "createdTime": "2026-02-02 07:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:46", + "echoMap": {}, + "alarmNo": "1310103256", + "alarmDate": "1769988460376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112926021521443", + "createdBy": null, + "createdTime": "2026-02-02 07:18:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:20", + "echoMap": {}, + "alarmNo": "1310103255", + "alarmDate": "1769987898864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112913136619560", + "createdBy": null, + "createdTime": "2026-02-02 07:07:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:35", + "echoMap": {}, + "alarmNo": "1310103254", + "alarmDate": "1769987249100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060033", + "deviceName": "[306](10)2号航站楼3#厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112908841652260", + "createdBy": null, + "createdTime": "2026-02-02 06:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:47", + "echoMap": {}, + "alarmNo": "1310103253", + "alarmDate": "1769986666244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112908841652240", + "createdBy": null, + "createdTime": "2026-02-02 06:57:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:57", + "echoMap": {}, + "alarmNo": "1310103252", + "alarmDate": "1769986649195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060018", + "deviceName": "[416](10)2号航站楼2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112878776881185", + "createdBy": null, + "createdTime": "2026-02-02 06:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:05", + "echoMap": {}, + "alarmNo": "1310103251", + "alarmDate": "1769984884346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112861597011984", + "createdBy": null, + "createdTime": "2026-02-02 06:07:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:33", + "echoMap": {}, + "alarmNo": "1310103250", + "alarmDate": "1769983651549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112857302044691", + "createdBy": null, + "createdTime": "2026-02-02 05:58:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:25", + "echoMap": {}, + "alarmNo": "1310103249", + "alarmDate": "1769983104386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112840122175577", + "createdBy": null, + "createdTime": "2026-02-02 05:47:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:57", + "echoMap": {}, + "alarmNo": "1310103248", + "alarmDate": "1769982446034", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112831532240928", + "createdBy": null, + "createdTime": "2026-02-02 05:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:52", + "echoMap": {}, + "alarmNo": "1310103247", + "alarmDate": "1769981870782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112801467469831", + "createdBy": null, + "createdTime": "2026-02-02 05:08:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:12", + "echoMap": {}, + "alarmNo": "1310103246", + "alarmDate": "1769980090842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112784287600657", + "createdBy": null, + "createdTime": "2026-02-02 04:47:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:39", + "echoMap": {}, + "alarmNo": "1310103245", + "alarmDate": "1769978858172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112758517796885", + "createdBy": null, + "createdTime": "2026-02-02 04:17:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:58", + "echoMap": {}, + "alarmNo": "1310103244", + "alarmDate": "1769977077288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112737042960436", + "createdBy": null, + "createdTime": "2026-02-02 03:48:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:15", + "echoMap": {}, + "alarmNo": "1310103243", + "alarmDate": "1769975294375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112719863091252", + "createdBy": null, + "createdTime": "2026-02-02 03:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:42", + "echoMap": {}, + "alarmNo": "1310103242", + "alarmDate": "1769974060715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112694093287449", + "createdBy": null, + "createdTime": "2026-02-02 02:57:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:58", + "echoMap": {}, + "alarmNo": "1310103241", + "alarmDate": "1769972276834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112676913418307", + "createdBy": null, + "createdTime": "2026-02-02 02:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:16", + "echoMap": {}, + "alarmNo": "1310103240", + "alarmDate": "1769970494994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112664028516359", + "createdBy": null, + "createdTime": "2026-02-02 02:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:44", + "echoMap": {}, + "alarmNo": "1310103239", + "alarmDate": "1769969263287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112642553679873", + "createdBy": null, + "createdTime": "2026-02-02 01:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:02", + "echoMap": {}, + "alarmNo": "1310103238", + "alarmDate": "1769967481298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112625373810729", + "createdBy": null, + "createdTime": "2026-02-02 01:17:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:30", + "echoMap": {}, + "alarmNo": "1310103237", + "alarmDate": "1769966248658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112616783876149", + "createdBy": null, + "createdTime": "2026-02-02 01:08:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:20", + "echoMap": {}, + "alarmNo": "1310103236", + "alarmDate": "1769965699484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112608193941535", + "createdBy": null, + "createdTime": "2026-02-02 00:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:48", + "echoMap": {}, + "alarmNo": "1310103235", + "alarmDate": "1769964466761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112586719105066", + "createdBy": null, + "createdTime": "2026-02-02 00:29:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:45", + "echoMap": {}, + "alarmNo": "1310103234", + "alarmDate": "1769963385392", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1002030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1002" + }, + { + "id": "723112578129170450", + "createdBy": null, + "createdTime": "2026-02-02 00:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:18:05", + "echoMap": {}, + "alarmNo": "1310103233", + "alarmDate": "1769962683977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060099", + "deviceName": "[212](10)2号航站楼下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + }, + { + "id": "723112573834203231", + "createdBy": null, + "createdTime": "2026-02-02 00:17:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:25", + "echoMap": {}, + "alarmNo": "1310103232", + "alarmDate": "1769962646265", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1002060058", + "deviceName": "[307](10)2号航站楼1#台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1002" + } + ] + }, + "1003": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113024812225734", + "createdBy": null, + "createdTime": "2026-02-02 00:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:48", + "echoMap": {}, + "alarmNo": "1330432717", + "alarmDate": "1769961707234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113029107192858", + "createdBy": null, + "createdTime": "2026-02-02 00:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:08", + "echoMap": {}, + "alarmNo": "1330432718", + "alarmDate": "1769961726502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113046287062024", + "createdBy": null, + "createdTime": "2026-02-02 00:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:04", + "echoMap": {}, + "alarmNo": "1330432719", + "alarmDate": "1769962323235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113050582029346", + "createdBy": null, + "createdTime": "2026-02-02 00:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:18", + "echoMap": {}, + "alarmNo": "1330432720", + "alarmDate": "1769962336668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113059171964112", + "createdBy": null, + "createdTime": "2026-02-02 00:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:19", + "echoMap": {}, + "alarmNo": "1330432721", + "alarmDate": "1769962937834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898524", + "createdBy": null, + "createdTime": "2026-02-02 00:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:42", + "echoMap": {}, + "alarmNo": "1330432722", + "alarmDate": "1769962961208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898571", + "createdBy": null, + "createdTime": "2026-02-02 00:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:06", + "echoMap": {}, + "alarmNo": "1330432723", + "alarmDate": "1769963106915", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898606", + "createdBy": null, + "createdTime": "2026-02-02 00:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:06", + "echoMap": {}, + "alarmNo": "1330432724", + "alarmDate": "1769963226832", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898712", + "createdBy": null, + "createdTime": "2026-02-02 00:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:50", + "echoMap": {}, + "alarmNo": "1330432725", + "alarmDate": "1769963509378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113076351833267", + "createdBy": null, + "createdTime": "2026-02-02 00:32:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:37", + "echoMap": {}, + "alarmNo": "1330432726", + "alarmDate": "1769963555935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113084941767784", + "createdBy": null, + "createdTime": "2026-02-02 00:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:58", + "echoMap": {}, + "alarmNo": "1330432727", + "alarmDate": "1769964117435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113097826669590", + "createdBy": null, + "createdTime": "2026-02-02 00:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:59", + "echoMap": {}, + "alarmNo": "1330432728", + "alarmDate": "1769964717626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113102121636988", + "createdBy": null, + "createdTime": "2026-02-02 00:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:25", + "echoMap": {}, + "alarmNo": "1330432729", + "alarmDate": "1769964744120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113110711571658", + "createdBy": null, + "createdTime": "2026-02-02 01:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:16", + "echoMap": {}, + "alarmNo": "1330432730", + "alarmDate": "1769965334577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113115006538792", + "createdBy": null, + "createdTime": "2026-02-02 01:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:30", + "echoMap": {}, + "alarmNo": "1330432731", + "alarmDate": "1769965349037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113127891440835", + "createdBy": null, + "createdTime": "2026-02-02 01:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:30", + "echoMap": {}, + "alarmNo": "1330432733", + "alarmDate": "1769965949267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113136481375432", + "createdBy": null, + "createdTime": "2026-02-02 01:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:09", + "echoMap": {}, + "alarmNo": "1330432734", + "alarmDate": "1769966527937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113149366277154", + "createdBy": null, + "createdTime": "2026-02-02 01:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:56", + "echoMap": {}, + "alarmNo": "1330432735", + "alarmDate": "1769967115460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113153661244463", + "createdBy": null, + "createdTime": "2026-02-02 01:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:10", + "echoMap": {}, + "alarmNo": "1330432736", + "alarmDate": "1769967128910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113166546146311", + "createdBy": null, + "createdTime": "2026-02-02 01:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:09", + "echoMap": {}, + "alarmNo": "1330432737", + "alarmDate": "1769967728020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113170841113794", + "createdBy": null, + "createdTime": "2026-02-02 01:45:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:06", + "echoMap": {}, + "alarmNo": "1330432738", + "alarmDate": "1769967906963", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113179431048262", + "createdBy": null, + "createdTime": "2026-02-02 01:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:54", + "echoMap": {}, + "alarmNo": "1330432739", + "alarmDate": "1769968312822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113188020982802", + "createdBy": null, + "createdTime": "2026-02-02 01:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:29", + "echoMap": {}, + "alarmNo": "1330432740", + "alarmDate": "1769968348136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113188020982887", + "createdBy": null, + "createdTime": "2026-02-02 01:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:42", + "echoMap": {}, + "alarmNo": "1330432741", + "alarmDate": "1769968361414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113192315950114", + "createdBy": null, + "createdTime": "2026-02-02 02:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:50", + "echoMap": {}, + "alarmNo": "1330432742", + "alarmDate": "1769968908532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113200905884731", + "createdBy": null, + "createdTime": "2026-02-02 02:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:43", + "echoMap": {}, + "alarmNo": "1330432743", + "alarmDate": "1769968961597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113205200852121", + "createdBy": null, + "createdTime": "2026-02-02 02:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:48", + "echoMap": {}, + "alarmNo": "1330432744", + "alarmDate": "1769969506754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113205200852384", + "createdBy": null, + "createdTime": "2026-02-02 02:12:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:29", + "echoMap": {}, + "alarmNo": "1330432745", + "alarmDate": "1769969548421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113213790786841", + "createdBy": null, + "createdTime": "2026-02-02 02:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:10", + "echoMap": {}, + "alarmNo": "1330432746", + "alarmDate": "1769970128855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113213790786930", + "createdBy": null, + "createdTime": "2026-02-02 02:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:22", + "echoMap": {}, + "alarmNo": "1330432747", + "alarmDate": "1769970141211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113222380721502", + "createdBy": null, + "createdTime": "2026-02-02 02:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:19", + "echoMap": {}, + "alarmNo": "1330432748", + "alarmDate": "1769970738469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113230970656049", + "createdBy": null, + "createdTime": "2026-02-02 02:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:12", + "echoMap": {}, + "alarmNo": "1330432749", + "alarmDate": "1769971331410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113235265623098", + "createdBy": null, + "createdTime": "2026-02-02 02:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:43", + "echoMap": {}, + "alarmNo": "1330432750", + "alarmDate": "1769971361537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113239560590402", + "createdBy": null, + "createdTime": "2026-02-02 02:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:50", + "echoMap": {}, + "alarmNo": "1330432751", + "alarmDate": "1769971908674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113239560590485", + "createdBy": null, + "createdTime": "2026-02-02 02:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:03", + "echoMap": {}, + "alarmNo": "1330432752", + "alarmDate": "1769971921917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113248150524930", + "createdBy": null, + "createdTime": "2026-02-02 03:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:55", + "echoMap": {}, + "alarmNo": "1330432753", + "alarmDate": "1769972514150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113256740459527", + "createdBy": null, + "createdTime": "2026-02-02 03:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:58", + "echoMap": {}, + "alarmNo": "1330432754", + "alarmDate": "1769973117255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113256740459685", + "createdBy": null, + "createdTime": "2026-02-02 03:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:22", + "echoMap": {}, + "alarmNo": "1330432755", + "alarmDate": "1769973141235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113256740459763", + "createdBy": null, + "createdTime": "2026-02-02 03:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:35", + "echoMap": {}, + "alarmNo": "1330432756", + "alarmDate": "1769973153650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113265330394292", + "createdBy": null, + "createdTime": "2026-02-02 03:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:25", + "echoMap": {}, + "alarmNo": "1330432757", + "alarmDate": "1769973743822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113273920328933", + "createdBy": null, + "createdTime": "2026-02-02 03:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:33", + "echoMap": {}, + "alarmNo": "1330432758", + "alarmDate": "1769974351848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113282510263333", + "createdBy": null, + "createdTime": "2026-02-02 03:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:02", + "echoMap": {}, + "alarmNo": "1330432759", + "alarmDate": "1769974921252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113282510263425", + "createdBy": null, + "createdTime": "2026-02-02 03:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:16", + "echoMap": {}, + "alarmNo": "1330432760", + "alarmDate": "1769974934509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113291100197929", + "createdBy": null, + "createdTime": "2026-02-02 03:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:04", + "echoMap": {}, + "alarmNo": "1330432761", + "alarmDate": "1769975522646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113299690132620", + "createdBy": null, + "createdTime": "2026-02-02 04:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:19", + "echoMap": {}, + "alarmNo": "1330432762", + "alarmDate": "1769976137823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113299690132721", + "createdBy": null, + "createdTime": "2026-02-02 04:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:35", + "echoMap": {}, + "alarmNo": "1330432763", + "alarmDate": "1769976153841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113303985099840", + "createdBy": null, + "createdTime": "2026-02-02 04:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:55", + "echoMap": {}, + "alarmNo": "1330432764", + "alarmDate": "1769976714316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113308280067313", + "createdBy": null, + "createdTime": "2026-02-02 04:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:34", + "echoMap": {}, + "alarmNo": "1330432765", + "alarmDate": "1769976753256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113325459936270", + "createdBy": null, + "createdTime": "2026-02-02 04:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:00", + "echoMap": {}, + "alarmNo": "1330432766", + "alarmDate": "1769977918659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113325459936380", + "createdBy": null, + "createdTime": "2026-02-02 04:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:16", + "echoMap": {}, + "alarmNo": "1330432767", + "alarmDate": "1769977934621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113325459936457", + "createdBy": null, + "createdTime": "2026-02-02 04:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:28", + "echoMap": {}, + "alarmNo": "1330432768", + "alarmDate": "1769977946783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113334049870953", + "createdBy": null, + "createdTime": "2026-02-02 04:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:13", + "echoMap": {}, + "alarmNo": "1330432769", + "alarmDate": "1769978532054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113342639805678", + "createdBy": null, + "createdTime": "2026-02-02 04:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:36", + "echoMap": {}, + "alarmNo": "1330432770", + "alarmDate": "1769979155317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113342639805867", + "createdBy": null, + "createdTime": "2026-02-02 05:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:46", + "echoMap": {}, + "alarmNo": "1330432771", + "alarmDate": "1769979704493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113346934772786", + "createdBy": null, + "createdTime": "2026-02-02 05:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:54", + "echoMap": {}, + "alarmNo": "1330432772", + "alarmDate": "1769979713432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113351229740108", + "createdBy": null, + "createdTime": "2026-02-02 05:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:10", + "echoMap": {}, + "alarmNo": "1330432773", + "alarmDate": "1769979728684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113351229740319", + "createdBy": null, + "createdTime": "2026-02-02 05:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:43", + "echoMap": {}, + "alarmNo": "1330432774", + "alarmDate": "1769979761618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113355524707364", + "createdBy": null, + "createdTime": "2026-02-02 05:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:50", + "echoMap": {}, + "alarmNo": "1330432775", + "alarmDate": "1769980308796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113359819674663", + "createdBy": null, + "createdTime": "2026-02-02 05:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:53", + "echoMap": {}, + "alarmNo": "1330432776", + "alarmDate": "1769980324926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113359819674676", + "createdBy": null, + "createdTime": "2026-02-02 05:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:07", + "echoMap": {}, + "alarmNo": "1330432777", + "alarmDate": "1769980326873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060058", + "deviceName": "[303](10)1号航站楼1#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609271", + "createdBy": null, + "createdTime": "2026-02-02 05:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:06", + "echoMap": {}, + "alarmNo": "1330432778", + "alarmDate": "1769980927238", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609356", + "createdBy": null, + "createdTime": "2026-02-02 05:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:20", + "echoMap": {}, + "alarmNo": "1330432779", + "alarmDate": "1769980939262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609425", + "createdBy": null, + "createdTime": "2026-02-02 05:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:31", + "echoMap": {}, + "alarmNo": "1330432780", + "alarmDate": "1769980950025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609497", + "createdBy": null, + "createdTime": "2026-02-02 05:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:42", + "echoMap": {}, + "alarmNo": "1330432781", + "alarmDate": "1769980961316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609545", + "createdBy": null, + "createdTime": "2026-02-02 05:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:06", + "echoMap": {}, + "alarmNo": "1330432782", + "alarmDate": "1769981107184", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113372704576550", + "createdBy": null, + "createdTime": "2026-02-02 05:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:51", + "echoMap": {}, + "alarmNo": "1330432783", + "alarmDate": "1769981510380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113376999543963", + "createdBy": null, + "createdTime": "2026-02-02 05:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:20", + "echoMap": {}, + "alarmNo": "1330432784", + "alarmDate": "1769981539322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478409", + "createdBy": null, + "createdTime": "2026-02-02 05:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:29", + "echoMap": {}, + "alarmNo": "1330432785", + "alarmDate": "1769982136672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478676", + "createdBy": null, + "createdTime": "2026-02-02 05:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:04", + "echoMap": {}, + "alarmNo": "1330432786", + "alarmDate": "1769982723123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478729", + "createdBy": null, + "createdTime": "2026-02-02 05:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:17", + "echoMap": {}, + "alarmNo": "1330432787", + "alarmDate": "1769982735798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478751", + "createdBy": null, + "createdTime": "2026-02-02 05:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:23", + "echoMap": {}, + "alarmNo": "1330432788", + "alarmDate": "1769982742015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113394179413053", + "createdBy": null, + "createdTime": "2026-02-02 06:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1330432789", + "alarmDate": "1769983318137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113394179413290", + "createdBy": null, + "createdTime": "2026-02-02 06:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:11", + "echoMap": {}, + "alarmNo": "1330432790", + "alarmDate": "1769983905467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113394179413428", + "createdBy": null, + "createdTime": "2026-02-02 06:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:29", + "echoMap": {}, + "alarmNo": "1330432791", + "alarmDate": "1769983954478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113398474380307", + "createdBy": null, + "createdTime": "2026-02-02 06:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:42", + "echoMap": {}, + "alarmNo": "1330432792", + "alarmDate": "1769983960705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347702", + "createdBy": null, + "createdTime": "2026-02-02 06:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:54", + "echoMap": {}, + "alarmNo": "1330432793", + "alarmDate": "1769984512976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347732", + "createdBy": null, + "createdTime": "2026-02-02 06:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:07", + "echoMap": {}, + "alarmNo": "1330432794", + "alarmDate": "1769984525701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347734", + "createdBy": null, + "createdTime": "2026-02-02 06:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:07", + "echoMap": {}, + "alarmNo": "1330432795", + "alarmDate": "1769984525814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347802", + "createdBy": null, + "createdTime": "2026-02-02 06:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:30", + "echoMap": {}, + "alarmNo": "1330432796", + "alarmDate": "1769984548856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347901", + "createdBy": null, + "createdTime": "2026-02-02 06:26:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:06", + "echoMap": {}, + "alarmNo": "1330432798", + "alarmDate": "1769984767043", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113411359282451", + "createdBy": null, + "createdTime": "2026-02-02 06:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:34", + "echoMap": {}, + "alarmNo": "1330432799", + "alarmDate": "1769985752729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113411359282474", + "createdBy": null, + "createdTime": "2026-02-02 06:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:43", + "echoMap": {}, + "alarmNo": "1330432800", + "alarmDate": "1769985762216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113411359282480", + "createdBy": null, + "createdTime": "2026-02-02 06:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:57", + "echoMap": {}, + "alarmNo": "1330432801", + "alarmDate": "1769985763357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113415654249481", + "createdBy": null, + "createdTime": "2026-02-02 06:51:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:46", + "echoMap": {}, + "alarmNo": "1330432802", + "alarmDate": "1769986304938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113415654249536", + "createdBy": null, + "createdTime": "2026-02-02 06:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:11", + "echoMap": {}, + "alarmNo": "1330432803", + "alarmDate": "1769986329515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949216811", + "createdBy": null, + "createdTime": "2026-02-02 06:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:30", + "echoMap": {}, + "alarmNo": "1330432804", + "alarmDate": "1769986344137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949216859", + "createdBy": null, + "createdTime": "2026-02-02 06:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:50", + "echoMap": {}, + "alarmNo": "1330432805", + "alarmDate": "1769986363118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949216993", + "createdBy": null, + "createdTime": "2026-02-02 07:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:06", + "echoMap": {}, + "alarmNo": "1330432806", + "alarmDate": "1769986903778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060024", + "deviceName": "[312](10)1号航站楼3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949217067", + "createdBy": null, + "createdTime": "2026-02-02 07:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:32", + "echoMap": {}, + "alarmNo": "1330432807", + "alarmDate": "1769986928170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949217090", + "createdBy": null, + "createdTime": "2026-02-02 07:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:13", + "echoMap": {}, + "alarmNo": "1330432808", + "alarmDate": "1769986931867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949217162", + "createdBy": null, + "createdTime": "2026-02-02 07:02:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:25", + "echoMap": {}, + "alarmNo": "1330432809", + "alarmDate": "1769986954875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060024", + "deviceName": "[312](10)1号航站楼3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151406", + "createdBy": null, + "createdTime": "2026-02-02 07:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:51", + "echoMap": {}, + "alarmNo": "1330432810", + "alarmDate": "1769987504357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151593", + "createdBy": null, + "createdTime": "2026-02-02 07:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:39", + "echoMap": {}, + "alarmNo": "1330432811", + "alarmDate": "1769987558200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151606", + "createdBy": null, + "createdTime": "2026-02-02 07:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:42", + "echoMap": {}, + "alarmNo": "1330432812", + "alarmDate": "1769987561174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151748", + "createdBy": null, + "createdTime": "2026-02-02 07:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:45", + "echoMap": {}, + "alarmNo": "1330432813", + "alarmDate": "1769988103761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151771", + "createdBy": null, + "createdTime": "2026-02-02 07:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:49", + "echoMap": {}, + "alarmNo": "1330432814", + "alarmDate": "1769988108470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151784", + "createdBy": null, + "createdTime": "2026-02-02 07:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:52", + "echoMap": {}, + "alarmNo": "1330432815", + "alarmDate": "1769988111342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113437129086217", + "createdBy": null, + "createdTime": "2026-02-02 07:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:58", + "echoMap": {}, + "alarmNo": "1330432816", + "alarmDate": "1769988717579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020703", + "createdBy": null, + "createdTime": "2026-02-02 07:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:21", + "echoMap": {}, + "alarmNo": "1330432817", + "alarmDate": "1769989339902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020731", + "createdBy": null, + "createdTime": "2026-02-02 07:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:28", + "echoMap": {}, + "alarmNo": "1330432818", + "alarmDate": "1769989347432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020760", + "createdBy": null, + "createdTime": "2026-02-02 07:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:37", + "echoMap": {}, + "alarmNo": "1330432819", + "alarmDate": "1769989356006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020934", + "createdBy": null, + "createdTime": "2026-02-02 07:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:51", + "echoMap": {}, + "alarmNo": "1330432820", + "alarmDate": "1769989910202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113454308955373", + "createdBy": null, + "createdTime": "2026-02-02 08:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:53", + "echoMap": {}, + "alarmNo": "1330432821", + "alarmDate": "1769990524522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113454308955413", + "createdBy": null, + "createdTime": "2026-02-02 08:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:56", + "echoMap": {}, + "alarmNo": "1330432822", + "alarmDate": "1769990533645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889809", + "createdBy": null, + "createdTime": "2026-02-02 08:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:03", + "echoMap": {}, + "alarmNo": "1330432823", + "alarmDate": "1769991121751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889819", + "createdBy": null, + "createdTime": "2026-02-02 08:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:06", + "echoMap": {}, + "alarmNo": "1330432824", + "alarmDate": "1769991124704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889830", + "createdBy": null, + "createdTime": "2026-02-02 08:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:15", + "echoMap": {}, + "alarmNo": "1330432825", + "alarmDate": "1769991127988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889933", + "createdBy": null, + "createdTime": "2026-02-02 08:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:39", + "echoMap": {}, + "alarmNo": "1330432826", + "alarmDate": "1769991157863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898890107", + "createdBy": null, + "createdTime": "2026-02-02 08:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:54", + "echoMap": {}, + "alarmNo": "1330432827", + "alarmDate": "1769991713042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898890138", + "createdBy": null, + "createdTime": "2026-02-02 08:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:09", + "echoMap": {}, + "alarmNo": "1330432828", + "alarmDate": "1769991722259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113467193857076", + "createdBy": null, + "createdTime": "2026-02-02 08:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:20", + "echoMap": {}, + "alarmNo": "1330432829", + "alarmDate": "1769991746141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113471488824631", + "createdBy": null, + "createdTime": "2026-02-02 08:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:03", + "echoMap": {}, + "alarmNo": "1330432830", + "alarmDate": "1769992352456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113471488824639", + "createdBy": null, + "createdTime": "2026-02-02 08:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:35", + "echoMap": {}, + "alarmNo": "1330432831", + "alarmDate": "1769992354247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113471488824669", + "createdBy": null, + "createdTime": "2026-02-02 08:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1330432832", + "alarmDate": "1769992362454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078758915", + "createdBy": null, + "createdTime": "2026-02-02 08:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:52", + "echoMap": {}, + "alarmNo": "1330432833", + "alarmDate": "1769992910594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078758931", + "createdBy": null, + "createdTime": "2026-02-02 08:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:13", + "echoMap": {}, + "alarmNo": "1330432834", + "alarmDate": "1769992914929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078759095", + "createdBy": null, + "createdTime": "2026-02-02 08:42:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:40", + "echoMap": {}, + "alarmNo": "1330432835", + "alarmDate": "1769992958695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078759267", + "createdBy": null, + "createdTime": "2026-02-02 08:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:55", + "echoMap": {}, + "alarmNo": "1330432836", + "alarmDate": "1769993514040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078759293", + "createdBy": null, + "createdTime": "2026-02-02 08:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:02", + "echoMap": {}, + "alarmNo": "1330432837", + "alarmDate": "1769993521517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113484373726209", + "createdBy": null, + "createdTime": "2026-02-02 08:52:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:15", + "echoMap": {}, + "alarmNo": "1330432838", + "alarmDate": "1769993539942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693559", + "createdBy": null, + "createdTime": "2026-02-02 08:56:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:06", + "echoMap": {}, + "alarmNo": "1330432839", + "alarmDate": "1769993767131", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693680", + "createdBy": null, + "createdTime": "2026-02-02 09:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:23", + "echoMap": {}, + "alarmNo": "1330432840", + "alarmDate": "1769994117765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693755", + "createdBy": null, + "createdTime": "2026-02-02 09:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:14", + "echoMap": {}, + "alarmNo": "1330432841", + "alarmDate": "1769994133144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693800", + "createdBy": null, + "createdTime": "2026-02-02 09:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:29", + "echoMap": {}, + "alarmNo": "1330432842", + "alarmDate": "1769994147963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693806", + "createdBy": null, + "createdTime": "2026-02-02 09:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:30", + "echoMap": {}, + "alarmNo": "1330432843", + "alarmDate": "1769994149259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693831", + "createdBy": null, + "createdTime": "2026-02-02 09:02:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:45", + "echoMap": {}, + "alarmNo": "1330432844", + "alarmDate": "1769994159200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113492963660834", + "createdBy": null, + "createdTime": "2026-02-02 09:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:46", + "echoMap": {}, + "alarmNo": "1330432845", + "alarmDate": "1769994705160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628104", + "createdBy": null, + "createdTime": "2026-02-02 09:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:45", + "echoMap": {}, + "alarmNo": "1330432846", + "alarmDate": "1769994729278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628212", + "createdBy": null, + "createdTime": "2026-02-02 09:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:42", + "echoMap": {}, + "alarmNo": "1330432847", + "alarmDate": "1769994760571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628387", + "createdBy": null, + "createdTime": "2026-02-02 09:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:56", + "echoMap": {}, + "alarmNo": "1330432848", + "alarmDate": "1769995314769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628421", + "createdBy": null, + "createdTime": "2026-02-02 09:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:06", + "echoMap": {}, + "alarmNo": "1330432849", + "alarmDate": "1769995325403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113505848562826", + "createdBy": null, + "createdTime": "2026-02-02 09:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:55", + "echoMap": {}, + "alarmNo": "1330432850", + "alarmDate": "1769995913909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113505848562907", + "createdBy": null, + "createdTime": "2026-02-02 09:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:17", + "echoMap": {}, + "alarmNo": "1330432851", + "alarmDate": "1769995936057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113505848562961", + "createdBy": null, + "createdTime": "2026-02-02 09:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:34", + "echoMap": {}, + "alarmNo": "1330432852", + "alarmDate": "1769995952859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113510143529984", + "createdBy": null, + "createdTime": "2026-02-02 09:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:47", + "echoMap": {}, + "alarmNo": "1330432853", + "alarmDate": "1769996505993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497386", + "createdBy": null, + "createdTime": "2026-02-02 09:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:42", + "echoMap": {}, + "alarmNo": "1330432854", + "alarmDate": "1769996561200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497554", + "createdBy": null, + "createdTime": "2026-02-02 09:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:21", + "echoMap": {}, + "alarmNo": "1330432855", + "alarmDate": "1769997117271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497556", + "createdBy": null, + "createdTime": "2026-02-02 09:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:58", + "echoMap": {}, + "alarmNo": "1330432856", + "alarmDate": "1769997117375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497597", + "createdBy": null, + "createdTime": "2026-02-02 09:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:27", + "echoMap": {}, + "alarmNo": "1330432857", + "alarmDate": "1769997129377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497670", + "createdBy": null, + "createdTime": "2026-02-02 09:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:26", + "echoMap": {}, + "alarmNo": "1330432858", + "alarmDate": "1769997145397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028431929", + "createdBy": null, + "createdTime": "2026-02-02 10:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:51", + "echoMap": {}, + "alarmNo": "1330432859", + "alarmDate": "1769997703448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028431974", + "createdBy": null, + "createdTime": "2026-02-02 10:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:02", + "echoMap": {}, + "alarmNo": "1330432860", + "alarmDate": "1769997720642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028432038", + "createdBy": null, + "createdTime": "2026-02-02 10:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:38", + "echoMap": {}, + "alarmNo": "1330432861", + "alarmDate": "1769997745714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028432046", + "createdBy": null, + "createdTime": "2026-02-02 10:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:34", + "echoMap": {}, + "alarmNo": "1330432862", + "alarmDate": "1769997747546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028432074", + "createdBy": null, + "createdTime": "2026-02-02 10:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:35", + "echoMap": {}, + "alarmNo": "1330432863", + "alarmDate": "1769997753664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113531618366535", + "createdBy": null, + "createdTime": "2026-02-02 10:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:52", + "echoMap": {}, + "alarmNo": "1330432864", + "alarmDate": "1769998303695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113531618366553", + "createdBy": null, + "createdTime": "2026-02-02 10:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:50", + "echoMap": {}, + "alarmNo": "1330432865", + "alarmDate": "1769998308877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301183", + "createdBy": null, + "createdTime": "2026-02-02 10:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:10", + "echoMap": {}, + "alarmNo": "1330432866", + "alarmDate": "1769998917397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301187", + "createdBy": null, + "createdTime": "2026-02-02 10:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:59", + "echoMap": {}, + "alarmNo": "1330432867", + "alarmDate": "1769998918179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301215", + "createdBy": null, + "createdTime": "2026-02-02 10:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:07", + "echoMap": {}, + "alarmNo": "1330432868", + "alarmDate": "1769998926221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301231", + "createdBy": null, + "createdTime": "2026-02-02 10:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:40", + "echoMap": {}, + "alarmNo": "1330432869", + "alarmDate": "1769998929956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113548798235666", + "createdBy": null, + "createdTime": "2026-02-02 10:22:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:41", + "echoMap": {}, + "alarmNo": "1330432870", + "alarmDate": "1769998960350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113548798235809", + "createdBy": null, + "createdTime": "2026-02-02 10:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:41", + "echoMap": {}, + "alarmNo": "1330432871", + "alarmDate": "1769999504223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113548798235831", + "createdBy": null, + "createdTime": "2026-02-02 10:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:52", + "echoMap": {}, + "alarmNo": "1330432872", + "alarmDate": "1769999510519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113557388170262", + "createdBy": null, + "createdTime": "2026-02-02 10:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:34", + "echoMap": {}, + "alarmNo": "1330432873", + "alarmDate": "1769999553411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113557388170441", + "createdBy": null, + "createdTime": "2026-02-02 10:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:50", + "echoMap": {}, + "alarmNo": "1330432874", + "alarmDate": "1770000108690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113565978104879", + "createdBy": null, + "createdTime": "2026-02-02 10:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:56", + "echoMap": {}, + "alarmNo": "1330432875", + "alarmDate": "1770000156135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113565978104887", + "createdBy": null, + "createdTime": "2026-02-02 10:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:39", + "echoMap": {}, + "alarmNo": "1330432876", + "alarmDate": "1770000157761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072142", + "createdBy": null, + "createdTime": "2026-02-02 10:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:47", + "echoMap": {}, + "alarmNo": "1330432877", + "alarmDate": "1770000703706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072151", + "createdBy": null, + "createdTime": "2026-02-02 10:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:47", + "echoMap": {}, + "alarmNo": "1330432878", + "alarmDate": "1770000705966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072181", + "createdBy": null, + "createdTime": "2026-02-02 10:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:59", + "echoMap": {}, + "alarmNo": "1330432879", + "alarmDate": "1770000718048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072185", + "createdBy": null, + "createdTime": "2026-02-02 10:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:11", + "echoMap": {}, + "alarmNo": "1330432880", + "alarmDate": "1770000718722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113574568039483", + "createdBy": null, + "createdTime": "2026-02-02 10:52:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:29", + "echoMap": {}, + "alarmNo": "1330432881", + "alarmDate": "1770000742874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113574568039502", + "createdBy": null, + "createdTime": "2026-02-02 10:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:29", + "echoMap": {}, + "alarmNo": "1330432882", + "alarmDate": "1770000748101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113578863006763", + "createdBy": null, + "createdTime": "2026-02-02 11:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:58", + "echoMap": {}, + "alarmNo": "1330432883", + "alarmDate": "1770001303999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113583157974056", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:52", + "echoMap": {}, + "alarmNo": "1330432884", + "alarmDate": "1770001330029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113587452941327", + "createdBy": null, + "createdTime": "2026-02-02 11:09:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:06", + "echoMap": {}, + "alarmNo": "1330432885", + "alarmDate": "1770001746892", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908624", + "createdBy": null, + "createdTime": "2026-02-02 11:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:49", + "echoMap": {}, + "alarmNo": "1330432886", + "alarmDate": "1770001907530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908692", + "createdBy": null, + "createdTime": "2026-02-02 11:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:16", + "echoMap": {}, + "alarmNo": "1330432887", + "alarmDate": "1770001924214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908715", + "createdBy": null, + "createdTime": "2026-02-02 11:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:28", + "echoMap": {}, + "alarmNo": "1330432888", + "alarmDate": "1770001929246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908776", + "createdBy": null, + "createdTime": "2026-02-02 11:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:21", + "echoMap": {}, + "alarmNo": "1330432889", + "alarmDate": "1770001939604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908815", + "createdBy": null, + "createdTime": "2026-02-02 11:12:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:58", + "echoMap": {}, + "alarmNo": "1330432890", + "alarmDate": "1770001948308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113596042875917", + "createdBy": null, + "createdTime": "2026-02-02 11:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:38", + "echoMap": {}, + "alarmNo": "1330432891", + "alarmDate": "1770001963070", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060066", + "deviceName": "[304](10)1号航站楼1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113600337843336", + "createdBy": null, + "createdTime": "2026-02-02 11:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:00", + "echoMap": {}, + "alarmNo": "1330432892", + "alarmDate": "1770002518843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113600337843405", + "createdBy": null, + "createdTime": "2026-02-02 11:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:18", + "echoMap": {}, + "alarmNo": "1330432893", + "alarmDate": "1770002536927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113608927777867", + "createdBy": null, + "createdTime": "2026-02-02 11:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:53", + "echoMap": {}, + "alarmNo": "1330432894", + "alarmDate": "1770003103659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113608927777871", + "createdBy": null, + "createdTime": "2026-02-02 11:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:12", + "echoMap": {}, + "alarmNo": "1330432895", + "alarmDate": "1770003104594", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113608927777944", + "createdBy": null, + "createdTime": "2026-02-02 11:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:05", + "echoMap": {}, + "alarmNo": "1330432896", + "alarmDate": "1770003124768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113617517712505", + "createdBy": null, + "createdTime": "2026-02-02 11:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:50", + "echoMap": {}, + "alarmNo": "1330432897", + "alarmDate": "1770003709338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113617517712529", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:00", + "echoMap": {}, + "alarmNo": "1330432898", + "alarmDate": "1770003719304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113617517712631", + "createdBy": null, + "createdTime": "2026-02-02 11:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:44", + "echoMap": {}, + "alarmNo": "1330432899", + "alarmDate": "1770003762554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113626107647052", + "createdBy": null, + "createdTime": "2026-02-02 11:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:59", + "echoMap": {}, + "alarmNo": "1330432900", + "alarmDate": "1770004312660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113626107647060", + "createdBy": null, + "createdTime": "2026-02-02 11:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:56", + "echoMap": {}, + "alarmNo": "1330432901", + "alarmDate": "1770004314627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113626107647100", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1330432902", + "alarmDate": "1770004329762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581689", + "createdBy": null, + "createdTime": "2026-02-02 12:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:16", + "echoMap": {}, + "alarmNo": "1330432903", + "alarmDate": "1770004935524", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581697", + "createdBy": null, + "createdTime": "2026-02-02 12:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:23", + "echoMap": {}, + "alarmNo": "1330432904", + "alarmDate": "1770004937477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581744", + "createdBy": null, + "createdTime": "2026-02-02 12:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:31", + "echoMap": {}, + "alarmNo": "1330432905", + "alarmDate": "1770004949974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581784", + "createdBy": null, + "createdTime": "2026-02-02 12:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:19", + "echoMap": {}, + "alarmNo": "1330432906", + "alarmDate": "1770004961616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516254", + "createdBy": null, + "createdTime": "2026-02-02 12:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:11", + "echoMap": {}, + "alarmNo": "1330432907", + "alarmDate": "1770005519399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516364", + "createdBy": null, + "createdTime": "2026-02-02 12:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:15", + "echoMap": {}, + "alarmNo": "1330432908", + "alarmDate": "1770005543818", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516407", + "createdBy": null, + "createdTime": "2026-02-02 12:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:55", + "echoMap": {}, + "alarmNo": "1330432909", + "alarmDate": "1770005556872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516423", + "createdBy": null, + "createdTime": "2026-02-02 12:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:41", + "echoMap": {}, + "alarmNo": "1330432910", + "alarmDate": "1770005560392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113651877450849", + "createdBy": null, + "createdTime": "2026-02-02 12:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:57", + "echoMap": {}, + "alarmNo": "1330432911", + "alarmDate": "1770006115492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113651877450893", + "createdBy": null, + "createdTime": "2026-02-02 12:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:12", + "echoMap": {}, + "alarmNo": "1330432912", + "alarmDate": "1770006131519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113651877450912", + "createdBy": null, + "createdTime": "2026-02-02 12:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:37", + "echoMap": {}, + "alarmNo": "1330432913", + "alarmDate": "1770006137925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385380", + "createdBy": null, + "createdTime": "2026-02-02 12:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:37", + "echoMap": {}, + "alarmNo": "1330432914", + "alarmDate": "1770006704170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385456", + "createdBy": null, + "createdTime": "2026-02-02 12:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:10", + "echoMap": {}, + "alarmNo": "1330432915", + "alarmDate": "1770006728691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385502", + "createdBy": null, + "createdTime": "2026-02-02 12:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:26", + "echoMap": {}, + "alarmNo": "1330432916", + "alarmDate": "1770006739138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385527", + "createdBy": null, + "createdTime": "2026-02-02 12:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:26", + "echoMap": {}, + "alarmNo": "1330432917", + "alarmDate": "1770006744879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113669057319993", + "createdBy": null, + "createdTime": "2026-02-02 12:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:50", + "echoMap": {}, + "alarmNo": "1330432918", + "alarmDate": "1770007304418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113669057320071", + "createdBy": null, + "createdTime": "2026-02-02 12:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:17", + "echoMap": {}, + "alarmNo": "1330432919", + "alarmDate": "1770007331467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060026", + "deviceName": "[316](10)1号航站楼3#口楼梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113669057320169", + "createdBy": null, + "createdTime": "2026-02-02 12:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:43", + "echoMap": {}, + "alarmNo": "1330432920", + "alarmDate": "1770007362156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254586", + "createdBy": null, + "createdTime": "2026-02-02 12:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:55", + "echoMap": {}, + "alarmNo": "1330432921", + "alarmDate": "1770007903623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254623", + "createdBy": null, + "createdTime": "2026-02-02 12:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:56", + "echoMap": {}, + "alarmNo": "1330432922", + "alarmDate": "1770007915320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254636", + "createdBy": null, + "createdTime": "2026-02-02 12:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:00", + "echoMap": {}, + "alarmNo": "1330432923", + "alarmDate": "1770007919435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254653", + "createdBy": null, + "createdTime": "2026-02-02 12:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:07", + "echoMap": {}, + "alarmNo": "1330432924", + "alarmDate": "1770007926252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254657", + "createdBy": null, + "createdTime": "2026-02-02 12:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:13", + "echoMap": {}, + "alarmNo": "1330432925", + "alarmDate": "1770007926631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254725", + "createdBy": null, + "createdTime": "2026-02-02 12:52:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:13", + "echoMap": {}, + "alarmNo": "1330432926", + "alarmDate": "1770007950644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254754", + "createdBy": null, + "createdTime": "2026-02-02 12:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:40", + "echoMap": {}, + "alarmNo": "1330432928", + "alarmDate": "1770007958895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254766", + "createdBy": null, + "createdTime": "2026-02-02 12:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:42", + "echoMap": {}, + "alarmNo": "1330432929", + "alarmDate": "1770007961333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113686237189163", + "createdBy": null, + "createdTime": "2026-02-02 13:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:50", + "echoMap": {}, + "alarmNo": "1330432930", + "alarmDate": "1770008508481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113686237189275", + "createdBy": null, + "createdTime": "2026-02-02 13:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:55", + "echoMap": {}, + "alarmNo": "1330432931", + "alarmDate": "1770008550952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123783", + "createdBy": null, + "createdTime": "2026-02-02 13:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:13", + "echoMap": {}, + "alarmNo": "1330432932", + "alarmDate": "1770009127267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123893", + "createdBy": null, + "createdTime": "2026-02-02 13:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:39", + "echoMap": {}, + "alarmNo": "1330432933", + "alarmDate": "1770009158029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123905", + "createdBy": null, + "createdTime": "2026-02-02 13:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:41", + "echoMap": {}, + "alarmNo": "1330432934", + "alarmDate": "1770009160002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123929", + "createdBy": null, + "createdTime": "2026-02-02 13:14:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:06", + "echoMap": {}, + "alarmNo": "1330432935", + "alarmDate": "1770009246840", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058354", + "createdBy": null, + "createdTime": "2026-02-02 13:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:49", + "echoMap": {}, + "alarmNo": "1330432936", + "alarmDate": "1770009708138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058369", + "createdBy": null, + "createdTime": "2026-02-02 13:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:55", + "echoMap": {}, + "alarmNo": "1330432937", + "alarmDate": "1770009714122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058454", + "createdBy": null, + "createdTime": "2026-02-02 13:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:30", + "echoMap": {}, + "alarmNo": "1330432938", + "alarmDate": "1770009736939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058466", + "createdBy": null, + "createdTime": "2026-02-02 13:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:21", + "echoMap": {}, + "alarmNo": "1330432939", + "alarmDate": "1770009740026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006992949", + "createdBy": null, + "createdTime": "2026-02-02 13:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:52", + "echoMap": {}, + "alarmNo": "1330432940", + "alarmDate": "1770010305634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060026", + "deviceName": "[316](10)1号航站楼3#口楼梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006993066", + "createdBy": null, + "createdTime": "2026-02-02 13:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:26", + "echoMap": {}, + "alarmNo": "1330432941", + "alarmDate": "1770010339638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006993104", + "createdBy": null, + "createdTime": "2026-02-02 13:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:34", + "echoMap": {}, + "alarmNo": "1330432942", + "alarmDate": "1770010354129", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006993118", + "createdBy": null, + "createdTime": "2026-02-02 13:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:26", + "echoMap": {}, + "alarmNo": "1330432943", + "alarmDate": "1770010357671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113720596927670", + "createdBy": null, + "createdTime": "2026-02-02 13:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:34", + "echoMap": {}, + "alarmNo": "1330432944", + "alarmDate": "1770010952935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113720596927685", + "createdBy": null, + "createdTime": "2026-02-02 13:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:49", + "echoMap": {}, + "alarmNo": "1330432945", + "alarmDate": "1770010957889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113720596927697", + "createdBy": null, + "createdTime": "2026-02-02 13:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:43", + "echoMap": {}, + "alarmNo": "1330432946", + "alarmDate": "1770010961801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113729186862123", + "createdBy": null, + "createdTime": "2026-02-02 13:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:56", + "echoMap": {}, + "alarmNo": "1330432947", + "alarmDate": "1770011514911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113729186862159", + "createdBy": null, + "createdTime": "2026-02-02 13:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:07", + "echoMap": {}, + "alarmNo": "1330432948", + "alarmDate": "1770011525878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113729186862203", + "createdBy": null, + "createdTime": "2026-02-02 13:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:17", + "echoMap": {}, + "alarmNo": "1330432949", + "alarmDate": "1770011535955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113737776796687", + "createdBy": null, + "createdTime": "2026-02-02 14:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:03", + "echoMap": {}, + "alarmNo": "1330432950", + "alarmDate": "1770012104218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113737776796785", + "createdBy": null, + "createdTime": "2026-02-02 14:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:38", + "echoMap": {}, + "alarmNo": "1330432951", + "alarmDate": "1770012134350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113737776796870", + "createdBy": null, + "createdTime": "2026-02-02 14:02:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:30", + "echoMap": {}, + "alarmNo": "1330432952", + "alarmDate": "1770012161358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113746366731318", + "createdBy": null, + "createdTime": "2026-02-02 14:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:55", + "echoMap": {}, + "alarmNo": "1330432953", + "alarmDate": "1770012714433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113746366731430", + "createdBy": null, + "createdTime": "2026-02-02 14:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:23", + "echoMap": {}, + "alarmNo": "1330432954", + "alarmDate": "1770012741710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113750661698563", + "createdBy": null, + "createdTime": "2026-02-02 14:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:39", + "echoMap": {}, + "alarmNo": "1330432955", + "alarmDate": "1770012757553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113750661698580", + "createdBy": null, + "createdTime": "2026-02-02 14:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:43", + "echoMap": {}, + "alarmNo": "1330432956", + "alarmDate": "1770012761497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956665944", + "createdBy": null, + "createdTime": "2026-02-02 14:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:51", + "echoMap": {}, + "alarmNo": "1330432957", + "alarmDate": "1770013303747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956665954", + "createdBy": null, + "createdTime": "2026-02-02 14:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:47", + "echoMap": {}, + "alarmNo": "1330432958", + "alarmDate": "1770013305706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956665994", + "createdBy": null, + "createdTime": "2026-02-02 14:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:57", + "echoMap": {}, + "alarmNo": "1330432959", + "alarmDate": "1770013315798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956666004", + "createdBy": null, + "createdTime": "2026-02-02 14:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:17", + "echoMap": {}, + "alarmNo": "1330432960", + "alarmDate": "1770013317960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956666084", + "createdBy": null, + "createdTime": "2026-02-02 14:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:39", + "echoMap": {}, + "alarmNo": "1330432961", + "alarmDate": "1770013334862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113763546600603", + "createdBy": null, + "createdTime": "2026-02-02 14:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:57", + "echoMap": {}, + "alarmNo": "1330432962", + "alarmDate": "1770013911048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113763546600648", + "createdBy": null, + "createdTime": "2026-02-02 14:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:15", + "echoMap": {}, + "alarmNo": "1330432963", + "alarmDate": "1770013929088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113767841567750", + "createdBy": null, + "createdTime": "2026-02-02 14:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:33", + "echoMap": {}, + "alarmNo": "1330432964", + "alarmDate": "1770013953093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113119301506143", + "createdBy": null, + "createdTime": "2026-02-02 01:05:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:07", + "echoMap": {}, + "alarmNo": "1330432732", + "alarmDate": "1769965507851", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1003030004", + "deviceName": "安防箱4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1003" + }, + { + "id": "723113402769347882", + "createdBy": null, + "createdTime": "2026-02-02 06:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:08", + "echoMap": {}, + "alarmNo": "1330432797", + "alarmDate": "1769984708712", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003030005", + "deviceName": "安防箱5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1003" + } + ], + "ndmSwitch": [ + { + "id": "723113677647254733", + "createdBy": null, + "createdTime": "2026-02-02 12:52:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:33", + "echoMap": {}, + "alarmNo": "1330432927", + "alarmDate": "1770007952815", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1003040001", + "deviceName": "华为核心交换机", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1003" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113767841567750", + "createdBy": null, + "createdTime": "2026-02-02 14:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:33", + "echoMap": {}, + "alarmNo": "1330432964", + "alarmDate": "1770013953093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113763546600648", + "createdBy": null, + "createdTime": "2026-02-02 14:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:15", + "echoMap": {}, + "alarmNo": "1330432963", + "alarmDate": "1770013929088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113763546600603", + "createdBy": null, + "createdTime": "2026-02-02 14:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:57", + "echoMap": {}, + "alarmNo": "1330432962", + "alarmDate": "1770013911048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956666084", + "createdBy": null, + "createdTime": "2026-02-02 14:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:39", + "echoMap": {}, + "alarmNo": "1330432961", + "alarmDate": "1770013334862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956666004", + "createdBy": null, + "createdTime": "2026-02-02 14:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:17", + "echoMap": {}, + "alarmNo": "1330432960", + "alarmDate": "1770013317960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956665994", + "createdBy": null, + "createdTime": "2026-02-02 14:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:57", + "echoMap": {}, + "alarmNo": "1330432959", + "alarmDate": "1770013315798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956665954", + "createdBy": null, + "createdTime": "2026-02-02 14:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:47", + "echoMap": {}, + "alarmNo": "1330432958", + "alarmDate": "1770013305706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113754956665944", + "createdBy": null, + "createdTime": "2026-02-02 14:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:51", + "echoMap": {}, + "alarmNo": "1330432957", + "alarmDate": "1770013303747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113750661698580", + "createdBy": null, + "createdTime": "2026-02-02 14:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:43", + "echoMap": {}, + "alarmNo": "1330432956", + "alarmDate": "1770012761497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113750661698563", + "createdBy": null, + "createdTime": "2026-02-02 14:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:39", + "echoMap": {}, + "alarmNo": "1330432955", + "alarmDate": "1770012757553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113746366731430", + "createdBy": null, + "createdTime": "2026-02-02 14:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:23", + "echoMap": {}, + "alarmNo": "1330432954", + "alarmDate": "1770012741710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113746366731318", + "createdBy": null, + "createdTime": "2026-02-02 14:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:55", + "echoMap": {}, + "alarmNo": "1330432953", + "alarmDate": "1770012714433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113737776796870", + "createdBy": null, + "createdTime": "2026-02-02 14:02:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:30", + "echoMap": {}, + "alarmNo": "1330432952", + "alarmDate": "1770012161358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113737776796785", + "createdBy": null, + "createdTime": "2026-02-02 14:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:38", + "echoMap": {}, + "alarmNo": "1330432951", + "alarmDate": "1770012134350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113737776796687", + "createdBy": null, + "createdTime": "2026-02-02 14:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:03", + "echoMap": {}, + "alarmNo": "1330432950", + "alarmDate": "1770012104218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113729186862203", + "createdBy": null, + "createdTime": "2026-02-02 13:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:17", + "echoMap": {}, + "alarmNo": "1330432949", + "alarmDate": "1770011535955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113729186862159", + "createdBy": null, + "createdTime": "2026-02-02 13:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:07", + "echoMap": {}, + "alarmNo": "1330432948", + "alarmDate": "1770011525878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113729186862123", + "createdBy": null, + "createdTime": "2026-02-02 13:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:56", + "echoMap": {}, + "alarmNo": "1330432947", + "alarmDate": "1770011514911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113720596927697", + "createdBy": null, + "createdTime": "2026-02-02 13:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:43", + "echoMap": {}, + "alarmNo": "1330432946", + "alarmDate": "1770010961801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113720596927685", + "createdBy": null, + "createdTime": "2026-02-02 13:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:49", + "echoMap": {}, + "alarmNo": "1330432945", + "alarmDate": "1770010957889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113720596927670", + "createdBy": null, + "createdTime": "2026-02-02 13:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:34", + "echoMap": {}, + "alarmNo": "1330432944", + "alarmDate": "1770010952935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006993118", + "createdBy": null, + "createdTime": "2026-02-02 13:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:26", + "echoMap": {}, + "alarmNo": "1330432943", + "alarmDate": "1770010357671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006993104", + "createdBy": null, + "createdTime": "2026-02-02 13:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:34", + "echoMap": {}, + "alarmNo": "1330432942", + "alarmDate": "1770010354129", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006993066", + "createdBy": null, + "createdTime": "2026-02-02 13:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:26", + "echoMap": {}, + "alarmNo": "1330432941", + "alarmDate": "1770010339638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113712006992949", + "createdBy": null, + "createdTime": "2026-02-02 13:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:52", + "echoMap": {}, + "alarmNo": "1330432940", + "alarmDate": "1770010305634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060026", + "deviceName": "[316](10)1号航站楼3#口楼梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058466", + "createdBy": null, + "createdTime": "2026-02-02 13:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:21", + "echoMap": {}, + "alarmNo": "1330432939", + "alarmDate": "1770009740026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058454", + "createdBy": null, + "createdTime": "2026-02-02 13:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:30", + "echoMap": {}, + "alarmNo": "1330432938", + "alarmDate": "1770009736939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058369", + "createdBy": null, + "createdTime": "2026-02-02 13:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:55", + "echoMap": {}, + "alarmNo": "1330432937", + "alarmDate": "1770009714122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113703417058354", + "createdBy": null, + "createdTime": "2026-02-02 13:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:49", + "echoMap": {}, + "alarmNo": "1330432936", + "alarmDate": "1770009708138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123929", + "createdBy": null, + "createdTime": "2026-02-02 13:14:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:06", + "echoMap": {}, + "alarmNo": "1330432935", + "alarmDate": "1770009246840", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123905", + "createdBy": null, + "createdTime": "2026-02-02 13:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:41", + "echoMap": {}, + "alarmNo": "1330432934", + "alarmDate": "1770009160002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123893", + "createdBy": null, + "createdTime": "2026-02-02 13:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:39", + "echoMap": {}, + "alarmNo": "1330432933", + "alarmDate": "1770009158029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113694827123783", + "createdBy": null, + "createdTime": "2026-02-02 13:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:13", + "echoMap": {}, + "alarmNo": "1330432932", + "alarmDate": "1770009127267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113686237189275", + "createdBy": null, + "createdTime": "2026-02-02 13:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:55", + "echoMap": {}, + "alarmNo": "1330432931", + "alarmDate": "1770008550952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113686237189163", + "createdBy": null, + "createdTime": "2026-02-02 13:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:50", + "echoMap": {}, + "alarmNo": "1330432930", + "alarmDate": "1770008508481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254766", + "createdBy": null, + "createdTime": "2026-02-02 12:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:42", + "echoMap": {}, + "alarmNo": "1330432929", + "alarmDate": "1770007961333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254754", + "createdBy": null, + "createdTime": "2026-02-02 12:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:40", + "echoMap": {}, + "alarmNo": "1330432928", + "alarmDate": "1770007958895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254733", + "createdBy": null, + "createdTime": "2026-02-02 12:52:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:33", + "echoMap": {}, + "alarmNo": "1330432927", + "alarmDate": "1770007952815", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1003040001", + "deviceName": "华为核心交换机", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1003" + }, + { + "id": "723113677647254725", + "createdBy": null, + "createdTime": "2026-02-02 12:52:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:13", + "echoMap": {}, + "alarmNo": "1330432926", + "alarmDate": "1770007950644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254657", + "createdBy": null, + "createdTime": "2026-02-02 12:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:13", + "echoMap": {}, + "alarmNo": "1330432925", + "alarmDate": "1770007926631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254653", + "createdBy": null, + "createdTime": "2026-02-02 12:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:07", + "echoMap": {}, + "alarmNo": "1330432924", + "alarmDate": "1770007926252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254636", + "createdBy": null, + "createdTime": "2026-02-02 12:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:00", + "echoMap": {}, + "alarmNo": "1330432923", + "alarmDate": "1770007919435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254623", + "createdBy": null, + "createdTime": "2026-02-02 12:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:56", + "echoMap": {}, + "alarmNo": "1330432922", + "alarmDate": "1770007915320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113677647254586", + "createdBy": null, + "createdTime": "2026-02-02 12:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:55", + "echoMap": {}, + "alarmNo": "1330432921", + "alarmDate": "1770007903623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113669057320169", + "createdBy": null, + "createdTime": "2026-02-02 12:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:43", + "echoMap": {}, + "alarmNo": "1330432920", + "alarmDate": "1770007362156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113669057320071", + "createdBy": null, + "createdTime": "2026-02-02 12:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:17", + "echoMap": {}, + "alarmNo": "1330432919", + "alarmDate": "1770007331467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060026", + "deviceName": "[316](10)1号航站楼3#口楼梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113669057319993", + "createdBy": null, + "createdTime": "2026-02-02 12:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:50", + "echoMap": {}, + "alarmNo": "1330432918", + "alarmDate": "1770007304418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385527", + "createdBy": null, + "createdTime": "2026-02-02 12:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:26", + "echoMap": {}, + "alarmNo": "1330432917", + "alarmDate": "1770006744879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385502", + "createdBy": null, + "createdTime": "2026-02-02 12:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:26", + "echoMap": {}, + "alarmNo": "1330432916", + "alarmDate": "1770006739138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385456", + "createdBy": null, + "createdTime": "2026-02-02 12:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:10", + "echoMap": {}, + "alarmNo": "1330432915", + "alarmDate": "1770006728691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113660467385380", + "createdBy": null, + "createdTime": "2026-02-02 12:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:37", + "echoMap": {}, + "alarmNo": "1330432914", + "alarmDate": "1770006704170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113651877450912", + "createdBy": null, + "createdTime": "2026-02-02 12:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:37", + "echoMap": {}, + "alarmNo": "1330432913", + "alarmDate": "1770006137925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113651877450893", + "createdBy": null, + "createdTime": "2026-02-02 12:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:12", + "echoMap": {}, + "alarmNo": "1330432912", + "alarmDate": "1770006131519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113651877450849", + "createdBy": null, + "createdTime": "2026-02-02 12:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:57", + "echoMap": {}, + "alarmNo": "1330432911", + "alarmDate": "1770006115492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516423", + "createdBy": null, + "createdTime": "2026-02-02 12:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:41", + "echoMap": {}, + "alarmNo": "1330432910", + "alarmDate": "1770005560392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516407", + "createdBy": null, + "createdTime": "2026-02-02 12:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:55", + "echoMap": {}, + "alarmNo": "1330432909", + "alarmDate": "1770005556872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516364", + "createdBy": null, + "createdTime": "2026-02-02 12:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:15", + "echoMap": {}, + "alarmNo": "1330432908", + "alarmDate": "1770005543818", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113643287516254", + "createdBy": null, + "createdTime": "2026-02-02 12:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:11", + "echoMap": {}, + "alarmNo": "1330432907", + "alarmDate": "1770005519399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581784", + "createdBy": null, + "createdTime": "2026-02-02 12:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:19", + "echoMap": {}, + "alarmNo": "1330432906", + "alarmDate": "1770004961616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581744", + "createdBy": null, + "createdTime": "2026-02-02 12:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:31", + "echoMap": {}, + "alarmNo": "1330432905", + "alarmDate": "1770004949974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581697", + "createdBy": null, + "createdTime": "2026-02-02 12:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:23", + "echoMap": {}, + "alarmNo": "1330432904", + "alarmDate": "1770004937477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113634697581689", + "createdBy": null, + "createdTime": "2026-02-02 12:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:16", + "echoMap": {}, + "alarmNo": "1330432903", + "alarmDate": "1770004935524", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113626107647100", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1330432902", + "alarmDate": "1770004329762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113626107647060", + "createdBy": null, + "createdTime": "2026-02-02 11:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:56", + "echoMap": {}, + "alarmNo": "1330432901", + "alarmDate": "1770004314627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113626107647052", + "createdBy": null, + "createdTime": "2026-02-02 11:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:59", + "echoMap": {}, + "alarmNo": "1330432900", + "alarmDate": "1770004312660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113617517712631", + "createdBy": null, + "createdTime": "2026-02-02 11:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:44", + "echoMap": {}, + "alarmNo": "1330432899", + "alarmDate": "1770003762554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113617517712529", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:00", + "echoMap": {}, + "alarmNo": "1330432898", + "alarmDate": "1770003719304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113617517712505", + "createdBy": null, + "createdTime": "2026-02-02 11:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:50", + "echoMap": {}, + "alarmNo": "1330432897", + "alarmDate": "1770003709338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113608927777944", + "createdBy": null, + "createdTime": "2026-02-02 11:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:05", + "echoMap": {}, + "alarmNo": "1330432896", + "alarmDate": "1770003124768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113608927777871", + "createdBy": null, + "createdTime": "2026-02-02 11:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:12", + "echoMap": {}, + "alarmNo": "1330432895", + "alarmDate": "1770003104594", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060023", + "deviceName": "[313](10)1号航站楼3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113608927777867", + "createdBy": null, + "createdTime": "2026-02-02 11:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:53", + "echoMap": {}, + "alarmNo": "1330432894", + "alarmDate": "1770003103659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113600337843405", + "createdBy": null, + "createdTime": "2026-02-02 11:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:18", + "echoMap": {}, + "alarmNo": "1330432893", + "alarmDate": "1770002536927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113600337843336", + "createdBy": null, + "createdTime": "2026-02-02 11:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:00", + "echoMap": {}, + "alarmNo": "1330432892", + "alarmDate": "1770002518843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113596042875917", + "createdBy": null, + "createdTime": "2026-02-02 11:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:38", + "echoMap": {}, + "alarmNo": "1330432891", + "alarmDate": "1770001963070", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060066", + "deviceName": "[304](10)1号航站楼1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908815", + "createdBy": null, + "createdTime": "2026-02-02 11:12:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:58", + "echoMap": {}, + "alarmNo": "1330432890", + "alarmDate": "1770001948308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908776", + "createdBy": null, + "createdTime": "2026-02-02 11:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:21", + "echoMap": {}, + "alarmNo": "1330432889", + "alarmDate": "1770001939604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908715", + "createdBy": null, + "createdTime": "2026-02-02 11:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:28", + "echoMap": {}, + "alarmNo": "1330432888", + "alarmDate": "1770001929246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908692", + "createdBy": null, + "createdTime": "2026-02-02 11:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:16", + "echoMap": {}, + "alarmNo": "1330432887", + "alarmDate": "1770001924214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113591747908624", + "createdBy": null, + "createdTime": "2026-02-02 11:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:49", + "echoMap": {}, + "alarmNo": "1330432886", + "alarmDate": "1770001907530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113587452941327", + "createdBy": null, + "createdTime": "2026-02-02 11:09:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:06", + "echoMap": {}, + "alarmNo": "1330432885", + "alarmDate": "1770001746892", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113583157974056", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:52", + "echoMap": {}, + "alarmNo": "1330432884", + "alarmDate": "1770001330029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113578863006763", + "createdBy": null, + "createdTime": "2026-02-02 11:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:58", + "echoMap": {}, + "alarmNo": "1330432883", + "alarmDate": "1770001303999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113574568039502", + "createdBy": null, + "createdTime": "2026-02-02 10:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:29", + "echoMap": {}, + "alarmNo": "1330432882", + "alarmDate": "1770000748101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113574568039483", + "createdBy": null, + "createdTime": "2026-02-02 10:52:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:29", + "echoMap": {}, + "alarmNo": "1330432881", + "alarmDate": "1770000742874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072185", + "createdBy": null, + "createdTime": "2026-02-02 10:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:11", + "echoMap": {}, + "alarmNo": "1330432880", + "alarmDate": "1770000718722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072181", + "createdBy": null, + "createdTime": "2026-02-02 10:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:59", + "echoMap": {}, + "alarmNo": "1330432879", + "alarmDate": "1770000718048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072151", + "createdBy": null, + "createdTime": "2026-02-02 10:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:47", + "echoMap": {}, + "alarmNo": "1330432878", + "alarmDate": "1770000705966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113570273072142", + "createdBy": null, + "createdTime": "2026-02-02 10:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:47", + "echoMap": {}, + "alarmNo": "1330432877", + "alarmDate": "1770000703706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113565978104887", + "createdBy": null, + "createdTime": "2026-02-02 10:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:39", + "echoMap": {}, + "alarmNo": "1330432876", + "alarmDate": "1770000157761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113565978104879", + "createdBy": null, + "createdTime": "2026-02-02 10:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:56", + "echoMap": {}, + "alarmNo": "1330432875", + "alarmDate": "1770000156135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113557388170441", + "createdBy": null, + "createdTime": "2026-02-02 10:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:50", + "echoMap": {}, + "alarmNo": "1330432874", + "alarmDate": "1770000108690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113557388170262", + "createdBy": null, + "createdTime": "2026-02-02 10:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:34", + "echoMap": {}, + "alarmNo": "1330432873", + "alarmDate": "1769999553411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113548798235831", + "createdBy": null, + "createdTime": "2026-02-02 10:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:52", + "echoMap": {}, + "alarmNo": "1330432872", + "alarmDate": "1769999510519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113548798235809", + "createdBy": null, + "createdTime": "2026-02-02 10:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:41", + "echoMap": {}, + "alarmNo": "1330432871", + "alarmDate": "1769999504223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113548798235666", + "createdBy": null, + "createdTime": "2026-02-02 10:22:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:41", + "echoMap": {}, + "alarmNo": "1330432870", + "alarmDate": "1769998960350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301231", + "createdBy": null, + "createdTime": "2026-02-02 10:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:40", + "echoMap": {}, + "alarmNo": "1330432869", + "alarmDate": "1769998929956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301215", + "createdBy": null, + "createdTime": "2026-02-02 10:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:07", + "echoMap": {}, + "alarmNo": "1330432868", + "alarmDate": "1769998926221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301187", + "createdBy": null, + "createdTime": "2026-02-02 10:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:59", + "echoMap": {}, + "alarmNo": "1330432867", + "alarmDate": "1769998918179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113540208301183", + "createdBy": null, + "createdTime": "2026-02-02 10:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:10", + "echoMap": {}, + "alarmNo": "1330432866", + "alarmDate": "1769998917397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113531618366553", + "createdBy": null, + "createdTime": "2026-02-02 10:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:50", + "echoMap": {}, + "alarmNo": "1330432865", + "alarmDate": "1769998308877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113531618366535", + "createdBy": null, + "createdTime": "2026-02-02 10:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:52", + "echoMap": {}, + "alarmNo": "1330432864", + "alarmDate": "1769998303695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028432074", + "createdBy": null, + "createdTime": "2026-02-02 10:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:35", + "echoMap": {}, + "alarmNo": "1330432863", + "alarmDate": "1769997753664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028432046", + "createdBy": null, + "createdTime": "2026-02-02 10:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:34", + "echoMap": {}, + "alarmNo": "1330432862", + "alarmDate": "1769997747546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028432038", + "createdBy": null, + "createdTime": "2026-02-02 10:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:38", + "echoMap": {}, + "alarmNo": "1330432861", + "alarmDate": "1769997745714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028431974", + "createdBy": null, + "createdTime": "2026-02-02 10:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:02", + "echoMap": {}, + "alarmNo": "1330432860", + "alarmDate": "1769997720642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113523028431929", + "createdBy": null, + "createdTime": "2026-02-02 10:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:51", + "echoMap": {}, + "alarmNo": "1330432859", + "alarmDate": "1769997703448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497670", + "createdBy": null, + "createdTime": "2026-02-02 09:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:26", + "echoMap": {}, + "alarmNo": "1330432858", + "alarmDate": "1769997145397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497597", + "createdBy": null, + "createdTime": "2026-02-02 09:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:27", + "echoMap": {}, + "alarmNo": "1330432857", + "alarmDate": "1769997129377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497556", + "createdBy": null, + "createdTime": "2026-02-02 09:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:58", + "echoMap": {}, + "alarmNo": "1330432856", + "alarmDate": "1769997117375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497554", + "createdBy": null, + "createdTime": "2026-02-02 09:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:21", + "echoMap": {}, + "alarmNo": "1330432855", + "alarmDate": "1769997117271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113514438497386", + "createdBy": null, + "createdTime": "2026-02-02 09:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:42", + "echoMap": {}, + "alarmNo": "1330432854", + "alarmDate": "1769996561200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113510143529984", + "createdBy": null, + "createdTime": "2026-02-02 09:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:47", + "echoMap": {}, + "alarmNo": "1330432853", + "alarmDate": "1769996505993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113505848562961", + "createdBy": null, + "createdTime": "2026-02-02 09:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:34", + "echoMap": {}, + "alarmNo": "1330432852", + "alarmDate": "1769995952859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113505848562907", + "createdBy": null, + "createdTime": "2026-02-02 09:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:17", + "echoMap": {}, + "alarmNo": "1330432851", + "alarmDate": "1769995936057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113505848562826", + "createdBy": null, + "createdTime": "2026-02-02 09:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:55", + "echoMap": {}, + "alarmNo": "1330432850", + "alarmDate": "1769995913909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628421", + "createdBy": null, + "createdTime": "2026-02-02 09:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:06", + "echoMap": {}, + "alarmNo": "1330432849", + "alarmDate": "1769995325403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628387", + "createdBy": null, + "createdTime": "2026-02-02 09:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:56", + "echoMap": {}, + "alarmNo": "1330432848", + "alarmDate": "1769995314769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628212", + "createdBy": null, + "createdTime": "2026-02-02 09:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:42", + "echoMap": {}, + "alarmNo": "1330432847", + "alarmDate": "1769994760571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113497258628104", + "createdBy": null, + "createdTime": "2026-02-02 09:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:45", + "echoMap": {}, + "alarmNo": "1330432846", + "alarmDate": "1769994729278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113492963660834", + "createdBy": null, + "createdTime": "2026-02-02 09:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:46", + "echoMap": {}, + "alarmNo": "1330432845", + "alarmDate": "1769994705160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693831", + "createdBy": null, + "createdTime": "2026-02-02 09:02:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:45", + "echoMap": {}, + "alarmNo": "1330432844", + "alarmDate": "1769994159200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693806", + "createdBy": null, + "createdTime": "2026-02-02 09:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:30", + "echoMap": {}, + "alarmNo": "1330432843", + "alarmDate": "1769994149259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693800", + "createdBy": null, + "createdTime": "2026-02-02 09:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:29", + "echoMap": {}, + "alarmNo": "1330432842", + "alarmDate": "1769994147963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693755", + "createdBy": null, + "createdTime": "2026-02-02 09:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:14", + "echoMap": {}, + "alarmNo": "1330432841", + "alarmDate": "1769994133144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693680", + "createdBy": null, + "createdTime": "2026-02-02 09:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:23", + "echoMap": {}, + "alarmNo": "1330432840", + "alarmDate": "1769994117765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113488668693559", + "createdBy": null, + "createdTime": "2026-02-02 08:56:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:06", + "echoMap": {}, + "alarmNo": "1330432839", + "alarmDate": "1769993767131", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113484373726209", + "createdBy": null, + "createdTime": "2026-02-02 08:52:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:15", + "echoMap": {}, + "alarmNo": "1330432838", + "alarmDate": "1769993539942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078759293", + "createdBy": null, + "createdTime": "2026-02-02 08:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:02", + "echoMap": {}, + "alarmNo": "1330432837", + "alarmDate": "1769993521517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078759267", + "createdBy": null, + "createdTime": "2026-02-02 08:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:55", + "echoMap": {}, + "alarmNo": "1330432836", + "alarmDate": "1769993514040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078759095", + "createdBy": null, + "createdTime": "2026-02-02 08:42:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:40", + "echoMap": {}, + "alarmNo": "1330432835", + "alarmDate": "1769992958695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078758931", + "createdBy": null, + "createdTime": "2026-02-02 08:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:13", + "echoMap": {}, + "alarmNo": "1330432834", + "alarmDate": "1769992914929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113480078758915", + "createdBy": null, + "createdTime": "2026-02-02 08:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:52", + "echoMap": {}, + "alarmNo": "1330432833", + "alarmDate": "1769992910594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113471488824669", + "createdBy": null, + "createdTime": "2026-02-02 08:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1330432832", + "alarmDate": "1769992362454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113471488824639", + "createdBy": null, + "createdTime": "2026-02-02 08:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:35", + "echoMap": {}, + "alarmNo": "1330432831", + "alarmDate": "1769992354247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113471488824631", + "createdBy": null, + "createdTime": "2026-02-02 08:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:03", + "echoMap": {}, + "alarmNo": "1330432830", + "alarmDate": "1769992352456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113467193857076", + "createdBy": null, + "createdTime": "2026-02-02 08:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:20", + "echoMap": {}, + "alarmNo": "1330432829", + "alarmDate": "1769991746141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898890138", + "createdBy": null, + "createdTime": "2026-02-02 08:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:09", + "echoMap": {}, + "alarmNo": "1330432828", + "alarmDate": "1769991722259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898890107", + "createdBy": null, + "createdTime": "2026-02-02 08:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:54", + "echoMap": {}, + "alarmNo": "1330432827", + "alarmDate": "1769991713042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889933", + "createdBy": null, + "createdTime": "2026-02-02 08:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:39", + "echoMap": {}, + "alarmNo": "1330432826", + "alarmDate": "1769991157863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889830", + "createdBy": null, + "createdTime": "2026-02-02 08:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:15", + "echoMap": {}, + "alarmNo": "1330432825", + "alarmDate": "1769991127988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889819", + "createdBy": null, + "createdTime": "2026-02-02 08:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:06", + "echoMap": {}, + "alarmNo": "1330432824", + "alarmDate": "1769991124704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113462898889809", + "createdBy": null, + "createdTime": "2026-02-02 08:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:03", + "echoMap": {}, + "alarmNo": "1330432823", + "alarmDate": "1769991121751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113454308955413", + "createdBy": null, + "createdTime": "2026-02-02 08:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:56", + "echoMap": {}, + "alarmNo": "1330432822", + "alarmDate": "1769990533645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113454308955373", + "createdBy": null, + "createdTime": "2026-02-02 08:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:53", + "echoMap": {}, + "alarmNo": "1330432821", + "alarmDate": "1769990524522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020934", + "createdBy": null, + "createdTime": "2026-02-02 07:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:51", + "echoMap": {}, + "alarmNo": "1330432820", + "alarmDate": "1769989910202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020760", + "createdBy": null, + "createdTime": "2026-02-02 07:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:37", + "echoMap": {}, + "alarmNo": "1330432819", + "alarmDate": "1769989356006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020731", + "createdBy": null, + "createdTime": "2026-02-02 07:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:28", + "echoMap": {}, + "alarmNo": "1330432818", + "alarmDate": "1769989347432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113445719020703", + "createdBy": null, + "createdTime": "2026-02-02 07:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:21", + "echoMap": {}, + "alarmNo": "1330432817", + "alarmDate": "1769989339902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113437129086217", + "createdBy": null, + "createdTime": "2026-02-02 07:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:58", + "echoMap": {}, + "alarmNo": "1330432816", + "alarmDate": "1769988717579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151784", + "createdBy": null, + "createdTime": "2026-02-02 07:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:52", + "echoMap": {}, + "alarmNo": "1330432815", + "alarmDate": "1769988111342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151771", + "createdBy": null, + "createdTime": "2026-02-02 07:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:49", + "echoMap": {}, + "alarmNo": "1330432814", + "alarmDate": "1769988108470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151748", + "createdBy": null, + "createdTime": "2026-02-02 07:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:45", + "echoMap": {}, + "alarmNo": "1330432813", + "alarmDate": "1769988103761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151606", + "createdBy": null, + "createdTime": "2026-02-02 07:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:42", + "echoMap": {}, + "alarmNo": "1330432812", + "alarmDate": "1769987561174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151593", + "createdBy": null, + "createdTime": "2026-02-02 07:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:39", + "echoMap": {}, + "alarmNo": "1330432811", + "alarmDate": "1769987558200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113428539151406", + "createdBy": null, + "createdTime": "2026-02-02 07:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:51", + "echoMap": {}, + "alarmNo": "1330432810", + "alarmDate": "1769987504357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949217162", + "createdBy": null, + "createdTime": "2026-02-02 07:02:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:25", + "echoMap": {}, + "alarmNo": "1330432809", + "alarmDate": "1769986954875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060024", + "deviceName": "[312](10)1号航站楼3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949217090", + "createdBy": null, + "createdTime": "2026-02-02 07:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:13", + "echoMap": {}, + "alarmNo": "1330432808", + "alarmDate": "1769986931867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949217067", + "createdBy": null, + "createdTime": "2026-02-02 07:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:32", + "echoMap": {}, + "alarmNo": "1330432807", + "alarmDate": "1769986928170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060020", + "deviceName": "[310](10)1号航站楼3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949216993", + "createdBy": null, + "createdTime": "2026-02-02 07:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:06", + "echoMap": {}, + "alarmNo": "1330432806", + "alarmDate": "1769986903778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060024", + "deviceName": "[312](10)1号航站楼3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949216859", + "createdBy": null, + "createdTime": "2026-02-02 06:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:50", + "echoMap": {}, + "alarmNo": "1330432805", + "alarmDate": "1769986363118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113419949216811", + "createdBy": null, + "createdTime": "2026-02-02 06:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:30", + "echoMap": {}, + "alarmNo": "1330432804", + "alarmDate": "1769986344137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060047", + "deviceName": "[302](10)1号航站楼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113415654249536", + "createdBy": null, + "createdTime": "2026-02-02 06:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:11", + "echoMap": {}, + "alarmNo": "1330432803", + "alarmDate": "1769986329515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113415654249481", + "createdBy": null, + "createdTime": "2026-02-02 06:51:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:46", + "echoMap": {}, + "alarmNo": "1330432802", + "alarmDate": "1769986304938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113411359282480", + "createdBy": null, + "createdTime": "2026-02-02 06:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:57", + "echoMap": {}, + "alarmNo": "1330432801", + "alarmDate": "1769985763357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113411359282474", + "createdBy": null, + "createdTime": "2026-02-02 06:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:43", + "echoMap": {}, + "alarmNo": "1330432800", + "alarmDate": "1769985762216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113411359282451", + "createdBy": null, + "createdTime": "2026-02-02 06:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:34", + "echoMap": {}, + "alarmNo": "1330432799", + "alarmDate": "1769985752729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347901", + "createdBy": null, + "createdTime": "2026-02-02 06:26:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:06", + "echoMap": {}, + "alarmNo": "1330432798", + "alarmDate": "1769984767043", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347882", + "createdBy": null, + "createdTime": "2026-02-02 06:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:08", + "echoMap": {}, + "alarmNo": "1330432797", + "alarmDate": "1769984708712", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003030005", + "deviceName": "安防箱5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1003" + }, + { + "id": "723113402769347802", + "createdBy": null, + "createdTime": "2026-02-02 06:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:30", + "echoMap": {}, + "alarmNo": "1330432796", + "alarmDate": "1769984548856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347734", + "createdBy": null, + "createdTime": "2026-02-02 06:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:07", + "echoMap": {}, + "alarmNo": "1330432795", + "alarmDate": "1769984525814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347732", + "createdBy": null, + "createdTime": "2026-02-02 06:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:07", + "echoMap": {}, + "alarmNo": "1330432794", + "alarmDate": "1769984525701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113402769347702", + "createdBy": null, + "createdTime": "2026-02-02 06:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:54", + "echoMap": {}, + "alarmNo": "1330432793", + "alarmDate": "1769984512976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113398474380307", + "createdBy": null, + "createdTime": "2026-02-02 06:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:42", + "echoMap": {}, + "alarmNo": "1330432792", + "alarmDate": "1769983960705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113394179413428", + "createdBy": null, + "createdTime": "2026-02-02 06:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:29", + "echoMap": {}, + "alarmNo": "1330432791", + "alarmDate": "1769983954478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113394179413290", + "createdBy": null, + "createdTime": "2026-02-02 06:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:11", + "echoMap": {}, + "alarmNo": "1330432790", + "alarmDate": "1769983905467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113394179413053", + "createdBy": null, + "createdTime": "2026-02-02 06:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1330432789", + "alarmDate": "1769983318137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478751", + "createdBy": null, + "createdTime": "2026-02-02 05:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:23", + "echoMap": {}, + "alarmNo": "1330432788", + "alarmDate": "1769982742015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478729", + "createdBy": null, + "createdTime": "2026-02-02 05:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:17", + "echoMap": {}, + "alarmNo": "1330432787", + "alarmDate": "1769982735798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478676", + "createdBy": null, + "createdTime": "2026-02-02 05:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:04", + "echoMap": {}, + "alarmNo": "1330432786", + "alarmDate": "1769982723123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113385589478409", + "createdBy": null, + "createdTime": "2026-02-02 05:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:29", + "echoMap": {}, + "alarmNo": "1330432785", + "alarmDate": "1769982136672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113376999543963", + "createdBy": null, + "createdTime": "2026-02-02 05:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:20", + "echoMap": {}, + "alarmNo": "1330432784", + "alarmDate": "1769981539322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113372704576550", + "createdBy": null, + "createdTime": "2026-02-02 05:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:51", + "echoMap": {}, + "alarmNo": "1330432783", + "alarmDate": "1769981510380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609545", + "createdBy": null, + "createdTime": "2026-02-02 05:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:06", + "echoMap": {}, + "alarmNo": "1330432782", + "alarmDate": "1769981107184", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609497", + "createdBy": null, + "createdTime": "2026-02-02 05:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:42", + "echoMap": {}, + "alarmNo": "1330432781", + "alarmDate": "1769980961316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609425", + "createdBy": null, + "createdTime": "2026-02-02 05:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:31", + "echoMap": {}, + "alarmNo": "1330432780", + "alarmDate": "1769980950025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609356", + "createdBy": null, + "createdTime": "2026-02-02 05:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:20", + "echoMap": {}, + "alarmNo": "1330432779", + "alarmDate": "1769980939262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113368409609271", + "createdBy": null, + "createdTime": "2026-02-02 05:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:06", + "echoMap": {}, + "alarmNo": "1330432778", + "alarmDate": "1769980927238", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113359819674676", + "createdBy": null, + "createdTime": "2026-02-02 05:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:07", + "echoMap": {}, + "alarmNo": "1330432777", + "alarmDate": "1769980326873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060058", + "deviceName": "[303](10)1号航站楼1#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113359819674663", + "createdBy": null, + "createdTime": "2026-02-02 05:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:53", + "echoMap": {}, + "alarmNo": "1330432776", + "alarmDate": "1769980324926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060060", + "deviceName": "[301](10)1号航站楼1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113355524707364", + "createdBy": null, + "createdTime": "2026-02-02 05:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:50", + "echoMap": {}, + "alarmNo": "1330432775", + "alarmDate": "1769980308796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113351229740319", + "createdBy": null, + "createdTime": "2026-02-02 05:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:43", + "echoMap": {}, + "alarmNo": "1330432774", + "alarmDate": "1769979761618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113351229740108", + "createdBy": null, + "createdTime": "2026-02-02 05:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:10", + "echoMap": {}, + "alarmNo": "1330432773", + "alarmDate": "1769979728684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113346934772786", + "createdBy": null, + "createdTime": "2026-02-02 05:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:54", + "echoMap": {}, + "alarmNo": "1330432772", + "alarmDate": "1769979713432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113342639805867", + "createdBy": null, + "createdTime": "2026-02-02 05:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:46", + "echoMap": {}, + "alarmNo": "1330432771", + "alarmDate": "1769979704493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113342639805678", + "createdBy": null, + "createdTime": "2026-02-02 04:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:36", + "echoMap": {}, + "alarmNo": "1330432770", + "alarmDate": "1769979155317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113334049870953", + "createdBy": null, + "createdTime": "2026-02-02 04:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:13", + "echoMap": {}, + "alarmNo": "1330432769", + "alarmDate": "1769978532054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113325459936457", + "createdBy": null, + "createdTime": "2026-02-02 04:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:28", + "echoMap": {}, + "alarmNo": "1330432768", + "alarmDate": "1769977946783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113325459936380", + "createdBy": null, + "createdTime": "2026-02-02 04:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:16", + "echoMap": {}, + "alarmNo": "1330432767", + "alarmDate": "1769977934621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113325459936270", + "createdBy": null, + "createdTime": "2026-02-02 04:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:00", + "echoMap": {}, + "alarmNo": "1330432766", + "alarmDate": "1769977918659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113308280067313", + "createdBy": null, + "createdTime": "2026-02-02 04:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:34", + "echoMap": {}, + "alarmNo": "1330432765", + "alarmDate": "1769976753256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113303985099840", + "createdBy": null, + "createdTime": "2026-02-02 04:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:55", + "echoMap": {}, + "alarmNo": "1330432764", + "alarmDate": "1769976714316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113299690132721", + "createdBy": null, + "createdTime": "2026-02-02 04:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:35", + "echoMap": {}, + "alarmNo": "1330432763", + "alarmDate": "1769976153841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113299690132620", + "createdBy": null, + "createdTime": "2026-02-02 04:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:19", + "echoMap": {}, + "alarmNo": "1330432762", + "alarmDate": "1769976137823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113291100197929", + "createdBy": null, + "createdTime": "2026-02-02 03:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:04", + "echoMap": {}, + "alarmNo": "1330432761", + "alarmDate": "1769975522646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113282510263425", + "createdBy": null, + "createdTime": "2026-02-02 03:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:16", + "echoMap": {}, + "alarmNo": "1330432760", + "alarmDate": "1769974934509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113282510263333", + "createdBy": null, + "createdTime": "2026-02-02 03:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:02", + "echoMap": {}, + "alarmNo": "1330432759", + "alarmDate": "1769974921252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113273920328933", + "createdBy": null, + "createdTime": "2026-02-02 03:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:33", + "echoMap": {}, + "alarmNo": "1330432758", + "alarmDate": "1769974351848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113265330394292", + "createdBy": null, + "createdTime": "2026-02-02 03:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:25", + "echoMap": {}, + "alarmNo": "1330432757", + "alarmDate": "1769973743822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113256740459763", + "createdBy": null, + "createdTime": "2026-02-02 03:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:35", + "echoMap": {}, + "alarmNo": "1330432756", + "alarmDate": "1769973153650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113256740459685", + "createdBy": null, + "createdTime": "2026-02-02 03:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:22", + "echoMap": {}, + "alarmNo": "1330432755", + "alarmDate": "1769973141235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113256740459527", + "createdBy": null, + "createdTime": "2026-02-02 03:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:58", + "echoMap": {}, + "alarmNo": "1330432754", + "alarmDate": "1769973117255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113248150524930", + "createdBy": null, + "createdTime": "2026-02-02 03:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:55", + "echoMap": {}, + "alarmNo": "1330432753", + "alarmDate": "1769972514150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113239560590485", + "createdBy": null, + "createdTime": "2026-02-02 02:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:03", + "echoMap": {}, + "alarmNo": "1330432752", + "alarmDate": "1769971921917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113239560590402", + "createdBy": null, + "createdTime": "2026-02-02 02:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:50", + "echoMap": {}, + "alarmNo": "1330432751", + "alarmDate": "1769971908674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113235265623098", + "createdBy": null, + "createdTime": "2026-02-02 02:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:43", + "echoMap": {}, + "alarmNo": "1330432750", + "alarmDate": "1769971361537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113230970656049", + "createdBy": null, + "createdTime": "2026-02-02 02:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:12", + "echoMap": {}, + "alarmNo": "1330432749", + "alarmDate": "1769971331410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113222380721502", + "createdBy": null, + "createdTime": "2026-02-02 02:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:19", + "echoMap": {}, + "alarmNo": "1330432748", + "alarmDate": "1769970738469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113213790786930", + "createdBy": null, + "createdTime": "2026-02-02 02:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:22", + "echoMap": {}, + "alarmNo": "1330432747", + "alarmDate": "1769970141211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113213790786841", + "createdBy": null, + "createdTime": "2026-02-02 02:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:10", + "echoMap": {}, + "alarmNo": "1330432746", + "alarmDate": "1769970128855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113205200852384", + "createdBy": null, + "createdTime": "2026-02-02 02:12:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:29", + "echoMap": {}, + "alarmNo": "1330432745", + "alarmDate": "1769969548421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113205200852121", + "createdBy": null, + "createdTime": "2026-02-02 02:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:48", + "echoMap": {}, + "alarmNo": "1330432744", + "alarmDate": "1769969506754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113200905884731", + "createdBy": null, + "createdTime": "2026-02-02 02:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:43", + "echoMap": {}, + "alarmNo": "1330432743", + "alarmDate": "1769968961597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113192315950114", + "createdBy": null, + "createdTime": "2026-02-02 02:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:50", + "echoMap": {}, + "alarmNo": "1330432742", + "alarmDate": "1769968908532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113188020982887", + "createdBy": null, + "createdTime": "2026-02-02 01:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:42", + "echoMap": {}, + "alarmNo": "1330432741", + "alarmDate": "1769968361414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113188020982802", + "createdBy": null, + "createdTime": "2026-02-02 01:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:29", + "echoMap": {}, + "alarmNo": "1330432740", + "alarmDate": "1769968348136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113179431048262", + "createdBy": null, + "createdTime": "2026-02-02 01:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:54", + "echoMap": {}, + "alarmNo": "1330432739", + "alarmDate": "1769968312822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113170841113794", + "createdBy": null, + "createdTime": "2026-02-02 01:45:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:06", + "echoMap": {}, + "alarmNo": "1330432738", + "alarmDate": "1769967906963", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113166546146311", + "createdBy": null, + "createdTime": "2026-02-02 01:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:09", + "echoMap": {}, + "alarmNo": "1330432737", + "alarmDate": "1769967728020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113153661244463", + "createdBy": null, + "createdTime": "2026-02-02 01:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:10", + "echoMap": {}, + "alarmNo": "1330432736", + "alarmDate": "1769967128910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113149366277154", + "createdBy": null, + "createdTime": "2026-02-02 01:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:56", + "echoMap": {}, + "alarmNo": "1330432735", + "alarmDate": "1769967115460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113136481375432", + "createdBy": null, + "createdTime": "2026-02-02 01:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:09", + "echoMap": {}, + "alarmNo": "1330432734", + "alarmDate": "1769966527937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113127891440835", + "createdBy": null, + "createdTime": "2026-02-02 01:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:30", + "echoMap": {}, + "alarmNo": "1330432733", + "alarmDate": "1769965949267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113119301506143", + "createdBy": null, + "createdTime": "2026-02-02 01:05:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:07", + "echoMap": {}, + "alarmNo": "1330432732", + "alarmDate": "1769965507851", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1003030004", + "deviceName": "安防箱4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1003" + }, + { + "id": "723113115006538792", + "createdBy": null, + "createdTime": "2026-02-02 01:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:30", + "echoMap": {}, + "alarmNo": "1330432731", + "alarmDate": "1769965349037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113110711571658", + "createdBy": null, + "createdTime": "2026-02-02 01:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:16", + "echoMap": {}, + "alarmNo": "1330432730", + "alarmDate": "1769965334577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113102121636988", + "createdBy": null, + "createdTime": "2026-02-02 00:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:25", + "echoMap": {}, + "alarmNo": "1330432729", + "alarmDate": "1769964744120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113097826669590", + "createdBy": null, + "createdTime": "2026-02-02 00:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:59", + "echoMap": {}, + "alarmNo": "1330432728", + "alarmDate": "1769964717626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113084941767784", + "createdBy": null, + "createdTime": "2026-02-02 00:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:58", + "echoMap": {}, + "alarmNo": "1330432727", + "alarmDate": "1769964117435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113076351833267", + "createdBy": null, + "createdTime": "2026-02-02 00:32:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:37", + "echoMap": {}, + "alarmNo": "1330432726", + "alarmDate": "1769963555935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898712", + "createdBy": null, + "createdTime": "2026-02-02 00:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:50", + "echoMap": {}, + "alarmNo": "1330432725", + "alarmDate": "1769963509378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898606", + "createdBy": null, + "createdTime": "2026-02-02 00:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:06", + "echoMap": {}, + "alarmNo": "1330432724", + "alarmDate": "1769963226832", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898571", + "createdBy": null, + "createdTime": "2026-02-02 00:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:06", + "echoMap": {}, + "alarmNo": "1330432723", + "alarmDate": "1769963106915", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1003060079", + "deviceName": "[111](10)1号航站楼上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113067761898524", + "createdBy": null, + "createdTime": "2026-02-02 00:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:42", + "echoMap": {}, + "alarmNo": "1330432722", + "alarmDate": "1769962961208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113059171964112", + "createdBy": null, + "createdTime": "2026-02-02 00:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:19", + "echoMap": {}, + "alarmNo": "1330432721", + "alarmDate": "1769962937834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113050582029346", + "createdBy": null, + "createdTime": "2026-02-02 00:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:18", + "echoMap": {}, + "alarmNo": "1330432720", + "alarmDate": "1769962336668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060049", + "deviceName": "[204](10)1号航站楼厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113046287062024", + "createdBy": null, + "createdTime": "2026-02-02 00:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:04", + "echoMap": {}, + "alarmNo": "1330432719", + "alarmDate": "1769962323235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060090", + "deviceName": "[206](10)1号航站楼上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113029107192858", + "createdBy": null, + "createdTime": "2026-02-02 00:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:08", + "echoMap": {}, + "alarmNo": "1330432718", + "alarmDate": "1769961726502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060032", + "deviceName": "[203](10)1号航站楼厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + }, + { + "id": "723113024812225734", + "createdBy": null, + "createdTime": "2026-02-02 00:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:48", + "echoMap": {}, + "alarmNo": "1330432717", + "alarmDate": "1769961707234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1003060072", + "deviceName": "[207](10)1号航站楼下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1003" + } + ] + }, + "1004": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112865896978444", + "createdBy": null, + "createdTime": "2026-02-02 00:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:50", + "echoMap": {}, + "alarmNo": "1350077616", + "alarmDate": "1769961642111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112870191945760", + "createdBy": null, + "createdTime": "2026-02-02 00:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:14", + "echoMap": {}, + "alarmNo": "1350077617", + "alarmDate": "1769961668143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112870191945829", + "createdBy": null, + "createdTime": "2026-02-02 00:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:38", + "echoMap": {}, + "alarmNo": "1350077618", + "alarmDate": "1769961692160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112878781880425", + "createdBy": null, + "createdTime": "2026-02-02 00:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:01", + "echoMap": {}, + "alarmNo": "1350077619", + "alarmDate": "1769962255361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112878781880483", + "createdBy": null, + "createdTime": "2026-02-02 00:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:25", + "echoMap": {}, + "alarmNo": "1350077620", + "alarmDate": "1769962279438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112887371815064", + "createdBy": null, + "createdTime": "2026-02-02 00:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:49", + "echoMap": {}, + "alarmNo": "1350077621", + "alarmDate": "1769962842637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112891666782208", + "createdBy": null, + "createdTime": "2026-02-02 00:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:09", + "echoMap": {}, + "alarmNo": "1350077622", + "alarmDate": "1769962868174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112895961749510", + "createdBy": null, + "createdTime": "2026-02-02 00:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:37", + "echoMap": {}, + "alarmNo": "1350077623", + "alarmDate": "1769962890698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112895961749700", + "createdBy": null, + "createdTime": "2026-02-02 00:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:25", + "echoMap": {}, + "alarmNo": "1350077624", + "alarmDate": "1769963478958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684169", + "createdBy": null, + "createdTime": "2026-02-02 00:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:48", + "echoMap": {}, + "alarmNo": "1350077625", + "alarmDate": "1769964042150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684236", + "createdBy": null, + "createdTime": "2026-02-02 00:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:12", + "echoMap": {}, + "alarmNo": "1350077626", + "alarmDate": "1769964066159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684295", + "createdBy": null, + "createdTime": "2026-02-02 00:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:36", + "echoMap": {}, + "alarmNo": "1350077627", + "alarmDate": "1769964090200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684321", + "createdBy": null, + "createdTime": "2026-02-02 00:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:48", + "echoMap": {}, + "alarmNo": "1350077628", + "alarmDate": "1769964099848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112913141618703", + "createdBy": null, + "createdTime": "2026-02-02 00:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:59", + "echoMap": {}, + "alarmNo": "1350077629", + "alarmDate": "1769964653390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112913141618762", + "createdBy": null, + "createdTime": "2026-02-02 00:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1350077630", + "alarmDate": "1769964677529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112913141618903", + "createdBy": null, + "createdTime": "2026-02-02 01:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:48", + "echoMap": {}, + "alarmNo": "1350077631", + "alarmDate": "1769965241846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112917436586004", + "createdBy": null, + "createdTime": "2026-02-02 01:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:12", + "echoMap": {}, + "alarmNo": "1350077632", + "alarmDate": "1769965265646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112921731553314", + "createdBy": null, + "createdTime": "2026-02-02 01:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:36", + "echoMap": {}, + "alarmNo": "1350077633", + "alarmDate": "1769965289781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112921731553452", + "createdBy": null, + "createdTime": "2026-02-02 01:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:59", + "echoMap": {}, + "alarmNo": "1350077634", + "alarmDate": "1769965852926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112921731553511", + "createdBy": null, + "createdTime": "2026-02-02 01:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:23", + "echoMap": {}, + "alarmNo": "1350077635", + "alarmDate": "1769965877072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112926026520582", + "createdBy": null, + "createdTime": "2026-02-02 01:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:21", + "echoMap": {}, + "alarmNo": "1350077636", + "alarmDate": "1769965879626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112930321487883", + "createdBy": null, + "createdTime": "2026-02-02 01:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:46", + "echoMap": {}, + "alarmNo": "1350077637", + "alarmDate": "1769965901042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112930321488024", + "createdBy": null, + "createdTime": "2026-02-02 01:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:16", + "echoMap": {}, + "alarmNo": "1350077638", + "alarmDate": "1769966464176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112930321488088", + "createdBy": null, + "createdTime": "2026-02-02 01:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:40", + "echoMap": {}, + "alarmNo": "1350077639", + "alarmDate": "1769966488277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112938911422555", + "createdBy": null, + "createdTime": "2026-02-02 01:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:58", + "echoMap": {}, + "alarmNo": "1350077640", + "alarmDate": "1769967052454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112938911422623", + "createdBy": null, + "createdTime": "2026-02-02 01:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:28", + "echoMap": {}, + "alarmNo": "1350077641", + "alarmDate": "1769967075552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112938911422686", + "createdBy": null, + "createdTime": "2026-02-02 01:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:46", + "echoMap": {}, + "alarmNo": "1350077642", + "alarmDate": "1769967099595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112947501357124", + "createdBy": null, + "createdTime": "2026-02-02 01:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:00", + "echoMap": {}, + "alarmNo": "1350077643", + "alarmDate": "1769967659425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112947501357138", + "createdBy": null, + "createdTime": "2026-02-02 01:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:16", + "echoMap": {}, + "alarmNo": "1350077644", + "alarmDate": "1769967663711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112947501357203", + "createdBy": null, + "createdTime": "2026-02-02 01:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:40", + "echoMap": {}, + "alarmNo": "1350077645", + "alarmDate": "1769967687827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112956091291677", + "createdBy": null, + "createdTime": "2026-02-02 01:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:03", + "echoMap": {}, + "alarmNo": "1350077646", + "alarmDate": "1769968250993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112956091291742", + "createdBy": null, + "createdTime": "2026-02-02 01:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:27", + "echoMap": {}, + "alarmNo": "1350077647", + "alarmDate": "1769968275120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112960386258973", + "createdBy": null, + "createdTime": "2026-02-02 02:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1350077648", + "alarmDate": "1769968842237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112964681226266", + "createdBy": null, + "createdTime": "2026-02-02 02:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:14", + "echoMap": {}, + "alarmNo": "1350077649", + "alarmDate": "1769968862290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112964681226329", + "createdBy": null, + "createdTime": "2026-02-02 02:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:38", + "echoMap": {}, + "alarmNo": "1350077650", + "alarmDate": "1769968886330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112964681226347", + "createdBy": null, + "createdTime": "2026-02-02 02:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:33", + "echoMap": {}, + "alarmNo": "1350077651", + "alarmDate": "1769968892074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112968976193568", + "createdBy": null, + "createdTime": "2026-02-02 02:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:03", + "echoMap": {}, + "alarmNo": "1350077652", + "alarmDate": "1769969449525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112973271161017", + "createdBy": null, + "createdTime": "2026-02-02 02:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:40", + "echoMap": {}, + "alarmNo": "1350077653", + "alarmDate": "1769970040360", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060031", + "deviceName": "[404](10)动物园2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112981861095495", + "createdBy": null, + "createdTime": "2026-02-02 02:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:39", + "echoMap": {}, + "alarmNo": "1350077654", + "alarmDate": "1769970081620", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112986156062746", + "createdBy": null, + "createdTime": "2026-02-02 02:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:01", + "echoMap": {}, + "alarmNo": "1350077655", + "alarmDate": "1769970642610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112990451030192", + "createdBy": null, + "createdTime": "2026-02-02 02:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:39", + "echoMap": {}, + "alarmNo": "1350077656", + "alarmDate": "1769970685680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112994745997339", + "createdBy": null, + "createdTime": "2026-02-02 02:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:38", + "echoMap": {}, + "alarmNo": "1350077657", + "alarmDate": "1769970697325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112999040964709", + "createdBy": null, + "createdTime": "2026-02-02 02:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:48", + "echoMap": {}, + "alarmNo": "1350077658", + "alarmDate": "1769971242069", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112999040964752", + "createdBy": null, + "createdTime": "2026-02-02 02:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:11", + "echoMap": {}, + "alarmNo": "1350077659", + "alarmDate": "1769971252129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112999040964763", + "createdBy": null, + "createdTime": "2026-02-02 02:40:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:55", + "echoMap": {}, + "alarmNo": "1350077660", + "alarmDate": "1769971253547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113003335931938", + "createdBy": null, + "createdTime": "2026-02-02 02:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:41", + "echoMap": {}, + "alarmNo": "1350077661", + "alarmDate": "1769971289211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113007630899202", + "createdBy": null, + "createdTime": "2026-02-02 02:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:37", + "echoMap": {}, + "alarmNo": "1350077662", + "alarmDate": "1769971290775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113011925866501", + "createdBy": null, + "createdTime": "2026-02-02 02:51:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:18", + "echoMap": {}, + "alarmNo": "1350077663", + "alarmDate": "1769971865408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113016220833797", + "createdBy": null, + "createdTime": "2026-02-02 02:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077664", + "alarmDate": "1769971874381", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113016220833831", + "createdBy": null, + "createdTime": "2026-02-02 02:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:26", + "echoMap": {}, + "alarmNo": "1350077665", + "alarmDate": "1769971879152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113016220833889", + "createdBy": null, + "createdTime": "2026-02-02 02:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:37", + "echoMap": {}, + "alarmNo": "1350077666", + "alarmDate": "1769971891195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768480", + "createdBy": null, + "createdTime": "2026-02-02 03:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077667", + "alarmDate": "1769972466105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768507", + "createdBy": null, + "createdTime": "2026-02-02 03:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077668", + "alarmDate": "1769972470783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060100", + "deviceName": "[209](10)动物园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768525", + "createdBy": null, + "createdTime": "2026-02-02 03:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077669", + "alarmDate": "1769972473353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768526", + "createdBy": null, + "createdTime": "2026-02-02 03:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:57", + "echoMap": {}, + "alarmNo": "1350077670", + "alarmDate": "1769972473355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113029105735697", + "createdBy": null, + "createdTime": "2026-02-02 03:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:38", + "echoMap": {}, + "alarmNo": "1350077671", + "alarmDate": "1769972494363", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113033400703157", + "createdBy": null, + "createdTime": "2026-02-02 03:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:58", + "echoMap": {}, + "alarmNo": "1350077672", + "alarmDate": "1769973057054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113041990637774", + "createdBy": null, + "createdTime": "2026-02-02 03:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:00", + "echoMap": {}, + "alarmNo": "1350077673", + "alarmDate": "1769973647612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113041990637831", + "createdBy": null, + "createdTime": "2026-02-02 03:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:26", + "echoMap": {}, + "alarmNo": "1350077674", + "alarmDate": "1769973661222", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113046285604914", + "createdBy": null, + "createdTime": "2026-02-02 03:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:26", + "echoMap": {}, + "alarmNo": "1350077675", + "alarmDate": "1769973679607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113050580572314", + "createdBy": null, + "createdTime": "2026-02-02 03:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:01", + "echoMap": {}, + "alarmNo": "1350077676", + "alarmDate": "1769974254871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113059170506816", + "createdBy": null, + "createdTime": "2026-02-02 03:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:05", + "echoMap": {}, + "alarmNo": "1350077677", + "alarmDate": "1769974842146", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113059170506819", + "createdBy": null, + "createdTime": "2026-02-02 03:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:08", + "echoMap": {}, + "alarmNo": "1350077678", + "alarmDate": "1769974842771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113059170506923", + "createdBy": null, + "createdTime": "2026-02-02 03:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:04", + "echoMap": {}, + "alarmNo": "1350077679", + "alarmDate": "1769974862618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113063465474063", + "createdBy": null, + "createdTime": "2026-02-02 03:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:33", + "echoMap": {}, + "alarmNo": "1350077680", + "alarmDate": "1769974869139", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113067760441364", + "createdBy": null, + "createdTime": "2026-02-02 03:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:33", + "echoMap": {}, + "alarmNo": "1350077681", + "alarmDate": "1769974881027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113067760441394", + "createdBy": null, + "createdTime": "2026-02-02 03:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:39", + "echoMap": {}, + "alarmNo": "1350077682", + "alarmDate": "1769974886541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060083", + "deviceName": "[110](10)动物园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113076350376044", + "createdBy": null, + "createdTime": "2026-02-02 03:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:31", + "echoMap": {}, + "alarmNo": "1350077683", + "alarmDate": "1769975484206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113076350376121", + "createdBy": null, + "createdTime": "2026-02-02 03:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:40", + "echoMap": {}, + "alarmNo": "1350077684", + "alarmDate": "1769975500424", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113080645343275", + "createdBy": null, + "createdTime": "2026-02-02 04:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:45", + "echoMap": {}, + "alarmNo": "1350077685", + "alarmDate": "1769976042002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060083", + "deviceName": "[110](10)动物园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113080645343281", + "createdBy": null, + "createdTime": "2026-02-02 04:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:53", + "echoMap": {}, + "alarmNo": "1350077686", + "alarmDate": "1769976042446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113080645343286", + "createdBy": null, + "createdTime": "2026-02-02 04:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:44", + "echoMap": {}, + "alarmNo": "1350077687", + "alarmDate": "1769976043156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060028", + "deviceName": "[204](10)动物园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113084940310669", + "createdBy": null, + "createdTime": "2026-02-02 04:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:18", + "echoMap": {}, + "alarmNo": "1350077688", + "alarmDate": "1769976071435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113089235277828", + "createdBy": null, + "createdTime": "2026-02-02 04:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:38", + "echoMap": {}, + "alarmNo": "1350077689", + "alarmDate": "1769976097209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060100", + "deviceName": "[209](10)动物园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113093530245177", + "createdBy": null, + "createdTime": "2026-02-02 04:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:45", + "echoMap": {}, + "alarmNo": "1350077690", + "alarmDate": "1769976644392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060100", + "deviceName": "[209](10)动物园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113093530245265", + "createdBy": null, + "createdTime": "2026-02-02 04:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:06", + "echoMap": {}, + "alarmNo": "1350077691", + "alarmDate": "1769976665393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113093530245276", + "createdBy": null, + "createdTime": "2026-02-02 04:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:13", + "echoMap": {}, + "alarmNo": "1350077692", + "alarmDate": "1769976666756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113110710114311", + "createdBy": null, + "createdTime": "2026-02-02 04:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:23", + "echoMap": {}, + "alarmNo": "1350077693", + "alarmDate": "1769977270065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113110710114458", + "createdBy": null, + "createdTime": "2026-02-02 04:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:22", + "echoMap": {}, + "alarmNo": "1350077694", + "alarmDate": "1769977300535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113119300048922", + "createdBy": null, + "createdTime": "2026-02-02 04:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:58", + "echoMap": {}, + "alarmNo": "1350077695", + "alarmDate": "1769977845403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113119300049011", + "createdBy": null, + "createdTime": "2026-02-02 04:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:07", + "echoMap": {}, + "alarmNo": "1350077696", + "alarmDate": "1769977860962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060083", + "deviceName": "[110](10)动物园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113127889983576", + "createdBy": null, + "createdTime": "2026-02-02 04:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:08", + "echoMap": {}, + "alarmNo": "1350077697", + "alarmDate": "1769978455746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113127889983637", + "createdBy": null, + "createdTime": "2026-02-02 04:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:08", + "echoMap": {}, + "alarmNo": "1350077698", + "alarmDate": "1769978467218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113127889983745", + "createdBy": null, + "createdTime": "2026-02-02 04:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:37", + "echoMap": {}, + "alarmNo": "1350077699", + "alarmDate": "1769978491227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113136479918144", + "createdBy": null, + "createdTime": "2026-02-02 04:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:02", + "echoMap": {}, + "alarmNo": "1350077700", + "alarmDate": "1769979048548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113136479918221", + "createdBy": null, + "createdTime": "2026-02-02 04:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:25", + "echoMap": {}, + "alarmNo": "1350077701", + "alarmDate": "1769979078524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113140774885377", + "createdBy": null, + "createdTime": "2026-02-02 04:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:37", + "echoMap": {}, + "alarmNo": "1350077702", + "alarmDate": "1769979095720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113145069852732", + "createdBy": null, + "createdTime": "2026-02-02 05:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:49", + "echoMap": {}, + "alarmNo": "1350077703", + "alarmDate": "1769979642832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113145069852738", + "createdBy": null, + "createdTime": "2026-02-02 05:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:45", + "echoMap": {}, + "alarmNo": "1350077704", + "alarmDate": "1769979643858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113145069852794", + "createdBy": null, + "createdTime": "2026-02-02 05:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:13", + "echoMap": {}, + "alarmNo": "1350077705", + "alarmDate": "1769979666766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113149364819975", + "createdBy": null, + "createdTime": "2026-02-02 05:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:37", + "echoMap": {}, + "alarmNo": "1350077706", + "alarmDate": "1769979690778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113153659787356", + "createdBy": null, + "createdTime": "2026-02-02 05:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:41", + "echoMap": {}, + "alarmNo": "1350077707", + "alarmDate": "1769980242099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113170839656470", + "createdBy": null, + "createdTime": "2026-02-02 05:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:18", + "echoMap": {}, + "alarmNo": "1350077708", + "alarmDate": "1769980876530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113196609460256", + "createdBy": null, + "createdTime": "2026-02-02 05:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:39", + "echoMap": {}, + "alarmNo": "1350077709", + "alarmDate": "1769982642021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113196609460305", + "createdBy": null, + "createdTime": "2026-02-02 05:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:58", + "echoMap": {}, + "alarmNo": "1350077710", + "alarmDate": "1769982657226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113196609460409", + "createdBy": null, + "createdTime": "2026-02-02 05:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:36", + "echoMap": {}, + "alarmNo": "1350077711", + "alarmDate": "1769982690360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113205199395003", + "createdBy": null, + "createdTime": "2026-02-02 06:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:25", + "echoMap": {}, + "alarmNo": "1350077712", + "alarmDate": "1769983277670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113213789329500", + "createdBy": null, + "createdTime": "2026-02-02 06:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:04", + "echoMap": {}, + "alarmNo": "1350077713", + "alarmDate": "1769983841576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113213789329595", + "createdBy": null, + "createdTime": "2026-02-02 06:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:28", + "echoMap": {}, + "alarmNo": "1350077714", + "alarmDate": "1769983875723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113218084296741", + "createdBy": null, + "createdTime": "2026-02-02 06:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:32", + "echoMap": {}, + "alarmNo": "1350077715", + "alarmDate": "1769983890904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113222379264004", + "createdBy": null, + "createdTime": "2026-02-02 06:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:23", + "echoMap": {}, + "alarmNo": "1350077716", + "alarmDate": "1769983899691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113226674231329", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:47", + "echoMap": {}, + "alarmNo": "1350077717", + "alarmDate": "1769984494995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113230969198725", + "createdBy": null, + "createdTime": "2026-02-02 06:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:10", + "echoMap": {}, + "alarmNo": "1350077719", + "alarmDate": "1769985058347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113235264165894", + "createdBy": null, + "createdTime": "2026-02-02 06:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:34", + "echoMap": {}, + "alarmNo": "1350077720", + "alarmDate": "1769985082264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113239559133294", + "createdBy": null, + "createdTime": "2026-02-02 06:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:18", + "echoMap": {}, + "alarmNo": "1350077721", + "alarmDate": "1769985647535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113239559133372", + "createdBy": null, + "createdTime": "2026-02-02 06:41:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:13", + "echoMap": {}, + "alarmNo": "1350077722", + "alarmDate": "1769985671679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113239559133415", + "createdBy": null, + "createdTime": "2026-02-02 06:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:31", + "echoMap": {}, + "alarmNo": "1350077723", + "alarmDate": "1769985685132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113248149067999", + "createdBy": null, + "createdTime": "2026-02-02 06:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:05", + "echoMap": {}, + "alarmNo": "1350077724", + "alarmDate": "1769986288867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113248149068002", + "createdBy": null, + "createdTime": "2026-02-02 06:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:30", + "echoMap": {}, + "alarmNo": "1350077725", + "alarmDate": "1769986289529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060071", + "deviceName": "[307](10)动物园1#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113248149068031", + "createdBy": null, + "createdTime": "2026-02-02 06:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:37", + "echoMap": {}, + "alarmNo": "1350077726", + "alarmDate": "1769986297992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060023", + "deviceName": "[329](10)动物园4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113256739002465", + "createdBy": null, + "createdTime": "2026-02-02 07:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:29", + "echoMap": {}, + "alarmNo": "1350077727", + "alarmDate": "1769986877137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113256739002638", + "createdBy": null, + "createdTime": "2026-02-02 07:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:00", + "echoMap": {}, + "alarmNo": "1350077728", + "alarmDate": "1769987441834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113256739002692", + "createdBy": null, + "createdTime": "2026-02-02 07:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:27", + "echoMap": {}, + "alarmNo": "1350077729", + "alarmDate": "1769987455428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113261033969709", + "createdBy": null, + "createdTime": "2026-02-02 07:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:30", + "echoMap": {}, + "alarmNo": "1350077730", + "alarmDate": "1769987470895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113265328937163", + "createdBy": null, + "createdTime": "2026-02-02 07:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:07", + "echoMap": {}, + "alarmNo": "1350077731", + "alarmDate": "1769988042021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806281", + "createdBy": null, + "createdTime": "2026-02-02 07:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:26", + "echoMap": {}, + "alarmNo": "1350077732", + "alarmDate": "1769989268361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806311", + "createdBy": null, + "createdTime": "2026-02-02 07:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:02", + "echoMap": {}, + "alarmNo": "1350077733", + "alarmDate": "1769989277765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806379", + "createdBy": null, + "createdTime": "2026-02-02 07:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:49", + "echoMap": {}, + "alarmNo": "1350077734", + "alarmDate": "1769989296364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806390", + "createdBy": null, + "createdTime": "2026-02-02 07:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:09", + "echoMap": {}, + "alarmNo": "1350077735", + "alarmDate": "1769989298330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113291098740775", + "createdBy": null, + "createdTime": "2026-02-02 07:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:35", + "echoMap": {}, + "alarmNo": "1350077736", + "alarmDate": "1769989845499", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113291098740916", + "createdBy": null, + "createdTime": "2026-02-02 07:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:02", + "echoMap": {}, + "alarmNo": "1350077737", + "alarmDate": "1769989880080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113291098740969", + "createdBy": null, + "createdTime": "2026-02-02 07:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:22", + "echoMap": {}, + "alarmNo": "1350077738", + "alarmDate": "1769989892521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113299688675396", + "createdBy": null, + "createdTime": "2026-02-02 08:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:02", + "echoMap": {}, + "alarmNo": "1350077739", + "alarmDate": "1769990449665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113299688675497", + "createdBy": null, + "createdTime": "2026-02-02 08:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:26", + "echoMap": {}, + "alarmNo": "1350077740", + "alarmDate": "1769990473793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113299688675500", + "createdBy": null, + "createdTime": "2026-02-02 08:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:39", + "echoMap": {}, + "alarmNo": "1350077741", + "alarmDate": "1769990474269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113308278610004", + "createdBy": null, + "createdTime": "2026-02-02 08:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:52", + "echoMap": {}, + "alarmNo": "1350077742", + "alarmDate": "1769991039959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113308278610020", + "createdBy": null, + "createdTime": "2026-02-02 08:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:03", + "echoMap": {}, + "alarmNo": "1350077743", + "alarmDate": "1769991045403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113308278610133", + "createdBy": null, + "createdTime": "2026-02-02 08:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:51", + "echoMap": {}, + "alarmNo": "1350077744", + "alarmDate": "1769991075557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113316868544542", + "createdBy": null, + "createdTime": "2026-02-02 08:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:09", + "echoMap": {}, + "alarmNo": "1350077745", + "alarmDate": "1769991640212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113316868544784", + "createdBy": null, + "createdTime": "2026-02-02 08:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:46", + "echoMap": {}, + "alarmNo": "1350077746", + "alarmDate": "1769991693385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113325458479285", + "createdBy": null, + "createdTime": "2026-02-02 08:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:29", + "echoMap": {}, + "alarmNo": "1350077747", + "alarmDate": "1769992270554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113325458479369", + "createdBy": null, + "createdTime": "2026-02-02 08:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:16", + "echoMap": {}, + "alarmNo": "1350077748", + "alarmDate": "1769992293566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413708", + "createdBy": null, + "createdTime": "2026-02-02 08:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:57", + "echoMap": {}, + "alarmNo": "1350077749", + "alarmDate": "1769992840791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413756", + "createdBy": null, + "createdTime": "2026-02-02 08:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:02", + "echoMap": {}, + "alarmNo": "1350077750", + "alarmDate": "1769992856186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413793", + "createdBy": null, + "createdTime": "2026-02-02 08:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:48", + "echoMap": {}, + "alarmNo": "1350077751", + "alarmDate": "1769992868868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413847", + "createdBy": null, + "createdTime": "2026-02-02 08:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:26", + "echoMap": {}, + "alarmNo": "1350077752", + "alarmDate": "1769992886345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113342638348433", + "createdBy": null, + "createdTime": "2026-02-02 08:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:54", + "echoMap": {}, + "alarmNo": "1350077753", + "alarmDate": "1769993499129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113351228282918", + "createdBy": null, + "createdTime": "2026-02-02 09:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:55", + "echoMap": {}, + "alarmNo": "1350077754", + "alarmDate": "1769994090524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113351228283167", + "createdBy": null, + "createdTime": "2026-02-02 09:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:25", + "echoMap": {}, + "alarmNo": "1350077755", + "alarmDate": "1769994678710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113355523250217", + "createdBy": null, + "createdTime": "2026-02-02 09:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:48", + "echoMap": {}, + "alarmNo": "1350077756", + "alarmDate": "1769994695822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113359818217640", + "createdBy": null, + "createdTime": "2026-02-02 09:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:29", + "echoMap": {}, + "alarmNo": "1350077757", + "alarmDate": "1769995264163", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113359818217650", + "createdBy": null, + "createdTime": "2026-02-02 09:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:12", + "echoMap": {}, + "alarmNo": "1350077758", + "alarmDate": "1769995265984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113359818217732", + "createdBy": null, + "createdTime": "2026-02-02 09:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:53", + "echoMap": {}, + "alarmNo": "1350077759", + "alarmDate": "1769995284164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113368408152193", + "createdBy": null, + "createdTime": "2026-02-02 09:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:23", + "echoMap": {}, + "alarmNo": "1350077760", + "alarmDate": "1769995865312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113376998086660", + "createdBy": null, + "createdTime": "2026-02-02 09:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:53", + "echoMap": {}, + "alarmNo": "1350077761", + "alarmDate": "1769995895436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113381293053989", + "createdBy": null, + "createdTime": "2026-02-02 09:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:59", + "echoMap": {}, + "alarmNo": "1350077762", + "alarmDate": "1769996482554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113389882988576", + "createdBy": null, + "createdTime": "2026-02-02 09:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:24", + "echoMap": {}, + "alarmNo": "1350077763", + "alarmDate": "1769997070796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113394177955918", + "createdBy": null, + "createdTime": "2026-02-02 09:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:25", + "echoMap": {}, + "alarmNo": "1350077764", + "alarmDate": "1769997095960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113402767890562", + "createdBy": null, + "createdTime": "2026-02-02 10:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:56", + "echoMap": {}, + "alarmNo": "1350077765", + "alarmDate": "1769997697182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113411357825091", + "createdBy": null, + "createdTime": "2026-02-02 10:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:57", + "echoMap": {}, + "alarmNo": "1350077766", + "alarmDate": "1769998268361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113419947759721", + "createdBy": null, + "createdTime": "2026-02-02 10:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:36", + "echoMap": {}, + "alarmNo": "1350077767", + "alarmDate": "1769998865617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113419947759832", + "createdBy": null, + "createdTime": "2026-02-02 10:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:16", + "echoMap": {}, + "alarmNo": "1350077768", + "alarmDate": "1769998897728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113428537694339", + "createdBy": null, + "createdTime": "2026-02-02 10:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:28", + "echoMap": {}, + "alarmNo": "1350077769", + "alarmDate": "1769999475082", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628844", + "createdBy": null, + "createdTime": "2026-02-02 10:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:45", + "echoMap": {}, + "alarmNo": "1350077770", + "alarmDate": "1770000040139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628851", + "createdBy": null, + "createdTime": "2026-02-02 10:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:49", + "echoMap": {}, + "alarmNo": "1350077771", + "alarmDate": "1770000042111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628902", + "createdBy": null, + "createdTime": "2026-02-02 10:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:19", + "echoMap": {}, + "alarmNo": "1350077772", + "alarmDate": "1770000061113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628995", + "createdBy": null, + "createdTime": "2026-02-02 10:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:15", + "echoMap": {}, + "alarmNo": "1350077773", + "alarmDate": "1770000091230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113445717563440", + "createdBy": null, + "createdTime": "2026-02-02 10:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1350077774", + "alarmDate": "1770000640426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113454307498104", + "createdBy": null, + "createdTime": "2026-02-02 11:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:11", + "echoMap": {}, + "alarmNo": "1350077775", + "alarmDate": "1770001240659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113462897432605", + "createdBy": null, + "createdTime": "2026-02-02 11:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:48", + "echoMap": {}, + "alarmNo": "1350077776", + "alarmDate": "1770001282696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113462897432620", + "createdBy": null, + "createdTime": "2026-02-02 11:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:39", + "echoMap": {}, + "alarmNo": "1350077777", + "alarmDate": "1770001286791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113462897432779", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:02", + "echoMap": {}, + "alarmNo": "1350077778", + "alarmDate": "1770001841946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113471487367216", + "createdBy": null, + "createdTime": "2026-02-02 11:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:27", + "echoMap": {}, + "alarmNo": "1350077779", + "alarmDate": "1770001873959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113471487367307", + "createdBy": null, + "createdTime": "2026-02-02 11:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:50", + "echoMap": {}, + "alarmNo": "1350077780", + "alarmDate": "1770001899042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301760", + "createdBy": null, + "createdTime": "2026-02-02 11:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:06", + "echoMap": {}, + "alarmNo": "1350077781", + "alarmDate": "1770002459281", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301790", + "createdBy": null, + "createdTime": "2026-02-02 11:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:20", + "echoMap": {}, + "alarmNo": "1350077782", + "alarmDate": "1770002468178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301823", + "createdBy": null, + "createdTime": "2026-02-02 11:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:30", + "echoMap": {}, + "alarmNo": "1350077783", + "alarmDate": "1770002478270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301867", + "createdBy": null, + "createdTime": "2026-02-02 11:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:03", + "echoMap": {}, + "alarmNo": "1350077784", + "alarmDate": "1770002492285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301982", + "createdBy": null, + "createdTime": "2026-02-02 11:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:43", + "echoMap": {}, + "alarmNo": "1350077785", + "alarmDate": "1770003040568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113484372269067", + "createdBy": null, + "createdTime": "2026-02-02 11:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:37", + "echoMap": {}, + "alarmNo": "1350077786", + "alarmDate": "1770003052555", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113488667236386", + "createdBy": null, + "createdTime": "2026-02-02 11:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:20", + "echoMap": {}, + "alarmNo": "1350077787", + "alarmDate": "1770003074559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113488667236458", + "createdBy": null, + "createdTime": "2026-02-02 11:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:40", + "echoMap": {}, + "alarmNo": "1350077788", + "alarmDate": "1770003093560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113497257171092", + "createdBy": null, + "createdTime": "2026-02-02 11:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:02", + "echoMap": {}, + "alarmNo": "1350077789", + "alarmDate": "1770004256086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113497257171148", + "createdBy": null, + "createdTime": "2026-02-02 11:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:25", + "echoMap": {}, + "alarmNo": "1350077790", + "alarmDate": "1770004279105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113497257171154", + "createdBy": null, + "createdTime": "2026-02-02 11:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1350077791", + "alarmDate": "1770004280123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105605", + "createdBy": null, + "createdTime": "2026-02-02 12:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:01", + "echoMap": {}, + "alarmNo": "1350077792", + "alarmDate": "1770004840251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105639", + "createdBy": null, + "createdTime": "2026-02-02 12:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:58", + "echoMap": {}, + "alarmNo": "1350077793", + "alarmDate": "1770004851306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105708", + "createdBy": null, + "createdTime": "2026-02-02 12:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "alarmNo": "1350077794", + "alarmDate": "1770004875352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105759", + "createdBy": null, + "createdTime": "2026-02-02 12:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:38", + "echoMap": {}, + "alarmNo": "1350077795", + "alarmDate": "1770004892315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113510142072846", + "createdBy": null, + "createdTime": "2026-02-02 12:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:52", + "echoMap": {}, + "alarmNo": "1350077796", + "alarmDate": "1770004900338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113514437040188", + "createdBy": null, + "createdTime": "2026-02-02 12:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:50", + "echoMap": {}, + "alarmNo": "1350077797", + "alarmDate": "1770005441277", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113514437040266", + "createdBy": null, + "createdTime": "2026-02-02 12:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:17", + "echoMap": {}, + "alarmNo": "1350077798", + "alarmDate": "1770005470542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113523026974746", + "createdBy": null, + "createdTime": "2026-02-02 12:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:04", + "echoMap": {}, + "alarmNo": "1350077799", + "alarmDate": "1770006058806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113523026974945", + "createdBy": null, + "createdTime": "2026-02-02 12:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:57", + "echoMap": {}, + "alarmNo": "1350077800", + "alarmDate": "1770006650148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113527321942034", + "createdBy": null, + "createdTime": "2026-02-02 12:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:03", + "echoMap": {}, + "alarmNo": "1350077801", + "alarmDate": "1770006695273", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113531616909412", + "createdBy": null, + "createdTime": "2026-02-02 12:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:10", + "echoMap": {}, + "alarmNo": "1350077802", + "alarmDate": "1770007245292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113531616909556", + "createdBy": null, + "createdTime": "2026-02-02 12:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:39", + "echoMap": {}, + "alarmNo": "1350077803", + "alarmDate": "1770007299417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113548796778583", + "createdBy": null, + "createdTime": "2026-02-02 13:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:40", + "echoMap": {}, + "alarmNo": "1350077804", + "alarmDate": "1770009040157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113557386713101", + "createdBy": null, + "createdTime": "2026-02-02 13:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:21", + "echoMap": {}, + "alarmNo": "1350077805", + "alarmDate": "1770009641089", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113561681680402", + "createdBy": null, + "createdTime": "2026-02-02 13:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:56", + "echoMap": {}, + "alarmNo": "1350077806", + "alarmDate": "1770010241534", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113565976647741", + "createdBy": null, + "createdTime": "2026-02-02 13:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:31", + "echoMap": {}, + "alarmNo": "1350077807", + "alarmDate": "1770010269566", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113578861549582", + "createdBy": null, + "createdTime": "2026-02-02 13:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:32", + "echoMap": {}, + "alarmNo": "1350077808", + "alarmDate": "1770011485471", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113591746451680", + "createdBy": null, + "createdTime": "2026-02-02 14:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:43", + "echoMap": {}, + "alarmNo": "1350077809", + "alarmDate": "1770013240610", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113596041418765", + "createdBy": null, + "createdTime": "2026-02-02 14:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:14", + "echoMap": {}, + "alarmNo": "1350077810", + "alarmDate": "1770013254630", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113608926320658", + "createdBy": null, + "createdTime": "2026-02-02 14:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:31", + "echoMap": {}, + "alarmNo": "1350077811", + "alarmDate": "1770013889868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060026", + "deviceName": "[601](10)动物园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113230969198654", + "createdBy": null, + "createdTime": "2026-02-02 06:28:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:49", + "echoMap": {}, + "alarmNo": "1350077718", + "alarmDate": "1769984930070", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1004030006", + "deviceName": "安防箱6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1004" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113608926320658", + "createdBy": null, + "createdTime": "2026-02-02 14:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:31", + "echoMap": {}, + "alarmNo": "1350077811", + "alarmDate": "1770013889868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060026", + "deviceName": "[601](10)动物园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113596041418765", + "createdBy": null, + "createdTime": "2026-02-02 14:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:14", + "echoMap": {}, + "alarmNo": "1350077810", + "alarmDate": "1770013254630", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113591746451680", + "createdBy": null, + "createdTime": "2026-02-02 14:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:43", + "echoMap": {}, + "alarmNo": "1350077809", + "alarmDate": "1770013240610", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113578861549582", + "createdBy": null, + "createdTime": "2026-02-02 13:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:32", + "echoMap": {}, + "alarmNo": "1350077808", + "alarmDate": "1770011485471", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113565976647741", + "createdBy": null, + "createdTime": "2026-02-02 13:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:31", + "echoMap": {}, + "alarmNo": "1350077807", + "alarmDate": "1770010269566", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113561681680402", + "createdBy": null, + "createdTime": "2026-02-02 13:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:56", + "echoMap": {}, + "alarmNo": "1350077806", + "alarmDate": "1770010241534", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113557386713101", + "createdBy": null, + "createdTime": "2026-02-02 13:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:21", + "echoMap": {}, + "alarmNo": "1350077805", + "alarmDate": "1770009641089", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113548796778583", + "createdBy": null, + "createdTime": "2026-02-02 13:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:40", + "echoMap": {}, + "alarmNo": "1350077804", + "alarmDate": "1770009040157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113531616909556", + "createdBy": null, + "createdTime": "2026-02-02 12:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:39", + "echoMap": {}, + "alarmNo": "1350077803", + "alarmDate": "1770007299417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113531616909412", + "createdBy": null, + "createdTime": "2026-02-02 12:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:10", + "echoMap": {}, + "alarmNo": "1350077802", + "alarmDate": "1770007245292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113527321942034", + "createdBy": null, + "createdTime": "2026-02-02 12:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:03", + "echoMap": {}, + "alarmNo": "1350077801", + "alarmDate": "1770006695273", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113523026974945", + "createdBy": null, + "createdTime": "2026-02-02 12:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:57", + "echoMap": {}, + "alarmNo": "1350077800", + "alarmDate": "1770006650148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113523026974746", + "createdBy": null, + "createdTime": "2026-02-02 12:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:04", + "echoMap": {}, + "alarmNo": "1350077799", + "alarmDate": "1770006058806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113514437040266", + "createdBy": null, + "createdTime": "2026-02-02 12:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:17", + "echoMap": {}, + "alarmNo": "1350077798", + "alarmDate": "1770005470542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113514437040188", + "createdBy": null, + "createdTime": "2026-02-02 12:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:50", + "echoMap": {}, + "alarmNo": "1350077797", + "alarmDate": "1770005441277", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113510142072846", + "createdBy": null, + "createdTime": "2026-02-02 12:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:52", + "echoMap": {}, + "alarmNo": "1350077796", + "alarmDate": "1770004900338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105759", + "createdBy": null, + "createdTime": "2026-02-02 12:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:38", + "echoMap": {}, + "alarmNo": "1350077795", + "alarmDate": "1770004892315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105708", + "createdBy": null, + "createdTime": "2026-02-02 12:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "alarmNo": "1350077794", + "alarmDate": "1770004875352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105639", + "createdBy": null, + "createdTime": "2026-02-02 12:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:58", + "echoMap": {}, + "alarmNo": "1350077793", + "alarmDate": "1770004851306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113505847105605", + "createdBy": null, + "createdTime": "2026-02-02 12:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:01", + "echoMap": {}, + "alarmNo": "1350077792", + "alarmDate": "1770004840251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113497257171154", + "createdBy": null, + "createdTime": "2026-02-02 11:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1350077791", + "alarmDate": "1770004280123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113497257171148", + "createdBy": null, + "createdTime": "2026-02-02 11:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:25", + "echoMap": {}, + "alarmNo": "1350077790", + "alarmDate": "1770004279105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113497257171092", + "createdBy": null, + "createdTime": "2026-02-02 11:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:02", + "echoMap": {}, + "alarmNo": "1350077789", + "alarmDate": "1770004256086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113488667236458", + "createdBy": null, + "createdTime": "2026-02-02 11:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:40", + "echoMap": {}, + "alarmNo": "1350077788", + "alarmDate": "1770003093560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113488667236386", + "createdBy": null, + "createdTime": "2026-02-02 11:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:20", + "echoMap": {}, + "alarmNo": "1350077787", + "alarmDate": "1770003074559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113484372269067", + "createdBy": null, + "createdTime": "2026-02-02 11:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:37", + "echoMap": {}, + "alarmNo": "1350077786", + "alarmDate": "1770003052555", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301982", + "createdBy": null, + "createdTime": "2026-02-02 11:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:43", + "echoMap": {}, + "alarmNo": "1350077785", + "alarmDate": "1770003040568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301867", + "createdBy": null, + "createdTime": "2026-02-02 11:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:03", + "echoMap": {}, + "alarmNo": "1350077784", + "alarmDate": "1770002492285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301823", + "createdBy": null, + "createdTime": "2026-02-02 11:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:30", + "echoMap": {}, + "alarmNo": "1350077783", + "alarmDate": "1770002478270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301790", + "createdBy": null, + "createdTime": "2026-02-02 11:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:20", + "echoMap": {}, + "alarmNo": "1350077782", + "alarmDate": "1770002468178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113480077301760", + "createdBy": null, + "createdTime": "2026-02-02 11:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:06", + "echoMap": {}, + "alarmNo": "1350077781", + "alarmDate": "1770002459281", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113471487367307", + "createdBy": null, + "createdTime": "2026-02-02 11:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:50", + "echoMap": {}, + "alarmNo": "1350077780", + "alarmDate": "1770001899042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113471487367216", + "createdBy": null, + "createdTime": "2026-02-02 11:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:27", + "echoMap": {}, + "alarmNo": "1350077779", + "alarmDate": "1770001873959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113462897432779", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:02", + "echoMap": {}, + "alarmNo": "1350077778", + "alarmDate": "1770001841946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113462897432620", + "createdBy": null, + "createdTime": "2026-02-02 11:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:39", + "echoMap": {}, + "alarmNo": "1350077777", + "alarmDate": "1770001286791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113462897432605", + "createdBy": null, + "createdTime": "2026-02-02 11:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:48", + "echoMap": {}, + "alarmNo": "1350077776", + "alarmDate": "1770001282696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113454307498104", + "createdBy": null, + "createdTime": "2026-02-02 11:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:11", + "echoMap": {}, + "alarmNo": "1350077775", + "alarmDate": "1770001240659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113445717563440", + "createdBy": null, + "createdTime": "2026-02-02 10:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1350077774", + "alarmDate": "1770000640426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628995", + "createdBy": null, + "createdTime": "2026-02-02 10:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:15", + "echoMap": {}, + "alarmNo": "1350077773", + "alarmDate": "1770000091230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628902", + "createdBy": null, + "createdTime": "2026-02-02 10:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:19", + "echoMap": {}, + "alarmNo": "1350077772", + "alarmDate": "1770000061113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628851", + "createdBy": null, + "createdTime": "2026-02-02 10:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:49", + "echoMap": {}, + "alarmNo": "1350077771", + "alarmDate": "1770000042111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113437127628844", + "createdBy": null, + "createdTime": "2026-02-02 10:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:45", + "echoMap": {}, + "alarmNo": "1350077770", + "alarmDate": "1770000040139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113428537694339", + "createdBy": null, + "createdTime": "2026-02-02 10:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:28", + "echoMap": {}, + "alarmNo": "1350077769", + "alarmDate": "1769999475082", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113419947759832", + "createdBy": null, + "createdTime": "2026-02-02 10:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:16", + "echoMap": {}, + "alarmNo": "1350077768", + "alarmDate": "1769998897728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113419947759721", + "createdBy": null, + "createdTime": "2026-02-02 10:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:36", + "echoMap": {}, + "alarmNo": "1350077767", + "alarmDate": "1769998865617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113411357825091", + "createdBy": null, + "createdTime": "2026-02-02 10:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:57", + "echoMap": {}, + "alarmNo": "1350077766", + "alarmDate": "1769998268361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113402767890562", + "createdBy": null, + "createdTime": "2026-02-02 10:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:56", + "echoMap": {}, + "alarmNo": "1350077765", + "alarmDate": "1769997697182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113394177955918", + "createdBy": null, + "createdTime": "2026-02-02 09:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:25", + "echoMap": {}, + "alarmNo": "1350077764", + "alarmDate": "1769997095960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113389882988576", + "createdBy": null, + "createdTime": "2026-02-02 09:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:24", + "echoMap": {}, + "alarmNo": "1350077763", + "alarmDate": "1769997070796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113381293053989", + "createdBy": null, + "createdTime": "2026-02-02 09:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:59", + "echoMap": {}, + "alarmNo": "1350077762", + "alarmDate": "1769996482554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113376998086660", + "createdBy": null, + "createdTime": "2026-02-02 09:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:53", + "echoMap": {}, + "alarmNo": "1350077761", + "alarmDate": "1769995895436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113368408152193", + "createdBy": null, + "createdTime": "2026-02-02 09:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:23", + "echoMap": {}, + "alarmNo": "1350077760", + "alarmDate": "1769995865312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113359818217732", + "createdBy": null, + "createdTime": "2026-02-02 09:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:53", + "echoMap": {}, + "alarmNo": "1350077759", + "alarmDate": "1769995284164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113359818217650", + "createdBy": null, + "createdTime": "2026-02-02 09:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:12", + "echoMap": {}, + "alarmNo": "1350077758", + "alarmDate": "1769995265984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113359818217640", + "createdBy": null, + "createdTime": "2026-02-02 09:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:29", + "echoMap": {}, + "alarmNo": "1350077757", + "alarmDate": "1769995264163", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113355523250217", + "createdBy": null, + "createdTime": "2026-02-02 09:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:48", + "echoMap": {}, + "alarmNo": "1350077756", + "alarmDate": "1769994695822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113351228283167", + "createdBy": null, + "createdTime": "2026-02-02 09:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:25", + "echoMap": {}, + "alarmNo": "1350077755", + "alarmDate": "1769994678710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113351228282918", + "createdBy": null, + "createdTime": "2026-02-02 09:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:55", + "echoMap": {}, + "alarmNo": "1350077754", + "alarmDate": "1769994090524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113342638348433", + "createdBy": null, + "createdTime": "2026-02-02 08:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:54", + "echoMap": {}, + "alarmNo": "1350077753", + "alarmDate": "1769993499129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413847", + "createdBy": null, + "createdTime": "2026-02-02 08:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:26", + "echoMap": {}, + "alarmNo": "1350077752", + "alarmDate": "1769992886345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413793", + "createdBy": null, + "createdTime": "2026-02-02 08:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:48", + "echoMap": {}, + "alarmNo": "1350077751", + "alarmDate": "1769992868868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413756", + "createdBy": null, + "createdTime": "2026-02-02 08:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:02", + "echoMap": {}, + "alarmNo": "1350077750", + "alarmDate": "1769992856186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113334048413708", + "createdBy": null, + "createdTime": "2026-02-02 08:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:57", + "echoMap": {}, + "alarmNo": "1350077749", + "alarmDate": "1769992840791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113325458479369", + "createdBy": null, + "createdTime": "2026-02-02 08:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:16", + "echoMap": {}, + "alarmNo": "1350077748", + "alarmDate": "1769992293566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113325458479285", + "createdBy": null, + "createdTime": "2026-02-02 08:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:29", + "echoMap": {}, + "alarmNo": "1350077747", + "alarmDate": "1769992270554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113316868544784", + "createdBy": null, + "createdTime": "2026-02-02 08:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:46", + "echoMap": {}, + "alarmNo": "1350077746", + "alarmDate": "1769991693385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113316868544542", + "createdBy": null, + "createdTime": "2026-02-02 08:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:09", + "echoMap": {}, + "alarmNo": "1350077745", + "alarmDate": "1769991640212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113308278610133", + "createdBy": null, + "createdTime": "2026-02-02 08:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:51", + "echoMap": {}, + "alarmNo": "1350077744", + "alarmDate": "1769991075557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113308278610020", + "createdBy": null, + "createdTime": "2026-02-02 08:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:03", + "echoMap": {}, + "alarmNo": "1350077743", + "alarmDate": "1769991045403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113308278610004", + "createdBy": null, + "createdTime": "2026-02-02 08:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:52", + "echoMap": {}, + "alarmNo": "1350077742", + "alarmDate": "1769991039959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113299688675500", + "createdBy": null, + "createdTime": "2026-02-02 08:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:39", + "echoMap": {}, + "alarmNo": "1350077741", + "alarmDate": "1769990474269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113299688675497", + "createdBy": null, + "createdTime": "2026-02-02 08:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:26", + "echoMap": {}, + "alarmNo": "1350077740", + "alarmDate": "1769990473793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113299688675396", + "createdBy": null, + "createdTime": "2026-02-02 08:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:02", + "echoMap": {}, + "alarmNo": "1350077739", + "alarmDate": "1769990449665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113291098740969", + "createdBy": null, + "createdTime": "2026-02-02 07:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:22", + "echoMap": {}, + "alarmNo": "1350077738", + "alarmDate": "1769989892521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113291098740916", + "createdBy": null, + "createdTime": "2026-02-02 07:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:02", + "echoMap": {}, + "alarmNo": "1350077737", + "alarmDate": "1769989880080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113291098740775", + "createdBy": null, + "createdTime": "2026-02-02 07:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:35", + "echoMap": {}, + "alarmNo": "1350077736", + "alarmDate": "1769989845499", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060041", + "deviceName": "[402](10)动物园1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806390", + "createdBy": null, + "createdTime": "2026-02-02 07:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:09", + "echoMap": {}, + "alarmNo": "1350077735", + "alarmDate": "1769989298330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806379", + "createdBy": null, + "createdTime": "2026-02-02 07:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:49", + "echoMap": {}, + "alarmNo": "1350077734", + "alarmDate": "1769989296364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806311", + "createdBy": null, + "createdTime": "2026-02-02 07:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:02", + "echoMap": {}, + "alarmNo": "1350077733", + "alarmDate": "1769989277765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113282508806281", + "createdBy": null, + "createdTime": "2026-02-02 07:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:26", + "echoMap": {}, + "alarmNo": "1350077732", + "alarmDate": "1769989268361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113265328937163", + "createdBy": null, + "createdTime": "2026-02-02 07:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:07", + "echoMap": {}, + "alarmNo": "1350077731", + "alarmDate": "1769988042021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113261033969709", + "createdBy": null, + "createdTime": "2026-02-02 07:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:30", + "echoMap": {}, + "alarmNo": "1350077730", + "alarmDate": "1769987470895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113256739002692", + "createdBy": null, + "createdTime": "2026-02-02 07:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:27", + "echoMap": {}, + "alarmNo": "1350077729", + "alarmDate": "1769987455428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113256739002638", + "createdBy": null, + "createdTime": "2026-02-02 07:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:00", + "echoMap": {}, + "alarmNo": "1350077728", + "alarmDate": "1769987441834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113256739002465", + "createdBy": null, + "createdTime": "2026-02-02 07:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:29", + "echoMap": {}, + "alarmNo": "1350077727", + "alarmDate": "1769986877137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113248149068031", + "createdBy": null, + "createdTime": "2026-02-02 06:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:37", + "echoMap": {}, + "alarmNo": "1350077726", + "alarmDate": "1769986297992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060023", + "deviceName": "[329](10)动物园4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113248149068002", + "createdBy": null, + "createdTime": "2026-02-02 06:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:30", + "echoMap": {}, + "alarmNo": "1350077725", + "alarmDate": "1769986289529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060071", + "deviceName": "[307](10)动物园1#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113248149067999", + "createdBy": null, + "createdTime": "2026-02-02 06:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:05", + "echoMap": {}, + "alarmNo": "1350077724", + "alarmDate": "1769986288867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113239559133415", + "createdBy": null, + "createdTime": "2026-02-02 06:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:31", + "echoMap": {}, + "alarmNo": "1350077723", + "alarmDate": "1769985685132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113239559133372", + "createdBy": null, + "createdTime": "2026-02-02 06:41:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:13", + "echoMap": {}, + "alarmNo": "1350077722", + "alarmDate": "1769985671679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113239559133294", + "createdBy": null, + "createdTime": "2026-02-02 06:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:18", + "echoMap": {}, + "alarmNo": "1350077721", + "alarmDate": "1769985647535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113235264165894", + "createdBy": null, + "createdTime": "2026-02-02 06:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:34", + "echoMap": {}, + "alarmNo": "1350077720", + "alarmDate": "1769985082264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113230969198725", + "createdBy": null, + "createdTime": "2026-02-02 06:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:10", + "echoMap": {}, + "alarmNo": "1350077719", + "alarmDate": "1769985058347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113230969198654", + "createdBy": null, + "createdTime": "2026-02-02 06:28:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:49", + "echoMap": {}, + "alarmNo": "1350077718", + "alarmDate": "1769984930070", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1004030006", + "deviceName": "安防箱6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1004" + }, + { + "id": "723113226674231329", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:47", + "echoMap": {}, + "alarmNo": "1350077717", + "alarmDate": "1769984494995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113222379264004", + "createdBy": null, + "createdTime": "2026-02-02 06:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:23", + "echoMap": {}, + "alarmNo": "1350077716", + "alarmDate": "1769983899691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113218084296741", + "createdBy": null, + "createdTime": "2026-02-02 06:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:32", + "echoMap": {}, + "alarmNo": "1350077715", + "alarmDate": "1769983890904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113213789329595", + "createdBy": null, + "createdTime": "2026-02-02 06:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:28", + "echoMap": {}, + "alarmNo": "1350077714", + "alarmDate": "1769983875723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113213789329500", + "createdBy": null, + "createdTime": "2026-02-02 06:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:04", + "echoMap": {}, + "alarmNo": "1350077713", + "alarmDate": "1769983841576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113205199395003", + "createdBy": null, + "createdTime": "2026-02-02 06:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:25", + "echoMap": {}, + "alarmNo": "1350077712", + "alarmDate": "1769983277670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113196609460409", + "createdBy": null, + "createdTime": "2026-02-02 05:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:36", + "echoMap": {}, + "alarmNo": "1350077711", + "alarmDate": "1769982690360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060022", + "deviceName": "[327](10)动物园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113196609460305", + "createdBy": null, + "createdTime": "2026-02-02 05:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:58", + "echoMap": {}, + "alarmNo": "1350077710", + "alarmDate": "1769982657226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113196609460256", + "createdBy": null, + "createdTime": "2026-02-02 05:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:39", + "echoMap": {}, + "alarmNo": "1350077709", + "alarmDate": "1769982642021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113170839656470", + "createdBy": null, + "createdTime": "2026-02-02 05:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:18", + "echoMap": {}, + "alarmNo": "1350077708", + "alarmDate": "1769980876530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113153659787356", + "createdBy": null, + "createdTime": "2026-02-02 05:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:41", + "echoMap": {}, + "alarmNo": "1350077707", + "alarmDate": "1769980242099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113149364819975", + "createdBy": null, + "createdTime": "2026-02-02 05:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:37", + "echoMap": {}, + "alarmNo": "1350077706", + "alarmDate": "1769979690778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113145069852794", + "createdBy": null, + "createdTime": "2026-02-02 05:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:13", + "echoMap": {}, + "alarmNo": "1350077705", + "alarmDate": "1769979666766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113145069852738", + "createdBy": null, + "createdTime": "2026-02-02 05:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:45", + "echoMap": {}, + "alarmNo": "1350077704", + "alarmDate": "1769979643858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113145069852732", + "createdBy": null, + "createdTime": "2026-02-02 05:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:49", + "echoMap": {}, + "alarmNo": "1350077703", + "alarmDate": "1769979642832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113140774885377", + "createdBy": null, + "createdTime": "2026-02-02 04:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:37", + "echoMap": {}, + "alarmNo": "1350077702", + "alarmDate": "1769979095720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113136479918221", + "createdBy": null, + "createdTime": "2026-02-02 04:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:25", + "echoMap": {}, + "alarmNo": "1350077701", + "alarmDate": "1769979078524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113136479918144", + "createdBy": null, + "createdTime": "2026-02-02 04:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:02", + "echoMap": {}, + "alarmNo": "1350077700", + "alarmDate": "1769979048548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113127889983745", + "createdBy": null, + "createdTime": "2026-02-02 04:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:37", + "echoMap": {}, + "alarmNo": "1350077699", + "alarmDate": "1769978491227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113127889983637", + "createdBy": null, + "createdTime": "2026-02-02 04:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:08", + "echoMap": {}, + "alarmNo": "1350077698", + "alarmDate": "1769978467218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113127889983576", + "createdBy": null, + "createdTime": "2026-02-02 04:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:08", + "echoMap": {}, + "alarmNo": "1350077697", + "alarmDate": "1769978455746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113119300049011", + "createdBy": null, + "createdTime": "2026-02-02 04:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:07", + "echoMap": {}, + "alarmNo": "1350077696", + "alarmDate": "1769977860962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060083", + "deviceName": "[110](10)动物园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113119300048922", + "createdBy": null, + "createdTime": "2026-02-02 04:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:58", + "echoMap": {}, + "alarmNo": "1350077695", + "alarmDate": "1769977845403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113110710114458", + "createdBy": null, + "createdTime": "2026-02-02 04:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:22", + "echoMap": {}, + "alarmNo": "1350077694", + "alarmDate": "1769977300535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060069", + "deviceName": "[305](10)动物园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113110710114311", + "createdBy": null, + "createdTime": "2026-02-02 04:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:23", + "echoMap": {}, + "alarmNo": "1350077693", + "alarmDate": "1769977270065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113093530245276", + "createdBy": null, + "createdTime": "2026-02-02 04:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:13", + "echoMap": {}, + "alarmNo": "1350077692", + "alarmDate": "1769976666756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113093530245265", + "createdBy": null, + "createdTime": "2026-02-02 04:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:06", + "echoMap": {}, + "alarmNo": "1350077691", + "alarmDate": "1769976665393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113093530245177", + "createdBy": null, + "createdTime": "2026-02-02 04:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:45", + "echoMap": {}, + "alarmNo": "1350077690", + "alarmDate": "1769976644392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060100", + "deviceName": "[209](10)动物园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113089235277828", + "createdBy": null, + "createdTime": "2026-02-02 04:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:38", + "echoMap": {}, + "alarmNo": "1350077689", + "alarmDate": "1769976097209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060100", + "deviceName": "[209](10)动物园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113084940310669", + "createdBy": null, + "createdTime": "2026-02-02 04:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:18", + "echoMap": {}, + "alarmNo": "1350077688", + "alarmDate": "1769976071435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113080645343286", + "createdBy": null, + "createdTime": "2026-02-02 04:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:44", + "echoMap": {}, + "alarmNo": "1350077687", + "alarmDate": "1769976043156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060028", + "deviceName": "[204](10)动物园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113080645343281", + "createdBy": null, + "createdTime": "2026-02-02 04:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:53", + "echoMap": {}, + "alarmNo": "1350077686", + "alarmDate": "1769976042446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113080645343275", + "createdBy": null, + "createdTime": "2026-02-02 04:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:45", + "echoMap": {}, + "alarmNo": "1350077685", + "alarmDate": "1769976042002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060083", + "deviceName": "[110](10)动物园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113076350376121", + "createdBy": null, + "createdTime": "2026-02-02 03:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:40", + "echoMap": {}, + "alarmNo": "1350077684", + "alarmDate": "1769975500424", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113076350376044", + "createdBy": null, + "createdTime": "2026-02-02 03:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:31", + "echoMap": {}, + "alarmNo": "1350077683", + "alarmDate": "1769975484206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113067760441394", + "createdBy": null, + "createdTime": "2026-02-02 03:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:39", + "echoMap": {}, + "alarmNo": "1350077682", + "alarmDate": "1769974886541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060083", + "deviceName": "[110](10)动物园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113067760441364", + "createdBy": null, + "createdTime": "2026-02-02 03:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:33", + "echoMap": {}, + "alarmNo": "1350077681", + "alarmDate": "1769974881027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113063465474063", + "createdBy": null, + "createdTime": "2026-02-02 03:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:33", + "echoMap": {}, + "alarmNo": "1350077680", + "alarmDate": "1769974869139", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113059170506923", + "createdBy": null, + "createdTime": "2026-02-02 03:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:04", + "echoMap": {}, + "alarmNo": "1350077679", + "alarmDate": "1769974862618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113059170506819", + "createdBy": null, + "createdTime": "2026-02-02 03:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:08", + "echoMap": {}, + "alarmNo": "1350077678", + "alarmDate": "1769974842771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113059170506816", + "createdBy": null, + "createdTime": "2026-02-02 03:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:05", + "echoMap": {}, + "alarmNo": "1350077677", + "alarmDate": "1769974842146", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113050580572314", + "createdBy": null, + "createdTime": "2026-02-02 03:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:01", + "echoMap": {}, + "alarmNo": "1350077676", + "alarmDate": "1769974254871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113046285604914", + "createdBy": null, + "createdTime": "2026-02-02 03:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:26", + "echoMap": {}, + "alarmNo": "1350077675", + "alarmDate": "1769973679607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113041990637831", + "createdBy": null, + "createdTime": "2026-02-02 03:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:26", + "echoMap": {}, + "alarmNo": "1350077674", + "alarmDate": "1769973661222", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113041990637774", + "createdBy": null, + "createdTime": "2026-02-02 03:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:00", + "echoMap": {}, + "alarmNo": "1350077673", + "alarmDate": "1769973647612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113033400703157", + "createdBy": null, + "createdTime": "2026-02-02 03:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:58", + "echoMap": {}, + "alarmNo": "1350077672", + "alarmDate": "1769973057054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113029105735697", + "createdBy": null, + "createdTime": "2026-02-02 03:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:38", + "echoMap": {}, + "alarmNo": "1350077671", + "alarmDate": "1769972494363", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768526", + "createdBy": null, + "createdTime": "2026-02-02 03:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:57", + "echoMap": {}, + "alarmNo": "1350077670", + "alarmDate": "1769972473355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768525", + "createdBy": null, + "createdTime": "2026-02-02 03:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077669", + "alarmDate": "1769972473353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768507", + "createdBy": null, + "createdTime": "2026-02-02 03:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077668", + "alarmDate": "1769972470783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060100", + "deviceName": "[209](10)动物园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113024810768480", + "createdBy": null, + "createdTime": "2026-02-02 03:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077667", + "alarmDate": "1769972466105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113016220833889", + "createdBy": null, + "createdTime": "2026-02-02 02:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:37", + "echoMap": {}, + "alarmNo": "1350077666", + "alarmDate": "1769971891195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113016220833831", + "createdBy": null, + "createdTime": "2026-02-02 02:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:26", + "echoMap": {}, + "alarmNo": "1350077665", + "alarmDate": "1769971879152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113016220833797", + "createdBy": null, + "createdTime": "2026-02-02 02:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:13", + "echoMap": {}, + "alarmNo": "1350077664", + "alarmDate": "1769971874381", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113011925866501", + "createdBy": null, + "createdTime": "2026-02-02 02:51:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:18", + "echoMap": {}, + "alarmNo": "1350077663", + "alarmDate": "1769971865408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113007630899202", + "createdBy": null, + "createdTime": "2026-02-02 02:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:37", + "echoMap": {}, + "alarmNo": "1350077662", + "alarmDate": "1769971290775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723113003335931938", + "createdBy": null, + "createdTime": "2026-02-02 02:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:41", + "echoMap": {}, + "alarmNo": "1350077661", + "alarmDate": "1769971289211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112999040964763", + "createdBy": null, + "createdTime": "2026-02-02 02:40:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:55", + "echoMap": {}, + "alarmNo": "1350077660", + "alarmDate": "1769971253547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112999040964752", + "createdBy": null, + "createdTime": "2026-02-02 02:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:11", + "echoMap": {}, + "alarmNo": "1350077659", + "alarmDate": "1769971252129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112999040964709", + "createdBy": null, + "createdTime": "2026-02-02 02:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:48", + "echoMap": {}, + "alarmNo": "1350077658", + "alarmDate": "1769971242069", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112994745997339", + "createdBy": null, + "createdTime": "2026-02-02 02:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:38", + "echoMap": {}, + "alarmNo": "1350077657", + "alarmDate": "1769970697325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060085", + "deviceName": "[212](10)动物园下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112990451030192", + "createdBy": null, + "createdTime": "2026-02-02 02:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:39", + "echoMap": {}, + "alarmNo": "1350077656", + "alarmDate": "1769970685680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112986156062746", + "createdBy": null, + "createdTime": "2026-02-02 02:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:01", + "echoMap": {}, + "alarmNo": "1350077655", + "alarmDate": "1769970642610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060102", + "deviceName": "[104](10)动物园上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112981861095495", + "createdBy": null, + "createdTime": "2026-02-02 02:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:39", + "echoMap": {}, + "alarmNo": "1350077654", + "alarmDate": "1769970081620", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060066", + "deviceName": "[315](10)动物园2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112973271161017", + "createdBy": null, + "createdTime": "2026-02-02 02:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:40", + "echoMap": {}, + "alarmNo": "1350077653", + "alarmDate": "1769970040360", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060031", + "deviceName": "[404](10)动物园2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112968976193568", + "createdBy": null, + "createdTime": "2026-02-02 02:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:03", + "echoMap": {}, + "alarmNo": "1350077652", + "alarmDate": "1769969449525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112964681226347", + "createdBy": null, + "createdTime": "2026-02-02 02:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:33", + "echoMap": {}, + "alarmNo": "1350077651", + "alarmDate": "1769968892074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112964681226329", + "createdBy": null, + "createdTime": "2026-02-02 02:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:38", + "echoMap": {}, + "alarmNo": "1350077650", + "alarmDate": "1769968886330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112964681226266", + "createdBy": null, + "createdTime": "2026-02-02 02:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:14", + "echoMap": {}, + "alarmNo": "1350077649", + "alarmDate": "1769968862290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112960386258973", + "createdBy": null, + "createdTime": "2026-02-02 02:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1350077648", + "alarmDate": "1769968842237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112956091291742", + "createdBy": null, + "createdTime": "2026-02-02 01:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:27", + "echoMap": {}, + "alarmNo": "1350077647", + "alarmDate": "1769968275120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112956091291677", + "createdBy": null, + "createdTime": "2026-02-02 01:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:03", + "echoMap": {}, + "alarmNo": "1350077646", + "alarmDate": "1769968250993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112947501357203", + "createdBy": null, + "createdTime": "2026-02-02 01:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:40", + "echoMap": {}, + "alarmNo": "1350077645", + "alarmDate": "1769967687827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112947501357138", + "createdBy": null, + "createdTime": "2026-02-02 01:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:16", + "echoMap": {}, + "alarmNo": "1350077644", + "alarmDate": "1769967663711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112947501357124", + "createdBy": null, + "createdTime": "2026-02-02 01:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:00", + "echoMap": {}, + "alarmNo": "1350077643", + "alarmDate": "1769967659425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112938911422686", + "createdBy": null, + "createdTime": "2026-02-02 01:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:46", + "echoMap": {}, + "alarmNo": "1350077642", + "alarmDate": "1769967099595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112938911422623", + "createdBy": null, + "createdTime": "2026-02-02 01:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:28", + "echoMap": {}, + "alarmNo": "1350077641", + "alarmDate": "1769967075552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112938911422555", + "createdBy": null, + "createdTime": "2026-02-02 01:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:58", + "echoMap": {}, + "alarmNo": "1350077640", + "alarmDate": "1769967052454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112930321488088", + "createdBy": null, + "createdTime": "2026-02-02 01:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:40", + "echoMap": {}, + "alarmNo": "1350077639", + "alarmDate": "1769966488277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112930321488024", + "createdBy": null, + "createdTime": "2026-02-02 01:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:16", + "echoMap": {}, + "alarmNo": "1350077638", + "alarmDate": "1769966464176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112930321487883", + "createdBy": null, + "createdTime": "2026-02-02 01:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:46", + "echoMap": {}, + "alarmNo": "1350077637", + "alarmDate": "1769965901042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112926026520582", + "createdBy": null, + "createdTime": "2026-02-02 01:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:21", + "echoMap": {}, + "alarmNo": "1350077636", + "alarmDate": "1769965879626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112921731553511", + "createdBy": null, + "createdTime": "2026-02-02 01:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:23", + "echoMap": {}, + "alarmNo": "1350077635", + "alarmDate": "1769965877072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112921731553452", + "createdBy": null, + "createdTime": "2026-02-02 01:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:59", + "echoMap": {}, + "alarmNo": "1350077634", + "alarmDate": "1769965852926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112921731553314", + "createdBy": null, + "createdTime": "2026-02-02 01:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:36", + "echoMap": {}, + "alarmNo": "1350077633", + "alarmDate": "1769965289781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112917436586004", + "createdBy": null, + "createdTime": "2026-02-02 01:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:12", + "echoMap": {}, + "alarmNo": "1350077632", + "alarmDate": "1769965265646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112913141618903", + "createdBy": null, + "createdTime": "2026-02-02 01:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:48", + "echoMap": {}, + "alarmNo": "1350077631", + "alarmDate": "1769965241846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112913141618762", + "createdBy": null, + "createdTime": "2026-02-02 00:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1350077630", + "alarmDate": "1769964677529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112913141618703", + "createdBy": null, + "createdTime": "2026-02-02 00:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:59", + "echoMap": {}, + "alarmNo": "1350077629", + "alarmDate": "1769964653390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684321", + "createdBy": null, + "createdTime": "2026-02-02 00:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:48", + "echoMap": {}, + "alarmNo": "1350077628", + "alarmDate": "1769964099848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684295", + "createdBy": null, + "createdTime": "2026-02-02 00:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:36", + "echoMap": {}, + "alarmNo": "1350077627", + "alarmDate": "1769964090200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684236", + "createdBy": null, + "createdTime": "2026-02-02 00:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:12", + "echoMap": {}, + "alarmNo": "1350077626", + "alarmDate": "1769964066159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112904551684169", + "createdBy": null, + "createdTime": "2026-02-02 00:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:48", + "echoMap": {}, + "alarmNo": "1350077625", + "alarmDate": "1769964042150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112895961749700", + "createdBy": null, + "createdTime": "2026-02-02 00:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:25", + "echoMap": {}, + "alarmNo": "1350077624", + "alarmDate": "1769963478958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112895961749510", + "createdBy": null, + "createdTime": "2026-02-02 00:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:37", + "echoMap": {}, + "alarmNo": "1350077623", + "alarmDate": "1769962890698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112891666782208", + "createdBy": null, + "createdTime": "2026-02-02 00:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:09", + "echoMap": {}, + "alarmNo": "1350077622", + "alarmDate": "1769962868174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060050", + "deviceName": "[207](10)动物园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112887371815064", + "createdBy": null, + "createdTime": "2026-02-02 00:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:49", + "echoMap": {}, + "alarmNo": "1350077621", + "alarmDate": "1769962842637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112878781880483", + "createdBy": null, + "createdTime": "2026-02-02 00:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:25", + "echoMap": {}, + "alarmNo": "1350077620", + "alarmDate": "1769962279438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112878781880425", + "createdBy": null, + "createdTime": "2026-02-02 00:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:01", + "echoMap": {}, + "alarmNo": "1350077619", + "alarmDate": "1769962255361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112870191945829", + "createdBy": null, + "createdTime": "2026-02-02 00:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:38", + "echoMap": {}, + "alarmNo": "1350077618", + "alarmDate": "1769961692160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112870191945760", + "createdBy": null, + "createdTime": "2026-02-02 00:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:14", + "echoMap": {}, + "alarmNo": "1350077617", + "alarmDate": "1769961668143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + }, + { + "id": "723112865896978444", + "createdBy": null, + "createdTime": "2026-02-02 00:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:50", + "echoMap": {}, + "alarmNo": "1350077616", + "alarmDate": "1769961642111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1004060070", + "deviceName": "[306](10)动物园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1004" + } + ] + }, + "1005": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112934618677414", + "createdBy": null, + "createdTime": "2026-02-02 00:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:42", + "echoMap": {}, + "alarmNo": "1370246134", + "alarmDate": "1769961640942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677449", + "createdBy": null, + "createdTime": "2026-02-02 00:00:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:07", + "echoMap": {}, + "alarmNo": "1370246135", + "alarmDate": "1769961655118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677463", + "createdBy": null, + "createdTime": "2026-02-02 00:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:00", + "echoMap": {}, + "alarmNo": "1370246136", + "alarmDate": "1769961658644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677471", + "createdBy": null, + "createdTime": "2026-02-02 00:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:01", + "echoMap": {}, + "alarmNo": "1370246137", + "alarmDate": "1769961660225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677524", + "createdBy": null, + "createdTime": "2026-02-02 00:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:20", + "echoMap": {}, + "alarmNo": "1370246138", + "alarmDate": "1769961678737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677528", + "createdBy": null, + "createdTime": "2026-02-02 00:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:31", + "echoMap": {}, + "alarmNo": "1370246139", + "alarmDate": "1769961679270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112938913644575", + "createdBy": null, + "createdTime": "2026-02-02 00:05:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:52", + "echoMap": {}, + "alarmNo": "1370246140", + "alarmDate": "1769961952739", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612047", + "createdBy": null, + "createdTime": "2026-02-02 00:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:09", + "echoMap": {}, + "alarmNo": "1370246141", + "alarmDate": "1769962231861", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612083", + "createdBy": null, + "createdTime": "2026-02-02 00:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:55", + "echoMap": {}, + "alarmNo": "1370246142", + "alarmDate": "1769962243230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612170", + "createdBy": null, + "createdTime": "2026-02-02 00:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:07", + "echoMap": {}, + "alarmNo": "1370246143", + "alarmDate": "1769962266386", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612178", + "createdBy": null, + "createdTime": "2026-02-02 00:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:09", + "echoMap": {}, + "alarmNo": "1370246144", + "alarmDate": "1769962267463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612184", + "createdBy": null, + "createdTime": "2026-02-02 00:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:26", + "echoMap": {}, + "alarmNo": "1370246145", + "alarmDate": "1769962268344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612200", + "createdBy": null, + "createdTime": "2026-02-02 00:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:12", + "echoMap": {}, + "alarmNo": "1370246146", + "alarmDate": "1769962270909", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612204", + "createdBy": null, + "createdTime": "2026-02-02 00:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:18", + "echoMap": {}, + "alarmNo": "1370246147", + "alarmDate": "1769962271369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112947503579139", + "createdBy": null, + "createdTime": "2026-02-02 00:11:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:13", + "echoMap": {}, + "alarmNo": "1370246148", + "alarmDate": "1769962271730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112951798546449", + "createdBy": null, + "createdTime": "2026-02-02 00:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:29", + "echoMap": {}, + "alarmNo": "1370246149", + "alarmDate": "1769962288357", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112956093513742", + "createdBy": null, + "createdTime": "2026-02-02 00:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:35", + "echoMap": {}, + "alarmNo": "1370246150", + "alarmDate": "1769962834352", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112956093513760", + "createdBy": null, + "createdTime": "2026-02-02 00:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:51", + "echoMap": {}, + "alarmNo": "1370246151", + "alarmDate": "1769962839480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481034", + "createdBy": null, + "createdTime": "2026-02-02 00:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:52", + "echoMap": {}, + "alarmNo": "1370246152", + "alarmDate": "1769962850636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481085", + "createdBy": null, + "createdTime": "2026-02-02 00:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:16", + "echoMap": {}, + "alarmNo": "1370246153", + "alarmDate": "1769962863497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481095", + "createdBy": null, + "createdTime": "2026-02-02 00:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:06", + "echoMap": {}, + "alarmNo": "1370246154", + "alarmDate": "1769962865041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481138", + "createdBy": null, + "createdTime": "2026-02-02 00:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:16", + "echoMap": {}, + "alarmNo": "1370246155", + "alarmDate": "1769962875385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481194", + "createdBy": null, + "createdTime": "2026-02-02 00:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:41", + "echoMap": {}, + "alarmNo": "1370246156", + "alarmDate": "1769962891593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481343", + "createdBy": null, + "createdTime": "2026-02-02 00:30:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:47", + "echoMap": {}, + "alarmNo": "1370246157", + "alarmDate": "1769963434788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112964683448383", + "createdBy": null, + "createdTime": "2026-02-02 00:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:53", + "echoMap": {}, + "alarmNo": "1370246158", + "alarmDate": "1769963452328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112964683448400", + "createdBy": null, + "createdTime": "2026-02-02 00:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:11", + "echoMap": {}, + "alarmNo": "1370246159", + "alarmDate": "1769963458820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415641", + "createdBy": null, + "createdTime": "2026-02-02 00:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:11", + "echoMap": {}, + "alarmNo": "1370246160", + "alarmDate": "1769963470291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415689", + "createdBy": null, + "createdTime": "2026-02-02 00:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:49", + "echoMap": {}, + "alarmNo": "1370246161", + "alarmDate": "1769963483894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415861", + "createdBy": null, + "createdTime": "2026-02-02 00:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:43", + "echoMap": {}, + "alarmNo": "1370246162", + "alarmDate": "1769964042132", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415883", + "createdBy": null, + "createdTime": "2026-02-02 00:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:48", + "echoMap": {}, + "alarmNo": "1370246163", + "alarmDate": "1769964047220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415900", + "createdBy": null, + "createdTime": "2026-02-02 00:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:53", + "echoMap": {}, + "alarmNo": "1370246164", + "alarmDate": "1769964051677", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415908", + "createdBy": null, + "createdTime": "2026-02-02 00:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:54", + "echoMap": {}, + "alarmNo": "1370246165", + "alarmDate": "1769964053426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112973273382919", + "createdBy": null, + "createdTime": "2026-02-02 00:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:02", + "echoMap": {}, + "alarmNo": "1370246166", + "alarmDate": "1769964060905", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112973273382921", + "createdBy": null, + "createdTime": "2026-02-02 00:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:13", + "echoMap": {}, + "alarmNo": "1370246167", + "alarmDate": "1769964061074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112973273382983", + "createdBy": null, + "createdTime": "2026-02-02 00:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:24", + "echoMap": {}, + "alarmNo": "1370246168", + "alarmDate": "1769964083244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350210", + "createdBy": null, + "createdTime": "2026-02-02 00:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:37", + "echoMap": {}, + "alarmNo": "1370246169", + "alarmDate": "1769964085149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350425", + "createdBy": null, + "createdTime": "2026-02-02 00:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:02", + "echoMap": {}, + "alarmNo": "1370246170", + "alarmDate": "1769964650343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350444", + "createdBy": null, + "createdTime": "2026-02-02 00:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:57", + "echoMap": {}, + "alarmNo": "1370246171", + "alarmDate": "1769964655527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350452", + "createdBy": null, + "createdTime": "2026-02-02 00:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:58", + "echoMap": {}, + "alarmNo": "1370246172", + "alarmDate": "1769964657235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350493", + "createdBy": null, + "createdTime": "2026-02-02 00:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:12", + "echoMap": {}, + "alarmNo": "1370246173", + "alarmDate": "1769964671241", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112981863317516", + "createdBy": null, + "createdTime": "2026-02-02 00:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:34", + "echoMap": {}, + "alarmNo": "1370246174", + "alarmDate": "1769964681462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284847", + "createdBy": null, + "createdTime": "2026-02-02 00:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:51", + "echoMap": {}, + "alarmNo": "1370246175", + "alarmDate": "1769965012409", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284931", + "createdBy": null, + "createdTime": "2026-02-02 01:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:46", + "echoMap": {}, + "alarmNo": "1370246176", + "alarmDate": "1769965245133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284947", + "createdBy": null, + "createdTime": "2026-02-02 01:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:05", + "echoMap": {}, + "alarmNo": "1370246177", + "alarmDate": "1769965251622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284987", + "createdBy": null, + "createdTime": "2026-02-02 01:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:04", + "echoMap": {}, + "alarmNo": "1370246178", + "alarmDate": "1769965263045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285016", + "createdBy": null, + "createdTime": "2026-02-02 01:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:15", + "echoMap": {}, + "alarmNo": "1370246179", + "alarmDate": "1769965273713", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285026", + "createdBy": null, + "createdTime": "2026-02-02 01:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:29", + "echoMap": {}, + "alarmNo": "1370246180", + "alarmDate": "1769965276728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285041", + "createdBy": null, + "createdTime": "2026-02-02 01:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:22", + "echoMap": {}, + "alarmNo": "1370246181", + "alarmDate": "1769965280774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285056", + "createdBy": null, + "createdTime": "2026-02-02 01:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:25", + "echoMap": {}, + "alarmNo": "1370246182", + "alarmDate": "1769965284294", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285063", + "createdBy": null, + "createdTime": "2026-02-02 01:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:27", + "echoMap": {}, + "alarmNo": "1370246183", + "alarmDate": "1769965285538", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285069", + "createdBy": null, + "createdTime": "2026-02-02 01:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:27", + "echoMap": {}, + "alarmNo": "1370246184", + "alarmDate": "1769965286127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219435", + "createdBy": null, + "createdTime": "2026-02-02 01:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:33", + "echoMap": {}, + "alarmNo": "1370246185", + "alarmDate": "1769965832452", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219440", + "createdBy": null, + "createdTime": "2026-02-02 01:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:34", + "echoMap": {}, + "alarmNo": "1370246186", + "alarmDate": "1769965833272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219459", + "createdBy": null, + "createdTime": "2026-02-02 01:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:53", + "echoMap": {}, + "alarmNo": "1370246187", + "alarmDate": "1769965840858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219521", + "createdBy": null, + "createdTime": "2026-02-02 01:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:05", + "echoMap": {}, + "alarmNo": "1370246188", + "alarmDate": "1769965863998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219526", + "createdBy": null, + "createdTime": "2026-02-02 01:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:24", + "echoMap": {}, + "alarmNo": "1370246189", + "alarmDate": "1769965864849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219606", + "createdBy": null, + "createdTime": "2026-02-02 01:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:32", + "echoMap": {}, + "alarmNo": "1370246190", + "alarmDate": "1769965890891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219678", + "createdBy": null, + "createdTime": "2026-02-02 01:14:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:51", + "echoMap": {}, + "alarmNo": "1370246191", + "alarmDate": "1769966092531", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112999043186756", + "createdBy": null, + "createdTime": "2026-02-02 01:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:40", + "echoMap": {}, + "alarmNo": "1370246192", + "alarmDate": "1769966439149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338153986", + "createdBy": null, + "createdTime": "2026-02-02 01:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:51", + "echoMap": {}, + "alarmNo": "1370246193", + "alarmDate": "1769966442322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338153990", + "createdBy": null, + "createdTime": "2026-02-02 01:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:55", + "echoMap": {}, + "alarmNo": "1370246194", + "alarmDate": "1769966443079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154016", + "createdBy": null, + "createdTime": "2026-02-02 01:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:52", + "echoMap": {}, + "alarmNo": "1370246195", + "alarmDate": "1769966451063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154057", + "createdBy": null, + "createdTime": "2026-02-02 01:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:19", + "echoMap": {}, + "alarmNo": "1370246196", + "alarmDate": "1769966467119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154111", + "createdBy": null, + "createdTime": "2026-02-02 01:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:30", + "echoMap": {}, + "alarmNo": "1370246197", + "alarmDate": "1769966483436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154123", + "createdBy": null, + "createdTime": "2026-02-02 01:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:27", + "echoMap": {}, + "alarmNo": "1370246198", + "alarmDate": "1769966485707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154291", + "createdBy": null, + "createdTime": "2026-02-02 01:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:51", + "echoMap": {}, + "alarmNo": "1370246199", + "alarmDate": "1769967032399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113007633121301", + "createdBy": null, + "createdTime": "2026-02-02 01:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:39", + "echoMap": {}, + "alarmNo": "1370246200", + "alarmDate": "1769967037884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088576", + "createdBy": null, + "createdTime": "2026-02-02 01:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:53", + "echoMap": {}, + "alarmNo": "1370246201", + "alarmDate": "1769967051569", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088591", + "createdBy": null, + "createdTime": "2026-02-02 01:30:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:57", + "echoMap": {}, + "alarmNo": "1370246202", + "alarmDate": "1769967055831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088616", + "createdBy": null, + "createdTime": "2026-02-02 01:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:59", + "echoMap": {}, + "alarmNo": "1370246203", + "alarmDate": "1769967058456", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088623", + "createdBy": null, + "createdTime": "2026-02-02 01:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:02", + "echoMap": {}, + "alarmNo": "1370246204", + "alarmDate": "1769967060652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088633", + "createdBy": null, + "createdTime": "2026-02-02 01:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:16", + "echoMap": {}, + "alarmNo": "1370246205", + "alarmDate": "1769967063428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088644", + "createdBy": null, + "createdTime": "2026-02-02 01:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:07", + "echoMap": {}, + "alarmNo": "1370246206", + "alarmDate": "1769967065956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088651", + "createdBy": null, + "createdTime": "2026-02-02 01:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:08", + "echoMap": {}, + "alarmNo": "1370246207", + "alarmDate": "1769967067176", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088703", + "createdBy": null, + "createdTime": "2026-02-02 01:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:40", + "echoMap": {}, + "alarmNo": "1370246208", + "alarmDate": "1769967086551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088879", + "createdBy": null, + "createdTime": "2026-02-02 01:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:46", + "echoMap": {}, + "alarmNo": "1370246209", + "alarmDate": "1769967644882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088898", + "createdBy": null, + "createdTime": "2026-02-02 01:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:04", + "echoMap": {}, + "alarmNo": "1370246210", + "alarmDate": "1769967651660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023172", + "createdBy": null, + "createdTime": "2026-02-02 01:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:12", + "echoMap": {}, + "alarmNo": "1370246211", + "alarmDate": "1769967670770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023195", + "createdBy": null, + "createdTime": "2026-02-02 01:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:20", + "echoMap": {}, + "alarmNo": "1370246212", + "alarmDate": "1769967679611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023202", + "createdBy": null, + "createdTime": "2026-02-02 01:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:35", + "echoMap": {}, + "alarmNo": "1370246213", + "alarmDate": "1769967681816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023210", + "createdBy": null, + "createdTime": "2026-02-02 01:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:25", + "echoMap": {}, + "alarmNo": "1370246214", + "alarmDate": "1769967683621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023410", + "createdBy": null, + "createdTime": "2026-02-02 01:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:59", + "echoMap": {}, + "alarmNo": "1370246215", + "alarmDate": "1769968246979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990495", + "createdBy": null, + "createdTime": "2026-02-02 01:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:37", + "echoMap": {}, + "alarmNo": "1370246216", + "alarmDate": "1769968278048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990504", + "createdBy": null, + "createdTime": "2026-02-02 01:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:21", + "echoMap": {}, + "alarmNo": "1370246217", + "alarmDate": "1769968280125", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990509", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:22", + "echoMap": {}, + "alarmNo": "1370246218", + "alarmDate": "1769968280592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990526", + "createdBy": null, + "createdTime": "2026-02-02 01:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:26", + "echoMap": {}, + "alarmNo": "1370246219", + "alarmDate": "1769968285018", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957812", + "createdBy": null, + "createdTime": "2026-02-02 01:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:51", + "echoMap": {}, + "alarmNo": "1370246220", + "alarmDate": "1769968492448", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957927", + "createdBy": null, + "createdTime": "2026-02-02 02:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:33", + "echoMap": {}, + "alarmNo": "1370246221", + "alarmDate": "1769968831697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957960", + "createdBy": null, + "createdTime": "2026-02-02 02:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:44", + "echoMap": {}, + "alarmNo": "1370246222", + "alarmDate": "1769968843471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957971", + "createdBy": null, + "createdTime": "2026-02-02 02:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:48", + "echoMap": {}, + "alarmNo": "1370246223", + "alarmDate": "1769968846836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957978", + "createdBy": null, + "createdTime": "2026-02-02 02:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1370246224", + "alarmDate": "1769968848537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957983", + "createdBy": null, + "createdTime": "2026-02-02 02:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1370246225", + "alarmDate": "1769968848930", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957986", + "createdBy": null, + "createdTime": "2026-02-02 02:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:01", + "echoMap": {}, + "alarmNo": "1370246226", + "alarmDate": "1769968849226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107958052", + "createdBy": null, + "createdTime": "2026-02-02 02:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:26", + "echoMap": {}, + "alarmNo": "1370246227", + "alarmDate": "1769968873275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107958067", + "createdBy": null, + "createdTime": "2026-02-02 02:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:18", + "echoMap": {}, + "alarmNo": "1370246228", + "alarmDate": "1769968877403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113033402925083", + "createdBy": null, + "createdTime": "2026-02-02 02:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:51", + "echoMap": {}, + "alarmNo": "1370246229", + "alarmDate": "1769968912389", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892471", + "createdBy": null, + "createdTime": "2026-02-02 02:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:51", + "echoMap": {}, + "alarmNo": "1370246230", + "alarmDate": "1769969438545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892488", + "createdBy": null, + "createdTime": "2026-02-02 02:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:50", + "echoMap": {}, + "alarmNo": "1370246231", + "alarmDate": "1769969442909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892520", + "createdBy": null, + "createdTime": "2026-02-02 02:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:52", + "echoMap": {}, + "alarmNo": "1370246232", + "alarmDate": "1769969450687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892548", + "createdBy": null, + "createdTime": "2026-02-02 02:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:15", + "echoMap": {}, + "alarmNo": "1370246233", + "alarmDate": "1769969462559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892556", + "createdBy": null, + "createdTime": "2026-02-02 02:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:05", + "echoMap": {}, + "alarmNo": "1370246234", + "alarmDate": "1769969464330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892564", + "createdBy": null, + "createdTime": "2026-02-02 02:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:07", + "echoMap": {}, + "alarmNo": "1370246235", + "alarmDate": "1769969465686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827003", + "createdBy": null, + "createdTime": "2026-02-02 02:20:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:45", + "echoMap": {}, + "alarmNo": "1370246236", + "alarmDate": "1769970032788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827064", + "createdBy": null, + "createdTime": "2026-02-02 02:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:57", + "echoMap": {}, + "alarmNo": "1370246237", + "alarmDate": "1769970055960", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827073", + "createdBy": null, + "createdTime": "2026-02-02 02:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:10", + "echoMap": {}, + "alarmNo": "1370246238", + "alarmDate": "1769970057833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827074", + "createdBy": null, + "createdTime": "2026-02-02 02:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:59", + "echoMap": {}, + "alarmNo": "1370246239", + "alarmDate": "1769970057846", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827122", + "createdBy": null, + "createdTime": "2026-02-02 02:21:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:14", + "echoMap": {}, + "alarmNo": "1370246240", + "alarmDate": "1769970073387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827128", + "createdBy": null, + "createdTime": "2026-02-02 02:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:16", + "echoMap": {}, + "alarmNo": "1370246241", + "alarmDate": "1769970075098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827142", + "createdBy": null, + "createdTime": "2026-02-02 02:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:21", + "echoMap": {}, + "alarmNo": "1370246242", + "alarmDate": "1769970079555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827152", + "createdBy": null, + "createdTime": "2026-02-02 02:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:24", + "echoMap": {}, + "alarmNo": "1370246243", + "alarmDate": "1769970082675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827168", + "createdBy": null, + "createdTime": "2026-02-02 02:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:49", + "echoMap": {}, + "alarmNo": "1370246244", + "alarmDate": "1769970088965", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827174", + "createdBy": null, + "createdTime": "2026-02-02 02:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:31", + "echoMap": {}, + "alarmNo": "1370246245", + "alarmDate": "1769970090171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113050582794315", + "createdBy": null, + "createdTime": "2026-02-02 02:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:42", + "echoMap": {}, + "alarmNo": "1370246246", + "alarmDate": "1769970641360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761578", + "createdBy": null, + "createdTime": "2026-02-02 02:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:58", + "echoMap": {}, + "alarmNo": "1370246247", + "alarmDate": "1769970657202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761588", + "createdBy": null, + "createdTime": "2026-02-02 02:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:13", + "echoMap": {}, + "alarmNo": "1370246248", + "alarmDate": "1769970660118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761657", + "createdBy": null, + "createdTime": "2026-02-02 02:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:43", + "echoMap": {}, + "alarmNo": "1370246249", + "alarmDate": "1769970684213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761660", + "createdBy": null, + "createdTime": "2026-02-02 02:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:25", + "echoMap": {}, + "alarmNo": "1370246250", + "alarmDate": "1769970684334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761803", + "createdBy": null, + "createdTime": "2026-02-02 02:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:51", + "echoMap": {}, + "alarmNo": "1370246251", + "alarmDate": "1769971072383", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113059172728877", + "createdBy": null, + "createdTime": "2026-02-02 02:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:45", + "echoMap": {}, + "alarmNo": "1370246252", + "alarmDate": "1769971244141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696133", + "createdBy": null, + "createdTime": "2026-02-02 02:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:53", + "echoMap": {}, + "alarmNo": "1370246253", + "alarmDate": "1769971252451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696142", + "createdBy": null, + "createdTime": "2026-02-02 02:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:07", + "echoMap": {}, + "alarmNo": "1370246254", + "alarmDate": "1769971255369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696208", + "createdBy": null, + "createdTime": "2026-02-02 02:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:40", + "echoMap": {}, + "alarmNo": "1370246255", + "alarmDate": "1769971280402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696222", + "createdBy": null, + "createdTime": "2026-02-02 02:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:24", + "echoMap": {}, + "alarmNo": "1370246256", + "alarmDate": "1769971283436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696237", + "createdBy": null, + "createdTime": "2026-02-02 02:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:29", + "echoMap": {}, + "alarmNo": "1370246257", + "alarmDate": "1769971287626", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696258", + "createdBy": null, + "createdTime": "2026-02-02 02:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:51", + "echoMap": {}, + "alarmNo": "1370246258", + "alarmDate": "1769971372404", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696402", + "createdBy": null, + "createdTime": "2026-02-02 02:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:36", + "echoMap": {}, + "alarmNo": "1370246259", + "alarmDate": "1769971834789", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663433", + "createdBy": null, + "createdTime": "2026-02-02 02:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:04", + "echoMap": {}, + "alarmNo": "1370246260", + "alarmDate": "1769971851610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663451", + "createdBy": null, + "createdTime": "2026-02-02 02:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:58", + "echoMap": {}, + "alarmNo": "1370246261", + "alarmDate": "1769971856929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663466", + "createdBy": null, + "createdTime": "2026-02-02 02:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:01", + "echoMap": {}, + "alarmNo": "1370246262", + "alarmDate": "1769971860336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663476", + "createdBy": null, + "createdTime": "2026-02-02 02:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:04", + "echoMap": {}, + "alarmNo": "1370246263", + "alarmDate": "1769971862563", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663492", + "createdBy": null, + "createdTime": "2026-02-02 02:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:08", + "echoMap": {}, + "alarmNo": "1370246264", + "alarmDate": "1769971867179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663514", + "createdBy": null, + "createdTime": "2026-02-02 02:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:35", + "echoMap": {}, + "alarmNo": "1370246265", + "alarmDate": "1769971876633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630738", + "createdBy": null, + "createdTime": "2026-02-02 02:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:23", + "echoMap": {}, + "alarmNo": "1370246266", + "alarmDate": "1769971881996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630764", + "createdBy": null, + "createdTime": "2026-02-02 02:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:31", + "echoMap": {}, + "alarmNo": "1370246267", + "alarmDate": "1769971889751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630925", + "createdBy": null, + "createdTime": "2026-02-02 03:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:35", + "echoMap": {}, + "alarmNo": "1370246268", + "alarmDate": "1769972434103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630937", + "createdBy": null, + "createdTime": "2026-02-02 03:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:39", + "echoMap": {}, + "alarmNo": "1370246269", + "alarmDate": "1769972437967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630960", + "createdBy": null, + "createdTime": "2026-02-02 03:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:00", + "echoMap": {}, + "alarmNo": "1370246270", + "alarmDate": "1769972446928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057631014", + "createdBy": null, + "createdTime": "2026-02-02 03:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:06", + "echoMap": {}, + "alarmNo": "1370246271", + "alarmDate": "1769972465224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113076352598018", + "createdBy": null, + "createdTime": "2026-02-02 03:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:39", + "echoMap": {}, + "alarmNo": "1370246272", + "alarmDate": "1769972472915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113076352598029", + "createdBy": null, + "createdTime": "2026-02-02 03:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:17", + "echoMap": {}, + "alarmNo": "1370246273", + "alarmDate": "1769972475717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113076352598073", + "createdBy": null, + "createdTime": "2026-02-02 03:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:30", + "echoMap": {}, + "alarmNo": "1370246274", + "alarmDate": "1769972489124", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565488", + "createdBy": null, + "createdTime": "2026-02-02 03:10:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:39", + "echoMap": {}, + "alarmNo": "1370246275", + "alarmDate": "1769973038297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565516", + "createdBy": null, + "createdTime": "2026-02-02 03:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:03", + "echoMap": {}, + "alarmNo": "1370246276", + "alarmDate": "1769973050157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565540", + "createdBy": null, + "createdTime": "2026-02-02 03:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:58", + "echoMap": {}, + "alarmNo": "1370246277", + "alarmDate": "1769973057267", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565569", + "createdBy": null, + "createdTime": "2026-02-02 03:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:08", + "echoMap": {}, + "alarmNo": "1370246278", + "alarmDate": "1769973067409", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565587", + "createdBy": null, + "createdTime": "2026-02-02 03:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:27", + "echoMap": {}, + "alarmNo": "1370246279", + "alarmDate": "1769973074178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565636", + "createdBy": null, + "createdTime": "2026-02-02 03:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:32", + "echoMap": {}, + "alarmNo": "1370246280", + "alarmDate": "1769973090588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113084942532655", + "createdBy": null, + "createdTime": "2026-02-02 03:14:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:51", + "echoMap": {}, + "alarmNo": "1370246281", + "alarmDate": "1769973292433", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237499976", + "createdBy": null, + "createdTime": "2026-02-02 03:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:34", + "echoMap": {}, + "alarmNo": "1370246282", + "alarmDate": "1769973630433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500006", + "createdBy": null, + "createdTime": "2026-02-02 03:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:43", + "echoMap": {}, + "alarmNo": "1370246283", + "alarmDate": "1769973642244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500014", + "createdBy": null, + "createdTime": "2026-02-02 03:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:45", + "echoMap": {}, + "alarmNo": "1370246284", + "alarmDate": "1769973644365", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500027", + "createdBy": null, + "createdTime": "2026-02-02 03:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:06", + "echoMap": {}, + "alarmNo": "1370246285", + "alarmDate": "1769973647503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500074", + "createdBy": null, + "createdTime": "2026-02-02 03:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:02", + "echoMap": {}, + "alarmNo": "1370246286", + "alarmDate": "1769973660970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500102", + "createdBy": null, + "createdTime": "2026-02-02 03:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:12", + "echoMap": {}, + "alarmNo": "1370246287", + "alarmDate": "1769973670538", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500114", + "createdBy": null, + "createdTime": "2026-02-02 03:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:16", + "echoMap": {}, + "alarmNo": "1370246288", + "alarmDate": "1769973674722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500128", + "createdBy": null, + "createdTime": "2026-02-02 03:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:46", + "echoMap": {}, + "alarmNo": "1370246289", + "alarmDate": "1769973679439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500164", + "createdBy": null, + "createdTime": "2026-02-02 03:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:38", + "echoMap": {}, + "alarmNo": "1370246290", + "alarmDate": "1769973696952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434551", + "createdBy": null, + "createdTime": "2026-02-02 03:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:46", + "echoMap": {}, + "alarmNo": "1370246291", + "alarmDate": "1769974245109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434570", + "createdBy": null, + "createdTime": "2026-02-02 03:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:19", + "echoMap": {}, + "alarmNo": "1370246292", + "alarmDate": "1769974252383", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434580", + "createdBy": null, + "createdTime": "2026-02-02 03:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:57", + "echoMap": {}, + "alarmNo": "1370246293", + "alarmDate": "1769974256539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434586", + "createdBy": null, + "createdTime": "2026-02-02 03:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:10", + "echoMap": {}, + "alarmNo": "1370246294", + "alarmDate": "1769974257723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434662", + "createdBy": null, + "createdTime": "2026-02-02 03:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:41", + "echoMap": {}, + "alarmNo": "1370246295", + "alarmDate": "1769974281710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434671", + "createdBy": null, + "createdTime": "2026-02-02 03:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1370246296", + "alarmDate": "1769974283878", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434764", + "createdBy": null, + "createdTime": "2026-02-02 03:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:51", + "echoMap": {}, + "alarmNo": "1370246297", + "alarmDate": "1769974552386", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060002", + "deviceName": "[606](10)龙溪弱电机房2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369096", + "createdBy": null, + "createdTime": "2026-02-02 03:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:47", + "echoMap": {}, + "alarmNo": "1370246298", + "alarmDate": "1769974846281", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369113", + "createdBy": null, + "createdTime": "2026-02-02 03:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:06", + "echoMap": {}, + "alarmNo": "1370246299", + "alarmDate": "1769974853008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369165", + "createdBy": null, + "createdTime": "2026-02-02 03:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:12", + "echoMap": {}, + "alarmNo": "1370246300", + "alarmDate": "1769974870464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369181", + "createdBy": null, + "createdTime": "2026-02-02 03:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:18", + "echoMap": {}, + "alarmNo": "1370246301", + "alarmDate": "1769974876880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369184", + "createdBy": null, + "createdTime": "2026-02-02 03:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:29", + "echoMap": {}, + "alarmNo": "1370246302", + "alarmDate": "1769974876987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369197", + "createdBy": null, + "createdTime": "2026-02-02 03:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:21", + "echoMap": {}, + "alarmNo": "1370246303", + "alarmDate": "1769974880093", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113110712336430", + "createdBy": null, + "createdTime": "2026-02-02 03:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1370246304", + "alarmDate": "1769975441245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113110712336466", + "createdBy": null, + "createdTime": "2026-02-02 03:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1370246305", + "alarmDate": "1769975452347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113110712336475", + "createdBy": null, + "createdTime": "2026-02-02 03:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:55", + "echoMap": {}, + "alarmNo": "1370246306", + "alarmDate": "1769975453739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303706", + "createdBy": null, + "createdTime": "2026-02-02 03:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:24", + "echoMap": {}, + "alarmNo": "1370246307", + "alarmDate": "1769975466248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303713", + "createdBy": null, + "createdTime": "2026-02-02 03:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:09", + "echoMap": {}, + "alarmNo": "1370246308", + "alarmDate": "1769975467577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303751", + "createdBy": null, + "createdTime": "2026-02-02 03:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:20", + "echoMap": {}, + "alarmNo": "1370246309", + "alarmDate": "1769975478770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303781", + "createdBy": null, + "createdTime": "2026-02-02 03:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:30", + "echoMap": {}, + "alarmNo": "1370246310", + "alarmDate": "1769975489041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302270993", + "createdBy": null, + "createdTime": "2026-02-02 04:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:38", + "echoMap": {}, + "alarmNo": "1370246311", + "alarmDate": "1769976037177", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302270996", + "createdBy": null, + "createdTime": "2026-02-02 04:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:49", + "echoMap": {}, + "alarmNo": "1370246312", + "alarmDate": "1769976037518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271050", + "createdBy": null, + "createdTime": "2026-02-02 04:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:58", + "echoMap": {}, + "alarmNo": "1370246313", + "alarmDate": "1769976056756", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271063", + "createdBy": null, + "createdTime": "2026-02-02 04:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:21", + "echoMap": {}, + "alarmNo": "1370246314", + "alarmDate": "1769976061524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271081", + "createdBy": null, + "createdTime": "2026-02-02 04:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:08", + "echoMap": {}, + "alarmNo": "1370246315", + "alarmDate": "1769976066604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271114", + "createdBy": null, + "createdTime": "2026-02-02 04:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:18", + "echoMap": {}, + "alarmNo": "1370246316", + "alarmDate": "1769976076796", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238357", + "createdBy": null, + "createdTime": "2026-02-02 04:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:52", + "echoMap": {}, + "alarmNo": "1370246317", + "alarmDate": "1769976638750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238394", + "createdBy": null, + "createdTime": "2026-02-02 04:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:51", + "echoMap": {}, + "alarmNo": "1370246318", + "alarmDate": "1769976650210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238405", + "createdBy": null, + "createdTime": "2026-02-02 04:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:51", + "echoMap": {}, + "alarmNo": "1370246319", + "alarmDate": "1769976652424", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238420", + "createdBy": null, + "createdTime": "2026-02-02 04:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:00", + "echoMap": {}, + "alarmNo": "1370246320", + "alarmDate": "1769976658741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238432", + "createdBy": null, + "createdTime": "2026-02-02 04:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:04", + "echoMap": {}, + "alarmNo": "1370246321", + "alarmDate": "1769976662890", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238437", + "createdBy": null, + "createdTime": "2026-02-02 04:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:16", + "echoMap": {}, + "alarmNo": "1370246322", + "alarmDate": "1769976663761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238495", + "createdBy": null, + "createdTime": "2026-02-02 04:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:26", + "echoMap": {}, + "alarmNo": "1370246323", + "alarmDate": "1769976684909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238507", + "createdBy": null, + "createdTime": "2026-02-02 04:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:47", + "echoMap": {}, + "alarmNo": "1370246324", + "alarmDate": "1769976688775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238590", + "createdBy": null, + "createdTime": "2026-02-02 04:14:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:51", + "echoMap": {}, + "alarmNo": "1370246325", + "alarmDate": "1769976892463", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238605", + "createdBy": null, + "createdTime": "2026-02-02 04:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:51", + "echoMap": {}, + "alarmNo": "1370246326", + "alarmDate": "1769977012378", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238681", + "createdBy": null, + "createdTime": "2026-02-02 04:20:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:34", + "echoMap": {}, + "alarmNo": "1370246327", + "alarmDate": "1769977233020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238728", + "createdBy": null, + "createdTime": "2026-02-02 04:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:49", + "echoMap": {}, + "alarmNo": "1370246328", + "alarmDate": "1769977247627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205585", + "createdBy": null, + "createdTime": "2026-02-02 04:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:00", + "echoMap": {}, + "alarmNo": "1370246329", + "alarmDate": "1769977258682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205591", + "createdBy": null, + "createdTime": "2026-02-02 04:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:18", + "echoMap": {}, + "alarmNo": "1370246330", + "alarmDate": "1769977260088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205594", + "createdBy": null, + "createdTime": "2026-02-02 04:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:01", + "echoMap": {}, + "alarmNo": "1370246331", + "alarmDate": "1769977260243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205630", + "createdBy": null, + "createdTime": "2026-02-02 04:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:11", + "echoMap": {}, + "alarmNo": "1370246332", + "alarmDate": "1769977269837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187172908", + "createdBy": null, + "createdTime": "2026-02-02 04:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:27", + "echoMap": {}, + "alarmNo": "1370246333", + "alarmDate": "1769977286287", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173069", + "createdBy": null, + "createdTime": "2026-02-02 04:30:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:42", + "echoMap": {}, + "alarmNo": "1370246334", + "alarmDate": "1769977830167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173130", + "createdBy": null, + "createdTime": "2026-02-02 04:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:55", + "echoMap": {}, + "alarmNo": "1370246335", + "alarmDate": "1769977853642", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173134", + "createdBy": null, + "createdTime": "2026-02-02 04:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:06", + "echoMap": {}, + "alarmNo": "1370246336", + "alarmDate": "1769977854360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173141", + "createdBy": null, + "createdTime": "2026-02-02 04:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:56", + "echoMap": {}, + "alarmNo": "1370246337", + "alarmDate": "1769977855402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113136482140191", + "createdBy": null, + "createdTime": "2026-02-02 04:31:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:39", + "echoMap": {}, + "alarmNo": "1370246338", + "alarmDate": "1769977878361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113136482140209", + "createdBy": null, + "createdTime": "2026-02-02 04:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:24", + "echoMap": {}, + "alarmNo": "1370246339", + "alarmDate": "1769977882945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113136482140238", + "createdBy": null, + "createdTime": "2026-02-02 04:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:32", + "echoMap": {}, + "alarmNo": "1370246340", + "alarmDate": "1769977891468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113140777107624", + "createdBy": null, + "createdTime": "2026-02-02 04:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:42", + "echoMap": {}, + "alarmNo": "1370246341", + "alarmDate": "1769978440684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113140777107636", + "createdBy": null, + "createdTime": "2026-02-02 04:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:46", + "echoMap": {}, + "alarmNo": "1370246342", + "alarmDate": "1769978444815", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113140777107660", + "createdBy": null, + "createdTime": "2026-02-02 04:40:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:03", + "echoMap": {}, + "alarmNo": "1370246343", + "alarmDate": "1769978449594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113145072074752", + "createdBy": null, + "createdTime": "2026-02-02 04:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:06", + "echoMap": {}, + "alarmNo": "1370246344", + "alarmDate": "1769978464685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113145072074777", + "createdBy": null, + "createdTime": "2026-02-02 04:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:27", + "echoMap": {}, + "alarmNo": "1370246345", + "alarmDate": "1769978473595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113145072074827", + "createdBy": null, + "createdTime": "2026-02-02 04:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:30", + "echoMap": {}, + "alarmNo": "1370246346", + "alarmDate": "1769978489274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042054", + "createdBy": null, + "createdTime": "2026-02-02 04:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:43", + "echoMap": {}, + "alarmNo": "1370246347", + "alarmDate": "1769978492309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042201", + "createdBy": null, + "createdTime": "2026-02-02 04:50:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:35", + "echoMap": {}, + "alarmNo": "1370246348", + "alarmDate": "1769979030971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042234", + "createdBy": null, + "createdTime": "2026-02-02 04:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:44", + "echoMap": {}, + "alarmNo": "1370246349", + "alarmDate": "1769979042497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042255", + "createdBy": null, + "createdTime": "2026-02-02 04:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:51", + "echoMap": {}, + "alarmNo": "1370246350", + "alarmDate": "1769979049721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042283", + "createdBy": null, + "createdTime": "2026-02-02 04:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:54", + "echoMap": {}, + "alarmNo": "1370246351", + "alarmDate": "1769979053175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042287", + "createdBy": null, + "createdTime": "2026-02-02 04:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:06", + "echoMap": {}, + "alarmNo": "1370246352", + "alarmDate": "1769979053928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113153662009344", + "createdBy": null, + "createdTime": "2026-02-02 04:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:59", + "echoMap": {}, + "alarmNo": "1370246353", + "alarmDate": "1769979058163", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113153662009397", + "createdBy": null, + "createdTime": "2026-02-02 04:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:45", + "echoMap": {}, + "alarmNo": "1370246354", + "alarmDate": "1769979079063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113153662009414", + "createdBy": null, + "createdTime": "2026-02-02 04:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:24", + "echoMap": {}, + "alarmNo": "1370246355", + "alarmDate": "1769979083296", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113157956976856", + "createdBy": null, + "createdTime": "2026-02-02 05:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:47", + "echoMap": {}, + "alarmNo": "1370246356", + "alarmDate": "1769979646320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251943949", + "createdBy": null, + "createdTime": "2026-02-02 05:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:09", + "echoMap": {}, + "alarmNo": "1370246357", + "alarmDate": "1769979657242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251943975", + "createdBy": null, + "createdTime": "2026-02-02 05:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:06", + "echoMap": {}, + "alarmNo": "1370246358", + "alarmDate": "1769979664855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251944000", + "createdBy": null, + "createdTime": "2026-02-02 05:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:14", + "echoMap": {}, + "alarmNo": "1370246359", + "alarmDate": "1769979673349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251944014", + "createdBy": null, + "createdTime": "2026-02-02 05:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:19", + "echoMap": {}, + "alarmNo": "1370246360", + "alarmDate": "1769979677675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911238", + "createdBy": null, + "createdTime": "2026-02-02 05:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:33", + "echoMap": {}, + "alarmNo": "1370246361", + "alarmDate": "1769979681229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911456", + "createdBy": null, + "createdTime": "2026-02-02 05:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:57", + "echoMap": {}, + "alarmNo": "1370246362", + "alarmDate": "1769980245406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911464", + "createdBy": null, + "createdTime": "2026-02-02 05:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:47", + "echoMap": {}, + "alarmNo": "1370246363", + "alarmDate": "1769980246425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911483", + "createdBy": null, + "createdTime": "2026-02-02 05:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:51", + "echoMap": {}, + "alarmNo": "1370246364", + "alarmDate": "1769980249524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845849", + "createdBy": null, + "createdTime": "2026-02-02 05:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:28", + "echoMap": {}, + "alarmNo": "1370246365", + "alarmDate": "1769980269406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845876", + "createdBy": null, + "createdTime": "2026-02-02 05:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:15", + "echoMap": {}, + "alarmNo": "1370246366", + "alarmDate": "1769980274207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845920", + "createdBy": null, + "createdTime": "2026-02-02 05:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:23", + "echoMap": {}, + "alarmNo": "1370246367", + "alarmDate": "1769980282214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845936", + "createdBy": null, + "createdTime": "2026-02-02 05:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:26", + "echoMap": {}, + "alarmNo": "1370246368", + "alarmDate": "1769980284750", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113179431813209", + "createdBy": null, + "createdTime": "2026-02-02 05:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:53", + "echoMap": {}, + "alarmNo": "1370246369", + "alarmDate": "1769980840638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780431", + "createdBy": null, + "createdTime": "2026-02-02 05:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:47", + "echoMap": {}, + "alarmNo": "1370246370", + "alarmDate": "1769980845864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780466", + "createdBy": null, + "createdTime": "2026-02-02 05:20:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:55", + "echoMap": {}, + "alarmNo": "1370246371", + "alarmDate": "1769980853615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780498", + "createdBy": null, + "createdTime": "2026-02-02 05:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:04", + "echoMap": {}, + "alarmNo": "1370246372", + "alarmDate": "1769980863068", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780507", + "createdBy": null, + "createdTime": "2026-02-02 05:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:17", + "echoMap": {}, + "alarmNo": "1370246373", + "alarmDate": "1769980864744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780576", + "createdBy": null, + "createdTime": "2026-02-02 05:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:24", + "echoMap": {}, + "alarmNo": "1370246374", + "alarmDate": "1769980882809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715046", + "createdBy": null, + "createdTime": "2026-02-02 05:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:51", + "echoMap": {}, + "alarmNo": "1370246375", + "alarmDate": "1769981438647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715063", + "createdBy": null, + "createdTime": "2026-02-02 05:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:56", + "echoMap": {}, + "alarmNo": "1370246376", + "alarmDate": "1769981444051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715077", + "createdBy": null, + "createdTime": "2026-02-02 05:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:48", + "echoMap": {}, + "alarmNo": "1370246377", + "alarmDate": "1769981446605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715128", + "createdBy": null, + "createdTime": "2026-02-02 05:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:00", + "echoMap": {}, + "alarmNo": "1370246378", + "alarmDate": "1769981459335", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715167", + "createdBy": null, + "createdTime": "2026-02-02 05:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:28", + "echoMap": {}, + "alarmNo": "1370246379", + "alarmDate": "1769981469005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715191", + "createdBy": null, + "createdTime": "2026-02-02 05:31:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:20", + "echoMap": {}, + "alarmNo": "1370246380", + "alarmDate": "1769981474108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715226", + "createdBy": null, + "createdTime": "2026-02-02 05:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:21", + "echoMap": {}, + "alarmNo": "1370246381", + "alarmDate": "1769981480109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715233", + "createdBy": null, + "createdTime": "2026-02-02 05:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:22", + "echoMap": {}, + "alarmNo": "1370246382", + "alarmDate": "1769981481229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649661", + "createdBy": null, + "createdTime": "2026-02-02 05:40:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:35", + "echoMap": {}, + "alarmNo": "1370246383", + "alarmDate": "1769982030217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649667", + "createdBy": null, + "createdTime": "2026-02-02 05:40:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:37", + "echoMap": {}, + "alarmNo": "1370246384", + "alarmDate": "1769982031537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649729", + "createdBy": null, + "createdTime": "2026-02-02 05:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:59", + "echoMap": {}, + "alarmNo": "1370246385", + "alarmDate": "1769982046275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649782", + "createdBy": null, + "createdTime": "2026-02-02 05:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:57", + "echoMap": {}, + "alarmNo": "1370246386", + "alarmDate": "1769982056147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649793", + "createdBy": null, + "createdTime": "2026-02-02 05:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:59", + "echoMap": {}, + "alarmNo": "1370246387", + "alarmDate": "1769982057498", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113205201616908", + "createdBy": null, + "createdTime": "2026-02-02 05:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:24", + "echoMap": {}, + "alarmNo": "1370246388", + "alarmDate": "1769982071251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113205201616981", + "createdBy": null, + "createdTime": "2026-02-02 05:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:27", + "echoMap": {}, + "alarmNo": "1370246389", + "alarmDate": "1769982086469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113205201616987", + "createdBy": null, + "createdTime": "2026-02-02 05:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:28", + "echoMap": {}, + "alarmNo": "1370246390", + "alarmDate": "1769982087214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584325", + "createdBy": null, + "createdTime": "2026-02-02 05:50:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:31", + "echoMap": {}, + "alarmNo": "1370246391", + "alarmDate": "1769982630401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584337", + "createdBy": null, + "createdTime": "2026-02-02 05:50:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:38", + "echoMap": {}, + "alarmNo": "1370246392", + "alarmDate": "1769982633634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584347", + "createdBy": null, + "createdTime": "2026-02-02 05:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:36", + "echoMap": {}, + "alarmNo": "1370246393", + "alarmDate": "1769982635356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584363", + "createdBy": null, + "createdTime": "2026-02-02 05:50:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:40", + "echoMap": {}, + "alarmNo": "1370246394", + "alarmDate": "1769982638598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584373", + "createdBy": null, + "createdTime": "2026-02-02 05:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:42", + "echoMap": {}, + "alarmNo": "1370246395", + "alarmDate": "1769982640715", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584418", + "createdBy": null, + "createdTime": "2026-02-02 05:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:02", + "echoMap": {}, + "alarmNo": "1370246396", + "alarmDate": "1769982650509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113213791551562", + "createdBy": null, + "createdTime": "2026-02-02 05:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:15", + "echoMap": {}, + "alarmNo": "1370246397", + "alarmDate": "1769982673612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086518791", + "createdBy": null, + "createdTime": "2026-02-02 05:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:42", + "echoMap": {}, + "alarmNo": "1370246398", + "alarmDate": "1769982675519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086518826", + "createdBy": null, + "createdTime": "2026-02-02 05:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:24", + "echoMap": {}, + "alarmNo": "1370246399", + "alarmDate": "1769982683344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086518847", + "createdBy": null, + "createdTime": "2026-02-02 05:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:35", + "echoMap": {}, + "alarmNo": "1370246400", + "alarmDate": "1769982687781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086519053", + "createdBy": null, + "createdTime": "2026-02-02 06:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:42", + "echoMap": {}, + "alarmNo": "1370246401", + "alarmDate": "1769983241186", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113222381486122", + "createdBy": null, + "createdTime": "2026-02-02 06:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:06", + "echoMap": {}, + "alarmNo": "1370246402", + "alarmDate": "1769983253757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113222381486150", + "createdBy": null, + "createdTime": "2026-02-02 06:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:13", + "echoMap": {}, + "alarmNo": "1370246403", + "alarmDate": "1769983260039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453414", + "createdBy": null, + "createdTime": "2026-02-02 06:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:05", + "echoMap": {}, + "alarmNo": "1370246404", + "alarmDate": "1769983263841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453423", + "createdBy": null, + "createdTime": "2026-02-02 06:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:06", + "echoMap": {}, + "alarmNo": "1370246405", + "alarmDate": "1769983264990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453477", + "createdBy": null, + "createdTime": "2026-02-02 06:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:37", + "echoMap": {}, + "alarmNo": "1370246406", + "alarmDate": "1769983277765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453505", + "createdBy": null, + "createdTime": "2026-02-02 06:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:25", + "echoMap": {}, + "alarmNo": "1370246407", + "alarmDate": "1769983284192", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453531", + "createdBy": null, + "createdTime": "2026-02-02 06:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:31", + "echoMap": {}, + "alarmNo": "1370246408", + "alarmDate": "1769983289755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113230971420728", + "createdBy": null, + "createdTime": "2026-02-02 06:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:38", + "echoMap": {}, + "alarmNo": "1370246409", + "alarmDate": "1769983837013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266387971", + "createdBy": null, + "createdTime": "2026-02-02 06:10:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:57", + "echoMap": {}, + "alarmNo": "1370246410", + "alarmDate": "1769983838263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388017", + "createdBy": null, + "createdTime": "2026-02-02 06:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:02", + "echoMap": {}, + "alarmNo": "1370246411", + "alarmDate": "1769983849077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388123", + "createdBy": null, + "createdTime": "2026-02-02 06:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:11", + "echoMap": {}, + "alarmNo": "1370246412", + "alarmDate": "1769983869992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388131", + "createdBy": null, + "createdTime": "2026-02-02 06:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:12", + "echoMap": {}, + "alarmNo": "1370246413", + "alarmDate": "1769983871428", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388159", + "createdBy": null, + "createdTime": "2026-02-02 06:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:20", + "echoMap": {}, + "alarmNo": "1370246414", + "alarmDate": "1769983879163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388170", + "createdBy": null, + "createdTime": "2026-02-02 06:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:33", + "echoMap": {}, + "alarmNo": "1370246415", + "alarmDate": "1769983881070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322628", + "createdBy": null, + "createdTime": "2026-02-02 06:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:58", + "echoMap": {}, + "alarmNo": "1370246416", + "alarmDate": "1769984445261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322745", + "createdBy": null, + "createdTime": "2026-02-02 06:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:11", + "echoMap": {}, + "alarmNo": "1370246417", + "alarmDate": "1769984470065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322756", + "createdBy": null, + "createdTime": "2026-02-02 06:21:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:13", + "echoMap": {}, + "alarmNo": "1370246418", + "alarmDate": "1769984472413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322764", + "createdBy": null, + "createdTime": "2026-02-02 06:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:15", + "echoMap": {}, + "alarmNo": "1370246419", + "alarmDate": "1769984473876", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322775", + "createdBy": null, + "createdTime": "2026-02-02 06:21:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:38", + "echoMap": {}, + "alarmNo": "1370246420", + "alarmDate": "1769984476308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257247", + "createdBy": null, + "createdTime": "2026-02-02 06:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:00", + "echoMap": {}, + "alarmNo": "1370246421", + "alarmDate": "1769985047905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257254", + "createdBy": null, + "createdTime": "2026-02-02 06:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:51", + "echoMap": {}, + "alarmNo": "1370246422", + "alarmDate": "1769985049702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257275", + "createdBy": null, + "createdTime": "2026-02-02 06:30:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:08", + "echoMap": {}, + "alarmNo": "1370246423", + "alarmDate": "1769985055614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257284", + "createdBy": null, + "createdTime": "2026-02-02 06:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:58", + "echoMap": {}, + "alarmNo": "1370246424", + "alarmDate": "1769985056890", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257332", + "createdBy": null, + "createdTime": "2026-02-02 06:31:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:24", + "echoMap": {}, + "alarmNo": "1370246425", + "alarmDate": "1769985072002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257342", + "createdBy": null, + "createdTime": "2026-02-02 06:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:16", + "echoMap": {}, + "alarmNo": "1370246426", + "alarmDate": "1769985074643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257378", + "createdBy": null, + "createdTime": "2026-02-02 06:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:33", + "echoMap": {}, + "alarmNo": "1370246427", + "alarmDate": "1769985079580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191817", + "createdBy": null, + "createdTime": "2026-02-02 06:40:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:35", + "echoMap": {}, + "alarmNo": "1370246428", + "alarmDate": "1769985631218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191882", + "createdBy": null, + "createdTime": "2026-02-02 06:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:57", + "echoMap": {}, + "alarmNo": "1370246429", + "alarmDate": "1769985650724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191885", + "createdBy": null, + "createdTime": "2026-02-02 06:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:52", + "echoMap": {}, + "alarmNo": "1370246430", + "alarmDate": "1769985650878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191964", + "createdBy": null, + "createdTime": "2026-02-02 06:41:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:13", + "echoMap": {}, + "alarmNo": "1370246431", + "alarmDate": "1769985671955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191977", + "createdBy": null, + "createdTime": "2026-02-02 06:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:21", + "echoMap": {}, + "alarmNo": "1370246432", + "alarmDate": "1769985674836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126461", + "createdBy": null, + "createdTime": "2026-02-02 06:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:40", + "echoMap": {}, + "alarmNo": "1370246433", + "alarmDate": "1769986242889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126477", + "createdBy": null, + "createdTime": "2026-02-02 06:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:00", + "echoMap": {}, + "alarmNo": "1370246434", + "alarmDate": "1769986247449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126508", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:56", + "echoMap": {}, + "alarmNo": "1370246435", + "alarmDate": "1769986254723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126512", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:56", + "echoMap": {}, + "alarmNo": "1370246436", + "alarmDate": "1769986254973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126577", + "createdBy": null, + "createdTime": "2026-02-02 06:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:18", + "echoMap": {}, + "alarmNo": "1370246437", + "alarmDate": "1769986272462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093662", + "createdBy": null, + "createdTime": "2026-02-02 06:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:25", + "echoMap": {}, + "alarmNo": "1370246438", + "alarmDate": "1769986283599", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093676", + "createdBy": null, + "createdTime": "2026-02-02 06:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:28", + "echoMap": {}, + "alarmNo": "1370246439", + "alarmDate": "1769986287173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093689", + "createdBy": null, + "createdTime": "2026-02-02 06:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:39", + "echoMap": {}, + "alarmNo": "1370246440", + "alarmDate": "1769986289350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093694", + "createdBy": null, + "createdTime": "2026-02-02 06:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:06", + "echoMap": {}, + "alarmNo": "1370246441", + "alarmDate": "1769986290559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113282511028250", + "createdBy": null, + "createdTime": "2026-02-02 07:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:07", + "echoMap": {}, + "alarmNo": "1370246442", + "alarmDate": "1769986865550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113282511028281", + "createdBy": null, + "createdTime": "2026-02-02 07:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:15", + "echoMap": {}, + "alarmNo": "1370246443", + "alarmDate": "1769986874035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113286805995525", + "createdBy": null, + "createdTime": "2026-02-02 07:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:21", + "echoMap": {}, + "alarmNo": "1370246444", + "alarmDate": "1769986879821", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113286805995541", + "createdBy": null, + "createdTime": "2026-02-02 07:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:06", + "echoMap": {}, + "alarmNo": "1370246445", + "alarmDate": "1769986883816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113286805995582", + "createdBy": null, + "createdTime": "2026-02-02 07:02:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:51", + "echoMap": {}, + "alarmNo": "1370246446", + "alarmDate": "1769986972402", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113291100962837", + "createdBy": null, + "createdTime": "2026-02-02 07:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:59", + "echoMap": {}, + "alarmNo": "1370246447", + "alarmDate": "1769987457711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113291100962869", + "createdBy": null, + "createdTime": "2026-02-02 07:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:06", + "echoMap": {}, + "alarmNo": "1370246448", + "alarmDate": "1769987464705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113295395930137", + "createdBy": null, + "createdTime": "2026-02-02 07:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:18", + "echoMap": {}, + "alarmNo": "1370246449", + "alarmDate": "1769987478048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113295395930151", + "createdBy": null, + "createdTime": "2026-02-02 07:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:27", + "echoMap": {}, + "alarmNo": "1370246450", + "alarmDate": "1769987481183", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113295395930176", + "createdBy": null, + "createdTime": "2026-02-02 07:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:27", + "echoMap": {}, + "alarmNo": "1370246451", + "alarmDate": "1769987485866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897411", + "createdBy": null, + "createdTime": "2026-02-02 07:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:42", + "echoMap": {}, + "alarmNo": "1370246452", + "alarmDate": "1769988041074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897423", + "createdBy": null, + "createdTime": "2026-02-02 07:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:46", + "echoMap": {}, + "alarmNo": "1370246453", + "alarmDate": "1769988045271", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897431", + "createdBy": null, + "createdTime": "2026-02-02 07:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:48", + "echoMap": {}, + "alarmNo": "1370246454", + "alarmDate": "1769988046799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897443", + "createdBy": null, + "createdTime": "2026-02-02 07:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:35", + "echoMap": {}, + "alarmNo": "1370246455", + "alarmDate": "1769988050814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897447", + "createdBy": null, + "createdTime": "2026-02-02 07:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:57", + "echoMap": {}, + "alarmNo": "1370246456", + "alarmDate": "1769988051299", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113303985864725", + "createdBy": null, + "createdTime": "2026-02-02 07:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:18", + "echoMap": {}, + "alarmNo": "1370246457", + "alarmDate": "1769988065387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060158", + "deviceName": "[706](10)龙溪虹火上行方向存车线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113303985864837", + "createdBy": null, + "createdTime": "2026-02-02 07:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:42", + "echoMap": {}, + "alarmNo": "1370246458", + "alarmDate": "1769988090457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113303985864876", + "createdBy": null, + "createdTime": "2026-02-02 07:23:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:24:51", + "echoMap": {}, + "alarmNo": "1370246459", + "alarmDate": "1769988232396", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799312", + "createdBy": null, + "createdTime": "2026-02-02 07:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:18", + "echoMap": {}, + "alarmNo": "1370246460", + "alarmDate": "1769988645990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799336", + "createdBy": null, + "createdTime": "2026-02-02 07:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:00", + "echoMap": {}, + "alarmNo": "1370246461", + "alarmDate": "1769988653520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799402", + "createdBy": null, + "createdTime": "2026-02-02 07:31:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:14", + "echoMap": {}, + "alarmNo": "1370246462", + "alarmDate": "1769988672793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799411", + "createdBy": null, + "createdTime": "2026-02-02 07:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:16", + "echoMap": {}, + "alarmNo": "1370246463", + "alarmDate": "1769988674669", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799423", + "createdBy": null, + "createdTime": "2026-02-02 07:31:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:24", + "echoMap": {}, + "alarmNo": "1370246464", + "alarmDate": "1769988677532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165733913", + "createdBy": null, + "createdTime": "2026-02-02 07:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:48", + "echoMap": {}, + "alarmNo": "1370246465", + "alarmDate": "1769989241773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165733975", + "createdBy": null, + "createdTime": "2026-02-02 07:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:59", + "echoMap": {}, + "alarmNo": "1370246466", + "alarmDate": "1769989257512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165734008", + "createdBy": null, + "createdTime": "2026-02-02 07:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:12", + "echoMap": {}, + "alarmNo": "1370246467", + "alarmDate": "1769989265805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165734045", + "createdBy": null, + "createdTime": "2026-02-02 07:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:16", + "echoMap": {}, + "alarmNo": "1370246468", + "alarmDate": "1769989274973", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668512", + "createdBy": null, + "createdTime": "2026-02-02 07:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:35", + "echoMap": {}, + "alarmNo": "1370246469", + "alarmDate": "1769989831926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668553", + "createdBy": null, + "createdTime": "2026-02-02 07:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:51", + "echoMap": {}, + "alarmNo": "1370246470", + "alarmDate": "1769989849673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668573", + "createdBy": null, + "createdTime": "2026-02-02 07:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:11", + "echoMap": {}, + "alarmNo": "1370246471", + "alarmDate": "1769989857554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668619", + "createdBy": null, + "createdTime": "2026-02-02 07:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:23", + "echoMap": {}, + "alarmNo": "1370246472", + "alarmDate": "1769989871085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668661", + "createdBy": null, + "createdTime": "2026-02-02 07:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:21", + "echoMap": {}, + "alarmNo": "1370246473", + "alarmDate": "1769989883549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113334050635789", + "createdBy": null, + "createdTime": "2026-02-02 07:55:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:51", + "echoMap": {}, + "alarmNo": "1370246474", + "alarmDate": "1769990152493", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603096", + "createdBy": null, + "createdTime": "2026-02-02 08:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:51", + "echoMap": {}, + "alarmNo": "1370246475", + "alarmDate": "1769990445017", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603116", + "createdBy": null, + "createdTime": "2026-02-02 08:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:52", + "echoMap": {}, + "alarmNo": "1370246476", + "alarmDate": "1769990450531", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603143", + "createdBy": null, + "createdTime": "2026-02-02 08:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:59", + "echoMap": {}, + "alarmNo": "1370246477", + "alarmDate": "1769990458314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603203", + "createdBy": null, + "createdTime": "2026-02-02 08:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:18", + "echoMap": {}, + "alarmNo": "1370246478", + "alarmDate": "1769990476616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537677", + "createdBy": null, + "createdTime": "2026-02-02 08:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:34", + "echoMap": {}, + "alarmNo": "1370246479", + "alarmDate": "1769991031079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537729", + "createdBy": null, + "createdTime": "2026-02-02 08:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:04", + "echoMap": {}, + "alarmNo": "1370246480", + "alarmDate": "1769991045134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537746", + "createdBy": null, + "createdTime": "2026-02-02 08:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:51", + "echoMap": {}, + "alarmNo": "1370246481", + "alarmDate": "1769991050331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537816", + "createdBy": null, + "createdTime": "2026-02-02 08:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:18", + "echoMap": {}, + "alarmNo": "1370246482", + "alarmDate": "1769991072786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060158", + "deviceName": "[706](10)龙溪虹火上行方向存车线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537832", + "createdBy": null, + "createdTime": "2026-02-02 08:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:23", + "echoMap": {}, + "alarmNo": "1370246483", + "alarmDate": "1769991077093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537868", + "createdBy": null, + "createdTime": "2026-02-02 08:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:51", + "echoMap": {}, + "alarmNo": "1370246484", + "alarmDate": "1769991112443", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472262", + "createdBy": null, + "createdTime": "2026-02-02 08:20:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:33", + "echoMap": {}, + "alarmNo": "1370246485", + "alarmDate": "1769991631344", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472314", + "createdBy": null, + "createdTime": "2026-02-02 08:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:08", + "echoMap": {}, + "alarmNo": "1370246486", + "alarmDate": "1769991655302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472321", + "createdBy": null, + "createdTime": "2026-02-02 08:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:58", + "echoMap": {}, + "alarmNo": "1370246487", + "alarmDate": "1769991656637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472367", + "createdBy": null, + "createdTime": "2026-02-02 08:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:12", + "echoMap": {}, + "alarmNo": "1370246488", + "alarmDate": "1769991671042", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472393", + "createdBy": null, + "createdTime": "2026-02-02 08:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:19", + "echoMap": {}, + "alarmNo": "1370246489", + "alarmDate": "1769991678059", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115406936", + "createdBy": null, + "createdTime": "2026-02-02 08:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:02", + "echoMap": {}, + "alarmNo": "1370246490", + "alarmDate": "1769992261297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115406984", + "createdBy": null, + "createdTime": "2026-02-02 08:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:52", + "echoMap": {}, + "alarmNo": "1370246491", + "alarmDate": "1769992279593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115407003", + "createdBy": null, + "createdTime": "2026-02-02 08:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:26", + "echoMap": {}, + "alarmNo": "1370246492", + "alarmDate": "1769992285003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115407022", + "createdBy": null, + "createdTime": "2026-02-02 08:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:32", + "echoMap": {}, + "alarmNo": "1370246493", + "alarmDate": "1769992290924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341459", + "createdBy": null, + "createdTime": "2026-02-02 08:40:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:38", + "echoMap": {}, + "alarmNo": "1370246495", + "alarmDate": "1769992836708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341469", + "createdBy": null, + "createdTime": "2026-02-02 08:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:41", + "echoMap": {}, + "alarmNo": "1370246496", + "alarmDate": "1769992839712", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341483", + "createdBy": null, + "createdTime": "2026-02-02 08:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:44", + "echoMap": {}, + "alarmNo": "1370246497", + "alarmDate": "1769992843114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341549", + "createdBy": null, + "createdTime": "2026-02-02 08:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:15", + "echoMap": {}, + "alarmNo": "1370246498", + "alarmDate": "1769992869834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113377000308798", + "createdBy": null, + "createdTime": "2026-02-02 08:50:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:22", + "echoMap": {}, + "alarmNo": "1370246499", + "alarmDate": "1769993433946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276091", + "createdBy": null, + "createdTime": "2026-02-02 08:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:56", + "echoMap": {}, + "alarmNo": "1370246500", + "alarmDate": "1769993455493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276101", + "createdBy": null, + "createdTime": "2026-02-02 08:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:58", + "echoMap": {}, + "alarmNo": "1370246501", + "alarmDate": "1769993457407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276112", + "createdBy": null, + "createdTime": "2026-02-02 08:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:01", + "echoMap": {}, + "alarmNo": "1370246502", + "alarmDate": "1769993459964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276159", + "createdBy": null, + "createdTime": "2026-02-02 08:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:27", + "echoMap": {}, + "alarmNo": "1370246503", + "alarmDate": "1769993474341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060045", + "deviceName": "[406](10)龙溪3#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276376", + "createdBy": null, + "createdTime": "2026-02-02 09:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:51", + "echoMap": {}, + "alarmNo": "1370246504", + "alarmDate": "1769994037663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113385590243366", + "createdBy": null, + "createdTime": "2026-02-02 09:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:03", + "echoMap": {}, + "alarmNo": "1370246505", + "alarmDate": "1769994062228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210632", + "createdBy": null, + "createdTime": "2026-02-02 09:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:25", + "echoMap": {}, + "alarmNo": "1370246506", + "alarmDate": "1769994083681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210693", + "createdBy": null, + "createdTime": "2026-02-02 09:03:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:51", + "echoMap": {}, + "alarmNo": "1370246507", + "alarmDate": "1769994232381", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210811", + "createdBy": null, + "createdTime": "2026-02-02 09:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:34", + "echoMap": {}, + "alarmNo": "1370246508", + "alarmDate": "1769994632903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210821", + "createdBy": null, + "createdTime": "2026-02-02 09:10:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:37", + "echoMap": {}, + "alarmNo": "1370246509", + "alarmDate": "1769994635830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210915", + "createdBy": null, + "createdTime": "2026-02-02 09:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:22", + "echoMap": {}, + "alarmNo": "1370246510", + "alarmDate": "1769994680482", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210925", + "createdBy": null, + "createdTime": "2026-02-02 09:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:24", + "echoMap": {}, + "alarmNo": "1370246511", + "alarmDate": "1769994682529", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210928", + "createdBy": null, + "createdTime": "2026-02-02 09:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:58", + "echoMap": {}, + "alarmNo": "1370246512", + "alarmDate": "1769994682595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145336", + "createdBy": null, + "createdTime": "2026-02-02 09:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:51", + "echoMap": {}, + "alarmNo": "1370246513", + "alarmDate": "1769995250175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145365", + "createdBy": null, + "createdTime": "2026-02-02 09:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:00", + "echoMap": {}, + "alarmNo": "1370246514", + "alarmDate": "1769995259357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145390", + "createdBy": null, + "createdTime": "2026-02-02 09:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:41", + "echoMap": {}, + "alarmNo": "1370246515", + "alarmDate": "1769995269862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145440", + "createdBy": null, + "createdTime": "2026-02-02 09:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:32", + "echoMap": {}, + "alarmNo": "1370246516", + "alarmDate": "1769995285574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060158", + "deviceName": "[706](10)龙溪虹火上行方向存车线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079832", + "createdBy": null, + "createdTime": "2026-02-02 09:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:46", + "echoMap": {}, + "alarmNo": "1370246517", + "alarmDate": "1769995839613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079851", + "createdBy": null, + "createdTime": "2026-02-02 09:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:46", + "echoMap": {}, + "alarmNo": "1370246518", + "alarmDate": "1769995844889", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079898", + "createdBy": null, + "createdTime": "2026-02-02 09:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:05", + "echoMap": {}, + "alarmNo": "1370246519", + "alarmDate": "1769995864141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079922", + "createdBy": null, + "createdTime": "2026-02-02 09:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:11", + "echoMap": {}, + "alarmNo": "1370246520", + "alarmDate": "1769995870441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079938", + "createdBy": null, + "createdTime": "2026-02-02 09:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:18", + "echoMap": {}, + "alarmNo": "1370246521", + "alarmDate": "1769995876541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079965", + "createdBy": null, + "createdTime": "2026-02-02 09:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:29", + "echoMap": {}, + "alarmNo": "1370246522", + "alarmDate": "1769995888045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079973", + "createdBy": null, + "createdTime": "2026-02-02 09:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:51", + "echoMap": {}, + "alarmNo": "1370246523", + "alarmDate": "1769995912397", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065080048", + "createdBy": null, + "createdTime": "2026-02-02 09:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:51", + "echoMap": {}, + "alarmNo": "1370246525", + "alarmDate": "1769996152405", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113411360047106", + "createdBy": null, + "createdTime": "2026-02-02 09:40:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:57", + "echoMap": {}, + "alarmNo": "1370246526", + "alarmDate": "1769996435632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060045", + "deviceName": "[406](10)龙溪3#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113411360047174", + "createdBy": null, + "createdTime": "2026-02-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:56", + "echoMap": {}, + "alarmNo": "1370246527", + "alarmDate": "1769996455356", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113415655014416", + "createdBy": null, + "createdTime": "2026-02-02 09:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:23", + "echoMap": {}, + "alarmNo": "1370246528", + "alarmDate": "1769996465430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113415655014485", + "createdBy": null, + "createdTime": "2026-02-02 09:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:31", + "echoMap": {}, + "alarmNo": "1370246529", + "alarmDate": "1769996489822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113415655014705", + "createdBy": null, + "createdTime": "2026-02-02 09:51:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:02", + "echoMap": {}, + "alarmNo": "1370246530", + "alarmDate": "1769997061228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113419949981712", + "createdBy": null, + "createdTime": "2026-02-02 09:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:17", + "echoMap": {}, + "alarmNo": "1370246531", + "alarmDate": "1769997076458", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113419949981731", + "createdBy": null, + "createdTime": "2026-02-02 09:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:59", + "echoMap": {}, + "alarmNo": "1370246532", + "alarmDate": "1769997082725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113424244949198", + "createdBy": null, + "createdTime": "2026-02-02 10:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:05", + "echoMap": {}, + "alarmNo": "1370246533", + "alarmDate": "1769997664079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113424244949213", + "createdBy": null, + "createdTime": "2026-02-02 10:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:10", + "echoMap": {}, + "alarmNo": "1370246534", + "alarmDate": "1769997669256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113424244949260", + "createdBy": null, + "createdTime": "2026-02-02 10:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:28", + "echoMap": {}, + "alarmNo": "1370246535", + "alarmDate": "1769997686846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113432834883655", + "createdBy": null, + "createdTime": "2026-02-02 10:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:10", + "echoMap": {}, + "alarmNo": "1370246536", + "alarmDate": "1769998264213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113432834883713", + "createdBy": null, + "createdTime": "2026-02-02 10:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:28", + "echoMap": {}, + "alarmNo": "1370246537", + "alarmDate": "1769998286498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113432834883893", + "createdBy": null, + "createdTime": "2026-02-02 10:20:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:39", + "echoMap": {}, + "alarmNo": "1370246538", + "alarmDate": "1769998838393", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113437129850923", + "createdBy": null, + "createdTime": "2026-02-02 10:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:57", + "echoMap": {}, + "alarmNo": "1370246539", + "alarmDate": "1769998856295", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113437129850938", + "createdBy": null, + "createdTime": "2026-02-02 10:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:01", + "echoMap": {}, + "alarmNo": "1370246540", + "alarmDate": "1769998860386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113437129850946", + "createdBy": null, + "createdTime": "2026-02-02 10:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:03", + "echoMap": {}, + "alarmNo": "1370246541", + "alarmDate": "1769998862105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113441424818444", + "createdBy": null, + "createdTime": "2026-02-02 10:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:00", + "echoMap": {}, + "alarmNo": "1370246542", + "alarmDate": "1769999458968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113441424818454", + "createdBy": null, + "createdTime": "2026-02-02 10:31:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:03", + "echoMap": {}, + "alarmNo": "1370246543", + "alarmDate": "1769999462028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113445719785490", + "createdBy": null, + "createdTime": "2026-02-02 10:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:24", + "echoMap": {}, + "alarmNo": "1370246544", + "alarmDate": "1769999482648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113450014752878", + "createdBy": null, + "createdTime": "2026-02-02 10:40:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:37", + "echoMap": {}, + "alarmNo": "1370246545", + "alarmDate": "1770000035814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113450014752991", + "createdBy": null, + "createdTime": "2026-02-02 10:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:24", + "echoMap": {}, + "alarmNo": "1370246546", + "alarmDate": "1770000077107", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060027", + "deviceName": "[311](10)龙溪2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113450014753020", + "createdBy": null, + "createdTime": "2026-02-02 10:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:28", + "echoMap": {}, + "alarmNo": "1370246547", + "alarmDate": "1770000086853", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113454309720092", + "createdBy": null, + "createdTime": "2026-02-02 10:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:51", + "echoMap": {}, + "alarmNo": "1370246548", + "alarmDate": "1770000292564", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687425", + "createdBy": null, + "createdTime": "2026-02-02 10:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:33", + "echoMap": {}, + "alarmNo": "1370246549", + "alarmDate": "1770000632480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687429", + "createdBy": null, + "createdTime": "2026-02-02 10:50:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:34", + "echoMap": {}, + "alarmNo": "1370246550", + "alarmDate": "1770000633159", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687476", + "createdBy": null, + "createdTime": "2026-02-02 10:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:55", + "echoMap": {}, + "alarmNo": "1370246551", + "alarmDate": "1770000654131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687486", + "createdBy": null, + "createdTime": "2026-02-02 10:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:10", + "echoMap": {}, + "alarmNo": "1370246552", + "alarmDate": "1770000657117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687497", + "createdBy": null, + "createdTime": "2026-02-02 10:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:01", + "echoMap": {}, + "alarmNo": "1370246553", + "alarmDate": "1770000659846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687555", + "createdBy": null, + "createdTime": "2026-02-02 10:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:22", + "echoMap": {}, + "alarmNo": "1370246554", + "alarmDate": "1770000681398", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194621968", + "createdBy": null, + "createdTime": "2026-02-02 11:00:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:33", + "echoMap": {}, + "alarmNo": "1370246556", + "alarmDate": "1770001231315", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622011", + "createdBy": null, + "createdTime": "2026-02-02 11:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:51", + "echoMap": {}, + "alarmNo": "1370246557", + "alarmDate": "1770001250477", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622024", + "createdBy": null, + "createdTime": "2026-02-02 11:00:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:56", + "echoMap": {}, + "alarmNo": "1370246558", + "alarmDate": "1770001254712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622033", + "createdBy": null, + "createdTime": "2026-02-02 11:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:58", + "echoMap": {}, + "alarmNo": "1370246559", + "alarmDate": "1770001256890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622066", + "createdBy": null, + "createdTime": "2026-02-02 11:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:15", + "echoMap": {}, + "alarmNo": "1370246560", + "alarmDate": "1770001269691", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060027", + "deviceName": "[311](10)龙溪2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113471489589277", + "createdBy": null, + "createdTime": "2026-02-02 11:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:45", + "echoMap": {}, + "alarmNo": "1370246561", + "alarmDate": "1770001831453", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556599", + "createdBy": null, + "createdTime": "2026-02-02 11:11:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:09", + "echoMap": {}, + "alarmNo": "1370246562", + "alarmDate": "1770001861724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556616", + "createdBy": null, + "createdTime": "2026-02-02 11:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:08", + "echoMap": {}, + "alarmNo": "1370246563", + "alarmDate": "1770001866724", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556756", + "createdBy": null, + "createdTime": "2026-02-02 11:17:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:51", + "echoMap": {}, + "alarmNo": "1370246564", + "alarmDate": "1770002272377", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556802", + "createdBy": null, + "createdTime": "2026-02-02 11:20:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:12", + "echoMap": {}, + "alarmNo": "1370246565", + "alarmDate": "1770002435060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556854", + "createdBy": null, + "createdTime": "2026-02-02 11:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:52", + "echoMap": {}, + "alarmNo": "1370246566", + "alarmDate": "1770002450697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113480079523849", + "createdBy": null, + "createdTime": "2026-02-02 11:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:54", + "echoMap": {}, + "alarmNo": "1370246567", + "alarmDate": "1770002453195", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113484374491334", + "createdBy": null, + "createdTime": "2026-02-02 11:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:43", + "echoMap": {}, + "alarmNo": "1370246568", + "alarmDate": "1770003037382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113484374491365", + "createdBy": null, + "createdTime": "2026-02-02 11:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:49", + "echoMap": {}, + "alarmNo": "1370246569", + "alarmDate": "1770003047543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425866", + "createdBy": null, + "createdTime": "2026-02-02 11:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:49", + "echoMap": {}, + "alarmNo": "1370246570", + "alarmDate": "1770003647594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425919", + "createdBy": null, + "createdTime": "2026-02-02 11:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:22", + "echoMap": {}, + "alarmNo": "1370246571", + "alarmDate": "1770003670468", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425938", + "createdBy": null, + "createdTime": "2026-02-02 11:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:17", + "echoMap": {}, + "alarmNo": "1370246572", + "alarmDate": "1770003676123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425960", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:23", + "echoMap": {}, + "alarmNo": "1370246573", + "alarmDate": "1770003681810", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113501554360357", + "createdBy": null, + "createdTime": "2026-02-02 11:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:51", + "echoMap": {}, + "alarmNo": "1370246574", + "alarmDate": "1770004249636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113501554360418", + "createdBy": null, + "createdTime": "2026-02-02 11:51:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1370246575", + "alarmDate": "1770004269241", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113501554360485", + "createdBy": null, + "createdTime": "2026-02-02 11:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:29", + "echoMap": {}, + "alarmNo": "1370246576", + "alarmDate": "1770004288171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113505849327678", + "createdBy": null, + "createdTime": "2026-02-02 12:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:39", + "echoMap": {}, + "alarmNo": "1370246577", + "alarmDate": "1770004838323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113505849327691", + "createdBy": null, + "createdTime": "2026-02-02 12:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:41", + "echoMap": {}, + "alarmNo": "1370246578", + "alarmDate": "1770004840315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113510144294974", + "createdBy": null, + "createdTime": "2026-02-02 12:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:01", + "echoMap": {}, + "alarmNo": "1370246579", + "alarmDate": "1770004859987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113518734229531", + "createdBy": null, + "createdTime": "2026-02-02 12:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:16", + "echoMap": {}, + "alarmNo": "1370246580", + "alarmDate": "1770005475021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113518734229725", + "createdBy": null, + "createdTime": "2026-02-02 12:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:45", + "echoMap": {}, + "alarmNo": "1370246581", + "alarmDate": "1770006043753", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113518734229741", + "createdBy": null, + "createdTime": "2026-02-02 12:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:50", + "echoMap": {}, + "alarmNo": "1370246582", + "alarmDate": "1770006049506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113523029196852", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1370246583", + "alarmDate": "1770006080955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113527324164312", + "createdBy": null, + "createdTime": "2026-02-02 12:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:01", + "echoMap": {}, + "alarmNo": "1370246584", + "alarmDate": "1770006655269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113527324164327", + "createdBy": null, + "createdTime": "2026-02-02 12:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:00", + "echoMap": {}, + "alarmNo": "1370246585", + "alarmDate": "1770006659019", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113531619131434", + "createdBy": null, + "createdTime": "2026-02-02 12:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:27", + "echoMap": {}, + "alarmNo": "1370246586", + "alarmDate": "1770006686243", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098785", + "createdBy": null, + "createdTime": "2026-02-02 12:38:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:39:51", + "echoMap": {}, + "alarmNo": "1370246587", + "alarmDate": "1770007132417", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098887", + "createdBy": null, + "createdTime": "2026-02-02 12:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:04", + "echoMap": {}, + "alarmNo": "1370246588", + "alarmDate": "1770007262540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098907", + "createdBy": null, + "createdTime": "2026-02-02 12:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:12", + "echoMap": {}, + "alarmNo": "1370246589", + "alarmDate": "1770007270912", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098921", + "createdBy": null, + "createdTime": "2026-02-02 12:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:16", + "echoMap": {}, + "alarmNo": "1370246590", + "alarmDate": "1770007275286", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033375", + "createdBy": null, + "createdTime": "2026-02-02 12:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:33", + "echoMap": {}, + "alarmNo": "1370246591", + "alarmDate": "1770007832263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033405", + "createdBy": null, + "createdTime": "2026-02-02 12:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:46", + "echoMap": {}, + "alarmNo": "1370246592", + "alarmDate": "1770007844722", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033414", + "createdBy": null, + "createdTime": "2026-02-02 12:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:49", + "echoMap": {}, + "alarmNo": "1370246593", + "alarmDate": "1770007848413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033471", + "createdBy": null, + "createdTime": "2026-02-02 12:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:15", + "echoMap": {}, + "alarmNo": "1370246594", + "alarmDate": "1770007873753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113548799000594", + "createdBy": null, + "createdTime": "2026-02-02 12:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:51", + "echoMap": {}, + "alarmNo": "1370246595", + "alarmDate": "1770008092407", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113553093967925", + "createdBy": null, + "createdTime": "2026-02-02 13:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "alarmNo": "1370246596", + "alarmDate": "1770008431913", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060089", + "deviceName": "[329](10)龙溪4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113553093968019", + "createdBy": null, + "createdTime": "2026-02-02 13:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:06", + "echoMap": {}, + "alarmNo": "1370246597", + "alarmDate": "1770008460232", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060027", + "deviceName": "[311](10)龙溪2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902574", + "createdBy": null, + "createdTime": "2026-02-02 13:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:56", + "echoMap": {}, + "alarmNo": "1370246598", + "alarmDate": "1770009055104", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902605", + "createdBy": null, + "createdTime": "2026-02-02 13:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:10", + "echoMap": {}, + "alarmNo": "1370246599", + "alarmDate": "1770009068873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902611", + "createdBy": null, + "createdTime": "2026-02-02 13:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:10", + "echoMap": {}, + "alarmNo": "1370246600", + "alarmDate": "1770009069405", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902632", + "createdBy": null, + "createdTime": "2026-02-02 13:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:18", + "echoMap": {}, + "alarmNo": "1370246601", + "alarmDate": "1770009076891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902674", + "createdBy": null, + "createdTime": "2026-02-02 13:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:47", + "echoMap": {}, + "alarmNo": "1370246602", + "alarmDate": "1770009091053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113570273837089", + "createdBy": null, + "createdTime": "2026-02-02 13:20:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:52", + "echoMap": {}, + "alarmNo": "1370246603", + "alarmDate": "1770009631725", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113570273837186", + "createdBy": null, + "createdTime": "2026-02-02 13:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:04", + "echoMap": {}, + "alarmNo": "1370246604", + "alarmDate": "1770009663801", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113570273837196", + "createdBy": null, + "createdTime": "2026-02-02 13:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:07", + "echoMap": {}, + "alarmNo": "1370246605", + "alarmDate": "1770009666431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113578863771794", + "createdBy": null, + "createdTime": "2026-02-02 13:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:26", + "echoMap": {}, + "alarmNo": "1370246606", + "alarmDate": "1770010284685", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706272", + "createdBy": null, + "createdTime": "2026-02-02 13:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:43", + "echoMap": {}, + "alarmNo": "1370246607", + "alarmDate": "1770010842102", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706328", + "createdBy": null, + "createdTime": "2026-02-02 13:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:00", + "echoMap": {}, + "alarmNo": "1370246608", + "alarmDate": "1770010859386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706338", + "createdBy": null, + "createdTime": "2026-02-02 13:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:04", + "echoMap": {}, + "alarmNo": "1370246609", + "alarmDate": "1770010862794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706401", + "createdBy": null, + "createdTime": "2026-02-02 13:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:46", + "echoMap": {}, + "alarmNo": "1370246610", + "alarmDate": "1770010891987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706439", + "createdBy": null, + "createdTime": "2026-02-02 13:43:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:51", + "echoMap": {}, + "alarmNo": "1370246611", + "alarmDate": "1770011032400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640911", + "createdBy": null, + "createdTime": "2026-02-02 13:50:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:00", + "echoMap": {}, + "alarmNo": "1370246612", + "alarmDate": "1770011459247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640930", + "createdBy": null, + "createdTime": "2026-02-02 13:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:13", + "echoMap": {}, + "alarmNo": "1370246613", + "alarmDate": "1770011466753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640956", + "createdBy": null, + "createdTime": "2026-02-02 13:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:16", + "echoMap": {}, + "alarmNo": "1370246614", + "alarmDate": "1770011475436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640960", + "createdBy": null, + "createdTime": "2026-02-02 13:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:17", + "echoMap": {}, + "alarmNo": "1370246615", + "alarmDate": "1770011475793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113604633575456", + "createdBy": null, + "createdTime": "2026-02-02 14:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:47", + "echoMap": {}, + "alarmNo": "1370246616", + "alarmDate": "1770012046106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113604633575491", + "createdBy": null, + "createdTime": "2026-02-02 14:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:03", + "echoMap": {}, + "alarmNo": "1370246617", + "alarmDate": "1770012061553", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113604633575509", + "createdBy": null, + "createdTime": "2026-02-02 14:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:10", + "echoMap": {}, + "alarmNo": "1370246618", + "alarmDate": "1770012068691", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113608928542777", + "createdBy": null, + "createdTime": "2026-02-02 14:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:38", + "echoMap": {}, + "alarmNo": "1370246619", + "alarmDate": "1770012632034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113613223510059", + "createdBy": null, + "createdTime": "2026-02-02 14:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:01", + "echoMap": {}, + "alarmNo": "1370246620", + "alarmDate": "1770012659686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113617518477334", + "createdBy": null, + "createdTime": "2026-02-02 14:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:51", + "echoMap": {}, + "alarmNo": "1370246621", + "alarmDate": "1770013250097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113617518477342", + "createdBy": null, + "createdTime": "2026-02-02 14:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:53", + "echoMap": {}, + "alarmNo": "1370246622", + "alarmDate": "1770013252078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113617518477374", + "createdBy": null, + "createdTime": "2026-02-02 14:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:02", + "echoMap": {}, + "alarmNo": "1370246623", + "alarmDate": "1770013261474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113621813444641", + "createdBy": null, + "createdTime": "2026-02-02 14:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:29", + "echoMap": {}, + "alarmNo": "1370246624", + "alarmDate": "1770013287741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113621813444814", + "createdBy": null, + "createdTime": "2026-02-02 14:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:42", + "echoMap": {}, + "alarmNo": "1370246625", + "alarmDate": "1770013840545", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113621813444821", + "createdBy": null, + "createdTime": "2026-02-02 14:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:43", + "echoMap": {}, + "alarmNo": "1370246626", + "alarmDate": "1770013842297", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113630403379210", + "createdBy": null, + "createdTime": "2026-02-02 14:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:21", + "echoMap": {}, + "alarmNo": "1370246627", + "alarmDate": "1770013879735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113364115407065", + "createdBy": null, + "createdTime": "2026-02-02 08:34:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:01", + "echoMap": {}, + "alarmNo": "1370246494", + "alarmDate": "1769992453873", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005030014", + "deviceName": "安防箱14", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1005" + }, + { + "id": "723113407065080010", + "createdBy": null, + "createdTime": "2026-02-02 09:33:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:51", + "echoMap": {}, + "alarmNo": "1370246524", + "alarmDate": "1769996032426", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1005030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1005" + }, + { + "id": "723113462899654676", + "createdBy": null, + "createdTime": "2026-02-02 10:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:51", + "echoMap": {}, + "alarmNo": "1370246555", + "alarmDate": "1770001012603", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1005030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1005" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113630403379210", + "createdBy": null, + "createdTime": "2026-02-02 14:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:21", + "echoMap": {}, + "alarmNo": "1370246627", + "alarmDate": "1770013879735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113621813444821", + "createdBy": null, + "createdTime": "2026-02-02 14:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:43", + "echoMap": {}, + "alarmNo": "1370246626", + "alarmDate": "1770013842297", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113621813444814", + "createdBy": null, + "createdTime": "2026-02-02 14:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:42", + "echoMap": {}, + "alarmNo": "1370246625", + "alarmDate": "1770013840545", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113621813444641", + "createdBy": null, + "createdTime": "2026-02-02 14:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:29", + "echoMap": {}, + "alarmNo": "1370246624", + "alarmDate": "1770013287741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113617518477374", + "createdBy": null, + "createdTime": "2026-02-02 14:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:02", + "echoMap": {}, + "alarmNo": "1370246623", + "alarmDate": "1770013261474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113617518477342", + "createdBy": null, + "createdTime": "2026-02-02 14:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:53", + "echoMap": {}, + "alarmNo": "1370246622", + "alarmDate": "1770013252078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113617518477334", + "createdBy": null, + "createdTime": "2026-02-02 14:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:51", + "echoMap": {}, + "alarmNo": "1370246621", + "alarmDate": "1770013250097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113613223510059", + "createdBy": null, + "createdTime": "2026-02-02 14:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:01", + "echoMap": {}, + "alarmNo": "1370246620", + "alarmDate": "1770012659686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113608928542777", + "createdBy": null, + "createdTime": "2026-02-02 14:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:38", + "echoMap": {}, + "alarmNo": "1370246619", + "alarmDate": "1770012632034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113604633575509", + "createdBy": null, + "createdTime": "2026-02-02 14:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:10", + "echoMap": {}, + "alarmNo": "1370246618", + "alarmDate": "1770012068691", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113604633575491", + "createdBy": null, + "createdTime": "2026-02-02 14:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:03", + "echoMap": {}, + "alarmNo": "1370246617", + "alarmDate": "1770012061553", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113604633575456", + "createdBy": null, + "createdTime": "2026-02-02 14:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:47", + "echoMap": {}, + "alarmNo": "1370246616", + "alarmDate": "1770012046106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640960", + "createdBy": null, + "createdTime": "2026-02-02 13:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:17", + "echoMap": {}, + "alarmNo": "1370246615", + "alarmDate": "1770011475793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640956", + "createdBy": null, + "createdTime": "2026-02-02 13:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:16", + "echoMap": {}, + "alarmNo": "1370246614", + "alarmDate": "1770011475436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640930", + "createdBy": null, + "createdTime": "2026-02-02 13:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:13", + "echoMap": {}, + "alarmNo": "1370246613", + "alarmDate": "1770011466753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113596043640911", + "createdBy": null, + "createdTime": "2026-02-02 13:50:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:00", + "echoMap": {}, + "alarmNo": "1370246612", + "alarmDate": "1770011459247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706439", + "createdBy": null, + "createdTime": "2026-02-02 13:43:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:51", + "echoMap": {}, + "alarmNo": "1370246611", + "alarmDate": "1770011032400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706401", + "createdBy": null, + "createdTime": "2026-02-02 13:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:46", + "echoMap": {}, + "alarmNo": "1370246610", + "alarmDate": "1770010891987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706338", + "createdBy": null, + "createdTime": "2026-02-02 13:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:04", + "echoMap": {}, + "alarmNo": "1370246609", + "alarmDate": "1770010862794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706328", + "createdBy": null, + "createdTime": "2026-02-02 13:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:00", + "echoMap": {}, + "alarmNo": "1370246608", + "alarmDate": "1770010859386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113587453706272", + "createdBy": null, + "createdTime": "2026-02-02 13:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:43", + "echoMap": {}, + "alarmNo": "1370246607", + "alarmDate": "1770010842102", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113578863771794", + "createdBy": null, + "createdTime": "2026-02-02 13:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:26", + "echoMap": {}, + "alarmNo": "1370246606", + "alarmDate": "1770010284685", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113570273837196", + "createdBy": null, + "createdTime": "2026-02-02 13:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:07", + "echoMap": {}, + "alarmNo": "1370246605", + "alarmDate": "1770009666431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113570273837186", + "createdBy": null, + "createdTime": "2026-02-02 13:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:04", + "echoMap": {}, + "alarmNo": "1370246604", + "alarmDate": "1770009663801", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113570273837089", + "createdBy": null, + "createdTime": "2026-02-02 13:20:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:52", + "echoMap": {}, + "alarmNo": "1370246603", + "alarmDate": "1770009631725", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902674", + "createdBy": null, + "createdTime": "2026-02-02 13:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:47", + "echoMap": {}, + "alarmNo": "1370246602", + "alarmDate": "1770009091053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902632", + "createdBy": null, + "createdTime": "2026-02-02 13:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:18", + "echoMap": {}, + "alarmNo": "1370246601", + "alarmDate": "1770009076891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902611", + "createdBy": null, + "createdTime": "2026-02-02 13:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:10", + "echoMap": {}, + "alarmNo": "1370246600", + "alarmDate": "1770009069405", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902605", + "createdBy": null, + "createdTime": "2026-02-02 13:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:10", + "echoMap": {}, + "alarmNo": "1370246599", + "alarmDate": "1770009068873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113561683902574", + "createdBy": null, + "createdTime": "2026-02-02 13:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:56", + "echoMap": {}, + "alarmNo": "1370246598", + "alarmDate": "1770009055104", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113553093968019", + "createdBy": null, + "createdTime": "2026-02-02 13:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:06", + "echoMap": {}, + "alarmNo": "1370246597", + "alarmDate": "1770008460232", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060027", + "deviceName": "[311](10)龙溪2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113553093967925", + "createdBy": null, + "createdTime": "2026-02-02 13:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "alarmNo": "1370246596", + "alarmDate": "1770008431913", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060089", + "deviceName": "[329](10)龙溪4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113548799000594", + "createdBy": null, + "createdTime": "2026-02-02 12:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:51", + "echoMap": {}, + "alarmNo": "1370246595", + "alarmDate": "1770008092407", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033471", + "createdBy": null, + "createdTime": "2026-02-02 12:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:15", + "echoMap": {}, + "alarmNo": "1370246594", + "alarmDate": "1770007873753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033414", + "createdBy": null, + "createdTime": "2026-02-02 12:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:49", + "echoMap": {}, + "alarmNo": "1370246593", + "alarmDate": "1770007848413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033405", + "createdBy": null, + "createdTime": "2026-02-02 12:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:46", + "echoMap": {}, + "alarmNo": "1370246592", + "alarmDate": "1770007844722", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113544504033375", + "createdBy": null, + "createdTime": "2026-02-02 12:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:33", + "echoMap": {}, + "alarmNo": "1370246591", + "alarmDate": "1770007832263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098921", + "createdBy": null, + "createdTime": "2026-02-02 12:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:16", + "echoMap": {}, + "alarmNo": "1370246590", + "alarmDate": "1770007275286", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098907", + "createdBy": null, + "createdTime": "2026-02-02 12:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:12", + "echoMap": {}, + "alarmNo": "1370246589", + "alarmDate": "1770007270912", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098887", + "createdBy": null, + "createdTime": "2026-02-02 12:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:04", + "echoMap": {}, + "alarmNo": "1370246588", + "alarmDate": "1770007262540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113535914098785", + "createdBy": null, + "createdTime": "2026-02-02 12:38:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:39:51", + "echoMap": {}, + "alarmNo": "1370246587", + "alarmDate": "1770007132417", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113531619131434", + "createdBy": null, + "createdTime": "2026-02-02 12:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:27", + "echoMap": {}, + "alarmNo": "1370246586", + "alarmDate": "1770006686243", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113527324164327", + "createdBy": null, + "createdTime": "2026-02-02 12:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:00", + "echoMap": {}, + "alarmNo": "1370246585", + "alarmDate": "1770006659019", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113527324164312", + "createdBy": null, + "createdTime": "2026-02-02 12:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:01", + "echoMap": {}, + "alarmNo": "1370246584", + "alarmDate": "1770006655269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113523029196852", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1370246583", + "alarmDate": "1770006080955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113518734229741", + "createdBy": null, + "createdTime": "2026-02-02 12:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:50", + "echoMap": {}, + "alarmNo": "1370246582", + "alarmDate": "1770006049506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113518734229725", + "createdBy": null, + "createdTime": "2026-02-02 12:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:45", + "echoMap": {}, + "alarmNo": "1370246581", + "alarmDate": "1770006043753", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113518734229531", + "createdBy": null, + "createdTime": "2026-02-02 12:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:16", + "echoMap": {}, + "alarmNo": "1370246580", + "alarmDate": "1770005475021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113510144294974", + "createdBy": null, + "createdTime": "2026-02-02 12:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:01", + "echoMap": {}, + "alarmNo": "1370246579", + "alarmDate": "1770004859987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113505849327691", + "createdBy": null, + "createdTime": "2026-02-02 12:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:41", + "echoMap": {}, + "alarmNo": "1370246578", + "alarmDate": "1770004840315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113505849327678", + "createdBy": null, + "createdTime": "2026-02-02 12:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:39", + "echoMap": {}, + "alarmNo": "1370246577", + "alarmDate": "1770004838323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113501554360485", + "createdBy": null, + "createdTime": "2026-02-02 11:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:29", + "echoMap": {}, + "alarmNo": "1370246576", + "alarmDate": "1770004288171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113501554360418", + "createdBy": null, + "createdTime": "2026-02-02 11:51:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1370246575", + "alarmDate": "1770004269241", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113501554360357", + "createdBy": null, + "createdTime": "2026-02-02 11:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:51", + "echoMap": {}, + "alarmNo": "1370246574", + "alarmDate": "1770004249636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425960", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:23", + "echoMap": {}, + "alarmNo": "1370246573", + "alarmDate": "1770003681810", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425938", + "createdBy": null, + "createdTime": "2026-02-02 11:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:17", + "echoMap": {}, + "alarmNo": "1370246572", + "alarmDate": "1770003676123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425919", + "createdBy": null, + "createdTime": "2026-02-02 11:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:22", + "echoMap": {}, + "alarmNo": "1370246571", + "alarmDate": "1770003670468", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113492964425866", + "createdBy": null, + "createdTime": "2026-02-02 11:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:49", + "echoMap": {}, + "alarmNo": "1370246570", + "alarmDate": "1770003647594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113484374491365", + "createdBy": null, + "createdTime": "2026-02-02 11:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:49", + "echoMap": {}, + "alarmNo": "1370246569", + "alarmDate": "1770003047543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113484374491334", + "createdBy": null, + "createdTime": "2026-02-02 11:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:43", + "echoMap": {}, + "alarmNo": "1370246568", + "alarmDate": "1770003037382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113480079523849", + "createdBy": null, + "createdTime": "2026-02-02 11:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:54", + "echoMap": {}, + "alarmNo": "1370246567", + "alarmDate": "1770002453195", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556854", + "createdBy": null, + "createdTime": "2026-02-02 11:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:52", + "echoMap": {}, + "alarmNo": "1370246566", + "alarmDate": "1770002450697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556802", + "createdBy": null, + "createdTime": "2026-02-02 11:20:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:12", + "echoMap": {}, + "alarmNo": "1370246565", + "alarmDate": "1770002435060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556756", + "createdBy": null, + "createdTime": "2026-02-02 11:17:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:51", + "echoMap": {}, + "alarmNo": "1370246564", + "alarmDate": "1770002272377", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556616", + "createdBy": null, + "createdTime": "2026-02-02 11:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:08", + "echoMap": {}, + "alarmNo": "1370246563", + "alarmDate": "1770001866724", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113475784556599", + "createdBy": null, + "createdTime": "2026-02-02 11:11:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:09", + "echoMap": {}, + "alarmNo": "1370246562", + "alarmDate": "1770001861724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113471489589277", + "createdBy": null, + "createdTime": "2026-02-02 11:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:45", + "echoMap": {}, + "alarmNo": "1370246561", + "alarmDate": "1770001831453", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622066", + "createdBy": null, + "createdTime": "2026-02-02 11:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:15", + "echoMap": {}, + "alarmNo": "1370246560", + "alarmDate": "1770001269691", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060027", + "deviceName": "[311](10)龙溪2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622033", + "createdBy": null, + "createdTime": "2026-02-02 11:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:58", + "echoMap": {}, + "alarmNo": "1370246559", + "alarmDate": "1770001256890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622024", + "createdBy": null, + "createdTime": "2026-02-02 11:00:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:56", + "echoMap": {}, + "alarmNo": "1370246558", + "alarmDate": "1770001254712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194622011", + "createdBy": null, + "createdTime": "2026-02-02 11:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:51", + "echoMap": {}, + "alarmNo": "1370246557", + "alarmDate": "1770001250477", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113467194621968", + "createdBy": null, + "createdTime": "2026-02-02 11:00:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:33", + "echoMap": {}, + "alarmNo": "1370246556", + "alarmDate": "1770001231315", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113462899654676", + "createdBy": null, + "createdTime": "2026-02-02 10:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:51", + "echoMap": {}, + "alarmNo": "1370246555", + "alarmDate": "1770001012603", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1005030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1005" + }, + { + "id": "723113458604687555", + "createdBy": null, + "createdTime": "2026-02-02 10:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:22", + "echoMap": {}, + "alarmNo": "1370246554", + "alarmDate": "1770000681398", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687497", + "createdBy": null, + "createdTime": "2026-02-02 10:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:01", + "echoMap": {}, + "alarmNo": "1370246553", + "alarmDate": "1770000659846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687486", + "createdBy": null, + "createdTime": "2026-02-02 10:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:10", + "echoMap": {}, + "alarmNo": "1370246552", + "alarmDate": "1770000657117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687476", + "createdBy": null, + "createdTime": "2026-02-02 10:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:55", + "echoMap": {}, + "alarmNo": "1370246551", + "alarmDate": "1770000654131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687429", + "createdBy": null, + "createdTime": "2026-02-02 10:50:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:34", + "echoMap": {}, + "alarmNo": "1370246550", + "alarmDate": "1770000633159", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113458604687425", + "createdBy": null, + "createdTime": "2026-02-02 10:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:33", + "echoMap": {}, + "alarmNo": "1370246549", + "alarmDate": "1770000632480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113454309720092", + "createdBy": null, + "createdTime": "2026-02-02 10:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:51", + "echoMap": {}, + "alarmNo": "1370246548", + "alarmDate": "1770000292564", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113450014753020", + "createdBy": null, + "createdTime": "2026-02-02 10:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:28", + "echoMap": {}, + "alarmNo": "1370246547", + "alarmDate": "1770000086853", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113450014752991", + "createdBy": null, + "createdTime": "2026-02-02 10:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:24", + "echoMap": {}, + "alarmNo": "1370246546", + "alarmDate": "1770000077107", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060027", + "deviceName": "[311](10)龙溪2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113450014752878", + "createdBy": null, + "createdTime": "2026-02-02 10:40:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:37", + "echoMap": {}, + "alarmNo": "1370246545", + "alarmDate": "1770000035814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113445719785490", + "createdBy": null, + "createdTime": "2026-02-02 10:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:24", + "echoMap": {}, + "alarmNo": "1370246544", + "alarmDate": "1769999482648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113441424818454", + "createdBy": null, + "createdTime": "2026-02-02 10:31:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:03", + "echoMap": {}, + "alarmNo": "1370246543", + "alarmDate": "1769999462028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113441424818444", + "createdBy": null, + "createdTime": "2026-02-02 10:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:00", + "echoMap": {}, + "alarmNo": "1370246542", + "alarmDate": "1769999458968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113437129850946", + "createdBy": null, + "createdTime": "2026-02-02 10:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:03", + "echoMap": {}, + "alarmNo": "1370246541", + "alarmDate": "1769998862105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113437129850938", + "createdBy": null, + "createdTime": "2026-02-02 10:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:01", + "echoMap": {}, + "alarmNo": "1370246540", + "alarmDate": "1769998860386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113437129850923", + "createdBy": null, + "createdTime": "2026-02-02 10:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:57", + "echoMap": {}, + "alarmNo": "1370246539", + "alarmDate": "1769998856295", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113432834883893", + "createdBy": null, + "createdTime": "2026-02-02 10:20:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:39", + "echoMap": {}, + "alarmNo": "1370246538", + "alarmDate": "1769998838393", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113432834883713", + "createdBy": null, + "createdTime": "2026-02-02 10:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:28", + "echoMap": {}, + "alarmNo": "1370246537", + "alarmDate": "1769998286498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113432834883655", + "createdBy": null, + "createdTime": "2026-02-02 10:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:10", + "echoMap": {}, + "alarmNo": "1370246536", + "alarmDate": "1769998264213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113424244949260", + "createdBy": null, + "createdTime": "2026-02-02 10:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:28", + "echoMap": {}, + "alarmNo": "1370246535", + "alarmDate": "1769997686846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113424244949213", + "createdBy": null, + "createdTime": "2026-02-02 10:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:10", + "echoMap": {}, + "alarmNo": "1370246534", + "alarmDate": "1769997669256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113424244949198", + "createdBy": null, + "createdTime": "2026-02-02 10:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:05", + "echoMap": {}, + "alarmNo": "1370246533", + "alarmDate": "1769997664079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113419949981731", + "createdBy": null, + "createdTime": "2026-02-02 09:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:59", + "echoMap": {}, + "alarmNo": "1370246532", + "alarmDate": "1769997082725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113419949981712", + "createdBy": null, + "createdTime": "2026-02-02 09:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:17", + "echoMap": {}, + "alarmNo": "1370246531", + "alarmDate": "1769997076458", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113415655014705", + "createdBy": null, + "createdTime": "2026-02-02 09:51:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:02", + "echoMap": {}, + "alarmNo": "1370246530", + "alarmDate": "1769997061228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113415655014485", + "createdBy": null, + "createdTime": "2026-02-02 09:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:31", + "echoMap": {}, + "alarmNo": "1370246529", + "alarmDate": "1769996489822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113415655014416", + "createdBy": null, + "createdTime": "2026-02-02 09:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:23", + "echoMap": {}, + "alarmNo": "1370246528", + "alarmDate": "1769996465430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113411360047174", + "createdBy": null, + "createdTime": "2026-02-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:56", + "echoMap": {}, + "alarmNo": "1370246527", + "alarmDate": "1769996455356", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113411360047106", + "createdBy": null, + "createdTime": "2026-02-02 09:40:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:57", + "echoMap": {}, + "alarmNo": "1370246526", + "alarmDate": "1769996435632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060045", + "deviceName": "[406](10)龙溪3#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065080048", + "createdBy": null, + "createdTime": "2026-02-02 09:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:51", + "echoMap": {}, + "alarmNo": "1370246525", + "alarmDate": "1769996152405", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065080010", + "createdBy": null, + "createdTime": "2026-02-02 09:33:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:51", + "echoMap": {}, + "alarmNo": "1370246524", + "alarmDate": "1769996032426", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1005030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1005" + }, + { + "id": "723113407065079973", + "createdBy": null, + "createdTime": "2026-02-02 09:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:51", + "echoMap": {}, + "alarmNo": "1370246523", + "alarmDate": "1769995912397", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079965", + "createdBy": null, + "createdTime": "2026-02-02 09:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:29", + "echoMap": {}, + "alarmNo": "1370246522", + "alarmDate": "1769995888045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079938", + "createdBy": null, + "createdTime": "2026-02-02 09:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:18", + "echoMap": {}, + "alarmNo": "1370246521", + "alarmDate": "1769995876541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079922", + "createdBy": null, + "createdTime": "2026-02-02 09:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:11", + "echoMap": {}, + "alarmNo": "1370246520", + "alarmDate": "1769995870441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079898", + "createdBy": null, + "createdTime": "2026-02-02 09:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:05", + "echoMap": {}, + "alarmNo": "1370246519", + "alarmDate": "1769995864141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079851", + "createdBy": null, + "createdTime": "2026-02-02 09:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:46", + "echoMap": {}, + "alarmNo": "1370246518", + "alarmDate": "1769995844889", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113407065079832", + "createdBy": null, + "createdTime": "2026-02-02 09:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:46", + "echoMap": {}, + "alarmNo": "1370246517", + "alarmDate": "1769995839613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145440", + "createdBy": null, + "createdTime": "2026-02-02 09:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:32", + "echoMap": {}, + "alarmNo": "1370246516", + "alarmDate": "1769995285574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060158", + "deviceName": "[706](10)龙溪虹火上行方向存车线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145390", + "createdBy": null, + "createdTime": "2026-02-02 09:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:41", + "echoMap": {}, + "alarmNo": "1370246515", + "alarmDate": "1769995269862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145365", + "createdBy": null, + "createdTime": "2026-02-02 09:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:00", + "echoMap": {}, + "alarmNo": "1370246514", + "alarmDate": "1769995259357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113398475145336", + "createdBy": null, + "createdTime": "2026-02-02 09:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:51", + "echoMap": {}, + "alarmNo": "1370246513", + "alarmDate": "1769995250175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210928", + "createdBy": null, + "createdTime": "2026-02-02 09:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:58", + "echoMap": {}, + "alarmNo": "1370246512", + "alarmDate": "1769994682595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210925", + "createdBy": null, + "createdTime": "2026-02-02 09:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:24", + "echoMap": {}, + "alarmNo": "1370246511", + "alarmDate": "1769994682529", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210915", + "createdBy": null, + "createdTime": "2026-02-02 09:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:22", + "echoMap": {}, + "alarmNo": "1370246510", + "alarmDate": "1769994680482", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210821", + "createdBy": null, + "createdTime": "2026-02-02 09:10:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:37", + "echoMap": {}, + "alarmNo": "1370246509", + "alarmDate": "1769994635830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210811", + "createdBy": null, + "createdTime": "2026-02-02 09:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:34", + "echoMap": {}, + "alarmNo": "1370246508", + "alarmDate": "1769994632903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210693", + "createdBy": null, + "createdTime": "2026-02-02 09:03:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:51", + "echoMap": {}, + "alarmNo": "1370246507", + "alarmDate": "1769994232381", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113389885210632", + "createdBy": null, + "createdTime": "2026-02-02 09:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:25", + "echoMap": {}, + "alarmNo": "1370246506", + "alarmDate": "1769994083681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113385590243366", + "createdBy": null, + "createdTime": "2026-02-02 09:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:03", + "echoMap": {}, + "alarmNo": "1370246505", + "alarmDate": "1769994062228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276376", + "createdBy": null, + "createdTime": "2026-02-02 09:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:51", + "echoMap": {}, + "alarmNo": "1370246504", + "alarmDate": "1769994037663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276159", + "createdBy": null, + "createdTime": "2026-02-02 08:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:27", + "echoMap": {}, + "alarmNo": "1370246503", + "alarmDate": "1769993474341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060045", + "deviceName": "[406](10)龙溪3#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276112", + "createdBy": null, + "createdTime": "2026-02-02 08:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:01", + "echoMap": {}, + "alarmNo": "1370246502", + "alarmDate": "1769993459964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276101", + "createdBy": null, + "createdTime": "2026-02-02 08:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:58", + "echoMap": {}, + "alarmNo": "1370246501", + "alarmDate": "1769993457407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113381295276091", + "createdBy": null, + "createdTime": "2026-02-02 08:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:56", + "echoMap": {}, + "alarmNo": "1370246500", + "alarmDate": "1769993455493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113377000308798", + "createdBy": null, + "createdTime": "2026-02-02 08:50:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:22", + "echoMap": {}, + "alarmNo": "1370246499", + "alarmDate": "1769993433946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341549", + "createdBy": null, + "createdTime": "2026-02-02 08:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:15", + "echoMap": {}, + "alarmNo": "1370246498", + "alarmDate": "1769992869834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341483", + "createdBy": null, + "createdTime": "2026-02-02 08:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:44", + "echoMap": {}, + "alarmNo": "1370246497", + "alarmDate": "1769992843114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341469", + "createdBy": null, + "createdTime": "2026-02-02 08:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:41", + "echoMap": {}, + "alarmNo": "1370246496", + "alarmDate": "1769992839712", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113372705341459", + "createdBy": null, + "createdTime": "2026-02-02 08:40:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:38", + "echoMap": {}, + "alarmNo": "1370246495", + "alarmDate": "1769992836708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115407065", + "createdBy": null, + "createdTime": "2026-02-02 08:34:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:01", + "echoMap": {}, + "alarmNo": "1370246494", + "alarmDate": "1769992453873", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005030014", + "deviceName": "安防箱14", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1005" + }, + { + "id": "723113364115407022", + "createdBy": null, + "createdTime": "2026-02-02 08:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:32", + "echoMap": {}, + "alarmNo": "1370246493", + "alarmDate": "1769992290924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115407003", + "createdBy": null, + "createdTime": "2026-02-02 08:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:26", + "echoMap": {}, + "alarmNo": "1370246492", + "alarmDate": "1769992285003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115406984", + "createdBy": null, + "createdTime": "2026-02-02 08:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:52", + "echoMap": {}, + "alarmNo": "1370246491", + "alarmDate": "1769992279593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113364115406936", + "createdBy": null, + "createdTime": "2026-02-02 08:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:02", + "echoMap": {}, + "alarmNo": "1370246490", + "alarmDate": "1769992261297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472393", + "createdBy": null, + "createdTime": "2026-02-02 08:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:19", + "echoMap": {}, + "alarmNo": "1370246489", + "alarmDate": "1769991678059", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472367", + "createdBy": null, + "createdTime": "2026-02-02 08:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:12", + "echoMap": {}, + "alarmNo": "1370246488", + "alarmDate": "1769991671042", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472321", + "createdBy": null, + "createdTime": "2026-02-02 08:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:58", + "echoMap": {}, + "alarmNo": "1370246487", + "alarmDate": "1769991656637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472314", + "createdBy": null, + "createdTime": "2026-02-02 08:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:08", + "echoMap": {}, + "alarmNo": "1370246486", + "alarmDate": "1769991655302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113355525472262", + "createdBy": null, + "createdTime": "2026-02-02 08:20:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:33", + "echoMap": {}, + "alarmNo": "1370246485", + "alarmDate": "1769991631344", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537868", + "createdBy": null, + "createdTime": "2026-02-02 08:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:51", + "echoMap": {}, + "alarmNo": "1370246484", + "alarmDate": "1769991112443", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537832", + "createdBy": null, + "createdTime": "2026-02-02 08:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:23", + "echoMap": {}, + "alarmNo": "1370246483", + "alarmDate": "1769991077093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537816", + "createdBy": null, + "createdTime": "2026-02-02 08:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:18", + "echoMap": {}, + "alarmNo": "1370246482", + "alarmDate": "1769991072786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060158", + "deviceName": "[706](10)龙溪虹火上行方向存车线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537746", + "createdBy": null, + "createdTime": "2026-02-02 08:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:51", + "echoMap": {}, + "alarmNo": "1370246481", + "alarmDate": "1769991050331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537729", + "createdBy": null, + "createdTime": "2026-02-02 08:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:04", + "echoMap": {}, + "alarmNo": "1370246480", + "alarmDate": "1769991045134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113346935537677", + "createdBy": null, + "createdTime": "2026-02-02 08:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:34", + "echoMap": {}, + "alarmNo": "1370246479", + "alarmDate": "1769991031079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603203", + "createdBy": null, + "createdTime": "2026-02-02 08:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:18", + "echoMap": {}, + "alarmNo": "1370246478", + "alarmDate": "1769990476616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603143", + "createdBy": null, + "createdTime": "2026-02-02 08:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:59", + "echoMap": {}, + "alarmNo": "1370246477", + "alarmDate": "1769990458314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603116", + "createdBy": null, + "createdTime": "2026-02-02 08:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:52", + "echoMap": {}, + "alarmNo": "1370246476", + "alarmDate": "1769990450531", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113338345603096", + "createdBy": null, + "createdTime": "2026-02-02 08:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:51", + "echoMap": {}, + "alarmNo": "1370246475", + "alarmDate": "1769990445017", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113334050635789", + "createdBy": null, + "createdTime": "2026-02-02 07:55:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:51", + "echoMap": {}, + "alarmNo": "1370246474", + "alarmDate": "1769990152493", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668661", + "createdBy": null, + "createdTime": "2026-02-02 07:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:21", + "echoMap": {}, + "alarmNo": "1370246473", + "alarmDate": "1769989883549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668619", + "createdBy": null, + "createdTime": "2026-02-02 07:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:23", + "echoMap": {}, + "alarmNo": "1370246472", + "alarmDate": "1769989871085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668573", + "createdBy": null, + "createdTime": "2026-02-02 07:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:11", + "echoMap": {}, + "alarmNo": "1370246471", + "alarmDate": "1769989857554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668553", + "createdBy": null, + "createdTime": "2026-02-02 07:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:51", + "echoMap": {}, + "alarmNo": "1370246470", + "alarmDate": "1769989849673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113329755668512", + "createdBy": null, + "createdTime": "2026-02-02 07:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:35", + "echoMap": {}, + "alarmNo": "1370246469", + "alarmDate": "1769989831926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165734045", + "createdBy": null, + "createdTime": "2026-02-02 07:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:16", + "echoMap": {}, + "alarmNo": "1370246468", + "alarmDate": "1769989274973", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165734008", + "createdBy": null, + "createdTime": "2026-02-02 07:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:12", + "echoMap": {}, + "alarmNo": "1370246467", + "alarmDate": "1769989265805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165733975", + "createdBy": null, + "createdTime": "2026-02-02 07:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:59", + "echoMap": {}, + "alarmNo": "1370246466", + "alarmDate": "1769989257512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113321165733913", + "createdBy": null, + "createdTime": "2026-02-02 07:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:48", + "echoMap": {}, + "alarmNo": "1370246465", + "alarmDate": "1769989241773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799423", + "createdBy": null, + "createdTime": "2026-02-02 07:31:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:24", + "echoMap": {}, + "alarmNo": "1370246464", + "alarmDate": "1769988677532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799411", + "createdBy": null, + "createdTime": "2026-02-02 07:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:16", + "echoMap": {}, + "alarmNo": "1370246463", + "alarmDate": "1769988674669", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799402", + "createdBy": null, + "createdTime": "2026-02-02 07:31:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:14", + "echoMap": {}, + "alarmNo": "1370246462", + "alarmDate": "1769988672793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799336", + "createdBy": null, + "createdTime": "2026-02-02 07:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:00", + "echoMap": {}, + "alarmNo": "1370246461", + "alarmDate": "1769988653520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113312575799312", + "createdBy": null, + "createdTime": "2026-02-02 07:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:18", + "echoMap": {}, + "alarmNo": "1370246460", + "alarmDate": "1769988645990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113303985864876", + "createdBy": null, + "createdTime": "2026-02-02 07:23:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:24:51", + "echoMap": {}, + "alarmNo": "1370246459", + "alarmDate": "1769988232396", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113303985864837", + "createdBy": null, + "createdTime": "2026-02-02 07:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:42", + "echoMap": {}, + "alarmNo": "1370246458", + "alarmDate": "1769988090457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113303985864725", + "createdBy": null, + "createdTime": "2026-02-02 07:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:18", + "echoMap": {}, + "alarmNo": "1370246457", + "alarmDate": "1769988065387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060158", + "deviceName": "[706](10)龙溪虹火上行方向存车线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897447", + "createdBy": null, + "createdTime": "2026-02-02 07:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:57", + "echoMap": {}, + "alarmNo": "1370246456", + "alarmDate": "1769988051299", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897443", + "createdBy": null, + "createdTime": "2026-02-02 07:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:35", + "echoMap": {}, + "alarmNo": "1370246455", + "alarmDate": "1769988050814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897431", + "createdBy": null, + "createdTime": "2026-02-02 07:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:48", + "echoMap": {}, + "alarmNo": "1370246454", + "alarmDate": "1769988046799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897423", + "createdBy": null, + "createdTime": "2026-02-02 07:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:46", + "echoMap": {}, + "alarmNo": "1370246453", + "alarmDate": "1769988045271", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113299690897411", + "createdBy": null, + "createdTime": "2026-02-02 07:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:42", + "echoMap": {}, + "alarmNo": "1370246452", + "alarmDate": "1769988041074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113295395930176", + "createdBy": null, + "createdTime": "2026-02-02 07:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:27", + "echoMap": {}, + "alarmNo": "1370246451", + "alarmDate": "1769987485866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113295395930151", + "createdBy": null, + "createdTime": "2026-02-02 07:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:27", + "echoMap": {}, + "alarmNo": "1370246450", + "alarmDate": "1769987481183", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113295395930137", + "createdBy": null, + "createdTime": "2026-02-02 07:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:18", + "echoMap": {}, + "alarmNo": "1370246449", + "alarmDate": "1769987478048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113291100962869", + "createdBy": null, + "createdTime": "2026-02-02 07:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:06", + "echoMap": {}, + "alarmNo": "1370246448", + "alarmDate": "1769987464705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113291100962837", + "createdBy": null, + "createdTime": "2026-02-02 07:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:59", + "echoMap": {}, + "alarmNo": "1370246447", + "alarmDate": "1769987457711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113286805995582", + "createdBy": null, + "createdTime": "2026-02-02 07:02:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:51", + "echoMap": {}, + "alarmNo": "1370246446", + "alarmDate": "1769986972402", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113286805995541", + "createdBy": null, + "createdTime": "2026-02-02 07:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:06", + "echoMap": {}, + "alarmNo": "1370246445", + "alarmDate": "1769986883816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113286805995525", + "createdBy": null, + "createdTime": "2026-02-02 07:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:21", + "echoMap": {}, + "alarmNo": "1370246444", + "alarmDate": "1769986879821", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113282511028281", + "createdBy": null, + "createdTime": "2026-02-02 07:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:15", + "echoMap": {}, + "alarmNo": "1370246443", + "alarmDate": "1769986874035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113282511028250", + "createdBy": null, + "createdTime": "2026-02-02 07:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:07", + "echoMap": {}, + "alarmNo": "1370246442", + "alarmDate": "1769986865550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093694", + "createdBy": null, + "createdTime": "2026-02-02 06:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:06", + "echoMap": {}, + "alarmNo": "1370246441", + "alarmDate": "1769986290559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093689", + "createdBy": null, + "createdTime": "2026-02-02 06:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:39", + "echoMap": {}, + "alarmNo": "1370246440", + "alarmDate": "1769986289350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093676", + "createdBy": null, + "createdTime": "2026-02-02 06:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:28", + "echoMap": {}, + "alarmNo": "1370246439", + "alarmDate": "1769986287173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113273921093662", + "createdBy": null, + "createdTime": "2026-02-02 06:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:25", + "echoMap": {}, + "alarmNo": "1370246438", + "alarmDate": "1769986283599", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126577", + "createdBy": null, + "createdTime": "2026-02-02 06:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:18", + "echoMap": {}, + "alarmNo": "1370246437", + "alarmDate": "1769986272462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126512", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:56", + "echoMap": {}, + "alarmNo": "1370246436", + "alarmDate": "1769986254973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126508", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:56", + "echoMap": {}, + "alarmNo": "1370246435", + "alarmDate": "1769986254723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126477", + "createdBy": null, + "createdTime": "2026-02-02 06:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:00", + "echoMap": {}, + "alarmNo": "1370246434", + "alarmDate": "1769986247449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113269626126461", + "createdBy": null, + "createdTime": "2026-02-02 06:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:40", + "echoMap": {}, + "alarmNo": "1370246433", + "alarmDate": "1769986242889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060055", + "deviceName": "[321](10)龙溪3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191977", + "createdBy": null, + "createdTime": "2026-02-02 06:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:21", + "echoMap": {}, + "alarmNo": "1370246432", + "alarmDate": "1769985674836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191964", + "createdBy": null, + "createdTime": "2026-02-02 06:41:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:13", + "echoMap": {}, + "alarmNo": "1370246431", + "alarmDate": "1769985671955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191885", + "createdBy": null, + "createdTime": "2026-02-02 06:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:52", + "echoMap": {}, + "alarmNo": "1370246430", + "alarmDate": "1769985650878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191882", + "createdBy": null, + "createdTime": "2026-02-02 06:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:57", + "echoMap": {}, + "alarmNo": "1370246429", + "alarmDate": "1769985650724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113261036191817", + "createdBy": null, + "createdTime": "2026-02-02 06:40:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:35", + "echoMap": {}, + "alarmNo": "1370246428", + "alarmDate": "1769985631218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257378", + "createdBy": null, + "createdTime": "2026-02-02 06:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:33", + "echoMap": {}, + "alarmNo": "1370246427", + "alarmDate": "1769985079580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257342", + "createdBy": null, + "createdTime": "2026-02-02 06:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:16", + "echoMap": {}, + "alarmNo": "1370246426", + "alarmDate": "1769985074643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257332", + "createdBy": null, + "createdTime": "2026-02-02 06:31:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:24", + "echoMap": {}, + "alarmNo": "1370246425", + "alarmDate": "1769985072002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257284", + "createdBy": null, + "createdTime": "2026-02-02 06:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:58", + "echoMap": {}, + "alarmNo": "1370246424", + "alarmDate": "1769985056890", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257275", + "createdBy": null, + "createdTime": "2026-02-02 06:30:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:08", + "echoMap": {}, + "alarmNo": "1370246423", + "alarmDate": "1769985055614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257254", + "createdBy": null, + "createdTime": "2026-02-02 06:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:51", + "echoMap": {}, + "alarmNo": "1370246422", + "alarmDate": "1769985049702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113252446257247", + "createdBy": null, + "createdTime": "2026-02-02 06:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:00", + "echoMap": {}, + "alarmNo": "1370246421", + "alarmDate": "1769985047905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322775", + "createdBy": null, + "createdTime": "2026-02-02 06:21:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:38", + "echoMap": {}, + "alarmNo": "1370246420", + "alarmDate": "1769984476308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322764", + "createdBy": null, + "createdTime": "2026-02-02 06:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:15", + "echoMap": {}, + "alarmNo": "1370246419", + "alarmDate": "1769984473876", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322756", + "createdBy": null, + "createdTime": "2026-02-02 06:21:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:13", + "echoMap": {}, + "alarmNo": "1370246418", + "alarmDate": "1769984472413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322745", + "createdBy": null, + "createdTime": "2026-02-02 06:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:11", + "echoMap": {}, + "alarmNo": "1370246417", + "alarmDate": "1769984470065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113243856322628", + "createdBy": null, + "createdTime": "2026-02-02 06:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:58", + "echoMap": {}, + "alarmNo": "1370246416", + "alarmDate": "1769984445261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388170", + "createdBy": null, + "createdTime": "2026-02-02 06:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:33", + "echoMap": {}, + "alarmNo": "1370246415", + "alarmDate": "1769983881070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388159", + "createdBy": null, + "createdTime": "2026-02-02 06:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:20", + "echoMap": {}, + "alarmNo": "1370246414", + "alarmDate": "1769983879163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388131", + "createdBy": null, + "createdTime": "2026-02-02 06:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:12", + "echoMap": {}, + "alarmNo": "1370246413", + "alarmDate": "1769983871428", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388123", + "createdBy": null, + "createdTime": "2026-02-02 06:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:11", + "echoMap": {}, + "alarmNo": "1370246412", + "alarmDate": "1769983869992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266388017", + "createdBy": null, + "createdTime": "2026-02-02 06:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:02", + "echoMap": {}, + "alarmNo": "1370246411", + "alarmDate": "1769983849077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113235266387971", + "createdBy": null, + "createdTime": "2026-02-02 06:10:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:57", + "echoMap": {}, + "alarmNo": "1370246410", + "alarmDate": "1769983838263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113230971420728", + "createdBy": null, + "createdTime": "2026-02-02 06:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:38", + "echoMap": {}, + "alarmNo": "1370246409", + "alarmDate": "1769983837013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453531", + "createdBy": null, + "createdTime": "2026-02-02 06:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:31", + "echoMap": {}, + "alarmNo": "1370246408", + "alarmDate": "1769983289755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453505", + "createdBy": null, + "createdTime": "2026-02-02 06:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:25", + "echoMap": {}, + "alarmNo": "1370246407", + "alarmDate": "1769983284192", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453477", + "createdBy": null, + "createdTime": "2026-02-02 06:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:37", + "echoMap": {}, + "alarmNo": "1370246406", + "alarmDate": "1769983277765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453423", + "createdBy": null, + "createdTime": "2026-02-02 06:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:06", + "echoMap": {}, + "alarmNo": "1370246405", + "alarmDate": "1769983264990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113226676453414", + "createdBy": null, + "createdTime": "2026-02-02 06:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:05", + "echoMap": {}, + "alarmNo": "1370246404", + "alarmDate": "1769983263841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113222381486150", + "createdBy": null, + "createdTime": "2026-02-02 06:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:13", + "echoMap": {}, + "alarmNo": "1370246403", + "alarmDate": "1769983260039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113222381486122", + "createdBy": null, + "createdTime": "2026-02-02 06:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:06", + "echoMap": {}, + "alarmNo": "1370246402", + "alarmDate": "1769983253757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086519053", + "createdBy": null, + "createdTime": "2026-02-02 06:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:42", + "echoMap": {}, + "alarmNo": "1370246401", + "alarmDate": "1769983241186", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086518847", + "createdBy": null, + "createdTime": "2026-02-02 05:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:35", + "echoMap": {}, + "alarmNo": "1370246400", + "alarmDate": "1769982687781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086518826", + "createdBy": null, + "createdTime": "2026-02-02 05:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:24", + "echoMap": {}, + "alarmNo": "1370246399", + "alarmDate": "1769982683344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113218086518791", + "createdBy": null, + "createdTime": "2026-02-02 05:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:42", + "echoMap": {}, + "alarmNo": "1370246398", + "alarmDate": "1769982675519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113213791551562", + "createdBy": null, + "createdTime": "2026-02-02 05:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:15", + "echoMap": {}, + "alarmNo": "1370246397", + "alarmDate": "1769982673612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584418", + "createdBy": null, + "createdTime": "2026-02-02 05:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:02", + "echoMap": {}, + "alarmNo": "1370246396", + "alarmDate": "1769982650509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584373", + "createdBy": null, + "createdTime": "2026-02-02 05:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:42", + "echoMap": {}, + "alarmNo": "1370246395", + "alarmDate": "1769982640715", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584363", + "createdBy": null, + "createdTime": "2026-02-02 05:50:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:40", + "echoMap": {}, + "alarmNo": "1370246394", + "alarmDate": "1769982638598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584347", + "createdBy": null, + "createdTime": "2026-02-02 05:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:36", + "echoMap": {}, + "alarmNo": "1370246393", + "alarmDate": "1769982635356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584337", + "createdBy": null, + "createdTime": "2026-02-02 05:50:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:38", + "echoMap": {}, + "alarmNo": "1370246392", + "alarmDate": "1769982633634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113209496584325", + "createdBy": null, + "createdTime": "2026-02-02 05:50:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:31", + "echoMap": {}, + "alarmNo": "1370246391", + "alarmDate": "1769982630401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113205201616987", + "createdBy": null, + "createdTime": "2026-02-02 05:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:28", + "echoMap": {}, + "alarmNo": "1370246390", + "alarmDate": "1769982087214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113205201616981", + "createdBy": null, + "createdTime": "2026-02-02 05:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:27", + "echoMap": {}, + "alarmNo": "1370246389", + "alarmDate": "1769982086469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113205201616908", + "createdBy": null, + "createdTime": "2026-02-02 05:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:24", + "echoMap": {}, + "alarmNo": "1370246388", + "alarmDate": "1769982071251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649793", + "createdBy": null, + "createdTime": "2026-02-02 05:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:59", + "echoMap": {}, + "alarmNo": "1370246387", + "alarmDate": "1769982057498", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649782", + "createdBy": null, + "createdTime": "2026-02-02 05:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:57", + "echoMap": {}, + "alarmNo": "1370246386", + "alarmDate": "1769982056147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649729", + "createdBy": null, + "createdTime": "2026-02-02 05:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:59", + "echoMap": {}, + "alarmNo": "1370246385", + "alarmDate": "1769982046275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649667", + "createdBy": null, + "createdTime": "2026-02-02 05:40:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:37", + "echoMap": {}, + "alarmNo": "1370246384", + "alarmDate": "1769982031537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060070", + "deviceName": "[304](10)龙溪1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113200906649661", + "createdBy": null, + "createdTime": "2026-02-02 05:40:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:35", + "echoMap": {}, + "alarmNo": "1370246383", + "alarmDate": "1769982030217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715233", + "createdBy": null, + "createdTime": "2026-02-02 05:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:22", + "echoMap": {}, + "alarmNo": "1370246382", + "alarmDate": "1769981481229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715226", + "createdBy": null, + "createdTime": "2026-02-02 05:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:21", + "echoMap": {}, + "alarmNo": "1370246381", + "alarmDate": "1769981480109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715191", + "createdBy": null, + "createdTime": "2026-02-02 05:31:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:20", + "echoMap": {}, + "alarmNo": "1370246380", + "alarmDate": "1769981474108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715167", + "createdBy": null, + "createdTime": "2026-02-02 05:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:28", + "echoMap": {}, + "alarmNo": "1370246379", + "alarmDate": "1769981469005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715128", + "createdBy": null, + "createdTime": "2026-02-02 05:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:00", + "echoMap": {}, + "alarmNo": "1370246378", + "alarmDate": "1769981459335", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715077", + "createdBy": null, + "createdTime": "2026-02-02 05:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:48", + "echoMap": {}, + "alarmNo": "1370246377", + "alarmDate": "1769981446605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715063", + "createdBy": null, + "createdTime": "2026-02-02 05:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:56", + "echoMap": {}, + "alarmNo": "1370246376", + "alarmDate": "1769981444051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113192316715046", + "createdBy": null, + "createdTime": "2026-02-02 05:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:51", + "echoMap": {}, + "alarmNo": "1370246375", + "alarmDate": "1769981438647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780576", + "createdBy": null, + "createdTime": "2026-02-02 05:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:24", + "echoMap": {}, + "alarmNo": "1370246374", + "alarmDate": "1769980882809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780507", + "createdBy": null, + "createdTime": "2026-02-02 05:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:17", + "echoMap": {}, + "alarmNo": "1370246373", + "alarmDate": "1769980864744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780498", + "createdBy": null, + "createdTime": "2026-02-02 05:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:04", + "echoMap": {}, + "alarmNo": "1370246372", + "alarmDate": "1769980863068", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780466", + "createdBy": null, + "createdTime": "2026-02-02 05:20:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:55", + "echoMap": {}, + "alarmNo": "1370246371", + "alarmDate": "1769980853615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060026", + "deviceName": "[202](10)龙溪2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113183726780431", + "createdBy": null, + "createdTime": "2026-02-02 05:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:47", + "echoMap": {}, + "alarmNo": "1370246370", + "alarmDate": "1769980845864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113179431813209", + "createdBy": null, + "createdTime": "2026-02-02 05:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:53", + "echoMap": {}, + "alarmNo": "1370246369", + "alarmDate": "1769980840638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845936", + "createdBy": null, + "createdTime": "2026-02-02 05:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:26", + "echoMap": {}, + "alarmNo": "1370246368", + "alarmDate": "1769980284750", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845920", + "createdBy": null, + "createdTime": "2026-02-02 05:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:23", + "echoMap": {}, + "alarmNo": "1370246367", + "alarmDate": "1769980282214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845876", + "createdBy": null, + "createdTime": "2026-02-02 05:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:15", + "echoMap": {}, + "alarmNo": "1370246366", + "alarmDate": "1769980274207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113175136845849", + "createdBy": null, + "createdTime": "2026-02-02 05:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:28", + "echoMap": {}, + "alarmNo": "1370246365", + "alarmDate": "1769980269406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911483", + "createdBy": null, + "createdTime": "2026-02-02 05:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:51", + "echoMap": {}, + "alarmNo": "1370246364", + "alarmDate": "1769980249524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060049", + "deviceName": "[203](10)龙溪3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911464", + "createdBy": null, + "createdTime": "2026-02-02 05:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:47", + "echoMap": {}, + "alarmNo": "1370246363", + "alarmDate": "1769980246425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911456", + "createdBy": null, + "createdTime": "2026-02-02 05:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:57", + "echoMap": {}, + "alarmNo": "1370246362", + "alarmDate": "1769980245406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113166546911238", + "createdBy": null, + "createdTime": "2026-02-02 05:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:33", + "echoMap": {}, + "alarmNo": "1370246361", + "alarmDate": "1769979681229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251944014", + "createdBy": null, + "createdTime": "2026-02-02 05:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:19", + "echoMap": {}, + "alarmNo": "1370246360", + "alarmDate": "1769979677675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251944000", + "createdBy": null, + "createdTime": "2026-02-02 05:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:14", + "echoMap": {}, + "alarmNo": "1370246359", + "alarmDate": "1769979673349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251943975", + "createdBy": null, + "createdTime": "2026-02-02 05:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:06", + "echoMap": {}, + "alarmNo": "1370246358", + "alarmDate": "1769979664855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113162251943949", + "createdBy": null, + "createdTime": "2026-02-02 05:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:09", + "echoMap": {}, + "alarmNo": "1370246357", + "alarmDate": "1769979657242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113157956976856", + "createdBy": null, + "createdTime": "2026-02-02 05:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:47", + "echoMap": {}, + "alarmNo": "1370246356", + "alarmDate": "1769979646320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113153662009414", + "createdBy": null, + "createdTime": "2026-02-02 04:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:24", + "echoMap": {}, + "alarmNo": "1370246355", + "alarmDate": "1769979083296", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113153662009397", + "createdBy": null, + "createdTime": "2026-02-02 04:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:45", + "echoMap": {}, + "alarmNo": "1370246354", + "alarmDate": "1769979079063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113153662009344", + "createdBy": null, + "createdTime": "2026-02-02 04:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:59", + "echoMap": {}, + "alarmNo": "1370246353", + "alarmDate": "1769979058163", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042287", + "createdBy": null, + "createdTime": "2026-02-02 04:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:06", + "echoMap": {}, + "alarmNo": "1370246352", + "alarmDate": "1769979053928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042283", + "createdBy": null, + "createdTime": "2026-02-02 04:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:54", + "echoMap": {}, + "alarmNo": "1370246351", + "alarmDate": "1769979053175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042255", + "createdBy": null, + "createdTime": "2026-02-02 04:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:51", + "echoMap": {}, + "alarmNo": "1370246350", + "alarmDate": "1769979049721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042234", + "createdBy": null, + "createdTime": "2026-02-02 04:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:44", + "echoMap": {}, + "alarmNo": "1370246349", + "alarmDate": "1769979042497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042201", + "createdBy": null, + "createdTime": "2026-02-02 04:50:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:35", + "echoMap": {}, + "alarmNo": "1370246348", + "alarmDate": "1769979030971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113149367042054", + "createdBy": null, + "createdTime": "2026-02-02 04:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:43", + "echoMap": {}, + "alarmNo": "1370246347", + "alarmDate": "1769978492309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113145072074827", + "createdBy": null, + "createdTime": "2026-02-02 04:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:30", + "echoMap": {}, + "alarmNo": "1370246346", + "alarmDate": "1769978489274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113145072074777", + "createdBy": null, + "createdTime": "2026-02-02 04:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:27", + "echoMap": {}, + "alarmNo": "1370246345", + "alarmDate": "1769978473595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113145072074752", + "createdBy": null, + "createdTime": "2026-02-02 04:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:06", + "echoMap": {}, + "alarmNo": "1370246344", + "alarmDate": "1769978464685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113140777107660", + "createdBy": null, + "createdTime": "2026-02-02 04:40:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:03", + "echoMap": {}, + "alarmNo": "1370246343", + "alarmDate": "1769978449594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113140777107636", + "createdBy": null, + "createdTime": "2026-02-02 04:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:46", + "echoMap": {}, + "alarmNo": "1370246342", + "alarmDate": "1769978444815", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113140777107624", + "createdBy": null, + "createdTime": "2026-02-02 04:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:42", + "echoMap": {}, + "alarmNo": "1370246341", + "alarmDate": "1769978440684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113136482140238", + "createdBy": null, + "createdTime": "2026-02-02 04:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:32", + "echoMap": {}, + "alarmNo": "1370246340", + "alarmDate": "1769977891468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113136482140209", + "createdBy": null, + "createdTime": "2026-02-02 04:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:24", + "echoMap": {}, + "alarmNo": "1370246339", + "alarmDate": "1769977882945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113136482140191", + "createdBy": null, + "createdTime": "2026-02-02 04:31:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:39", + "echoMap": {}, + "alarmNo": "1370246338", + "alarmDate": "1769977878361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173141", + "createdBy": null, + "createdTime": "2026-02-02 04:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:56", + "echoMap": {}, + "alarmNo": "1370246337", + "alarmDate": "1769977855402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173134", + "createdBy": null, + "createdTime": "2026-02-02 04:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:06", + "echoMap": {}, + "alarmNo": "1370246336", + "alarmDate": "1769977854360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173130", + "createdBy": null, + "createdTime": "2026-02-02 04:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:55", + "echoMap": {}, + "alarmNo": "1370246335", + "alarmDate": "1769977853642", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187173069", + "createdBy": null, + "createdTime": "2026-02-02 04:30:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:42", + "echoMap": {}, + "alarmNo": "1370246334", + "alarmDate": "1769977830167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113132187172908", + "createdBy": null, + "createdTime": "2026-02-02 04:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:27", + "echoMap": {}, + "alarmNo": "1370246333", + "alarmDate": "1769977286287", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205630", + "createdBy": null, + "createdTime": "2026-02-02 04:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:11", + "echoMap": {}, + "alarmNo": "1370246332", + "alarmDate": "1769977269837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205594", + "createdBy": null, + "createdTime": "2026-02-02 04:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:01", + "echoMap": {}, + "alarmNo": "1370246331", + "alarmDate": "1769977260243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205591", + "createdBy": null, + "createdTime": "2026-02-02 04:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:18", + "echoMap": {}, + "alarmNo": "1370246330", + "alarmDate": "1769977260088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113127892205585", + "createdBy": null, + "createdTime": "2026-02-02 04:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:00", + "echoMap": {}, + "alarmNo": "1370246329", + "alarmDate": "1769977258682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238728", + "createdBy": null, + "createdTime": "2026-02-02 04:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:49", + "echoMap": {}, + "alarmNo": "1370246328", + "alarmDate": "1769977247627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238681", + "createdBy": null, + "createdTime": "2026-02-02 04:20:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:34", + "echoMap": {}, + "alarmNo": "1370246327", + "alarmDate": "1769977233020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238605", + "createdBy": null, + "createdTime": "2026-02-02 04:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:51", + "echoMap": {}, + "alarmNo": "1370246326", + "alarmDate": "1769977012378", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238590", + "createdBy": null, + "createdTime": "2026-02-02 04:14:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:51", + "echoMap": {}, + "alarmNo": "1370246325", + "alarmDate": "1769976892463", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238507", + "createdBy": null, + "createdTime": "2026-02-02 04:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:47", + "echoMap": {}, + "alarmNo": "1370246324", + "alarmDate": "1769976688775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238495", + "createdBy": null, + "createdTime": "2026-02-02 04:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:26", + "echoMap": {}, + "alarmNo": "1370246323", + "alarmDate": "1769976684909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238437", + "createdBy": null, + "createdTime": "2026-02-02 04:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:16", + "echoMap": {}, + "alarmNo": "1370246322", + "alarmDate": "1769976663761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238432", + "createdBy": null, + "createdTime": "2026-02-02 04:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:04", + "echoMap": {}, + "alarmNo": "1370246321", + "alarmDate": "1769976662890", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238420", + "createdBy": null, + "createdTime": "2026-02-02 04:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:00", + "echoMap": {}, + "alarmNo": "1370246320", + "alarmDate": "1769976658741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238405", + "createdBy": null, + "createdTime": "2026-02-02 04:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:51", + "echoMap": {}, + "alarmNo": "1370246319", + "alarmDate": "1769976652424", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238394", + "createdBy": null, + "createdTime": "2026-02-02 04:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:51", + "echoMap": {}, + "alarmNo": "1370246318", + "alarmDate": "1769976650210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113123597238357", + "createdBy": null, + "createdTime": "2026-02-02 04:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:52", + "echoMap": {}, + "alarmNo": "1370246317", + "alarmDate": "1769976638750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271114", + "createdBy": null, + "createdTime": "2026-02-02 04:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:18", + "echoMap": {}, + "alarmNo": "1370246316", + "alarmDate": "1769976076796", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271081", + "createdBy": null, + "createdTime": "2026-02-02 04:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:08", + "echoMap": {}, + "alarmNo": "1370246315", + "alarmDate": "1769976066604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271063", + "createdBy": null, + "createdTime": "2026-02-02 04:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:21", + "echoMap": {}, + "alarmNo": "1370246314", + "alarmDate": "1769976061524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302271050", + "createdBy": null, + "createdTime": "2026-02-02 04:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:58", + "echoMap": {}, + "alarmNo": "1370246313", + "alarmDate": "1769976056756", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302270996", + "createdBy": null, + "createdTime": "2026-02-02 04:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:49", + "echoMap": {}, + "alarmNo": "1370246312", + "alarmDate": "1769976037518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113119302270993", + "createdBy": null, + "createdTime": "2026-02-02 04:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:38", + "echoMap": {}, + "alarmNo": "1370246311", + "alarmDate": "1769976037177", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303781", + "createdBy": null, + "createdTime": "2026-02-02 03:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:30", + "echoMap": {}, + "alarmNo": "1370246310", + "alarmDate": "1769975489041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303751", + "createdBy": null, + "createdTime": "2026-02-02 03:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:20", + "echoMap": {}, + "alarmNo": "1370246309", + "alarmDate": "1769975478770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303713", + "createdBy": null, + "createdTime": "2026-02-02 03:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:09", + "echoMap": {}, + "alarmNo": "1370246308", + "alarmDate": "1769975467577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113115007303706", + "createdBy": null, + "createdTime": "2026-02-02 03:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:24", + "echoMap": {}, + "alarmNo": "1370246307", + "alarmDate": "1769975466248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113110712336475", + "createdBy": null, + "createdTime": "2026-02-02 03:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:55", + "echoMap": {}, + "alarmNo": "1370246306", + "alarmDate": "1769975453739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113110712336466", + "createdBy": null, + "createdTime": "2026-02-02 03:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1370246305", + "alarmDate": "1769975452347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113110712336430", + "createdBy": null, + "createdTime": "2026-02-02 03:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1370246304", + "alarmDate": "1769975441245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369197", + "createdBy": null, + "createdTime": "2026-02-02 03:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:21", + "echoMap": {}, + "alarmNo": "1370246303", + "alarmDate": "1769974880093", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369184", + "createdBy": null, + "createdTime": "2026-02-02 03:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:29", + "echoMap": {}, + "alarmNo": "1370246302", + "alarmDate": "1769974876987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369181", + "createdBy": null, + "createdTime": "2026-02-02 03:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:18", + "echoMap": {}, + "alarmNo": "1370246301", + "alarmDate": "1769974876880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369165", + "createdBy": null, + "createdTime": "2026-02-02 03:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:12", + "echoMap": {}, + "alarmNo": "1370246300", + "alarmDate": "1769974870464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369113", + "createdBy": null, + "createdTime": "2026-02-02 03:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:06", + "echoMap": {}, + "alarmNo": "1370246299", + "alarmDate": "1769974853008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113106417369096", + "createdBy": null, + "createdTime": "2026-02-02 03:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:47", + "echoMap": {}, + "alarmNo": "1370246298", + "alarmDate": "1769974846281", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434764", + "createdBy": null, + "createdTime": "2026-02-02 03:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:51", + "echoMap": {}, + "alarmNo": "1370246297", + "alarmDate": "1769974552386", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060002", + "deviceName": "[606](10)龙溪弱电机房2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434671", + "createdBy": null, + "createdTime": "2026-02-02 03:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1370246296", + "alarmDate": "1769974283878", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434662", + "createdBy": null, + "createdTime": "2026-02-02 03:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:41", + "echoMap": {}, + "alarmNo": "1370246295", + "alarmDate": "1769974281710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434586", + "createdBy": null, + "createdTime": "2026-02-02 03:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:10", + "echoMap": {}, + "alarmNo": "1370246294", + "alarmDate": "1769974257723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434580", + "createdBy": null, + "createdTime": "2026-02-02 03:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:57", + "echoMap": {}, + "alarmNo": "1370246293", + "alarmDate": "1769974256539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434570", + "createdBy": null, + "createdTime": "2026-02-02 03:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:19", + "echoMap": {}, + "alarmNo": "1370246292", + "alarmDate": "1769974252383", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113097827434551", + "createdBy": null, + "createdTime": "2026-02-02 03:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:46", + "echoMap": {}, + "alarmNo": "1370246291", + "alarmDate": "1769974245109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500164", + "createdBy": null, + "createdTime": "2026-02-02 03:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:38", + "echoMap": {}, + "alarmNo": "1370246290", + "alarmDate": "1769973696952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500128", + "createdBy": null, + "createdTime": "2026-02-02 03:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:46", + "echoMap": {}, + "alarmNo": "1370246289", + "alarmDate": "1769973679439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500114", + "createdBy": null, + "createdTime": "2026-02-02 03:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:16", + "echoMap": {}, + "alarmNo": "1370246288", + "alarmDate": "1769973674722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500102", + "createdBy": null, + "createdTime": "2026-02-02 03:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:12", + "echoMap": {}, + "alarmNo": "1370246287", + "alarmDate": "1769973670538", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500074", + "createdBy": null, + "createdTime": "2026-02-02 03:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:02", + "echoMap": {}, + "alarmNo": "1370246286", + "alarmDate": "1769973660970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500027", + "createdBy": null, + "createdTime": "2026-02-02 03:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:06", + "echoMap": {}, + "alarmNo": "1370246285", + "alarmDate": "1769973647503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500014", + "createdBy": null, + "createdTime": "2026-02-02 03:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:45", + "echoMap": {}, + "alarmNo": "1370246284", + "alarmDate": "1769973644365", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237500006", + "createdBy": null, + "createdTime": "2026-02-02 03:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:43", + "echoMap": {}, + "alarmNo": "1370246283", + "alarmDate": "1769973642244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113089237499976", + "createdBy": null, + "createdTime": "2026-02-02 03:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:34", + "echoMap": {}, + "alarmNo": "1370246282", + "alarmDate": "1769973630433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113084942532655", + "createdBy": null, + "createdTime": "2026-02-02 03:14:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:51", + "echoMap": {}, + "alarmNo": "1370246281", + "alarmDate": "1769973292433", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060128", + "deviceName": "[350](10)龙溪#1台扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565636", + "createdBy": null, + "createdTime": "2026-02-02 03:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:32", + "echoMap": {}, + "alarmNo": "1370246280", + "alarmDate": "1769973090588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565587", + "createdBy": null, + "createdTime": "2026-02-02 03:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:27", + "echoMap": {}, + "alarmNo": "1370246279", + "alarmDate": "1769973074178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565569", + "createdBy": null, + "createdTime": "2026-02-02 03:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:08", + "echoMap": {}, + "alarmNo": "1370246278", + "alarmDate": "1769973067409", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565540", + "createdBy": null, + "createdTime": "2026-02-02 03:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:58", + "echoMap": {}, + "alarmNo": "1370246277", + "alarmDate": "1769973057267", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565516", + "createdBy": null, + "createdTime": "2026-02-02 03:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:03", + "echoMap": {}, + "alarmNo": "1370246276", + "alarmDate": "1769973050157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113080647565488", + "createdBy": null, + "createdTime": "2026-02-02 03:10:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:39", + "echoMap": {}, + "alarmNo": "1370246275", + "alarmDate": "1769973038297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113076352598073", + "createdBy": null, + "createdTime": "2026-02-02 03:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:30", + "echoMap": {}, + "alarmNo": "1370246274", + "alarmDate": "1769972489124", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113076352598029", + "createdBy": null, + "createdTime": "2026-02-02 03:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:17", + "echoMap": {}, + "alarmNo": "1370246273", + "alarmDate": "1769972475717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113076352598018", + "createdBy": null, + "createdTime": "2026-02-02 03:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:39", + "echoMap": {}, + "alarmNo": "1370246272", + "alarmDate": "1769972472915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057631014", + "createdBy": null, + "createdTime": "2026-02-02 03:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:06", + "echoMap": {}, + "alarmNo": "1370246271", + "alarmDate": "1769972465224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630960", + "createdBy": null, + "createdTime": "2026-02-02 03:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:00", + "echoMap": {}, + "alarmNo": "1370246270", + "alarmDate": "1769972446928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630937", + "createdBy": null, + "createdTime": "2026-02-02 03:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:39", + "echoMap": {}, + "alarmNo": "1370246269", + "alarmDate": "1769972437967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630925", + "createdBy": null, + "createdTime": "2026-02-02 03:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:35", + "echoMap": {}, + "alarmNo": "1370246268", + "alarmDate": "1769972434103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630764", + "createdBy": null, + "createdTime": "2026-02-02 02:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:31", + "echoMap": {}, + "alarmNo": "1370246267", + "alarmDate": "1769971889751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113072057630738", + "createdBy": null, + "createdTime": "2026-02-02 02:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:23", + "echoMap": {}, + "alarmNo": "1370246266", + "alarmDate": "1769971881996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663514", + "createdBy": null, + "createdTime": "2026-02-02 02:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:35", + "echoMap": {}, + "alarmNo": "1370246265", + "alarmDate": "1769971876633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663492", + "createdBy": null, + "createdTime": "2026-02-02 02:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:08", + "echoMap": {}, + "alarmNo": "1370246264", + "alarmDate": "1769971867179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663476", + "createdBy": null, + "createdTime": "2026-02-02 02:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:04", + "echoMap": {}, + "alarmNo": "1370246263", + "alarmDate": "1769971862563", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663466", + "createdBy": null, + "createdTime": "2026-02-02 02:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:01", + "echoMap": {}, + "alarmNo": "1370246262", + "alarmDate": "1769971860336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663451", + "createdBy": null, + "createdTime": "2026-02-02 02:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:58", + "echoMap": {}, + "alarmNo": "1370246261", + "alarmDate": "1769971856929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113067762663433", + "createdBy": null, + "createdTime": "2026-02-02 02:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:04", + "echoMap": {}, + "alarmNo": "1370246260", + "alarmDate": "1769971851610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696402", + "createdBy": null, + "createdTime": "2026-02-02 02:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:36", + "echoMap": {}, + "alarmNo": "1370246259", + "alarmDate": "1769971834789", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696258", + "createdBy": null, + "createdTime": "2026-02-02 02:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:51", + "echoMap": {}, + "alarmNo": "1370246258", + "alarmDate": "1769971372404", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696237", + "createdBy": null, + "createdTime": "2026-02-02 02:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:29", + "echoMap": {}, + "alarmNo": "1370246257", + "alarmDate": "1769971287626", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696222", + "createdBy": null, + "createdTime": "2026-02-02 02:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:24", + "echoMap": {}, + "alarmNo": "1370246256", + "alarmDate": "1769971283436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696208", + "createdBy": null, + "createdTime": "2026-02-02 02:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:40", + "echoMap": {}, + "alarmNo": "1370246255", + "alarmDate": "1769971280402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696142", + "createdBy": null, + "createdTime": "2026-02-02 02:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:07", + "echoMap": {}, + "alarmNo": "1370246254", + "alarmDate": "1769971255369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113063467696133", + "createdBy": null, + "createdTime": "2026-02-02 02:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:53", + "echoMap": {}, + "alarmNo": "1370246253", + "alarmDate": "1769971252451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113059172728877", + "createdBy": null, + "createdTime": "2026-02-02 02:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:45", + "echoMap": {}, + "alarmNo": "1370246252", + "alarmDate": "1769971244141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761803", + "createdBy": null, + "createdTime": "2026-02-02 02:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:51", + "echoMap": {}, + "alarmNo": "1370246251", + "alarmDate": "1769971072383", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761660", + "createdBy": null, + "createdTime": "2026-02-02 02:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:25", + "echoMap": {}, + "alarmNo": "1370246250", + "alarmDate": "1769970684334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761657", + "createdBy": null, + "createdTime": "2026-02-02 02:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:43", + "echoMap": {}, + "alarmNo": "1370246249", + "alarmDate": "1769970684213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761588", + "createdBy": null, + "createdTime": "2026-02-02 02:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:13", + "echoMap": {}, + "alarmNo": "1370246248", + "alarmDate": "1769970660118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113054877761578", + "createdBy": null, + "createdTime": "2026-02-02 02:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:58", + "echoMap": {}, + "alarmNo": "1370246247", + "alarmDate": "1769970657202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113050582794315", + "createdBy": null, + "createdTime": "2026-02-02 02:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:42", + "echoMap": {}, + "alarmNo": "1370246246", + "alarmDate": "1769970641360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827174", + "createdBy": null, + "createdTime": "2026-02-02 02:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:31", + "echoMap": {}, + "alarmNo": "1370246245", + "alarmDate": "1769970090171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827168", + "createdBy": null, + "createdTime": "2026-02-02 02:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:49", + "echoMap": {}, + "alarmNo": "1370246244", + "alarmDate": "1769970088965", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827152", + "createdBy": null, + "createdTime": "2026-02-02 02:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:24", + "echoMap": {}, + "alarmNo": "1370246243", + "alarmDate": "1769970082675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827142", + "createdBy": null, + "createdTime": "2026-02-02 02:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:21", + "echoMap": {}, + "alarmNo": "1370246242", + "alarmDate": "1769970079555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827128", + "createdBy": null, + "createdTime": "2026-02-02 02:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:16", + "echoMap": {}, + "alarmNo": "1370246241", + "alarmDate": "1769970075098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827122", + "createdBy": null, + "createdTime": "2026-02-02 02:21:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:14", + "echoMap": {}, + "alarmNo": "1370246240", + "alarmDate": "1769970073387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827074", + "createdBy": null, + "createdTime": "2026-02-02 02:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:59", + "echoMap": {}, + "alarmNo": "1370246239", + "alarmDate": "1769970057846", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827073", + "createdBy": null, + "createdTime": "2026-02-02 02:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:10", + "echoMap": {}, + "alarmNo": "1370246238", + "alarmDate": "1769970057833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827064", + "createdBy": null, + "createdTime": "2026-02-02 02:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:57", + "echoMap": {}, + "alarmNo": "1370246237", + "alarmDate": "1769970055960", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113046287827003", + "createdBy": null, + "createdTime": "2026-02-02 02:20:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:45", + "echoMap": {}, + "alarmNo": "1370246236", + "alarmDate": "1769970032788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892564", + "createdBy": null, + "createdTime": "2026-02-02 02:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:07", + "echoMap": {}, + "alarmNo": "1370246235", + "alarmDate": "1769969465686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892556", + "createdBy": null, + "createdTime": "2026-02-02 02:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:05", + "echoMap": {}, + "alarmNo": "1370246234", + "alarmDate": "1769969464330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892548", + "createdBy": null, + "createdTime": "2026-02-02 02:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:15", + "echoMap": {}, + "alarmNo": "1370246233", + "alarmDate": "1769969462559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892520", + "createdBy": null, + "createdTime": "2026-02-02 02:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:52", + "echoMap": {}, + "alarmNo": "1370246232", + "alarmDate": "1769969450687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892488", + "createdBy": null, + "createdTime": "2026-02-02 02:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:50", + "echoMap": {}, + "alarmNo": "1370246231", + "alarmDate": "1769969442909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113037697892471", + "createdBy": null, + "createdTime": "2026-02-02 02:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:51", + "echoMap": {}, + "alarmNo": "1370246230", + "alarmDate": "1769969438545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113033402925083", + "createdBy": null, + "createdTime": "2026-02-02 02:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:51", + "echoMap": {}, + "alarmNo": "1370246229", + "alarmDate": "1769968912389", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107958067", + "createdBy": null, + "createdTime": "2026-02-02 02:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:18", + "echoMap": {}, + "alarmNo": "1370246228", + "alarmDate": "1769968877403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107958052", + "createdBy": null, + "createdTime": "2026-02-02 02:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:26", + "echoMap": {}, + "alarmNo": "1370246227", + "alarmDate": "1769968873275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957986", + "createdBy": null, + "createdTime": "2026-02-02 02:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:01", + "echoMap": {}, + "alarmNo": "1370246226", + "alarmDate": "1769968849226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957983", + "createdBy": null, + "createdTime": "2026-02-02 02:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1370246225", + "alarmDate": "1769968848930", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957978", + "createdBy": null, + "createdTime": "2026-02-02 02:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1370246224", + "alarmDate": "1769968848537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957971", + "createdBy": null, + "createdTime": "2026-02-02 02:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:48", + "echoMap": {}, + "alarmNo": "1370246223", + "alarmDate": "1769968846836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957960", + "createdBy": null, + "createdTime": "2026-02-02 02:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:44", + "echoMap": {}, + "alarmNo": "1370246222", + "alarmDate": "1769968843471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957927", + "createdBy": null, + "createdTime": "2026-02-02 02:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:33", + "echoMap": {}, + "alarmNo": "1370246221", + "alarmDate": "1769968831697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113029107957812", + "createdBy": null, + "createdTime": "2026-02-02 01:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:51", + "echoMap": {}, + "alarmNo": "1370246220", + "alarmDate": "1769968492448", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990526", + "createdBy": null, + "createdTime": "2026-02-02 01:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:26", + "echoMap": {}, + "alarmNo": "1370246219", + "alarmDate": "1769968285018", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990509", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:22", + "echoMap": {}, + "alarmNo": "1370246218", + "alarmDate": "1769968280592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990504", + "createdBy": null, + "createdTime": "2026-02-02 01:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:21", + "echoMap": {}, + "alarmNo": "1370246217", + "alarmDate": "1769968280125", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113024812990495", + "createdBy": null, + "createdTime": "2026-02-02 01:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:37", + "echoMap": {}, + "alarmNo": "1370246216", + "alarmDate": "1769968278048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023410", + "createdBy": null, + "createdTime": "2026-02-02 01:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:59", + "echoMap": {}, + "alarmNo": "1370246215", + "alarmDate": "1769968246979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023210", + "createdBy": null, + "createdTime": "2026-02-02 01:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:25", + "echoMap": {}, + "alarmNo": "1370246214", + "alarmDate": "1769967683621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023202", + "createdBy": null, + "createdTime": "2026-02-02 01:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:35", + "echoMap": {}, + "alarmNo": "1370246213", + "alarmDate": "1769967681816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023195", + "createdBy": null, + "createdTime": "2026-02-02 01:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:20", + "echoMap": {}, + "alarmNo": "1370246212", + "alarmDate": "1769967679611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113020518023172", + "createdBy": null, + "createdTime": "2026-02-02 01:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:12", + "echoMap": {}, + "alarmNo": "1370246211", + "alarmDate": "1769967670770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088898", + "createdBy": null, + "createdTime": "2026-02-02 01:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:04", + "echoMap": {}, + "alarmNo": "1370246210", + "alarmDate": "1769967651660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088879", + "createdBy": null, + "createdTime": "2026-02-02 01:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:46", + "echoMap": {}, + "alarmNo": "1370246209", + "alarmDate": "1769967644882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088703", + "createdBy": null, + "createdTime": "2026-02-02 01:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:40", + "echoMap": {}, + "alarmNo": "1370246208", + "alarmDate": "1769967086551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088651", + "createdBy": null, + "createdTime": "2026-02-02 01:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:08", + "echoMap": {}, + "alarmNo": "1370246207", + "alarmDate": "1769967067176", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088644", + "createdBy": null, + "createdTime": "2026-02-02 01:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:07", + "echoMap": {}, + "alarmNo": "1370246206", + "alarmDate": "1769967065956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088633", + "createdBy": null, + "createdTime": "2026-02-02 01:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:16", + "echoMap": {}, + "alarmNo": "1370246205", + "alarmDate": "1769967063428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088623", + "createdBy": null, + "createdTime": "2026-02-02 01:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:02", + "echoMap": {}, + "alarmNo": "1370246204", + "alarmDate": "1769967060652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088616", + "createdBy": null, + "createdTime": "2026-02-02 01:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:59", + "echoMap": {}, + "alarmNo": "1370246203", + "alarmDate": "1769967058456", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088591", + "createdBy": null, + "createdTime": "2026-02-02 01:30:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:57", + "echoMap": {}, + "alarmNo": "1370246202", + "alarmDate": "1769967055831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113011928088576", + "createdBy": null, + "createdTime": "2026-02-02 01:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:53", + "echoMap": {}, + "alarmNo": "1370246201", + "alarmDate": "1769967051569", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113007633121301", + "createdBy": null, + "createdTime": "2026-02-02 01:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:39", + "echoMap": {}, + "alarmNo": "1370246200", + "alarmDate": "1769967037884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154291", + "createdBy": null, + "createdTime": "2026-02-02 01:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:51", + "echoMap": {}, + "alarmNo": "1370246199", + "alarmDate": "1769967032399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154123", + "createdBy": null, + "createdTime": "2026-02-02 01:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:27", + "echoMap": {}, + "alarmNo": "1370246198", + "alarmDate": "1769966485707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154111", + "createdBy": null, + "createdTime": "2026-02-02 01:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:30", + "echoMap": {}, + "alarmNo": "1370246197", + "alarmDate": "1769966483436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154057", + "createdBy": null, + "createdTime": "2026-02-02 01:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:19", + "echoMap": {}, + "alarmNo": "1370246196", + "alarmDate": "1769966467119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338154016", + "createdBy": null, + "createdTime": "2026-02-02 01:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:52", + "echoMap": {}, + "alarmNo": "1370246195", + "alarmDate": "1769966451063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338153990", + "createdBy": null, + "createdTime": "2026-02-02 01:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:55", + "echoMap": {}, + "alarmNo": "1370246194", + "alarmDate": "1769966443079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723113003338153986", + "createdBy": null, + "createdTime": "2026-02-02 01:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:51", + "echoMap": {}, + "alarmNo": "1370246193", + "alarmDate": "1769966442322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112999043186756", + "createdBy": null, + "createdTime": "2026-02-02 01:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:40", + "echoMap": {}, + "alarmNo": "1370246192", + "alarmDate": "1769966439149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219678", + "createdBy": null, + "createdTime": "2026-02-02 01:14:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:51", + "echoMap": {}, + "alarmNo": "1370246191", + "alarmDate": "1769966092531", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219606", + "createdBy": null, + "createdTime": "2026-02-02 01:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:32", + "echoMap": {}, + "alarmNo": "1370246190", + "alarmDate": "1769965890891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219526", + "createdBy": null, + "createdTime": "2026-02-02 01:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:24", + "echoMap": {}, + "alarmNo": "1370246189", + "alarmDate": "1769965864849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219521", + "createdBy": null, + "createdTime": "2026-02-02 01:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:05", + "echoMap": {}, + "alarmNo": "1370246188", + "alarmDate": "1769965863998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219459", + "createdBy": null, + "createdTime": "2026-02-02 01:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:53", + "echoMap": {}, + "alarmNo": "1370246187", + "alarmDate": "1769965840858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219440", + "createdBy": null, + "createdTime": "2026-02-02 01:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:34", + "echoMap": {}, + "alarmNo": "1370246186", + "alarmDate": "1769965833272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112994748219435", + "createdBy": null, + "createdTime": "2026-02-02 01:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:33", + "echoMap": {}, + "alarmNo": "1370246185", + "alarmDate": "1769965832452", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285069", + "createdBy": null, + "createdTime": "2026-02-02 01:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:27", + "echoMap": {}, + "alarmNo": "1370246184", + "alarmDate": "1769965286127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285063", + "createdBy": null, + "createdTime": "2026-02-02 01:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:27", + "echoMap": {}, + "alarmNo": "1370246183", + "alarmDate": "1769965285538", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285056", + "createdBy": null, + "createdTime": "2026-02-02 01:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:25", + "echoMap": {}, + "alarmNo": "1370246182", + "alarmDate": "1769965284294", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285041", + "createdBy": null, + "createdTime": "2026-02-02 01:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:22", + "echoMap": {}, + "alarmNo": "1370246181", + "alarmDate": "1769965280774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285026", + "createdBy": null, + "createdTime": "2026-02-02 01:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:29", + "echoMap": {}, + "alarmNo": "1370246180", + "alarmDate": "1769965276728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158285016", + "createdBy": null, + "createdTime": "2026-02-02 01:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:15", + "echoMap": {}, + "alarmNo": "1370246179", + "alarmDate": "1769965273713", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284987", + "createdBy": null, + "createdTime": "2026-02-02 01:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:04", + "echoMap": {}, + "alarmNo": "1370246178", + "alarmDate": "1769965263045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284947", + "createdBy": null, + "createdTime": "2026-02-02 01:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:05", + "echoMap": {}, + "alarmNo": "1370246177", + "alarmDate": "1769965251622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284931", + "createdBy": null, + "createdTime": "2026-02-02 01:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:46", + "echoMap": {}, + "alarmNo": "1370246176", + "alarmDate": "1769965245133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112986158284847", + "createdBy": null, + "createdTime": "2026-02-02 00:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:51", + "echoMap": {}, + "alarmNo": "1370246175", + "alarmDate": "1769965012409", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112981863317516", + "createdBy": null, + "createdTime": "2026-02-02 00:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:34", + "echoMap": {}, + "alarmNo": "1370246174", + "alarmDate": "1769964681462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350493", + "createdBy": null, + "createdTime": "2026-02-02 00:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:12", + "echoMap": {}, + "alarmNo": "1370246173", + "alarmDate": "1769964671241", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350452", + "createdBy": null, + "createdTime": "2026-02-02 00:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:58", + "echoMap": {}, + "alarmNo": "1370246172", + "alarmDate": "1769964657235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350444", + "createdBy": null, + "createdTime": "2026-02-02 00:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:57", + "echoMap": {}, + "alarmNo": "1370246171", + "alarmDate": "1769964655527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350425", + "createdBy": null, + "createdTime": "2026-02-02 00:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:02", + "echoMap": {}, + "alarmNo": "1370246170", + "alarmDate": "1769964650343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112977568350210", + "createdBy": null, + "createdTime": "2026-02-02 00:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:37", + "echoMap": {}, + "alarmNo": "1370246169", + "alarmDate": "1769964085149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112973273382983", + "createdBy": null, + "createdTime": "2026-02-02 00:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:24", + "echoMap": {}, + "alarmNo": "1370246168", + "alarmDate": "1769964083244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112973273382921", + "createdBy": null, + "createdTime": "2026-02-02 00:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:13", + "echoMap": {}, + "alarmNo": "1370246167", + "alarmDate": "1769964061074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112973273382919", + "createdBy": null, + "createdTime": "2026-02-02 00:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:02", + "echoMap": {}, + "alarmNo": "1370246166", + "alarmDate": "1769964060905", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415908", + "createdBy": null, + "createdTime": "2026-02-02 00:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:54", + "echoMap": {}, + "alarmNo": "1370246165", + "alarmDate": "1769964053426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415900", + "createdBy": null, + "createdTime": "2026-02-02 00:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:53", + "echoMap": {}, + "alarmNo": "1370246164", + "alarmDate": "1769964051677", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415883", + "createdBy": null, + "createdTime": "2026-02-02 00:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:48", + "echoMap": {}, + "alarmNo": "1370246163", + "alarmDate": "1769964047220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415861", + "createdBy": null, + "createdTime": "2026-02-02 00:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:43", + "echoMap": {}, + "alarmNo": "1370246162", + "alarmDate": "1769964042132", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415689", + "createdBy": null, + "createdTime": "2026-02-02 00:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:49", + "echoMap": {}, + "alarmNo": "1370246161", + "alarmDate": "1769963483894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112968978415641", + "createdBy": null, + "createdTime": "2026-02-02 00:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:11", + "echoMap": {}, + "alarmNo": "1370246160", + "alarmDate": "1769963470291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112964683448400", + "createdBy": null, + "createdTime": "2026-02-02 00:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:11", + "echoMap": {}, + "alarmNo": "1370246159", + "alarmDate": "1769963458820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112964683448383", + "createdBy": null, + "createdTime": "2026-02-02 00:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:53", + "echoMap": {}, + "alarmNo": "1370246158", + "alarmDate": "1769963452328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481343", + "createdBy": null, + "createdTime": "2026-02-02 00:30:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:47", + "echoMap": {}, + "alarmNo": "1370246157", + "alarmDate": "1769963434788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481194", + "createdBy": null, + "createdTime": "2026-02-02 00:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:41", + "echoMap": {}, + "alarmNo": "1370246156", + "alarmDate": "1769962891593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481138", + "createdBy": null, + "createdTime": "2026-02-02 00:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:16", + "echoMap": {}, + "alarmNo": "1370246155", + "alarmDate": "1769962875385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481095", + "createdBy": null, + "createdTime": "2026-02-02 00:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:06", + "echoMap": {}, + "alarmNo": "1370246154", + "alarmDate": "1769962865041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481085", + "createdBy": null, + "createdTime": "2026-02-02 00:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:16", + "echoMap": {}, + "alarmNo": "1370246153", + "alarmDate": "1769962863497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112960388481034", + "createdBy": null, + "createdTime": "2026-02-02 00:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:52", + "echoMap": {}, + "alarmNo": "1370246152", + "alarmDate": "1769962850636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060109", + "deviceName": "[211](10)龙溪上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112956093513760", + "createdBy": null, + "createdTime": "2026-02-02 00:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:51", + "echoMap": {}, + "alarmNo": "1370246151", + "alarmDate": "1769962839480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112956093513742", + "createdBy": null, + "createdTime": "2026-02-02 00:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:35", + "echoMap": {}, + "alarmNo": "1370246150", + "alarmDate": "1769962834352", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112951798546449", + "createdBy": null, + "createdTime": "2026-02-02 00:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:29", + "echoMap": {}, + "alarmNo": "1370246149", + "alarmDate": "1769962288357", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060142", + "deviceName": "[718](10)龙溪联络通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112947503579139", + "createdBy": null, + "createdTime": "2026-02-02 00:11:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:13", + "echoMap": {}, + "alarmNo": "1370246148", + "alarmDate": "1769962271730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060135", + "deviceName": "[216](10)龙溪下行球4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612204", + "createdBy": null, + "createdTime": "2026-02-02 00:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:18", + "echoMap": {}, + "alarmNo": "1370246147", + "alarmDate": "1769962271369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060139", + "deviceName": "[116](10)龙溪下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612200", + "createdBy": null, + "createdTime": "2026-02-02 00:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:12", + "echoMap": {}, + "alarmNo": "1370246146", + "alarmDate": "1769962270909", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060023", + "deviceName": "[206](10)龙溪厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612184", + "createdBy": null, + "createdTime": "2026-02-02 00:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:26", + "echoMap": {}, + "alarmNo": "1370246145", + "alarmDate": "1769962268344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612178", + "createdBy": null, + "createdTime": "2026-02-02 00:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:09", + "echoMap": {}, + "alarmNo": "1370246144", + "alarmDate": "1769962267463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060116", + "deviceName": "[214](10)龙溪下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612170", + "createdBy": null, + "createdTime": "2026-02-02 00:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:07", + "echoMap": {}, + "alarmNo": "1370246143", + "alarmDate": "1769962266386", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060143", + "deviceName": "[719](10)龙溪联络通道3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612083", + "createdBy": null, + "createdTime": "2026-02-02 00:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:55", + "echoMap": {}, + "alarmNo": "1370246142", + "alarmDate": "1769962243230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112943208612047", + "createdBy": null, + "createdTime": "2026-02-02 00:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:09", + "echoMap": {}, + "alarmNo": "1370246141", + "alarmDate": "1769962231861", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060068", + "deviceName": "[303](10)龙溪1#口出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112938913644575", + "createdBy": null, + "createdTime": "2026-02-02 00:05:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:52", + "echoMap": {}, + "alarmNo": "1370246140", + "alarmDate": "1769961952739", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1005060088", + "deviceName": "[204](10)龙溪4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677528", + "createdBy": null, + "createdTime": "2026-02-02 00:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:31", + "echoMap": {}, + "alarmNo": "1370246139", + "alarmDate": "1769961679270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677524", + "createdBy": null, + "createdTime": "2026-02-02 00:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:20", + "echoMap": {}, + "alarmNo": "1370246138", + "alarmDate": "1769961678737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060146", + "deviceName": "[632](10)龙溪气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677471", + "createdBy": null, + "createdTime": "2026-02-02 00:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:01", + "echoMap": {}, + "alarmNo": "1370246137", + "alarmDate": "1769961660225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060105", + "deviceName": "[213](10)龙溪下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677463", + "createdBy": null, + "createdTime": "2026-02-02 00:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:00", + "echoMap": {}, + "alarmNo": "1370246136", + "alarmDate": "1769961658644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060072", + "deviceName": "[201](10)龙溪1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677449", + "createdBy": null, + "createdTime": "2026-02-02 00:00:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:07", + "echoMap": {}, + "alarmNo": "1370246135", + "alarmDate": "1769961655118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060028", + "deviceName": "[312](10)龙溪2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + }, + { + "id": "723112934618677414", + "createdBy": null, + "createdTime": "2026-02-02 00:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:42", + "echoMap": {}, + "alarmNo": "1370246134", + "alarmDate": "1769961640942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1005060130", + "deviceName": "[215](10)龙溪下行球3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1005" + } + ] + }, + "1006": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112556659509253", + "createdBy": null, + "createdTime": "2026-02-02 01:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:28", + "echoMap": {}, + "alarmNo": "1390157377", + "alarmDate": "1769965575917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060086", + "deviceName": "[112](10)水城下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112556659509261", + "createdBy": null, + "createdTime": "2026-02-02 01:06:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:18", + "echoMap": {}, + "alarmNo": "1390157378", + "alarmDate": "1769965576999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112560954476563", + "createdBy": null, + "createdTime": "2026-02-02 01:06:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:11", + "echoMap": {}, + "alarmNo": "1390157379", + "alarmDate": "1769965600968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060086", + "deviceName": "[112](10)水城下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112582429313101", + "createdBy": null, + "createdTime": "2026-02-02 01:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:58", + "echoMap": {}, + "alarmNo": "1390157380", + "alarmDate": "1769966217518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060087", + "deviceName": "[109](10)水城下行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112625378986003", + "createdBy": null, + "createdTime": "2026-02-02 01:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:07", + "echoMap": {}, + "alarmNo": "1390157381", + "alarmDate": "1769967425976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112625378986016", + "createdBy": null, + "createdTime": "2026-02-02 01:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:37", + "echoMap": {}, + "alarmNo": "1390157382", + "alarmDate": "1769967428176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112629673953306", + "createdBy": null, + "createdTime": "2026-02-02 01:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:15", + "echoMap": {}, + "alarmNo": "1390157383", + "alarmDate": "1769967974108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112676918593552", + "createdBy": null, + "createdTime": "2026-02-02 02:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:50", + "echoMap": {}, + "alarmNo": "1390157384", + "alarmDate": "1769969208863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112762817939492", + "createdBy": null, + "createdTime": "2026-02-02 02:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:41", + "echoMap": {}, + "alarmNo": "1390157385", + "alarmDate": "1769971594785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112762817939547", + "createdBy": null, + "createdTime": "2026-02-02 02:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:47", + "echoMap": {}, + "alarmNo": "1390157386", + "alarmDate": "1769971606082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112762817939601", + "createdBy": null, + "createdTime": "2026-02-02 02:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:05", + "echoMap": {}, + "alarmNo": "1390157387", + "alarmDate": "1769971618750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112805767612442", + "createdBy": null, + "createdTime": "2026-02-02 03:06:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:18", + "echoMap": {}, + "alarmNo": "1390157388", + "alarmDate": "1769972770479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112814357547049", + "createdBy": null, + "createdTime": "2026-02-02 03:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:34", + "echoMap": {}, + "alarmNo": "1390157389", + "alarmDate": "1769972782157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112822947481634", + "createdBy": null, + "createdTime": "2026-02-02 03:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:42", + "echoMap": {}, + "alarmNo": "1390157390", + "alarmDate": "1769972790424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112835832383517", + "createdBy": null, + "createdTime": "2026-02-02 03:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:58", + "echoMap": {}, + "alarmNo": "1390157391", + "alarmDate": "1769972806287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112844422318086", + "createdBy": null, + "createdTime": "2026-02-02 03:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:07", + "echoMap": {}, + "alarmNo": "1390157392", + "alarmDate": "1769972814542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112865897154579", + "createdBy": null, + "createdTime": "2026-02-02 03:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:22", + "echoMap": {}, + "alarmNo": "1390157393", + "alarmDate": "1769973370448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112874487089154", + "createdBy": null, + "createdTime": "2026-02-02 03:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:30", + "echoMap": {}, + "alarmNo": "1390157394", + "alarmDate": "1769973377749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112883077023758", + "createdBy": null, + "createdTime": "2026-02-02 03:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:29", + "echoMap": {}, + "alarmNo": "1390157395", + "alarmDate": "1769973387832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112887371991049", + "createdBy": null, + "createdTime": "2026-02-02 03:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:47", + "echoMap": {}, + "alarmNo": "1390157396", + "alarmDate": "1769973393556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112891666958366", + "createdBy": null, + "createdTime": "2026-02-02 03:16:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:54", + "echoMap": {}, + "alarmNo": "1390157397", + "alarmDate": "1769973401714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112904551860249", + "createdBy": null, + "createdTime": "2026-02-02 03:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:18", + "echoMap": {}, + "alarmNo": "1390157398", + "alarmDate": "1769973418562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112908846827556", + "createdBy": null, + "createdTime": "2026-02-02 03:17:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:17", + "echoMap": {}, + "alarmNo": "1390157399", + "alarmDate": "1769973425838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112934616631337", + "createdBy": null, + "createdTime": "2026-02-02 03:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:41", + "echoMap": {}, + "alarmNo": "1390157400", + "alarmDate": "1769973989007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112938911598598", + "createdBy": null, + "createdTime": "2026-02-02 03:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:42", + "echoMap": {}, + "alarmNo": "1390157401", + "alarmDate": "1769973989687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112956091467806", + "createdBy": null, + "createdTime": "2026-02-02 03:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:05", + "echoMap": {}, + "alarmNo": "1390157402", + "alarmDate": "1769974013051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112956091467815", + "createdBy": null, + "createdTime": "2026-02-02 03:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:06", + "echoMap": {}, + "alarmNo": "1390157403", + "alarmDate": "1769974013818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112981861271593", + "createdBy": null, + "createdTime": "2026-02-02 03:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:29", + "echoMap": {}, + "alarmNo": "1390157404", + "alarmDate": "1769974576168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112986156238865", + "createdBy": null, + "createdTime": "2026-02-02 03:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:36", + "echoMap": {}, + "alarmNo": "1390157405", + "alarmDate": "1769974577968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113007631075329", + "createdBy": null, + "createdTime": "2026-02-02 03:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:52", + "echoMap": {}, + "alarmNo": "1390157406", + "alarmDate": "1769974601185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113011926042645", + "createdBy": null, + "createdTime": "2026-02-02 03:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:01", + "echoMap": {}, + "alarmNo": "1390157407", + "alarmDate": "1769974609121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113011926042663", + "createdBy": null, + "createdTime": "2026-02-02 03:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:57", + "echoMap": {}, + "alarmNo": "1390157408", + "alarmDate": "1769974610952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113024810944529", + "createdBy": null, + "createdTime": "2026-02-02 03:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:03", + "echoMap": {}, + "alarmNo": "1390157409", + "alarmDate": "1769974621543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113029105911809", + "createdBy": null, + "createdTime": "2026-02-02 03:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:16", + "echoMap": {}, + "alarmNo": "1390157410", + "alarmDate": "1769974624330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113041990813711", + "createdBy": null, + "createdTime": "2026-02-02 03:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:20", + "echoMap": {}, + "alarmNo": "1390157411", + "alarmDate": "1769975174102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113046285781012", + "createdBy": null, + "createdTime": "2026-02-02 03:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:33", + "echoMap": {}, + "alarmNo": "1390157412", + "alarmDate": "1769975180252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113054875715595", + "createdBy": null, + "createdTime": "2026-02-02 03:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:41", + "echoMap": {}, + "alarmNo": "1390157413", + "alarmDate": "1769975188500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113063465650178", + "createdBy": null, + "createdTime": "2026-02-02 03:46:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:44", + "echoMap": {}, + "alarmNo": "1390157414", + "alarmDate": "1769975198204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113067760617486", + "createdBy": null, + "createdTime": "2026-02-02 03:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:57", + "echoMap": {}, + "alarmNo": "1390157415", + "alarmDate": "1769975204323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113072055584806", + "createdBy": null, + "createdTime": "2026-02-02 03:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:05", + "echoMap": {}, + "alarmNo": "1390157416", + "alarmDate": "1769975212599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113089235453956", + "createdBy": null, + "createdTime": "2026-02-02 03:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:20", + "echoMap": {}, + "alarmNo": "1390157417", + "alarmDate": "1769975228342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113102120355856", + "createdBy": null, + "createdTime": "2026-02-02 03:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:28", + "echoMap": {}, + "alarmNo": "1390157418", + "alarmDate": "1769975775785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113106415323272", + "createdBy": null, + "createdTime": "2026-02-02 03:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:45", + "echoMap": {}, + "alarmNo": "1390157419", + "alarmDate": "1769975792484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113110710290484", + "createdBy": null, + "createdTime": "2026-02-02 03:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:52", + "echoMap": {}, + "alarmNo": "1390157420", + "alarmDate": "1769975799760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113123595192327", + "createdBy": null, + "createdTime": "2026-02-02 03:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:15", + "echoMap": {}, + "alarmNo": "1390157421", + "alarmDate": "1769975822638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113123595192342", + "createdBy": null, + "createdTime": "2026-02-02 03:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:15", + "echoMap": {}, + "alarmNo": "1390157422", + "alarmDate": "1769975823909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113149364996111", + "createdBy": null, + "createdTime": "2026-02-02 04:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:39", + "echoMap": {}, + "alarmNo": "1390157423", + "alarmDate": "1769976386783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113149364996116", + "createdBy": null, + "createdTime": "2026-02-02 04:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:39", + "echoMap": {}, + "alarmNo": "1390157424", + "alarmDate": "1769976387057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113157954930778", + "createdBy": null, + "createdTime": "2026-02-02 04:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:44", + "echoMap": {}, + "alarmNo": "1390157425", + "alarmDate": "1769976403493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113157954930852", + "createdBy": null, + "createdTime": "2026-02-02 04:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:03", + "echoMap": {}, + "alarmNo": "1390157426", + "alarmDate": "1769976410876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113157954930855", + "createdBy": null, + "createdTime": "2026-02-02 04:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:03", + "echoMap": {}, + "alarmNo": "1390157427", + "alarmDate": "1769976411039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113166544865378", + "createdBy": null, + "createdTime": "2026-02-02 04:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:27", + "echoMap": {}, + "alarmNo": "1390157428", + "alarmDate": "1769976974969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113166544865382", + "createdBy": null, + "createdTime": "2026-02-02 04:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:27", + "echoMap": {}, + "alarmNo": "1390157429", + "alarmDate": "1769976975285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113175134799878", + "createdBy": null, + "createdTime": "2026-02-02 04:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:51", + "echoMap": {}, + "alarmNo": "1390157430", + "alarmDate": "1769976999296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113175134799888", + "createdBy": null, + "createdTime": "2026-02-02 04:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:58", + "echoMap": {}, + "alarmNo": "1390157431", + "alarmDate": "1769977000110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113175134800117", + "createdBy": null, + "createdTime": "2026-02-02 04:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:14", + "echoMap": {}, + "alarmNo": "1390157432", + "alarmDate": "1769977023402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113183724734522", + "createdBy": null, + "createdTime": "2026-02-02 04:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:22", + "echoMap": {}, + "alarmNo": "1390157433", + "alarmDate": "1769977570274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113183724734669", + "createdBy": null, + "createdTime": "2026-02-02 04:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:39", + "echoMap": {}, + "alarmNo": "1390157434", + "alarmDate": "1769977586529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113183724734743", + "createdBy": null, + "createdTime": "2026-02-02 04:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:46", + "echoMap": {}, + "alarmNo": "1390157435", + "alarmDate": "1769977594300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113192314669141", + "createdBy": null, + "createdTime": "2026-02-02 04:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:03", + "echoMap": {}, + "alarmNo": "1390157436", + "alarmDate": "1769977610537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113192314669216", + "createdBy": null, + "createdTime": "2026-02-02 04:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:11", + "echoMap": {}, + "alarmNo": "1390157437", + "alarmDate": "1769977618417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113192314669353", + "createdBy": null, + "createdTime": "2026-02-02 04:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:52", + "echoMap": {}, + "alarmNo": "1390157438", + "alarmDate": "1769977793077", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1006060010", + "deviceName": "[344](10)水城1#轿厢", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113200904603747", + "createdBy": null, + "createdTime": "2026-02-02 04:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:26", + "echoMap": {}, + "alarmNo": "1390157439", + "alarmDate": "1769978179816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113200904603765", + "createdBy": null, + "createdTime": "2026-02-02 04:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:34", + "echoMap": {}, + "alarmNo": "1390157440", + "alarmDate": "1769978181556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113200904603796", + "createdBy": null, + "createdTime": "2026-02-02 04:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:25", + "echoMap": {}, + "alarmNo": "1390157441", + "alarmDate": "1769978184314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113205199570979", + "createdBy": null, + "createdTime": "2026-02-02 04:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:50", + "echoMap": {}, + "alarmNo": "1390157442", + "alarmDate": "1769978203837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113209494538248", + "createdBy": null, + "createdTime": "2026-02-02 04:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:58", + "echoMap": {}, + "alarmNo": "1390157443", + "alarmDate": "1769978206683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113209494538325", + "createdBy": null, + "createdTime": "2026-02-02 04:36:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:01", + "echoMap": {}, + "alarmNo": "1390157444", + "alarmDate": "1769978214554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113209494538446", + "createdBy": null, + "createdTime": "2026-02-02 04:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:14", + "echoMap": {}, + "alarmNo": "1390157445", + "alarmDate": "1769978227891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084472833", + "createdBy": null, + "createdTime": "2026-02-02 04:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:22", + "echoMap": {}, + "alarmNo": "1390157446", + "alarmDate": "1769978770820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084472901", + "createdBy": null, + "createdTime": "2026-02-02 04:46:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:24", + "echoMap": {}, + "alarmNo": "1390157447", + "alarmDate": "1769978777636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084473030", + "createdBy": null, + "createdTime": "2026-02-02 04:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:44", + "echoMap": {}, + "alarmNo": "1390157448", + "alarmDate": "1769978792057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084473111", + "createdBy": null, + "createdTime": "2026-02-02 04:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:53", + "echoMap": {}, + "alarmNo": "1390157449", + "alarmDate": "1769978801007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113226674407508", + "createdBy": null, + "createdTime": "2026-02-02 04:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:08", + "echoMap": {}, + "alarmNo": "1390157450", + "alarmDate": "1769978816079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113226674407599", + "createdBy": null, + "createdTime": "2026-02-02 04:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:06", + "echoMap": {}, + "alarmNo": "1390157451", + "alarmDate": "1769978825966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113230969374739", + "createdBy": null, + "createdTime": "2026-02-02 04:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:19", + "echoMap": {}, + "alarmNo": "1390157452", + "alarmDate": "1769979377872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113252444211251", + "createdBy": null, + "createdTime": "2026-02-02 06:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:21", + "echoMap": {}, + "alarmNo": "1390157453", + "alarmDate": "1769984179628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060057", + "deviceName": "[209](10)水城2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113252444211441", + "createdBy": null, + "createdTime": "2026-02-02 06:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:48", + "echoMap": {}, + "alarmNo": "1390157454", + "alarmDate": "1769985406929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060046", + "deviceName": "[210](10)水城3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034145830", + "createdBy": null, + "createdTime": "2026-02-02 06:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:32", + "echoMap": {}, + "alarmNo": "1390157455", + "alarmDate": "1769985990880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034145861", + "createdBy": null, + "createdTime": "2026-02-02 06:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:04", + "echoMap": {}, + "alarmNo": "1390157456", + "alarmDate": "1769986010772", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060047", + "deviceName": "[330](10)水城3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034145985", + "createdBy": null, + "createdTime": "2026-02-02 06:56:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:39", + "echoMap": {}, + "alarmNo": "1390157457", + "alarmDate": "1769986570129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060047", + "deviceName": "[330](10)水城3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146005", + "createdBy": null, + "createdTime": "2026-02-02 06:56:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:30", + "echoMap": {}, + "alarmNo": "1390157458", + "alarmDate": "1769986583754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146022", + "createdBy": null, + "createdTime": "2026-02-02 06:56:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:37", + "echoMap": {}, + "alarmNo": "1390157459", + "alarmDate": "1769986591243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060059", + "deviceName": "[316](10)水城2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146057", + "createdBy": null, + "createdTime": "2026-02-02 06:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:01", + "echoMap": {}, + "alarmNo": "1390157460", + "alarmDate": "1769986615385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060059", + "deviceName": "[316](10)水城2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146185", + "createdBy": null, + "createdTime": "2026-02-02 07:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:56", + "echoMap": {}, + "alarmNo": "1390157461", + "alarmDate": "1769987210343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146292", + "createdBy": null, + "createdTime": "2026-02-02 07:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:13", + "echoMap": {}, + "alarmNo": "1390157462", + "alarmDate": "1769987770483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146298", + "createdBy": null, + "createdTime": "2026-02-02 07:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:45", + "echoMap": {}, + "alarmNo": "1390157463", + "alarmDate": "1769987798944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060059", + "deviceName": "[316](10)水城2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146309", + "createdBy": null, + "createdTime": "2026-02-02 07:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:16", + "echoMap": {}, + "alarmNo": "1390157464", + "alarmDate": "1769987829641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113265329113122", + "createdBy": null, + "createdTime": "2026-02-02 07:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:40", + "echoMap": {}, + "alarmNo": "1390157465", + "alarmDate": "1769988393900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113265329113131", + "createdBy": null, + "createdTime": "2026-02-02 07:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:39", + "echoMap": {}, + "alarmNo": "1390157466", + "alarmDate": "1769988424920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080595", + "createdBy": null, + "createdTime": "2026-02-02 07:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:49", + "echoMap": {}, + "alarmNo": "1390157467", + "alarmDate": "1769989607617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080610", + "createdBy": null, + "createdTime": "2026-02-02 07:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:34", + "echoMap": {}, + "alarmNo": "1390157468", + "alarmDate": "1769989623611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080683", + "createdBy": null, + "createdTime": "2026-02-02 07:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:52", + "echoMap": {}, + "alarmNo": "1390157469", + "alarmDate": "1769990093124", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1006060068", + "deviceName": "[308](10)水城1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080735", + "createdBy": null, + "createdTime": "2026-02-02 07:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:59", + "echoMap": {}, + "alarmNo": "1390157470", + "alarmDate": "1769990211904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080832", + "createdBy": null, + "createdTime": "2026-02-02 08:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:19", + "echoMap": {}, + "alarmNo": "1390157471", + "alarmDate": "1769990771104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080843", + "createdBy": null, + "createdTime": "2026-02-02 08:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:31", + "echoMap": {}, + "alarmNo": "1390157472", + "alarmDate": "1769990791240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113278214015426", + "createdBy": null, + "createdTime": "2026-02-02 08:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:07", + "echoMap": {}, + "alarmNo": "1390157473", + "alarmDate": "1769993226954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060088", + "deviceName": "[110](10)水城下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113286803949806", + "createdBy": null, + "createdTime": "2026-02-02 09:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:33", + "echoMap": {}, + "alarmNo": "1390157474", + "alarmDate": "1769994991949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113286803949983", + "createdBy": null, + "createdTime": "2026-02-02 09:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:47", + "echoMap": {}, + "alarmNo": "1390157475", + "alarmDate": "1769995606190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113295393884529", + "createdBy": null, + "createdTime": "2026-02-02 10:06:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:33", + "echoMap": {}, + "alarmNo": "1390157476", + "alarmDate": "1769997992298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723112526594738215", + "createdBy": null, + "createdTime": "2026-02-02 00:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:55", + "echoMap": {}, + "alarmNo": "1390157376", + "alarmDate": "1769962494400", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1006030004", + "deviceName": "安防箱4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1006" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113295393884529", + "createdBy": null, + "createdTime": "2026-02-02 10:06:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:33", + "echoMap": {}, + "alarmNo": "1390157476", + "alarmDate": "1769997992298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113286803949983", + "createdBy": null, + "createdTime": "2026-02-02 09:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:47", + "echoMap": {}, + "alarmNo": "1390157475", + "alarmDate": "1769995606190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113286803949806", + "createdBy": null, + "createdTime": "2026-02-02 09:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:33", + "echoMap": {}, + "alarmNo": "1390157474", + "alarmDate": "1769994991949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113278214015426", + "createdBy": null, + "createdTime": "2026-02-02 08:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:07", + "echoMap": {}, + "alarmNo": "1390157473", + "alarmDate": "1769993226954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060088", + "deviceName": "[110](10)水城下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080843", + "createdBy": null, + "createdTime": "2026-02-02 08:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:31", + "echoMap": {}, + "alarmNo": "1390157472", + "alarmDate": "1769990791240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080832", + "createdBy": null, + "createdTime": "2026-02-02 08:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:19", + "echoMap": {}, + "alarmNo": "1390157471", + "alarmDate": "1769990771104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080735", + "createdBy": null, + "createdTime": "2026-02-02 07:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:59", + "echoMap": {}, + "alarmNo": "1390157470", + "alarmDate": "1769990211904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080683", + "createdBy": null, + "createdTime": "2026-02-02 07:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:52", + "echoMap": {}, + "alarmNo": "1390157469", + "alarmDate": "1769990093124", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1006060068", + "deviceName": "[308](10)水城1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080610", + "createdBy": null, + "createdTime": "2026-02-02 07:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:34", + "echoMap": {}, + "alarmNo": "1390157468", + "alarmDate": "1769989623611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113269624080595", + "createdBy": null, + "createdTime": "2026-02-02 07:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:49", + "echoMap": {}, + "alarmNo": "1390157467", + "alarmDate": "1769989607617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113265329113131", + "createdBy": null, + "createdTime": "2026-02-02 07:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:39", + "echoMap": {}, + "alarmNo": "1390157466", + "alarmDate": "1769988424920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113265329113122", + "createdBy": null, + "createdTime": "2026-02-02 07:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:40", + "echoMap": {}, + "alarmNo": "1390157465", + "alarmDate": "1769988393900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146309", + "createdBy": null, + "createdTime": "2026-02-02 07:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:16", + "echoMap": {}, + "alarmNo": "1390157464", + "alarmDate": "1769987829641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146298", + "createdBy": null, + "createdTime": "2026-02-02 07:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:45", + "echoMap": {}, + "alarmNo": "1390157463", + "alarmDate": "1769987798944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060059", + "deviceName": "[316](10)水城2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146292", + "createdBy": null, + "createdTime": "2026-02-02 07:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:13", + "echoMap": {}, + "alarmNo": "1390157462", + "alarmDate": "1769987770483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146185", + "createdBy": null, + "createdTime": "2026-02-02 07:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:56", + "echoMap": {}, + "alarmNo": "1390157461", + "alarmDate": "1769987210343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146057", + "createdBy": null, + "createdTime": "2026-02-02 06:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:01", + "echoMap": {}, + "alarmNo": "1390157460", + "alarmDate": "1769986615385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060059", + "deviceName": "[316](10)水城2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146022", + "createdBy": null, + "createdTime": "2026-02-02 06:56:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:37", + "echoMap": {}, + "alarmNo": "1390157459", + "alarmDate": "1769986591243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060059", + "deviceName": "[316](10)水城2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034146005", + "createdBy": null, + "createdTime": "2026-02-02 06:56:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:30", + "echoMap": {}, + "alarmNo": "1390157458", + "alarmDate": "1769986583754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034145985", + "createdBy": null, + "createdTime": "2026-02-02 06:56:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:39", + "echoMap": {}, + "alarmNo": "1390157457", + "alarmDate": "1769986570129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060047", + "deviceName": "[330](10)水城3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034145861", + "createdBy": null, + "createdTime": "2026-02-02 06:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:04", + "echoMap": {}, + "alarmNo": "1390157456", + "alarmDate": "1769986010772", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060047", + "deviceName": "[330](10)水城3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113261034145830", + "createdBy": null, + "createdTime": "2026-02-02 06:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:32", + "echoMap": {}, + "alarmNo": "1390157455", + "alarmDate": "1769985990880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113252444211441", + "createdBy": null, + "createdTime": "2026-02-02 06:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:48", + "echoMap": {}, + "alarmNo": "1390157454", + "alarmDate": "1769985406929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060046", + "deviceName": "[210](10)水城3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113252444211251", + "createdBy": null, + "createdTime": "2026-02-02 06:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:21", + "echoMap": {}, + "alarmNo": "1390157453", + "alarmDate": "1769984179628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060057", + "deviceName": "[209](10)水城2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113230969374739", + "createdBy": null, + "createdTime": "2026-02-02 04:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:19", + "echoMap": {}, + "alarmNo": "1390157452", + "alarmDate": "1769979377872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060099", + "deviceName": "[703](10)水城水城-伊犁上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113226674407599", + "createdBy": null, + "createdTime": "2026-02-02 04:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:06", + "echoMap": {}, + "alarmNo": "1390157451", + "alarmDate": "1769978825966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113226674407508", + "createdBy": null, + "createdTime": "2026-02-02 04:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:08", + "echoMap": {}, + "alarmNo": "1390157450", + "alarmDate": "1769978816079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084473111", + "createdBy": null, + "createdTime": "2026-02-02 04:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:53", + "echoMap": {}, + "alarmNo": "1390157449", + "alarmDate": "1769978801007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084473030", + "createdBy": null, + "createdTime": "2026-02-02 04:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:44", + "echoMap": {}, + "alarmNo": "1390157448", + "alarmDate": "1769978792057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084472901", + "createdBy": null, + "createdTime": "2026-02-02 04:46:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:24", + "echoMap": {}, + "alarmNo": "1390157447", + "alarmDate": "1769978777636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113218084472833", + "createdBy": null, + "createdTime": "2026-02-02 04:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:22", + "echoMap": {}, + "alarmNo": "1390157446", + "alarmDate": "1769978770820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113209494538446", + "createdBy": null, + "createdTime": "2026-02-02 04:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:14", + "echoMap": {}, + "alarmNo": "1390157445", + "alarmDate": "1769978227891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113209494538325", + "createdBy": null, + "createdTime": "2026-02-02 04:36:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:01", + "echoMap": {}, + "alarmNo": "1390157444", + "alarmDate": "1769978214554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113209494538248", + "createdBy": null, + "createdTime": "2026-02-02 04:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:58", + "echoMap": {}, + "alarmNo": "1390157443", + "alarmDate": "1769978206683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113205199570979", + "createdBy": null, + "createdTime": "2026-02-02 04:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:50", + "echoMap": {}, + "alarmNo": "1390157442", + "alarmDate": "1769978203837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113200904603796", + "createdBy": null, + "createdTime": "2026-02-02 04:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:25", + "echoMap": {}, + "alarmNo": "1390157441", + "alarmDate": "1769978184314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113200904603765", + "createdBy": null, + "createdTime": "2026-02-02 04:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:34", + "echoMap": {}, + "alarmNo": "1390157440", + "alarmDate": "1769978181556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113200904603747", + "createdBy": null, + "createdTime": "2026-02-02 04:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:26", + "echoMap": {}, + "alarmNo": "1390157439", + "alarmDate": "1769978179816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113192314669353", + "createdBy": null, + "createdTime": "2026-02-02 04:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:52", + "echoMap": {}, + "alarmNo": "1390157438", + "alarmDate": "1769977793077", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1006060010", + "deviceName": "[344](10)水城1#轿厢", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113192314669216", + "createdBy": null, + "createdTime": "2026-02-02 04:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:11", + "echoMap": {}, + "alarmNo": "1390157437", + "alarmDate": "1769977618417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113192314669141", + "createdBy": null, + "createdTime": "2026-02-02 04:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:03", + "echoMap": {}, + "alarmNo": "1390157436", + "alarmDate": "1769977610537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113183724734743", + "createdBy": null, + "createdTime": "2026-02-02 04:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:46", + "echoMap": {}, + "alarmNo": "1390157435", + "alarmDate": "1769977594300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113183724734669", + "createdBy": null, + "createdTime": "2026-02-02 04:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:39", + "echoMap": {}, + "alarmNo": "1390157434", + "alarmDate": "1769977586529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113183724734522", + "createdBy": null, + "createdTime": "2026-02-02 04:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:22", + "echoMap": {}, + "alarmNo": "1390157433", + "alarmDate": "1769977570274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113175134800117", + "createdBy": null, + "createdTime": "2026-02-02 04:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:14", + "echoMap": {}, + "alarmNo": "1390157432", + "alarmDate": "1769977023402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113175134799888", + "createdBy": null, + "createdTime": "2026-02-02 04:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:58", + "echoMap": {}, + "alarmNo": "1390157431", + "alarmDate": "1769977000110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113175134799878", + "createdBy": null, + "createdTime": "2026-02-02 04:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:51", + "echoMap": {}, + "alarmNo": "1390157430", + "alarmDate": "1769976999296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113166544865382", + "createdBy": null, + "createdTime": "2026-02-02 04:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:27", + "echoMap": {}, + "alarmNo": "1390157429", + "alarmDate": "1769976975285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113166544865378", + "createdBy": null, + "createdTime": "2026-02-02 04:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:27", + "echoMap": {}, + "alarmNo": "1390157428", + "alarmDate": "1769976974969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113157954930855", + "createdBy": null, + "createdTime": "2026-02-02 04:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:03", + "echoMap": {}, + "alarmNo": "1390157427", + "alarmDate": "1769976411039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113157954930852", + "createdBy": null, + "createdTime": "2026-02-02 04:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:03", + "echoMap": {}, + "alarmNo": "1390157426", + "alarmDate": "1769976410876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113157954930778", + "createdBy": null, + "createdTime": "2026-02-02 04:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:44", + "echoMap": {}, + "alarmNo": "1390157425", + "alarmDate": "1769976403493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113149364996116", + "createdBy": null, + "createdTime": "2026-02-02 04:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:39", + "echoMap": {}, + "alarmNo": "1390157424", + "alarmDate": "1769976387057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113149364996111", + "createdBy": null, + "createdTime": "2026-02-02 04:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:39", + "echoMap": {}, + "alarmNo": "1390157423", + "alarmDate": "1769976386783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113123595192342", + "createdBy": null, + "createdTime": "2026-02-02 03:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:15", + "echoMap": {}, + "alarmNo": "1390157422", + "alarmDate": "1769975823909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113123595192327", + "createdBy": null, + "createdTime": "2026-02-02 03:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:15", + "echoMap": {}, + "alarmNo": "1390157421", + "alarmDate": "1769975822638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113110710290484", + "createdBy": null, + "createdTime": "2026-02-02 03:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:52", + "echoMap": {}, + "alarmNo": "1390157420", + "alarmDate": "1769975799760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113106415323272", + "createdBy": null, + "createdTime": "2026-02-02 03:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:45", + "echoMap": {}, + "alarmNo": "1390157419", + "alarmDate": "1769975792484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113102120355856", + "createdBy": null, + "createdTime": "2026-02-02 03:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:28", + "echoMap": {}, + "alarmNo": "1390157418", + "alarmDate": "1769975775785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113089235453956", + "createdBy": null, + "createdTime": "2026-02-02 03:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:20", + "echoMap": {}, + "alarmNo": "1390157417", + "alarmDate": "1769975228342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113072055584806", + "createdBy": null, + "createdTime": "2026-02-02 03:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:05", + "echoMap": {}, + "alarmNo": "1390157416", + "alarmDate": "1769975212599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113067760617486", + "createdBy": null, + "createdTime": "2026-02-02 03:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:57", + "echoMap": {}, + "alarmNo": "1390157415", + "alarmDate": "1769975204323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113063465650178", + "createdBy": null, + "createdTime": "2026-02-02 03:46:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:44", + "echoMap": {}, + "alarmNo": "1390157414", + "alarmDate": "1769975198204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113054875715595", + "createdBy": null, + "createdTime": "2026-02-02 03:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:41", + "echoMap": {}, + "alarmNo": "1390157413", + "alarmDate": "1769975188500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113046285781012", + "createdBy": null, + "createdTime": "2026-02-02 03:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:33", + "echoMap": {}, + "alarmNo": "1390157412", + "alarmDate": "1769975180252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113041990813711", + "createdBy": null, + "createdTime": "2026-02-02 03:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:20", + "echoMap": {}, + "alarmNo": "1390157411", + "alarmDate": "1769975174102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113029105911809", + "createdBy": null, + "createdTime": "2026-02-02 03:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:16", + "echoMap": {}, + "alarmNo": "1390157410", + "alarmDate": "1769974624330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113024810944529", + "createdBy": null, + "createdTime": "2026-02-02 03:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:03", + "echoMap": {}, + "alarmNo": "1390157409", + "alarmDate": "1769974621543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113011926042663", + "createdBy": null, + "createdTime": "2026-02-02 03:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:57", + "echoMap": {}, + "alarmNo": "1390157408", + "alarmDate": "1769974610952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113011926042645", + "createdBy": null, + "createdTime": "2026-02-02 03:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:01", + "echoMap": {}, + "alarmNo": "1390157407", + "alarmDate": "1769974609121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723113007631075329", + "createdBy": null, + "createdTime": "2026-02-02 03:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:52", + "echoMap": {}, + "alarmNo": "1390157406", + "alarmDate": "1769974601185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112986156238865", + "createdBy": null, + "createdTime": "2026-02-02 03:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:36", + "echoMap": {}, + "alarmNo": "1390157405", + "alarmDate": "1769974577968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112981861271593", + "createdBy": null, + "createdTime": "2026-02-02 03:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:29", + "echoMap": {}, + "alarmNo": "1390157404", + "alarmDate": "1769974576168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112956091467815", + "createdBy": null, + "createdTime": "2026-02-02 03:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:06", + "echoMap": {}, + "alarmNo": "1390157403", + "alarmDate": "1769974013818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112956091467806", + "createdBy": null, + "createdTime": "2026-02-02 03:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:05", + "echoMap": {}, + "alarmNo": "1390157402", + "alarmDate": "1769974013051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112938911598598", + "createdBy": null, + "createdTime": "2026-02-02 03:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:42", + "echoMap": {}, + "alarmNo": "1390157401", + "alarmDate": "1769973989687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112934616631337", + "createdBy": null, + "createdTime": "2026-02-02 03:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:41", + "echoMap": {}, + "alarmNo": "1390157400", + "alarmDate": "1769973989007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112908846827556", + "createdBy": null, + "createdTime": "2026-02-02 03:17:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:17", + "echoMap": {}, + "alarmNo": "1390157399", + "alarmDate": "1769973425838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112904551860249", + "createdBy": null, + "createdTime": "2026-02-02 03:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:18", + "echoMap": {}, + "alarmNo": "1390157398", + "alarmDate": "1769973418562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112891666958366", + "createdBy": null, + "createdTime": "2026-02-02 03:16:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:54", + "echoMap": {}, + "alarmNo": "1390157397", + "alarmDate": "1769973401714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112887371991049", + "createdBy": null, + "createdTime": "2026-02-02 03:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:47", + "echoMap": {}, + "alarmNo": "1390157396", + "alarmDate": "1769973393556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112883077023758", + "createdBy": null, + "createdTime": "2026-02-02 03:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:29", + "echoMap": {}, + "alarmNo": "1390157395", + "alarmDate": "1769973387832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112874487089154", + "createdBy": null, + "createdTime": "2026-02-02 03:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:30", + "echoMap": {}, + "alarmNo": "1390157394", + "alarmDate": "1769973377749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112865897154579", + "createdBy": null, + "createdTime": "2026-02-02 03:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:22", + "echoMap": {}, + "alarmNo": "1390157393", + "alarmDate": "1769973370448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112844422318086", + "createdBy": null, + "createdTime": "2026-02-02 03:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:07", + "echoMap": {}, + "alarmNo": "1390157392", + "alarmDate": "1769972814542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112835832383517", + "createdBy": null, + "createdTime": "2026-02-02 03:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:58", + "echoMap": {}, + "alarmNo": "1390157391", + "alarmDate": "1769972806287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112822947481634", + "createdBy": null, + "createdTime": "2026-02-02 03:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:42", + "echoMap": {}, + "alarmNo": "1390157390", + "alarmDate": "1769972790424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112814357547049", + "createdBy": null, + "createdTime": "2026-02-02 03:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:34", + "echoMap": {}, + "alarmNo": "1390157389", + "alarmDate": "1769972782157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060049", + "deviceName": "[327](10)水城3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112805767612442", + "createdBy": null, + "createdTime": "2026-02-02 03:06:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:18", + "echoMap": {}, + "alarmNo": "1390157388", + "alarmDate": "1769972770479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060048", + "deviceName": "[328](10)水城3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112762817939601", + "createdBy": null, + "createdTime": "2026-02-02 02:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:05", + "echoMap": {}, + "alarmNo": "1390157387", + "alarmDate": "1769971618750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112762817939547", + "createdBy": null, + "createdTime": "2026-02-02 02:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:47", + "echoMap": {}, + "alarmNo": "1390157386", + "alarmDate": "1769971606082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112762817939492", + "createdBy": null, + "createdTime": "2026-02-02 02:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:41", + "echoMap": {}, + "alarmNo": "1390157385", + "alarmDate": "1769971594785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112676918593552", + "createdBy": null, + "createdTime": "2026-02-02 02:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:50", + "echoMap": {}, + "alarmNo": "1390157384", + "alarmDate": "1769969208863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112629673953306", + "createdBy": null, + "createdTime": "2026-02-02 01:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:15", + "echoMap": {}, + "alarmNo": "1390157383", + "alarmDate": "1769967974108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112625378986016", + "createdBy": null, + "createdTime": "2026-02-02 01:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:37", + "echoMap": {}, + "alarmNo": "1390157382", + "alarmDate": "1769967428176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060060", + "deviceName": "[317](10)水城2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112625378986003", + "createdBy": null, + "createdTime": "2026-02-02 01:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:07", + "echoMap": {}, + "alarmNo": "1390157381", + "alarmDate": "1769967425976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112582429313101", + "createdBy": null, + "createdTime": "2026-02-02 01:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:58", + "echoMap": {}, + "alarmNo": "1390157380", + "alarmDate": "1769966217518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060087", + "deviceName": "[109](10)水城下行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112560954476563", + "createdBy": null, + "createdTime": "2026-02-02 01:06:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:11", + "echoMap": {}, + "alarmNo": "1390157379", + "alarmDate": "1769965600968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060086", + "deviceName": "[112](10)水城下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112556659509261", + "createdBy": null, + "createdTime": "2026-02-02 01:06:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:18", + "echoMap": {}, + "alarmNo": "1390157378", + "alarmDate": "1769965576999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060039", + "deviceName": "[203](10)水城厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112556659509253", + "createdBy": null, + "createdTime": "2026-02-02 01:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:28", + "echoMap": {}, + "alarmNo": "1390157377", + "alarmDate": "1769965575917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1006060086", + "deviceName": "[112](10)水城下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1006" + }, + { + "id": "723112526594738215", + "createdBy": null, + "createdTime": "2026-02-02 00:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:55", + "echoMap": {}, + "alarmNo": "1390157376", + "alarmDate": "1769962494400", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1006030004", + "deviceName": "安防箱4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1006" + } + ] + }, + "1007": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112891665304667", + "createdBy": null, + "createdTime": "2026-02-02 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:10", + "echoMap": {}, + "alarmNo": "1410356470", + "alarmDate": "1769961608655", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304695", + "createdBy": null, + "createdTime": "2026-02-02 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:12", + "echoMap": {}, + "alarmNo": "1410356471", + "alarmDate": "1769961610647", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304741", + "createdBy": null, + "createdTime": "2026-02-02 00:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:24", + "echoMap": {}, + "alarmNo": "1410356472", + "alarmDate": "1769961617666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304791", + "createdBy": null, + "createdTime": "2026-02-02 00:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:31", + "echoMap": {}, + "alarmNo": "1410356473", + "alarmDate": "1769961624608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112895960271891", + "createdBy": null, + "createdTime": "2026-02-02 00:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:39", + "echoMap": {}, + "alarmNo": "1410356474", + "alarmDate": "1769961627176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112900255239266", + "createdBy": null, + "createdTime": "2026-02-02 00:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:56", + "echoMap": {}, + "alarmNo": "1410356475", + "alarmDate": "1769961649546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112900255239288", + "createdBy": null, + "createdTime": "2026-02-02 00:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:53", + "echoMap": {}, + "alarmNo": "1410356476", + "alarmDate": "1769961652364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112908845173960", + "createdBy": null, + "createdTime": "2026-02-02 00:10:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:12", + "echoMap": {}, + "alarmNo": "1410356477", + "alarmDate": "1769962209833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112913140141072", + "createdBy": null, + "createdTime": "2026-02-02 00:10:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:19", + "echoMap": {}, + "alarmNo": "1410356478", + "alarmDate": "1769962212710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112913140141094", + "createdBy": null, + "createdTime": "2026-02-02 00:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:21", + "echoMap": {}, + "alarmNo": "1410356479", + "alarmDate": "1769962215420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108404", + "createdBy": null, + "createdTime": "2026-02-02 00:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:30", + "echoMap": {}, + "alarmNo": "1410356480", + "alarmDate": "1769962228909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108412", + "createdBy": null, + "createdTime": "2026-02-02 00:10:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:42", + "echoMap": {}, + "alarmNo": "1410356481", + "alarmDate": "1769962229841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108464", + "createdBy": null, + "createdTime": "2026-02-02 00:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:43", + "echoMap": {}, + "alarmNo": "1410356482", + "alarmDate": "1769962236843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108508", + "createdBy": null, + "createdTime": "2026-02-02 00:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:43", + "echoMap": {}, + "alarmNo": "1410356483", + "alarmDate": "1769962241919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112921730075665", + "createdBy": null, + "createdTime": "2026-02-02 00:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:06", + "echoMap": {}, + "alarmNo": "1410356484", + "alarmDate": "1769962253953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112921730075715", + "createdBy": null, + "createdTime": "2026-02-02 00:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:07", + "echoMap": {}, + "alarmNo": "1410356485", + "alarmDate": "1769962260821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112934614977602", + "createdBy": null, + "createdTime": "2026-02-02 00:20:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:29", + "echoMap": {}, + "alarmNo": "1410356486", + "alarmDate": "1769962817137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112934614977652", + "createdBy": null, + "createdTime": "2026-02-02 00:20:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:30", + "echoMap": {}, + "alarmNo": "1410356487", + "alarmDate": "1769962823982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112934614977677", + "createdBy": null, + "createdTime": "2026-02-02 00:20:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:33", + "echoMap": {}, + "alarmNo": "1410356488", + "alarmDate": "1769962826767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944843", + "createdBy": null, + "createdTime": "2026-02-02 00:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:41", + "echoMap": {}, + "alarmNo": "1410356489", + "alarmDate": "1769962840226", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944853", + "createdBy": null, + "createdTime": "2026-02-02 00:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:53", + "echoMap": {}, + "alarmNo": "1410356490", + "alarmDate": "1769962841258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944863", + "createdBy": null, + "createdTime": "2026-02-02 00:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:43", + "echoMap": {}, + "alarmNo": "1410356491", + "alarmDate": "1769962842331", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944907", + "createdBy": null, + "createdTime": "2026-02-02 00:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:54", + "echoMap": {}, + "alarmNo": "1410356492", + "alarmDate": "1769962848089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112943204912149", + "createdBy": null, + "createdTime": "2026-02-02 00:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:03", + "echoMap": {}, + "alarmNo": "1410356493", + "alarmDate": "1769962850853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112943204912256", + "createdBy": null, + "createdTime": "2026-02-02 00:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:16", + "echoMap": {}, + "alarmNo": "1410356494", + "alarmDate": "1769962865259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112943204912276", + "createdBy": null, + "createdTime": "2026-02-02 00:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:18", + "echoMap": {}, + "alarmNo": "1410356495", + "alarmDate": "1769962868025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846733", + "createdBy": null, + "createdTime": "2026-02-02 00:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:17", + "echoMap": {}, + "alarmNo": "1410356496", + "alarmDate": "1769963411298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846854", + "createdBy": null, + "createdTime": "2026-02-02 00:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:38", + "echoMap": {}, + "alarmNo": "1410356497", + "alarmDate": "1769963426127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846875", + "createdBy": null, + "createdTime": "2026-02-02 00:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:41", + "echoMap": {}, + "alarmNo": "1410356498", + "alarmDate": "1769963428465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846909", + "createdBy": null, + "createdTime": "2026-02-02 00:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:33", + "echoMap": {}, + "alarmNo": "1410356499", + "alarmDate": "1769963432102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846945", + "createdBy": null, + "createdTime": "2026-02-02 00:30:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:41", + "echoMap": {}, + "alarmNo": "1410356500", + "alarmDate": "1769963435420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112960384781346", + "createdBy": null, + "createdTime": "2026-02-02 00:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:56", + "echoMap": {}, + "alarmNo": "1410356501", + "alarmDate": "1769963450091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112960384781370", + "createdBy": null, + "createdTime": "2026-02-02 00:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:05", + "echoMap": {}, + "alarmNo": "1410356502", + "alarmDate": "1769963452556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112960384781431", + "createdBy": null, + "createdTime": "2026-02-02 00:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:05", + "echoMap": {}, + "alarmNo": "1410356503", + "alarmDate": "1769963459418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974715973", + "createdBy": null, + "createdTime": "2026-02-02 00:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:13", + "echoMap": {}, + "alarmNo": "1410356504", + "alarmDate": "1769964010471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974716018", + "createdBy": null, + "createdTime": "2026-02-02 00:40:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:28", + "echoMap": {}, + "alarmNo": "1410356505", + "alarmDate": "1769964015745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974716069", + "createdBy": null, + "createdTime": "2026-02-02 00:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:23", + "echoMap": {}, + "alarmNo": "1410356506", + "alarmDate": "1769964021789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974716078", + "createdBy": null, + "createdTime": "2026-02-02 00:40:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:30", + "echoMap": {}, + "alarmNo": "1410356507", + "alarmDate": "1769964022571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112973269683251", + "createdBy": null, + "createdTime": "2026-02-02 00:40:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:35", + "echoMap": {}, + "alarmNo": "1410356508", + "alarmDate": "1769964033836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112977564650512", + "createdBy": null, + "createdTime": "2026-02-02 00:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:52", + "echoMap": {}, + "alarmNo": "1410356509", + "alarmDate": "1769964039888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112977564650542", + "createdBy": null, + "createdTime": "2026-02-02 00:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:55", + "echoMap": {}, + "alarmNo": "1410356510", + "alarmDate": "1769964043470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112977564650710", + "createdBy": null, + "createdTime": "2026-02-02 00:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:16", + "echoMap": {}, + "alarmNo": "1410356511", + "alarmDate": "1769964063840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112986154585188", + "createdBy": null, + "createdTime": "2026-02-02 00:50:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:17", + "echoMap": {}, + "alarmNo": "1410356512", + "alarmDate": "1769964610846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112986154585269", + "createdBy": null, + "createdTime": "2026-02-02 00:50:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:21", + "echoMap": {}, + "alarmNo": "1410356513", + "alarmDate": "1769964620139", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112990449552396", + "createdBy": null, + "createdTime": "2026-02-02 00:50:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:25", + "echoMap": {}, + "alarmNo": "1410356514", + "alarmDate": "1769964624135", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112990449552421", + "createdBy": null, + "createdTime": "2026-02-02 00:50:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:39", + "echoMap": {}, + "alarmNo": "1410356515", + "alarmDate": "1769964627148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112994744519824", + "createdBy": null, + "createdTime": "2026-02-02 00:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:04", + "echoMap": {}, + "alarmNo": "1410356516", + "alarmDate": "1769964651204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112999039486989", + "createdBy": null, + "createdTime": "2026-02-02 00:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:07", + "echoMap": {}, + "alarmNo": "1410356517", + "alarmDate": "1769964665738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113003334454389", + "createdBy": null, + "createdTime": "2026-02-02 01:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:13", + "echoMap": {}, + "alarmNo": "1410356518", + "alarmDate": "1769965210094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113003334454416", + "createdBy": null, + "createdTime": "2026-02-02 01:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:14", + "echoMap": {}, + "alarmNo": "1410356519", + "alarmDate": "1769965212937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113003334454440", + "createdBy": null, + "createdTime": "2026-02-02 01:00:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:27", + "echoMap": {}, + "alarmNo": "1410356520", + "alarmDate": "1769965215367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113011924388933", + "createdBy": null, + "createdTime": "2026-02-02 01:00:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:51", + "echoMap": {}, + "alarmNo": "1410356521", + "alarmDate": "1769965239447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113011924389046", + "createdBy": null, + "createdTime": "2026-02-02 01:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:54", + "echoMap": {}, + "alarmNo": "1410356522", + "alarmDate": "1769965253428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113016219356195", + "createdBy": null, + "createdTime": "2026-02-02 01:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:15", + "echoMap": {}, + "alarmNo": "1410356523", + "alarmDate": "1769965263527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113020514323608", + "createdBy": null, + "createdTime": "2026-02-02 01:10:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:12", + "echoMap": {}, + "alarmNo": "1410356524", + "alarmDate": "1769965809485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113020514323673", + "createdBy": null, + "createdTime": "2026-02-02 01:10:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:17", + "echoMap": {}, + "alarmNo": "1410356525", + "alarmDate": "1769965816410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113024809290780", + "createdBy": null, + "createdTime": "2026-02-02 01:10:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:39", + "echoMap": {}, + "alarmNo": "1410356526", + "alarmDate": "1769965826726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113024809290812", + "createdBy": null, + "createdTime": "2026-02-02 01:10:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:36", + "echoMap": {}, + "alarmNo": "1410356527", + "alarmDate": "1769965830396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258109", + "createdBy": null, + "createdTime": "2026-02-02 01:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:40", + "echoMap": {}, + "alarmNo": "1410356528", + "alarmDate": "1769965838797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258196", + "createdBy": null, + "createdTime": "2026-02-02 01:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:03", + "echoMap": {}, + "alarmNo": "1410356529", + "alarmDate": "1769965850757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258216", + "createdBy": null, + "createdTime": "2026-02-02 01:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:54", + "echoMap": {}, + "alarmNo": "1410356530", + "alarmDate": "1769965852770", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258260", + "createdBy": null, + "createdTime": "2026-02-02 01:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:59", + "echoMap": {}, + "alarmNo": "1410356531", + "alarmDate": "1769965857896", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113037694192759", + "createdBy": null, + "createdTime": "2026-02-02 01:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:42", + "echoMap": {}, + "alarmNo": "1410356532", + "alarmDate": "1769966411715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113037694192779", + "createdBy": null, + "createdTime": "2026-02-02 01:20:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:26", + "echoMap": {}, + "alarmNo": "1410356533", + "alarmDate": "1769966413923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113046284127301", + "createdBy": null, + "createdTime": "2026-02-02 01:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:50", + "echoMap": {}, + "alarmNo": "1410356534", + "alarmDate": "1769966438968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113046284127367", + "createdBy": null, + "createdTime": "2026-02-02 01:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:47", + "echoMap": {}, + "alarmNo": "1410356535", + "alarmDate": "1769966446484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113050579094564", + "createdBy": null, + "createdTime": "2026-02-02 01:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:14", + "echoMap": {}, + "alarmNo": "1410356536", + "alarmDate": "1769966462072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113063463996430", + "createdBy": null, + "createdTime": "2026-02-02 01:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:38", + "echoMap": {}, + "alarmNo": "1410356537", + "alarmDate": "1769967026206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113063463996456", + "createdBy": null, + "createdTime": "2026-02-02 01:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:41", + "echoMap": {}, + "alarmNo": "1410356538", + "alarmDate": "1769967029030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113063463996505", + "createdBy": null, + "createdTime": "2026-02-02 01:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:35", + "echoMap": {}, + "alarmNo": "1410356539", + "alarmDate": "1769967034124", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113067758963719", + "createdBy": null, + "createdTime": "2026-02-02 01:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:51", + "echoMap": {}, + "alarmNo": "1410356540", + "alarmDate": "1769967050128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113067758963722", + "createdBy": null, + "createdTime": "2026-02-02 01:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:02", + "echoMap": {}, + "alarmNo": "1410356541", + "alarmDate": "1769967050348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113067758963748", + "createdBy": null, + "createdTime": "2026-02-02 01:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:59", + "echoMap": {}, + "alarmNo": "1410356542", + "alarmDate": "1769967053025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113076348898335", + "createdBy": null, + "createdTime": "2026-02-02 01:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:34", + "echoMap": {}, + "alarmNo": "1410356543", + "alarmDate": "1769967610214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113076348898369", + "createdBy": null, + "createdTime": "2026-02-02 01:40:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:26", + "echoMap": {}, + "alarmNo": "1410356544", + "alarmDate": "1769967613503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113080643865756", + "createdBy": null, + "createdTime": "2026-02-02 01:40:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:34", + "echoMap": {}, + "alarmNo": "1410356545", + "alarmDate": "1769967632674", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113080643865776", + "createdBy": null, + "createdTime": "2026-02-02 01:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:36", + "echoMap": {}, + "alarmNo": "1410356546", + "alarmDate": "1769967634593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113080643865796", + "createdBy": null, + "createdTime": "2026-02-02 01:40:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:38", + "echoMap": {}, + "alarmNo": "1410356547", + "alarmDate": "1769967636656", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113084938832904", + "createdBy": null, + "createdTime": "2026-02-02 01:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:50", + "echoMap": {}, + "alarmNo": "1410356548", + "alarmDate": "1769967637526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113089233800371", + "createdBy": null, + "createdTime": "2026-02-02 01:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:07", + "echoMap": {}, + "alarmNo": "1410356549", + "alarmDate": "1769967666429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113089233800382", + "createdBy": null, + "createdTime": "2026-02-02 01:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:13", + "echoMap": {}, + "alarmNo": "1410356550", + "alarmDate": "1769967667626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113102118702082", + "createdBy": null, + "createdTime": "2026-02-02 01:50:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:28", + "echoMap": {}, + "alarmNo": "1410356551", + "alarmDate": "1769968227243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113102118702116", + "createdBy": null, + "createdTime": "2026-02-02 01:50:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:37", + "echoMap": {}, + "alarmNo": "1410356552", + "alarmDate": "1769968230824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113106413669539", + "createdBy": null, + "createdTime": "2026-02-02 01:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:01", + "echoMap": {}, + "alarmNo": "1410356553", + "alarmDate": "1769968255001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113110708636724", + "createdBy": null, + "createdTime": "2026-02-02 01:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:07", + "echoMap": {}, + "alarmNo": "1410356554", + "alarmDate": "1769968265803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604153", + "createdBy": null, + "createdTime": "2026-02-02 02:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:14", + "echoMap": {}, + "alarmNo": "1410356555", + "alarmDate": "1769968813121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604199", + "createdBy": null, + "createdTime": "2026-02-02 02:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:24", + "echoMap": {}, + "alarmNo": "1410356556", + "alarmDate": "1769968818290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604228", + "createdBy": null, + "createdTime": "2026-02-02 02:00:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:22", + "echoMap": {}, + "alarmNo": "1410356557", + "alarmDate": "1769968821199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604397", + "createdBy": null, + "createdTime": "2026-02-02 02:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:48", + "echoMap": {}, + "alarmNo": "1410356558", + "alarmDate": "1769968842251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538589", + "createdBy": null, + "createdTime": "2026-02-02 02:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:04", + "echoMap": {}, + "alarmNo": "1410356559", + "alarmDate": "1769968863431", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538614", + "createdBy": null, + "createdTime": "2026-02-02 02:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:12", + "echoMap": {}, + "alarmNo": "1410356560", + "alarmDate": "1769968866390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538625", + "createdBy": null, + "createdTime": "2026-02-02 02:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:08", + "echoMap": {}, + "alarmNo": "1410356561", + "alarmDate": "1769968867484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538800", + "createdBy": null, + "createdTime": "2026-02-02 02:10:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:12", + "echoMap": {}, + "alarmNo": "1410356562", + "alarmDate": "1769969410664", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538857", + "createdBy": null, + "createdTime": "2026-02-02 02:10:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:19", + "echoMap": {}, + "alarmNo": "1410356563", + "alarmDate": "1769969417684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538868", + "createdBy": null, + "createdTime": "2026-02-02 02:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:20", + "echoMap": {}, + "alarmNo": "1410356564", + "alarmDate": "1769969418700", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538891", + "createdBy": null, + "createdTime": "2026-02-02 02:10:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:33", + "echoMap": {}, + "alarmNo": "1410356565", + "alarmDate": "1769969421399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538967", + "createdBy": null, + "createdTime": "2026-02-02 02:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:37", + "echoMap": {}, + "alarmNo": "1410356566", + "alarmDate": "1769969430631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593539043", + "createdBy": null, + "createdTime": "2026-02-02 02:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:41", + "echoMap": {}, + "alarmNo": "1410356567", + "alarmDate": "1769969439583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113127888505895", + "createdBy": null, + "createdTime": "2026-02-02 02:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:51", + "echoMap": {}, + "alarmNo": "1410356568", + "alarmDate": "1769969445360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113127888505970", + "createdBy": null, + "createdTime": "2026-02-02 02:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:01", + "echoMap": {}, + "alarmNo": "1410356569", + "alarmDate": "1769969454750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113127888506009", + "createdBy": null, + "createdTime": "2026-02-02 02:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:00", + "echoMap": {}, + "alarmNo": "1410356570", + "alarmDate": "1769969459072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473409", + "createdBy": null, + "createdTime": "2026-02-02 02:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:24", + "echoMap": {}, + "alarmNo": "1410356571", + "alarmDate": "1769970017733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473530", + "createdBy": null, + "createdTime": "2026-02-02 02:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:45", + "echoMap": {}, + "alarmNo": "1410356572", + "alarmDate": "1769970033497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473556", + "createdBy": null, + "createdTime": "2026-02-02 02:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:42", + "echoMap": {}, + "alarmNo": "1410356573", + "alarmDate": "1769970036410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473606", + "createdBy": null, + "createdTime": "2026-02-02 02:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:48", + "echoMap": {}, + "alarmNo": "1410356574", + "alarmDate": "1769970041739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473644", + "createdBy": null, + "createdTime": "2026-02-02 02:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:46", + "echoMap": {}, + "alarmNo": "1410356575", + "alarmDate": "1769970045531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113136478440578", + "createdBy": null, + "createdTime": "2026-02-02 02:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:11", + "echoMap": {}, + "alarmNo": "1410356576", + "alarmDate": "1769970065844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773407935", + "createdBy": null, + "createdTime": "2026-02-02 02:30:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:18", + "echoMap": {}, + "alarmNo": "1410356577", + "alarmDate": "1769970616740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408010", + "createdBy": null, + "createdTime": "2026-02-02 02:30:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:33", + "echoMap": {}, + "alarmNo": "1410356578", + "alarmDate": "1769970626784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408029", + "createdBy": null, + "createdTime": "2026-02-02 02:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:42", + "echoMap": {}, + "alarmNo": "1410356579", + "alarmDate": "1769970629033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408162", + "createdBy": null, + "createdTime": "2026-02-02 02:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:46", + "echoMap": {}, + "alarmNo": "1410356580", + "alarmDate": "1769970645251", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408215", + "createdBy": null, + "createdTime": "2026-02-02 02:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:53", + "echoMap": {}, + "alarmNo": "1410356581", + "alarmDate": "1769970652249", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408225", + "createdBy": null, + "createdTime": "2026-02-02 02:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:05", + "echoMap": {}, + "alarmNo": "1410356582", + "alarmDate": "1769970653157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408236", + "createdBy": null, + "createdTime": "2026-02-02 02:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:55", + "echoMap": {}, + "alarmNo": "1410356583", + "alarmDate": "1769970654123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342563", + "createdBy": null, + "createdTime": "2026-02-02 02:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:23", + "echoMap": {}, + "alarmNo": "1410356584", + "alarmDate": "1769971217401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342585", + "createdBy": null, + "createdTime": "2026-02-02 02:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:44", + "echoMap": {}, + "alarmNo": "1410356585", + "alarmDate": "1769971219984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342741", + "createdBy": null, + "createdTime": "2026-02-02 02:40:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:40", + "echoMap": {}, + "alarmNo": "1410356586", + "alarmDate": "1769971238671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342769", + "createdBy": null, + "createdTime": "2026-02-02 02:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:54", + "echoMap": {}, + "alarmNo": "1410356587", + "alarmDate": "1769971241389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113153658309665", + "createdBy": null, + "createdTime": "2026-02-02 02:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:11", + "echoMap": {}, + "alarmNo": "1410356588", + "alarmDate": "1769971265533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277184", + "createdBy": null, + "createdTime": "2026-02-02 02:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:27", + "echoMap": {}, + "alarmNo": "1410356589", + "alarmDate": "1769971826317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277206", + "createdBy": null, + "createdTime": "2026-02-02 02:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:41", + "echoMap": {}, + "alarmNo": "1410356590", + "alarmDate": "1769971828676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277371", + "createdBy": null, + "createdTime": "2026-02-02 02:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:55", + "echoMap": {}, + "alarmNo": "1410356591", + "alarmDate": "1769971850332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277385", + "createdBy": null, + "createdTime": "2026-02-02 02:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:52", + "echoMap": {}, + "alarmNo": "1410356592", + "alarmDate": "1769971851542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277399", + "createdBy": null, + "createdTime": "2026-02-02 02:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:05", + "echoMap": {}, + "alarmNo": "1410356593", + "alarmDate": "1769971852818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211672", + "createdBy": null, + "createdTime": "2026-02-02 03:00:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:28", + "echoMap": {}, + "alarmNo": "1410356594", + "alarmDate": "1769972415966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211747", + "createdBy": null, + "createdTime": "2026-02-02 03:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:26", + "echoMap": {}, + "alarmNo": "1410356595", + "alarmDate": "1769972424994", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211754", + "createdBy": null, + "createdTime": "2026-02-02 03:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:38", + "echoMap": {}, + "alarmNo": "1410356596", + "alarmDate": "1769972425668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211831", + "createdBy": null, + "createdTime": "2026-02-02 03:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:35", + "echoMap": {}, + "alarmNo": "1410356597", + "alarmDate": "1769972434115", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211881", + "createdBy": null, + "createdTime": "2026-02-02 03:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:52", + "echoMap": {}, + "alarmNo": "1410356598", + "alarmDate": "1769972440041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211992", + "createdBy": null, + "createdTime": "2026-02-02 03:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:55", + "echoMap": {}, + "alarmNo": "1410356599", + "alarmDate": "1769972454027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543212067", + "createdBy": null, + "createdTime": "2026-02-02 03:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:09", + "echoMap": {}, + "alarmNo": "1410356600", + "alarmDate": "1769972464079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146298", + "createdBy": null, + "createdTime": "2026-02-02 03:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:20", + "echoMap": {}, + "alarmNo": "1410356601", + "alarmDate": "1769973019489", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146356", + "createdBy": null, + "createdTime": "2026-02-02 03:10:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:40", + "echoMap": {}, + "alarmNo": "1410356602", + "alarmDate": "1769973027289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146548", + "createdBy": null, + "createdTime": "2026-02-02 03:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:03", + "echoMap": {}, + "alarmNo": "1410356603", + "alarmDate": "1769973052274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146596", + "createdBy": null, + "createdTime": "2026-02-02 03:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:59", + "echoMap": {}, + "alarmNo": "1410356604", + "alarmDate": "1769973057953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723080809", + "createdBy": null, + "createdTime": "2026-02-02 03:20:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:12", + "echoMap": {}, + "alarmNo": "1410356605", + "alarmDate": "1769973610161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723080993", + "createdBy": null, + "createdTime": "2026-02-02 03:20:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:36", + "echoMap": {}, + "alarmNo": "1410356606", + "alarmDate": "1769973635191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081026", + "createdBy": null, + "createdTime": "2026-02-02 03:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:46", + "echoMap": {}, + "alarmNo": "1410356607", + "alarmDate": "1769973639598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081154", + "createdBy": null, + "createdTime": "2026-02-02 03:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:58", + "echoMap": {}, + "alarmNo": "1410356608", + "alarmDate": "1769973656718", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081207", + "createdBy": null, + "createdTime": "2026-02-02 03:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:33", + "echoMap": {}, + "alarmNo": "1410356609", + "alarmDate": "1769973663683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081240", + "createdBy": null, + "createdTime": "2026-02-02 03:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:16", + "echoMap": {}, + "alarmNo": "1410356610", + "alarmDate": "1769973667775", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113192313015577", + "createdBy": null, + "createdTime": "2026-02-02 03:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:40", + "echoMap": {}, + "alarmNo": "1410356611", + "alarmDate": "1769974238894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113192313015665", + "createdBy": null, + "createdTime": "2026-02-02 03:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:04", + "echoMap": {}, + "alarmNo": "1410356612", + "alarmDate": "1769974250880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113192313015678", + "createdBy": null, + "createdTime": "2026-02-02 03:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:53", + "echoMap": {}, + "alarmNo": "1410356613", + "alarmDate": "1769974252105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902949913", + "createdBy": null, + "createdTime": "2026-02-02 03:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:16", + "echoMap": {}, + "alarmNo": "1410356614", + "alarmDate": "1769974809604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902949961", + "createdBy": null, + "createdTime": "2026-02-02 03:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:27", + "echoMap": {}, + "alarmNo": "1410356615", + "alarmDate": "1769974815065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950130", + "createdBy": null, + "createdTime": "2026-02-02 03:40:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:38", + "echoMap": {}, + "alarmNo": "1410356616", + "alarmDate": "1769974836748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950151", + "createdBy": null, + "createdTime": "2026-02-02 03:40:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:51", + "echoMap": {}, + "alarmNo": "1410356617", + "alarmDate": "1769974839102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950335", + "createdBy": null, + "createdTime": "2026-02-02 03:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:14", + "echoMap": {}, + "alarmNo": "1410356618", + "alarmDate": "1769974863242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950371", + "createdBy": null, + "createdTime": "2026-02-02 03:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:19", + "echoMap": {}, + "alarmNo": "1410356619", + "alarmDate": "1769974867893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950377", + "createdBy": null, + "createdTime": "2026-02-02 03:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:39", + "echoMap": {}, + "alarmNo": "1410356620", + "alarmDate": "1769974868619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884620", + "createdBy": null, + "createdTime": "2026-02-02 03:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:38", + "echoMap": {}, + "alarmNo": "1410356621", + "alarmDate": "1769975426431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884699", + "createdBy": null, + "createdTime": "2026-02-02 03:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:37", + "echoMap": {}, + "alarmNo": "1410356622", + "alarmDate": "1769975435650", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884790", + "createdBy": null, + "createdTime": "2026-02-02 03:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1410356623", + "alarmDate": "1769975447111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884805", + "createdBy": null, + "createdTime": "2026-02-02 03:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:50", + "echoMap": {}, + "alarmNo": "1410356624", + "alarmDate": "1769975448642", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884870", + "createdBy": null, + "createdTime": "2026-02-02 03:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:03", + "echoMap": {}, + "alarmNo": "1410356625", + "alarmDate": "1769975456492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884876", + "createdBy": null, + "createdTime": "2026-02-02 03:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:03", + "echoMap": {}, + "alarmNo": "1410356626", + "alarmDate": "1769975456967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113213787851849", + "createdBy": null, + "createdTime": "2026-02-02 04:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1410356627", + "alarmDate": "1769976013689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819101", + "createdBy": null, + "createdTime": "2026-02-02 04:00:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:29", + "echoMap": {}, + "alarmNo": "1410356628", + "alarmDate": "1769976017250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819130", + "createdBy": null, + "createdTime": "2026-02-02 04:00:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1410356629", + "alarmDate": "1769976020102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819179", + "createdBy": null, + "createdTime": "2026-02-02 04:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1410356630", + "alarmDate": "1769976024807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819240", + "createdBy": null, + "createdTime": "2026-02-02 04:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:33", + "echoMap": {}, + "alarmNo": "1410356631", + "alarmDate": "1769976031923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819311", + "createdBy": null, + "createdTime": "2026-02-02 04:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:47", + "echoMap": {}, + "alarmNo": "1410356632", + "alarmDate": "1769976041375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819331", + "createdBy": null, + "createdTime": "2026-02-02 04:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:51", + "echoMap": {}, + "alarmNo": "1410356633", + "alarmDate": "1769976043704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819340", + "createdBy": null, + "createdTime": "2026-02-02 04:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:50", + "echoMap": {}, + "alarmNo": "1410356634", + "alarmDate": "1769976044106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819521", + "createdBy": null, + "createdTime": "2026-02-02 04:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:14", + "echoMap": {}, + "alarmNo": "1410356635", + "alarmDate": "1769976067813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819526", + "createdBy": null, + "createdTime": "2026-02-02 04:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:13", + "echoMap": {}, + "alarmNo": "1410356636", + "alarmDate": "1769976068258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753685", + "createdBy": null, + "createdTime": "2026-02-02 04:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:18", + "echoMap": {}, + "alarmNo": "1410356637", + "alarmDate": "1769976616544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753788", + "createdBy": null, + "createdTime": "2026-02-02 04:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:38", + "echoMap": {}, + "alarmNo": "1410356638", + "alarmDate": "1769976631029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753868", + "createdBy": null, + "createdTime": "2026-02-02 04:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:47", + "echoMap": {}, + "alarmNo": "1410356639", + "alarmDate": "1769976640697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753954", + "createdBy": null, + "createdTime": "2026-02-02 04:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:53", + "echoMap": {}, + "alarmNo": "1410356640", + "alarmDate": "1769976651680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753987", + "createdBy": null, + "createdTime": "2026-02-02 04:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:02", + "echoMap": {}, + "alarmNo": "1410356641", + "alarmDate": "1769976655994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113230967721014", + "createdBy": null, + "createdTime": "2026-02-02 04:20:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:15", + "echoMap": {}, + "alarmNo": "1410356642", + "alarmDate": "1769977214523", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688268", + "createdBy": null, + "createdTime": "2026-02-02 04:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:26", + "echoMap": {}, + "alarmNo": "1410356643", + "alarmDate": "1769977218712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688273", + "createdBy": null, + "createdTime": "2026-02-02 04:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:25", + "echoMap": {}, + "alarmNo": "1410356644", + "alarmDate": "1769977219294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688360", + "createdBy": null, + "createdTime": "2026-02-02 04:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:31", + "echoMap": {}, + "alarmNo": "1410356645", + "alarmDate": "1769977229521", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688462", + "createdBy": null, + "createdTime": "2026-02-02 04:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:49", + "echoMap": {}, + "alarmNo": "1410356646", + "alarmDate": "1769977243325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688618", + "createdBy": null, + "createdTime": "2026-02-02 04:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:04", + "echoMap": {}, + "alarmNo": "1410356647", + "alarmDate": "1769977264002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688621", + "createdBy": null, + "createdTime": "2026-02-02 04:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:05", + "echoMap": {}, + "alarmNo": "1410356648", + "alarmDate": "1769977264411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688641", + "createdBy": null, + "createdTime": "2026-02-02 04:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:07", + "echoMap": {}, + "alarmNo": "1410356649", + "alarmDate": "1769977266472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688652", + "createdBy": null, + "createdTime": "2026-02-02 04:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:13", + "echoMap": {}, + "alarmNo": "1410356650", + "alarmDate": "1769977267443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113239557655561", + "createdBy": null, + "createdTime": "2026-02-02 04:30:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:14", + "echoMap": {}, + "alarmNo": "1410356651", + "alarmDate": "1769977809933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113239557655590", + "createdBy": null, + "createdTime": "2026-02-02 04:30:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:14", + "echoMap": {}, + "alarmNo": "1410356652", + "alarmDate": "1769977812520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113239557655604", + "createdBy": null, + "createdTime": "2026-02-02 04:30:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:15", + "echoMap": {}, + "alarmNo": "1410356653", + "alarmDate": "1769977813621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113243852622948", + "createdBy": null, + "createdTime": "2026-02-02 04:30:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:37", + "echoMap": {}, + "alarmNo": "1410356654", + "alarmDate": "1769977830611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113243852623078", + "createdBy": null, + "createdTime": "2026-02-02 04:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:49", + "echoMap": {}, + "alarmNo": "1410356655", + "alarmDate": "1769977848118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113243852623130", + "createdBy": null, + "createdTime": "2026-02-02 04:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:01", + "echoMap": {}, + "alarmNo": "1410356656", + "alarmDate": "1769977854604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113248147590202", + "createdBy": null, + "createdTime": "2026-02-02 04:40:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:24", + "echoMap": {}, + "alarmNo": "1410356657", + "alarmDate": "1769978417890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557606", + "createdBy": null, + "createdTime": "2026-02-02 04:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:48", + "echoMap": {}, + "alarmNo": "1410356658", + "alarmDate": "1769978442940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557626", + "createdBy": null, + "createdTime": "2026-02-02 04:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:46", + "echoMap": {}, + "alarmNo": "1410356659", + "alarmDate": "1769978445210", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557752", + "createdBy": null, + "createdTime": "2026-02-02 04:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:03", + "echoMap": {}, + "alarmNo": "1410356660", + "alarmDate": "1769978462200", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557782", + "createdBy": null, + "createdTime": "2026-02-02 04:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:12", + "echoMap": {}, + "alarmNo": "1410356661", + "alarmDate": "1769978465883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557960", + "createdBy": null, + "createdTime": "2026-02-02 04:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:10", + "echoMap": {}, + "alarmNo": "1410356662", + "alarmDate": "1769979009511", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492067", + "createdBy": null, + "createdTime": "2026-02-02 04:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:36", + "echoMap": {}, + "alarmNo": "1410356663", + "alarmDate": "1769979029187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492079", + "createdBy": null, + "createdTime": "2026-02-02 04:50:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:36", + "echoMap": {}, + "alarmNo": "1410356664", + "alarmDate": "1769979030443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492199", + "createdBy": null, + "createdTime": "2026-02-02 04:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:46", + "echoMap": {}, + "alarmNo": "1410356665", + "alarmDate": "1769979045293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492254", + "createdBy": null, + "createdTime": "2026-02-02 04:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:54", + "echoMap": {}, + "alarmNo": "1410356666", + "alarmDate": "1769979052905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492262", + "createdBy": null, + "createdTime": "2026-02-02 04:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:00", + "echoMap": {}, + "alarmNo": "1410356667", + "alarmDate": "1769979053191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492508", + "createdBy": null, + "createdTime": "2026-02-02 05:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:14", + "echoMap": {}, + "alarmNo": "1410356668", + "alarmDate": "1769979607882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492567", + "createdBy": null, + "createdTime": "2026-02-02 05:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:31", + "echoMap": {}, + "alarmNo": "1410356669", + "alarmDate": "1769979626016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492575", + "createdBy": null, + "createdTime": "2026-02-02 05:00:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:29", + "echoMap": {}, + "alarmNo": "1410356670", + "alarmDate": "1769979627969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426813", + "createdBy": null, + "createdTime": "2026-02-02 05:10:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:27", + "echoMap": {}, + "alarmNo": "1410356671", + "alarmDate": "1769980225756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426827", + "createdBy": null, + "createdTime": "2026-02-02 05:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:32", + "echoMap": {}, + "alarmNo": "1410356672", + "alarmDate": "1769980230855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426861", + "createdBy": null, + "createdTime": "2026-02-02 05:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:46", + "echoMap": {}, + "alarmNo": "1410356673", + "alarmDate": "1769980245046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426900", + "createdBy": null, + "createdTime": "2026-02-02 05:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:04", + "echoMap": {}, + "alarmNo": "1410356674", + "alarmDate": "1769980262759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060078", + "deviceName": "[202](10)伊犁厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622427075", + "createdBy": null, + "createdTime": "2026-02-02 05:20:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:14", + "echoMap": {}, + "alarmNo": "1410356675", + "alarmDate": "1769980812948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060078", + "deviceName": "[202](10)伊犁厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622427118", + "createdBy": null, + "createdTime": "2026-02-02 05:20:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:33", + "echoMap": {}, + "alarmNo": "1410356676", + "alarmDate": "1769980832455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113273917393934", + "createdBy": null, + "createdTime": "2026-02-02 05:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:01", + "echoMap": {}, + "alarmNo": "1410356677", + "alarmDate": "1769980860526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361417", + "createdBy": null, + "createdTime": "2026-02-02 05:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:55", + "echoMap": {}, + "alarmNo": "1410356678", + "alarmDate": "1769981454067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361432", + "createdBy": null, + "createdTime": "2026-02-02 05:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:01", + "echoMap": {}, + "alarmNo": "1410356679", + "alarmDate": "1769981459728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361440", + "createdBy": null, + "createdTime": "2026-02-02 05:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:02", + "echoMap": {}, + "alarmNo": "1410356680", + "alarmDate": "1769981461482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361455", + "createdBy": null, + "createdTime": "2026-02-02 05:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:22", + "echoMap": {}, + "alarmNo": "1410356681", + "alarmDate": "1769981468583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361595", + "createdBy": null, + "createdTime": "2026-02-02 05:40:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:09", + "echoMap": {}, + "alarmNo": "1410356682", + "alarmDate": "1769982007934", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361649", + "createdBy": null, + "createdTime": "2026-02-02 05:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:31", + "echoMap": {}, + "alarmNo": "1410356683", + "alarmDate": "1769982024265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361671", + "createdBy": null, + "createdTime": "2026-02-02 05:40:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:32", + "echoMap": {}, + "alarmNo": "1410356684", + "alarmDate": "1769982030942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113282507328522", + "createdBy": null, + "createdTime": "2026-02-02 05:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:07", + "echoMap": {}, + "alarmNo": "1410356685", + "alarmDate": "1769982066094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802295912", + "createdBy": null, + "createdTime": "2026-02-02 05:50:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:15", + "echoMap": {}, + "alarmNo": "1410356686", + "alarmDate": "1769982614334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802295929", + "createdBy": null, + "createdTime": "2026-02-02 05:50:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:22", + "echoMap": {}, + "alarmNo": "1410356687", + "alarmDate": "1769982620632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802295985", + "createdBy": null, + "createdTime": "2026-02-02 05:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:47", + "echoMap": {}, + "alarmNo": "1410356688", + "alarmDate": "1769982646284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802296262", + "createdBy": null, + "createdTime": "2026-02-02 06:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:24", + "echoMap": {}, + "alarmNo": "1410356689", + "alarmDate": "1769983223307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802296323", + "createdBy": null, + "createdTime": "2026-02-02 06:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:41", + "echoMap": {}, + "alarmNo": "1410356690", + "alarmDate": "1769983239555", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113291097263113", + "createdBy": null, + "createdTime": "2026-02-02 06:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:46", + "echoMap": {}, + "alarmNo": "1410356691", + "alarmDate": "1769983245396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113291097263162", + "createdBy": null, + "createdTime": "2026-02-02 06:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:09", + "echoMap": {}, + "alarmNo": "1410356692", + "alarmDate": "1769983260883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113295392230407", + "createdBy": null, + "createdTime": "2026-02-02 06:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:07", + "echoMap": {}, + "alarmNo": "1410356693", + "alarmDate": "1769983266387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113295392230607", + "createdBy": null, + "createdTime": "2026-02-02 06:10:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:23", + "echoMap": {}, + "alarmNo": "1410356694", + "alarmDate": "1769983821705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113295392230708", + "createdBy": null, + "createdTime": "2026-02-02 06:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:55", + "echoMap": {}, + "alarmNo": "1410356695", + "alarmDate": "1769983853930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113299687197761", + "createdBy": null, + "createdTime": "2026-02-02 06:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:35", + "echoMap": {}, + "alarmNo": "1410356696", + "alarmDate": "1769984434149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165056", + "createdBy": null, + "createdTime": "2026-02-02 06:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:59", + "echoMap": {}, + "alarmNo": "1410356697", + "alarmDate": "1769984457937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165226", + "createdBy": null, + "createdTime": "2026-02-02 06:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:09", + "echoMap": {}, + "alarmNo": "1410356698", + "alarmDate": "1769985008131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165283", + "createdBy": null, + "createdTime": "2026-02-02 06:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:22", + "echoMap": {}, + "alarmNo": "1410356699", + "alarmDate": "1769985021455", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165336", + "createdBy": null, + "createdTime": "2026-02-02 06:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:38", + "echoMap": {}, + "alarmNo": "1410356700", + "alarmDate": "1769985037215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165340", + "createdBy": null, + "createdTime": "2026-02-02 06:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:45", + "echoMap": {}, + "alarmNo": "1410356701", + "alarmDate": "1769985037660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165422", + "createdBy": null, + "createdTime": "2026-02-02 06:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:02", + "echoMap": {}, + "alarmNo": "1410356702", + "alarmDate": "1769985061278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572099605", + "createdBy": null, + "createdTime": "2026-02-02 06:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:16", + "echoMap": {}, + "alarmNo": "1410356703", + "alarmDate": "1769985614598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572099704", + "createdBy": null, + "createdTime": "2026-02-02 06:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:52", + "echoMap": {}, + "alarmNo": "1410356704", + "alarmDate": "1769985645855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572099982", + "createdBy": null, + "createdTime": "2026-02-02 06:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:27", + "echoMap": {}, + "alarmNo": "1410356705", + "alarmDate": "1769986225849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572100047", + "createdBy": null, + "createdTime": "2026-02-02 06:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:47", + "echoMap": {}, + "alarmNo": "1410356706", + "alarmDate": "1769986245799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572100088", + "createdBy": null, + "createdTime": "2026-02-02 06:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:59", + "echoMap": {}, + "alarmNo": "1410356707", + "alarmDate": "1769986258162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572100113", + "createdBy": null, + "createdTime": "2026-02-02 06:51:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:27", + "echoMap": {}, + "alarmNo": "1410356708", + "alarmDate": "1769986265164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034232", + "createdBy": null, + "createdTime": "2026-02-02 07:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:09", + "echoMap": {}, + "alarmNo": "1410356709", + "alarmDate": "1769986808423", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034316", + "createdBy": null, + "createdTime": "2026-02-02 07:00:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:36", + "echoMap": {}, + "alarmNo": "1410356710", + "alarmDate": "1769986835059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034372", + "createdBy": null, + "createdTime": "2026-02-02 07:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:02", + "echoMap": {}, + "alarmNo": "1410356711", + "alarmDate": "1769986861218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034555", + "createdBy": null, + "createdTime": "2026-02-02 07:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:16", + "echoMap": {}, + "alarmNo": "1410356712", + "alarmDate": "1769987415381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034585", + "createdBy": null, + "createdTime": "2026-02-02 07:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:30", + "echoMap": {}, + "alarmNo": "1410356713", + "alarmDate": "1769987428743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034597", + "createdBy": null, + "createdTime": "2026-02-02 07:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:05", + "echoMap": {}, + "alarmNo": "1410356714", + "alarmDate": "1769987432637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034702", + "createdBy": null, + "createdTime": "2026-02-02 07:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:24", + "echoMap": {}, + "alarmNo": "1410356715", + "alarmDate": "1769987468508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968838", + "createdBy": null, + "createdTime": "2026-02-02 07:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:31", + "echoMap": {}, + "alarmNo": "1410356716", + "alarmDate": "1769988017845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968907", + "createdBy": null, + "createdTime": "2026-02-02 07:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:44", + "echoMap": {}, + "alarmNo": "1410356717", + "alarmDate": "1769988042696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968925", + "createdBy": null, + "createdTime": "2026-02-02 07:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:51", + "echoMap": {}, + "alarmNo": "1410356718", + "alarmDate": "1769988050038", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968953", + "createdBy": null, + "createdTime": "2026-02-02 07:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:40", + "echoMap": {}, + "alarmNo": "1410356719", + "alarmDate": "1769988061994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969048", + "createdBy": null, + "createdTime": "2026-02-02 07:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:05", + "echoMap": {}, + "alarmNo": "1410356720", + "alarmDate": "1769988366024", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969089", + "createdBy": null, + "createdTime": "2026-02-02 07:29:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:05", + "echoMap": {}, + "alarmNo": "1410356721", + "alarmDate": "1769988546019", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969172", + "createdBy": null, + "createdTime": "2026-02-02 07:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:29", + "echoMap": {}, + "alarmNo": "1410356723", + "alarmDate": "1769988628046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969260", + "createdBy": null, + "createdTime": "2026-02-02 07:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:38", + "echoMap": {}, + "alarmNo": "1410356724", + "alarmDate": "1769988663222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969265", + "createdBy": null, + "createdTime": "2026-02-02 07:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:05", + "echoMap": {}, + "alarmNo": "1410356725", + "alarmDate": "1769988664128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903392", + "createdBy": null, + "createdTime": "2026-02-02 07:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:18", + "echoMap": {}, + "alarmNo": "1410356726", + "alarmDate": "1769989217343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903404", + "createdBy": null, + "createdTime": "2026-02-02 07:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:23", + "echoMap": {}, + "alarmNo": "1410356727", + "alarmDate": "1769989221601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903440", + "createdBy": null, + "createdTime": "2026-02-02 07:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:54", + "echoMap": {}, + "alarmNo": "1410356728", + "alarmDate": "1769989235074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060068", + "deviceName": "[319](10)伊犁4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903520", + "createdBy": null, + "createdTime": "2026-02-02 07:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:40", + "echoMap": {}, + "alarmNo": "1410356729", + "alarmDate": "1769989262483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903534", + "createdBy": null, + "createdTime": "2026-02-02 07:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:07", + "echoMap": {}, + "alarmNo": "1410356730", + "alarmDate": "1769989266357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903723", + "createdBy": null, + "createdTime": "2026-02-02 07:50:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:22", + "echoMap": {}, + "alarmNo": "1410356731", + "alarmDate": "1769989820568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903795", + "createdBy": null, + "createdTime": "2026-02-02 07:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:46", + "echoMap": {}, + "alarmNo": "1410356732", + "alarmDate": "1769989844920", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903805", + "createdBy": null, + "createdTime": "2026-02-02 07:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:49", + "echoMap": {}, + "alarmNo": "1410356733", + "alarmDate": "1769989847596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903817", + "createdBy": null, + "createdTime": "2026-02-02 07:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:58", + "echoMap": {}, + "alarmNo": "1410356734", + "alarmDate": "1769989851748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838025", + "createdBy": null, + "createdTime": "2026-02-02 08:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:49", + "echoMap": {}, + "alarmNo": "1410356735", + "alarmDate": "1769990424882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838043", + "createdBy": null, + "createdTime": "2026-02-02 08:00:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:31", + "echoMap": {}, + "alarmNo": "1410356736", + "alarmDate": "1769990429935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838139", + "createdBy": null, + "createdTime": "2026-02-02 08:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:07", + "echoMap": {}, + "alarmNo": "1410356737", + "alarmDate": "1769990466079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838285", + "createdBy": null, + "createdTime": "2026-02-02 08:10:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:40", + "echoMap": {}, + "alarmNo": "1410356738", + "alarmDate": "1769991008197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838337", + "createdBy": null, + "createdTime": "2026-02-02 08:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:21", + "echoMap": {}, + "alarmNo": "1410356739", + "alarmDate": "1769991020302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838454", + "createdBy": null, + "createdTime": "2026-02-02 08:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:07", + "echoMap": {}, + "alarmNo": "1410356740", + "alarmDate": "1769991066224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772595", + "createdBy": null, + "createdTime": "2026-02-02 08:20:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:35", + "echoMap": {}, + "alarmNo": "1410356741", + "alarmDate": "1769991616439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772604", + "createdBy": null, + "createdTime": "2026-02-02 08:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:19", + "echoMap": {}, + "alarmNo": "1410356742", + "alarmDate": "1769991618375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772683", + "createdBy": null, + "createdTime": "2026-02-02 08:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:48", + "echoMap": {}, + "alarmNo": "1410356743", + "alarmDate": "1769991646872", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772690", + "createdBy": null, + "createdTime": "2026-02-02 08:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:55", + "echoMap": {}, + "alarmNo": "1410356744", + "alarmDate": "1769991648467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772713", + "createdBy": null, + "createdTime": "2026-02-02 08:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:56", + "echoMap": {}, + "alarmNo": "1410356745", + "alarmDate": "1769991655481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772884", + "createdBy": null, + "createdTime": "2026-02-02 08:30:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:34", + "echoMap": {}, + "alarmNo": "1410356746", + "alarmDate": "1769992208804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772906", + "createdBy": null, + "createdTime": "2026-02-02 08:30:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:13", + "echoMap": {}, + "alarmNo": "1410356747", + "alarmDate": "1769992211648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772984", + "createdBy": null, + "createdTime": "2026-02-02 08:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:38", + "echoMap": {}, + "alarmNo": "1410356748", + "alarmDate": "1769992236841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521773008", + "createdBy": null, + "createdTime": "2026-02-02 08:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:06", + "echoMap": {}, + "alarmNo": "1410356749", + "alarmDate": "1769992246738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707194", + "createdBy": null, + "createdTime": "2026-02-02 08:40:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:45", + "echoMap": {}, + "alarmNo": "1410356750", + "alarmDate": "1769992807970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707347", + "createdBy": null, + "createdTime": "2026-02-02 08:40:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:59", + "echoMap": {}, + "alarmNo": "1410356751", + "alarmDate": "1769992857095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707373", + "createdBy": null, + "createdTime": "2026-02-02 08:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:06", + "echoMap": {}, + "alarmNo": "1410356752", + "alarmDate": "1769992865049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707566", + "createdBy": null, + "createdTime": "2026-02-02 08:50:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:19", + "echoMap": {}, + "alarmNo": "1410356753", + "alarmDate": "1769993418244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113368406674446", + "createdBy": null, + "createdTime": "2026-02-02 08:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:54", + "echoMap": {}, + "alarmNo": "1410356754", + "alarmDate": "1769993452652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113368406674448", + "createdBy": null, + "createdTime": "2026-02-02 08:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:54", + "echoMap": {}, + "alarmNo": "1410356755", + "alarmDate": "1769993452788", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113368406674480", + "createdBy": null, + "createdTime": "2026-02-02 08:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:03", + "echoMap": {}, + "alarmNo": "1410356756", + "alarmDate": "1769993462400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641852", + "createdBy": null, + "createdTime": "2026-02-02 09:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:09", + "echoMap": {}, + "alarmNo": "1410356757", + "alarmDate": "1769994008033", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641858", + "createdBy": null, + "createdTime": "2026-02-02 09:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:25", + "echoMap": {}, + "alarmNo": "1410356758", + "alarmDate": "1769994008535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641904", + "createdBy": null, + "createdTime": "2026-02-02 09:00:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:20", + "echoMap": {}, + "alarmNo": "1410356759", + "alarmDate": "1769994018588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641951", + "createdBy": null, + "createdTime": "2026-02-02 09:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1410356760", + "alarmDate": "1769994036569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641966", + "createdBy": null, + "createdTime": "2026-02-02 09:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:42", + "echoMap": {}, + "alarmNo": "1410356761", + "alarmDate": "1769994040799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701642168", + "createdBy": null, + "createdTime": "2026-02-02 09:10:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:16", + "echoMap": {}, + "alarmNo": "1410356762", + "alarmDate": "1769994608860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701642230", + "createdBy": null, + "createdTime": "2026-02-02 09:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:14", + "echoMap": {}, + "alarmNo": "1410356763", + "alarmDate": "1769994628851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701642239", + "createdBy": null, + "createdTime": "2026-02-02 09:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:32", + "echoMap": {}, + "alarmNo": "1410356764", + "alarmDate": "1769994631386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113381291576325", + "createdBy": null, + "createdTime": "2026-02-02 09:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:06", + "echoMap": {}, + "alarmNo": "1410356765", + "alarmDate": "1769994664888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113381291576512", + "createdBy": null, + "createdTime": "2026-02-02 09:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:20", + "echoMap": {}, + "alarmNo": "1410356766", + "alarmDate": "1769995219043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113389881510929", + "createdBy": null, + "createdTime": "2026-02-02 09:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:57", + "echoMap": {}, + "alarmNo": "1410356767", + "alarmDate": "1769995255619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113394176478224", + "createdBy": null, + "createdTime": "2026-02-02 09:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:12", + "echoMap": {}, + "alarmNo": "1410356768", + "alarmDate": "1769995810761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113394176478248", + "createdBy": null, + "createdTime": "2026-02-02 09:30:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:20", + "echoMap": {}, + "alarmNo": "1410356769", + "alarmDate": "1769995818786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113394176478273", + "createdBy": null, + "createdTime": "2026-02-02 09:30:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:31", + "echoMap": {}, + "alarmNo": "1410356770", + "alarmDate": "1769995829500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113398471445516", + "createdBy": null, + "createdTime": "2026-02-02 09:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:57", + "echoMap": {}, + "alarmNo": "1410356771", + "alarmDate": "1769995838430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113398471445540", + "createdBy": null, + "createdTime": "2026-02-02 09:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:47", + "echoMap": {}, + "alarmNo": "1410356772", + "alarmDate": "1769995845729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113407061380122", + "createdBy": null, + "createdTime": "2026-02-02 09:40:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:37", + "echoMap": {}, + "alarmNo": "1410356773", + "alarmDate": "1769996436104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113407061380169", + "createdBy": null, + "createdTime": "2026-02-02 09:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:05", + "echoMap": {}, + "alarmNo": "1410356774", + "alarmDate": "1769996457624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113407061380197", + "createdBy": null, + "createdTime": "2026-02-02 09:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:08", + "echoMap": {}, + "alarmNo": "1410356775", + "alarmDate": "1769996466712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113411356347440", + "createdBy": null, + "createdTime": "2026-02-02 09:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:26", + "echoMap": {}, + "alarmNo": "1410356776", + "alarmDate": "1769997008910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113415651314713", + "createdBy": null, + "createdTime": "2026-02-02 09:50:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:23", + "echoMap": {}, + "alarmNo": "1410356777", + "alarmDate": "1769997021911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113415651314756", + "createdBy": null, + "createdTime": "2026-02-02 09:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:57", + "echoMap": {}, + "alarmNo": "1410356778", + "alarmDate": "1769997037955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249286", + "createdBy": null, + "createdTime": "2026-02-02 10:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:28", + "echoMap": {}, + "alarmNo": "1410356779", + "alarmDate": "1769997626739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249310", + "createdBy": null, + "createdTime": "2026-02-02 10:00:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:42", + "echoMap": {}, + "alarmNo": "1410356780", + "alarmDate": "1769997636226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249325", + "createdBy": null, + "createdTime": "2026-02-02 10:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:42", + "echoMap": {}, + "alarmNo": "1410356781", + "alarmDate": "1769997640482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249345", + "createdBy": null, + "createdTime": "2026-02-02 10:00:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:49", + "echoMap": {}, + "alarmNo": "1410356782", + "alarmDate": "1769997647541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249365", + "createdBy": null, + "createdTime": "2026-02-02 10:00:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:23", + "echoMap": {}, + "alarmNo": "1410356783", + "alarmDate": "1769997655213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183901", + "createdBy": null, + "createdTime": "2026-02-02 10:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:35", + "echoMap": {}, + "alarmNo": "1410356784", + "alarmDate": "1769998233721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060078", + "deviceName": "[202](10)伊犁厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183906", + "createdBy": null, + "createdTime": "2026-02-02 10:10:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:40", + "echoMap": {}, + "alarmNo": "1410356785", + "alarmDate": "1769998234506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183931", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:43", + "echoMap": {}, + "alarmNo": "1410356786", + "alarmDate": "1769998242108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183970", + "createdBy": null, + "createdTime": "2026-02-02 10:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:33", + "echoMap": {}, + "alarmNo": "1410356787", + "alarmDate": "1769998259459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183993", + "createdBy": null, + "createdTime": "2026-02-02 10:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:08", + "echoMap": {}, + "alarmNo": "1410356788", + "alarmDate": "1769998266528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831184172", + "createdBy": null, + "createdTime": "2026-02-02 10:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:20", + "echoMap": {}, + "alarmNo": "1410356789", + "alarmDate": "1769998818679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113437126151243", + "createdBy": null, + "createdTime": "2026-02-02 10:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:57", + "echoMap": {}, + "alarmNo": "1410356790", + "alarmDate": "1769998850763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113441421118662", + "createdBy": null, + "createdTime": "2026-02-02 10:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:12", + "echoMap": {}, + "alarmNo": "1410356791", + "alarmDate": "1769999408013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113445716085798", + "createdBy": null, + "createdTime": "2026-02-02 10:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:51", + "echoMap": {}, + "alarmNo": "1410356792", + "alarmDate": "1769999450445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113445716085802", + "createdBy": null, + "createdTime": "2026-02-02 10:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:57", + "echoMap": {}, + "alarmNo": "1410356793", + "alarmDate": "1769999451112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113445716085810", + "createdBy": null, + "createdTime": "2026-02-02 10:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:53", + "echoMap": {}, + "alarmNo": "1410356794", + "alarmDate": "1769999452475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113450011053214", + "createdBy": null, + "createdTime": "2026-02-02 10:40:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:15", + "echoMap": {}, + "alarmNo": "1410356795", + "alarmDate": "1770000009355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113450011053284", + "createdBy": null, + "createdTime": "2026-02-02 10:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:41", + "echoMap": {}, + "alarmNo": "1410356796", + "alarmDate": "1770000035277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113450011053316", + "createdBy": null, + "createdTime": "2026-02-02 10:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:48", + "echoMap": {}, + "alarmNo": "1410356797", + "alarmDate": "1770000047018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113454306020388", + "createdBy": null, + "createdTime": "2026-02-02 10:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:04", + "echoMap": {}, + "alarmNo": "1410356798", + "alarmDate": "1770000063254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113458600987786", + "createdBy": null, + "createdTime": "2026-02-02 10:50:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:16", + "echoMap": {}, + "alarmNo": "1410356799", + "alarmDate": "1770000614512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113458600987787", + "createdBy": null, + "createdTime": "2026-02-02 10:50:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:37", + "echoMap": {}, + "alarmNo": "1410356800", + "alarmDate": "1770000614547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113458600987897", + "createdBy": null, + "createdTime": "2026-02-02 10:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:51", + "echoMap": {}, + "alarmNo": "1410356801", + "alarmDate": "1770000649515", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113467190922445", + "createdBy": null, + "createdTime": "2026-02-02 11:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:57", + "echoMap": {}, + "alarmNo": "1410356802", + "alarmDate": "1770001256358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113467190922455", + "createdBy": null, + "createdTime": "2026-02-02 11:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:00", + "echoMap": {}, + "alarmNo": "1410356803", + "alarmDate": "1770001259350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856890", + "createdBy": null, + "createdTime": "2026-02-02 11:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:16", + "echoMap": {}, + "alarmNo": "1410356804", + "alarmDate": "1770001814576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856894", + "createdBy": null, + "createdTime": "2026-02-02 11:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:21", + "echoMap": {}, + "alarmNo": "1410356805", + "alarmDate": "1770001815050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856927", + "createdBy": null, + "createdTime": "2026-02-02 11:10:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:27", + "echoMap": {}, + "alarmNo": "1410356806", + "alarmDate": "1770001826052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856972", + "createdBy": null, + "createdTime": "2026-02-02 11:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:58", + "echoMap": {}, + "alarmNo": "1410356807", + "alarmDate": "1770001846122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856995", + "createdBy": null, + "createdTime": "2026-02-02 11:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:54", + "echoMap": {}, + "alarmNo": "1410356808", + "alarmDate": "1770001852958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780857017", + "createdBy": null, + "createdTime": "2026-02-02 11:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:00", + "echoMap": {}, + "alarmNo": "1410356809", + "alarmDate": "1770001859181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113484370791444", + "createdBy": null, + "createdTime": "2026-02-02 11:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:18", + "echoMap": {}, + "alarmNo": "1410356810", + "alarmDate": "1770002412288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113484370791506", + "createdBy": null, + "createdTime": "2026-02-02 11:20:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:50", + "echoMap": {}, + "alarmNo": "1410356811", + "alarmDate": "1770002438385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113484370791536", + "createdBy": null, + "createdTime": "2026-02-02 11:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:48", + "echoMap": {}, + "alarmNo": "1410356812", + "alarmDate": "1770002447488", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113492960726016", + "createdBy": null, + "createdTime": "2026-02-02 11:30:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:16", + "echoMap": {}, + "alarmNo": "1410356813", + "alarmDate": "1770003008543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113492960726077", + "createdBy": null, + "createdTime": "2026-02-02 11:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:34", + "echoMap": {}, + "alarmNo": "1410356814", + "alarmDate": "1770003027601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113492960726151", + "createdBy": null, + "createdTime": "2026-02-02 11:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:01", + "echoMap": {}, + "alarmNo": "1410356815", + "alarmDate": "1770003060294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113497255693384", + "createdBy": null, + "createdTime": "2026-02-02 11:40:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:13", + "echoMap": {}, + "alarmNo": "1410356816", + "alarmDate": "1770003612457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660630", + "createdBy": null, + "createdTime": "2026-02-02 11:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:56", + "echoMap": {}, + "alarmNo": "1410356817", + "alarmDate": "1770003623921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660636", + "createdBy": null, + "createdTime": "2026-02-02 11:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:26", + "echoMap": {}, + "alarmNo": "1410356818", + "alarmDate": "1770003624980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660640", + "createdBy": null, + "createdTime": "2026-02-02 11:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:26", + "echoMap": {}, + "alarmNo": "1410356819", + "alarmDate": "1770003625431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660729", + "createdBy": null, + "createdTime": "2026-02-02 11:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:54", + "echoMap": {}, + "alarmNo": "1410356820", + "alarmDate": "1770003652924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660746", + "createdBy": null, + "createdTime": "2026-02-02 11:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:59", + "echoMap": {}, + "alarmNo": "1410356821", + "alarmDate": "1770003657868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113505845627974", + "createdBy": null, + "createdTime": "2026-02-02 11:50:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:20", + "echoMap": {}, + "alarmNo": "1410356822", + "alarmDate": "1770004208084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595215", + "createdBy": null, + "createdTime": "2026-02-02 11:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:13", + "echoMap": {}, + "alarmNo": "1410356823", + "alarmDate": "1770004212069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595298", + "createdBy": null, + "createdTime": "2026-02-02 11:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:48", + "echoMap": {}, + "alarmNo": "1410356824", + "alarmDate": "1770004247395", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595310", + "createdBy": null, + "createdTime": "2026-02-02 11:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:16", + "echoMap": {}, + "alarmNo": "1410356825", + "alarmDate": "1770004251184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595337", + "createdBy": null, + "createdTime": "2026-02-02 11:50:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:59", + "echoMap": {}, + "alarmNo": "1410356826", + "alarmDate": "1770004259363", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060068", + "deviceName": "[319](10)伊犁4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113518730529905", + "createdBy": null, + "createdTime": "2026-02-02 12:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:05", + "echoMap": {}, + "alarmNo": "1410356827", + "alarmDate": "1770004846540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113518730529957", + "createdBy": null, + "createdTime": "2026-02-02 12:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:04", + "echoMap": {}, + "alarmNo": "1410356828", + "alarmDate": "1770004863180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464400", + "createdBy": null, + "createdTime": "2026-02-02 12:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:21", + "echoMap": {}, + "alarmNo": "1410356829", + "alarmDate": "1770005414643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464410", + "createdBy": null, + "createdTime": "2026-02-02 12:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:18", + "echoMap": {}, + "alarmNo": "1410356830", + "alarmDate": "1770005417333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464427", + "createdBy": null, + "createdTime": "2026-02-02 12:10:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:23", + "echoMap": {}, + "alarmNo": "1410356831", + "alarmDate": "1770005421868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464456", + "createdBy": null, + "createdTime": "2026-02-02 12:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:40", + "echoMap": {}, + "alarmNo": "1410356832", + "alarmDate": "1770005433742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464465", + "createdBy": null, + "createdTime": "2026-02-02 12:10:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:37", + "echoMap": {}, + "alarmNo": "1410356833", + "alarmDate": "1770005436332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464508", + "createdBy": null, + "createdTime": "2026-02-02 12:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:55", + "echoMap": {}, + "alarmNo": "1410356834", + "alarmDate": "1770005453713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464530", + "createdBy": null, + "createdTime": "2026-02-02 12:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:04", + "echoMap": {}, + "alarmNo": "1410356835", + "alarmDate": "1770005462814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464535", + "createdBy": null, + "createdTime": "2026-02-02 12:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:13", + "echoMap": {}, + "alarmNo": "1410356836", + "alarmDate": "1770005463726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113535910399001", + "createdBy": null, + "createdTime": "2026-02-02 12:20:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:17", + "echoMap": {}, + "alarmNo": "1410356837", + "alarmDate": "1770006015981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113535910399060", + "createdBy": null, + "createdTime": "2026-02-02 12:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:44", + "echoMap": {}, + "alarmNo": "1410356838", + "alarmDate": "1770006043330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113535910399088", + "createdBy": null, + "createdTime": "2026-02-02 12:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:01", + "echoMap": {}, + "alarmNo": "1410356839", + "alarmDate": "1770006055023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333587", + "createdBy": null, + "createdTime": "2026-02-02 12:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:27", + "echoMap": {}, + "alarmNo": "1410356840", + "alarmDate": "1770006621169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333650", + "createdBy": null, + "createdTime": "2026-02-02 12:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:53", + "echoMap": {}, + "alarmNo": "1410356841", + "alarmDate": "1770006647287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333694", + "createdBy": null, + "createdTime": "2026-02-02 12:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:06", + "echoMap": {}, + "alarmNo": "1410356842", + "alarmDate": "1770006665126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333701", + "createdBy": null, + "createdTime": "2026-02-02 12:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:51", + "echoMap": {}, + "alarmNo": "1410356843", + "alarmDate": "1770006666300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333703", + "createdBy": null, + "createdTime": "2026-02-02 12:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:23", + "echoMap": {}, + "alarmNo": "1410356844", + "alarmDate": "1770006666654", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113553090268168", + "createdBy": null, + "createdTime": "2026-02-02 12:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:21", + "echoMap": {}, + "alarmNo": "1410356845", + "alarmDate": "1770007220323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113553090268260", + "createdBy": null, + "createdTime": "2026-02-02 12:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:49", + "echoMap": {}, + "alarmNo": "1410356846", + "alarmDate": "1770007248251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113553090268276", + "createdBy": null, + "createdTime": "2026-02-02 12:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:54", + "echoMap": {}, + "alarmNo": "1410356847", + "alarmDate": "1770007252547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113557385235508", + "createdBy": null, + "createdTime": "2026-02-02 12:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:22", + "echoMap": {}, + "alarmNo": "1410356848", + "alarmDate": "1770007808672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202762", + "createdBy": null, + "createdTime": "2026-02-02 12:50:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:17", + "echoMap": {}, + "alarmNo": "1410356849", + "alarmDate": "1770007815909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202811", + "createdBy": null, + "createdTime": "2026-02-02 12:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:41", + "echoMap": {}, + "alarmNo": "1410356850", + "alarmDate": "1770007834777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202842", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:47", + "echoMap": {}, + "alarmNo": "1410356851", + "alarmDate": "1770007846249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202862", + "createdBy": null, + "createdTime": "2026-02-02 12:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:00", + "echoMap": {}, + "alarmNo": "1410356852", + "alarmDate": "1770007853843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113570270137373", + "createdBy": null, + "createdTime": "2026-02-02 13:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:02", + "echoMap": {}, + "alarmNo": "1410356853", + "alarmDate": "1770008437096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113574565104683", + "createdBy": null, + "createdTime": "2026-02-02 13:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:46", + "echoMap": {}, + "alarmNo": "1410356854", + "alarmDate": "1770009020299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113574565104696", + "createdBy": null, + "createdTime": "2026-02-02 13:10:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:25", + "echoMap": {}, + "alarmNo": "1410356855", + "alarmDate": "1770009024203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113574565104705", + "createdBy": null, + "createdTime": "2026-02-02 13:10:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:27", + "echoMap": {}, + "alarmNo": "1410356856", + "alarmDate": "1770009025733", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072001", + "createdBy": null, + "createdTime": "2026-02-02 13:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:51", + "echoMap": {}, + "alarmNo": "1410356857", + "alarmDate": "1770009050366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072023", + "createdBy": null, + "createdTime": "2026-02-02 13:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:07", + "echoMap": {}, + "alarmNo": "1410356858", + "alarmDate": "1770009059365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072027", + "createdBy": null, + "createdTime": "2026-02-02 13:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:01", + "echoMap": {}, + "alarmNo": "1410356859", + "alarmDate": "1770009060135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072048", + "createdBy": null, + "createdTime": "2026-02-02 13:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:07", + "echoMap": {}, + "alarmNo": "1410356860", + "alarmDate": "1770009065630", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113583155039262", + "createdBy": null, + "createdTime": "2026-02-02 13:20:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:18", + "echoMap": {}, + "alarmNo": "1410356861", + "alarmDate": "1770009617471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113583155039268", + "createdBy": null, + "createdTime": "2026-02-02 13:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:20", + "echoMap": {}, + "alarmNo": "1410356862", + "alarmDate": "1770009618814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113587450006547", + "createdBy": null, + "createdTime": "2026-02-02 13:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:47", + "echoMap": {}, + "alarmNo": "1410356863", + "alarmDate": "1770009646092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908417", + "createdBy": null, + "createdTime": "2026-02-02 13:40:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:19", + "echoMap": {}, + "alarmNo": "1410356864", + "alarmDate": "1770010813111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908449", + "createdBy": null, + "createdTime": "2026-02-02 13:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:26", + "echoMap": {}, + "alarmNo": "1410356865", + "alarmDate": "1770010824706", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908461", + "createdBy": null, + "createdTime": "2026-02-02 13:40:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:29", + "echoMap": {}, + "alarmNo": "1410356866", + "alarmDate": "1770010828194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908486", + "createdBy": null, + "createdTime": "2026-02-02 13:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:57", + "echoMap": {}, + "alarmNo": "1410356867", + "alarmDate": "1770010838164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113604629875742", + "createdBy": null, + "createdTime": "2026-02-02 13:40:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:50", + "echoMap": {}, + "alarmNo": "1410356868", + "alarmDate": "1770010849266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113608924843018", + "createdBy": null, + "createdTime": "2026-02-02 13:50:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:25", + "echoMap": {}, + "alarmNo": "1410356869", + "alarmDate": "1770011424315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113608924843024", + "createdBy": null, + "createdTime": "2026-02-02 13:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:27", + "echoMap": {}, + "alarmNo": "1410356870", + "alarmDate": "1770011425731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113608924843035", + "createdBy": null, + "createdTime": "2026-02-02 13:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:55", + "echoMap": {}, + "alarmNo": "1410356871", + "alarmDate": "1770011429334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113617514777611", + "createdBy": null, + "createdTime": "2026-02-02 14:00:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:46", + "echoMap": {}, + "alarmNo": "1410356872", + "alarmDate": "1770012032615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113617514777680", + "createdBy": null, + "createdTime": "2026-02-02 14:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:05", + "echoMap": {}, + "alarmNo": "1410356873", + "alarmDate": "1770012058714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113621809745086", + "createdBy": null, + "createdTime": "2026-02-02 14:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:21", + "echoMap": {}, + "alarmNo": "1410356874", + "alarmDate": "1770012614867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113621809745102", + "createdBy": null, + "createdTime": "2026-02-02 14:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:21", + "echoMap": {}, + "alarmNo": "1410356875", + "alarmDate": "1770012619603", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113626104712204", + "createdBy": null, + "createdTime": "2026-02-02 14:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:32", + "echoMap": {}, + "alarmNo": "1410356876", + "alarmDate": "1770012631134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113626104712214", + "createdBy": null, + "createdTime": "2026-02-02 14:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:41", + "echoMap": {}, + "alarmNo": "1410356877", + "alarmDate": "1770012633871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113626104712256", + "createdBy": null, + "createdTime": "2026-02-02 14:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:51", + "echoMap": {}, + "alarmNo": "1410356878", + "alarmDate": "1770012650048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113630399679655", + "createdBy": null, + "createdTime": "2026-02-02 14:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:10", + "echoMap": {}, + "alarmNo": "1410356879", + "alarmDate": "1770013208149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113630399679701", + "createdBy": null, + "createdTime": "2026-02-02 14:20:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:47", + "echoMap": {}, + "alarmNo": "1410356880", + "alarmDate": "1770013222152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113634694646784", + "createdBy": null, + "createdTime": "2026-02-02 14:20:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:33", + "echoMap": {}, + "alarmNo": "1410356881", + "alarmDate": "1770013231687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113634694646807", + "createdBy": null, + "createdTime": "2026-02-02 14:20:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:38", + "echoMap": {}, + "alarmNo": "1410356882", + "alarmDate": "1770013237304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113634694646824", + "createdBy": null, + "createdTime": "2026-02-02 14:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:43", + "echoMap": {}, + "alarmNo": "1410356883", + "alarmDate": "1770013241946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113638989614088", + "createdBy": null, + "createdTime": "2026-02-02 14:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:08", + "echoMap": {}, + "alarmNo": "1410356884", + "alarmDate": "1770013259252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113638989614293", + "createdBy": null, + "createdTime": "2026-02-02 14:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:26", + "echoMap": {}, + "alarmNo": "1410356885", + "alarmDate": "1770013820432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113647579548678", + "createdBy": null, + "createdTime": "2026-02-02 14:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:05", + "echoMap": {}, + "alarmNo": "1410356886", + "alarmDate": "1770013864546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113647579548682", + "createdBy": null, + "createdTime": "2026-02-02 14:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:06", + "echoMap": {}, + "alarmNo": "1410356887", + "alarmDate": "1770013865330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [ + { + "id": "723113329751969095", + "createdBy": null, + "createdTime": "2026-02-02 07:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:09", + "echoMap": {}, + "alarmNo": "1410356722", + "alarmDate": "1769988549346", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1007040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1007" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113647579548682", + "createdBy": null, + "createdTime": "2026-02-02 14:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:06", + "echoMap": {}, + "alarmNo": "1410356887", + "alarmDate": "1770013865330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113647579548678", + "createdBy": null, + "createdTime": "2026-02-02 14:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:05", + "echoMap": {}, + "alarmNo": "1410356886", + "alarmDate": "1770013864546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113638989614293", + "createdBy": null, + "createdTime": "2026-02-02 14:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:26", + "echoMap": {}, + "alarmNo": "1410356885", + "alarmDate": "1770013820432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113638989614088", + "createdBy": null, + "createdTime": "2026-02-02 14:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:08", + "echoMap": {}, + "alarmNo": "1410356884", + "alarmDate": "1770013259252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113634694646824", + "createdBy": null, + "createdTime": "2026-02-02 14:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:43", + "echoMap": {}, + "alarmNo": "1410356883", + "alarmDate": "1770013241946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113634694646807", + "createdBy": null, + "createdTime": "2026-02-02 14:20:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:38", + "echoMap": {}, + "alarmNo": "1410356882", + "alarmDate": "1770013237304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113634694646784", + "createdBy": null, + "createdTime": "2026-02-02 14:20:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:33", + "echoMap": {}, + "alarmNo": "1410356881", + "alarmDate": "1770013231687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113630399679701", + "createdBy": null, + "createdTime": "2026-02-02 14:20:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:47", + "echoMap": {}, + "alarmNo": "1410356880", + "alarmDate": "1770013222152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113630399679655", + "createdBy": null, + "createdTime": "2026-02-02 14:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:10", + "echoMap": {}, + "alarmNo": "1410356879", + "alarmDate": "1770013208149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113626104712256", + "createdBy": null, + "createdTime": "2026-02-02 14:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:51", + "echoMap": {}, + "alarmNo": "1410356878", + "alarmDate": "1770012650048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113626104712214", + "createdBy": null, + "createdTime": "2026-02-02 14:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:41", + "echoMap": {}, + "alarmNo": "1410356877", + "alarmDate": "1770012633871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113626104712204", + "createdBy": null, + "createdTime": "2026-02-02 14:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:32", + "echoMap": {}, + "alarmNo": "1410356876", + "alarmDate": "1770012631134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113621809745102", + "createdBy": null, + "createdTime": "2026-02-02 14:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:21", + "echoMap": {}, + "alarmNo": "1410356875", + "alarmDate": "1770012619603", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113621809745086", + "createdBy": null, + "createdTime": "2026-02-02 14:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:21", + "echoMap": {}, + "alarmNo": "1410356874", + "alarmDate": "1770012614867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113617514777680", + "createdBy": null, + "createdTime": "2026-02-02 14:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:05", + "echoMap": {}, + "alarmNo": "1410356873", + "alarmDate": "1770012058714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113617514777611", + "createdBy": null, + "createdTime": "2026-02-02 14:00:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:46", + "echoMap": {}, + "alarmNo": "1410356872", + "alarmDate": "1770012032615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113608924843035", + "createdBy": null, + "createdTime": "2026-02-02 13:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:55", + "echoMap": {}, + "alarmNo": "1410356871", + "alarmDate": "1770011429334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113608924843024", + "createdBy": null, + "createdTime": "2026-02-02 13:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:27", + "echoMap": {}, + "alarmNo": "1410356870", + "alarmDate": "1770011425731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113608924843018", + "createdBy": null, + "createdTime": "2026-02-02 13:50:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:25", + "echoMap": {}, + "alarmNo": "1410356869", + "alarmDate": "1770011424315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113604629875742", + "createdBy": null, + "createdTime": "2026-02-02 13:40:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:50", + "echoMap": {}, + "alarmNo": "1410356868", + "alarmDate": "1770010849266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908486", + "createdBy": null, + "createdTime": "2026-02-02 13:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:57", + "echoMap": {}, + "alarmNo": "1410356867", + "alarmDate": "1770010838164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908461", + "createdBy": null, + "createdTime": "2026-02-02 13:40:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:29", + "echoMap": {}, + "alarmNo": "1410356866", + "alarmDate": "1770010828194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908449", + "createdBy": null, + "createdTime": "2026-02-02 13:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:26", + "echoMap": {}, + "alarmNo": "1410356865", + "alarmDate": "1770010824706", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113600334908417", + "createdBy": null, + "createdTime": "2026-02-02 13:40:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:19", + "echoMap": {}, + "alarmNo": "1410356864", + "alarmDate": "1770010813111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113587450006547", + "createdBy": null, + "createdTime": "2026-02-02 13:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:47", + "echoMap": {}, + "alarmNo": "1410356863", + "alarmDate": "1770009646092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113583155039268", + "createdBy": null, + "createdTime": "2026-02-02 13:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:20", + "echoMap": {}, + "alarmNo": "1410356862", + "alarmDate": "1770009618814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113583155039262", + "createdBy": null, + "createdTime": "2026-02-02 13:20:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:18", + "echoMap": {}, + "alarmNo": "1410356861", + "alarmDate": "1770009617471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072048", + "createdBy": null, + "createdTime": "2026-02-02 13:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:07", + "echoMap": {}, + "alarmNo": "1410356860", + "alarmDate": "1770009065630", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072027", + "createdBy": null, + "createdTime": "2026-02-02 13:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:01", + "echoMap": {}, + "alarmNo": "1410356859", + "alarmDate": "1770009060135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072023", + "createdBy": null, + "createdTime": "2026-02-02 13:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:07", + "echoMap": {}, + "alarmNo": "1410356858", + "alarmDate": "1770009059365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113578860072001", + "createdBy": null, + "createdTime": "2026-02-02 13:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:51", + "echoMap": {}, + "alarmNo": "1410356857", + "alarmDate": "1770009050366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113574565104705", + "createdBy": null, + "createdTime": "2026-02-02 13:10:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:27", + "echoMap": {}, + "alarmNo": "1410356856", + "alarmDate": "1770009025733", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113574565104696", + "createdBy": null, + "createdTime": "2026-02-02 13:10:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:25", + "echoMap": {}, + "alarmNo": "1410356855", + "alarmDate": "1770009024203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113574565104683", + "createdBy": null, + "createdTime": "2026-02-02 13:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:46", + "echoMap": {}, + "alarmNo": "1410356854", + "alarmDate": "1770009020299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113570270137373", + "createdBy": null, + "createdTime": "2026-02-02 13:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:02", + "echoMap": {}, + "alarmNo": "1410356853", + "alarmDate": "1770008437096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202862", + "createdBy": null, + "createdTime": "2026-02-02 12:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:00", + "echoMap": {}, + "alarmNo": "1410356852", + "alarmDate": "1770007853843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202842", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:47", + "echoMap": {}, + "alarmNo": "1410356851", + "alarmDate": "1770007846249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202811", + "createdBy": null, + "createdTime": "2026-02-02 12:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:41", + "echoMap": {}, + "alarmNo": "1410356850", + "alarmDate": "1770007834777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113561680202762", + "createdBy": null, + "createdTime": "2026-02-02 12:50:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:17", + "echoMap": {}, + "alarmNo": "1410356849", + "alarmDate": "1770007815909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113557385235508", + "createdBy": null, + "createdTime": "2026-02-02 12:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:22", + "echoMap": {}, + "alarmNo": "1410356848", + "alarmDate": "1770007808672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113553090268276", + "createdBy": null, + "createdTime": "2026-02-02 12:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:54", + "echoMap": {}, + "alarmNo": "1410356847", + "alarmDate": "1770007252547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113553090268260", + "createdBy": null, + "createdTime": "2026-02-02 12:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:49", + "echoMap": {}, + "alarmNo": "1410356846", + "alarmDate": "1770007248251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113553090268168", + "createdBy": null, + "createdTime": "2026-02-02 12:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:21", + "echoMap": {}, + "alarmNo": "1410356845", + "alarmDate": "1770007220323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333703", + "createdBy": null, + "createdTime": "2026-02-02 12:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:23", + "echoMap": {}, + "alarmNo": "1410356844", + "alarmDate": "1770006666654", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333701", + "createdBy": null, + "createdTime": "2026-02-02 12:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:51", + "echoMap": {}, + "alarmNo": "1410356843", + "alarmDate": "1770006666300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333694", + "createdBy": null, + "createdTime": "2026-02-02 12:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:06", + "echoMap": {}, + "alarmNo": "1410356842", + "alarmDate": "1770006665126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333650", + "createdBy": null, + "createdTime": "2026-02-02 12:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:53", + "echoMap": {}, + "alarmNo": "1410356841", + "alarmDate": "1770006647287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113544500333587", + "createdBy": null, + "createdTime": "2026-02-02 12:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:27", + "echoMap": {}, + "alarmNo": "1410356840", + "alarmDate": "1770006621169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113535910399088", + "createdBy": null, + "createdTime": "2026-02-02 12:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:01", + "echoMap": {}, + "alarmNo": "1410356839", + "alarmDate": "1770006055023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113535910399060", + "createdBy": null, + "createdTime": "2026-02-02 12:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:44", + "echoMap": {}, + "alarmNo": "1410356838", + "alarmDate": "1770006043330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113535910399001", + "createdBy": null, + "createdTime": "2026-02-02 12:20:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:17", + "echoMap": {}, + "alarmNo": "1410356837", + "alarmDate": "1770006015981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464535", + "createdBy": null, + "createdTime": "2026-02-02 12:11:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:13", + "echoMap": {}, + "alarmNo": "1410356836", + "alarmDate": "1770005463726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464530", + "createdBy": null, + "createdTime": "2026-02-02 12:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:04", + "echoMap": {}, + "alarmNo": "1410356835", + "alarmDate": "1770005462814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464508", + "createdBy": null, + "createdTime": "2026-02-02 12:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:55", + "echoMap": {}, + "alarmNo": "1410356834", + "alarmDate": "1770005453713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464465", + "createdBy": null, + "createdTime": "2026-02-02 12:10:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:37", + "echoMap": {}, + "alarmNo": "1410356833", + "alarmDate": "1770005436332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464456", + "createdBy": null, + "createdTime": "2026-02-02 12:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:40", + "echoMap": {}, + "alarmNo": "1410356832", + "alarmDate": "1770005433742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464427", + "createdBy": null, + "createdTime": "2026-02-02 12:10:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:23", + "echoMap": {}, + "alarmNo": "1410356831", + "alarmDate": "1770005421868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464410", + "createdBy": null, + "createdTime": "2026-02-02 12:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:18", + "echoMap": {}, + "alarmNo": "1410356830", + "alarmDate": "1770005417333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113527320464400", + "createdBy": null, + "createdTime": "2026-02-02 12:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:21", + "echoMap": {}, + "alarmNo": "1410356829", + "alarmDate": "1770005414643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113518730529957", + "createdBy": null, + "createdTime": "2026-02-02 12:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:04", + "echoMap": {}, + "alarmNo": "1410356828", + "alarmDate": "1770004863180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113518730529905", + "createdBy": null, + "createdTime": "2026-02-02 12:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:05", + "echoMap": {}, + "alarmNo": "1410356827", + "alarmDate": "1770004846540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595337", + "createdBy": null, + "createdTime": "2026-02-02 11:50:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:59", + "echoMap": {}, + "alarmNo": "1410356826", + "alarmDate": "1770004259363", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060068", + "deviceName": "[319](10)伊犁4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595310", + "createdBy": null, + "createdTime": "2026-02-02 11:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:16", + "echoMap": {}, + "alarmNo": "1410356825", + "alarmDate": "1770004251184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595298", + "createdBy": null, + "createdTime": "2026-02-02 11:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:48", + "echoMap": {}, + "alarmNo": "1410356824", + "alarmDate": "1770004247395", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113510140595215", + "createdBy": null, + "createdTime": "2026-02-02 11:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:13", + "echoMap": {}, + "alarmNo": "1410356823", + "alarmDate": "1770004212069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113505845627974", + "createdBy": null, + "createdTime": "2026-02-02 11:50:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:20", + "echoMap": {}, + "alarmNo": "1410356822", + "alarmDate": "1770004208084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660746", + "createdBy": null, + "createdTime": "2026-02-02 11:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:59", + "echoMap": {}, + "alarmNo": "1410356821", + "alarmDate": "1770003657868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660729", + "createdBy": null, + "createdTime": "2026-02-02 11:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:54", + "echoMap": {}, + "alarmNo": "1410356820", + "alarmDate": "1770003652924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660640", + "createdBy": null, + "createdTime": "2026-02-02 11:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:26", + "echoMap": {}, + "alarmNo": "1410356819", + "alarmDate": "1770003625431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660636", + "createdBy": null, + "createdTime": "2026-02-02 11:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:26", + "echoMap": {}, + "alarmNo": "1410356818", + "alarmDate": "1770003624980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113501550660630", + "createdBy": null, + "createdTime": "2026-02-02 11:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:56", + "echoMap": {}, + "alarmNo": "1410356817", + "alarmDate": "1770003623921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113497255693384", + "createdBy": null, + "createdTime": "2026-02-02 11:40:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:13", + "echoMap": {}, + "alarmNo": "1410356816", + "alarmDate": "1770003612457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113492960726151", + "createdBy": null, + "createdTime": "2026-02-02 11:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:01", + "echoMap": {}, + "alarmNo": "1410356815", + "alarmDate": "1770003060294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113492960726077", + "createdBy": null, + "createdTime": "2026-02-02 11:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:34", + "echoMap": {}, + "alarmNo": "1410356814", + "alarmDate": "1770003027601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113492960726016", + "createdBy": null, + "createdTime": "2026-02-02 11:30:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:16", + "echoMap": {}, + "alarmNo": "1410356813", + "alarmDate": "1770003008543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113484370791536", + "createdBy": null, + "createdTime": "2026-02-02 11:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:48", + "echoMap": {}, + "alarmNo": "1410356812", + "alarmDate": "1770002447488", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113484370791506", + "createdBy": null, + "createdTime": "2026-02-02 11:20:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:50", + "echoMap": {}, + "alarmNo": "1410356811", + "alarmDate": "1770002438385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113484370791444", + "createdBy": null, + "createdTime": "2026-02-02 11:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:18", + "echoMap": {}, + "alarmNo": "1410356810", + "alarmDate": "1770002412288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780857017", + "createdBy": null, + "createdTime": "2026-02-02 11:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:00", + "echoMap": {}, + "alarmNo": "1410356809", + "alarmDate": "1770001859181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856995", + "createdBy": null, + "createdTime": "2026-02-02 11:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:54", + "echoMap": {}, + "alarmNo": "1410356808", + "alarmDate": "1770001852958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856972", + "createdBy": null, + "createdTime": "2026-02-02 11:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:58", + "echoMap": {}, + "alarmNo": "1410356807", + "alarmDate": "1770001846122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856927", + "createdBy": null, + "createdTime": "2026-02-02 11:10:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:27", + "echoMap": {}, + "alarmNo": "1410356806", + "alarmDate": "1770001826052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856894", + "createdBy": null, + "createdTime": "2026-02-02 11:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:21", + "echoMap": {}, + "alarmNo": "1410356805", + "alarmDate": "1770001815050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113475780856890", + "createdBy": null, + "createdTime": "2026-02-02 11:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:16", + "echoMap": {}, + "alarmNo": "1410356804", + "alarmDate": "1770001814576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113467190922455", + "createdBy": null, + "createdTime": "2026-02-02 11:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:00", + "echoMap": {}, + "alarmNo": "1410356803", + "alarmDate": "1770001259350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113467190922445", + "createdBy": null, + "createdTime": "2026-02-02 11:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:57", + "echoMap": {}, + "alarmNo": "1410356802", + "alarmDate": "1770001256358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113458600987897", + "createdBy": null, + "createdTime": "2026-02-02 10:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:51", + "echoMap": {}, + "alarmNo": "1410356801", + "alarmDate": "1770000649515", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113458600987787", + "createdBy": null, + "createdTime": "2026-02-02 10:50:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:37", + "echoMap": {}, + "alarmNo": "1410356800", + "alarmDate": "1770000614547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113458600987786", + "createdBy": null, + "createdTime": "2026-02-02 10:50:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:16", + "echoMap": {}, + "alarmNo": "1410356799", + "alarmDate": "1770000614512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113454306020388", + "createdBy": null, + "createdTime": "2026-02-02 10:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:04", + "echoMap": {}, + "alarmNo": "1410356798", + "alarmDate": "1770000063254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113450011053316", + "createdBy": null, + "createdTime": "2026-02-02 10:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:48", + "echoMap": {}, + "alarmNo": "1410356797", + "alarmDate": "1770000047018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113450011053284", + "createdBy": null, + "createdTime": "2026-02-02 10:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:41", + "echoMap": {}, + "alarmNo": "1410356796", + "alarmDate": "1770000035277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113450011053214", + "createdBy": null, + "createdTime": "2026-02-02 10:40:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:15", + "echoMap": {}, + "alarmNo": "1410356795", + "alarmDate": "1770000009355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113445716085810", + "createdBy": null, + "createdTime": "2026-02-02 10:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:53", + "echoMap": {}, + "alarmNo": "1410356794", + "alarmDate": "1769999452475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113445716085802", + "createdBy": null, + "createdTime": "2026-02-02 10:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:57", + "echoMap": {}, + "alarmNo": "1410356793", + "alarmDate": "1769999451112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113445716085798", + "createdBy": null, + "createdTime": "2026-02-02 10:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:51", + "echoMap": {}, + "alarmNo": "1410356792", + "alarmDate": "1769999450445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113441421118662", + "createdBy": null, + "createdTime": "2026-02-02 10:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:12", + "echoMap": {}, + "alarmNo": "1410356791", + "alarmDate": "1769999408013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113437126151243", + "createdBy": null, + "createdTime": "2026-02-02 10:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:57", + "echoMap": {}, + "alarmNo": "1410356790", + "alarmDate": "1769998850763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831184172", + "createdBy": null, + "createdTime": "2026-02-02 10:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:20", + "echoMap": {}, + "alarmNo": "1410356789", + "alarmDate": "1769998818679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183993", + "createdBy": null, + "createdTime": "2026-02-02 10:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:08", + "echoMap": {}, + "alarmNo": "1410356788", + "alarmDate": "1769998266528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183970", + "createdBy": null, + "createdTime": "2026-02-02 10:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:33", + "echoMap": {}, + "alarmNo": "1410356787", + "alarmDate": "1769998259459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183931", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:43", + "echoMap": {}, + "alarmNo": "1410356786", + "alarmDate": "1769998242108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183906", + "createdBy": null, + "createdTime": "2026-02-02 10:10:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:40", + "echoMap": {}, + "alarmNo": "1410356785", + "alarmDate": "1769998234506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113432831183901", + "createdBy": null, + "createdTime": "2026-02-02 10:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:35", + "echoMap": {}, + "alarmNo": "1410356784", + "alarmDate": "1769998233721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060078", + "deviceName": "[202](10)伊犁厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249365", + "createdBy": null, + "createdTime": "2026-02-02 10:00:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:23", + "echoMap": {}, + "alarmNo": "1410356783", + "alarmDate": "1769997655213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249345", + "createdBy": null, + "createdTime": "2026-02-02 10:00:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:49", + "echoMap": {}, + "alarmNo": "1410356782", + "alarmDate": "1769997647541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249325", + "createdBy": null, + "createdTime": "2026-02-02 10:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:42", + "echoMap": {}, + "alarmNo": "1410356781", + "alarmDate": "1769997640482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249310", + "createdBy": null, + "createdTime": "2026-02-02 10:00:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:42", + "echoMap": {}, + "alarmNo": "1410356780", + "alarmDate": "1769997636226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113424241249286", + "createdBy": null, + "createdTime": "2026-02-02 10:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:28", + "echoMap": {}, + "alarmNo": "1410356779", + "alarmDate": "1769997626739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113415651314756", + "createdBy": null, + "createdTime": "2026-02-02 09:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:57", + "echoMap": {}, + "alarmNo": "1410356778", + "alarmDate": "1769997037955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113415651314713", + "createdBy": null, + "createdTime": "2026-02-02 09:50:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:23", + "echoMap": {}, + "alarmNo": "1410356777", + "alarmDate": "1769997021911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113411356347440", + "createdBy": null, + "createdTime": "2026-02-02 09:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:26", + "echoMap": {}, + "alarmNo": "1410356776", + "alarmDate": "1769997008910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113407061380197", + "createdBy": null, + "createdTime": "2026-02-02 09:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:08", + "echoMap": {}, + "alarmNo": "1410356775", + "alarmDate": "1769996466712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113407061380169", + "createdBy": null, + "createdTime": "2026-02-02 09:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:05", + "echoMap": {}, + "alarmNo": "1410356774", + "alarmDate": "1769996457624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113407061380122", + "createdBy": null, + "createdTime": "2026-02-02 09:40:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:37", + "echoMap": {}, + "alarmNo": "1410356773", + "alarmDate": "1769996436104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113398471445540", + "createdBy": null, + "createdTime": "2026-02-02 09:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:47", + "echoMap": {}, + "alarmNo": "1410356772", + "alarmDate": "1769995845729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113398471445516", + "createdBy": null, + "createdTime": "2026-02-02 09:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:57", + "echoMap": {}, + "alarmNo": "1410356771", + "alarmDate": "1769995838430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113394176478273", + "createdBy": null, + "createdTime": "2026-02-02 09:30:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:31", + "echoMap": {}, + "alarmNo": "1410356770", + "alarmDate": "1769995829500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113394176478248", + "createdBy": null, + "createdTime": "2026-02-02 09:30:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:20", + "echoMap": {}, + "alarmNo": "1410356769", + "alarmDate": "1769995818786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113394176478224", + "createdBy": null, + "createdTime": "2026-02-02 09:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:12", + "echoMap": {}, + "alarmNo": "1410356768", + "alarmDate": "1769995810761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113389881510929", + "createdBy": null, + "createdTime": "2026-02-02 09:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:57", + "echoMap": {}, + "alarmNo": "1410356767", + "alarmDate": "1769995255619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113381291576512", + "createdBy": null, + "createdTime": "2026-02-02 09:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:20", + "echoMap": {}, + "alarmNo": "1410356766", + "alarmDate": "1769995219043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113381291576325", + "createdBy": null, + "createdTime": "2026-02-02 09:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:06", + "echoMap": {}, + "alarmNo": "1410356765", + "alarmDate": "1769994664888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701642239", + "createdBy": null, + "createdTime": "2026-02-02 09:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:32", + "echoMap": {}, + "alarmNo": "1410356764", + "alarmDate": "1769994631386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701642230", + "createdBy": null, + "createdTime": "2026-02-02 09:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:14", + "echoMap": {}, + "alarmNo": "1410356763", + "alarmDate": "1769994628851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701642168", + "createdBy": null, + "createdTime": "2026-02-02 09:10:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:16", + "echoMap": {}, + "alarmNo": "1410356762", + "alarmDate": "1769994608860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641966", + "createdBy": null, + "createdTime": "2026-02-02 09:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:42", + "echoMap": {}, + "alarmNo": "1410356761", + "alarmDate": "1769994040799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641951", + "createdBy": null, + "createdTime": "2026-02-02 09:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1410356760", + "alarmDate": "1769994036569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641904", + "createdBy": null, + "createdTime": "2026-02-02 09:00:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:20", + "echoMap": {}, + "alarmNo": "1410356759", + "alarmDate": "1769994018588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641858", + "createdBy": null, + "createdTime": "2026-02-02 09:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:25", + "echoMap": {}, + "alarmNo": "1410356758", + "alarmDate": "1769994008535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113372701641852", + "createdBy": null, + "createdTime": "2026-02-02 09:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:09", + "echoMap": {}, + "alarmNo": "1410356757", + "alarmDate": "1769994008033", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113368406674480", + "createdBy": null, + "createdTime": "2026-02-02 08:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:03", + "echoMap": {}, + "alarmNo": "1410356756", + "alarmDate": "1769993462400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113368406674448", + "createdBy": null, + "createdTime": "2026-02-02 08:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:54", + "echoMap": {}, + "alarmNo": "1410356755", + "alarmDate": "1769993452788", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113368406674446", + "createdBy": null, + "createdTime": "2026-02-02 08:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:54", + "echoMap": {}, + "alarmNo": "1410356754", + "alarmDate": "1769993452652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707566", + "createdBy": null, + "createdTime": "2026-02-02 08:50:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:19", + "echoMap": {}, + "alarmNo": "1410356753", + "alarmDate": "1769993418244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707373", + "createdBy": null, + "createdTime": "2026-02-02 08:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:06", + "echoMap": {}, + "alarmNo": "1410356752", + "alarmDate": "1769992865049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707347", + "createdBy": null, + "createdTime": "2026-02-02 08:40:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:59", + "echoMap": {}, + "alarmNo": "1410356751", + "alarmDate": "1769992857095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113364111707194", + "createdBy": null, + "createdTime": "2026-02-02 08:40:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:45", + "echoMap": {}, + "alarmNo": "1410356750", + "alarmDate": "1769992807970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521773008", + "createdBy": null, + "createdTime": "2026-02-02 08:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:06", + "echoMap": {}, + "alarmNo": "1410356749", + "alarmDate": "1769992246738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772984", + "createdBy": null, + "createdTime": "2026-02-02 08:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:38", + "echoMap": {}, + "alarmNo": "1410356748", + "alarmDate": "1769992236841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772906", + "createdBy": null, + "createdTime": "2026-02-02 08:30:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:13", + "echoMap": {}, + "alarmNo": "1410356747", + "alarmDate": "1769992211648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772884", + "createdBy": null, + "createdTime": "2026-02-02 08:30:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:34", + "echoMap": {}, + "alarmNo": "1410356746", + "alarmDate": "1769992208804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772713", + "createdBy": null, + "createdTime": "2026-02-02 08:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:56", + "echoMap": {}, + "alarmNo": "1410356745", + "alarmDate": "1769991655481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772690", + "createdBy": null, + "createdTime": "2026-02-02 08:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:55", + "echoMap": {}, + "alarmNo": "1410356744", + "alarmDate": "1769991648467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772683", + "createdBy": null, + "createdTime": "2026-02-02 08:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:48", + "echoMap": {}, + "alarmNo": "1410356743", + "alarmDate": "1769991646872", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772604", + "createdBy": null, + "createdTime": "2026-02-02 08:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:19", + "echoMap": {}, + "alarmNo": "1410356742", + "alarmDate": "1769991618375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113355521772595", + "createdBy": null, + "createdTime": "2026-02-02 08:20:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:35", + "echoMap": {}, + "alarmNo": "1410356741", + "alarmDate": "1769991616439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838454", + "createdBy": null, + "createdTime": "2026-02-02 08:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:07", + "echoMap": {}, + "alarmNo": "1410356740", + "alarmDate": "1769991066224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838337", + "createdBy": null, + "createdTime": "2026-02-02 08:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:21", + "echoMap": {}, + "alarmNo": "1410356739", + "alarmDate": "1769991020302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838285", + "createdBy": null, + "createdTime": "2026-02-02 08:10:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:40", + "echoMap": {}, + "alarmNo": "1410356738", + "alarmDate": "1769991008197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838139", + "createdBy": null, + "createdTime": "2026-02-02 08:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:07", + "echoMap": {}, + "alarmNo": "1410356737", + "alarmDate": "1769990466079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838043", + "createdBy": null, + "createdTime": "2026-02-02 08:00:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:31", + "echoMap": {}, + "alarmNo": "1410356736", + "alarmDate": "1769990429935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113346931838025", + "createdBy": null, + "createdTime": "2026-02-02 08:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:49", + "echoMap": {}, + "alarmNo": "1410356735", + "alarmDate": "1769990424882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903817", + "createdBy": null, + "createdTime": "2026-02-02 07:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:58", + "echoMap": {}, + "alarmNo": "1410356734", + "alarmDate": "1769989851748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903805", + "createdBy": null, + "createdTime": "2026-02-02 07:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:49", + "echoMap": {}, + "alarmNo": "1410356733", + "alarmDate": "1769989847596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903795", + "createdBy": null, + "createdTime": "2026-02-02 07:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:46", + "echoMap": {}, + "alarmNo": "1410356732", + "alarmDate": "1769989844920", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903723", + "createdBy": null, + "createdTime": "2026-02-02 07:50:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:22", + "echoMap": {}, + "alarmNo": "1410356731", + "alarmDate": "1769989820568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903534", + "createdBy": null, + "createdTime": "2026-02-02 07:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:07", + "echoMap": {}, + "alarmNo": "1410356730", + "alarmDate": "1769989266357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903520", + "createdBy": null, + "createdTime": "2026-02-02 07:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:40", + "echoMap": {}, + "alarmNo": "1410356729", + "alarmDate": "1769989262483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903440", + "createdBy": null, + "createdTime": "2026-02-02 07:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:54", + "echoMap": {}, + "alarmNo": "1410356728", + "alarmDate": "1769989235074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060068", + "deviceName": "[319](10)伊犁4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903404", + "createdBy": null, + "createdTime": "2026-02-02 07:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:23", + "echoMap": {}, + "alarmNo": "1410356727", + "alarmDate": "1769989221601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113338341903392", + "createdBy": null, + "createdTime": "2026-02-02 07:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:18", + "echoMap": {}, + "alarmNo": "1410356726", + "alarmDate": "1769989217343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969265", + "createdBy": null, + "createdTime": "2026-02-02 07:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:05", + "echoMap": {}, + "alarmNo": "1410356725", + "alarmDate": "1769988664128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969260", + "createdBy": null, + "createdTime": "2026-02-02 07:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:38", + "echoMap": {}, + "alarmNo": "1410356724", + "alarmDate": "1769988663222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969172", + "createdBy": null, + "createdTime": "2026-02-02 07:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:29", + "echoMap": {}, + "alarmNo": "1410356723", + "alarmDate": "1769988628046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969095", + "createdBy": null, + "createdTime": "2026-02-02 07:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:09", + "echoMap": {}, + "alarmNo": "1410356722", + "alarmDate": "1769988549346", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1007040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1007" + }, + { + "id": "723113329751969089", + "createdBy": null, + "createdTime": "2026-02-02 07:29:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:05", + "echoMap": {}, + "alarmNo": "1410356721", + "alarmDate": "1769988546019", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751969048", + "createdBy": null, + "createdTime": "2026-02-02 07:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:05", + "echoMap": {}, + "alarmNo": "1410356720", + "alarmDate": "1769988366024", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968953", + "createdBy": null, + "createdTime": "2026-02-02 07:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:40", + "echoMap": {}, + "alarmNo": "1410356719", + "alarmDate": "1769988061994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968925", + "createdBy": null, + "createdTime": "2026-02-02 07:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:51", + "echoMap": {}, + "alarmNo": "1410356718", + "alarmDate": "1769988050038", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968907", + "createdBy": null, + "createdTime": "2026-02-02 07:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:44", + "echoMap": {}, + "alarmNo": "1410356717", + "alarmDate": "1769988042696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113329751968838", + "createdBy": null, + "createdTime": "2026-02-02 07:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:31", + "echoMap": {}, + "alarmNo": "1410356716", + "alarmDate": "1769988017845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034702", + "createdBy": null, + "createdTime": "2026-02-02 07:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:24", + "echoMap": {}, + "alarmNo": "1410356715", + "alarmDate": "1769987468508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034597", + "createdBy": null, + "createdTime": "2026-02-02 07:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:05", + "echoMap": {}, + "alarmNo": "1410356714", + "alarmDate": "1769987432637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034585", + "createdBy": null, + "createdTime": "2026-02-02 07:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:30", + "echoMap": {}, + "alarmNo": "1410356713", + "alarmDate": "1769987428743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034555", + "createdBy": null, + "createdTime": "2026-02-02 07:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:16", + "echoMap": {}, + "alarmNo": "1410356712", + "alarmDate": "1769987415381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034372", + "createdBy": null, + "createdTime": "2026-02-02 07:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:02", + "echoMap": {}, + "alarmNo": "1410356711", + "alarmDate": "1769986861218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034316", + "createdBy": null, + "createdTime": "2026-02-02 07:00:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:36", + "echoMap": {}, + "alarmNo": "1410356710", + "alarmDate": "1769986835059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113321162034232", + "createdBy": null, + "createdTime": "2026-02-02 07:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:09", + "echoMap": {}, + "alarmNo": "1410356709", + "alarmDate": "1769986808423", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572100113", + "createdBy": null, + "createdTime": "2026-02-02 06:51:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:27", + "echoMap": {}, + "alarmNo": "1410356708", + "alarmDate": "1769986265164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572100088", + "createdBy": null, + "createdTime": "2026-02-02 06:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:59", + "echoMap": {}, + "alarmNo": "1410356707", + "alarmDate": "1769986258162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572100047", + "createdBy": null, + "createdTime": "2026-02-02 06:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:47", + "echoMap": {}, + "alarmNo": "1410356706", + "alarmDate": "1769986245799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572099982", + "createdBy": null, + "createdTime": "2026-02-02 06:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:27", + "echoMap": {}, + "alarmNo": "1410356705", + "alarmDate": "1769986225849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572099704", + "createdBy": null, + "createdTime": "2026-02-02 06:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:52", + "echoMap": {}, + "alarmNo": "1410356704", + "alarmDate": "1769985645855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113312572099605", + "createdBy": null, + "createdTime": "2026-02-02 06:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:16", + "echoMap": {}, + "alarmNo": "1410356703", + "alarmDate": "1769985614598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165422", + "createdBy": null, + "createdTime": "2026-02-02 06:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:02", + "echoMap": {}, + "alarmNo": "1410356702", + "alarmDate": "1769985061278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165340", + "createdBy": null, + "createdTime": "2026-02-02 06:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:45", + "echoMap": {}, + "alarmNo": "1410356701", + "alarmDate": "1769985037660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165336", + "createdBy": null, + "createdTime": "2026-02-02 06:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:38", + "echoMap": {}, + "alarmNo": "1410356700", + "alarmDate": "1769985037215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165283", + "createdBy": null, + "createdTime": "2026-02-02 06:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:22", + "echoMap": {}, + "alarmNo": "1410356699", + "alarmDate": "1769985021455", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165226", + "createdBy": null, + "createdTime": "2026-02-02 06:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:09", + "echoMap": {}, + "alarmNo": "1410356698", + "alarmDate": "1769985008131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113303982165056", + "createdBy": null, + "createdTime": "2026-02-02 06:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:59", + "echoMap": {}, + "alarmNo": "1410356697", + "alarmDate": "1769984457937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113299687197761", + "createdBy": null, + "createdTime": "2026-02-02 06:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:35", + "echoMap": {}, + "alarmNo": "1410356696", + "alarmDate": "1769984434149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113295392230708", + "createdBy": null, + "createdTime": "2026-02-02 06:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:55", + "echoMap": {}, + "alarmNo": "1410356695", + "alarmDate": "1769983853930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113295392230607", + "createdBy": null, + "createdTime": "2026-02-02 06:10:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:23", + "echoMap": {}, + "alarmNo": "1410356694", + "alarmDate": "1769983821705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113295392230407", + "createdBy": null, + "createdTime": "2026-02-02 06:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:07", + "echoMap": {}, + "alarmNo": "1410356693", + "alarmDate": "1769983266387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113291097263162", + "createdBy": null, + "createdTime": "2026-02-02 06:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:09", + "echoMap": {}, + "alarmNo": "1410356692", + "alarmDate": "1769983260883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113291097263113", + "createdBy": null, + "createdTime": "2026-02-02 06:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:46", + "echoMap": {}, + "alarmNo": "1410356691", + "alarmDate": "1769983245396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802296323", + "createdBy": null, + "createdTime": "2026-02-02 06:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:41", + "echoMap": {}, + "alarmNo": "1410356690", + "alarmDate": "1769983239555", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802296262", + "createdBy": null, + "createdTime": "2026-02-02 06:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:24", + "echoMap": {}, + "alarmNo": "1410356689", + "alarmDate": "1769983223307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060026", + "deviceName": "[210](10)伊犁3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802295985", + "createdBy": null, + "createdTime": "2026-02-02 05:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:47", + "echoMap": {}, + "alarmNo": "1410356688", + "alarmDate": "1769982646284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802295929", + "createdBy": null, + "createdTime": "2026-02-02 05:50:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:22", + "echoMap": {}, + "alarmNo": "1410356687", + "alarmDate": "1769982620632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113286802295912", + "createdBy": null, + "createdTime": "2026-02-02 05:50:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:15", + "echoMap": {}, + "alarmNo": "1410356686", + "alarmDate": "1769982614334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113282507328522", + "createdBy": null, + "createdTime": "2026-02-02 05:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:07", + "echoMap": {}, + "alarmNo": "1410356685", + "alarmDate": "1769982066094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361671", + "createdBy": null, + "createdTime": "2026-02-02 05:40:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:32", + "echoMap": {}, + "alarmNo": "1410356684", + "alarmDate": "1769982030942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361649", + "createdBy": null, + "createdTime": "2026-02-02 05:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:31", + "echoMap": {}, + "alarmNo": "1410356683", + "alarmDate": "1769982024265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060029", + "deviceName": "[316](10)伊犁3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361595", + "createdBy": null, + "createdTime": "2026-02-02 05:40:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:09", + "echoMap": {}, + "alarmNo": "1410356682", + "alarmDate": "1769982007934", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361455", + "createdBy": null, + "createdTime": "2026-02-02 05:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:22", + "echoMap": {}, + "alarmNo": "1410356681", + "alarmDate": "1769981468583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361440", + "createdBy": null, + "createdTime": "2026-02-02 05:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:02", + "echoMap": {}, + "alarmNo": "1410356680", + "alarmDate": "1769981461482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361432", + "createdBy": null, + "createdTime": "2026-02-02 05:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:01", + "echoMap": {}, + "alarmNo": "1410356679", + "alarmDate": "1769981459728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113278212361417", + "createdBy": null, + "createdTime": "2026-02-02 05:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:55", + "echoMap": {}, + "alarmNo": "1410356678", + "alarmDate": "1769981454067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113273917393934", + "createdBy": null, + "createdTime": "2026-02-02 05:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:01", + "echoMap": {}, + "alarmNo": "1410356677", + "alarmDate": "1769980860526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622427118", + "createdBy": null, + "createdTime": "2026-02-02 05:20:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:33", + "echoMap": {}, + "alarmNo": "1410356676", + "alarmDate": "1769980832455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060071", + "deviceName": "[211](10)伊犁4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622427075", + "createdBy": null, + "createdTime": "2026-02-02 05:20:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:14", + "echoMap": {}, + "alarmNo": "1410356675", + "alarmDate": "1769980812948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060078", + "deviceName": "[202](10)伊犁厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426900", + "createdBy": null, + "createdTime": "2026-02-02 05:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:04", + "echoMap": {}, + "alarmNo": "1410356674", + "alarmDate": "1769980262759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060078", + "deviceName": "[202](10)伊犁厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426861", + "createdBy": null, + "createdTime": "2026-02-02 05:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:46", + "echoMap": {}, + "alarmNo": "1410356673", + "alarmDate": "1769980245046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426827", + "createdBy": null, + "createdTime": "2026-02-02 05:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:32", + "echoMap": {}, + "alarmNo": "1410356672", + "alarmDate": "1769980230855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113269622426813", + "createdBy": null, + "createdTime": "2026-02-02 05:10:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:27", + "echoMap": {}, + "alarmNo": "1410356671", + "alarmDate": "1769980225756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492575", + "createdBy": null, + "createdTime": "2026-02-02 05:00:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:29", + "echoMap": {}, + "alarmNo": "1410356670", + "alarmDate": "1769979627969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492567", + "createdBy": null, + "createdTime": "2026-02-02 05:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:31", + "echoMap": {}, + "alarmNo": "1410356669", + "alarmDate": "1769979626016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492508", + "createdBy": null, + "createdTime": "2026-02-02 05:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:14", + "echoMap": {}, + "alarmNo": "1410356668", + "alarmDate": "1769979607882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060012", + "deviceName": "[343](10)伊犁4#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492262", + "createdBy": null, + "createdTime": "2026-02-02 04:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:00", + "echoMap": {}, + "alarmNo": "1410356667", + "alarmDate": "1769979053191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492254", + "createdBy": null, + "createdTime": "2026-02-02 04:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:54", + "echoMap": {}, + "alarmNo": "1410356666", + "alarmDate": "1769979052905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492199", + "createdBy": null, + "createdTime": "2026-02-02 04:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:46", + "echoMap": {}, + "alarmNo": "1410356665", + "alarmDate": "1769979045293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492079", + "createdBy": null, + "createdTime": "2026-02-02 04:50:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:36", + "echoMap": {}, + "alarmNo": "1410356664", + "alarmDate": "1769979030443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113261032492067", + "createdBy": null, + "createdTime": "2026-02-02 04:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:36", + "echoMap": {}, + "alarmNo": "1410356663", + "alarmDate": "1769979029187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557960", + "createdBy": null, + "createdTime": "2026-02-02 04:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:10", + "echoMap": {}, + "alarmNo": "1410356662", + "alarmDate": "1769979009511", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557782", + "createdBy": null, + "createdTime": "2026-02-02 04:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:12", + "echoMap": {}, + "alarmNo": "1410356661", + "alarmDate": "1769978465883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557752", + "createdBy": null, + "createdTime": "2026-02-02 04:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:03", + "echoMap": {}, + "alarmNo": "1410356660", + "alarmDate": "1769978462200", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557626", + "createdBy": null, + "createdTime": "2026-02-02 04:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:46", + "echoMap": {}, + "alarmNo": "1410356659", + "alarmDate": "1769978445210", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113252442557606", + "createdBy": null, + "createdTime": "2026-02-02 04:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:48", + "echoMap": {}, + "alarmNo": "1410356658", + "alarmDate": "1769978442940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113248147590202", + "createdBy": null, + "createdTime": "2026-02-02 04:40:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:24", + "echoMap": {}, + "alarmNo": "1410356657", + "alarmDate": "1769978417890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113243852623130", + "createdBy": null, + "createdTime": "2026-02-02 04:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:01", + "echoMap": {}, + "alarmNo": "1410356656", + "alarmDate": "1769977854604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113243852623078", + "createdBy": null, + "createdTime": "2026-02-02 04:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:49", + "echoMap": {}, + "alarmNo": "1410356655", + "alarmDate": "1769977848118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113243852622948", + "createdBy": null, + "createdTime": "2026-02-02 04:30:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:37", + "echoMap": {}, + "alarmNo": "1410356654", + "alarmDate": "1769977830611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113239557655604", + "createdBy": null, + "createdTime": "2026-02-02 04:30:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:15", + "echoMap": {}, + "alarmNo": "1410356653", + "alarmDate": "1769977813621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113239557655590", + "createdBy": null, + "createdTime": "2026-02-02 04:30:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:14", + "echoMap": {}, + "alarmNo": "1410356652", + "alarmDate": "1769977812520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113239557655561", + "createdBy": null, + "createdTime": "2026-02-02 04:30:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:14", + "echoMap": {}, + "alarmNo": "1410356651", + "alarmDate": "1769977809933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688652", + "createdBy": null, + "createdTime": "2026-02-02 04:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:13", + "echoMap": {}, + "alarmNo": "1410356650", + "alarmDate": "1769977267443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688641", + "createdBy": null, + "createdTime": "2026-02-02 04:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:07", + "echoMap": {}, + "alarmNo": "1410356649", + "alarmDate": "1769977266472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688621", + "createdBy": null, + "createdTime": "2026-02-02 04:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:05", + "echoMap": {}, + "alarmNo": "1410356648", + "alarmDate": "1769977264411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688618", + "createdBy": null, + "createdTime": "2026-02-02 04:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:04", + "echoMap": {}, + "alarmNo": "1410356647", + "alarmDate": "1769977264002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688462", + "createdBy": null, + "createdTime": "2026-02-02 04:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:49", + "echoMap": {}, + "alarmNo": "1410356646", + "alarmDate": "1769977243325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688360", + "createdBy": null, + "createdTime": "2026-02-02 04:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:31", + "echoMap": {}, + "alarmNo": "1410356645", + "alarmDate": "1769977229521", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688273", + "createdBy": null, + "createdTime": "2026-02-02 04:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:25", + "echoMap": {}, + "alarmNo": "1410356644", + "alarmDate": "1769977219294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113235262688268", + "createdBy": null, + "createdTime": "2026-02-02 04:20:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:26", + "echoMap": {}, + "alarmNo": "1410356643", + "alarmDate": "1769977218712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113230967721014", + "createdBy": null, + "createdTime": "2026-02-02 04:20:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:15", + "echoMap": {}, + "alarmNo": "1410356642", + "alarmDate": "1769977214523", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753987", + "createdBy": null, + "createdTime": "2026-02-02 04:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:02", + "echoMap": {}, + "alarmNo": "1410356641", + "alarmDate": "1769976655994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753954", + "createdBy": null, + "createdTime": "2026-02-02 04:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:53", + "echoMap": {}, + "alarmNo": "1410356640", + "alarmDate": "1769976651680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753868", + "createdBy": null, + "createdTime": "2026-02-02 04:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:47", + "echoMap": {}, + "alarmNo": "1410356639", + "alarmDate": "1769976640697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753788", + "createdBy": null, + "createdTime": "2026-02-02 04:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:38", + "echoMap": {}, + "alarmNo": "1410356638", + "alarmDate": "1769976631029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113226672753685", + "createdBy": null, + "createdTime": "2026-02-02 04:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:18", + "echoMap": {}, + "alarmNo": "1410356637", + "alarmDate": "1769976616544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819526", + "createdBy": null, + "createdTime": "2026-02-02 04:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:13", + "echoMap": {}, + "alarmNo": "1410356636", + "alarmDate": "1769976068258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819521", + "createdBy": null, + "createdTime": "2026-02-02 04:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:14", + "echoMap": {}, + "alarmNo": "1410356635", + "alarmDate": "1769976067813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819340", + "createdBy": null, + "createdTime": "2026-02-02 04:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:50", + "echoMap": {}, + "alarmNo": "1410356634", + "alarmDate": "1769976044106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819331", + "createdBy": null, + "createdTime": "2026-02-02 04:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:51", + "echoMap": {}, + "alarmNo": "1410356633", + "alarmDate": "1769976043704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819311", + "createdBy": null, + "createdTime": "2026-02-02 04:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:47", + "echoMap": {}, + "alarmNo": "1410356632", + "alarmDate": "1769976041375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819240", + "createdBy": null, + "createdTime": "2026-02-02 04:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:33", + "echoMap": {}, + "alarmNo": "1410356631", + "alarmDate": "1769976031923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819179", + "createdBy": null, + "createdTime": "2026-02-02 04:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1410356630", + "alarmDate": "1769976024807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819130", + "createdBy": null, + "createdTime": "2026-02-02 04:00:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1410356629", + "alarmDate": "1769976020102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113218082819101", + "createdBy": null, + "createdTime": "2026-02-02 04:00:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:29", + "echoMap": {}, + "alarmNo": "1410356628", + "alarmDate": "1769976017250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113213787851849", + "createdBy": null, + "createdTime": "2026-02-02 04:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1410356627", + "alarmDate": "1769976013689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884876", + "createdBy": null, + "createdTime": "2026-02-02 03:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:03", + "echoMap": {}, + "alarmNo": "1410356626", + "alarmDate": "1769975456967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884870", + "createdBy": null, + "createdTime": "2026-02-02 03:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:03", + "echoMap": {}, + "alarmNo": "1410356625", + "alarmDate": "1769975456492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884805", + "createdBy": null, + "createdTime": "2026-02-02 03:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:50", + "echoMap": {}, + "alarmNo": "1410356624", + "alarmDate": "1769975448642", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884790", + "createdBy": null, + "createdTime": "2026-02-02 03:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1410356623", + "alarmDate": "1769975447111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884699", + "createdBy": null, + "createdTime": "2026-02-02 03:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:37", + "echoMap": {}, + "alarmNo": "1410356622", + "alarmDate": "1769975435650", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113209492884620", + "createdBy": null, + "createdTime": "2026-02-02 03:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:38", + "echoMap": {}, + "alarmNo": "1410356621", + "alarmDate": "1769975426431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950377", + "createdBy": null, + "createdTime": "2026-02-02 03:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:39", + "echoMap": {}, + "alarmNo": "1410356620", + "alarmDate": "1769974868619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950371", + "createdBy": null, + "createdTime": "2026-02-02 03:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:19", + "echoMap": {}, + "alarmNo": "1410356619", + "alarmDate": "1769974867893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950335", + "createdBy": null, + "createdTime": "2026-02-02 03:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:14", + "echoMap": {}, + "alarmNo": "1410356618", + "alarmDate": "1769974863242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950151", + "createdBy": null, + "createdTime": "2026-02-02 03:40:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:51", + "echoMap": {}, + "alarmNo": "1410356617", + "alarmDate": "1769974839102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902950130", + "createdBy": null, + "createdTime": "2026-02-02 03:40:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:38", + "echoMap": {}, + "alarmNo": "1410356616", + "alarmDate": "1769974836748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902949961", + "createdBy": null, + "createdTime": "2026-02-02 03:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:27", + "echoMap": {}, + "alarmNo": "1410356615", + "alarmDate": "1769974815065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113200902949913", + "createdBy": null, + "createdTime": "2026-02-02 03:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:16", + "echoMap": {}, + "alarmNo": "1410356614", + "alarmDate": "1769974809604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113192313015678", + "createdBy": null, + "createdTime": "2026-02-02 03:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:53", + "echoMap": {}, + "alarmNo": "1410356613", + "alarmDate": "1769974252105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113192313015665", + "createdBy": null, + "createdTime": "2026-02-02 03:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:04", + "echoMap": {}, + "alarmNo": "1410356612", + "alarmDate": "1769974250880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113192313015577", + "createdBy": null, + "createdTime": "2026-02-02 03:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:40", + "echoMap": {}, + "alarmNo": "1410356611", + "alarmDate": "1769974238894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081240", + "createdBy": null, + "createdTime": "2026-02-02 03:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:16", + "echoMap": {}, + "alarmNo": "1410356610", + "alarmDate": "1769973667775", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081207", + "createdBy": null, + "createdTime": "2026-02-02 03:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:33", + "echoMap": {}, + "alarmNo": "1410356609", + "alarmDate": "1769973663683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081154", + "createdBy": null, + "createdTime": "2026-02-02 03:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:58", + "echoMap": {}, + "alarmNo": "1410356608", + "alarmDate": "1769973656718", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723081026", + "createdBy": null, + "createdTime": "2026-02-02 03:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:46", + "echoMap": {}, + "alarmNo": "1410356607", + "alarmDate": "1769973639598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723080993", + "createdBy": null, + "createdTime": "2026-02-02 03:20:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:36", + "echoMap": {}, + "alarmNo": "1410356606", + "alarmDate": "1769973635191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113183723080809", + "createdBy": null, + "createdTime": "2026-02-02 03:20:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:12", + "echoMap": {}, + "alarmNo": "1410356605", + "alarmDate": "1769973610161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146596", + "createdBy": null, + "createdTime": "2026-02-02 03:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:59", + "echoMap": {}, + "alarmNo": "1410356604", + "alarmDate": "1769973057953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146548", + "createdBy": null, + "createdTime": "2026-02-02 03:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:03", + "echoMap": {}, + "alarmNo": "1410356603", + "alarmDate": "1769973052274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146356", + "createdBy": null, + "createdTime": "2026-02-02 03:10:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:40", + "echoMap": {}, + "alarmNo": "1410356602", + "alarmDate": "1769973027289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113175133146298", + "createdBy": null, + "createdTime": "2026-02-02 03:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:20", + "echoMap": {}, + "alarmNo": "1410356601", + "alarmDate": "1769973019489", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543212067", + "createdBy": null, + "createdTime": "2026-02-02 03:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:09", + "echoMap": {}, + "alarmNo": "1410356600", + "alarmDate": "1769972464079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211992", + "createdBy": null, + "createdTime": "2026-02-02 03:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:55", + "echoMap": {}, + "alarmNo": "1410356599", + "alarmDate": "1769972454027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211881", + "createdBy": null, + "createdTime": "2026-02-02 03:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:52", + "echoMap": {}, + "alarmNo": "1410356598", + "alarmDate": "1769972440041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211831", + "createdBy": null, + "createdTime": "2026-02-02 03:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:35", + "echoMap": {}, + "alarmNo": "1410356597", + "alarmDate": "1769972434115", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211754", + "createdBy": null, + "createdTime": "2026-02-02 03:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:38", + "echoMap": {}, + "alarmNo": "1410356596", + "alarmDate": "1769972425668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211747", + "createdBy": null, + "createdTime": "2026-02-02 03:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:26", + "echoMap": {}, + "alarmNo": "1410356595", + "alarmDate": "1769972424994", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113166543211672", + "createdBy": null, + "createdTime": "2026-02-02 03:00:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:28", + "echoMap": {}, + "alarmNo": "1410356594", + "alarmDate": "1769972415966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277399", + "createdBy": null, + "createdTime": "2026-02-02 02:50:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:05", + "echoMap": {}, + "alarmNo": "1410356593", + "alarmDate": "1769971852818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277385", + "createdBy": null, + "createdTime": "2026-02-02 02:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:52", + "echoMap": {}, + "alarmNo": "1410356592", + "alarmDate": "1769971851542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277371", + "createdBy": null, + "createdTime": "2026-02-02 02:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:55", + "echoMap": {}, + "alarmNo": "1410356591", + "alarmDate": "1769971850332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277206", + "createdBy": null, + "createdTime": "2026-02-02 02:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:41", + "echoMap": {}, + "alarmNo": "1410356590", + "alarmDate": "1769971828676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113157953277184", + "createdBy": null, + "createdTime": "2026-02-02 02:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:27", + "echoMap": {}, + "alarmNo": "1410356589", + "alarmDate": "1769971826317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113153658309665", + "createdBy": null, + "createdTime": "2026-02-02 02:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:11", + "echoMap": {}, + "alarmNo": "1410356588", + "alarmDate": "1769971265533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342769", + "createdBy": null, + "createdTime": "2026-02-02 02:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:54", + "echoMap": {}, + "alarmNo": "1410356587", + "alarmDate": "1769971241389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342741", + "createdBy": null, + "createdTime": "2026-02-02 02:40:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:40", + "echoMap": {}, + "alarmNo": "1410356586", + "alarmDate": "1769971238671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342585", + "createdBy": null, + "createdTime": "2026-02-02 02:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:44", + "echoMap": {}, + "alarmNo": "1410356585", + "alarmDate": "1769971219984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113149363342563", + "createdBy": null, + "createdTime": "2026-02-02 02:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:23", + "echoMap": {}, + "alarmNo": "1410356584", + "alarmDate": "1769971217401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408236", + "createdBy": null, + "createdTime": "2026-02-02 02:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:55", + "echoMap": {}, + "alarmNo": "1410356583", + "alarmDate": "1769970654123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408225", + "createdBy": null, + "createdTime": "2026-02-02 02:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:05", + "echoMap": {}, + "alarmNo": "1410356582", + "alarmDate": "1769970653157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408215", + "createdBy": null, + "createdTime": "2026-02-02 02:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:53", + "echoMap": {}, + "alarmNo": "1410356581", + "alarmDate": "1769970652249", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408162", + "createdBy": null, + "createdTime": "2026-02-02 02:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:46", + "echoMap": {}, + "alarmNo": "1410356580", + "alarmDate": "1769970645251", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408029", + "createdBy": null, + "createdTime": "2026-02-02 02:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:42", + "echoMap": {}, + "alarmNo": "1410356579", + "alarmDate": "1769970629033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773408010", + "createdBy": null, + "createdTime": "2026-02-02 02:30:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:33", + "echoMap": {}, + "alarmNo": "1410356578", + "alarmDate": "1769970626784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113140773407935", + "createdBy": null, + "createdTime": "2026-02-02 02:30:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:18", + "echoMap": {}, + "alarmNo": "1410356577", + "alarmDate": "1769970616740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113136478440578", + "createdBy": null, + "createdTime": "2026-02-02 02:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:11", + "echoMap": {}, + "alarmNo": "1410356576", + "alarmDate": "1769970065844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473644", + "createdBy": null, + "createdTime": "2026-02-02 02:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:46", + "echoMap": {}, + "alarmNo": "1410356575", + "alarmDate": "1769970045531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473606", + "createdBy": null, + "createdTime": "2026-02-02 02:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:48", + "echoMap": {}, + "alarmNo": "1410356574", + "alarmDate": "1769970041739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473556", + "createdBy": null, + "createdTime": "2026-02-02 02:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:42", + "echoMap": {}, + "alarmNo": "1410356573", + "alarmDate": "1769970036410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473530", + "createdBy": null, + "createdTime": "2026-02-02 02:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:45", + "echoMap": {}, + "alarmNo": "1410356572", + "alarmDate": "1769970033497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113132183473409", + "createdBy": null, + "createdTime": "2026-02-02 02:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:24", + "echoMap": {}, + "alarmNo": "1410356571", + "alarmDate": "1769970017733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113127888506009", + "createdBy": null, + "createdTime": "2026-02-02 02:10:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:00", + "echoMap": {}, + "alarmNo": "1410356570", + "alarmDate": "1769969459072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113127888505970", + "createdBy": null, + "createdTime": "2026-02-02 02:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:01", + "echoMap": {}, + "alarmNo": "1410356569", + "alarmDate": "1769969454750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113127888505895", + "createdBy": null, + "createdTime": "2026-02-02 02:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:51", + "echoMap": {}, + "alarmNo": "1410356568", + "alarmDate": "1769969445360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593539043", + "createdBy": null, + "createdTime": "2026-02-02 02:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:41", + "echoMap": {}, + "alarmNo": "1410356567", + "alarmDate": "1769969439583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538967", + "createdBy": null, + "createdTime": "2026-02-02 02:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:37", + "echoMap": {}, + "alarmNo": "1410356566", + "alarmDate": "1769969430631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538891", + "createdBy": null, + "createdTime": "2026-02-02 02:10:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:33", + "echoMap": {}, + "alarmNo": "1410356565", + "alarmDate": "1769969421399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538868", + "createdBy": null, + "createdTime": "2026-02-02 02:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:20", + "echoMap": {}, + "alarmNo": "1410356564", + "alarmDate": "1769969418700", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538857", + "createdBy": null, + "createdTime": "2026-02-02 02:10:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:19", + "echoMap": {}, + "alarmNo": "1410356563", + "alarmDate": "1769969417684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538800", + "createdBy": null, + "createdTime": "2026-02-02 02:10:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:12", + "echoMap": {}, + "alarmNo": "1410356562", + "alarmDate": "1769969410664", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538625", + "createdBy": null, + "createdTime": "2026-02-02 02:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:08", + "echoMap": {}, + "alarmNo": "1410356561", + "alarmDate": "1769968867484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538614", + "createdBy": null, + "createdTime": "2026-02-02 02:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:12", + "echoMap": {}, + "alarmNo": "1410356560", + "alarmDate": "1769968866390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113123593538589", + "createdBy": null, + "createdTime": "2026-02-02 02:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:04", + "echoMap": {}, + "alarmNo": "1410356559", + "alarmDate": "1769968863431", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604397", + "createdBy": null, + "createdTime": "2026-02-02 02:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:48", + "echoMap": {}, + "alarmNo": "1410356558", + "alarmDate": "1769968842251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604228", + "createdBy": null, + "createdTime": "2026-02-02 02:00:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:22", + "echoMap": {}, + "alarmNo": "1410356557", + "alarmDate": "1769968821199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060073", + "deviceName": "[207](10)伊犁下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604199", + "createdBy": null, + "createdTime": "2026-02-02 02:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:24", + "echoMap": {}, + "alarmNo": "1410356556", + "alarmDate": "1769968818290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113115003604153", + "createdBy": null, + "createdTime": "2026-02-02 02:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:14", + "echoMap": {}, + "alarmNo": "1410356555", + "alarmDate": "1769968813121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113110708636724", + "createdBy": null, + "createdTime": "2026-02-02 01:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:07", + "echoMap": {}, + "alarmNo": "1410356554", + "alarmDate": "1769968265803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113106413669539", + "createdBy": null, + "createdTime": "2026-02-02 01:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:01", + "echoMap": {}, + "alarmNo": "1410356553", + "alarmDate": "1769968255001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113102118702116", + "createdBy": null, + "createdTime": "2026-02-02 01:50:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:37", + "echoMap": {}, + "alarmNo": "1410356552", + "alarmDate": "1769968230824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113102118702082", + "createdBy": null, + "createdTime": "2026-02-02 01:50:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:28", + "echoMap": {}, + "alarmNo": "1410356551", + "alarmDate": "1769968227243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113089233800382", + "createdBy": null, + "createdTime": "2026-02-02 01:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:13", + "echoMap": {}, + "alarmNo": "1410356550", + "alarmDate": "1769967667626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113089233800371", + "createdBy": null, + "createdTime": "2026-02-02 01:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:07", + "echoMap": {}, + "alarmNo": "1410356549", + "alarmDate": "1769967666429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113084938832904", + "createdBy": null, + "createdTime": "2026-02-02 01:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:50", + "echoMap": {}, + "alarmNo": "1410356548", + "alarmDate": "1769967637526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113080643865796", + "createdBy": null, + "createdTime": "2026-02-02 01:40:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:38", + "echoMap": {}, + "alarmNo": "1410356547", + "alarmDate": "1769967636656", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113080643865776", + "createdBy": null, + "createdTime": "2026-02-02 01:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:36", + "echoMap": {}, + "alarmNo": "1410356546", + "alarmDate": "1769967634593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113080643865756", + "createdBy": null, + "createdTime": "2026-02-02 01:40:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:34", + "echoMap": {}, + "alarmNo": "1410356545", + "alarmDate": "1769967632674", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113076348898369", + "createdBy": null, + "createdTime": "2026-02-02 01:40:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:26", + "echoMap": {}, + "alarmNo": "1410356544", + "alarmDate": "1769967613503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113076348898335", + "createdBy": null, + "createdTime": "2026-02-02 01:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:34", + "echoMap": {}, + "alarmNo": "1410356543", + "alarmDate": "1769967610214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113067758963748", + "createdBy": null, + "createdTime": "2026-02-02 01:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:59", + "echoMap": {}, + "alarmNo": "1410356542", + "alarmDate": "1769967053025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113067758963722", + "createdBy": null, + "createdTime": "2026-02-02 01:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:02", + "echoMap": {}, + "alarmNo": "1410356541", + "alarmDate": "1769967050348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113067758963719", + "createdBy": null, + "createdTime": "2026-02-02 01:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:51", + "echoMap": {}, + "alarmNo": "1410356540", + "alarmDate": "1769967050128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113063463996505", + "createdBy": null, + "createdTime": "2026-02-02 01:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:35", + "echoMap": {}, + "alarmNo": "1410356539", + "alarmDate": "1769967034124", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113063463996456", + "createdBy": null, + "createdTime": "2026-02-02 01:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:41", + "echoMap": {}, + "alarmNo": "1410356538", + "alarmDate": "1769967029030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113063463996430", + "createdBy": null, + "createdTime": "2026-02-02 01:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:38", + "echoMap": {}, + "alarmNo": "1410356537", + "alarmDate": "1769967026206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113050579094564", + "createdBy": null, + "createdTime": "2026-02-02 01:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:14", + "echoMap": {}, + "alarmNo": "1410356536", + "alarmDate": "1769966462072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113046284127367", + "createdBy": null, + "createdTime": "2026-02-02 01:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:47", + "echoMap": {}, + "alarmNo": "1410356535", + "alarmDate": "1769966446484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113046284127301", + "createdBy": null, + "createdTime": "2026-02-02 01:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:50", + "echoMap": {}, + "alarmNo": "1410356534", + "alarmDate": "1769966438968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113037694192779", + "createdBy": null, + "createdTime": "2026-02-02 01:20:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:26", + "echoMap": {}, + "alarmNo": "1410356533", + "alarmDate": "1769966413923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113037694192759", + "createdBy": null, + "createdTime": "2026-02-02 01:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:42", + "echoMap": {}, + "alarmNo": "1410356532", + "alarmDate": "1769966411715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258260", + "createdBy": null, + "createdTime": "2026-02-02 01:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:59", + "echoMap": {}, + "alarmNo": "1410356531", + "alarmDate": "1769965857896", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258216", + "createdBy": null, + "createdTime": "2026-02-02 01:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:54", + "echoMap": {}, + "alarmNo": "1410356530", + "alarmDate": "1769965852770", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258196", + "createdBy": null, + "createdTime": "2026-02-02 01:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:03", + "echoMap": {}, + "alarmNo": "1410356529", + "alarmDate": "1769965850757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113029104258109", + "createdBy": null, + "createdTime": "2026-02-02 01:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:40", + "echoMap": {}, + "alarmNo": "1410356528", + "alarmDate": "1769965838797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113024809290812", + "createdBy": null, + "createdTime": "2026-02-02 01:10:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:36", + "echoMap": {}, + "alarmNo": "1410356527", + "alarmDate": "1769965830396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113024809290780", + "createdBy": null, + "createdTime": "2026-02-02 01:10:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:39", + "echoMap": {}, + "alarmNo": "1410356526", + "alarmDate": "1769965826726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113020514323673", + "createdBy": null, + "createdTime": "2026-02-02 01:10:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:17", + "echoMap": {}, + "alarmNo": "1410356525", + "alarmDate": "1769965816410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113020514323608", + "createdBy": null, + "createdTime": "2026-02-02 01:10:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:12", + "echoMap": {}, + "alarmNo": "1410356524", + "alarmDate": "1769965809485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113016219356195", + "createdBy": null, + "createdTime": "2026-02-02 01:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:15", + "echoMap": {}, + "alarmNo": "1410356523", + "alarmDate": "1769965263527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113011924389046", + "createdBy": null, + "createdTime": "2026-02-02 01:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:54", + "echoMap": {}, + "alarmNo": "1410356522", + "alarmDate": "1769965253428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113011924388933", + "createdBy": null, + "createdTime": "2026-02-02 01:00:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:51", + "echoMap": {}, + "alarmNo": "1410356521", + "alarmDate": "1769965239447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113003334454440", + "createdBy": null, + "createdTime": "2026-02-02 01:00:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:27", + "echoMap": {}, + "alarmNo": "1410356520", + "alarmDate": "1769965215367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113003334454416", + "createdBy": null, + "createdTime": "2026-02-02 01:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:14", + "echoMap": {}, + "alarmNo": "1410356519", + "alarmDate": "1769965212937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723113003334454389", + "createdBy": null, + "createdTime": "2026-02-02 01:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:13", + "echoMap": {}, + "alarmNo": "1410356518", + "alarmDate": "1769965210094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112999039486989", + "createdBy": null, + "createdTime": "2026-02-02 00:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:07", + "echoMap": {}, + "alarmNo": "1410356517", + "alarmDate": "1769964665738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112994744519824", + "createdBy": null, + "createdTime": "2026-02-02 00:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:04", + "echoMap": {}, + "alarmNo": "1410356516", + "alarmDate": "1769964651204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112990449552421", + "createdBy": null, + "createdTime": "2026-02-02 00:50:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:39", + "echoMap": {}, + "alarmNo": "1410356515", + "alarmDate": "1769964627148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112990449552396", + "createdBy": null, + "createdTime": "2026-02-02 00:50:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:25", + "echoMap": {}, + "alarmNo": "1410356514", + "alarmDate": "1769964624135", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112986154585269", + "createdBy": null, + "createdTime": "2026-02-02 00:50:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:21", + "echoMap": {}, + "alarmNo": "1410356513", + "alarmDate": "1769964620139", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112986154585188", + "createdBy": null, + "createdTime": "2026-02-02 00:50:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:17", + "echoMap": {}, + "alarmNo": "1410356512", + "alarmDate": "1769964610846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112977564650710", + "createdBy": null, + "createdTime": "2026-02-02 00:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:16", + "echoMap": {}, + "alarmNo": "1410356511", + "alarmDate": "1769964063840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112977564650542", + "createdBy": null, + "createdTime": "2026-02-02 00:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:55", + "echoMap": {}, + "alarmNo": "1410356510", + "alarmDate": "1769964043470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112977564650512", + "createdBy": null, + "createdTime": "2026-02-02 00:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:52", + "echoMap": {}, + "alarmNo": "1410356509", + "alarmDate": "1769964039888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112973269683251", + "createdBy": null, + "createdTime": "2026-02-02 00:40:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:35", + "echoMap": {}, + "alarmNo": "1410356508", + "alarmDate": "1769964033836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974716078", + "createdBy": null, + "createdTime": "2026-02-02 00:40:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:30", + "echoMap": {}, + "alarmNo": "1410356507", + "alarmDate": "1769964022571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974716069", + "createdBy": null, + "createdTime": "2026-02-02 00:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:23", + "echoMap": {}, + "alarmNo": "1410356506", + "alarmDate": "1769964021789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974716018", + "createdBy": null, + "createdTime": "2026-02-02 00:40:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:28", + "echoMap": {}, + "alarmNo": "1410356505", + "alarmDate": "1769964015745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112968974715973", + "createdBy": null, + "createdTime": "2026-02-02 00:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:13", + "echoMap": {}, + "alarmNo": "1410356504", + "alarmDate": "1769964010471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112960384781431", + "createdBy": null, + "createdTime": "2026-02-02 00:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:05", + "echoMap": {}, + "alarmNo": "1410356503", + "alarmDate": "1769963459418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112960384781370", + "createdBy": null, + "createdTime": "2026-02-02 00:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:05", + "echoMap": {}, + "alarmNo": "1410356502", + "alarmDate": "1769963452556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112960384781346", + "createdBy": null, + "createdTime": "2026-02-02 00:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:56", + "echoMap": {}, + "alarmNo": "1410356501", + "alarmDate": "1769963450091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846945", + "createdBy": null, + "createdTime": "2026-02-02 00:30:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:41", + "echoMap": {}, + "alarmNo": "1410356500", + "alarmDate": "1769963435420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846909", + "createdBy": null, + "createdTime": "2026-02-02 00:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:33", + "echoMap": {}, + "alarmNo": "1410356499", + "alarmDate": "1769963432102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846875", + "createdBy": null, + "createdTime": "2026-02-02 00:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:41", + "echoMap": {}, + "alarmNo": "1410356498", + "alarmDate": "1769963428465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846854", + "createdBy": null, + "createdTime": "2026-02-02 00:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:38", + "echoMap": {}, + "alarmNo": "1410356497", + "alarmDate": "1769963426127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112951794846733", + "createdBy": null, + "createdTime": "2026-02-02 00:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:17", + "echoMap": {}, + "alarmNo": "1410356496", + "alarmDate": "1769963411298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112943204912276", + "createdBy": null, + "createdTime": "2026-02-02 00:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:18", + "echoMap": {}, + "alarmNo": "1410356495", + "alarmDate": "1769962868025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060046", + "deviceName": "[209](10)伊犁1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112943204912256", + "createdBy": null, + "createdTime": "2026-02-02 00:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:16", + "echoMap": {}, + "alarmNo": "1410356494", + "alarmDate": "1769962865259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112943204912149", + "createdBy": null, + "createdTime": "2026-02-02 00:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:03", + "echoMap": {}, + "alarmNo": "1410356493", + "alarmDate": "1769962850853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944907", + "createdBy": null, + "createdTime": "2026-02-02 00:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:54", + "echoMap": {}, + "alarmNo": "1410356492", + "alarmDate": "1769962848089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944863", + "createdBy": null, + "createdTime": "2026-02-02 00:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:43", + "echoMap": {}, + "alarmNo": "1410356491", + "alarmDate": "1769962842331", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944853", + "createdBy": null, + "createdTime": "2026-02-02 00:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:53", + "echoMap": {}, + "alarmNo": "1410356490", + "alarmDate": "1769962841258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112938909944843", + "createdBy": null, + "createdTime": "2026-02-02 00:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:41", + "echoMap": {}, + "alarmNo": "1410356489", + "alarmDate": "1769962840226", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112934614977677", + "createdBy": null, + "createdTime": "2026-02-02 00:20:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:33", + "echoMap": {}, + "alarmNo": "1410356488", + "alarmDate": "1769962826767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112934614977652", + "createdBy": null, + "createdTime": "2026-02-02 00:20:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:30", + "echoMap": {}, + "alarmNo": "1410356487", + "alarmDate": "1769962823982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112934614977602", + "createdBy": null, + "createdTime": "2026-02-02 00:20:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:29", + "echoMap": {}, + "alarmNo": "1410356486", + "alarmDate": "1769962817137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112921730075715", + "createdBy": null, + "createdTime": "2026-02-02 00:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:07", + "echoMap": {}, + "alarmNo": "1410356485", + "alarmDate": "1769962260821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112921730075665", + "createdBy": null, + "createdTime": "2026-02-02 00:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:06", + "echoMap": {}, + "alarmNo": "1410356484", + "alarmDate": "1769962253953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108508", + "createdBy": null, + "createdTime": "2026-02-02 00:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:43", + "echoMap": {}, + "alarmNo": "1410356483", + "alarmDate": "1769962241919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060095", + "deviceName": "[208](10)伊犁下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108464", + "createdBy": null, + "createdTime": "2026-02-02 00:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:43", + "echoMap": {}, + "alarmNo": "1410356482", + "alarmDate": "1769962236843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108412", + "createdBy": null, + "createdTime": "2026-02-02 00:10:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:42", + "echoMap": {}, + "alarmNo": "1410356481", + "alarmDate": "1769962229841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112917435108404", + "createdBy": null, + "createdTime": "2026-02-02 00:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:30", + "echoMap": {}, + "alarmNo": "1410356480", + "alarmDate": "1769962228909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060102", + "deviceName": "[205](10)伊犁上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112913140141094", + "createdBy": null, + "createdTime": "2026-02-02 00:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:21", + "echoMap": {}, + "alarmNo": "1410356479", + "alarmDate": "1769962215420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112913140141072", + "createdBy": null, + "createdTime": "2026-02-02 00:10:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:19", + "echoMap": {}, + "alarmNo": "1410356478", + "alarmDate": "1769962212710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112908845173960", + "createdBy": null, + "createdTime": "2026-02-02 00:10:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:12", + "echoMap": {}, + "alarmNo": "1410356477", + "alarmDate": "1769962209833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112900255239288", + "createdBy": null, + "createdTime": "2026-02-02 00:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:53", + "echoMap": {}, + "alarmNo": "1410356476", + "alarmDate": "1769961652364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060087", + "deviceName": "[206](10)伊犁上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112900255239266", + "createdBy": null, + "createdTime": "2026-02-02 00:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:56", + "echoMap": {}, + "alarmNo": "1410356475", + "alarmDate": "1769961649546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112895960271891", + "createdBy": null, + "createdTime": "2026-02-02 00:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:39", + "echoMap": {}, + "alarmNo": "1410356474", + "alarmDate": "1769961627176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060086", + "deviceName": "[106](10)伊犁上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304791", + "createdBy": null, + "createdTime": "2026-02-02 00:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:31", + "echoMap": {}, + "alarmNo": "1410356473", + "alarmDate": "1769961624608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060069", + "deviceName": "[320](10)伊犁4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304741", + "createdBy": null, + "createdTime": "2026-02-02 00:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:24", + "echoMap": {}, + "alarmNo": "1410356472", + "alarmDate": "1769961617666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060070", + "deviceName": "[322](10)伊犁4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304695", + "createdBy": null, + "createdTime": "2026-02-02 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:12", + "echoMap": {}, + "alarmNo": "1410356471", + "alarmDate": "1769961610647", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060038", + "deviceName": "[204](10)伊犁厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + }, + { + "id": "723112891665304667", + "createdBy": null, + "createdTime": "2026-02-02 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:10", + "echoMap": {}, + "alarmNo": "1410356470", + "alarmDate": "1769961608655", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1007060020", + "deviceName": "[203](10)伊犁厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1007" + } + ] + }, + "1008": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112805769321604", + "createdBy": null, + "createdTime": "2026-02-02 00:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:29", + "echoMap": {}, + "alarmNo": "1430236072", + "alarmDate": "1769961680053", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112810064288803", + "createdBy": null, + "createdTime": "2026-02-02 00:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:47", + "echoMap": {}, + "alarmNo": "1430236073", + "alarmDate": "1769961694738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112814359256176", + "createdBy": null, + "createdTime": "2026-02-02 00:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:34", + "echoMap": {}, + "alarmNo": "1430236074", + "alarmDate": "1769961718826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112814359256190", + "createdBy": null, + "createdTime": "2026-02-02 00:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:02", + "echoMap": {}, + "alarmNo": "1430236075", + "alarmDate": "1769961720789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112814359256213", + "createdBy": null, + "createdTime": "2026-02-02 00:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:05", + "echoMap": {}, + "alarmNo": "1430236076", + "alarmDate": "1769961723954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112818654223373", + "createdBy": null, + "createdTime": "2026-02-02 00:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:14", + "echoMap": {}, + "alarmNo": "1430236077", + "alarmDate": "1769961732732", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112818654223391", + "createdBy": null, + "createdTime": "2026-02-02 00:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:16", + "echoMap": {}, + "alarmNo": "1430236078", + "alarmDate": "1769961735006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112831539125287", + "createdBy": null, + "createdTime": "2026-02-02 00:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:23", + "echoMap": {}, + "alarmNo": "1430236079", + "alarmDate": "1769962282242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112835834092550", + "createdBy": null, + "createdTime": "2026-02-02 00:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:58", + "echoMap": {}, + "alarmNo": "1430236080", + "alarmDate": "1769962306014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112840129059899", + "createdBy": null, + "createdTime": "2026-02-02 00:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:21", + "echoMap": {}, + "alarmNo": "1430236081", + "alarmDate": "1769962330127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112840129059938", + "createdBy": null, + "createdTime": "2026-02-02 00:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:07", + "echoMap": {}, + "alarmNo": "1430236082", + "alarmDate": "1769962337304", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060022", + "deviceName": "[402](10)宋园1#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112840129059954", + "createdBy": null, + "createdTime": "2026-02-02 00:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:43", + "echoMap": {}, + "alarmNo": "1430236083", + "alarmDate": "1769962364111", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112853013961762", + "createdBy": null, + "createdTime": "2026-02-02 00:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:45", + "echoMap": {}, + "alarmNo": "1430236084", + "alarmDate": "1769962893229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112857308929060", + "createdBy": null, + "createdTime": "2026-02-02 00:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:45", + "echoMap": {}, + "alarmNo": "1430236085", + "alarmDate": "1769962904038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112857308929123", + "createdBy": null, + "createdTime": "2026-02-02 00:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:09", + "echoMap": {}, + "alarmNo": "1430236086", + "alarmDate": "1769962917312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112861603896388", + "createdBy": null, + "createdTime": "2026-02-02 00:23:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:43", + "echoMap": {}, + "alarmNo": "1430236087", + "alarmDate": "1769963024076", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112865898863716", + "createdBy": null, + "createdTime": "2026-02-02 00:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:34", + "echoMap": {}, + "alarmNo": "1430236088", + "alarmDate": "1769963481466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798215", + "createdBy": null, + "createdTime": "2026-02-02 00:31:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:44", + "echoMap": {}, + "alarmNo": "1430236089", + "alarmDate": "1769963502539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798228", + "createdBy": null, + "createdTime": "2026-02-02 00:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:58", + "echoMap": {}, + "alarmNo": "1430236090", + "alarmDate": "1769963505511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798242", + "createdBy": null, + "createdTime": "2026-02-02 00:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:49", + "echoMap": {}, + "alarmNo": "1430236091", + "alarmDate": "1769963507833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798251", + "createdBy": null, + "createdTime": "2026-02-02 00:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:50", + "echoMap": {}, + "alarmNo": "1430236092", + "alarmDate": "1769963509461", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798260", + "createdBy": null, + "createdTime": "2026-02-02 00:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:27", + "echoMap": {}, + "alarmNo": "1430236093", + "alarmDate": "1769963510631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798295", + "createdBy": null, + "createdTime": "2026-02-02 00:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:56", + "echoMap": {}, + "alarmNo": "1430236094", + "alarmDate": "1769963514783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798361", + "createdBy": null, + "createdTime": "2026-02-02 00:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:21", + "echoMap": {}, + "alarmNo": "1430236095", + "alarmDate": "1769963529633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112883078732947", + "createdBy": null, + "createdTime": "2026-02-02 00:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:32", + "echoMap": {}, + "alarmNo": "1430236096", + "alarmDate": "1769964092755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112887373700119", + "createdBy": null, + "createdTime": "2026-02-02 00:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:51", + "echoMap": {}, + "alarmNo": "1430236097", + "alarmDate": "1769964098985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112904553569289", + "createdBy": null, + "createdTime": "2026-02-02 00:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:37", + "echoMap": {}, + "alarmNo": "1430236098", + "alarmDate": "1769964695941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112908848536576", + "createdBy": null, + "createdTime": "2026-02-02 00:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:20", + "echoMap": {}, + "alarmNo": "1430236099", + "alarmDate": "1769964704015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112908848536708", + "createdBy": null, + "createdTime": "2026-02-02 00:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:21", + "echoMap": {}, + "alarmNo": "1430236100", + "alarmDate": "1769964734343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112908848536715", + "createdBy": null, + "createdTime": "2026-02-02 00:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:16", + "echoMap": {}, + "alarmNo": "1430236101", + "alarmDate": "1769964735209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471239", + "createdBy": null, + "createdTime": "2026-02-02 01:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:43", + "echoMap": {}, + "alarmNo": "1430236102", + "alarmDate": "1769965244101", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471263", + "createdBy": null, + "createdTime": "2026-02-02 01:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:24", + "echoMap": {}, + "alarmNo": "1430236103", + "alarmDate": "1769965283348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471279", + "createdBy": null, + "createdTime": "2026-02-02 01:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:28", + "echoMap": {}, + "alarmNo": "1430236104", + "alarmDate": "1769965287454", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471286", + "createdBy": null, + "createdTime": "2026-02-02 01:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:30", + "echoMap": {}, + "alarmNo": "1430236105", + "alarmDate": "1769965288607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471302", + "createdBy": null, + "createdTime": "2026-02-02 01:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:44", + "echoMap": {}, + "alarmNo": "1430236106", + "alarmDate": "1769965292276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471314", + "createdBy": null, + "createdTime": "2026-02-02 01:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:36", + "echoMap": {}, + "alarmNo": "1430236107", + "alarmDate": "1769965294630", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112921733438476", + "createdBy": null, + "createdTime": "2026-02-02 01:01:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:44", + "echoMap": {}, + "alarmNo": "1430236108", + "alarmDate": "1769965298639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112921733438512", + "createdBy": null, + "createdTime": "2026-02-02 01:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:46", + "echoMap": {}, + "alarmNo": "1430236109", + "alarmDate": "1769965305396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112926028405783", + "createdBy": null, + "createdTime": "2026-02-02 01:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:32", + "echoMap": {}, + "alarmNo": "1430236110", + "alarmDate": "1769965316250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112934618340354", + "createdBy": null, + "createdTime": "2026-02-02 01:09:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:43", + "echoMap": {}, + "alarmNo": "1430236111", + "alarmDate": "1769965784180", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112934618340489", + "createdBy": null, + "createdTime": "2026-02-02 01:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:56", + "echoMap": {}, + "alarmNo": "1430236112", + "alarmDate": "1769965903574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208274973", + "createdBy": null, + "createdTime": "2026-02-02 01:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:43", + "echoMap": {}, + "alarmNo": "1430236113", + "alarmDate": "1769965927676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208274976", + "createdBy": null, + "createdTime": "2026-02-02 01:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:07", + "echoMap": {}, + "alarmNo": "1430236114", + "alarmDate": "1769965927993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208275034", + "createdBy": null, + "createdTime": "2026-02-02 01:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:17", + "echoMap": {}, + "alarmNo": "1430236115", + "alarmDate": "1769965936503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208275082", + "createdBy": null, + "createdTime": "2026-02-02 01:14:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:43", + "echoMap": {}, + "alarmNo": "1430236116", + "alarmDate": "1769966084082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112951798209549", + "createdBy": null, + "createdTime": "2026-02-02 01:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:30", + "echoMap": {}, + "alarmNo": "1430236117", + "alarmDate": "1769966488728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176833", + "createdBy": null, + "createdTime": "2026-02-02 01:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:30", + "echoMap": {}, + "alarmNo": "1430236118", + "alarmDate": "1769966514875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176841", + "createdBy": null, + "createdTime": "2026-02-02 01:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:57", + "echoMap": {}, + "alarmNo": "1430236119", + "alarmDate": "1769966515927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176850", + "createdBy": null, + "createdTime": "2026-02-02 01:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:58", + "echoMap": {}, + "alarmNo": "1430236120", + "alarmDate": "1769966516978", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176872", + "createdBy": null, + "createdTime": "2026-02-02 01:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:01", + "echoMap": {}, + "alarmNo": "1430236121", + "alarmDate": "1769966520378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112960388144148", + "createdBy": null, + "createdTime": "2026-02-02 01:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:08", + "echoMap": {}, + "alarmNo": "1430236122", + "alarmDate": "1769966527193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112960388144324", + "createdBy": null, + "createdTime": "2026-02-02 01:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:41", + "echoMap": {}, + "alarmNo": "1430236123", + "alarmDate": "1769967082589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078728", + "createdBy": null, + "createdTime": "2026-02-02 01:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:54", + "echoMap": {}, + "alarmNo": "1430236124", + "alarmDate": "1769967102147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078791", + "createdBy": null, + "createdTime": "2026-02-02 01:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:01", + "echoMap": {}, + "alarmNo": "1430236125", + "alarmDate": "1769967114376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060082", + "deviceName": "[111](10)宋园下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078838", + "createdBy": null, + "createdTime": "2026-02-02 01:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:42", + "echoMap": {}, + "alarmNo": "1430236126", + "alarmDate": "1769967126241", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078883", + "createdBy": null, + "createdTime": "2026-02-02 01:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:28", + "echoMap": {}, + "alarmNo": "1430236127", + "alarmDate": "1769967136724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112977568013439", + "createdBy": null, + "createdTime": "2026-02-02 01:41:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:43", + "echoMap": {}, + "alarmNo": "1430236128", + "alarmDate": "1769967702439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112981862980634", + "createdBy": null, + "createdTime": "2026-02-02 01:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:06", + "echoMap": {}, + "alarmNo": "1430236129", + "alarmDate": "1769967714402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112986157947949", + "createdBy": null, + "createdTime": "2026-02-02 01:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:10", + "echoMap": {}, + "alarmNo": "1430236130", + "alarmDate": "1769967729436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112986157948001", + "createdBy": null, + "createdTime": "2026-02-02 01:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:30", + "echoMap": {}, + "alarmNo": "1430236131", + "alarmDate": "1769967738500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112986157948011", + "createdBy": null, + "createdTime": "2026-02-02 01:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:43", + "echoMap": {}, + "alarmNo": "1430236132", + "alarmDate": "1769967764113", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112990452915246", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:22", + "echoMap": {}, + "alarmNo": "1430236133", + "alarmDate": "1769968280633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882553", + "createdBy": null, + "createdTime": "2026-02-02 01:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:37", + "echoMap": {}, + "alarmNo": "1430236134", + "alarmDate": "1769968295832", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882559", + "createdBy": null, + "createdTime": "2026-02-02 01:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:38", + "echoMap": {}, + "alarmNo": "1430236135", + "alarmDate": "1769968296752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882574", + "createdBy": null, + "createdTime": "2026-02-02 01:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:52", + "echoMap": {}, + "alarmNo": "1430236136", + "alarmDate": "1769968300364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882583", + "createdBy": null, + "createdTime": "2026-02-02 01:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:54", + "echoMap": {}, + "alarmNo": "1430236137", + "alarmDate": "1769968301668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882587", + "createdBy": null, + "createdTime": "2026-02-02 01:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:43", + "echoMap": {}, + "alarmNo": "1430236138", + "alarmDate": "1769968302229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882616", + "createdBy": null, + "createdTime": "2026-02-02 01:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:48", + "echoMap": {}, + "alarmNo": "1430236139", + "alarmDate": "1769968307014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882702", + "createdBy": null, + "createdTime": "2026-02-02 01:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:18", + "echoMap": {}, + "alarmNo": "1430236140", + "alarmDate": "1769968325753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113003337817219", + "createdBy": null, + "createdTime": "2026-02-02 02:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:41", + "echoMap": {}, + "alarmNo": "1430236141", + "alarmDate": "1769968888892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113007632784439", + "createdBy": null, + "createdTime": "2026-02-02 02:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:05", + "echoMap": {}, + "alarmNo": "1430236142", + "alarmDate": "1769968912894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113011927751722", + "createdBy": null, + "createdTime": "2026-02-02 02:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:15", + "echoMap": {}, + "alarmNo": "1430236143", + "alarmDate": "1769968923695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113011927751781", + "createdBy": null, + "createdTime": "2026-02-02 02:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:29", + "echoMap": {}, + "alarmNo": "1430236144", + "alarmDate": "1769968937064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113020517686373", + "createdBy": null, + "createdTime": "2026-02-02 02:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:53", + "echoMap": {}, + "alarmNo": "1430236145", + "alarmDate": "1769969501211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113024812653588", + "createdBy": null, + "createdTime": "2026-02-02 02:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:03", + "echoMap": {}, + "alarmNo": "1430236146", + "alarmDate": "1769969522362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113024812653604", + "createdBy": null, + "createdTime": "2026-02-02 02:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:16", + "echoMap": {}, + "alarmNo": "1430236147", + "alarmDate": "1769969525171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113024812653608", + "createdBy": null, + "createdTime": "2026-02-02 02:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:06", + "echoMap": {}, + "alarmNo": "1430236148", + "alarmDate": "1769969525434", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620873", + "createdBy": null, + "createdTime": "2026-02-02 02:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:10", + "echoMap": {}, + "alarmNo": "1430236149", + "alarmDate": "1769969529313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620904", + "createdBy": null, + "createdTime": "2026-02-02 02:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:16", + "echoMap": {}, + "alarmNo": "1430236150", + "alarmDate": "1769969534858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620925", + "createdBy": null, + "createdTime": "2026-02-02 02:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:28", + "echoMap": {}, + "alarmNo": "1430236151", + "alarmDate": "1769969539603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620932", + "createdBy": null, + "createdTime": "2026-02-02 02:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:43", + "echoMap": {}, + "alarmNo": "1430236152", + "alarmDate": "1769969564103", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113033402588167", + "createdBy": null, + "createdTime": "2026-02-02 02:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:13", + "echoMap": {}, + "alarmNo": "1430236153", + "alarmDate": "1769970081249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113033402588173", + "createdBy": null, + "createdTime": "2026-02-02 02:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:23", + "echoMap": {}, + "alarmNo": "1430236154", + "alarmDate": "1769970082058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113033402588204", + "createdBy": null, + "createdTime": "2026-02-02 02:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:40", + "echoMap": {}, + "alarmNo": "1430236155", + "alarmDate": "1769970088422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113037697555555", + "createdBy": null, + "createdTime": "2026-02-02 02:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:04", + "echoMap": {}, + "alarmNo": "1430236156", + "alarmDate": "1769970112399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113041992522808", + "createdBy": null, + "createdTime": "2026-02-02 02:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:28", + "echoMap": {}, + "alarmNo": "1430236157", + "alarmDate": "1769970136528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113050582457352", + "createdBy": null, + "createdTime": "2026-02-02 02:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:52", + "echoMap": {}, + "alarmNo": "1430236158", + "alarmDate": "1769970699656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113054877424689", + "createdBy": null, + "createdTime": "2026-02-02 02:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:16", + "echoMap": {}, + "alarmNo": "1430236159", + "alarmDate": "1769970723654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359254", + "createdBy": null, + "createdTime": "2026-02-02 02:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:39", + "echoMap": {}, + "alarmNo": "1430236160", + "alarmDate": "1769971286964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359341", + "createdBy": null, + "createdTime": "2026-02-02 02:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:45", + "echoMap": {}, + "alarmNo": "1430236161", + "alarmDate": "1769971304287", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359372", + "createdBy": null, + "createdTime": "2026-02-02 02:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:52", + "echoMap": {}, + "alarmNo": "1430236162", + "alarmDate": "1769971311168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359379", + "createdBy": null, + "createdTime": "2026-02-02 02:41:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:04", + "echoMap": {}, + "alarmNo": "1430236163", + "alarmDate": "1769971311956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359389", + "createdBy": null, + "createdTime": "2026-02-02 02:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:54", + "echoMap": {}, + "alarmNo": "1430236164", + "alarmDate": "1769971313237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359399", + "createdBy": null, + "createdTime": "2026-02-02 02:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:56", + "echoMap": {}, + "alarmNo": "1430236165", + "alarmDate": "1769971314757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359422", + "createdBy": null, + "createdTime": "2026-02-02 02:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:59", + "echoMap": {}, + "alarmNo": "1430236166", + "alarmDate": "1769971318384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113067762326554", + "createdBy": null, + "createdTime": "2026-02-02 02:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:27", + "echoMap": {}, + "alarmNo": "1430236167", + "alarmDate": "1769971335030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113072057293991", + "createdBy": null, + "createdTime": "2026-02-02 02:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:51", + "echoMap": {}, + "alarmNo": "1430236168", + "alarmDate": "1769971899173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113076352261166", + "createdBy": null, + "createdTime": "2026-02-02 02:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:15", + "echoMap": {}, + "alarmNo": "1430236169", + "alarmDate": "1769971923159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113084942195731", + "createdBy": null, + "createdTime": "2026-02-02 03:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:38", + "echoMap": {}, + "alarmNo": "1430236170", + "alarmDate": "1769972486400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113089237163059", + "createdBy": null, + "createdTime": "2026-02-02 03:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:02", + "echoMap": {}, + "alarmNo": "1430236171", + "alarmDate": "1769972510390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113089237163146", + "createdBy": null, + "createdTime": "2026-02-02 03:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:26", + "echoMap": {}, + "alarmNo": "1430236172", + "alarmDate": "1769972534516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113089237163159", + "createdBy": null, + "createdTime": "2026-02-02 03:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:18", + "echoMap": {}, + "alarmNo": "1430236173", + "alarmDate": "1769972536884", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097653", + "createdBy": null, + "createdTime": "2026-02-02 03:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:25", + "echoMap": {}, + "alarmNo": "1430236174", + "alarmDate": "1769973084048", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097683", + "createdBy": null, + "createdTime": "2026-02-02 03:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:33", + "echoMap": {}, + "alarmNo": "1430236175", + "alarmDate": "1769973091922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097696", + "createdBy": null, + "createdTime": "2026-02-02 03:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:35", + "echoMap": {}, + "alarmNo": "1430236176", + "alarmDate": "1769973094486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097709", + "createdBy": null, + "createdTime": "2026-02-02 03:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:50", + "echoMap": {}, + "alarmNo": "1430236177", + "alarmDate": "1769973097704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097716", + "createdBy": null, + "createdTime": "2026-02-02 03:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:40", + "echoMap": {}, + "alarmNo": "1430236178", + "alarmDate": "1769973099104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097744", + "createdBy": null, + "createdTime": "2026-02-02 03:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:46", + "echoMap": {}, + "alarmNo": "1430236179", + "alarmDate": "1769973105053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097804", + "createdBy": null, + "createdTime": "2026-02-02 03:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:14", + "echoMap": {}, + "alarmNo": "1430236180", + "alarmDate": "1769973121690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097953", + "createdBy": null, + "createdTime": "2026-02-02 03:18:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:43", + "echoMap": {}, + "alarmNo": "1430236181", + "alarmDate": "1769973524086", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113102122064907", + "createdBy": null, + "createdTime": "2026-02-02 03:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:38", + "echoMap": {}, + "alarmNo": "1430236182", + "alarmDate": "1769973685954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113106417032234", + "createdBy": null, + "createdTime": "2026-02-02 03:21:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:02", + "echoMap": {}, + "alarmNo": "1430236183", + "alarmDate": "1769973709992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113106417032321", + "createdBy": null, + "createdTime": "2026-02-02 03:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1430236184", + "alarmDate": "1769973734010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113106417032550", + "createdBy": null, + "createdTime": "2026-02-02 03:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:49", + "echoMap": {}, + "alarmNo": "1430236185", + "alarmDate": "1769974297232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999489", + "createdBy": null, + "createdTime": "2026-02-02 03:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:56", + "echoMap": {}, + "alarmNo": "1430236186", + "alarmDate": "1769974314714", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999520", + "createdBy": null, + "createdTime": "2026-02-02 03:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:13", + "echoMap": {}, + "alarmNo": "1430236187", + "alarmDate": "1769974321295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999539", + "createdBy": null, + "createdTime": "2026-02-02 03:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:05", + "echoMap": {}, + "alarmNo": "1430236188", + "alarmDate": "1769974324468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999557", + "createdBy": null, + "createdTime": "2026-02-02 03:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:08", + "echoMap": {}, + "alarmNo": "1430236189", + "alarmDate": "1769974327267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999583", + "createdBy": null, + "createdTime": "2026-02-02 03:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:13", + "echoMap": {}, + "alarmNo": "1430236190", + "alarmDate": "1769974331769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966840", + "createdBy": null, + "createdTime": "2026-02-02 03:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:36", + "echoMap": {}, + "alarmNo": "1430236191", + "alarmDate": "1769974881006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966857", + "createdBy": null, + "createdTime": "2026-02-02 03:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:37", + "echoMap": {}, + "alarmNo": "1430236192", + "alarmDate": "1769974884512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966922", + "createdBy": null, + "createdTime": "2026-02-02 03:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:38", + "echoMap": {}, + "alarmNo": "1430236193", + "alarmDate": "1769974896968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966972", + "createdBy": null, + "createdTime": "2026-02-02 03:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:01", + "echoMap": {}, + "alarmNo": "1430236194", + "alarmDate": "1769974908566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006967086", + "createdBy": null, + "createdTime": "2026-02-02 03:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:25", + "echoMap": {}, + "alarmNo": "1430236195", + "alarmDate": "1769974932563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113119301934099", + "createdBy": null, + "createdTime": "2026-02-02 03:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:43", + "echoMap": {}, + "alarmNo": "1430236196", + "alarmDate": "1769975084159", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901412", + "createdBy": null, + "createdTime": "2026-02-02 03:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:48", + "echoMap": {}, + "alarmNo": "1430236197", + "alarmDate": "1769975495800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901477", + "createdBy": null, + "createdTime": "2026-02-02 03:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:01", + "echoMap": {}, + "alarmNo": "1430236198", + "alarmDate": "1769975508338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901527", + "createdBy": null, + "createdTime": "2026-02-02 03:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:12", + "echoMap": {}, + "alarmNo": "1430236199", + "alarmDate": "1769975519793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901659", + "createdBy": null, + "createdTime": "2026-02-02 03:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:43", + "echoMap": {}, + "alarmNo": "1430236200", + "alarmDate": "1769975804083", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901722", + "createdBy": null, + "createdTime": "2026-02-02 04:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:32", + "echoMap": {}, + "alarmNo": "1430236201", + "alarmDate": "1769976081737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901734", + "createdBy": null, + "createdTime": "2026-02-02 04:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:36", + "echoMap": {}, + "alarmNo": "1430236202", + "alarmDate": "1769976084014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113127891868711", + "createdBy": null, + "createdTime": "2026-02-02 04:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:34", + "echoMap": {}, + "alarmNo": "1430236203", + "alarmDate": "1769976092515", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186835994", + "createdBy": null, + "createdTime": "2026-02-02 04:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:55", + "echoMap": {}, + "alarmNo": "1430236204", + "alarmDate": "1769976103768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836002", + "createdBy": null, + "createdTime": "2026-02-02 04:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:46", + "echoMap": {}, + "alarmNo": "1430236205", + "alarmDate": "1769976105310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836018", + "createdBy": null, + "createdTime": "2026-02-02 04:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:49", + "echoMap": {}, + "alarmNo": "1430236206", + "alarmDate": "1769976108036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836020", + "createdBy": null, + "createdTime": "2026-02-02 04:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:00", + "echoMap": {}, + "alarmNo": "1430236207", + "alarmDate": "1769976108095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836045", + "createdBy": null, + "createdTime": "2026-02-02 04:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:54", + "echoMap": {}, + "alarmNo": "1430236208", + "alarmDate": "1769976112584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836137", + "createdBy": null, + "createdTime": "2026-02-02 04:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:23", + "echoMap": {}, + "alarmNo": "1430236209", + "alarmDate": "1769976132069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836160", + "createdBy": null, + "createdTime": "2026-02-02 04:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:18", + "echoMap": {}, + "alarmNo": "1430236210", + "alarmDate": "1769976136643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836255", + "createdBy": null, + "createdTime": "2026-02-02 04:08:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:43", + "echoMap": {}, + "alarmNo": "1430236211", + "alarmDate": "1769976524079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113136481803281", + "createdBy": null, + "createdTime": "2026-02-02 04:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:29", + "echoMap": {}, + "alarmNo": "1430236212", + "alarmDate": "1769976687824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113136481803314", + "createdBy": null, + "createdTime": "2026-02-02 04:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:47", + "echoMap": {}, + "alarmNo": "1430236213", + "alarmDate": "1769976695337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770599", + "createdBy": null, + "createdTime": "2026-02-02 04:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:43", + "echoMap": {}, + "alarmNo": "1430236214", + "alarmDate": "1769976704087", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770664", + "createdBy": null, + "createdTime": "2026-02-02 04:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:11", + "echoMap": {}, + "alarmNo": "1430236215", + "alarmDate": "1769976719337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770696", + "createdBy": null, + "createdTime": "2026-02-02 04:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:42", + "echoMap": {}, + "alarmNo": "1430236216", + "alarmDate": "1769976727174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770864", + "createdBy": null, + "createdTime": "2026-02-02 04:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:35", + "echoMap": {}, + "alarmNo": "1430236217", + "alarmDate": "1769977280474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113145071737893", + "createdBy": null, + "createdTime": "2026-02-02 04:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:59", + "echoMap": {}, + "alarmNo": "1430236218", + "alarmDate": "1769977307569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705193", + "createdBy": null, + "createdTime": "2026-02-02 04:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:04", + "echoMap": {}, + "alarmNo": "1430236219", + "alarmDate": "1769977323252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705208", + "createdBy": null, + "createdTime": "2026-02-02 04:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:19", + "echoMap": {}, + "alarmNo": "1430236220", + "alarmDate": "1769977326512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705227", + "createdBy": null, + "createdTime": "2026-02-02 04:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:23", + "echoMap": {}, + "alarmNo": "1430236221", + "alarmDate": "1769977330580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705285", + "createdBy": null, + "createdTime": "2026-02-02 04:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:20", + "echoMap": {}, + "alarmNo": "1430236222", + "alarmDate": "1769977338888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705430", + "createdBy": null, + "createdTime": "2026-02-02 04:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:28", + "echoMap": {}, + "alarmNo": "1430236223", + "alarmDate": "1769977887023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705441", + "createdBy": null, + "createdTime": "2026-02-02 04:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:35", + "echoMap": {}, + "alarmNo": "1430236224", + "alarmDate": "1769977889761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705443", + "createdBy": null, + "createdTime": "2026-02-02 04:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:31", + "echoMap": {}, + "alarmNo": "1430236225", + "alarmDate": "1769977889865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705458", + "createdBy": null, + "createdTime": "2026-02-02 04:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:33", + "echoMap": {}, + "alarmNo": "1430236226", + "alarmDate": "1769977892253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705472", + "createdBy": null, + "createdTime": "2026-02-02 04:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:47", + "echoMap": {}, + "alarmNo": "1430236227", + "alarmDate": "1769977894816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639775", + "createdBy": null, + "createdTime": "2026-02-02 04:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:11", + "echoMap": {}, + "alarmNo": "1430236228", + "alarmDate": "1769977918779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639830", + "createdBy": null, + "createdTime": "2026-02-02 04:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:11", + "echoMap": {}, + "alarmNo": "1430236229", + "alarmDate": "1769977929564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639883", + "createdBy": null, + "createdTime": "2026-02-02 04:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:33:43", + "echoMap": {}, + "alarmNo": "1430236230", + "alarmDate": "1769977964098", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639956", + "createdBy": null, + "createdTime": "2026-02-02 04:38:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:43", + "echoMap": {}, + "alarmNo": "1430236231", + "alarmDate": "1769978324081", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956640003", + "createdBy": null, + "createdTime": "2026-02-02 04:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:58", + "echoMap": {}, + "alarmNo": "1430236232", + "alarmDate": "1769978479984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956640011", + "createdBy": null, + "createdTime": "2026-02-02 04:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:23", + "echoMap": {}, + "alarmNo": "1430236233", + "alarmDate": "1769978481723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113162251607040", + "createdBy": null, + "createdTime": "2026-02-02 04:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:33", + "echoMap": {}, + "alarmNo": "1430236234", + "alarmDate": "1769978492255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113166546574370", + "createdBy": null, + "createdTime": "2026-02-02 04:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1430236235", + "alarmDate": "1769978513195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113166546574445", + "createdBy": null, + "createdTime": "2026-02-02 04:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:45", + "echoMap": {}, + "alarmNo": "1430236236", + "alarmDate": "1769978530110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113170841541688", + "createdBy": null, + "createdTime": "2026-02-02 04:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:43", + "echoMap": {}, + "alarmNo": "1430236237", + "alarmDate": "1769979102142", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136508958", + "createdBy": null, + "createdTime": "2026-02-02 04:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:49", + "echoMap": {}, + "alarmNo": "1430236238", + "alarmDate": "1769979108553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136508997", + "createdBy": null, + "createdTime": "2026-02-02 04:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:09", + "echoMap": {}, + "alarmNo": "1430236239", + "alarmDate": "1769979117328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509012", + "createdBy": null, + "createdTime": "2026-02-02 04:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:01", + "echoMap": {}, + "alarmNo": "1430236240", + "alarmDate": "1769979119713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509029", + "createdBy": null, + "createdTime": "2026-02-02 04:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:03", + "echoMap": {}, + "alarmNo": "1430236241", + "alarmDate": "1769979122473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509046", + "createdBy": null, + "createdTime": "2026-02-02 04:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1430236242", + "alarmDate": "1769979124915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509096", + "createdBy": null, + "createdTime": "2026-02-02 04:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:30", + "echoMap": {}, + "alarmNo": "1430236243", + "alarmDate": "1769979137581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509224", + "createdBy": null, + "createdTime": "2026-02-02 05:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:40", + "echoMap": {}, + "alarmNo": "1430236244", + "alarmDate": "1769979681503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509233", + "createdBy": null, + "createdTime": "2026-02-02 05:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:30", + "echoMap": {}, + "alarmNo": "1430236245", + "alarmDate": "1769979682588", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060022", + "deviceName": "[402](10)宋园1#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113179431476251", + "createdBy": null, + "createdTime": "2026-02-02 05:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:33", + "echoMap": {}, + "alarmNo": "1430236246", + "alarmDate": "1769979692376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443520", + "createdBy": null, + "createdTime": "2026-02-02 05:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:24", + "echoMap": {}, + "alarmNo": "1430236247", + "alarmDate": "1769979696535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443598", + "createdBy": null, + "createdTime": "2026-02-02 05:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:03", + "echoMap": {}, + "alarmNo": "1430236248", + "alarmDate": "1769979722341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443749", + "createdBy": null, + "createdTime": "2026-02-02 05:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:34", + "echoMap": {}, + "alarmNo": "1430236249", + "alarmDate": "1769980282514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443835", + "createdBy": null, + "createdTime": "2026-02-02 05:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:10", + "echoMap": {}, + "alarmNo": "1430236250", + "alarmDate": "1769980318307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060110", + "deviceName": "[403](10)宋园1#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113188021410840", + "createdBy": null, + "createdTime": "2026-02-02 05:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:16", + "echoMap": {}, + "alarmNo": "1430236251", + "alarmDate": "1769980329644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378129", + "createdBy": null, + "createdTime": "2026-02-02 05:14:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:15:44", + "echoMap": {}, + "alarmNo": "1430236252", + "alarmDate": "1769980484118", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378156", + "createdBy": null, + "createdTime": "2026-02-02 05:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:43", + "echoMap": {}, + "alarmNo": "1430236253", + "alarmDate": "1769980544086", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378225", + "createdBy": null, + "createdTime": "2026-02-02 05:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:51", + "echoMap": {}, + "alarmNo": "1430236254", + "alarmDate": "1769980881865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378243", + "createdBy": null, + "createdTime": "2026-02-02 05:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:30", + "echoMap": {}, + "alarmNo": "1430236255", + "alarmDate": "1769980889349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378279", + "createdBy": null, + "createdTime": "2026-02-02 05:21:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:46", + "echoMap": {}, + "alarmNo": "1430236256", + "alarmDate": "1769980905365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378282", + "createdBy": null, + "createdTime": "2026-02-02 05:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:47", + "echoMap": {}, + "alarmNo": "1430236257", + "alarmDate": "1769980905522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378285", + "createdBy": null, + "createdTime": "2026-02-02 05:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:47", + "echoMap": {}, + "alarmNo": "1430236258", + "alarmDate": "1769980905662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378314", + "createdBy": null, + "createdTime": "2026-02-02 05:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:15", + "echoMap": {}, + "alarmNo": "1430236259", + "alarmDate": "1769980922862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378328", + "createdBy": null, + "createdTime": "2026-02-02 05:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:10", + "echoMap": {}, + "alarmNo": "1430236260", + "alarmDate": "1769980928963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378430", + "createdBy": null, + "createdTime": "2026-02-02 05:29:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:43", + "echoMap": {}, + "alarmNo": "1430236261", + "alarmDate": "1769981384137", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113196611345443", + "createdBy": null, + "createdTime": "2026-02-02 05:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:56", + "echoMap": {}, + "alarmNo": "1430236262", + "alarmDate": "1769981515273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312704", + "createdBy": null, + "createdTime": "2026-02-02 05:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:34", + "echoMap": {}, + "alarmNo": "1430236263", + "alarmDate": "1769981535356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312882", + "createdBy": null, + "createdTime": "2026-02-02 05:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:02", + "echoMap": {}, + "alarmNo": "1430236264", + "alarmDate": "1769982120955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312918", + "createdBy": null, + "createdTime": "2026-02-02 05:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:29", + "echoMap": {}, + "alarmNo": "1430236265", + "alarmDate": "1769982139349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312924", + "createdBy": null, + "createdTime": "2026-02-02 05:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:43", + "echoMap": {}, + "alarmNo": "1430236266", + "alarmDate": "1769982164097", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906313024", + "createdBy": null, + "createdTime": "2026-02-02 05:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:21", + "echoMap": {}, + "alarmNo": "1430236267", + "alarmDate": "1769982679776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906313035", + "createdBy": null, + "createdTime": "2026-02-02 05:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:29", + "echoMap": {}, + "alarmNo": "1430236268", + "alarmDate": "1769982688273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906313041", + "createdBy": null, + "createdTime": "2026-02-02 05:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:30", + "echoMap": {}, + "alarmNo": "1430236269", + "alarmDate": "1769982689244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113205201280003", + "createdBy": null, + "createdTime": "2026-02-02 05:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:51", + "echoMap": {}, + "alarmNo": "1430236270", + "alarmDate": "1769982692887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113205201280059", + "createdBy": null, + "createdTime": "2026-02-02 05:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:56", + "echoMap": {}, + "alarmNo": "1430236271", + "alarmDate": "1769982714838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113209496247303", + "createdBy": null, + "createdTime": "2026-02-02 05:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:09", + "echoMap": {}, + "alarmNo": "1430236272", + "alarmDate": "1769982729037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113209496247482", + "createdBy": null, + "createdTime": "2026-02-02 06:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:51", + "echoMap": {}, + "alarmNo": "1430236273", + "alarmDate": "1769983310172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113213791214642", + "createdBy": null, + "createdTime": "2026-02-02 06:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:31", + "echoMap": {}, + "alarmNo": "1430236274", + "alarmDate": "1769983880202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113213791214647", + "createdBy": null, + "createdTime": "2026-02-02 06:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:54", + "echoMap": {}, + "alarmNo": "1430236275", + "alarmDate": "1769983881494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086181952", + "createdBy": null, + "createdTime": "2026-02-02 06:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:43", + "echoMap": {}, + "alarmNo": "1430236276", + "alarmDate": "1769983901650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086181961", + "createdBy": null, + "createdTime": "2026-02-02 06:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:57", + "echoMap": {}, + "alarmNo": "1430236277", + "alarmDate": "1769983904297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182012", + "createdBy": null, + "createdTime": "2026-02-02 06:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:02", + "echoMap": {}, + "alarmNo": "1430236278", + "alarmDate": "1769983920865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182020", + "createdBy": null, + "createdTime": "2026-02-02 06:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:04", + "echoMap": {}, + "alarmNo": "1430236279", + "alarmDate": "1769983922898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182026", + "createdBy": null, + "createdTime": "2026-02-02 06:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:05", + "echoMap": {}, + "alarmNo": "1430236280", + "alarmDate": "1769983924068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182052", + "createdBy": null, + "createdTime": "2026-02-02 06:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:52", + "echoMap": {}, + "alarmNo": "1430236281", + "alarmDate": "1769983935305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182128", + "createdBy": null, + "createdTime": "2026-02-02 06:17:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:43", + "echoMap": {}, + "alarmNo": "1430236282", + "alarmDate": "1769984264077", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182184", + "createdBy": null, + "createdTime": "2026-02-02 06:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:19", + "echoMap": {}, + "alarmNo": "1430236283", + "alarmDate": "1769984481581", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113222381149194", + "createdBy": null, + "createdTime": "2026-02-02 06:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:44", + "echoMap": {}, + "alarmNo": "1430236284", + "alarmDate": "1769984502744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116500", + "createdBy": null, + "createdTime": "2026-02-02 06:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:10", + "echoMap": {}, + "alarmNo": "1430236285", + "alarmDate": "1769984523607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116510", + "createdBy": null, + "createdTime": "2026-02-02 06:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:39", + "echoMap": {}, + "alarmNo": "1430236286", + "alarmDate": "1769984525809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116543", + "createdBy": null, + "createdTime": "2026-02-02 06:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:15", + "echoMap": {}, + "alarmNo": "1430236287", + "alarmDate": "1769984534175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060026", + "deviceName": "[210](10)宋园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116730", + "createdBy": null, + "createdTime": "2026-02-02 06:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:47", + "echoMap": {}, + "alarmNo": "1430236288", + "alarmDate": "1769985106108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116738", + "createdBy": null, + "createdTime": "2026-02-02 06:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:56", + "echoMap": {}, + "alarmNo": "1430236289", + "alarmDate": "1769985110187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116775", + "createdBy": null, + "createdTime": "2026-02-02 06:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:27", + "echoMap": {}, + "alarmNo": "1430236290", + "alarmDate": "1769985138349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051093", + "createdBy": null, + "createdTime": "2026-02-02 06:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:45", + "echoMap": {}, + "alarmNo": "1430236291", + "alarmDate": "1769985699111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051098", + "createdBy": null, + "createdTime": "2026-02-02 06:41:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:42", + "echoMap": {}, + "alarmNo": "1430236292", + "alarmDate": "1769985700760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051121", + "createdBy": null, + "createdTime": "2026-02-02 06:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:56", + "echoMap": {}, + "alarmNo": "1430236293", + "alarmDate": "1769985714765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051124", + "createdBy": null, + "createdTime": "2026-02-02 06:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:56", + "echoMap": {}, + "alarmNo": "1430236294", + "alarmDate": "1769985714870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051133", + "createdBy": null, + "createdTime": "2026-02-02 06:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:04", + "echoMap": {}, + "alarmNo": "1430236295", + "alarmDate": "1769985718099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051313", + "createdBy": null, + "createdTime": "2026-02-02 06:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:40", + "echoMap": {}, + "alarmNo": "1430236296", + "alarmDate": "1769986298637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113239561018409", + "createdBy": null, + "createdTime": "2026-02-02 06:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:17", + "echoMap": {}, + "alarmNo": "1430236297", + "alarmDate": "1769986331304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113243855985822", + "createdBy": null, + "createdTime": "2026-02-02 07:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:44", + "echoMap": {}, + "alarmNo": "1430236298", + "alarmDate": "1769986902990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113243855985874", + "createdBy": null, + "createdTime": "2026-02-02 07:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:07", + "echoMap": {}, + "alarmNo": "1430236299", + "alarmDate": "1769986926074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113243855985897", + "createdBy": null, + "createdTime": "2026-02-02 07:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:16", + "echoMap": {}, + "alarmNo": "1430236300", + "alarmDate": "1769986935377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113248150952970", + "createdBy": null, + "createdTime": "2026-02-02 07:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:24", + "echoMap": {}, + "alarmNo": "1430236301", + "alarmDate": "1769987482553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113248150953003", + "createdBy": null, + "createdTime": "2026-02-02 07:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:53", + "echoMap": {}, + "alarmNo": "1430236302", + "alarmDate": "1769987511663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113248150953012", + "createdBy": null, + "createdTime": "2026-02-02 07:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:58", + "echoMap": {}, + "alarmNo": "1430236303", + "alarmDate": "1769987516543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920280", + "createdBy": null, + "createdTime": "2026-02-02 07:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:43", + "echoMap": {}, + "alarmNo": "1430236304", + "alarmDate": "1769987564078", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920332", + "createdBy": null, + "createdTime": "2026-02-02 07:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:43", + "echoMap": {}, + "alarmNo": "1430236305", + "alarmDate": "1769987744094", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920392", + "createdBy": null, + "createdTime": "2026-02-02 07:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:43", + "echoMap": {}, + "alarmNo": "1430236306", + "alarmDate": "1769988044078", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920436", + "createdBy": null, + "createdTime": "2026-02-02 07:21:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:40", + "echoMap": {}, + "alarmNo": "1430236307", + "alarmDate": "1769988099531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854860", + "createdBy": null, + "createdTime": "2026-02-02 07:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:43", + "echoMap": {}, + "alarmNo": "1430236308", + "alarmDate": "1769988680138", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854909", + "createdBy": null, + "createdTime": "2026-02-02 07:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:45", + "echoMap": {}, + "alarmNo": "1430236309", + "alarmDate": "1769988703896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854929", + "createdBy": null, + "createdTime": "2026-02-02 07:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:00", + "echoMap": {}, + "alarmNo": "1430236310", + "alarmDate": "1769988719251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854935", + "createdBy": null, + "createdTime": "2026-02-02 07:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:02", + "echoMap": {}, + "alarmNo": "1430236311", + "alarmDate": "1769988720872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854955", + "createdBy": null, + "createdTime": "2026-02-02 07:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:06", + "echoMap": {}, + "alarmNo": "1430236312", + "alarmDate": "1769988734294", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113265330822150", + "createdBy": null, + "createdTime": "2026-02-02 07:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:56", + "echoMap": {}, + "alarmNo": "1430236313", + "alarmDate": "1769989315479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113265330822159", + "createdBy": null, + "createdTime": "2026-02-02 07:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:01", + "echoMap": {}, + "alarmNo": "1430236314", + "alarmDate": "1769989320429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113269625789562", + "createdBy": null, + "createdTime": "2026-02-02 07:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:50", + "echoMap": {}, + "alarmNo": "1430236315", + "alarmDate": "1769989909393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113273920756793", + "createdBy": null, + "createdTime": "2026-02-02 08:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:49", + "echoMap": {}, + "alarmNo": "1430236316", + "alarmDate": "1769990507806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724033", + "createdBy": null, + "createdTime": "2026-02-02 08:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:49", + "echoMap": {}, + "alarmNo": "1430236317", + "alarmDate": "1769990508166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724073", + "createdBy": null, + "createdTime": "2026-02-02 08:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:08", + "echoMap": {}, + "alarmNo": "1430236318", + "alarmDate": "1769990526739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724150", + "createdBy": null, + "createdTime": "2026-02-02 08:08:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:43", + "echoMap": {}, + "alarmNo": "1430236319", + "alarmDate": "1769990924079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724194", + "createdBy": null, + "createdTime": "2026-02-02 08:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:23", + "echoMap": {}, + "alarmNo": "1430236320", + "alarmDate": "1769991081960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724241", + "createdBy": null, + "createdTime": "2026-02-02 08:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:02", + "echoMap": {}, + "alarmNo": "1430236321", + "alarmDate": "1769991121263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724242", + "createdBy": null, + "createdTime": "2026-02-02 08:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:08", + "echoMap": {}, + "alarmNo": "1430236322", + "alarmDate": "1769991121296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724256", + "createdBy": null, + "createdTime": "2026-02-02 08:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:07", + "echoMap": {}, + "alarmNo": "1430236323", + "alarmDate": "1769991126221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658637", + "createdBy": null, + "createdTime": "2026-02-02 08:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:23", + "echoMap": {}, + "alarmNo": "1430236324", + "alarmDate": "1769991682382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658696", + "createdBy": null, + "createdTime": "2026-02-02 08:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:03", + "echoMap": {}, + "alarmNo": "1430236325", + "alarmDate": "1769991722310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658706", + "createdBy": null, + "createdTime": "2026-02-02 08:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:28", + "echoMap": {}, + "alarmNo": "1430236326", + "alarmDate": "1769991728022", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060029", + "deviceName": "[306](10)宋园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658857", + "createdBy": null, + "createdTime": "2026-02-02 08:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:37", + "echoMap": {}, + "alarmNo": "1430236327", + "alarmDate": "1769992296044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658886", + "createdBy": null, + "createdTime": "2026-02-02 08:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:02", + "echoMap": {}, + "alarmNo": "1430236328", + "alarmDate": "1769992320755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658901", + "createdBy": null, + "createdTime": "2026-02-02 08:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:14", + "echoMap": {}, + "alarmNo": "1430236329", + "alarmDate": "1769992332543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593224", + "createdBy": null, + "createdTime": "2026-02-02 08:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:28", + "echoMap": {}, + "alarmNo": "1430236330", + "alarmDate": "1769992886799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593235", + "createdBy": null, + "createdTime": "2026-02-02 08:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:39", + "echoMap": {}, + "alarmNo": "1430236331", + "alarmDate": "1769992893216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593278", + "createdBy": null, + "createdTime": "2026-02-02 08:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:08", + "echoMap": {}, + "alarmNo": "1430236332", + "alarmDate": "1769992927152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593287", + "createdBy": null, + "createdTime": "2026-02-02 08:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:13", + "echoMap": {}, + "alarmNo": "1430236333", + "alarmDate": "1769992932054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593326", + "createdBy": null, + "createdTime": "2026-02-02 08:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:43", + "echoMap": {}, + "alarmNo": "1430236334", + "alarmDate": "1769993084103", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593418", + "createdBy": null, + "createdTime": "2026-02-02 08:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:21", + "echoMap": {}, + "alarmNo": "1430236335", + "alarmDate": "1769993480488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593425", + "createdBy": null, + "createdTime": "2026-02-02 08:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:23", + "echoMap": {}, + "alarmNo": "1430236336", + "alarmDate": "1769993482309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593435", + "createdBy": null, + "createdTime": "2026-02-02 08:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:29", + "echoMap": {}, + "alarmNo": "1430236337", + "alarmDate": "1769993488228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593444", + "createdBy": null, + "createdTime": "2026-02-02 08:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:40", + "echoMap": {}, + "alarmNo": "1430236338", + "alarmDate": "1769993493555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593471", + "createdBy": null, + "createdTime": "2026-02-02 08:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:59", + "echoMap": {}, + "alarmNo": "1430236339", + "alarmDate": "1769993511558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593501", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:13", + "echoMap": {}, + "alarmNo": "1430236340", + "alarmDate": "1769993531665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593504", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:13", + "echoMap": {}, + "alarmNo": "1430236341", + "alarmDate": "1769993532206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527808", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:24", + "echoMap": {}, + "alarmNo": "1430236342", + "alarmDate": "1769994079549", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060025", + "deviceName": "[308](10)宋园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527812", + "createdBy": null, + "createdTime": "2026-02-02 09:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:11", + "echoMap": {}, + "alarmNo": "1430236343", + "alarmDate": "1769994080747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527814", + "createdBy": null, + "createdTime": "2026-02-02 09:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:22", + "echoMap": {}, + "alarmNo": "1430236344", + "alarmDate": "1769994080848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527840", + "createdBy": null, + "createdTime": "2026-02-02 09:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:31", + "echoMap": {}, + "alarmNo": "1430236345", + "alarmDate": "1769994090375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527920", + "createdBy": null, + "createdTime": "2026-02-02 09:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:08", + "echoMap": {}, + "alarmNo": "1430236346", + "alarmDate": "1769994126647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527949", + "createdBy": null, + "createdTime": "2026-02-02 09:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:15", + "echoMap": {}, + "alarmNo": "1430236347", + "alarmDate": "1769994134376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985528072", + "createdBy": null, + "createdTime": "2026-02-02 09:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:32", + "echoMap": {}, + "alarmNo": "1430236348", + "alarmDate": "1769994681089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985528076", + "createdBy": null, + "createdTime": "2026-02-02 09:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:23", + "echoMap": {}, + "alarmNo": "1430236349", + "alarmDate": "1769994681892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985528105", + "createdBy": null, + "createdTime": "2026-02-02 09:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:32", + "echoMap": {}, + "alarmNo": "1430236350", + "alarmDate": "1769994690659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113308280495117", + "createdBy": null, + "createdTime": "2026-02-02 09:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:15", + "echoMap": {}, + "alarmNo": "1430236351", + "alarmDate": "1769994704208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462414", + "createdBy": null, + "createdTime": "2026-02-02 09:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:15", + "echoMap": {}, + "alarmNo": "1430236352", + "alarmDate": "1769994734007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462425", + "createdBy": null, + "createdTime": "2026-02-02 09:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:34", + "echoMap": {}, + "alarmNo": "1430236353", + "alarmDate": "1769994738900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462534", + "createdBy": null, + "createdTime": "2026-02-02 09:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:43", + "echoMap": {}, + "alarmNo": "1430236354", + "alarmDate": "1769995244083", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462553", + "createdBy": null, + "createdTime": "2026-02-02 09:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:31", + "echoMap": {}, + "alarmNo": "1430236355", + "alarmDate": "1769995290127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462571", + "createdBy": null, + "createdTime": "2026-02-02 09:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:28", + "echoMap": {}, + "alarmNo": "1430236356", + "alarmDate": "1769995301554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462606", + "createdBy": null, + "createdTime": "2026-02-02 09:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:57", + "echoMap": {}, + "alarmNo": "1430236357", + "alarmDate": "1769995315598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462653", + "createdBy": null, + "createdTime": "2026-02-02 09:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:35", + "echoMap": {}, + "alarmNo": "1430236358", + "alarmDate": "1769995330534", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060029", + "deviceName": "[306](10)宋园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462716", + "createdBy": null, + "createdTime": "2026-02-02 09:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:43", + "echoMap": {}, + "alarmNo": "1430236359", + "alarmDate": "1769995544149", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397009", + "createdBy": null, + "createdTime": "2026-02-02 09:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:15", + "echoMap": {}, + "alarmNo": "1430236360", + "alarmDate": "1769995895601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397015", + "createdBy": null, + "createdTime": "2026-02-02 09:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:40", + "echoMap": {}, + "alarmNo": "1430236361", + "alarmDate": "1769995899314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397019", + "createdBy": null, + "createdTime": "2026-02-02 09:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:04", + "echoMap": {}, + "alarmNo": "1430236362", + "alarmDate": "1769995899900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397076", + "createdBy": null, + "createdTime": "2026-02-02 09:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:10", + "echoMap": {}, + "alarmNo": "1430236363", + "alarmDate": "1769995928648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397092", + "createdBy": null, + "createdTime": "2026-02-02 09:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:04", + "echoMap": {}, + "alarmNo": "1430236364", + "alarmDate": "1769995936892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397098", + "createdBy": null, + "createdTime": "2026-02-02 09:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:31", + "echoMap": {}, + "alarmNo": "1430236365", + "alarmDate": "1769995938199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397161", + "createdBy": null, + "createdTime": "2026-02-02 09:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:43", + "echoMap": {}, + "alarmNo": "1430236366", + "alarmDate": "1769996204078", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397223", + "createdBy": null, + "createdTime": "2026-02-02 09:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:24", + "echoMap": {}, + "alarmNo": "1430236367", + "alarmDate": "1769996482815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113325460364306", + "createdBy": null, + "createdTime": "2026-02-02 09:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1430236368", + "alarmDate": "1769996536288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331705", + "createdBy": null, + "createdTime": "2026-02-02 09:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:37", + "echoMap": {}, + "alarmNo": "1430236369", + "alarmDate": "1769997096098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331713", + "createdBy": null, + "createdTime": "2026-02-02 09:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:39", + "echoMap": {}, + "alarmNo": "1430236370", + "alarmDate": "1769997097886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331724", + "createdBy": null, + "createdTime": "2026-02-02 09:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:42", + "echoMap": {}, + "alarmNo": "1430236371", + "alarmDate": "1769997101356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331786", + "createdBy": null, + "createdTime": "2026-02-02 09:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1430236372", + "alarmDate": "1769997130281", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060029", + "deviceName": "[306](10)宋园1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266190", + "createdBy": null, + "createdTime": "2026-02-02 10:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:42", + "echoMap": {}, + "alarmNo": "1430236373", + "alarmDate": "1769997701169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266253", + "createdBy": null, + "createdTime": "2026-02-02 10:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:12", + "echoMap": {}, + "alarmNo": "1430236374", + "alarmDate": "1769997730529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266269", + "createdBy": null, + "createdTime": "2026-02-02 10:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:17", + "echoMap": {}, + "alarmNo": "1430236375", + "alarmDate": "1769997736061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266280", + "createdBy": null, + "createdTime": "2026-02-02 10:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:20", + "echoMap": {}, + "alarmNo": "1430236376", + "alarmDate": "1769997739891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060024", + "deviceName": "[303](10)宋园1#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266406", + "createdBy": null, + "createdTime": "2026-02-02 10:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:24", + "echoMap": {}, + "alarmNo": "1430236378", + "alarmDate": "1769998282684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266424", + "createdBy": null, + "createdTime": "2026-02-02 10:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:30", + "echoMap": {}, + "alarmNo": "1430236379", + "alarmDate": "1769998289198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266483", + "createdBy": null, + "createdTime": "2026-02-02 10:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:19", + "echoMap": {}, + "alarmNo": "1430236380", + "alarmDate": "1769998327282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113342640233535", + "createdBy": null, + "createdTime": "2026-02-02 10:17:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:43", + "echoMap": {}, + "alarmNo": "1430236381", + "alarmDate": "1769998664082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200823", + "createdBy": null, + "createdTime": "2026-02-02 10:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:30", + "echoMap": {}, + "alarmNo": "1430236382", + "alarmDate": "1769998889215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200846", + "createdBy": null, + "createdTime": "2026-02-02 10:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:40", + "echoMap": {}, + "alarmNo": "1430236383", + "alarmDate": "1769998898926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200858", + "createdBy": null, + "createdTime": "2026-02-02 10:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:44", + "echoMap": {}, + "alarmNo": "1430236384", + "alarmDate": "1769998902739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200880", + "createdBy": null, + "createdTime": "2026-02-02 10:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:58", + "echoMap": {}, + "alarmNo": "1430236385", + "alarmDate": "1769998911613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200993", + "createdBy": null, + "createdTime": "2026-02-02 10:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:43", + "echoMap": {}, + "alarmNo": "1430236386", + "alarmDate": "1769999144079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935201061", + "createdBy": null, + "createdTime": "2026-02-02 10:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:38", + "echoMap": {}, + "alarmNo": "1430236387", + "alarmDate": "1769999480862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935201107", + "createdBy": null, + "createdTime": "2026-02-02 10:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:47", + "echoMap": {}, + "alarmNo": "1430236388", + "alarmDate": "1769999506120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935201115", + "createdBy": null, + "createdTime": "2026-02-02 10:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:56", + "echoMap": {}, + "alarmNo": "1430236389", + "alarmDate": "1769999509989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113351230168105", + "createdBy": null, + "createdTime": "2026-02-02 10:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1430236390", + "alarmDate": "1769999527979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113351230168111", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:11", + "echoMap": {}, + "alarmNo": "1430236391", + "alarmDate": "1769999530392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135361", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1430236392", + "alarmDate": "1769999532843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135430", + "createdBy": null, + "createdTime": "2026-02-02 10:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:43", + "echoMap": {}, + "alarmNo": "1430236393", + "alarmDate": "1769999804093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135489", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:34", + "echoMap": {}, + "alarmNo": "1430236394", + "alarmDate": "1770000081204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135500", + "createdBy": null, + "createdTime": "2026-02-02 10:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:27", + "echoMap": {}, + "alarmNo": "1430236395", + "alarmDate": "1770000085549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135509", + "createdBy": null, + "createdTime": "2026-02-02 10:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:29", + "echoMap": {}, + "alarmNo": "1430236396", + "alarmDate": "1770000087991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135552", + "createdBy": null, + "createdTime": "2026-02-02 10:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:45", + "echoMap": {}, + "alarmNo": "1430236397", + "alarmDate": "1770000118339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135567", + "createdBy": null, + "createdTime": "2026-02-02 10:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:06", + "echoMap": {}, + "alarmNo": "1430236398", + "alarmDate": "1770000124934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113359820102678", + "createdBy": null, + "createdTime": "2026-02-02 10:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:39", + "echoMap": {}, + "alarmNo": "1430236399", + "alarmDate": "1770000697633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113359820102699", + "createdBy": null, + "createdTime": "2026-02-02 10:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:49", + "echoMap": {}, + "alarmNo": "1430236400", + "alarmDate": "1770000707525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113364115070074", + "createdBy": null, + "createdTime": "2026-02-02 11:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:20", + "echoMap": {}, + "alarmNo": "1430236401", + "alarmDate": "1770001279711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113364115070172", + "createdBy": null, + "createdTime": "2026-02-02 11:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:52", + "echoMap": {}, + "alarmNo": "1430236402", + "alarmDate": "1770001310963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113368410037262", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:11", + "echoMap": {}, + "alarmNo": "1430236403", + "alarmDate": "1770001330323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113368410037270", + "createdBy": null, + "createdTime": "2026-02-02 11:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:13", + "echoMap": {}, + "alarmNo": "1430236404", + "alarmDate": "1770001331686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004650", + "createdBy": null, + "createdTime": "2026-02-02 11:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:10", + "echoMap": {}, + "alarmNo": "1430236405", + "alarmDate": "1770001881283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004657", + "createdBy": null, + "createdTime": "2026-02-02 11:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:25", + "echoMap": {}, + "alarmNo": "1430236406", + "alarmDate": "1770001883640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004668", + "createdBy": null, + "createdTime": "2026-02-02 11:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:28", + "echoMap": {}, + "alarmNo": "1430236407", + "alarmDate": "1770001886975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004721", + "createdBy": null, + "createdTime": "2026-02-02 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:53", + "echoMap": {}, + "alarmNo": "1430236408", + "alarmDate": "1770001911796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113381294939179", + "createdBy": null, + "createdTime": "2026-02-02 11:17:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:43", + "echoMap": {}, + "alarmNo": "1430236409", + "alarmDate": "1770002264395", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113381294939237", + "createdBy": null, + "createdTime": "2026-02-02 11:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:38", + "echoMap": {}, + "alarmNo": "1430236410", + "alarmDate": "1770002496593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113381294939257", + "createdBy": null, + "createdTime": "2026-02-02 11:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:53", + "echoMap": {}, + "alarmNo": "1430236411", + "alarmDate": "1770002511502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113389884873790", + "createdBy": null, + "createdTime": "2026-02-02 11:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:56", + "echoMap": {}, + "alarmNo": "1430236412", + "alarmDate": "1770003114852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113389884873809", + "createdBy": null, + "createdTime": "2026-02-02 11:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:09", + "echoMap": {}, + "alarmNo": "1430236413", + "alarmDate": "1770003128243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113389884873829", + "createdBy": null, + "createdTime": "2026-02-02 11:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:14", + "echoMap": {}, + "alarmNo": "1430236414", + "alarmDate": "1770003132525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808345", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:23", + "echoMap": {}, + "alarmNo": "1430236415", + "alarmDate": "1770003682439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808354", + "createdBy": null, + "createdTime": "2026-02-02 11:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:29", + "echoMap": {}, + "alarmNo": "1430236416", + "alarmDate": "1770003687663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808366", + "createdBy": null, + "createdTime": "2026-02-02 11:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:37", + "echoMap": {}, + "alarmNo": "1430236417", + "alarmDate": "1770003695656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808430", + "createdBy": null, + "createdTime": "2026-02-02 11:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1430236418", + "alarmDate": "1770003739104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113407064742964", + "createdBy": null, + "createdTime": "2026-02-02 11:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:57", + "echoMap": {}, + "alarmNo": "1430236419", + "alarmDate": "1770004316231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113407064743018", + "createdBy": null, + "createdTime": "2026-02-02 11:54:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:43", + "echoMap": {}, + "alarmNo": "1430236420", + "alarmDate": "1770004484131", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113407064743068", + "createdBy": null, + "createdTime": "2026-02-02 11:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:43", + "echoMap": {}, + "alarmNo": "1430236421", + "alarmDate": "1770004664123", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677566", + "createdBy": null, + "createdTime": "2026-02-02 12:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:57", + "echoMap": {}, + "alarmNo": "1430236422", + "alarmDate": "1770004915749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677595", + "createdBy": null, + "createdTime": "2026-02-02 12:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:11", + "echoMap": {}, + "alarmNo": "1430236423", + "alarmDate": "1770004930161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677598", + "createdBy": null, + "createdTime": "2026-02-02 12:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:11", + "echoMap": {}, + "alarmNo": "1430236424", + "alarmDate": "1770004930378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677607", + "createdBy": null, + "createdTime": "2026-02-02 12:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:15", + "echoMap": {}, + "alarmNo": "1430236425", + "alarmDate": "1770004934279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612097", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:21", + "echoMap": {}, + "alarmNo": "1430236426", + "alarmDate": "1770005479569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612101", + "createdBy": null, + "createdTime": "2026-02-02 12:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:25", + "echoMap": {}, + "alarmNo": "1430236427", + "alarmDate": "1770005484307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612105", + "createdBy": null, + "createdTime": "2026-02-02 12:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:27", + "echoMap": {}, + "alarmNo": "1430236428", + "alarmDate": "1770005485498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612128", + "createdBy": null, + "createdTime": "2026-02-02 12:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:18", + "echoMap": {}, + "alarmNo": "1430236429", + "alarmDate": "1770005536933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612242", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:00", + "echoMap": {}, + "alarmNo": "1430236430", + "alarmDate": "1770006081268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612253", + "createdBy": null, + "createdTime": "2026-02-02 12:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:31", + "echoMap": {}, + "alarmNo": "1430236431", + "alarmDate": "1770006090094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612284", + "createdBy": null, + "createdTime": "2026-02-02 12:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:58", + "echoMap": {}, + "alarmNo": "1430236432", + "alarmDate": "1770006117014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113428539579405", + "createdBy": null, + "createdTime": "2026-02-02 12:24:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:43", + "echoMap": {}, + "alarmNo": "1430236433", + "alarmDate": "1770006284194", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546754", + "createdBy": null, + "createdTime": "2026-02-02 12:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:43", + "echoMap": {}, + "alarmNo": "1430236434", + "alarmDate": "1770006704087", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546763", + "createdBy": null, + "createdTime": "2026-02-02 12:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:52", + "echoMap": {}, + "alarmNo": "1430236435", + "alarmDate": "1770006710607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546771", + "createdBy": null, + "createdTime": "2026-02-02 12:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:55", + "echoMap": {}, + "alarmNo": "1430236436", + "alarmDate": "1770006714134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546793", + "createdBy": null, + "createdTime": "2026-02-02 12:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:11", + "echoMap": {}, + "alarmNo": "1430236437", + "alarmDate": "1770006730114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546799", + "createdBy": null, + "createdTime": "2026-02-02 12:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:12", + "echoMap": {}, + "alarmNo": "1430236438", + "alarmDate": "1770006731049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546924", + "createdBy": null, + "createdTime": "2026-02-02 12:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:24", + "echoMap": {}, + "alarmNo": "1430236439", + "alarmDate": "1770007283228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546929", + "createdBy": null, + "createdTime": "2026-02-02 12:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:25", + "echoMap": {}, + "alarmNo": "1430236440", + "alarmDate": "1770007284349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113437129514026", + "createdBy": null, + "createdTime": "2026-02-02 12:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:12", + "echoMap": {}, + "alarmNo": "1430236441", + "alarmDate": "1770007332054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113437129514030", + "createdBy": null, + "createdTime": "2026-02-02 12:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:15", + "echoMap": {}, + "alarmNo": "1430236442", + "alarmDate": "1770007333823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113441424481386", + "createdBy": null, + "createdTime": "2026-02-02 12:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:29", + "echoMap": {}, + "alarmNo": "1430236443", + "alarmDate": "1770007887990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113441424481400", + "createdBy": null, + "createdTime": "2026-02-02 12:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:44", + "echoMap": {}, + "alarmNo": "1430236444", + "alarmDate": "1770007898203", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113441424481406", + "createdBy": null, + "createdTime": "2026-02-02 12:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:46", + "echoMap": {}, + "alarmNo": "1430236445", + "alarmDate": "1770007899356", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113445719448596", + "createdBy": null, + "createdTime": "2026-02-02 12:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:01", + "echoMap": {}, + "alarmNo": "1430236446", + "alarmDate": "1770007919880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113450014416001", + "createdBy": null, + "createdTime": "2026-02-02 13:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:36", + "echoMap": {}, + "alarmNo": "1430236447", + "alarmDate": "1770008495031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113454309383172", + "createdBy": null, + "createdTime": "2026-02-02 13:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:53", + "echoMap": {}, + "alarmNo": "1430236448", + "alarmDate": "1770008511552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113454309383193", + "createdBy": null, + "createdTime": "2026-02-02 13:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:09", + "echoMap": {}, + "alarmNo": "1430236449", + "alarmDate": "1770008527995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113454309383198", + "createdBy": null, + "createdTime": "2026-02-02 13:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:10", + "echoMap": {}, + "alarmNo": "1430236450", + "alarmDate": "1770008529017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350544", + "createdBy": null, + "createdTime": "2026-02-02 13:09:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:43", + "echoMap": {}, + "alarmNo": "1430236451", + "alarmDate": "1770008984198", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350564", + "createdBy": null, + "createdTime": "2026-02-02 13:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:21", + "echoMap": {}, + "alarmNo": "1430236452", + "alarmDate": "1770009080138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350566", + "createdBy": null, + "createdTime": "2026-02-02 13:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1430236453", + "alarmDate": "1770009080248", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350576", + "createdBy": null, + "createdTime": "2026-02-02 13:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:24", + "echoMap": {}, + "alarmNo": "1430236454", + "alarmDate": "1770009083107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113462899317801", + "createdBy": null, + "createdTime": "2026-02-02 13:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1430236455", + "alarmDate": "1770009130669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113467194285170", + "createdBy": null, + "createdTime": "2026-02-02 13:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:25", + "echoMap": {}, + "alarmNo": "1430236456", + "alarmDate": "1770009683823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113467194285211", + "createdBy": null, + "createdTime": "2026-02-02 13:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:02", + "echoMap": {}, + "alarmNo": "1430236457", + "alarmDate": "1770009720674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113467194285225", + "createdBy": null, + "createdTime": "2026-02-02 13:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:12", + "echoMap": {}, + "alarmNo": "1430236458", + "alarmDate": "1770009730679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219685", + "createdBy": null, + "createdTime": "2026-02-02 13:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:24", + "echoMap": {}, + "alarmNo": "1430236459", + "alarmDate": "1770010282859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219721", + "createdBy": null, + "createdTime": "2026-02-02 13:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:56", + "echoMap": {}, + "alarmNo": "1430236460", + "alarmDate": "1770010315435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219735", + "createdBy": null, + "createdTime": "2026-02-02 13:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:05", + "echoMap": {}, + "alarmNo": "1430236461", + "alarmDate": "1770010323741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219741", + "createdBy": null, + "createdTime": "2026-02-02 13:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:07", + "echoMap": {}, + "alarmNo": "1430236462", + "alarmDate": "1770010325764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219757", + "createdBy": null, + "createdTime": "2026-02-02 13:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:16", + "echoMap": {}, + "alarmNo": "1430236463", + "alarmDate": "1770010336412", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113480079187001", + "createdBy": null, + "createdTime": "2026-02-02 13:38:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:43", + "echoMap": {}, + "alarmNo": "1430236464", + "alarmDate": "1770010724088", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113484374154279", + "createdBy": null, + "createdTime": "2026-02-02 13:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:43", + "echoMap": {}, + "alarmNo": "1430236465", + "alarmDate": "1770010897190", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060025", + "deviceName": "[308](10)宋园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113484374154324", + "createdBy": null, + "createdTime": "2026-02-02 13:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:08", + "echoMap": {}, + "alarmNo": "1430236466", + "alarmDate": "1770010926508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113492964088903", + "createdBy": null, + "createdTime": "2026-02-02 13:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:56", + "echoMap": {}, + "alarmNo": "1430236467", + "alarmDate": "1770011515491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113492964088912", + "createdBy": null, + "createdTime": "2026-02-02 13:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:02", + "echoMap": {}, + "alarmNo": "1430236468", + "alarmDate": "1770011520501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113492964088982", + "createdBy": null, + "createdTime": "2026-02-02 13:55:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:43", + "echoMap": {}, + "alarmNo": "1430236469", + "alarmDate": "1770011744084", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113501554023466", + "createdBy": null, + "createdTime": "2026-02-02 14:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:01", + "echoMap": {}, + "alarmNo": "1430236470", + "alarmDate": "1770012120335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113501554023473", + "createdBy": null, + "createdTime": "2026-02-02 14:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:05", + "echoMap": {}, + "alarmNo": "1430236471", + "alarmDate": "1770012123635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113501554023477", + "createdBy": null, + "createdTime": "2026-02-02 14:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1430236472", + "alarmDate": "1770012124594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113505848990729", + "createdBy": null, + "createdTime": "2026-02-02 14:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:43", + "echoMap": {}, + "alarmNo": "1430236473", + "alarmDate": "1770012404079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113510143958071", + "createdBy": null, + "createdTime": "2026-02-02 14:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:05", + "echoMap": {}, + "alarmNo": "1430236474", + "alarmDate": "1770012724237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113514438925395", + "createdBy": null, + "createdTime": "2026-02-02 14:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:39", + "echoMap": {}, + "alarmNo": "1430236475", + "alarmDate": "1770013298366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113518733892629", + "createdBy": null, + "createdTime": "2026-02-02 14:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:02", + "echoMap": {}, + "alarmNo": "1430236476", + "alarmDate": "1770013321371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113518733892669", + "createdBy": null, + "createdTime": "2026-02-02 14:23:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:43", + "echoMap": {}, + "alarmNo": "1430236477", + "alarmDate": "1770013424082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113523028859954", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:01", + "echoMap": {}, + "alarmNo": "1430236478", + "alarmDate": "1770013920348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113523028859960", + "createdBy": null, + "createdTime": "2026-02-02 14:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:04", + "echoMap": {}, + "alarmNo": "1430236479", + "alarmDate": "1770013922520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113527323827206", + "createdBy": null, + "createdTime": "2026-02-02 14:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:07", + "echoMap": {}, + "alarmNo": "1430236480", + "alarmDate": "1770013926210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113338345266369", + "createdBy": null, + "createdTime": "2026-02-02 10:09:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:43", + "echoMap": {}, + "alarmNo": "1430236377", + "alarmDate": "1769998184270", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1008030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1008" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113527323827206", + "createdBy": null, + "createdTime": "2026-02-02 14:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:07", + "echoMap": {}, + "alarmNo": "1430236480", + "alarmDate": "1770013926210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113523028859960", + "createdBy": null, + "createdTime": "2026-02-02 14:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:04", + "echoMap": {}, + "alarmNo": "1430236479", + "alarmDate": "1770013922520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113523028859954", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:01", + "echoMap": {}, + "alarmNo": "1430236478", + "alarmDate": "1770013920348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113518733892669", + "createdBy": null, + "createdTime": "2026-02-02 14:23:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:43", + "echoMap": {}, + "alarmNo": "1430236477", + "alarmDate": "1770013424082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113518733892629", + "createdBy": null, + "createdTime": "2026-02-02 14:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:02", + "echoMap": {}, + "alarmNo": "1430236476", + "alarmDate": "1770013321371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113514438925395", + "createdBy": null, + "createdTime": "2026-02-02 14:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:39", + "echoMap": {}, + "alarmNo": "1430236475", + "alarmDate": "1770013298366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113510143958071", + "createdBy": null, + "createdTime": "2026-02-02 14:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:05", + "echoMap": {}, + "alarmNo": "1430236474", + "alarmDate": "1770012724237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113505848990729", + "createdBy": null, + "createdTime": "2026-02-02 14:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:43", + "echoMap": {}, + "alarmNo": "1430236473", + "alarmDate": "1770012404079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113501554023477", + "createdBy": null, + "createdTime": "2026-02-02 14:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1430236472", + "alarmDate": "1770012124594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113501554023473", + "createdBy": null, + "createdTime": "2026-02-02 14:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:05", + "echoMap": {}, + "alarmNo": "1430236471", + "alarmDate": "1770012123635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113501554023466", + "createdBy": null, + "createdTime": "2026-02-02 14:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:01", + "echoMap": {}, + "alarmNo": "1430236470", + "alarmDate": "1770012120335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113492964088982", + "createdBy": null, + "createdTime": "2026-02-02 13:55:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:43", + "echoMap": {}, + "alarmNo": "1430236469", + "alarmDate": "1770011744084", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113492964088912", + "createdBy": null, + "createdTime": "2026-02-02 13:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:02", + "echoMap": {}, + "alarmNo": "1430236468", + "alarmDate": "1770011520501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113492964088903", + "createdBy": null, + "createdTime": "2026-02-02 13:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:56", + "echoMap": {}, + "alarmNo": "1430236467", + "alarmDate": "1770011515491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113484374154324", + "createdBy": null, + "createdTime": "2026-02-02 13:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:08", + "echoMap": {}, + "alarmNo": "1430236466", + "alarmDate": "1770010926508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113484374154279", + "createdBy": null, + "createdTime": "2026-02-02 13:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:43", + "echoMap": {}, + "alarmNo": "1430236465", + "alarmDate": "1770010897190", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060025", + "deviceName": "[308](10)宋园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113480079187001", + "createdBy": null, + "createdTime": "2026-02-02 13:38:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:43", + "echoMap": {}, + "alarmNo": "1430236464", + "alarmDate": "1770010724088", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219757", + "createdBy": null, + "createdTime": "2026-02-02 13:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:16", + "echoMap": {}, + "alarmNo": "1430236463", + "alarmDate": "1770010336412", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219741", + "createdBy": null, + "createdTime": "2026-02-02 13:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:07", + "echoMap": {}, + "alarmNo": "1430236462", + "alarmDate": "1770010325764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219735", + "createdBy": null, + "createdTime": "2026-02-02 13:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:05", + "echoMap": {}, + "alarmNo": "1430236461", + "alarmDate": "1770010323741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219721", + "createdBy": null, + "createdTime": "2026-02-02 13:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:56", + "echoMap": {}, + "alarmNo": "1430236460", + "alarmDate": "1770010315435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113475784219685", + "createdBy": null, + "createdTime": "2026-02-02 13:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:24", + "echoMap": {}, + "alarmNo": "1430236459", + "alarmDate": "1770010282859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113467194285225", + "createdBy": null, + "createdTime": "2026-02-02 13:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:12", + "echoMap": {}, + "alarmNo": "1430236458", + "alarmDate": "1770009730679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113467194285211", + "createdBy": null, + "createdTime": "2026-02-02 13:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:02", + "echoMap": {}, + "alarmNo": "1430236457", + "alarmDate": "1770009720674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113467194285170", + "createdBy": null, + "createdTime": "2026-02-02 13:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:25", + "echoMap": {}, + "alarmNo": "1430236456", + "alarmDate": "1770009683823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113462899317801", + "createdBy": null, + "createdTime": "2026-02-02 13:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1430236455", + "alarmDate": "1770009130669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350576", + "createdBy": null, + "createdTime": "2026-02-02 13:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:24", + "echoMap": {}, + "alarmNo": "1430236454", + "alarmDate": "1770009083107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350566", + "createdBy": null, + "createdTime": "2026-02-02 13:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1430236453", + "alarmDate": "1770009080248", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350564", + "createdBy": null, + "createdTime": "2026-02-02 13:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:21", + "echoMap": {}, + "alarmNo": "1430236452", + "alarmDate": "1770009080138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113458604350544", + "createdBy": null, + "createdTime": "2026-02-02 13:09:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:43", + "echoMap": {}, + "alarmNo": "1430236451", + "alarmDate": "1770008984198", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113454309383198", + "createdBy": null, + "createdTime": "2026-02-02 13:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:10", + "echoMap": {}, + "alarmNo": "1430236450", + "alarmDate": "1770008529017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113454309383193", + "createdBy": null, + "createdTime": "2026-02-02 13:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:09", + "echoMap": {}, + "alarmNo": "1430236449", + "alarmDate": "1770008527995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113454309383172", + "createdBy": null, + "createdTime": "2026-02-02 13:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:53", + "echoMap": {}, + "alarmNo": "1430236448", + "alarmDate": "1770008511552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113450014416001", + "createdBy": null, + "createdTime": "2026-02-02 13:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:36", + "echoMap": {}, + "alarmNo": "1430236447", + "alarmDate": "1770008495031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113445719448596", + "createdBy": null, + "createdTime": "2026-02-02 12:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:01", + "echoMap": {}, + "alarmNo": "1430236446", + "alarmDate": "1770007919880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113441424481406", + "createdBy": null, + "createdTime": "2026-02-02 12:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:46", + "echoMap": {}, + "alarmNo": "1430236445", + "alarmDate": "1770007899356", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113441424481400", + "createdBy": null, + "createdTime": "2026-02-02 12:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:44", + "echoMap": {}, + "alarmNo": "1430236444", + "alarmDate": "1770007898203", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113441424481386", + "createdBy": null, + "createdTime": "2026-02-02 12:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:29", + "echoMap": {}, + "alarmNo": "1430236443", + "alarmDate": "1770007887990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113437129514030", + "createdBy": null, + "createdTime": "2026-02-02 12:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:15", + "echoMap": {}, + "alarmNo": "1430236442", + "alarmDate": "1770007333823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113437129514026", + "createdBy": null, + "createdTime": "2026-02-02 12:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:12", + "echoMap": {}, + "alarmNo": "1430236441", + "alarmDate": "1770007332054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546929", + "createdBy": null, + "createdTime": "2026-02-02 12:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:25", + "echoMap": {}, + "alarmNo": "1430236440", + "alarmDate": "1770007284349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546924", + "createdBy": null, + "createdTime": "2026-02-02 12:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:24", + "echoMap": {}, + "alarmNo": "1430236439", + "alarmDate": "1770007283228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546799", + "createdBy": null, + "createdTime": "2026-02-02 12:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:12", + "echoMap": {}, + "alarmNo": "1430236438", + "alarmDate": "1770006731049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546793", + "createdBy": null, + "createdTime": "2026-02-02 12:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:11", + "echoMap": {}, + "alarmNo": "1430236437", + "alarmDate": "1770006730114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546771", + "createdBy": null, + "createdTime": "2026-02-02 12:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:55", + "echoMap": {}, + "alarmNo": "1430236436", + "alarmDate": "1770006714134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546763", + "createdBy": null, + "createdTime": "2026-02-02 12:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:52", + "echoMap": {}, + "alarmNo": "1430236435", + "alarmDate": "1770006710607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113432834546754", + "createdBy": null, + "createdTime": "2026-02-02 12:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:43", + "echoMap": {}, + "alarmNo": "1430236434", + "alarmDate": "1770006704087", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113428539579405", + "createdBy": null, + "createdTime": "2026-02-02 12:24:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:43", + "echoMap": {}, + "alarmNo": "1430236433", + "alarmDate": "1770006284194", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612284", + "createdBy": null, + "createdTime": "2026-02-02 12:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:58", + "echoMap": {}, + "alarmNo": "1430236432", + "alarmDate": "1770006117014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612253", + "createdBy": null, + "createdTime": "2026-02-02 12:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:31", + "echoMap": {}, + "alarmNo": "1430236431", + "alarmDate": "1770006090094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612242", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:00", + "echoMap": {}, + "alarmNo": "1430236430", + "alarmDate": "1770006081268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612128", + "createdBy": null, + "createdTime": "2026-02-02 12:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:18", + "echoMap": {}, + "alarmNo": "1430236429", + "alarmDate": "1770005536933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612105", + "createdBy": null, + "createdTime": "2026-02-02 12:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:27", + "echoMap": {}, + "alarmNo": "1430236428", + "alarmDate": "1770005485498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612101", + "createdBy": null, + "createdTime": "2026-02-02 12:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:25", + "echoMap": {}, + "alarmNo": "1430236427", + "alarmDate": "1770005484307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113424244612097", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:21", + "echoMap": {}, + "alarmNo": "1430236426", + "alarmDate": "1770005479569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677607", + "createdBy": null, + "createdTime": "2026-02-02 12:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:15", + "echoMap": {}, + "alarmNo": "1430236425", + "alarmDate": "1770004934279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677598", + "createdBy": null, + "createdTime": "2026-02-02 12:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:11", + "echoMap": {}, + "alarmNo": "1430236424", + "alarmDate": "1770004930378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677595", + "createdBy": null, + "createdTime": "2026-02-02 12:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:11", + "echoMap": {}, + "alarmNo": "1430236423", + "alarmDate": "1770004930161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113415654677566", + "createdBy": null, + "createdTime": "2026-02-02 12:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:57", + "echoMap": {}, + "alarmNo": "1430236422", + "alarmDate": "1770004915749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113407064743068", + "createdBy": null, + "createdTime": "2026-02-02 11:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:43", + "echoMap": {}, + "alarmNo": "1430236421", + "alarmDate": "1770004664123", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113407064743018", + "createdBy": null, + "createdTime": "2026-02-02 11:54:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:43", + "echoMap": {}, + "alarmNo": "1430236420", + "alarmDate": "1770004484131", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113407064742964", + "createdBy": null, + "createdTime": "2026-02-02 11:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:57", + "echoMap": {}, + "alarmNo": "1430236419", + "alarmDate": "1770004316231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808430", + "createdBy": null, + "createdTime": "2026-02-02 11:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1430236418", + "alarmDate": "1770003739104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808366", + "createdBy": null, + "createdTime": "2026-02-02 11:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:37", + "echoMap": {}, + "alarmNo": "1430236417", + "alarmDate": "1770003695656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808354", + "createdBy": null, + "createdTime": "2026-02-02 11:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:29", + "echoMap": {}, + "alarmNo": "1430236416", + "alarmDate": "1770003687663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113398474808345", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:23", + "echoMap": {}, + "alarmNo": "1430236415", + "alarmDate": "1770003682439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113389884873829", + "createdBy": null, + "createdTime": "2026-02-02 11:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:14", + "echoMap": {}, + "alarmNo": "1430236414", + "alarmDate": "1770003132525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113389884873809", + "createdBy": null, + "createdTime": "2026-02-02 11:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:09", + "echoMap": {}, + "alarmNo": "1430236413", + "alarmDate": "1770003128243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113389884873790", + "createdBy": null, + "createdTime": "2026-02-02 11:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:56", + "echoMap": {}, + "alarmNo": "1430236412", + "alarmDate": "1770003114852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113381294939257", + "createdBy": null, + "createdTime": "2026-02-02 11:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:53", + "echoMap": {}, + "alarmNo": "1430236411", + "alarmDate": "1770002511502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113381294939237", + "createdBy": null, + "createdTime": "2026-02-02 11:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:38", + "echoMap": {}, + "alarmNo": "1430236410", + "alarmDate": "1770002496593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113381294939179", + "createdBy": null, + "createdTime": "2026-02-02 11:17:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:43", + "echoMap": {}, + "alarmNo": "1430236409", + "alarmDate": "1770002264395", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004721", + "createdBy": null, + "createdTime": "2026-02-02 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:53", + "echoMap": {}, + "alarmNo": "1430236408", + "alarmDate": "1770001911796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004668", + "createdBy": null, + "createdTime": "2026-02-02 11:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:28", + "echoMap": {}, + "alarmNo": "1430236407", + "alarmDate": "1770001886975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004657", + "createdBy": null, + "createdTime": "2026-02-02 11:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:25", + "echoMap": {}, + "alarmNo": "1430236406", + "alarmDate": "1770001883640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113372705004650", + "createdBy": null, + "createdTime": "2026-02-02 11:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:10", + "echoMap": {}, + "alarmNo": "1430236405", + "alarmDate": "1770001881283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113368410037270", + "createdBy": null, + "createdTime": "2026-02-02 11:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:13", + "echoMap": {}, + "alarmNo": "1430236404", + "alarmDate": "1770001331686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113368410037262", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:11", + "echoMap": {}, + "alarmNo": "1430236403", + "alarmDate": "1770001330323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113364115070172", + "createdBy": null, + "createdTime": "2026-02-02 11:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:52", + "echoMap": {}, + "alarmNo": "1430236402", + "alarmDate": "1770001310963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113364115070074", + "createdBy": null, + "createdTime": "2026-02-02 11:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:20", + "echoMap": {}, + "alarmNo": "1430236401", + "alarmDate": "1770001279711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113359820102699", + "createdBy": null, + "createdTime": "2026-02-02 10:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:49", + "echoMap": {}, + "alarmNo": "1430236400", + "alarmDate": "1770000707525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113359820102678", + "createdBy": null, + "createdTime": "2026-02-02 10:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:39", + "echoMap": {}, + "alarmNo": "1430236399", + "alarmDate": "1770000697633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135567", + "createdBy": null, + "createdTime": "2026-02-02 10:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:06", + "echoMap": {}, + "alarmNo": "1430236398", + "alarmDate": "1770000124934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135552", + "createdBy": null, + "createdTime": "2026-02-02 10:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:45", + "echoMap": {}, + "alarmNo": "1430236397", + "alarmDate": "1770000118339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135509", + "createdBy": null, + "createdTime": "2026-02-02 10:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:29", + "echoMap": {}, + "alarmNo": "1430236396", + "alarmDate": "1770000087991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135500", + "createdBy": null, + "createdTime": "2026-02-02 10:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:27", + "echoMap": {}, + "alarmNo": "1430236395", + "alarmDate": "1770000085549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135489", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:34", + "echoMap": {}, + "alarmNo": "1430236394", + "alarmDate": "1770000081204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135430", + "createdBy": null, + "createdTime": "2026-02-02 10:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:43", + "echoMap": {}, + "alarmNo": "1430236393", + "alarmDate": "1769999804093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113355525135361", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1430236392", + "alarmDate": "1769999532843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113351230168111", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:11", + "echoMap": {}, + "alarmNo": "1430236391", + "alarmDate": "1769999530392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113351230168105", + "createdBy": null, + "createdTime": "2026-02-02 10:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1430236390", + "alarmDate": "1769999527979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935201115", + "createdBy": null, + "createdTime": "2026-02-02 10:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:56", + "echoMap": {}, + "alarmNo": "1430236389", + "alarmDate": "1769999509989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935201107", + "createdBy": null, + "createdTime": "2026-02-02 10:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:47", + "echoMap": {}, + "alarmNo": "1430236388", + "alarmDate": "1769999506120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935201061", + "createdBy": null, + "createdTime": "2026-02-02 10:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:38", + "echoMap": {}, + "alarmNo": "1430236387", + "alarmDate": "1769999480862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200993", + "createdBy": null, + "createdTime": "2026-02-02 10:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:43", + "echoMap": {}, + "alarmNo": "1430236386", + "alarmDate": "1769999144079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200880", + "createdBy": null, + "createdTime": "2026-02-02 10:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:58", + "echoMap": {}, + "alarmNo": "1430236385", + "alarmDate": "1769998911613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200858", + "createdBy": null, + "createdTime": "2026-02-02 10:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:44", + "echoMap": {}, + "alarmNo": "1430236384", + "alarmDate": "1769998902739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200846", + "createdBy": null, + "createdTime": "2026-02-02 10:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:40", + "echoMap": {}, + "alarmNo": "1430236383", + "alarmDate": "1769998898926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113346935200823", + "createdBy": null, + "createdTime": "2026-02-02 10:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:30", + "echoMap": {}, + "alarmNo": "1430236382", + "alarmDate": "1769998889215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113342640233535", + "createdBy": null, + "createdTime": "2026-02-02 10:17:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:43", + "echoMap": {}, + "alarmNo": "1430236381", + "alarmDate": "1769998664082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266483", + "createdBy": null, + "createdTime": "2026-02-02 10:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:19", + "echoMap": {}, + "alarmNo": "1430236380", + "alarmDate": "1769998327282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266424", + "createdBy": null, + "createdTime": "2026-02-02 10:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:30", + "echoMap": {}, + "alarmNo": "1430236379", + "alarmDate": "1769998289198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266406", + "createdBy": null, + "createdTime": "2026-02-02 10:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:24", + "echoMap": {}, + "alarmNo": "1430236378", + "alarmDate": "1769998282684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266369", + "createdBy": null, + "createdTime": "2026-02-02 10:09:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:43", + "echoMap": {}, + "alarmNo": "1430236377", + "alarmDate": "1769998184270", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1008030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1008" + }, + { + "id": "723113338345266280", + "createdBy": null, + "createdTime": "2026-02-02 10:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:20", + "echoMap": {}, + "alarmNo": "1430236376", + "alarmDate": "1769997739891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060024", + "deviceName": "[303](10)宋园1#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266269", + "createdBy": null, + "createdTime": "2026-02-02 10:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:17", + "echoMap": {}, + "alarmNo": "1430236375", + "alarmDate": "1769997736061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266253", + "createdBy": null, + "createdTime": "2026-02-02 10:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:12", + "echoMap": {}, + "alarmNo": "1430236374", + "alarmDate": "1769997730529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113338345266190", + "createdBy": null, + "createdTime": "2026-02-02 10:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:42", + "echoMap": {}, + "alarmNo": "1430236373", + "alarmDate": "1769997701169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331786", + "createdBy": null, + "createdTime": "2026-02-02 09:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1430236372", + "alarmDate": "1769997130281", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060029", + "deviceName": "[306](10)宋园1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331724", + "createdBy": null, + "createdTime": "2026-02-02 09:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:42", + "echoMap": {}, + "alarmNo": "1430236371", + "alarmDate": "1769997101356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331713", + "createdBy": null, + "createdTime": "2026-02-02 09:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:39", + "echoMap": {}, + "alarmNo": "1430236370", + "alarmDate": "1769997097886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113329755331705", + "createdBy": null, + "createdTime": "2026-02-02 09:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:37", + "echoMap": {}, + "alarmNo": "1430236369", + "alarmDate": "1769997096098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113325460364306", + "createdBy": null, + "createdTime": "2026-02-02 09:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1430236368", + "alarmDate": "1769996536288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397223", + "createdBy": null, + "createdTime": "2026-02-02 09:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:24", + "echoMap": {}, + "alarmNo": "1430236367", + "alarmDate": "1769996482815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397161", + "createdBy": null, + "createdTime": "2026-02-02 09:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:43", + "echoMap": {}, + "alarmNo": "1430236366", + "alarmDate": "1769996204078", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397098", + "createdBy": null, + "createdTime": "2026-02-02 09:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:31", + "echoMap": {}, + "alarmNo": "1430236365", + "alarmDate": "1769995938199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397092", + "createdBy": null, + "createdTime": "2026-02-02 09:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:04", + "echoMap": {}, + "alarmNo": "1430236364", + "alarmDate": "1769995936892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397076", + "createdBy": null, + "createdTime": "2026-02-02 09:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:10", + "echoMap": {}, + "alarmNo": "1430236363", + "alarmDate": "1769995928648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397019", + "createdBy": null, + "createdTime": "2026-02-02 09:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:04", + "echoMap": {}, + "alarmNo": "1430236362", + "alarmDate": "1769995899900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397015", + "createdBy": null, + "createdTime": "2026-02-02 09:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:40", + "echoMap": {}, + "alarmNo": "1430236361", + "alarmDate": "1769995899314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113321165397009", + "createdBy": null, + "createdTime": "2026-02-02 09:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:15", + "echoMap": {}, + "alarmNo": "1430236360", + "alarmDate": "1769995895601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462716", + "createdBy": null, + "createdTime": "2026-02-02 09:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:43", + "echoMap": {}, + "alarmNo": "1430236359", + "alarmDate": "1769995544149", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462653", + "createdBy": null, + "createdTime": "2026-02-02 09:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:35", + "echoMap": {}, + "alarmNo": "1430236358", + "alarmDate": "1769995330534", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060029", + "deviceName": "[306](10)宋园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462606", + "createdBy": null, + "createdTime": "2026-02-02 09:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:57", + "echoMap": {}, + "alarmNo": "1430236357", + "alarmDate": "1769995315598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462571", + "createdBy": null, + "createdTime": "2026-02-02 09:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:28", + "echoMap": {}, + "alarmNo": "1430236356", + "alarmDate": "1769995301554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462553", + "createdBy": null, + "createdTime": "2026-02-02 09:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:31", + "echoMap": {}, + "alarmNo": "1430236355", + "alarmDate": "1769995290127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462534", + "createdBy": null, + "createdTime": "2026-02-02 09:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:43", + "echoMap": {}, + "alarmNo": "1430236354", + "alarmDate": "1769995244083", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462425", + "createdBy": null, + "createdTime": "2026-02-02 09:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:34", + "echoMap": {}, + "alarmNo": "1430236353", + "alarmDate": "1769994738900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113312575462414", + "createdBy": null, + "createdTime": "2026-02-02 09:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:15", + "echoMap": {}, + "alarmNo": "1430236352", + "alarmDate": "1769994734007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113308280495117", + "createdBy": null, + "createdTime": "2026-02-02 09:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:15", + "echoMap": {}, + "alarmNo": "1430236351", + "alarmDate": "1769994704208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985528105", + "createdBy": null, + "createdTime": "2026-02-02 09:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:32", + "echoMap": {}, + "alarmNo": "1430236350", + "alarmDate": "1769994690659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985528076", + "createdBy": null, + "createdTime": "2026-02-02 09:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:23", + "echoMap": {}, + "alarmNo": "1430236349", + "alarmDate": "1769994681892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985528072", + "createdBy": null, + "createdTime": "2026-02-02 09:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:32", + "echoMap": {}, + "alarmNo": "1430236348", + "alarmDate": "1769994681089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527949", + "createdBy": null, + "createdTime": "2026-02-02 09:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:15", + "echoMap": {}, + "alarmNo": "1430236347", + "alarmDate": "1769994134376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527920", + "createdBy": null, + "createdTime": "2026-02-02 09:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:08", + "echoMap": {}, + "alarmNo": "1430236346", + "alarmDate": "1769994126647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527840", + "createdBy": null, + "createdTime": "2026-02-02 09:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:31", + "echoMap": {}, + "alarmNo": "1430236345", + "alarmDate": "1769994090375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527814", + "createdBy": null, + "createdTime": "2026-02-02 09:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:22", + "echoMap": {}, + "alarmNo": "1430236344", + "alarmDate": "1769994080848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527812", + "createdBy": null, + "createdTime": "2026-02-02 09:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:11", + "echoMap": {}, + "alarmNo": "1430236343", + "alarmDate": "1769994080747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113303985527808", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:24", + "echoMap": {}, + "alarmNo": "1430236342", + "alarmDate": "1769994079549", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060025", + "deviceName": "[308](10)宋园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593504", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:13", + "echoMap": {}, + "alarmNo": "1430236341", + "alarmDate": "1769993532206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593501", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:13", + "echoMap": {}, + "alarmNo": "1430236340", + "alarmDate": "1769993531665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593471", + "createdBy": null, + "createdTime": "2026-02-02 08:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:59", + "echoMap": {}, + "alarmNo": "1430236339", + "alarmDate": "1769993511558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593444", + "createdBy": null, + "createdTime": "2026-02-02 08:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:40", + "echoMap": {}, + "alarmNo": "1430236338", + "alarmDate": "1769993493555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593435", + "createdBy": null, + "createdTime": "2026-02-02 08:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:29", + "echoMap": {}, + "alarmNo": "1430236337", + "alarmDate": "1769993488228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593425", + "createdBy": null, + "createdTime": "2026-02-02 08:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:23", + "echoMap": {}, + "alarmNo": "1430236336", + "alarmDate": "1769993482309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593418", + "createdBy": null, + "createdTime": "2026-02-02 08:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:21", + "echoMap": {}, + "alarmNo": "1430236335", + "alarmDate": "1769993480488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593326", + "createdBy": null, + "createdTime": "2026-02-02 08:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:43", + "echoMap": {}, + "alarmNo": "1430236334", + "alarmDate": "1769993084103", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593287", + "createdBy": null, + "createdTime": "2026-02-02 08:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:13", + "echoMap": {}, + "alarmNo": "1430236333", + "alarmDate": "1769992932054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593278", + "createdBy": null, + "createdTime": "2026-02-02 08:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:08", + "echoMap": {}, + "alarmNo": "1430236332", + "alarmDate": "1769992927152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593235", + "createdBy": null, + "createdTime": "2026-02-02 08:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:39", + "echoMap": {}, + "alarmNo": "1430236331", + "alarmDate": "1769992893216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113295395593224", + "createdBy": null, + "createdTime": "2026-02-02 08:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:28", + "echoMap": {}, + "alarmNo": "1430236330", + "alarmDate": "1769992886799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658901", + "createdBy": null, + "createdTime": "2026-02-02 08:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:14", + "echoMap": {}, + "alarmNo": "1430236329", + "alarmDate": "1769992332543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658886", + "createdBy": null, + "createdTime": "2026-02-02 08:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:02", + "echoMap": {}, + "alarmNo": "1430236328", + "alarmDate": "1769992320755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658857", + "createdBy": null, + "createdTime": "2026-02-02 08:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:37", + "echoMap": {}, + "alarmNo": "1430236327", + "alarmDate": "1769992296044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658706", + "createdBy": null, + "createdTime": "2026-02-02 08:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:28", + "echoMap": {}, + "alarmNo": "1430236326", + "alarmDate": "1769991728022", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060029", + "deviceName": "[306](10)宋园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658696", + "createdBy": null, + "createdTime": "2026-02-02 08:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:03", + "echoMap": {}, + "alarmNo": "1430236325", + "alarmDate": "1769991722310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113286805658637", + "createdBy": null, + "createdTime": "2026-02-02 08:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:23", + "echoMap": {}, + "alarmNo": "1430236324", + "alarmDate": "1769991682382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724256", + "createdBy": null, + "createdTime": "2026-02-02 08:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:07", + "echoMap": {}, + "alarmNo": "1430236323", + "alarmDate": "1769991126221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724242", + "createdBy": null, + "createdTime": "2026-02-02 08:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:08", + "echoMap": {}, + "alarmNo": "1430236322", + "alarmDate": "1769991121296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724241", + "createdBy": null, + "createdTime": "2026-02-02 08:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:02", + "echoMap": {}, + "alarmNo": "1430236321", + "alarmDate": "1769991121263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724194", + "createdBy": null, + "createdTime": "2026-02-02 08:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:23", + "echoMap": {}, + "alarmNo": "1430236320", + "alarmDate": "1769991081960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724150", + "createdBy": null, + "createdTime": "2026-02-02 08:08:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:43", + "echoMap": {}, + "alarmNo": "1430236319", + "alarmDate": "1769990924079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724073", + "createdBy": null, + "createdTime": "2026-02-02 08:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:08", + "echoMap": {}, + "alarmNo": "1430236318", + "alarmDate": "1769990526739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113278215724033", + "createdBy": null, + "createdTime": "2026-02-02 08:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:49", + "echoMap": {}, + "alarmNo": "1430236317", + "alarmDate": "1769990508166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113273920756793", + "createdBy": null, + "createdTime": "2026-02-02 08:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:49", + "echoMap": {}, + "alarmNo": "1430236316", + "alarmDate": "1769990507806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113269625789562", + "createdBy": null, + "createdTime": "2026-02-02 07:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:50", + "echoMap": {}, + "alarmNo": "1430236315", + "alarmDate": "1769989909393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113265330822159", + "createdBy": null, + "createdTime": "2026-02-02 07:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:01", + "echoMap": {}, + "alarmNo": "1430236314", + "alarmDate": "1769989320429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113265330822150", + "createdBy": null, + "createdTime": "2026-02-02 07:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:56", + "echoMap": {}, + "alarmNo": "1430236313", + "alarmDate": "1769989315479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854955", + "createdBy": null, + "createdTime": "2026-02-02 07:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:06", + "echoMap": {}, + "alarmNo": "1430236312", + "alarmDate": "1769988734294", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854935", + "createdBy": null, + "createdTime": "2026-02-02 07:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:02", + "echoMap": {}, + "alarmNo": "1430236311", + "alarmDate": "1769988720872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854929", + "createdBy": null, + "createdTime": "2026-02-02 07:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:00", + "echoMap": {}, + "alarmNo": "1430236310", + "alarmDate": "1769988719251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854909", + "createdBy": null, + "createdTime": "2026-02-02 07:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:45", + "echoMap": {}, + "alarmNo": "1430236309", + "alarmDate": "1769988703896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113261035854860", + "createdBy": null, + "createdTime": "2026-02-02 07:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:43", + "echoMap": {}, + "alarmNo": "1430236308", + "alarmDate": "1769988680138", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920436", + "createdBy": null, + "createdTime": "2026-02-02 07:21:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:40", + "echoMap": {}, + "alarmNo": "1430236307", + "alarmDate": "1769988099531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920392", + "createdBy": null, + "createdTime": "2026-02-02 07:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:43", + "echoMap": {}, + "alarmNo": "1430236306", + "alarmDate": "1769988044078", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920332", + "createdBy": null, + "createdTime": "2026-02-02 07:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:43", + "echoMap": {}, + "alarmNo": "1430236305", + "alarmDate": "1769987744094", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113252445920280", + "createdBy": null, + "createdTime": "2026-02-02 07:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:43", + "echoMap": {}, + "alarmNo": "1430236304", + "alarmDate": "1769987564078", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113248150953012", + "createdBy": null, + "createdTime": "2026-02-02 07:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:58", + "echoMap": {}, + "alarmNo": "1430236303", + "alarmDate": "1769987516543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113248150953003", + "createdBy": null, + "createdTime": "2026-02-02 07:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:53", + "echoMap": {}, + "alarmNo": "1430236302", + "alarmDate": "1769987511663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113248150952970", + "createdBy": null, + "createdTime": "2026-02-02 07:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:24", + "echoMap": {}, + "alarmNo": "1430236301", + "alarmDate": "1769987482553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113243855985897", + "createdBy": null, + "createdTime": "2026-02-02 07:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:16", + "echoMap": {}, + "alarmNo": "1430236300", + "alarmDate": "1769986935377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113243855985874", + "createdBy": null, + "createdTime": "2026-02-02 07:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:07", + "echoMap": {}, + "alarmNo": "1430236299", + "alarmDate": "1769986926074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113243855985822", + "createdBy": null, + "createdTime": "2026-02-02 07:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:44", + "echoMap": {}, + "alarmNo": "1430236298", + "alarmDate": "1769986902990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113239561018409", + "createdBy": null, + "createdTime": "2026-02-02 06:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:17", + "echoMap": {}, + "alarmNo": "1430236297", + "alarmDate": "1769986331304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051313", + "createdBy": null, + "createdTime": "2026-02-02 06:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:40", + "echoMap": {}, + "alarmNo": "1430236296", + "alarmDate": "1769986298637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051133", + "createdBy": null, + "createdTime": "2026-02-02 06:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:04", + "echoMap": {}, + "alarmNo": "1430236295", + "alarmDate": "1769985718099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051124", + "createdBy": null, + "createdTime": "2026-02-02 06:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:56", + "echoMap": {}, + "alarmNo": "1430236294", + "alarmDate": "1769985714870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051121", + "createdBy": null, + "createdTime": "2026-02-02 06:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:56", + "echoMap": {}, + "alarmNo": "1430236293", + "alarmDate": "1769985714765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051098", + "createdBy": null, + "createdTime": "2026-02-02 06:41:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:42", + "echoMap": {}, + "alarmNo": "1430236292", + "alarmDate": "1769985700760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113235266051093", + "createdBy": null, + "createdTime": "2026-02-02 06:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:45", + "echoMap": {}, + "alarmNo": "1430236291", + "alarmDate": "1769985699111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116775", + "createdBy": null, + "createdTime": "2026-02-02 06:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:27", + "echoMap": {}, + "alarmNo": "1430236290", + "alarmDate": "1769985138349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116738", + "createdBy": null, + "createdTime": "2026-02-02 06:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:56", + "echoMap": {}, + "alarmNo": "1430236289", + "alarmDate": "1769985110187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116730", + "createdBy": null, + "createdTime": "2026-02-02 06:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:47", + "echoMap": {}, + "alarmNo": "1430236288", + "alarmDate": "1769985106108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116543", + "createdBy": null, + "createdTime": "2026-02-02 06:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:15", + "echoMap": {}, + "alarmNo": "1430236287", + "alarmDate": "1769984534175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060026", + "deviceName": "[210](10)宋园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116510", + "createdBy": null, + "createdTime": "2026-02-02 06:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:39", + "echoMap": {}, + "alarmNo": "1430236286", + "alarmDate": "1769984525809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113226676116500", + "createdBy": null, + "createdTime": "2026-02-02 06:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:10", + "echoMap": {}, + "alarmNo": "1430236285", + "alarmDate": "1769984523607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113222381149194", + "createdBy": null, + "createdTime": "2026-02-02 06:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:44", + "echoMap": {}, + "alarmNo": "1430236284", + "alarmDate": "1769984502744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182184", + "createdBy": null, + "createdTime": "2026-02-02 06:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:19", + "echoMap": {}, + "alarmNo": "1430236283", + "alarmDate": "1769984481581", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182128", + "createdBy": null, + "createdTime": "2026-02-02 06:17:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:43", + "echoMap": {}, + "alarmNo": "1430236282", + "alarmDate": "1769984264077", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182052", + "createdBy": null, + "createdTime": "2026-02-02 06:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:52", + "echoMap": {}, + "alarmNo": "1430236281", + "alarmDate": "1769983935305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182026", + "createdBy": null, + "createdTime": "2026-02-02 06:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:05", + "echoMap": {}, + "alarmNo": "1430236280", + "alarmDate": "1769983924068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182020", + "createdBy": null, + "createdTime": "2026-02-02 06:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:04", + "echoMap": {}, + "alarmNo": "1430236279", + "alarmDate": "1769983922898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086182012", + "createdBy": null, + "createdTime": "2026-02-02 06:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:02", + "echoMap": {}, + "alarmNo": "1430236278", + "alarmDate": "1769983920865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086181961", + "createdBy": null, + "createdTime": "2026-02-02 06:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:57", + "echoMap": {}, + "alarmNo": "1430236277", + "alarmDate": "1769983904297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113218086181952", + "createdBy": null, + "createdTime": "2026-02-02 06:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:43", + "echoMap": {}, + "alarmNo": "1430236276", + "alarmDate": "1769983901650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113213791214647", + "createdBy": null, + "createdTime": "2026-02-02 06:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:54", + "echoMap": {}, + "alarmNo": "1430236275", + "alarmDate": "1769983881494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113213791214642", + "createdBy": null, + "createdTime": "2026-02-02 06:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:31", + "echoMap": {}, + "alarmNo": "1430236274", + "alarmDate": "1769983880202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113209496247482", + "createdBy": null, + "createdTime": "2026-02-02 06:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:51", + "echoMap": {}, + "alarmNo": "1430236273", + "alarmDate": "1769983310172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113209496247303", + "createdBy": null, + "createdTime": "2026-02-02 05:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:09", + "echoMap": {}, + "alarmNo": "1430236272", + "alarmDate": "1769982729037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113205201280059", + "createdBy": null, + "createdTime": "2026-02-02 05:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:56", + "echoMap": {}, + "alarmNo": "1430236271", + "alarmDate": "1769982714838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113205201280003", + "createdBy": null, + "createdTime": "2026-02-02 05:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:51", + "echoMap": {}, + "alarmNo": "1430236270", + "alarmDate": "1769982692887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906313041", + "createdBy": null, + "createdTime": "2026-02-02 05:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:30", + "echoMap": {}, + "alarmNo": "1430236269", + "alarmDate": "1769982689244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906313035", + "createdBy": null, + "createdTime": "2026-02-02 05:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:29", + "echoMap": {}, + "alarmNo": "1430236268", + "alarmDate": "1769982688273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906313024", + "createdBy": null, + "createdTime": "2026-02-02 05:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:21", + "echoMap": {}, + "alarmNo": "1430236267", + "alarmDate": "1769982679776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060027", + "deviceName": "[307](10)宋园1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312924", + "createdBy": null, + "createdTime": "2026-02-02 05:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:43", + "echoMap": {}, + "alarmNo": "1430236266", + "alarmDate": "1769982164097", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312918", + "createdBy": null, + "createdTime": "2026-02-02 05:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:29", + "echoMap": {}, + "alarmNo": "1430236265", + "alarmDate": "1769982139349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312882", + "createdBy": null, + "createdTime": "2026-02-02 05:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:02", + "echoMap": {}, + "alarmNo": "1430236264", + "alarmDate": "1769982120955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113200906312704", + "createdBy": null, + "createdTime": "2026-02-02 05:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:34", + "echoMap": {}, + "alarmNo": "1430236263", + "alarmDate": "1769981535356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113196611345443", + "createdBy": null, + "createdTime": "2026-02-02 05:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:56", + "echoMap": {}, + "alarmNo": "1430236262", + "alarmDate": "1769981515273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378430", + "createdBy": null, + "createdTime": "2026-02-02 05:29:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:43", + "echoMap": {}, + "alarmNo": "1430236261", + "alarmDate": "1769981384137", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378328", + "createdBy": null, + "createdTime": "2026-02-02 05:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:10", + "echoMap": {}, + "alarmNo": "1430236260", + "alarmDate": "1769980928963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378314", + "createdBy": null, + "createdTime": "2026-02-02 05:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:15", + "echoMap": {}, + "alarmNo": "1430236259", + "alarmDate": "1769980922862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378285", + "createdBy": null, + "createdTime": "2026-02-02 05:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:47", + "echoMap": {}, + "alarmNo": "1430236258", + "alarmDate": "1769980905662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378282", + "createdBy": null, + "createdTime": "2026-02-02 05:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:47", + "echoMap": {}, + "alarmNo": "1430236257", + "alarmDate": "1769980905522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378279", + "createdBy": null, + "createdTime": "2026-02-02 05:21:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:46", + "echoMap": {}, + "alarmNo": "1430236256", + "alarmDate": "1769980905365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378243", + "createdBy": null, + "createdTime": "2026-02-02 05:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:30", + "echoMap": {}, + "alarmNo": "1430236255", + "alarmDate": "1769980889349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378225", + "createdBy": null, + "createdTime": "2026-02-02 05:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:51", + "echoMap": {}, + "alarmNo": "1430236254", + "alarmDate": "1769980881865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378156", + "createdBy": null, + "createdTime": "2026-02-02 05:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:43", + "echoMap": {}, + "alarmNo": "1430236253", + "alarmDate": "1769980544086", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113192316378129", + "createdBy": null, + "createdTime": "2026-02-02 05:14:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:15:44", + "echoMap": {}, + "alarmNo": "1430236252", + "alarmDate": "1769980484118", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113188021410840", + "createdBy": null, + "createdTime": "2026-02-02 05:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:16", + "echoMap": {}, + "alarmNo": "1430236251", + "alarmDate": "1769980329644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443835", + "createdBy": null, + "createdTime": "2026-02-02 05:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:10", + "echoMap": {}, + "alarmNo": "1430236250", + "alarmDate": "1769980318307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060110", + "deviceName": "[403](10)宋园1#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443749", + "createdBy": null, + "createdTime": "2026-02-02 05:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:34", + "echoMap": {}, + "alarmNo": "1430236249", + "alarmDate": "1769980282514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060069", + "deviceName": "[313](10)宋园2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443598", + "createdBy": null, + "createdTime": "2026-02-02 05:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:03", + "echoMap": {}, + "alarmNo": "1430236248", + "alarmDate": "1769979722341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113183726443520", + "createdBy": null, + "createdTime": "2026-02-02 05:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:24", + "echoMap": {}, + "alarmNo": "1430236247", + "alarmDate": "1769979696535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060093", + "deviceName": "[101](10)宋园上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113179431476251", + "createdBy": null, + "createdTime": "2026-02-02 05:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:33", + "echoMap": {}, + "alarmNo": "1430236246", + "alarmDate": "1769979692376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509233", + "createdBy": null, + "createdTime": "2026-02-02 05:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:30", + "echoMap": {}, + "alarmNo": "1430236245", + "alarmDate": "1769979682588", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060022", + "deviceName": "[402](10)宋园1#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509224", + "createdBy": null, + "createdTime": "2026-02-02 05:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:40", + "echoMap": {}, + "alarmNo": "1430236244", + "alarmDate": "1769979681503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509096", + "createdBy": null, + "createdTime": "2026-02-02 04:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:30", + "echoMap": {}, + "alarmNo": "1430236243", + "alarmDate": "1769979137581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509046", + "createdBy": null, + "createdTime": "2026-02-02 04:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1430236242", + "alarmDate": "1769979124915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509029", + "createdBy": null, + "createdTime": "2026-02-02 04:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:03", + "echoMap": {}, + "alarmNo": "1430236241", + "alarmDate": "1769979122473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136509012", + "createdBy": null, + "createdTime": "2026-02-02 04:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:01", + "echoMap": {}, + "alarmNo": "1430236240", + "alarmDate": "1769979119713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136508997", + "createdBy": null, + "createdTime": "2026-02-02 04:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:09", + "echoMap": {}, + "alarmNo": "1430236239", + "alarmDate": "1769979117328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113175136508958", + "createdBy": null, + "createdTime": "2026-02-02 04:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:49", + "echoMap": {}, + "alarmNo": "1430236238", + "alarmDate": "1769979108553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113170841541688", + "createdBy": null, + "createdTime": "2026-02-02 04:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:43", + "echoMap": {}, + "alarmNo": "1430236237", + "alarmDate": "1769979102142", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113166546574445", + "createdBy": null, + "createdTime": "2026-02-02 04:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:45", + "echoMap": {}, + "alarmNo": "1430236236", + "alarmDate": "1769978530110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113166546574370", + "createdBy": null, + "createdTime": "2026-02-02 04:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1430236235", + "alarmDate": "1769978513195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113162251607040", + "createdBy": null, + "createdTime": "2026-02-02 04:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:33", + "echoMap": {}, + "alarmNo": "1430236234", + "alarmDate": "1769978492255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060034", + "deviceName": "[203](10)宋园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956640011", + "createdBy": null, + "createdTime": "2026-02-02 04:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:23", + "echoMap": {}, + "alarmNo": "1430236233", + "alarmDate": "1769978481723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956640003", + "createdBy": null, + "createdTime": "2026-02-02 04:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:58", + "echoMap": {}, + "alarmNo": "1430236232", + "alarmDate": "1769978479984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639956", + "createdBy": null, + "createdTime": "2026-02-02 04:38:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:43", + "echoMap": {}, + "alarmNo": "1430236231", + "alarmDate": "1769978324081", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060005", + "deviceName": "[620](10)宋园变电所出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639883", + "createdBy": null, + "createdTime": "2026-02-02 04:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:33:43", + "echoMap": {}, + "alarmNo": "1430236230", + "alarmDate": "1769977964098", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639830", + "createdBy": null, + "createdTime": "2026-02-02 04:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:11", + "echoMap": {}, + "alarmNo": "1430236229", + "alarmDate": "1769977929564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113157956639775", + "createdBy": null, + "createdTime": "2026-02-02 04:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:11", + "echoMap": {}, + "alarmNo": "1430236228", + "alarmDate": "1769977918779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705472", + "createdBy": null, + "createdTime": "2026-02-02 04:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:47", + "echoMap": {}, + "alarmNo": "1430236227", + "alarmDate": "1769977894816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705458", + "createdBy": null, + "createdTime": "2026-02-02 04:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:33", + "echoMap": {}, + "alarmNo": "1430236226", + "alarmDate": "1769977892253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705443", + "createdBy": null, + "createdTime": "2026-02-02 04:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:31", + "echoMap": {}, + "alarmNo": "1430236225", + "alarmDate": "1769977889865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705441", + "createdBy": null, + "createdTime": "2026-02-02 04:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:35", + "echoMap": {}, + "alarmNo": "1430236224", + "alarmDate": "1769977889761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705430", + "createdBy": null, + "createdTime": "2026-02-02 04:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:28", + "echoMap": {}, + "alarmNo": "1430236223", + "alarmDate": "1769977887023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705285", + "createdBy": null, + "createdTime": "2026-02-02 04:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:20", + "echoMap": {}, + "alarmNo": "1430236222", + "alarmDate": "1769977338888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705227", + "createdBy": null, + "createdTime": "2026-02-02 04:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:23", + "echoMap": {}, + "alarmNo": "1430236221", + "alarmDate": "1769977330580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705208", + "createdBy": null, + "createdTime": "2026-02-02 04:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:19", + "echoMap": {}, + "alarmNo": "1430236220", + "alarmDate": "1769977326512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113149366705193", + "createdBy": null, + "createdTime": "2026-02-02 04:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:04", + "echoMap": {}, + "alarmNo": "1430236219", + "alarmDate": "1769977323252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113145071737893", + "createdBy": null, + "createdTime": "2026-02-02 04:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:59", + "echoMap": {}, + "alarmNo": "1430236218", + "alarmDate": "1769977307569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770864", + "createdBy": null, + "createdTime": "2026-02-02 04:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:35", + "echoMap": {}, + "alarmNo": "1430236217", + "alarmDate": "1769977280474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770696", + "createdBy": null, + "createdTime": "2026-02-02 04:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:42", + "echoMap": {}, + "alarmNo": "1430236216", + "alarmDate": "1769976727174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770664", + "createdBy": null, + "createdTime": "2026-02-02 04:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:11", + "echoMap": {}, + "alarmNo": "1430236215", + "alarmDate": "1769976719337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113140776770599", + "createdBy": null, + "createdTime": "2026-02-02 04:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:43", + "echoMap": {}, + "alarmNo": "1430236214", + "alarmDate": "1769976704087", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113136481803314", + "createdBy": null, + "createdTime": "2026-02-02 04:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:47", + "echoMap": {}, + "alarmNo": "1430236213", + "alarmDate": "1769976695337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113136481803281", + "createdBy": null, + "createdTime": "2026-02-02 04:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:29", + "echoMap": {}, + "alarmNo": "1430236212", + "alarmDate": "1769976687824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836255", + "createdBy": null, + "createdTime": "2026-02-02 04:08:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:43", + "echoMap": {}, + "alarmNo": "1430236211", + "alarmDate": "1769976524079", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836160", + "createdBy": null, + "createdTime": "2026-02-02 04:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:18", + "echoMap": {}, + "alarmNo": "1430236210", + "alarmDate": "1769976136643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836137", + "createdBy": null, + "createdTime": "2026-02-02 04:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:23", + "echoMap": {}, + "alarmNo": "1430236209", + "alarmDate": "1769976132069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836045", + "createdBy": null, + "createdTime": "2026-02-02 04:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:54", + "echoMap": {}, + "alarmNo": "1430236208", + "alarmDate": "1769976112584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836020", + "createdBy": null, + "createdTime": "2026-02-02 04:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:00", + "echoMap": {}, + "alarmNo": "1430236207", + "alarmDate": "1769976108095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836018", + "createdBy": null, + "createdTime": "2026-02-02 04:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:49", + "echoMap": {}, + "alarmNo": "1430236206", + "alarmDate": "1769976108036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186836002", + "createdBy": null, + "createdTime": "2026-02-02 04:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:46", + "echoMap": {}, + "alarmNo": "1430236205", + "alarmDate": "1769976105310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113132186835994", + "createdBy": null, + "createdTime": "2026-02-02 04:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:55", + "echoMap": {}, + "alarmNo": "1430236204", + "alarmDate": "1769976103768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113127891868711", + "createdBy": null, + "createdTime": "2026-02-02 04:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:34", + "echoMap": {}, + "alarmNo": "1430236203", + "alarmDate": "1769976092515", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901734", + "createdBy": null, + "createdTime": "2026-02-02 04:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:36", + "echoMap": {}, + "alarmNo": "1430236202", + "alarmDate": "1769976084014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901722", + "createdBy": null, + "createdTime": "2026-02-02 04:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:32", + "echoMap": {}, + "alarmNo": "1430236201", + "alarmDate": "1769976081737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901659", + "createdBy": null, + "createdTime": "2026-02-02 03:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:43", + "echoMap": {}, + "alarmNo": "1430236200", + "alarmDate": "1769975804083", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901527", + "createdBy": null, + "createdTime": "2026-02-02 03:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:12", + "echoMap": {}, + "alarmNo": "1430236199", + "alarmDate": "1769975519793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901477", + "createdBy": null, + "createdTime": "2026-02-02 03:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:01", + "echoMap": {}, + "alarmNo": "1430236198", + "alarmDate": "1769975508338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113123596901412", + "createdBy": null, + "createdTime": "2026-02-02 03:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:48", + "echoMap": {}, + "alarmNo": "1430236197", + "alarmDate": "1769975495800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113119301934099", + "createdBy": null, + "createdTime": "2026-02-02 03:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:43", + "echoMap": {}, + "alarmNo": "1430236196", + "alarmDate": "1769975084159", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006967086", + "createdBy": null, + "createdTime": "2026-02-02 03:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:25", + "echoMap": {}, + "alarmNo": "1430236195", + "alarmDate": "1769974932563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966972", + "createdBy": null, + "createdTime": "2026-02-02 03:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:01", + "echoMap": {}, + "alarmNo": "1430236194", + "alarmDate": "1769974908566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966922", + "createdBy": null, + "createdTime": "2026-02-02 03:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:38", + "echoMap": {}, + "alarmNo": "1430236193", + "alarmDate": "1769974896968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966857", + "createdBy": null, + "createdTime": "2026-02-02 03:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:37", + "echoMap": {}, + "alarmNo": "1430236192", + "alarmDate": "1769974884512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113115006966840", + "createdBy": null, + "createdTime": "2026-02-02 03:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:36", + "echoMap": {}, + "alarmNo": "1430236191", + "alarmDate": "1769974881006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999583", + "createdBy": null, + "createdTime": "2026-02-02 03:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:13", + "echoMap": {}, + "alarmNo": "1430236190", + "alarmDate": "1769974331769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999557", + "createdBy": null, + "createdTime": "2026-02-02 03:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:08", + "echoMap": {}, + "alarmNo": "1430236189", + "alarmDate": "1769974327267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999539", + "createdBy": null, + "createdTime": "2026-02-02 03:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:05", + "echoMap": {}, + "alarmNo": "1430236188", + "alarmDate": "1769974324468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999520", + "createdBy": null, + "createdTime": "2026-02-02 03:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:13", + "echoMap": {}, + "alarmNo": "1430236187", + "alarmDate": "1769974321295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113110711999489", + "createdBy": null, + "createdTime": "2026-02-02 03:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:56", + "echoMap": {}, + "alarmNo": "1430236186", + "alarmDate": "1769974314714", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113106417032550", + "createdBy": null, + "createdTime": "2026-02-02 03:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:49", + "echoMap": {}, + "alarmNo": "1430236185", + "alarmDate": "1769974297232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113106417032321", + "createdBy": null, + "createdTime": "2026-02-02 03:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1430236184", + "alarmDate": "1769973734010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113106417032234", + "createdBy": null, + "createdTime": "2026-02-02 03:21:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:02", + "echoMap": {}, + "alarmNo": "1430236183", + "alarmDate": "1769973709992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113102122064907", + "createdBy": null, + "createdTime": "2026-02-02 03:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:38", + "echoMap": {}, + "alarmNo": "1430236182", + "alarmDate": "1769973685954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097953", + "createdBy": null, + "createdTime": "2026-02-02 03:18:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:43", + "echoMap": {}, + "alarmNo": "1430236181", + "alarmDate": "1769973524086", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097804", + "createdBy": null, + "createdTime": "2026-02-02 03:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:14", + "echoMap": {}, + "alarmNo": "1430236180", + "alarmDate": "1769973121690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097744", + "createdBy": null, + "createdTime": "2026-02-02 03:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:46", + "echoMap": {}, + "alarmNo": "1430236179", + "alarmDate": "1769973105053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097716", + "createdBy": null, + "createdTime": "2026-02-02 03:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:40", + "echoMap": {}, + "alarmNo": "1430236178", + "alarmDate": "1769973099104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097709", + "createdBy": null, + "createdTime": "2026-02-02 03:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:50", + "echoMap": {}, + "alarmNo": "1430236177", + "alarmDate": "1769973097704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097696", + "createdBy": null, + "createdTime": "2026-02-02 03:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:35", + "echoMap": {}, + "alarmNo": "1430236176", + "alarmDate": "1769973094486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097683", + "createdBy": null, + "createdTime": "2026-02-02 03:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:33", + "echoMap": {}, + "alarmNo": "1430236175", + "alarmDate": "1769973091922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113097827097653", + "createdBy": null, + "createdTime": "2026-02-02 03:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:25", + "echoMap": {}, + "alarmNo": "1430236174", + "alarmDate": "1769973084048", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113089237163159", + "createdBy": null, + "createdTime": "2026-02-02 03:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:18", + "echoMap": {}, + "alarmNo": "1430236173", + "alarmDate": "1769972536884", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113089237163146", + "createdBy": null, + "createdTime": "2026-02-02 03:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:26", + "echoMap": {}, + "alarmNo": "1430236172", + "alarmDate": "1769972534516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113089237163059", + "createdBy": null, + "createdTime": "2026-02-02 03:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:02", + "echoMap": {}, + "alarmNo": "1430236171", + "alarmDate": "1769972510390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113084942195731", + "createdBy": null, + "createdTime": "2026-02-02 03:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:38", + "echoMap": {}, + "alarmNo": "1430236170", + "alarmDate": "1769972486400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113076352261166", + "createdBy": null, + "createdTime": "2026-02-02 02:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:15", + "echoMap": {}, + "alarmNo": "1430236169", + "alarmDate": "1769971923159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113072057293991", + "createdBy": null, + "createdTime": "2026-02-02 02:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:51", + "echoMap": {}, + "alarmNo": "1430236168", + "alarmDate": "1769971899173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113067762326554", + "createdBy": null, + "createdTime": "2026-02-02 02:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:27", + "echoMap": {}, + "alarmNo": "1430236167", + "alarmDate": "1769971335030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359422", + "createdBy": null, + "createdTime": "2026-02-02 02:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:59", + "echoMap": {}, + "alarmNo": "1430236166", + "alarmDate": "1769971318384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359399", + "createdBy": null, + "createdTime": "2026-02-02 02:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:56", + "echoMap": {}, + "alarmNo": "1430236165", + "alarmDate": "1769971314757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359389", + "createdBy": null, + "createdTime": "2026-02-02 02:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:54", + "echoMap": {}, + "alarmNo": "1430236164", + "alarmDate": "1769971313237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359379", + "createdBy": null, + "createdTime": "2026-02-02 02:41:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:04", + "echoMap": {}, + "alarmNo": "1430236163", + "alarmDate": "1769971311956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359372", + "createdBy": null, + "createdTime": "2026-02-02 02:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:52", + "echoMap": {}, + "alarmNo": "1430236162", + "alarmDate": "1769971311168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359341", + "createdBy": null, + "createdTime": "2026-02-02 02:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:45", + "echoMap": {}, + "alarmNo": "1430236161", + "alarmDate": "1769971304287", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113063467359254", + "createdBy": null, + "createdTime": "2026-02-02 02:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:39", + "echoMap": {}, + "alarmNo": "1430236160", + "alarmDate": "1769971286964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113054877424689", + "createdBy": null, + "createdTime": "2026-02-02 02:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:16", + "echoMap": {}, + "alarmNo": "1430236159", + "alarmDate": "1769970723654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113050582457352", + "createdBy": null, + "createdTime": "2026-02-02 02:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:52", + "echoMap": {}, + "alarmNo": "1430236158", + "alarmDate": "1769970699656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113041992522808", + "createdBy": null, + "createdTime": "2026-02-02 02:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:28", + "echoMap": {}, + "alarmNo": "1430236157", + "alarmDate": "1769970136528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113037697555555", + "createdBy": null, + "createdTime": "2026-02-02 02:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:04", + "echoMap": {}, + "alarmNo": "1430236156", + "alarmDate": "1769970112399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113033402588204", + "createdBy": null, + "createdTime": "2026-02-02 02:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:40", + "echoMap": {}, + "alarmNo": "1430236155", + "alarmDate": "1769970088422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113033402588173", + "createdBy": null, + "createdTime": "2026-02-02 02:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:23", + "echoMap": {}, + "alarmNo": "1430236154", + "alarmDate": "1769970082058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113033402588167", + "createdBy": null, + "createdTime": "2026-02-02 02:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:13", + "echoMap": {}, + "alarmNo": "1430236153", + "alarmDate": "1769970081249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620932", + "createdBy": null, + "createdTime": "2026-02-02 02:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:43", + "echoMap": {}, + "alarmNo": "1430236152", + "alarmDate": "1769969564103", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620925", + "createdBy": null, + "createdTime": "2026-02-02 02:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:28", + "echoMap": {}, + "alarmNo": "1430236151", + "alarmDate": "1769969539603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620904", + "createdBy": null, + "createdTime": "2026-02-02 02:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:16", + "echoMap": {}, + "alarmNo": "1430236150", + "alarmDate": "1769969534858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113029107620873", + "createdBy": null, + "createdTime": "2026-02-02 02:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:10", + "echoMap": {}, + "alarmNo": "1430236149", + "alarmDate": "1769969529313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113024812653608", + "createdBy": null, + "createdTime": "2026-02-02 02:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:06", + "echoMap": {}, + "alarmNo": "1430236148", + "alarmDate": "1769969525434", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113024812653604", + "createdBy": null, + "createdTime": "2026-02-02 02:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:16", + "echoMap": {}, + "alarmNo": "1430236147", + "alarmDate": "1769969525171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113024812653588", + "createdBy": null, + "createdTime": "2026-02-02 02:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:03", + "echoMap": {}, + "alarmNo": "1430236146", + "alarmDate": "1769969522362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113020517686373", + "createdBy": null, + "createdTime": "2026-02-02 02:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:53", + "echoMap": {}, + "alarmNo": "1430236145", + "alarmDate": "1769969501211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113011927751781", + "createdBy": null, + "createdTime": "2026-02-02 02:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:29", + "echoMap": {}, + "alarmNo": "1430236144", + "alarmDate": "1769968937064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113011927751722", + "createdBy": null, + "createdTime": "2026-02-02 02:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:15", + "echoMap": {}, + "alarmNo": "1430236143", + "alarmDate": "1769968923695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113007632784439", + "createdBy": null, + "createdTime": "2026-02-02 02:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:05", + "echoMap": {}, + "alarmNo": "1430236142", + "alarmDate": "1769968912894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723113003337817219", + "createdBy": null, + "createdTime": "2026-02-02 02:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:41", + "echoMap": {}, + "alarmNo": "1430236141", + "alarmDate": "1769968888892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882702", + "createdBy": null, + "createdTime": "2026-02-02 01:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:18", + "echoMap": {}, + "alarmNo": "1430236140", + "alarmDate": "1769968325753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882616", + "createdBy": null, + "createdTime": "2026-02-02 01:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:48", + "echoMap": {}, + "alarmNo": "1430236139", + "alarmDate": "1769968307014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882587", + "createdBy": null, + "createdTime": "2026-02-02 01:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:43", + "echoMap": {}, + "alarmNo": "1430236138", + "alarmDate": "1769968302229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882583", + "createdBy": null, + "createdTime": "2026-02-02 01:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:54", + "echoMap": {}, + "alarmNo": "1430236137", + "alarmDate": "1769968301668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882574", + "createdBy": null, + "createdTime": "2026-02-02 01:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:52", + "echoMap": {}, + "alarmNo": "1430236136", + "alarmDate": "1769968300364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882559", + "createdBy": null, + "createdTime": "2026-02-02 01:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:38", + "echoMap": {}, + "alarmNo": "1430236135", + "alarmDate": "1769968296752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112994747882553", + "createdBy": null, + "createdTime": "2026-02-02 01:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:37", + "echoMap": {}, + "alarmNo": "1430236134", + "alarmDate": "1769968295832", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112990452915246", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:22", + "echoMap": {}, + "alarmNo": "1430236133", + "alarmDate": "1769968280633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112986157948011", + "createdBy": null, + "createdTime": "2026-02-02 01:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:43", + "echoMap": {}, + "alarmNo": "1430236132", + "alarmDate": "1769967764113", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112986157948001", + "createdBy": null, + "createdTime": "2026-02-02 01:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:30", + "echoMap": {}, + "alarmNo": "1430236131", + "alarmDate": "1769967738500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112986157947949", + "createdBy": null, + "createdTime": "2026-02-02 01:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:10", + "echoMap": {}, + "alarmNo": "1430236130", + "alarmDate": "1769967729436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112981862980634", + "createdBy": null, + "createdTime": "2026-02-02 01:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:06", + "echoMap": {}, + "alarmNo": "1430236129", + "alarmDate": "1769967714402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112977568013439", + "createdBy": null, + "createdTime": "2026-02-02 01:41:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:43", + "echoMap": {}, + "alarmNo": "1430236128", + "alarmDate": "1769967702439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078883", + "createdBy": null, + "createdTime": "2026-02-02 01:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:28", + "echoMap": {}, + "alarmNo": "1430236127", + "alarmDate": "1769967136724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078838", + "createdBy": null, + "createdTime": "2026-02-02 01:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:42", + "echoMap": {}, + "alarmNo": "1430236126", + "alarmDate": "1769967126241", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078791", + "createdBy": null, + "createdTime": "2026-02-02 01:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:01", + "echoMap": {}, + "alarmNo": "1430236125", + "alarmDate": "1769967114376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060082", + "deviceName": "[111](10)宋园下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112968978078728", + "createdBy": null, + "createdTime": "2026-02-02 01:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:54", + "echoMap": {}, + "alarmNo": "1430236124", + "alarmDate": "1769967102147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112960388144324", + "createdBy": null, + "createdTime": "2026-02-02 01:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:41", + "echoMap": {}, + "alarmNo": "1430236123", + "alarmDate": "1769967082589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112960388144148", + "createdBy": null, + "createdTime": "2026-02-02 01:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:08", + "echoMap": {}, + "alarmNo": "1430236122", + "alarmDate": "1769966527193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176872", + "createdBy": null, + "createdTime": "2026-02-02 01:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:01", + "echoMap": {}, + "alarmNo": "1430236121", + "alarmDate": "1769966520378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176850", + "createdBy": null, + "createdTime": "2026-02-02 01:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:58", + "echoMap": {}, + "alarmNo": "1430236120", + "alarmDate": "1769966516978", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176841", + "createdBy": null, + "createdTime": "2026-02-02 01:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:57", + "echoMap": {}, + "alarmNo": "1430236119", + "alarmDate": "1769966515927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112956093176833", + "createdBy": null, + "createdTime": "2026-02-02 01:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:30", + "echoMap": {}, + "alarmNo": "1430236118", + "alarmDate": "1769966514875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112951798209549", + "createdBy": null, + "createdTime": "2026-02-02 01:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:30", + "echoMap": {}, + "alarmNo": "1430236117", + "alarmDate": "1769966488728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208275082", + "createdBy": null, + "createdTime": "2026-02-02 01:14:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:43", + "echoMap": {}, + "alarmNo": "1430236116", + "alarmDate": "1769966084082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208275034", + "createdBy": null, + "createdTime": "2026-02-02 01:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:17", + "echoMap": {}, + "alarmNo": "1430236115", + "alarmDate": "1769965936503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208274976", + "createdBy": null, + "createdTime": "2026-02-02 01:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:07", + "echoMap": {}, + "alarmNo": "1430236114", + "alarmDate": "1769965927993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112943208274973", + "createdBy": null, + "createdTime": "2026-02-02 01:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:43", + "echoMap": {}, + "alarmNo": "1430236113", + "alarmDate": "1769965927676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112934618340489", + "createdBy": null, + "createdTime": "2026-02-02 01:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:56", + "echoMap": {}, + "alarmNo": "1430236112", + "alarmDate": "1769965903574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112934618340354", + "createdBy": null, + "createdTime": "2026-02-02 01:09:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:43", + "echoMap": {}, + "alarmNo": "1430236111", + "alarmDate": "1769965784180", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112926028405783", + "createdBy": null, + "createdTime": "2026-02-02 01:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:32", + "echoMap": {}, + "alarmNo": "1430236110", + "alarmDate": "1769965316250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112921733438512", + "createdBy": null, + "createdTime": "2026-02-02 01:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:46", + "echoMap": {}, + "alarmNo": "1430236109", + "alarmDate": "1769965305396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060037", + "deviceName": "[202](10)宋园厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112921733438476", + "createdBy": null, + "createdTime": "2026-02-02 01:01:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:44", + "echoMap": {}, + "alarmNo": "1430236108", + "alarmDate": "1769965298639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471314", + "createdBy": null, + "createdTime": "2026-02-02 01:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:36", + "echoMap": {}, + "alarmNo": "1430236107", + "alarmDate": "1769965294630", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471302", + "createdBy": null, + "createdTime": "2026-02-02 01:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:44", + "echoMap": {}, + "alarmNo": "1430236106", + "alarmDate": "1769965292276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471286", + "createdBy": null, + "createdTime": "2026-02-02 01:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:30", + "echoMap": {}, + "alarmNo": "1430236105", + "alarmDate": "1769965288607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471279", + "createdBy": null, + "createdTime": "2026-02-02 01:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:28", + "echoMap": {}, + "alarmNo": "1430236104", + "alarmDate": "1769965287454", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471263", + "createdBy": null, + "createdTime": "2026-02-02 01:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:24", + "echoMap": {}, + "alarmNo": "1430236103", + "alarmDate": "1769965283348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112917438471239", + "createdBy": null, + "createdTime": "2026-02-02 01:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:43", + "echoMap": {}, + "alarmNo": "1430236102", + "alarmDate": "1769965244101", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112908848536715", + "createdBy": null, + "createdTime": "2026-02-02 00:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:16", + "echoMap": {}, + "alarmNo": "1430236101", + "alarmDate": "1769964735209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112908848536708", + "createdBy": null, + "createdTime": "2026-02-02 00:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:21", + "echoMap": {}, + "alarmNo": "1430236100", + "alarmDate": "1769964734343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112908848536576", + "createdBy": null, + "createdTime": "2026-02-02 00:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:20", + "echoMap": {}, + "alarmNo": "1430236099", + "alarmDate": "1769964704015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112904553569289", + "createdBy": null, + "createdTime": "2026-02-02 00:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:37", + "echoMap": {}, + "alarmNo": "1430236098", + "alarmDate": "1769964695941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112887373700119", + "createdBy": null, + "createdTime": "2026-02-02 00:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:51", + "echoMap": {}, + "alarmNo": "1430236097", + "alarmDate": "1769964098985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112883078732947", + "createdBy": null, + "createdTime": "2026-02-02 00:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:32", + "echoMap": {}, + "alarmNo": "1430236096", + "alarmDate": "1769964092755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798361", + "createdBy": null, + "createdTime": "2026-02-02 00:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:21", + "echoMap": {}, + "alarmNo": "1430236095", + "alarmDate": "1769963529633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798295", + "createdBy": null, + "createdTime": "2026-02-02 00:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:56", + "echoMap": {}, + "alarmNo": "1430236094", + "alarmDate": "1769963514783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798260", + "createdBy": null, + "createdTime": "2026-02-02 00:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:27", + "echoMap": {}, + "alarmNo": "1430236093", + "alarmDate": "1769963510631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060077", + "deviceName": "[110](10)宋园下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798251", + "createdBy": null, + "createdTime": "2026-02-02 00:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:50", + "echoMap": {}, + "alarmNo": "1430236092", + "alarmDate": "1769963509461", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798242", + "createdBy": null, + "createdTime": "2026-02-02 00:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:49", + "echoMap": {}, + "alarmNo": "1430236091", + "alarmDate": "1769963507833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798228", + "createdBy": null, + "createdTime": "2026-02-02 00:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:58", + "echoMap": {}, + "alarmNo": "1430236090", + "alarmDate": "1769963505511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112874488798215", + "createdBy": null, + "createdTime": "2026-02-02 00:31:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:44", + "echoMap": {}, + "alarmNo": "1430236089", + "alarmDate": "1769963502539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112865898863716", + "createdBy": null, + "createdTime": "2026-02-02 00:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:34", + "echoMap": {}, + "alarmNo": "1430236088", + "alarmDate": "1769963481466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112861603896388", + "createdBy": null, + "createdTime": "2026-02-02 00:23:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:43", + "echoMap": {}, + "alarmNo": "1430236087", + "alarmDate": "1769963024076", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060004", + "deviceName": "[609](10)宋园环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112857308929123", + "createdBy": null, + "createdTime": "2026-02-02 00:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:09", + "echoMap": {}, + "alarmNo": "1430236086", + "alarmDate": "1769962917312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112857308929060", + "createdBy": null, + "createdTime": "2026-02-02 00:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:45", + "echoMap": {}, + "alarmNo": "1430236085", + "alarmDate": "1769962904038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060059", + "deviceName": "[204](10)宋园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112853013961762", + "createdBy": null, + "createdTime": "2026-02-02 00:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:45", + "echoMap": {}, + "alarmNo": "1430236084", + "alarmDate": "1769962893229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112840129059954", + "createdBy": null, + "createdTime": "2026-02-02 00:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:43", + "echoMap": {}, + "alarmNo": "1430236083", + "alarmDate": "1769962364111", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1008060013", + "deviceName": "[603](10)宋园编码室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112840129059938", + "createdBy": null, + "createdTime": "2026-02-02 00:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:07", + "echoMap": {}, + "alarmNo": "1430236082", + "alarmDate": "1769962337304", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060022", + "deviceName": "[402](10)宋园1#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112840129059899", + "createdBy": null, + "createdTime": "2026-02-02 00:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:21", + "echoMap": {}, + "alarmNo": "1430236081", + "alarmDate": "1769962330127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112835834092550", + "createdBy": null, + "createdTime": "2026-02-02 00:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:58", + "echoMap": {}, + "alarmNo": "1430236080", + "alarmDate": "1769962306014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112831539125287", + "createdBy": null, + "createdTime": "2026-02-02 00:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:23", + "echoMap": {}, + "alarmNo": "1430236079", + "alarmDate": "1769962282242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112818654223391", + "createdBy": null, + "createdTime": "2026-02-02 00:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:16", + "echoMap": {}, + "alarmNo": "1430236078", + "alarmDate": "1769961735006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060061", + "deviceName": "[205](10)宋园厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112818654223373", + "createdBy": null, + "createdTime": "2026-02-02 00:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:14", + "echoMap": {}, + "alarmNo": "1430236077", + "alarmDate": "1769961732732", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060088", + "deviceName": "[207](10)宋园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112814359256213", + "createdBy": null, + "createdTime": "2026-02-02 00:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:05", + "echoMap": {}, + "alarmNo": "1430236076", + "alarmDate": "1769961723954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060033", + "deviceName": "[601](10)宋园车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112814359256190", + "createdBy": null, + "createdTime": "2026-02-02 00:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:02", + "echoMap": {}, + "alarmNo": "1430236075", + "alarmDate": "1769961720789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060021", + "deviceName": "[201](10)宋园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112814359256176", + "createdBy": null, + "createdTime": "2026-02-02 00:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:34", + "echoMap": {}, + "alarmNo": "1430236074", + "alarmDate": "1769961718826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112810064288803", + "createdBy": null, + "createdTime": "2026-02-02 00:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:47", + "echoMap": {}, + "alarmNo": "1430236073", + "alarmDate": "1769961694738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060028", + "deviceName": "[305](10)宋园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + }, + { + "id": "723112805769321604", + "createdBy": null, + "createdTime": "2026-02-02 00:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:29", + "echoMap": {}, + "alarmNo": "1430236072", + "alarmDate": "1769961680053", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1008060045", + "deviceName": "[345](10)宋园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1008" + } + ] + }, + "1009": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112810064363545", + "createdBy": null, + "createdTime": "2026-02-02 00:06:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:01", + "echoMap": {}, + "alarmNo": "1450241705", + "alarmDate": "1769961960794", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060010", + "deviceName": "[302](10)虹桥4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363546", + "createdBy": null, + "createdTime": "2026-02-02 00:06:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:04", + "echoMap": {}, + "alarmNo": "1450241706", + "alarmDate": "1769961960891", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060029", + "deviceName": "[331](10)虹桥10-3换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363556", + "createdBy": null, + "createdTime": "2026-02-02 00:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:26", + "echoMap": {}, + "alarmNo": "1450241707", + "alarmDate": "1769961961825", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060057", + "deviceName": "[407](10)虹桥4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363559", + "createdBy": null, + "createdTime": "2026-02-02 00:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:02", + "echoMap": {}, + "alarmNo": "1450241708", + "alarmDate": "1769961962056", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060058", + "deviceName": "[406](10)虹桥3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363565", + "createdBy": null, + "createdTime": "2026-02-02 00:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:04", + "echoMap": {}, + "alarmNo": "1450241709", + "alarmDate": "1769961962434", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060067", + "deviceName": "[408](10)虹桥4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112822949265510", + "createdBy": null, + "createdTime": "2026-02-02 00:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:38", + "echoMap": {}, + "alarmNo": "1450241710", + "alarmDate": "1769961997430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112865898938374", + "createdBy": null, + "createdTime": "2026-02-02 00:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:48", + "echoMap": {}, + "alarmNo": "1450241711", + "alarmDate": "1769962606921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112865898938467", + "createdBy": null, + "createdTime": "2026-02-02 00:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:56", + "echoMap": {}, + "alarmNo": "1450241712", + "alarmDate": "1769962615508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112887373774853", + "createdBy": null, + "createdTime": "2026-02-02 00:26:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:05", + "echoMap": {}, + "alarmNo": "1450241713", + "alarmDate": "1769963163661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112895963709479", + "createdBy": null, + "createdTime": "2026-02-02 00:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:31", + "echoMap": {}, + "alarmNo": "1450241714", + "alarmDate": "1769963189719", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112900258676748", + "createdBy": null, + "createdTime": "2026-02-02 00:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:37", + "echoMap": {}, + "alarmNo": "1450241715", + "alarmDate": "1769963196337", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112921733513232", + "createdBy": null, + "createdTime": "2026-02-02 00:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:20", + "echoMap": {}, + "alarmNo": "1450241716", + "alarmDate": "1769963779227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112956093251607", + "createdBy": null, + "createdTime": "2026-02-02 00:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:30", + "echoMap": {}, + "alarmNo": "1450241717", + "alarmDate": "1769964388726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112960388218899", + "createdBy": null, + "createdTime": "2026-02-02 00:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:36", + "echoMap": {}, + "alarmNo": "1450241718", + "alarmDate": "1769964395191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112981863055382", + "createdBy": null, + "createdTime": "2026-02-02 00:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:19", + "echoMap": {}, + "alarmNo": "1450241719", + "alarmDate": "1769964977524", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112986158022865", + "createdBy": null, + "createdTime": "2026-02-02 00:56:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:42", + "echoMap": {}, + "alarmNo": "1450241720", + "alarmDate": "1769965001151", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112994747957273", + "createdBy": null, + "createdTime": "2026-02-02 00:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:53", + "echoMap": {}, + "alarmNo": "1450241721", + "alarmDate": "1769965012003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113020517761100", + "createdBy": null, + "createdTime": "2026-02-02 01:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:10", + "echoMap": {}, + "alarmNo": "1450241723", + "alarmDate": "1769965620403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113041992597524", + "createdBy": null, + "createdTime": "2026-02-02 01:16:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:58", + "echoMap": {}, + "alarmNo": "1450241724", + "alarmDate": "1769966217094", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113054877499412", + "createdBy": null, + "createdTime": "2026-02-02 01:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:09", + "echoMap": {}, + "alarmNo": "1450241725", + "alarmDate": "1769966768582", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113063467434078", + "createdBy": null, + "createdTime": "2026-02-02 01:26:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:36", + "echoMap": {}, + "alarmNo": "1450241726", + "alarmDate": "1769966794844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113072057368619", + "createdBy": null, + "createdTime": "2026-02-02 01:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:48", + "echoMap": {}, + "alarmNo": "1450241727", + "alarmDate": "1769966807043", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113106417107030", + "createdBy": null, + "createdTime": "2026-02-02 01:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:43", + "echoMap": {}, + "alarmNo": "1450241728", + "alarmDate": "1769967402033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113106417107091", + "createdBy": null, + "createdTime": "2026-02-02 01:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:48", + "echoMap": {}, + "alarmNo": "1450241729", + "alarmDate": "1769967407392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113115007042179", + "createdBy": null, + "createdTime": "2026-02-02 01:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:48", + "echoMap": {}, + "alarmNo": "1450241730", + "alarmDate": "1769968006738", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113123596976335", + "createdBy": null, + "createdTime": "2026-02-02 01:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:16", + "echoMap": {}, + "alarmNo": "1450241731", + "alarmDate": "1769968574547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113123596976701", + "createdBy": null, + "createdTime": "2026-02-02 01:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:52", + "echoMap": {}, + "alarmNo": "1450241732", + "alarmDate": "1769968610729", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113127891943494", + "createdBy": null, + "createdTime": "2026-02-02 02:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:07", + "echoMap": {}, + "alarmNo": "1450241733", + "alarmDate": "1769969165893", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113127891943659", + "createdBy": null, + "createdTime": "2026-02-02 02:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:23", + "echoMap": {}, + "alarmNo": "1450241734", + "alarmDate": "1769969181846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113132186910772", + "createdBy": null, + "createdTime": "2026-02-02 02:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:28", + "echoMap": {}, + "alarmNo": "1450241735", + "alarmDate": "1769969187246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113140776845453", + "createdBy": null, + "createdTime": "2026-02-02 02:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:41", + "echoMap": {}, + "alarmNo": "1450241736", + "alarmDate": "1769969799601", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113140776845535", + "createdBy": null, + "createdTime": "2026-02-02 02:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:48", + "echoMap": {}, + "alarmNo": "1450241737", + "alarmDate": "1769969807155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780148", + "createdBy": null, + "createdTime": "2026-02-02 02:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:55", + "echoMap": {}, + "alarmNo": "1450241738", + "alarmDate": "1769970414463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780154", + "createdBy": null, + "createdTime": "2026-02-02 02:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:56", + "echoMap": {}, + "alarmNo": "1450241739", + "alarmDate": "1769970414639", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780371", + "createdBy": null, + "createdTime": "2026-02-02 02:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:04", + "echoMap": {}, + "alarmNo": "1450241740", + "alarmDate": "1769970962614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780377", + "createdBy": null, + "createdTime": "2026-02-02 02:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:04", + "echoMap": {}, + "alarmNo": "1450241741", + "alarmDate": "1769970962757", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780428", + "createdBy": null, + "createdTime": "2026-02-02 02:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:08", + "echoMap": {}, + "alarmNo": "1450241742", + "alarmDate": "1769970967047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113162251681829", + "createdBy": null, + "createdTime": "2026-02-02 02:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:28", + "echoMap": {}, + "alarmNo": "1450241743", + "alarmDate": "1769971587463", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113162251681837", + "createdBy": null, + "createdTime": "2026-02-02 02:46:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:29", + "echoMap": {}, + "alarmNo": "1450241744", + "alarmDate": "1769971587996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113175136583721", + "createdBy": null, + "createdTime": "2026-02-02 02:56:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:36", + "echoMap": {}, + "alarmNo": "1450241745", + "alarmDate": "1769972195374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113175136583723", + "createdBy": null, + "createdTime": "2026-02-02 02:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:36", + "echoMap": {}, + "alarmNo": "1450241746", + "alarmDate": "1769972195517", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113175136583770", + "createdBy": null, + "createdTime": "2026-02-02 02:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:41", + "echoMap": {}, + "alarmNo": "1450241747", + "alarmDate": "1769972199569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113183726518592", + "createdBy": null, + "createdTime": "2026-02-02 03:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:01", + "echoMap": {}, + "alarmNo": "1450241748", + "alarmDate": "1769972819578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113183726518792", + "createdBy": null, + "createdTime": "2026-02-02 03:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:09", + "echoMap": {}, + "alarmNo": "1450241749", + "alarmDate": "1769973367841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113183726518898", + "createdBy": null, + "createdTime": "2026-02-02 03:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:19", + "echoMap": {}, + "alarmNo": "1450241750", + "alarmDate": "1769973378117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316453100", + "createdBy": null, + "createdTime": "2026-02-02 03:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:18", + "echoMap": {}, + "alarmNo": "1450241752", + "alarmDate": "1769973977143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316453136", + "createdBy": null, + "createdTime": "2026-02-02 03:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:21", + "echoMap": {}, + "alarmNo": "1450241753", + "alarmDate": "1769973980385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316453300", + "createdBy": null, + "createdTime": "2026-02-02 03:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:37", + "echoMap": {}, + "alarmNo": "1450241754", + "alarmDate": "1769973996387", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113200906387907", + "createdBy": null, + "createdTime": "2026-02-02 03:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:42", + "echoMap": {}, + "alarmNo": "1450241755", + "alarmDate": "1769974601470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113200906388079", + "createdBy": null, + "createdTime": "2026-02-02 03:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:59", + "echoMap": {}, + "alarmNo": "1450241756", + "alarmDate": "1769974617792", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113209496322155", + "createdBy": null, + "createdTime": "2026-02-02 03:46:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:09", + "echoMap": {}, + "alarmNo": "1450241757", + "alarmDate": "1769975167943", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113209496322567", + "createdBy": null, + "createdTime": "2026-02-02 03:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:50", + "echoMap": {}, + "alarmNo": "1450241758", + "alarmDate": "1769975208725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113209496322604", + "createdBy": null, + "createdTime": "2026-02-02 03:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:53", + "echoMap": {}, + "alarmNo": "1450241759", + "alarmDate": "1769975211966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113218086256686", + "createdBy": null, + "createdTime": "2026-02-02 03:56:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:01", + "echoMap": {}, + "alarmNo": "1450241760", + "alarmDate": "1769975760127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113218086257117", + "createdBy": null, + "createdTime": "2026-02-02 03:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:44", + "echoMap": {}, + "alarmNo": "1450241761", + "alarmDate": "1769975803238", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113226676191481", + "createdBy": null, + "createdTime": "2026-02-02 04:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:23", + "echoMap": {}, + "alarmNo": "1450241762", + "alarmDate": "1769976382386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113226676191718", + "createdBy": null, + "createdTime": "2026-02-02 04:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:47", + "echoMap": {}, + "alarmNo": "1450241763", + "alarmDate": "1769976405643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113235266126172", + "createdBy": null, + "createdTime": "2026-02-02 04:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:31", + "echoMap": {}, + "alarmNo": "1450241764", + "alarmDate": "1769976989649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113235266126217", + "createdBy": null, + "createdTime": "2026-02-02 04:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:35", + "echoMap": {}, + "alarmNo": "1450241765", + "alarmDate": "1769976993779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060511", + "createdBy": null, + "createdTime": "2026-02-02 04:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:26", + "echoMap": {}, + "alarmNo": "1450241766", + "alarmDate": "1769977562624", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060026", + "deviceName": "[329](10)虹桥10-3换乘出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060528", + "createdBy": null, + "createdTime": "2026-02-02 04:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:27", + "echoMap": {}, + "alarmNo": "1450241767", + "alarmDate": "1769977564612", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060029", + "deviceName": "[331](10)虹桥10-3换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060542", + "createdBy": null, + "createdTime": "2026-02-02 04:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:08", + "echoMap": {}, + "alarmNo": "1450241768", + "alarmDate": "1769977567629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060033", + "deviceName": "[328](10)虹桥10-3换乘入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060644", + "createdBy": null, + "createdTime": "2026-02-02 04:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:48", + "echoMap": {}, + "alarmNo": "1450241769", + "alarmDate": "1769977607143", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060834", + "createdBy": null, + "createdTime": "2026-02-02 04:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:26", + "echoMap": {}, + "alarmNo": "1450241770", + "alarmDate": "1769978185309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060044", + "deviceName": "[209](10)虹桥6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060849", + "createdBy": null, + "createdTime": "2026-02-02 04:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:35", + "echoMap": {}, + "alarmNo": "1450241771", + "alarmDate": "1769978194451", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060867", + "createdBy": null, + "createdTime": "2026-02-02 04:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:48", + "echoMap": {}, + "alarmNo": "1450241772", + "alarmDate": "1769978207156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060017", + "deviceName": "[202](10)虹桥厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856061030", + "createdBy": null, + "createdTime": "2026-02-02 04:46:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:10", + "echoMap": {}, + "alarmNo": "1450241773", + "alarmDate": "1769978769362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856061034", + "createdBy": null, + "createdTime": "2026-02-02 04:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:16", + "echoMap": {}, + "alarmNo": "1450241774", + "alarmDate": "1769978774610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995039", + "createdBy": null, + "createdTime": "2026-02-02 04:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:29", + "echoMap": {}, + "alarmNo": "1450241775", + "alarmDate": "1769979387941", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995182", + "createdBy": null, + "createdTime": "2026-02-02 05:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:24", + "echoMap": {}, + "alarmNo": "1450241776", + "alarmDate": "1769979983157", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995186", + "createdBy": null, + "createdTime": "2026-02-02 05:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:29", + "echoMap": {}, + "alarmNo": "1450241777", + "alarmDate": "1769979988108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060017", + "deviceName": "[202](10)虹桥厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995190", + "createdBy": null, + "createdTime": "2026-02-02 05:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:43", + "echoMap": {}, + "alarmNo": "1450241778", + "alarmDate": "1769980002069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995196", + "createdBy": null, + "createdTime": "2026-02-02 05:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:48", + "echoMap": {}, + "alarmNo": "1450241779", + "alarmDate": "1769980007101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995504", + "createdBy": null, + "createdTime": "2026-02-02 05:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:13", + "echoMap": {}, + "alarmNo": "1450241780", + "alarmDate": "1769981171816", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995655", + "createdBy": null, + "createdTime": "2026-02-02 05:36:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:11", + "echoMap": {}, + "alarmNo": "1450241781", + "alarmDate": "1769981770041", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995658", + "createdBy": null, + "createdTime": "2026-02-02 05:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:12", + "echoMap": {}, + "alarmNo": "1450241782", + "alarmDate": "1769981770872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060017", + "deviceName": "[202](10)虹桥厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995666", + "createdBy": null, + "createdTime": "2026-02-02 05:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:24", + "echoMap": {}, + "alarmNo": "1450241783", + "alarmDate": "1769981782867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995670", + "createdBy": null, + "createdTime": "2026-02-02 05:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:30", + "echoMap": {}, + "alarmNo": "1450241784", + "alarmDate": "1769981789001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929686", + "createdBy": null, + "createdTime": "2026-02-02 05:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:35", + "echoMap": {}, + "alarmNo": "1450241785", + "alarmDate": "1769982394198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929697", + "createdBy": null, + "createdTime": "2026-02-02 05:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:52", + "echoMap": {}, + "alarmNo": "1450241786", + "alarmDate": "1769982410510", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929854", + "createdBy": null, + "createdTime": "2026-02-02 05:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:49", + "echoMap": {}, + "alarmNo": "1450241787", + "alarmDate": "1769983007771", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929859", + "createdBy": null, + "createdTime": "2026-02-02 05:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:58", + "echoMap": {}, + "alarmNo": "1450241788", + "alarmDate": "1769983016521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929995", + "createdBy": null, + "createdTime": "2026-02-02 06:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:08", + "echoMap": {}, + "alarmNo": "1450241789", + "alarmDate": "1769983566699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035930000", + "createdBy": null, + "createdTime": "2026-02-02 06:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:12", + "echoMap": {}, + "alarmNo": "1450241790", + "alarmDate": "1769983570678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035930160", + "createdBy": null, + "createdTime": "2026-02-02 06:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:23", + "echoMap": {}, + "alarmNo": "1450241791", + "alarmDate": "1769984182098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035930170", + "createdBy": null, + "createdTime": "2026-02-02 06:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:47", + "echoMap": {}, + "alarmNo": "1450241792", + "alarmDate": "1769984205411", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113265330896937", + "createdBy": null, + "createdTime": "2026-02-02 06:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:16", + "echoMap": {}, + "alarmNo": "1450241793", + "alarmDate": "1769984770491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113265330896952", + "createdBy": null, + "createdTime": "2026-02-02 06:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:22", + "echoMap": {}, + "alarmNo": "1450241794", + "alarmDate": "1769984776449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864225", + "createdBy": null, + "createdTime": "2026-02-02 06:26:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:40", + "echoMap": {}, + "alarmNo": "1450241795", + "alarmDate": "1769984799368", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864231", + "createdBy": null, + "createdTime": "2026-02-02 06:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:42", + "echoMap": {}, + "alarmNo": "1450241796", + "alarmDate": "1769984801423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864242", + "createdBy": null, + "createdTime": "2026-02-02 06:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:47", + "echoMap": {}, + "alarmNo": "1450241797", + "alarmDate": "1769984806378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864637", + "createdBy": null, + "createdTime": "2026-02-02 06:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:32", + "echoMap": {}, + "alarmNo": "1450241798", + "alarmDate": "1769985961026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060032", + "deviceName": "[333](10)虹桥10-3换乘通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864757", + "createdBy": null, + "createdTime": "2026-02-02 06:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:45", + "echoMap": {}, + "alarmNo": "1450241799", + "alarmDate": "1769986004208", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864766", + "createdBy": null, + "createdTime": "2026-02-02 06:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:47", + "echoMap": {}, + "alarmNo": "1450241800", + "alarmDate": "1769986006938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060034", + "deviceName": "[332](10)虹桥10-3换乘通道1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215798795", + "createdBy": null, + "createdTime": "2026-02-02 06:56:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:34", + "echoMap": {}, + "alarmNo": "1450241801", + "alarmDate": "1769986593153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215798804", + "createdBy": null, + "createdTime": "2026-02-02 06:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:38", + "echoMap": {}, + "alarmNo": "1450241802", + "alarmDate": "1769986597146", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215798818", + "createdBy": null, + "createdTime": "2026-02-02 06:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:46", + "echoMap": {}, + "alarmNo": "1450241803", + "alarmDate": "1769986605183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215799262", + "createdBy": null, + "createdTime": "2026-02-02 07:16:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:45", + "echoMap": {}, + "alarmNo": "1450241804", + "alarmDate": "1769987804072", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113282510766108", + "createdBy": null, + "createdTime": "2026-02-02 07:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:23", + "echoMap": {}, + "alarmNo": "1450241805", + "alarmDate": "1769988382057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733376", + "createdBy": null, + "createdTime": "2026-02-02 07:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:45", + "echoMap": {}, + "alarmNo": "1450241806", + "alarmDate": "1769988404036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733386", + "createdBy": null, + "createdTime": "2026-02-02 07:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:51", + "echoMap": {}, + "alarmNo": "1450241807", + "alarmDate": "1769988410049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733570", + "createdBy": null, + "createdTime": "2026-02-02 07:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:07", + "echoMap": {}, + "alarmNo": "1450241808", + "alarmDate": "1769988966204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733792", + "createdBy": null, + "createdTime": "2026-02-02 07:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:34", + "echoMap": {}, + "alarmNo": "1450241809", + "alarmDate": "1769989560363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060026", + "deviceName": "[329](10)虹桥10-3换乘出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733870", + "createdBy": null, + "createdTime": "2026-02-02 07:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:38", + "echoMap": {}, + "alarmNo": "1450241810", + "alarmDate": "1769989596804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733908", + "createdBy": null, + "createdTime": "2026-02-02 07:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:54", + "echoMap": {}, + "alarmNo": "1450241811", + "alarmDate": "1769989613056", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113291100700715", + "createdBy": null, + "createdTime": "2026-02-02 07:56:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:10", + "echoMap": {}, + "alarmNo": "1450241812", + "alarmDate": "1769990169219", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395667972", + "createdBy": null, + "createdTime": "2026-02-02 07:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:22", + "echoMap": {}, + "alarmNo": "1450241813", + "alarmDate": "1769990180876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668008", + "createdBy": null, + "createdTime": "2026-02-02 07:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:52", + "echoMap": {}, + "alarmNo": "1450241814", + "alarmDate": "1769990210778", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668018", + "createdBy": null, + "createdTime": "2026-02-02 07:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:57", + "echoMap": {}, + "alarmNo": "1450241815", + "alarmDate": "1769990215824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668191", + "createdBy": null, + "createdTime": "2026-02-02 08:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:08", + "echoMap": {}, + "alarmNo": "1450241816", + "alarmDate": "1769990767048", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668201", + "createdBy": null, + "createdTime": "2026-02-02 08:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:13", + "echoMap": {}, + "alarmNo": "1450241817", + "alarmDate": "1769990771995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668522", + "createdBy": null, + "createdTime": "2026-02-02 08:17:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:18", + "echoMap": {}, + "alarmNo": "1450241818", + "alarmDate": "1769991420942", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113299690635319", + "createdBy": null, + "createdTime": "2026-02-02 08:26:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:13", + "echoMap": {}, + "alarmNo": "1450241819", + "alarmDate": "1769991967407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060026", + "deviceName": "[329](10)虹桥10-3换乘出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602588", + "createdBy": null, + "createdTime": "2026-02-02 08:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:29", + "echoMap": {}, + "alarmNo": "1450241820", + "alarmDate": "1769991987816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602818", + "createdBy": null, + "createdTime": "2026-02-02 08:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:18", + "echoMap": {}, + "alarmNo": "1450241822", + "alarmDate": "1769992576783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602821", + "createdBy": null, + "createdTime": "2026-02-02 08:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:18", + "echoMap": {}, + "alarmNo": "1450241823", + "alarmDate": "1769992576873", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602878", + "createdBy": null, + "createdTime": "2026-02-02 08:36:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:54", + "echoMap": {}, + "alarmNo": "1450241824", + "alarmDate": "1769992614803", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1009060037", + "deviceName": "[342](10)虹桥2#轿厢", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985603151", + "createdBy": null, + "createdTime": "2026-02-02 08:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:54", + "echoMap": {}, + "alarmNo": "1450241825", + "alarmDate": "1769993217824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060032", + "deviceName": "[333](10)虹桥10-3换乘通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537191", + "createdBy": null, + "createdTime": "2026-02-02 08:56:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:27", + "echoMap": {}, + "alarmNo": "1450241826", + "alarmDate": "1769993786008", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537201", + "createdBy": null, + "createdTime": "2026-02-02 08:56:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:34", + "echoMap": {}, + "alarmNo": "1450241827", + "alarmDate": "1769993792709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537415", + "createdBy": null, + "createdTime": "2026-02-02 09:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:26", + "echoMap": {}, + "alarmNo": "1450241828", + "alarmDate": "1769994380411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537424", + "createdBy": null, + "createdTime": "2026-02-02 09:06:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:25", + "echoMap": {}, + "alarmNo": "1450241829", + "alarmDate": "1769994383592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537433", + "createdBy": null, + "createdTime": "2026-02-02 09:06:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:27", + "echoMap": {}, + "alarmNo": "1450241830", + "alarmDate": "1769994385753", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471745", + "createdBy": null, + "createdTime": "2026-02-02 09:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:35", + "echoMap": {}, + "alarmNo": "1450241831", + "alarmDate": "1769995593986", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471750", + "createdBy": null, + "createdTime": "2026-02-02 09:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:37", + "echoMap": {}, + "alarmNo": "1450241832", + "alarmDate": "1769995595704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471974", + "createdBy": null, + "createdTime": "2026-02-02 09:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:31", + "echoMap": {}, + "alarmNo": "1450241833", + "alarmDate": "1769996189597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471983", + "createdBy": null, + "createdTime": "2026-02-02 09:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:35", + "echoMap": {}, + "alarmNo": "1450241834", + "alarmDate": "1769996193750", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165472424", + "createdBy": null, + "createdTime": "2026-02-02 09:56:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1450241835", + "alarmDate": "1769997360724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113325460439084", + "createdBy": null, + "createdTime": "2026-02-02 09:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:35", + "echoMap": {}, + "alarmNo": "1450241836", + "alarmDate": "1769997394461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113325460439098", + "createdBy": null, + "createdTime": "2026-02-02 09:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:44", + "echoMap": {}, + "alarmNo": "1450241837", + "alarmDate": "1769997402803", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406529", + "createdBy": null, + "createdTime": "2026-02-02 10:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:35", + "echoMap": {}, + "alarmNo": "1450241838", + "alarmDate": "1769997994251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406539", + "createdBy": null, + "createdTime": "2026-02-02 10:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:40", + "echoMap": {}, + "alarmNo": "1450241839", + "alarmDate": "1769997999403", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406748", + "createdBy": null, + "createdTime": "2026-02-02 10:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:43", + "echoMap": {}, + "alarmNo": "1450241840", + "alarmDate": "1769998597200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406916", + "createdBy": null, + "createdTime": "2026-02-02 10:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:18", + "echoMap": {}, + "alarmNo": "1450241841", + "alarmDate": "1769999164766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406975", + "createdBy": null, + "createdTime": "2026-02-02 10:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:37", + "echoMap": {}, + "alarmNo": "1450241842", + "alarmDate": "1769999196319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755407006", + "createdBy": null, + "createdTime": "2026-02-02 10:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:51", + "echoMap": {}, + "alarmNo": "1450241843", + "alarmDate": "1769999209649", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755407016", + "createdBy": null, + "createdTime": "2026-02-02 10:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:35", + "echoMap": {}, + "alarmNo": "1450241844", + "alarmDate": "1769999214965", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341011", + "createdBy": null, + "createdTime": "2026-02-02 10:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:04", + "echoMap": {}, + "alarmNo": "1450241845", + "alarmDate": "1769999762841", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341065", + "createdBy": null, + "createdTime": "2026-02-02 10:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:37", + "echoMap": {}, + "alarmNo": "1450241846", + "alarmDate": "1769999789615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341100", + "createdBy": null, + "createdTime": "2026-02-02 10:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:46", + "echoMap": {}, + "alarmNo": "1450241847", + "alarmDate": "1769999805261", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341108", + "createdBy": null, + "createdTime": "2026-02-02 10:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:20", + "echoMap": {}, + "alarmNo": "1450241848", + "alarmDate": "1769999808042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341116", + "createdBy": null, + "createdTime": "2026-02-02 10:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:51", + "echoMap": {}, + "alarmNo": "1450241849", + "alarmDate": "1769999810167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113346935275577", + "createdBy": null, + "createdTime": "2026-02-02 10:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:01", + "echoMap": {}, + "alarmNo": "1450241850", + "alarmDate": "1770000360404", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113346935275586", + "createdBy": null, + "createdTime": "2026-02-02 10:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:28", + "echoMap": {}, + "alarmNo": "1450241851", + "alarmDate": "1770000362856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113346935275604", + "createdBy": null, + "createdTime": "2026-02-02 10:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:08", + "echoMap": {}, + "alarmNo": "1450241852", + "alarmDate": "1770000367460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113351230242833", + "createdBy": null, + "createdTime": "2026-02-02 10:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:45", + "echoMap": {}, + "alarmNo": "1450241853", + "alarmDate": "1770000399304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113359820177466", + "createdBy": null, + "createdTime": "2026-02-02 10:56:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:13", + "echoMap": {}, + "alarmNo": "1450241854", + "alarmDate": "1770000961556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113364115144746", + "createdBy": null, + "createdTime": "2026-02-02 10:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:33", + "echoMap": {}, + "alarmNo": "1450241855", + "alarmDate": "1770000992182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113368410112016", + "createdBy": null, + "createdTime": "2026-02-02 10:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:56", + "echoMap": {}, + "alarmNo": "1450241856", + "alarmDate": "1770001014560", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113377000046609", + "createdBy": null, + "createdTime": "2026-02-02 11:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:12", + "echoMap": {}, + "alarmNo": "1450241857", + "alarmDate": "1770001570755", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113381295013903", + "createdBy": null, + "createdTime": "2026-02-02 11:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:53", + "echoMap": {}, + "alarmNo": "1450241858", + "alarmDate": "1770001612102", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113389884948512", + "createdBy": null, + "createdTime": "2026-02-02 11:16:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:08", + "echoMap": {}, + "alarmNo": "1450241859", + "alarmDate": "1770002167282", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113389884948545", + "createdBy": null, + "createdTime": "2026-02-02 11:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:22", + "echoMap": {}, + "alarmNo": "1450241860", + "alarmDate": "1770002181381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113407064817699", + "createdBy": null, + "createdTime": "2026-02-02 11:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:54", + "echoMap": {}, + "alarmNo": "1450241861", + "alarmDate": "1770002791351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113407064817710", + "createdBy": null, + "createdTime": "2026-02-02 11:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:37", + "echoMap": {}, + "alarmNo": "1450241862", + "alarmDate": "1770002796061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113411359784967", + "createdBy": null, + "createdTime": "2026-02-02 11:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:18", + "echoMap": {}, + "alarmNo": "1450241863", + "alarmDate": "1770002820462", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113424244686914", + "createdBy": null, + "createdTime": "2026-02-02 11:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:57", + "echoMap": {}, + "alarmNo": "1450241864", + "alarmDate": "1770003415957", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113432834621495", + "createdBy": null, + "createdTime": "2026-02-02 11:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:34", + "echoMap": {}, + "alarmNo": "1450241865", + "alarmDate": "1770003960740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113432834621520", + "createdBy": null, + "createdTime": "2026-02-02 11:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:12", + "echoMap": {}, + "alarmNo": "1450241866", + "alarmDate": "1770003971085", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113437129588782", + "createdBy": null, + "createdTime": "2026-02-02 11:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:37", + "echoMap": {}, + "alarmNo": "1450241867", + "alarmDate": "1770003996238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113441424556077", + "createdBy": null, + "createdTime": "2026-02-02 11:47:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:54", + "echoMap": {}, + "alarmNo": "1450241868", + "alarmDate": "1770004074830", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1009060032", + "deviceName": "[333](10)虹桥10-3换乘通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113445719523346", + "createdBy": null, + "createdTime": "2026-02-02 11:56:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:10", + "echoMap": {}, + "alarmNo": "1450241869", + "alarmDate": "1770004561003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113445719523392", + "createdBy": null, + "createdTime": "2026-02-02 11:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:48", + "echoMap": {}, + "alarmNo": "1450241870", + "alarmDate": "1770004582087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113450014490630", + "createdBy": null, + "createdTime": "2026-02-02 11:56:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:32", + "echoMap": {}, + "alarmNo": "1450241871", + "alarmDate": "1770004590987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113450014490691", + "createdBy": null, + "createdTime": "2026-02-02 11:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:52", + "echoMap": {}, + "alarmNo": "1450241872", + "alarmDate": "1770004611079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425223", + "createdBy": null, + "createdTime": "2026-02-02 12:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:22", + "echoMap": {}, + "alarmNo": "1450241873", + "alarmDate": "1770005181480", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425283", + "createdBy": null, + "createdTime": "2026-02-02 12:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:13", + "echoMap": {}, + "alarmNo": "1450241874", + "alarmDate": "1770005215428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425289", + "createdBy": null, + "createdTime": "2026-02-02 12:06:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:58", + "echoMap": {}, + "alarmNo": "1450241875", + "alarmDate": "1770005216729", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425463", + "createdBy": null, + "createdTime": "2026-02-02 12:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:14", + "echoMap": {}, + "alarmNo": "1450241876", + "alarmDate": "1770005772859", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113462899392560", + "createdBy": null, + "createdTime": "2026-02-02 12:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:35", + "echoMap": {}, + "alarmNo": "1450241877", + "alarmDate": "1770005793690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113467194359827", + "createdBy": null, + "createdTime": "2026-02-02 12:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:51", + "echoMap": {}, + "alarmNo": "1450241878", + "alarmDate": "1770005810149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113471489327164", + "createdBy": null, + "createdTime": "2026-02-02 12:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:11", + "echoMap": {}, + "alarmNo": "1450241879", + "alarmDate": "1770006370399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113475784294437", + "createdBy": null, + "createdTime": "2026-02-02 12:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:30", + "echoMap": {}, + "alarmNo": "1450241880", + "alarmDate": "1770006388880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113484374229117", + "createdBy": null, + "createdTime": "2026-02-02 12:36:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:33", + "echoMap": {}, + "alarmNo": "1450241881", + "alarmDate": "1770006992459", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113488669196310", + "createdBy": null, + "createdTime": "2026-02-02 12:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:14", + "echoMap": {}, + "alarmNo": "1450241882", + "alarmDate": "1770007018551", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113497259130892", + "createdBy": null, + "createdTime": "2026-02-02 12:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:43", + "echoMap": {}, + "alarmNo": "1450241883", + "alarmDate": "1770007583490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113497259130952", + "createdBy": null, + "createdTime": "2026-02-02 12:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:11", + "echoMap": {}, + "alarmNo": "1450241884", + "alarmDate": "1770007616535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113505849065477", + "createdBy": null, + "createdTime": "2026-02-02 12:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:47", + "echoMap": {}, + "alarmNo": "1450241885", + "alarmDate": "1770008174435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060030", + "deviceName": "[339](10)虹桥10-3换乘扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113505849065505", + "createdBy": null, + "createdTime": "2026-02-02 12:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:26", + "echoMap": {}, + "alarmNo": "1450241886", + "alarmDate": "1770008185315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113505849065519", + "createdBy": null, + "createdTime": "2026-02-02 12:56:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:31", + "echoMap": {}, + "alarmNo": "1450241887", + "alarmDate": "1770008189729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113514439000111", + "createdBy": null, + "createdTime": "2026-02-02 13:06:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:39", + "echoMap": {}, + "alarmNo": "1450241888", + "alarmDate": "1770008798374", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113523028934666", + "createdBy": null, + "createdTime": "2026-02-02 13:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:22", + "echoMap": {}, + "alarmNo": "1450241889", + "alarmDate": "1770009380551", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113523028934704", + "createdBy": null, + "createdTime": "2026-02-02 13:16:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:50", + "echoMap": {}, + "alarmNo": "1450241890", + "alarmDate": "1770009409459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113527323902120", + "createdBy": null, + "createdTime": "2026-02-02 13:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:34", + "echoMap": {}, + "alarmNo": "1450241891", + "alarmDate": "1770009992604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113540208803848", + "createdBy": null, + "createdTime": "2026-02-02 13:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:54", + "echoMap": {}, + "alarmNo": "1450241893", + "alarmDate": "1770010582749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113540208803900", + "createdBy": null, + "createdTime": "2026-02-02 13:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:47", + "echoMap": {}, + "alarmNo": "1450241894", + "alarmDate": "1770010606253", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113540208803913", + "createdBy": null, + "createdTime": "2026-02-02 13:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:56", + "echoMap": {}, + "alarmNo": "1450241895", + "alarmDate": "1770010609523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113548798738462", + "createdBy": null, + "createdTime": "2026-02-02 13:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:24", + "echoMap": {}, + "alarmNo": "1450241896", + "alarmDate": "1770011183359", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113548798738471", + "createdBy": null, + "createdTime": "2026-02-02 13:46:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:29", + "echoMap": {}, + "alarmNo": "1450241897", + "alarmDate": "1770011187839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113548798738489", + "createdBy": null, + "createdTime": "2026-02-02 13:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:45", + "echoMap": {}, + "alarmNo": "1450241898", + "alarmDate": "1770011199010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113557388673094", + "createdBy": null, + "createdTime": "2026-02-02 13:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:32", + "echoMap": {}, + "alarmNo": "1450241899", + "alarmDate": "1770011791499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113570273574997", + "createdBy": null, + "createdTime": "2026-02-02 14:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:53", + "echoMap": {}, + "alarmNo": "1450241900", + "alarmDate": "1770012412101", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509567", + "createdBy": null, + "createdTime": "2026-02-02 14:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:02", + "echoMap": {}, + "alarmNo": "1450241901", + "alarmDate": "1770012961680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509584", + "createdBy": null, + "createdTime": "2026-02-02 14:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:09", + "echoMap": {}, + "alarmNo": "1450241902", + "alarmDate": "1770012968284", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509623", + "createdBy": null, + "createdTime": "2026-02-02 14:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:26", + "echoMap": {}, + "alarmNo": "1450241903", + "alarmDate": "1770012985201", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509670", + "createdBy": null, + "createdTime": "2026-02-02 14:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:47", + "echoMap": {}, + "alarmNo": "1450241904", + "alarmDate": "1770013005805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113587453444195", + "createdBy": null, + "createdTime": "2026-02-02 14:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:06", + "echoMap": {}, + "alarmNo": "1450241905", + "alarmDate": "1770013564937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113587453444211", + "createdBy": null, + "createdTime": "2026-02-02 14:26:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:40", + "echoMap": {}, + "alarmNo": "1450241906", + "alarmDate": "1770013573978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113591748411419", + "createdBy": null, + "createdTime": "2026-02-02 14:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:34", + "echoMap": {}, + "alarmNo": "1450241907", + "alarmDate": "1770013593271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113591748411452", + "createdBy": null, + "createdTime": "2026-02-02 14:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:11", + "echoMap": {}, + "alarmNo": "1450241908", + "alarmDate": "1770013613078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113600338346019", + "createdBy": null, + "createdTime": "2026-02-02 14:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:24", + "echoMap": {}, + "alarmNo": "1450241909", + "alarmDate": "1770014184268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113604633313307", + "createdBy": null, + "createdTime": "2026-02-02 14:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:01", + "echoMap": {}, + "alarmNo": "1450241910", + "alarmDate": "1770014219982", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723112999042924573", + "createdBy": null, + "createdTime": "2026-02-02 01:04:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:54", + "echoMap": {}, + "alarmNo": "1450241722", + "alarmDate": "1769965495311", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1009030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1009" + }, + { + "id": "723113303985602764", + "createdBy": null, + "createdTime": "2026-02-02 08:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:54", + "echoMap": {}, + "alarmNo": "1450241821", + "alarmDate": "1769992494912", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1009030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1009" + }, + { + "id": "723113531618869325", + "createdBy": null, + "createdTime": "2026-02-02 13:29:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:54", + "echoMap": {}, + "alarmNo": "1450241892", + "alarmDate": "1770010194945", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1009030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1009" + } + ], + "ndmSwitch": [ + { + "id": "723113192316452868", + "createdBy": null, + "createdTime": "2026-02-02 03:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:52", + "echoMap": {}, + "alarmNo": "1450241751", + "alarmDate": "1769973673732", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1009040007", + "deviceName": "H3C前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1009" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113604633313307", + "createdBy": null, + "createdTime": "2026-02-02 14:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:01", + "echoMap": {}, + "alarmNo": "1450241910", + "alarmDate": "1770014219982", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113600338346019", + "createdBy": null, + "createdTime": "2026-02-02 14:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:24", + "echoMap": {}, + "alarmNo": "1450241909", + "alarmDate": "1770014184268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113591748411452", + "createdBy": null, + "createdTime": "2026-02-02 14:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:11", + "echoMap": {}, + "alarmNo": "1450241908", + "alarmDate": "1770013613078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113591748411419", + "createdBy": null, + "createdTime": "2026-02-02 14:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:34", + "echoMap": {}, + "alarmNo": "1450241907", + "alarmDate": "1770013593271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113587453444211", + "createdBy": null, + "createdTime": "2026-02-02 14:26:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:40", + "echoMap": {}, + "alarmNo": "1450241906", + "alarmDate": "1770013573978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113587453444195", + "createdBy": null, + "createdTime": "2026-02-02 14:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:06", + "echoMap": {}, + "alarmNo": "1450241905", + "alarmDate": "1770013564937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509670", + "createdBy": null, + "createdTime": "2026-02-02 14:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:47", + "echoMap": {}, + "alarmNo": "1450241904", + "alarmDate": "1770013005805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509623", + "createdBy": null, + "createdTime": "2026-02-02 14:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:26", + "echoMap": {}, + "alarmNo": "1450241903", + "alarmDate": "1770012985201", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509584", + "createdBy": null, + "createdTime": "2026-02-02 14:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:09", + "echoMap": {}, + "alarmNo": "1450241902", + "alarmDate": "1770012968284", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113578863509567", + "createdBy": null, + "createdTime": "2026-02-02 14:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:02", + "echoMap": {}, + "alarmNo": "1450241901", + "alarmDate": "1770012961680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113570273574997", + "createdBy": null, + "createdTime": "2026-02-02 14:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:53", + "echoMap": {}, + "alarmNo": "1450241900", + "alarmDate": "1770012412101", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113557388673094", + "createdBy": null, + "createdTime": "2026-02-02 13:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:32", + "echoMap": {}, + "alarmNo": "1450241899", + "alarmDate": "1770011791499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113548798738489", + "createdBy": null, + "createdTime": "2026-02-02 13:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:45", + "echoMap": {}, + "alarmNo": "1450241898", + "alarmDate": "1770011199010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113548798738471", + "createdBy": null, + "createdTime": "2026-02-02 13:46:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:29", + "echoMap": {}, + "alarmNo": "1450241897", + "alarmDate": "1770011187839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113548798738462", + "createdBy": null, + "createdTime": "2026-02-02 13:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:24", + "echoMap": {}, + "alarmNo": "1450241896", + "alarmDate": "1770011183359", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113540208803913", + "createdBy": null, + "createdTime": "2026-02-02 13:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:56", + "echoMap": {}, + "alarmNo": "1450241895", + "alarmDate": "1770010609523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113540208803900", + "createdBy": null, + "createdTime": "2026-02-02 13:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:47", + "echoMap": {}, + "alarmNo": "1450241894", + "alarmDate": "1770010606253", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113540208803848", + "createdBy": null, + "createdTime": "2026-02-02 13:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:54", + "echoMap": {}, + "alarmNo": "1450241893", + "alarmDate": "1770010582749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113531618869325", + "createdBy": null, + "createdTime": "2026-02-02 13:29:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:54", + "echoMap": {}, + "alarmNo": "1450241892", + "alarmDate": "1770010194945", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1009030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1009" + }, + { + "id": "723113527323902120", + "createdBy": null, + "createdTime": "2026-02-02 13:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:34", + "echoMap": {}, + "alarmNo": "1450241891", + "alarmDate": "1770009992604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113523028934704", + "createdBy": null, + "createdTime": "2026-02-02 13:16:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:50", + "echoMap": {}, + "alarmNo": "1450241890", + "alarmDate": "1770009409459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113523028934666", + "createdBy": null, + "createdTime": "2026-02-02 13:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:22", + "echoMap": {}, + "alarmNo": "1450241889", + "alarmDate": "1770009380551", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113514439000111", + "createdBy": null, + "createdTime": "2026-02-02 13:06:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:39", + "echoMap": {}, + "alarmNo": "1450241888", + "alarmDate": "1770008798374", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113505849065519", + "createdBy": null, + "createdTime": "2026-02-02 12:56:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:31", + "echoMap": {}, + "alarmNo": "1450241887", + "alarmDate": "1770008189729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113505849065505", + "createdBy": null, + "createdTime": "2026-02-02 12:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:26", + "echoMap": {}, + "alarmNo": "1450241886", + "alarmDate": "1770008185315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113505849065477", + "createdBy": null, + "createdTime": "2026-02-02 12:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:47", + "echoMap": {}, + "alarmNo": "1450241885", + "alarmDate": "1770008174435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060030", + "deviceName": "[339](10)虹桥10-3换乘扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113497259130952", + "createdBy": null, + "createdTime": "2026-02-02 12:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:11", + "echoMap": {}, + "alarmNo": "1450241884", + "alarmDate": "1770007616535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113497259130892", + "createdBy": null, + "createdTime": "2026-02-02 12:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:43", + "echoMap": {}, + "alarmNo": "1450241883", + "alarmDate": "1770007583490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113488669196310", + "createdBy": null, + "createdTime": "2026-02-02 12:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:14", + "echoMap": {}, + "alarmNo": "1450241882", + "alarmDate": "1770007018551", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113484374229117", + "createdBy": null, + "createdTime": "2026-02-02 12:36:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:33", + "echoMap": {}, + "alarmNo": "1450241881", + "alarmDate": "1770006992459", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113475784294437", + "createdBy": null, + "createdTime": "2026-02-02 12:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:30", + "echoMap": {}, + "alarmNo": "1450241880", + "alarmDate": "1770006388880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113471489327164", + "createdBy": null, + "createdTime": "2026-02-02 12:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:11", + "echoMap": {}, + "alarmNo": "1450241879", + "alarmDate": "1770006370399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113467194359827", + "createdBy": null, + "createdTime": "2026-02-02 12:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:51", + "echoMap": {}, + "alarmNo": "1450241878", + "alarmDate": "1770005810149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113462899392560", + "createdBy": null, + "createdTime": "2026-02-02 12:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:35", + "echoMap": {}, + "alarmNo": "1450241877", + "alarmDate": "1770005793690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425463", + "createdBy": null, + "createdTime": "2026-02-02 12:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:14", + "echoMap": {}, + "alarmNo": "1450241876", + "alarmDate": "1770005772859", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425289", + "createdBy": null, + "createdTime": "2026-02-02 12:06:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:58", + "echoMap": {}, + "alarmNo": "1450241875", + "alarmDate": "1770005216729", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425283", + "createdBy": null, + "createdTime": "2026-02-02 12:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:13", + "echoMap": {}, + "alarmNo": "1450241874", + "alarmDate": "1770005215428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113458604425223", + "createdBy": null, + "createdTime": "2026-02-02 12:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:22", + "echoMap": {}, + "alarmNo": "1450241873", + "alarmDate": "1770005181480", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113450014490691", + "createdBy": null, + "createdTime": "2026-02-02 11:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:52", + "echoMap": {}, + "alarmNo": "1450241872", + "alarmDate": "1770004611079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113450014490630", + "createdBy": null, + "createdTime": "2026-02-02 11:56:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:32", + "echoMap": {}, + "alarmNo": "1450241871", + "alarmDate": "1770004590987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113445719523392", + "createdBy": null, + "createdTime": "2026-02-02 11:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:48", + "echoMap": {}, + "alarmNo": "1450241870", + "alarmDate": "1770004582087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113445719523346", + "createdBy": null, + "createdTime": "2026-02-02 11:56:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:10", + "echoMap": {}, + "alarmNo": "1450241869", + "alarmDate": "1770004561003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113441424556077", + "createdBy": null, + "createdTime": "2026-02-02 11:47:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:54", + "echoMap": {}, + "alarmNo": "1450241868", + "alarmDate": "1770004074830", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1009060032", + "deviceName": "[333](10)虹桥10-3换乘通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113437129588782", + "createdBy": null, + "createdTime": "2026-02-02 11:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:37", + "echoMap": {}, + "alarmNo": "1450241867", + "alarmDate": "1770003996238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113432834621520", + "createdBy": null, + "createdTime": "2026-02-02 11:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:12", + "echoMap": {}, + "alarmNo": "1450241866", + "alarmDate": "1770003971085", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113432834621495", + "createdBy": null, + "createdTime": "2026-02-02 11:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:34", + "echoMap": {}, + "alarmNo": "1450241865", + "alarmDate": "1770003960740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113424244686914", + "createdBy": null, + "createdTime": "2026-02-02 11:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:57", + "echoMap": {}, + "alarmNo": "1450241864", + "alarmDate": "1770003415957", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113411359784967", + "createdBy": null, + "createdTime": "2026-02-02 11:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:18", + "echoMap": {}, + "alarmNo": "1450241863", + "alarmDate": "1770002820462", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113407064817710", + "createdBy": null, + "createdTime": "2026-02-02 11:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:37", + "echoMap": {}, + "alarmNo": "1450241862", + "alarmDate": "1770002796061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113407064817699", + "createdBy": null, + "createdTime": "2026-02-02 11:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:54", + "echoMap": {}, + "alarmNo": "1450241861", + "alarmDate": "1770002791351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113389884948545", + "createdBy": null, + "createdTime": "2026-02-02 11:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:22", + "echoMap": {}, + "alarmNo": "1450241860", + "alarmDate": "1770002181381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113389884948512", + "createdBy": null, + "createdTime": "2026-02-02 11:16:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:08", + "echoMap": {}, + "alarmNo": "1450241859", + "alarmDate": "1770002167282", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113381295013903", + "createdBy": null, + "createdTime": "2026-02-02 11:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:53", + "echoMap": {}, + "alarmNo": "1450241858", + "alarmDate": "1770001612102", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113377000046609", + "createdBy": null, + "createdTime": "2026-02-02 11:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:12", + "echoMap": {}, + "alarmNo": "1450241857", + "alarmDate": "1770001570755", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113368410112016", + "createdBy": null, + "createdTime": "2026-02-02 10:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:56", + "echoMap": {}, + "alarmNo": "1450241856", + "alarmDate": "1770001014560", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113364115144746", + "createdBy": null, + "createdTime": "2026-02-02 10:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:33", + "echoMap": {}, + "alarmNo": "1450241855", + "alarmDate": "1770000992182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113359820177466", + "createdBy": null, + "createdTime": "2026-02-02 10:56:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:13", + "echoMap": {}, + "alarmNo": "1450241854", + "alarmDate": "1770000961556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113351230242833", + "createdBy": null, + "createdTime": "2026-02-02 10:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:45", + "echoMap": {}, + "alarmNo": "1450241853", + "alarmDate": "1770000399304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113346935275604", + "createdBy": null, + "createdTime": "2026-02-02 10:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:08", + "echoMap": {}, + "alarmNo": "1450241852", + "alarmDate": "1770000367460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113346935275586", + "createdBy": null, + "createdTime": "2026-02-02 10:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:28", + "echoMap": {}, + "alarmNo": "1450241851", + "alarmDate": "1770000362856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113346935275577", + "createdBy": null, + "createdTime": "2026-02-02 10:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:01", + "echoMap": {}, + "alarmNo": "1450241850", + "alarmDate": "1770000360404", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341116", + "createdBy": null, + "createdTime": "2026-02-02 10:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:51", + "echoMap": {}, + "alarmNo": "1450241849", + "alarmDate": "1769999810167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341108", + "createdBy": null, + "createdTime": "2026-02-02 10:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:20", + "echoMap": {}, + "alarmNo": "1450241848", + "alarmDate": "1769999808042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341100", + "createdBy": null, + "createdTime": "2026-02-02 10:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:46", + "echoMap": {}, + "alarmNo": "1450241847", + "alarmDate": "1769999805261", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341065", + "createdBy": null, + "createdTime": "2026-02-02 10:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:37", + "echoMap": {}, + "alarmNo": "1450241846", + "alarmDate": "1769999789615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113338345341011", + "createdBy": null, + "createdTime": "2026-02-02 10:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:04", + "echoMap": {}, + "alarmNo": "1450241845", + "alarmDate": "1769999762841", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755407016", + "createdBy": null, + "createdTime": "2026-02-02 10:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:35", + "echoMap": {}, + "alarmNo": "1450241844", + "alarmDate": "1769999214965", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755407006", + "createdBy": null, + "createdTime": "2026-02-02 10:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:51", + "echoMap": {}, + "alarmNo": "1450241843", + "alarmDate": "1769999209649", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406975", + "createdBy": null, + "createdTime": "2026-02-02 10:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:37", + "echoMap": {}, + "alarmNo": "1450241842", + "alarmDate": "1769999196319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406916", + "createdBy": null, + "createdTime": "2026-02-02 10:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:18", + "echoMap": {}, + "alarmNo": "1450241841", + "alarmDate": "1769999164766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060042", + "deviceName": "[309](10)虹桥6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406748", + "createdBy": null, + "createdTime": "2026-02-02 10:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:43", + "echoMap": {}, + "alarmNo": "1450241840", + "alarmDate": "1769998597200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406539", + "createdBy": null, + "createdTime": "2026-02-02 10:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:40", + "echoMap": {}, + "alarmNo": "1450241839", + "alarmDate": "1769997999403", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113329755406529", + "createdBy": null, + "createdTime": "2026-02-02 10:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:35", + "echoMap": {}, + "alarmNo": "1450241838", + "alarmDate": "1769997994251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113325460439098", + "createdBy": null, + "createdTime": "2026-02-02 09:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:44", + "echoMap": {}, + "alarmNo": "1450241837", + "alarmDate": "1769997402803", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113325460439084", + "createdBy": null, + "createdTime": "2026-02-02 09:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:35", + "echoMap": {}, + "alarmNo": "1450241836", + "alarmDate": "1769997394461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165472424", + "createdBy": null, + "createdTime": "2026-02-02 09:56:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1450241835", + "alarmDate": "1769997360724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471983", + "createdBy": null, + "createdTime": "2026-02-02 09:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:35", + "echoMap": {}, + "alarmNo": "1450241834", + "alarmDate": "1769996193750", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471974", + "createdBy": null, + "createdTime": "2026-02-02 09:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:31", + "echoMap": {}, + "alarmNo": "1450241833", + "alarmDate": "1769996189597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471750", + "createdBy": null, + "createdTime": "2026-02-02 09:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:37", + "echoMap": {}, + "alarmNo": "1450241832", + "alarmDate": "1769995595704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113321165471745", + "createdBy": null, + "createdTime": "2026-02-02 09:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:35", + "echoMap": {}, + "alarmNo": "1450241831", + "alarmDate": "1769995593986", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537433", + "createdBy": null, + "createdTime": "2026-02-02 09:06:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:27", + "echoMap": {}, + "alarmNo": "1450241830", + "alarmDate": "1769994385753", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537424", + "createdBy": null, + "createdTime": "2026-02-02 09:06:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:25", + "echoMap": {}, + "alarmNo": "1450241829", + "alarmDate": "1769994383592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537415", + "createdBy": null, + "createdTime": "2026-02-02 09:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:26", + "echoMap": {}, + "alarmNo": "1450241828", + "alarmDate": "1769994380411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537201", + "createdBy": null, + "createdTime": "2026-02-02 08:56:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:34", + "echoMap": {}, + "alarmNo": "1450241827", + "alarmDate": "1769993792709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113312575537191", + "createdBy": null, + "createdTime": "2026-02-02 08:56:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:27", + "echoMap": {}, + "alarmNo": "1450241826", + "alarmDate": "1769993786008", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985603151", + "createdBy": null, + "createdTime": "2026-02-02 08:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:54", + "echoMap": {}, + "alarmNo": "1450241825", + "alarmDate": "1769993217824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060032", + "deviceName": "[333](10)虹桥10-3换乘通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602878", + "createdBy": null, + "createdTime": "2026-02-02 08:36:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:54", + "echoMap": {}, + "alarmNo": "1450241824", + "alarmDate": "1769992614803", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1009060037", + "deviceName": "[342](10)虹桥2#轿厢", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602821", + "createdBy": null, + "createdTime": "2026-02-02 08:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:18", + "echoMap": {}, + "alarmNo": "1450241823", + "alarmDate": "1769992576873", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602818", + "createdBy": null, + "createdTime": "2026-02-02 08:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:18", + "echoMap": {}, + "alarmNo": "1450241822", + "alarmDate": "1769992576783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113303985602764", + "createdBy": null, + "createdTime": "2026-02-02 08:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:54", + "echoMap": {}, + "alarmNo": "1450241821", + "alarmDate": "1769992494912", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1009030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1009" + }, + { + "id": "723113303985602588", + "createdBy": null, + "createdTime": "2026-02-02 08:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:29", + "echoMap": {}, + "alarmNo": "1450241820", + "alarmDate": "1769991987816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113299690635319", + "createdBy": null, + "createdTime": "2026-02-02 08:26:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:13", + "echoMap": {}, + "alarmNo": "1450241819", + "alarmDate": "1769991967407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060026", + "deviceName": "[329](10)虹桥10-3换乘出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668522", + "createdBy": null, + "createdTime": "2026-02-02 08:17:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:18", + "echoMap": {}, + "alarmNo": "1450241818", + "alarmDate": "1769991420942", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668201", + "createdBy": null, + "createdTime": "2026-02-02 08:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:13", + "echoMap": {}, + "alarmNo": "1450241817", + "alarmDate": "1769990771995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668191", + "createdBy": null, + "createdTime": "2026-02-02 08:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:08", + "echoMap": {}, + "alarmNo": "1450241816", + "alarmDate": "1769990767048", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668018", + "createdBy": null, + "createdTime": "2026-02-02 07:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:57", + "echoMap": {}, + "alarmNo": "1450241815", + "alarmDate": "1769990215824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395668008", + "createdBy": null, + "createdTime": "2026-02-02 07:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:52", + "echoMap": {}, + "alarmNo": "1450241814", + "alarmDate": "1769990210778", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113295395667972", + "createdBy": null, + "createdTime": "2026-02-02 07:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:22", + "echoMap": {}, + "alarmNo": "1450241813", + "alarmDate": "1769990180876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113291100700715", + "createdBy": null, + "createdTime": "2026-02-02 07:56:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:10", + "echoMap": {}, + "alarmNo": "1450241812", + "alarmDate": "1769990169219", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733908", + "createdBy": null, + "createdTime": "2026-02-02 07:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:54", + "echoMap": {}, + "alarmNo": "1450241811", + "alarmDate": "1769989613056", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733870", + "createdBy": null, + "createdTime": "2026-02-02 07:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:38", + "echoMap": {}, + "alarmNo": "1450241810", + "alarmDate": "1769989596804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733792", + "createdBy": null, + "createdTime": "2026-02-02 07:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:34", + "echoMap": {}, + "alarmNo": "1450241809", + "alarmDate": "1769989560363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060026", + "deviceName": "[329](10)虹桥10-3换乘出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733570", + "createdBy": null, + "createdTime": "2026-02-02 07:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:07", + "echoMap": {}, + "alarmNo": "1450241808", + "alarmDate": "1769988966204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733386", + "createdBy": null, + "createdTime": "2026-02-02 07:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:51", + "echoMap": {}, + "alarmNo": "1450241807", + "alarmDate": "1769988410049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113286805733376", + "createdBy": null, + "createdTime": "2026-02-02 07:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:45", + "echoMap": {}, + "alarmNo": "1450241806", + "alarmDate": "1769988404036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113282510766108", + "createdBy": null, + "createdTime": "2026-02-02 07:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:23", + "echoMap": {}, + "alarmNo": "1450241805", + "alarmDate": "1769988382057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215799262", + "createdBy": null, + "createdTime": "2026-02-02 07:16:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:45", + "echoMap": {}, + "alarmNo": "1450241804", + "alarmDate": "1769987804072", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215798818", + "createdBy": null, + "createdTime": "2026-02-02 06:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:46", + "echoMap": {}, + "alarmNo": "1450241803", + "alarmDate": "1769986605183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215798804", + "createdBy": null, + "createdTime": "2026-02-02 06:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:38", + "echoMap": {}, + "alarmNo": "1450241802", + "alarmDate": "1769986597146", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113278215798795", + "createdBy": null, + "createdTime": "2026-02-02 06:56:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:34", + "echoMap": {}, + "alarmNo": "1450241801", + "alarmDate": "1769986593153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864766", + "createdBy": null, + "createdTime": "2026-02-02 06:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:47", + "echoMap": {}, + "alarmNo": "1450241800", + "alarmDate": "1769986006938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060034", + "deviceName": "[332](10)虹桥10-3换乘通道1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864757", + "createdBy": null, + "createdTime": "2026-02-02 06:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:45", + "echoMap": {}, + "alarmNo": "1450241799", + "alarmDate": "1769986004208", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864637", + "createdBy": null, + "createdTime": "2026-02-02 06:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:32", + "echoMap": {}, + "alarmNo": "1450241798", + "alarmDate": "1769985961026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060032", + "deviceName": "[333](10)虹桥10-3换乘通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864242", + "createdBy": null, + "createdTime": "2026-02-02 06:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:47", + "echoMap": {}, + "alarmNo": "1450241797", + "alarmDate": "1769984806378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864231", + "createdBy": null, + "createdTime": "2026-02-02 06:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:42", + "echoMap": {}, + "alarmNo": "1450241796", + "alarmDate": "1769984801423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113269625864225", + "createdBy": null, + "createdTime": "2026-02-02 06:26:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:40", + "echoMap": {}, + "alarmNo": "1450241795", + "alarmDate": "1769984799368", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113265330896952", + "createdBy": null, + "createdTime": "2026-02-02 06:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:22", + "echoMap": {}, + "alarmNo": "1450241794", + "alarmDate": "1769984776449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060024", + "deviceName": "[337](10)虹桥10-3换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113265330896937", + "createdBy": null, + "createdTime": "2026-02-02 06:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:16", + "echoMap": {}, + "alarmNo": "1450241793", + "alarmDate": "1769984770491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060087", + "deviceName": "[103](10)虹桥上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035930170", + "createdBy": null, + "createdTime": "2026-02-02 06:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:47", + "echoMap": {}, + "alarmNo": "1450241792", + "alarmDate": "1769984205411", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035930160", + "createdBy": null, + "createdTime": "2026-02-02 06:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:23", + "echoMap": {}, + "alarmNo": "1450241791", + "alarmDate": "1769984182098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035930000", + "createdBy": null, + "createdTime": "2026-02-02 06:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:12", + "echoMap": {}, + "alarmNo": "1450241790", + "alarmDate": "1769983570678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929995", + "createdBy": null, + "createdTime": "2026-02-02 06:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:08", + "echoMap": {}, + "alarmNo": "1450241789", + "alarmDate": "1769983566699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929859", + "createdBy": null, + "createdTime": "2026-02-02 05:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:58", + "echoMap": {}, + "alarmNo": "1450241788", + "alarmDate": "1769983016521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929854", + "createdBy": null, + "createdTime": "2026-02-02 05:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:49", + "echoMap": {}, + "alarmNo": "1450241787", + "alarmDate": "1769983007771", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929697", + "createdBy": null, + "createdTime": "2026-02-02 05:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:52", + "echoMap": {}, + "alarmNo": "1450241786", + "alarmDate": "1769982410510", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113261035929686", + "createdBy": null, + "createdTime": "2026-02-02 05:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:35", + "echoMap": {}, + "alarmNo": "1450241785", + "alarmDate": "1769982394198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060052", + "deviceName": "[203](10)虹桥厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995670", + "createdBy": null, + "createdTime": "2026-02-02 05:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:30", + "echoMap": {}, + "alarmNo": "1450241784", + "alarmDate": "1769981789001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995666", + "createdBy": null, + "createdTime": "2026-02-02 05:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:24", + "echoMap": {}, + "alarmNo": "1450241783", + "alarmDate": "1769981782867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995658", + "createdBy": null, + "createdTime": "2026-02-02 05:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:12", + "echoMap": {}, + "alarmNo": "1450241782", + "alarmDate": "1769981770872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060017", + "deviceName": "[202](10)虹桥厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995655", + "createdBy": null, + "createdTime": "2026-02-02 05:36:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:11", + "echoMap": {}, + "alarmNo": "1450241781", + "alarmDate": "1769981770041", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995504", + "createdBy": null, + "createdTime": "2026-02-02 05:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:13", + "echoMap": {}, + "alarmNo": "1450241780", + "alarmDate": "1769981171816", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995196", + "createdBy": null, + "createdTime": "2026-02-02 05:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:48", + "echoMap": {}, + "alarmNo": "1450241779", + "alarmDate": "1769980007101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995190", + "createdBy": null, + "createdTime": "2026-02-02 05:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:43", + "echoMap": {}, + "alarmNo": "1450241778", + "alarmDate": "1769980002069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995186", + "createdBy": null, + "createdTime": "2026-02-02 05:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:29", + "echoMap": {}, + "alarmNo": "1450241777", + "alarmDate": "1769979988108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060017", + "deviceName": "[202](10)虹桥厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995182", + "createdBy": null, + "createdTime": "2026-02-02 05:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:24", + "echoMap": {}, + "alarmNo": "1450241776", + "alarmDate": "1769979983157", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113252445995039", + "createdBy": null, + "createdTime": "2026-02-02 04:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:29", + "echoMap": {}, + "alarmNo": "1450241775", + "alarmDate": "1769979387941", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856061034", + "createdBy": null, + "createdTime": "2026-02-02 04:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:16", + "echoMap": {}, + "alarmNo": "1450241774", + "alarmDate": "1769978774610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856061030", + "createdBy": null, + "createdTime": "2026-02-02 04:46:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:10", + "echoMap": {}, + "alarmNo": "1450241773", + "alarmDate": "1769978769362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060867", + "createdBy": null, + "createdTime": "2026-02-02 04:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:48", + "echoMap": {}, + "alarmNo": "1450241772", + "alarmDate": "1769978207156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060017", + "deviceName": "[202](10)虹桥厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060849", + "createdBy": null, + "createdTime": "2026-02-02 04:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:35", + "echoMap": {}, + "alarmNo": "1450241771", + "alarmDate": "1769978194451", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060834", + "createdBy": null, + "createdTime": "2026-02-02 04:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:26", + "echoMap": {}, + "alarmNo": "1450241770", + "alarmDate": "1769978185309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060044", + "deviceName": "[209](10)虹桥6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060644", + "createdBy": null, + "createdTime": "2026-02-02 04:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:48", + "echoMap": {}, + "alarmNo": "1450241769", + "alarmDate": "1769977607143", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060542", + "createdBy": null, + "createdTime": "2026-02-02 04:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:08", + "echoMap": {}, + "alarmNo": "1450241768", + "alarmDate": "1769977567629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060033", + "deviceName": "[328](10)虹桥10-3换乘入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060528", + "createdBy": null, + "createdTime": "2026-02-02 04:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:27", + "echoMap": {}, + "alarmNo": "1450241767", + "alarmDate": "1769977564612", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060029", + "deviceName": "[331](10)虹桥10-3换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113243856060511", + "createdBy": null, + "createdTime": "2026-02-02 04:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:26", + "echoMap": {}, + "alarmNo": "1450241766", + "alarmDate": "1769977562624", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060026", + "deviceName": "[329](10)虹桥10-3换乘出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113235266126217", + "createdBy": null, + "createdTime": "2026-02-02 04:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:35", + "echoMap": {}, + "alarmNo": "1450241765", + "alarmDate": "1769976993779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113235266126172", + "createdBy": null, + "createdTime": "2026-02-02 04:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:31", + "echoMap": {}, + "alarmNo": "1450241764", + "alarmDate": "1769976989649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113226676191718", + "createdBy": null, + "createdTime": "2026-02-02 04:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:47", + "echoMap": {}, + "alarmNo": "1450241763", + "alarmDate": "1769976405643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113226676191481", + "createdBy": null, + "createdTime": "2026-02-02 04:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:23", + "echoMap": {}, + "alarmNo": "1450241762", + "alarmDate": "1769976382386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113218086257117", + "createdBy": null, + "createdTime": "2026-02-02 03:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:44", + "echoMap": {}, + "alarmNo": "1450241761", + "alarmDate": "1769975803238", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113218086256686", + "createdBy": null, + "createdTime": "2026-02-02 03:56:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:01", + "echoMap": {}, + "alarmNo": "1450241760", + "alarmDate": "1769975760127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113209496322604", + "createdBy": null, + "createdTime": "2026-02-02 03:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:53", + "echoMap": {}, + "alarmNo": "1450241759", + "alarmDate": "1769975211966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113209496322567", + "createdBy": null, + "createdTime": "2026-02-02 03:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:50", + "echoMap": {}, + "alarmNo": "1450241758", + "alarmDate": "1769975208725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113209496322155", + "createdBy": null, + "createdTime": "2026-02-02 03:46:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:09", + "echoMap": {}, + "alarmNo": "1450241757", + "alarmDate": "1769975167943", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113200906388079", + "createdBy": null, + "createdTime": "2026-02-02 03:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:59", + "echoMap": {}, + "alarmNo": "1450241756", + "alarmDate": "1769974617792", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113200906387907", + "createdBy": null, + "createdTime": "2026-02-02 03:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:42", + "echoMap": {}, + "alarmNo": "1450241755", + "alarmDate": "1769974601470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316453300", + "createdBy": null, + "createdTime": "2026-02-02 03:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:37", + "echoMap": {}, + "alarmNo": "1450241754", + "alarmDate": "1769973996387", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316453136", + "createdBy": null, + "createdTime": "2026-02-02 03:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:21", + "echoMap": {}, + "alarmNo": "1450241753", + "alarmDate": "1769973980385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316453100", + "createdBy": null, + "createdTime": "2026-02-02 03:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:18", + "echoMap": {}, + "alarmNo": "1450241752", + "alarmDate": "1769973977143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113192316452868", + "createdBy": null, + "createdTime": "2026-02-02 03:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:52", + "echoMap": {}, + "alarmNo": "1450241751", + "alarmDate": "1769973673732", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1009040007", + "deviceName": "H3C前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1009" + }, + { + "id": "723113183726518898", + "createdBy": null, + "createdTime": "2026-02-02 03:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:19", + "echoMap": {}, + "alarmNo": "1450241750", + "alarmDate": "1769973378117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113183726518792", + "createdBy": null, + "createdTime": "2026-02-02 03:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:09", + "echoMap": {}, + "alarmNo": "1450241749", + "alarmDate": "1769973367841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113183726518592", + "createdBy": null, + "createdTime": "2026-02-02 03:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:01", + "echoMap": {}, + "alarmNo": "1450241748", + "alarmDate": "1769972819578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113175136583770", + "createdBy": null, + "createdTime": "2026-02-02 02:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:41", + "echoMap": {}, + "alarmNo": "1450241747", + "alarmDate": "1769972199569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113175136583723", + "createdBy": null, + "createdTime": "2026-02-02 02:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:36", + "echoMap": {}, + "alarmNo": "1450241746", + "alarmDate": "1769972195517", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113175136583721", + "createdBy": null, + "createdTime": "2026-02-02 02:56:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:36", + "echoMap": {}, + "alarmNo": "1450241745", + "alarmDate": "1769972195374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113162251681837", + "createdBy": null, + "createdTime": "2026-02-02 02:46:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:29", + "echoMap": {}, + "alarmNo": "1450241744", + "alarmDate": "1769971587996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113162251681829", + "createdBy": null, + "createdTime": "2026-02-02 02:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:28", + "echoMap": {}, + "alarmNo": "1450241743", + "alarmDate": "1769971587463", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780428", + "createdBy": null, + "createdTime": "2026-02-02 02:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:08", + "echoMap": {}, + "alarmNo": "1450241742", + "alarmDate": "1769970967047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780377", + "createdBy": null, + "createdTime": "2026-02-02 02:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:04", + "echoMap": {}, + "alarmNo": "1450241741", + "alarmDate": "1769970962757", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780371", + "createdBy": null, + "createdTime": "2026-02-02 02:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:04", + "echoMap": {}, + "alarmNo": "1450241740", + "alarmDate": "1769970962614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780154", + "createdBy": null, + "createdTime": "2026-02-02 02:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:56", + "echoMap": {}, + "alarmNo": "1450241739", + "alarmDate": "1769970414639", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113149366780148", + "createdBy": null, + "createdTime": "2026-02-02 02:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:55", + "echoMap": {}, + "alarmNo": "1450241738", + "alarmDate": "1769970414463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113140776845535", + "createdBy": null, + "createdTime": "2026-02-02 02:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:48", + "echoMap": {}, + "alarmNo": "1450241737", + "alarmDate": "1769969807155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113140776845453", + "createdBy": null, + "createdTime": "2026-02-02 02:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:41", + "echoMap": {}, + "alarmNo": "1450241736", + "alarmDate": "1769969799601", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113132186910772", + "createdBy": null, + "createdTime": "2026-02-02 02:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:28", + "echoMap": {}, + "alarmNo": "1450241735", + "alarmDate": "1769969187246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113127891943659", + "createdBy": null, + "createdTime": "2026-02-02 02:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:23", + "echoMap": {}, + "alarmNo": "1450241734", + "alarmDate": "1769969181846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113127891943494", + "createdBy": null, + "createdTime": "2026-02-02 02:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:07", + "echoMap": {}, + "alarmNo": "1450241733", + "alarmDate": "1769969165893", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113123596976701", + "createdBy": null, + "createdTime": "2026-02-02 01:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:52", + "echoMap": {}, + "alarmNo": "1450241732", + "alarmDate": "1769968610729", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113123596976335", + "createdBy": null, + "createdTime": "2026-02-02 01:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:16", + "echoMap": {}, + "alarmNo": "1450241731", + "alarmDate": "1769968574547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113115007042179", + "createdBy": null, + "createdTime": "2026-02-02 01:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:48", + "echoMap": {}, + "alarmNo": "1450241730", + "alarmDate": "1769968006738", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113106417107091", + "createdBy": null, + "createdTime": "2026-02-02 01:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:48", + "echoMap": {}, + "alarmNo": "1450241729", + "alarmDate": "1769967407392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113106417107030", + "createdBy": null, + "createdTime": "2026-02-02 01:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:43", + "echoMap": {}, + "alarmNo": "1450241728", + "alarmDate": "1769967402033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113072057368619", + "createdBy": null, + "createdTime": "2026-02-02 01:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:48", + "echoMap": {}, + "alarmNo": "1450241727", + "alarmDate": "1769966807043", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113063467434078", + "createdBy": null, + "createdTime": "2026-02-02 01:26:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:36", + "echoMap": {}, + "alarmNo": "1450241726", + "alarmDate": "1769966794844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113054877499412", + "createdBy": null, + "createdTime": "2026-02-02 01:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:09", + "echoMap": {}, + "alarmNo": "1450241725", + "alarmDate": "1769966768582", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113041992597524", + "createdBy": null, + "createdTime": "2026-02-02 01:16:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:58", + "echoMap": {}, + "alarmNo": "1450241724", + "alarmDate": "1769966217094", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723113020517761100", + "createdBy": null, + "createdTime": "2026-02-02 01:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:10", + "echoMap": {}, + "alarmNo": "1450241723", + "alarmDate": "1769965620403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112999042924573", + "createdBy": null, + "createdTime": "2026-02-02 01:04:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:54", + "echoMap": {}, + "alarmNo": "1450241722", + "alarmDate": "1769965495311", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1009030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1009" + }, + { + "id": "723112994747957273", + "createdBy": null, + "createdTime": "2026-02-02 00:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:53", + "echoMap": {}, + "alarmNo": "1450241721", + "alarmDate": "1769965012003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112986158022865", + "createdBy": null, + "createdTime": "2026-02-02 00:56:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:42", + "echoMap": {}, + "alarmNo": "1450241720", + "alarmDate": "1769965001151", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112981863055382", + "createdBy": null, + "createdTime": "2026-02-02 00:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:19", + "echoMap": {}, + "alarmNo": "1450241719", + "alarmDate": "1769964977524", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112960388218899", + "createdBy": null, + "createdTime": "2026-02-02 00:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:36", + "echoMap": {}, + "alarmNo": "1450241718", + "alarmDate": "1769964395191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112956093251607", + "createdBy": null, + "createdTime": "2026-02-02 00:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:30", + "echoMap": {}, + "alarmNo": "1450241717", + "alarmDate": "1769964388726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112921733513232", + "createdBy": null, + "createdTime": "2026-02-02 00:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:20", + "echoMap": {}, + "alarmNo": "1450241716", + "alarmDate": "1769963779227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112900258676748", + "createdBy": null, + "createdTime": "2026-02-02 00:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:37", + "echoMap": {}, + "alarmNo": "1450241715", + "alarmDate": "1769963196337", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060077", + "deviceName": "[205](10)虹桥上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112895963709479", + "createdBy": null, + "createdTime": "2026-02-02 00:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:31", + "echoMap": {}, + "alarmNo": "1450241714", + "alarmDate": "1769963189719", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060005", + "deviceName": "[201](10)虹桥厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112887373774853", + "createdBy": null, + "createdTime": "2026-02-02 00:26:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:05", + "echoMap": {}, + "alarmNo": "1450241713", + "alarmDate": "1769963163661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112865898938467", + "createdBy": null, + "createdTime": "2026-02-02 00:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:56", + "echoMap": {}, + "alarmNo": "1450241712", + "alarmDate": "1769962615508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060015", + "deviceName": "[208](10)虹桥4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112865898938374", + "createdBy": null, + "createdTime": "2026-02-02 00:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:48", + "echoMap": {}, + "alarmNo": "1450241711", + "alarmDate": "1769962606921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060085", + "deviceName": "[207](10)虹桥下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112822949265510", + "createdBy": null, + "createdTime": "2026-02-02 00:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:38", + "echoMap": {}, + "alarmNo": "1450241710", + "alarmDate": "1769961997430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060092", + "deviceName": "[206](10)虹桥上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363565", + "createdBy": null, + "createdTime": "2026-02-02 00:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:04", + "echoMap": {}, + "alarmNo": "1450241709", + "alarmDate": "1769961962434", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060067", + "deviceName": "[408](10)虹桥4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363559", + "createdBy": null, + "createdTime": "2026-02-02 00:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:02", + "echoMap": {}, + "alarmNo": "1450241708", + "alarmDate": "1769961962056", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060058", + "deviceName": "[406](10)虹桥3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363556", + "createdBy": null, + "createdTime": "2026-02-02 00:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:26", + "echoMap": {}, + "alarmNo": "1450241707", + "alarmDate": "1769961961825", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060057", + "deviceName": "[407](10)虹桥4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363546", + "createdBy": null, + "createdTime": "2026-02-02 00:06:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:04", + "echoMap": {}, + "alarmNo": "1450241706", + "alarmDate": "1769961960891", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060029", + "deviceName": "[331](10)虹桥10-3换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + }, + { + "id": "723112810064363545", + "createdBy": null, + "createdTime": "2026-02-02 00:06:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:01", + "echoMap": {}, + "alarmNo": "1450241705", + "alarmDate": "1769961960794", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1009060010", + "deviceName": "[302](10)虹桥4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1009" + } + ] + }, + "1010": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112728458989663", + "createdBy": null, + "createdTime": "2026-02-02 00:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:02", + "echoMap": {}, + "alarmNo": "1470194588", + "alarmDate": "1769961720961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989667", + "createdBy": null, + "createdTime": "2026-02-02 00:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:03", + "echoMap": {}, + "alarmNo": "1470194589", + "alarmDate": "1769961722141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989672", + "createdBy": null, + "createdTime": "2026-02-02 00:02:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:28", + "echoMap": {}, + "alarmNo": "1470194590", + "alarmDate": "1769961746591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989676", + "createdBy": null, + "createdTime": "2026-02-02 00:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:46", + "echoMap": {}, + "alarmNo": "1470194591", + "alarmDate": "1769961764595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112741343891502", + "createdBy": null, + "createdTime": "2026-02-02 00:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:18", + "echoMap": {}, + "alarmNo": "1470194592", + "alarmDate": "1769962336644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112741343891507", + "createdBy": null, + "createdTime": "2026-02-02 00:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:37", + "echoMap": {}, + "alarmNo": "1470194593", + "alarmDate": "1769962355731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793371", + "createdBy": null, + "createdTime": "2026-02-02 00:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:18", + "echoMap": {}, + "alarmNo": "1470194594", + "alarmDate": "1769962936714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793375", + "createdBy": null, + "createdTime": "2026-02-02 00:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:19", + "echoMap": {}, + "alarmNo": "1470194595", + "alarmDate": "1769962938096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793386", + "createdBy": null, + "createdTime": "2026-02-02 00:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:35", + "echoMap": {}, + "alarmNo": "1470194596", + "alarmDate": "1769962953694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793399", + "createdBy": null, + "createdTime": "2026-02-02 00:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:44", + "echoMap": {}, + "alarmNo": "1470194597", + "alarmDate": "1769962958053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793407", + "createdBy": null, + "createdTime": "2026-02-02 00:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:45", + "echoMap": {}, + "alarmNo": "1470194598", + "alarmDate": "1769962963839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760668", + "createdBy": null, + "createdTime": "2026-02-02 00:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:07", + "echoMap": {}, + "alarmNo": "1470194599", + "alarmDate": "1769963526427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760672", + "createdBy": null, + "createdTime": "2026-02-02 00:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:25", + "echoMap": {}, + "alarmNo": "1470194600", + "alarmDate": "1769963544403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760675", + "createdBy": null, + "createdTime": "2026-02-02 00:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:31", + "echoMap": {}, + "alarmNo": "1470194601", + "alarmDate": "1769963545214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760685", + "createdBy": null, + "createdTime": "2026-02-02 00:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:55", + "echoMap": {}, + "alarmNo": "1470194602", + "alarmDate": "1769963569243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760691", + "createdBy": null, + "createdTime": "2026-02-02 00:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:54", + "echoMap": {}, + "alarmNo": "1470194603", + "alarmDate": "1769963573218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112762818728064", + "createdBy": null, + "createdTime": "2026-02-02 00:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:02", + "echoMap": {}, + "alarmNo": "1470194604", + "alarmDate": "1769964121360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695235", + "createdBy": null, + "createdTime": "2026-02-02 00:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:20", + "echoMap": {}, + "alarmNo": "1470194605", + "alarmDate": "1769964133469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695244", + "createdBy": null, + "createdTime": "2026-02-02 00:42:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:29", + "echoMap": {}, + "alarmNo": "1470194606", + "alarmDate": "1769964147632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695248", + "createdBy": null, + "createdTime": "2026-02-02 00:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:50", + "echoMap": {}, + "alarmNo": "1470194607", + "alarmDate": "1769964169441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695252", + "createdBy": null, + "createdTime": "2026-02-02 00:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:52", + "echoMap": {}, + "alarmNo": "1470194608", + "alarmDate": "1769964170729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662610", + "createdBy": null, + "createdTime": "2026-02-02 00:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:07", + "echoMap": {}, + "alarmNo": "1470194609", + "alarmDate": "1769964720813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662613", + "createdBy": null, + "createdTime": "2026-02-02 00:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:02", + "echoMap": {}, + "alarmNo": "1470194610", + "alarmDate": "1769964720932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662623", + "createdBy": null, + "createdTime": "2026-02-02 00:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:14", + "echoMap": {}, + "alarmNo": "1470194611", + "alarmDate": "1769964733352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662627", + "createdBy": null, + "createdTime": "2026-02-02 00:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:33", + "echoMap": {}, + "alarmNo": "1470194612", + "alarmDate": "1769964751696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662631", + "createdBy": null, + "createdTime": "2026-02-02 00:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:41", + "echoMap": {}, + "alarmNo": "1470194613", + "alarmDate": "1769964759976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662644", + "createdBy": null, + "createdTime": "2026-02-02 00:52:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:59", + "echoMap": {}, + "alarmNo": "1470194614", + "alarmDate": "1769964778038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112779998597146", + "createdBy": null, + "createdTime": "2026-02-02 01:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:06", + "echoMap": {}, + "alarmNo": "1470194615", + "alarmDate": "1769965325125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112779998597164", + "createdBy": null, + "createdTime": "2026-02-02 01:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:18", + "echoMap": {}, + "alarmNo": "1470194616", + "alarmDate": "1769965331550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112779998597174", + "createdBy": null, + "createdTime": "2026-02-02 01:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:37", + "echoMap": {}, + "alarmNo": "1470194617", + "alarmDate": "1769965356030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564449", + "createdBy": null, + "createdTime": "2026-02-02 01:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:19", + "echoMap": {}, + "alarmNo": "1470194618", + "alarmDate": "1769965938513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564453", + "createdBy": null, + "createdTime": "2026-02-02 01:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:31", + "echoMap": {}, + "alarmNo": "1470194619", + "alarmDate": "1769965950202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564457", + "createdBy": null, + "createdTime": "2026-02-02 01:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:36", + "echoMap": {}, + "alarmNo": "1470194620", + "alarmDate": "1769965954625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564461", + "createdBy": null, + "createdTime": "2026-02-02 01:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:47", + "echoMap": {}, + "alarmNo": "1470194621", + "alarmDate": "1769965965943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112788588531816", + "createdBy": null, + "createdTime": "2026-02-02 01:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:17", + "echoMap": {}, + "alarmNo": "1470194622", + "alarmDate": "1769966536466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112788588531821", + "createdBy": null, + "createdTime": "2026-02-02 01:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:21", + "echoMap": {}, + "alarmNo": "1470194623", + "alarmDate": "1769966539896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112788588531826", + "createdBy": null, + "createdTime": "2026-02-02 01:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:38", + "echoMap": {}, + "alarmNo": "1470194624", + "alarmDate": "1769966556767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112797178466328", + "createdBy": null, + "createdTime": "2026-02-02 01:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:13", + "echoMap": {}, + "alarmNo": "1470194625", + "alarmDate": "1769967126277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112797178466338", + "createdBy": null, + "createdTime": "2026-02-02 01:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:20", + "echoMap": {}, + "alarmNo": "1470194626", + "alarmDate": "1769967138755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433602", + "createdBy": null, + "createdTime": "2026-02-02 01:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:10", + "echoMap": {}, + "alarmNo": "1470194627", + "alarmDate": "1769967729405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433606", + "createdBy": null, + "createdTime": "2026-02-02 01:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:18", + "echoMap": {}, + "alarmNo": "1470194628", + "alarmDate": "1769967736525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433610", + "createdBy": null, + "createdTime": "2026-02-02 01:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:30", + "echoMap": {}, + "alarmNo": "1470194629", + "alarmDate": "1769967748717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433615", + "createdBy": null, + "createdTime": "2026-02-02 01:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:53", + "echoMap": {}, + "alarmNo": "1470194630", + "alarmDate": "1769967772454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433619", + "createdBy": null, + "createdTime": "2026-02-02 01:42:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:56", + "echoMap": {}, + "alarmNo": "1470194631", + "alarmDate": "1769967775138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400971", + "createdBy": null, + "createdTime": "2026-02-02 01:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:01", + "echoMap": {}, + "alarmNo": "1470194632", + "alarmDate": "1769968319703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400975", + "createdBy": null, + "createdTime": "2026-02-02 01:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:05", + "echoMap": {}, + "alarmNo": "1470194633", + "alarmDate": "1769968324314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400979", + "createdBy": null, + "createdTime": "2026-02-02 01:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:17", + "echoMap": {}, + "alarmNo": "1470194634", + "alarmDate": "1769968336486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400983", + "createdBy": null, + "createdTime": "2026-02-02 01:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:28", + "echoMap": {}, + "alarmNo": "1470194635", + "alarmDate": "1769968347321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768401003", + "createdBy": null, + "createdTime": "2026-02-02 01:52:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:51", + "echoMap": {}, + "alarmNo": "1470194636", + "alarmDate": "1769968370429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112814358335520", + "createdBy": null, + "createdTime": "2026-02-02 02:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:01", + "echoMap": {}, + "alarmNo": "1470194637", + "alarmDate": "1769968919595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112814358335541", + "createdBy": null, + "createdTime": "2026-02-02 02:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:50", + "echoMap": {}, + "alarmNo": "1470194638", + "alarmDate": "1769968969140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112814358335545", + "createdBy": null, + "createdTime": "2026-02-02 02:02:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:53", + "echoMap": {}, + "alarmNo": "1470194639", + "alarmDate": "1769968971982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302806", + "createdBy": null, + "createdTime": "2026-02-02 02:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:00", + "echoMap": {}, + "alarmNo": "1470194640", + "alarmDate": "1769969519327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302809", + "createdBy": null, + "createdTime": "2026-02-02 02:12:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:01", + "echoMap": {}, + "alarmNo": "1470194641", + "alarmDate": "1769969520174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302828", + "createdBy": null, + "createdTime": "2026-02-02 02:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:09", + "echoMap": {}, + "alarmNo": "1470194642", + "alarmDate": "1769969528397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302833", + "createdBy": null, + "createdTime": "2026-02-02 02:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:33", + "echoMap": {}, + "alarmNo": "1470194643", + "alarmDate": "1769969552250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302837", + "createdBy": null, + "createdTime": "2026-02-02 02:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:43", + "echoMap": {}, + "alarmNo": "1470194644", + "alarmDate": "1769969562006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112822948270082", + "createdBy": null, + "createdTime": "2026-02-02 02:12:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:50", + "echoMap": {}, + "alarmNo": "1470194645", + "alarmDate": "1769969569153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112822948270213", + "createdBy": null, + "createdTime": "2026-02-02 02:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:09", + "echoMap": {}, + "alarmNo": "1470194646", + "alarmDate": "1769970128134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112822948270218", + "createdBy": null, + "createdTime": "2026-02-02 02:22:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:34", + "echoMap": {}, + "alarmNo": "1470194647", + "alarmDate": "1769970153262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112831538204742", + "createdBy": null, + "createdTime": "2026-02-02 02:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:34", + "echoMap": {}, + "alarmNo": "1470194648", + "alarmDate": "1769970753072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112831538204746", + "createdBy": null, + "createdTime": "2026-02-02 02:32:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:41", + "echoMap": {}, + "alarmNo": "1470194649", + "alarmDate": "1769970759885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112831538204750", + "createdBy": null, + "createdTime": "2026-02-02 02:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:43", + "echoMap": {}, + "alarmNo": "1470194650", + "alarmDate": "1769970762092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139280", + "createdBy": null, + "createdTime": "2026-02-02 02:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:05", + "echoMap": {}, + "alarmNo": "1470194651", + "alarmDate": "1769971319242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139290", + "createdBy": null, + "createdTime": "2026-02-02 02:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:14", + "echoMap": {}, + "alarmNo": "1470194652", + "alarmDate": "1769971333131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139293", + "createdBy": null, + "createdTime": "2026-02-02 02:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:20", + "echoMap": {}, + "alarmNo": "1470194653", + "alarmDate": "1769971333546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139303", + "createdBy": null, + "createdTime": "2026-02-02 02:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:31", + "echoMap": {}, + "alarmNo": "1470194654", + "alarmDate": "1769971349813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139306", + "createdBy": null, + "createdTime": "2026-02-02 02:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:32", + "echoMap": {}, + "alarmNo": "1470194655", + "alarmDate": "1769971350765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139311", + "createdBy": null, + "createdTime": "2026-02-02 02:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:44", + "echoMap": {}, + "alarmNo": "1470194656", + "alarmDate": "1769971357607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139317", + "createdBy": null, + "createdTime": "2026-02-02 02:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:42", + "echoMap": {}, + "alarmNo": "1470194657", + "alarmDate": "1769971360753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112844423106614", + "createdBy": null, + "createdTime": "2026-02-02 02:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:08", + "echoMap": {}, + "alarmNo": "1470194658", + "alarmDate": "1769971921785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112844423106624", + "createdBy": null, + "createdTime": "2026-02-02 02:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:31", + "echoMap": {}, + "alarmNo": "1470194659", + "alarmDate": "1769971945448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112844423106627", + "createdBy": null, + "createdTime": "2026-02-02 02:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:32", + "echoMap": {}, + "alarmNo": "1470194660", + "alarmDate": "1769971945907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112848718073867", + "createdBy": null, + "createdTime": "2026-02-02 02:52:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:56", + "echoMap": {}, + "alarmNo": "1470194661", + "alarmDate": "1769971969872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041157", + "createdBy": null, + "createdTime": "2026-02-02 03:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:19", + "echoMap": {}, + "alarmNo": "1470194662", + "alarmDate": "1769972533016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041161", + "createdBy": null, + "createdTime": "2026-02-02 03:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:16", + "echoMap": {}, + "alarmNo": "1470194663", + "alarmDate": "1769972534844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041170", + "createdBy": null, + "createdTime": "2026-02-02 03:02:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:25", + "echoMap": {}, + "alarmNo": "1470194664", + "alarmDate": "1769972543895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041175", + "createdBy": null, + "createdTime": "2026-02-02 03:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:32", + "echoMap": {}, + "alarmNo": "1470194665", + "alarmDate": "1769972550723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041179", + "createdBy": null, + "createdTime": "2026-02-02 03:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:43", + "echoMap": {}, + "alarmNo": "1470194666", + "alarmDate": "1769972557136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041188", + "createdBy": null, + "createdTime": "2026-02-02 03:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:46", + "echoMap": {}, + "alarmNo": "1470194667", + "alarmDate": "1769972564697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008545", + "createdBy": null, + "createdTime": "2026-02-02 03:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:11", + "echoMap": {}, + "alarmNo": "1470194668", + "alarmDate": "1769973129612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008549", + "createdBy": null, + "createdTime": "2026-02-02 03:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:19", + "echoMap": {}, + "alarmNo": "1470194669", + "alarmDate": "1769973137592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008554", + "createdBy": null, + "createdTime": "2026-02-02 03:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:21", + "echoMap": {}, + "alarmNo": "1470194670", + "alarmDate": "1769973139574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008559", + "createdBy": null, + "createdTime": "2026-02-02 03:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:30", + "echoMap": {}, + "alarmNo": "1470194671", + "alarmDate": "1769973144420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008582", + "createdBy": null, + "createdTime": "2026-02-02 03:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:54", + "echoMap": {}, + "alarmNo": "1470194672", + "alarmDate": "1769973168422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943047", + "createdBy": null, + "createdTime": "2026-02-02 03:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:19", + "echoMap": {}, + "alarmNo": "1470194673", + "alarmDate": "1769973731537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943057", + "createdBy": null, + "createdTime": "2026-02-02 03:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:42", + "echoMap": {}, + "alarmNo": "1470194674", + "alarmDate": "1769973755656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943066", + "createdBy": null, + "createdTime": "2026-02-02 03:22:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:50", + "echoMap": {}, + "alarmNo": "1470194675", + "alarmDate": "1769973768508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943070", + "createdBy": null, + "createdTime": "2026-02-02 03:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:57", + "echoMap": {}, + "alarmNo": "1470194676", + "alarmDate": "1769973776426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112870192910383", + "createdBy": null, + "createdTime": "2026-02-02 03:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:06", + "echoMap": {}, + "alarmNo": "1470194677", + "alarmDate": "1769974319836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112870192910390", + "createdBy": null, + "createdTime": "2026-02-02 03:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:06", + "echoMap": {}, + "alarmNo": "1470194678", + "alarmDate": "1769974324564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877638", + "createdBy": null, + "createdTime": "2026-02-02 03:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:19", + "echoMap": {}, + "alarmNo": "1470194679", + "alarmDate": "1769974338118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877642", + "createdBy": null, + "createdTime": "2026-02-02 03:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:22", + "echoMap": {}, + "alarmNo": "1470194680", + "alarmDate": "1769974340617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877646", + "createdBy": null, + "createdTime": "2026-02-02 03:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:30", + "echoMap": {}, + "alarmNo": "1470194681", + "alarmDate": "1769974343946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877649", + "createdBy": null, + "createdTime": "2026-02-02 03:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:26", + "echoMap": {}, + "alarmNo": "1470194682", + "alarmDate": "1769974344537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877659", + "createdBy": null, + "createdTime": "2026-02-02 03:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:42", + "echoMap": {}, + "alarmNo": "1470194683", + "alarmDate": "1769974361200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877664", + "createdBy": null, + "createdTime": "2026-02-02 03:32:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:54", + "echoMap": {}, + "alarmNo": "1470194684", + "alarmDate": "1769974368032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877672", + "createdBy": null, + "createdTime": "2026-02-02 03:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:54", + "echoMap": {}, + "alarmNo": "1470194685", + "alarmDate": "1769974373148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877677", + "createdBy": null, + "createdTime": "2026-02-02 03:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:56", + "echoMap": {}, + "alarmNo": "1470194686", + "alarmDate": "1769974375276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844964", + "createdBy": null, + "createdTime": "2026-02-02 03:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:01", + "echoMap": {}, + "alarmNo": "1470194687", + "alarmDate": "1769974920429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844968", + "createdBy": null, + "createdTime": "2026-02-02 03:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:08", + "echoMap": {}, + "alarmNo": "1470194688", + "alarmDate": "1769974927464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844972", + "createdBy": null, + "createdTime": "2026-02-02 03:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:17", + "echoMap": {}, + "alarmNo": "1470194689", + "alarmDate": "1769974931163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844981", + "createdBy": null, + "createdTime": "2026-02-02 03:42:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:41", + "echoMap": {}, + "alarmNo": "1470194690", + "alarmDate": "1769974955248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812346", + "createdBy": null, + "createdTime": "2026-02-02 03:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:05", + "echoMap": {}, + "alarmNo": "1470194691", + "alarmDate": "1769975519348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812357", + "createdBy": null, + "createdTime": "2026-02-02 03:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:28", + "echoMap": {}, + "alarmNo": "1470194692", + "alarmDate": "1769975542387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812380", + "createdBy": null, + "createdTime": "2026-02-02 03:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:30", + "echoMap": {}, + "alarmNo": "1470194693", + "alarmDate": "1769975549326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812384", + "createdBy": null, + "createdTime": "2026-02-02 03:52:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:39", + "echoMap": {}, + "alarmNo": "1470194694", + "alarmDate": "1769975558233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812389", + "createdBy": null, + "createdTime": "2026-02-02 03:52:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:53", + "echoMap": {}, + "alarmNo": "1470194695", + "alarmDate": "1769975571789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812393", + "createdBy": null, + "createdTime": "2026-02-02 03:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:58", + "echoMap": {}, + "alarmNo": "1470194696", + "alarmDate": "1769975577114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746836", + "createdBy": null, + "createdTime": "2026-02-02 04:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:01", + "echoMap": {}, + "alarmNo": "1470194697", + "alarmDate": "1769976119876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746840", + "createdBy": null, + "createdTime": "2026-02-02 04:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:06", + "echoMap": {}, + "alarmNo": "1470194698", + "alarmDate": "1769976125289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746844", + "createdBy": null, + "createdTime": "2026-02-02 04:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:15", + "echoMap": {}, + "alarmNo": "1470194699", + "alarmDate": "1769976134394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746849", + "createdBy": null, + "createdTime": "2026-02-02 04:02:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:24", + "echoMap": {}, + "alarmNo": "1470194700", + "alarmDate": "1769976142931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746867", + "createdBy": null, + "createdTime": "2026-02-02 04:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:46", + "echoMap": {}, + "alarmNo": "1470194701", + "alarmDate": "1769976165131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112895962714140", + "createdBy": null, + "createdTime": "2026-02-02 04:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:51", + "echoMap": {}, + "alarmNo": "1470194702", + "alarmDate": "1769976770312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681494", + "createdBy": null, + "createdTime": "2026-02-02 04:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:10", + "echoMap": {}, + "alarmNo": "1470194703", + "alarmDate": "1769977329204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681498", + "createdBy": null, + "createdTime": "2026-02-02 04:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:19", + "echoMap": {}, + "alarmNo": "1470194704", + "alarmDate": "1769977337955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681502", + "createdBy": null, + "createdTime": "2026-02-02 04:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:35", + "echoMap": {}, + "alarmNo": "1470194705", + "alarmDate": "1769977354485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681506", + "createdBy": null, + "createdTime": "2026-02-02 04:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:39", + "echoMap": {}, + "alarmNo": "1470194706", + "alarmDate": "1769977358052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681510", + "createdBy": null, + "createdTime": "2026-02-02 04:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:54", + "echoMap": {}, + "alarmNo": "1470194707", + "alarmDate": "1769977373118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681514", + "createdBy": null, + "createdTime": "2026-02-02 04:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:57", + "echoMap": {}, + "alarmNo": "1470194708", + "alarmDate": "1769977375592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112908847616032", + "createdBy": null, + "createdTime": "2026-02-02 04:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:04", + "echoMap": {}, + "alarmNo": "1470194709", + "alarmDate": "1769977922731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112908847616037", + "createdBy": null, + "createdTime": "2026-02-02 04:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:05", + "echoMap": {}, + "alarmNo": "1470194710", + "alarmDate": "1769977924247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112908847616041", + "createdBy": null, + "createdTime": "2026-02-02 04:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:33", + "echoMap": {}, + "alarmNo": "1470194711", + "alarmDate": "1769977951947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112913142583317", + "createdBy": null, + "createdTime": "2026-02-02 04:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:30", + "echoMap": {}, + "alarmNo": "1470194712", + "alarmDate": "1769978549156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112913142583322", + "createdBy": null, + "createdTime": "2026-02-02 04:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:43", + "echoMap": {}, + "alarmNo": "1470194713", + "alarmDate": "1769978561944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112913142583326", + "createdBy": null, + "createdTime": "2026-02-02 04:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:52", + "echoMap": {}, + "alarmNo": "1470194714", + "alarmDate": "1769978570650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550683", + "createdBy": null, + "createdTime": "2026-02-02 04:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:18", + "echoMap": {}, + "alarmNo": "1470194715", + "alarmDate": "1769979137357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550686", + "createdBy": null, + "createdTime": "2026-02-02 04:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:19", + "echoMap": {}, + "alarmNo": "1470194716", + "alarmDate": "1769979137715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550692", + "createdBy": null, + "createdTime": "2026-02-02 04:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:36", + "echoMap": {}, + "alarmNo": "1470194717", + "alarmDate": "1769979155312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550696", + "createdBy": null, + "createdTime": "2026-02-02 04:52:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:45", + "echoMap": {}, + "alarmNo": "1470194718", + "alarmDate": "1769979164062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112926027485232", + "createdBy": null, + "createdTime": "2026-02-02 05:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:19", + "echoMap": {}, + "alarmNo": "1470194719", + "alarmDate": "1769979737801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112926027485237", + "createdBy": null, + "createdTime": "2026-02-02 05:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:48", + "echoMap": {}, + "alarmNo": "1470194720", + "alarmDate": "1769979766696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452523", + "createdBy": null, + "createdTime": "2026-02-02 05:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:11", + "echoMap": {}, + "alarmNo": "1470194721", + "alarmDate": "1769980329854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452527", + "createdBy": null, + "createdTime": "2026-02-02 05:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:32", + "echoMap": {}, + "alarmNo": "1470194722", + "alarmDate": "1769980350708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452530", + "createdBy": null, + "createdTime": "2026-02-02 05:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:32", + "echoMap": {}, + "alarmNo": "1470194723", + "alarmDate": "1769980351378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452535", + "createdBy": null, + "createdTime": "2026-02-02 05:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:51", + "echoMap": {}, + "alarmNo": "1470194724", + "alarmDate": "1769980370379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452539", + "createdBy": null, + "createdTime": "2026-02-02 05:12:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:53", + "echoMap": {}, + "alarmNo": "1470194725", + "alarmDate": "1769980371837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112934617419905", + "createdBy": null, + "createdTime": "2026-02-02 05:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:20", + "echoMap": {}, + "alarmNo": "1470194726", + "alarmDate": "1769980933649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112934617419909", + "createdBy": null, + "createdTime": "2026-02-02 05:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:16", + "echoMap": {}, + "alarmNo": "1470194727", + "alarmDate": "1769980935082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112934617419918", + "createdBy": null, + "createdTime": "2026-02-02 05:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:38", + "echoMap": {}, + "alarmNo": "1470194728", + "alarmDate": "1769980956871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112938912387074", + "createdBy": null, + "createdTime": "2026-02-02 05:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:44", + "echoMap": {}, + "alarmNo": "1470194729", + "alarmDate": "1769980957761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112938912387084", + "createdBy": null, + "createdTime": "2026-02-02 05:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:56", + "echoMap": {}, + "alarmNo": "1470194730", + "alarmDate": "1769980974390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112943207354453", + "createdBy": null, + "createdTime": "2026-02-02 05:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:07", + "echoMap": {}, + "alarmNo": "1470194731", + "alarmDate": "1769981520874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112943207354458", + "createdBy": null, + "createdTime": "2026-02-02 05:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:05", + "echoMap": {}, + "alarmNo": "1470194732", + "alarmDate": "1769981523680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112943207354466", + "createdBy": null, + "createdTime": "2026-02-02 05:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:31", + "echoMap": {}, + "alarmNo": "1470194733", + "alarmDate": "1769981544903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289000", + "createdBy": null, + "createdTime": "2026-02-02 05:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:13", + "echoMap": {}, + "alarmNo": "1470194734", + "alarmDate": "1769982132136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289004", + "createdBy": null, + "createdTime": "2026-02-02 05:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:20", + "echoMap": {}, + "alarmNo": "1470194735", + "alarmDate": "1769982138599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289008", + "createdBy": null, + "createdTime": "2026-02-02 05:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:34", + "echoMap": {}, + "alarmNo": "1470194736", + "alarmDate": "1769982153222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289011", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:35", + "echoMap": {}, + "alarmNo": "1470194737", + "alarmDate": "1769982153684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289016", + "createdBy": null, + "createdTime": "2026-02-02 05:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:44", + "echoMap": {}, + "alarmNo": "1470194738", + "alarmDate": "1769982162793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112956092256304", + "createdBy": null, + "createdTime": "2026-02-02 05:52:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:32", + "echoMap": {}, + "alarmNo": "1470194739", + "alarmDate": "1769982750669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112956092256308", + "createdBy": null, + "createdTime": "2026-02-02 05:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:47", + "echoMap": {}, + "alarmNo": "1470194740", + "alarmDate": "1769982760267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112956092256312", + "createdBy": null, + "createdTime": "2026-02-02 05:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:42", + "echoMap": {}, + "alarmNo": "1470194741", + "alarmDate": "1769982761304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223653", + "createdBy": null, + "createdTime": "2026-02-02 06:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:02", + "echoMap": {}, + "alarmNo": "1470194742", + "alarmDate": "1769983318358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223660", + "createdBy": null, + "createdTime": "2026-02-02 06:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:11", + "echoMap": {}, + "alarmNo": "1470194743", + "alarmDate": "1769983330229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223665", + "createdBy": null, + "createdTime": "2026-02-02 06:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:20", + "echoMap": {}, + "alarmNo": "1470194744", + "alarmDate": "1769983339112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223667", + "createdBy": null, + "createdTime": "2026-02-02 06:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:20", + "echoMap": {}, + "alarmNo": "1470194745", + "alarmDate": "1769983339147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223688", + "createdBy": null, + "createdTime": "2026-02-02 06:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:31", + "echoMap": {}, + "alarmNo": "1470194746", + "alarmDate": "1769983350370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223692", + "createdBy": null, + "createdTime": "2026-02-02 06:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:49", + "echoMap": {}, + "alarmNo": "1470194747", + "alarmDate": "1769983362767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223702", + "createdBy": null, + "createdTime": "2026-02-02 06:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:50", + "echoMap": {}, + "alarmNo": "1470194748", + "alarmDate": "1769983368802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223706", + "createdBy": null, + "createdTime": "2026-02-02 06:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:52", + "echoMap": {}, + "alarmNo": "1470194749", + "alarmDate": "1769983371314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112968977158180", + "createdBy": null, + "createdTime": "2026-02-02 06:12:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:01", + "echoMap": {}, + "alarmNo": "1470194750", + "alarmDate": "1769983920493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112968977158189", + "createdBy": null, + "createdTime": "2026-02-02 06:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:07", + "echoMap": {}, + "alarmNo": "1470194751", + "alarmDate": "1769983926224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112968977158199", + "createdBy": null, + "createdTime": "2026-02-02 06:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:42", + "echoMap": {}, + "alarmNo": "1470194752", + "alarmDate": "1769983931639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112977567092815", + "createdBy": null, + "createdTime": "2026-02-02 06:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:04", + "echoMap": {}, + "alarmNo": "1470194753", + "alarmDate": "1769984522879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112977567092835", + "createdBy": null, + "createdTime": "2026-02-02 06:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:26", + "echoMap": {}, + "alarmNo": "1470194754", + "alarmDate": "1769984538940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112981862060038", + "createdBy": null, + "createdTime": "2026-02-02 06:22:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:40", + "echoMap": {}, + "alarmNo": "1470194755", + "alarmDate": "1769984559155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112981862060047", + "createdBy": null, + "createdTime": "2026-02-02 06:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:45", + "echoMap": {}, + "alarmNo": "1470194756", + "alarmDate": "1769984563917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112981862060063", + "createdBy": null, + "createdTime": "2026-02-02 06:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:58", + "echoMap": {}, + "alarmNo": "1470194757", + "alarmDate": "1769984576683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112986157027415", + "createdBy": null, + "createdTime": "2026-02-02 06:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:12", + "echoMap": {}, + "alarmNo": "1470194758", + "alarmDate": "1769985130943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112986157027422", + "createdBy": null, + "createdTime": "2026-02-02 06:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:21", + "echoMap": {}, + "alarmNo": "1470194759", + "alarmDate": "1769985134427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112990451994637", + "createdBy": null, + "createdTime": "2026-02-02 06:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:42", + "echoMap": {}, + "alarmNo": "1470194760", + "alarmDate": "1769985160527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112990451994657", + "createdBy": null, + "createdTime": "2026-02-02 06:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:57", + "echoMap": {}, + "alarmNo": "1470194761", + "alarmDate": "1769985175985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112994746962027", + "createdBy": null, + "createdTime": "2026-02-02 06:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:14", + "echoMap": {}, + "alarmNo": "1470194762", + "alarmDate": "1769985733178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112994746962038", + "createdBy": null, + "createdTime": "2026-02-02 06:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:22", + "echoMap": {}, + "alarmNo": "1470194763", + "alarmDate": "1769985740792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113003336896631", + "createdBy": null, + "createdTime": "2026-02-02 06:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:44", + "echoMap": {}, + "alarmNo": "1470194764", + "alarmDate": "1769986363071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113007631863809", + "createdBy": null, + "createdTime": "2026-02-02 06:52:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:58", + "echoMap": {}, + "alarmNo": "1470194765", + "alarmDate": "1769986376476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113011926831165", + "createdBy": null, + "createdTime": "2026-02-02 07:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:00", + "echoMap": {}, + "alarmNo": "1470194766", + "alarmDate": "1769986919255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113011926831182", + "createdBy": null, + "createdTime": "2026-02-02 07:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:13", + "echoMap": {}, + "alarmNo": "1470194767", + "alarmDate": "1769986931757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113011926831233", + "createdBy": null, + "createdTime": "2026-02-02 07:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:44", + "echoMap": {}, + "alarmNo": "1470194768", + "alarmDate": "1769986963362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765726", + "createdBy": null, + "createdTime": "2026-02-02 07:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:37", + "echoMap": {}, + "alarmNo": "1470194769", + "alarmDate": "1769987527420", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765752", + "createdBy": null, + "createdTime": "2026-02-02 07:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:20", + "echoMap": {}, + "alarmNo": "1470194770", + "alarmDate": "1769987538652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765791", + "createdBy": null, + "createdTime": "2026-02-02 07:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:37", + "echoMap": {}, + "alarmNo": "1470194771", + "alarmDate": "1769987556037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765808", + "createdBy": null, + "createdTime": "2026-02-02 07:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:49", + "echoMap": {}, + "alarmNo": "1470194772", + "alarmDate": "1769987568196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113029106700328", + "createdBy": null, + "createdTime": "2026-02-02 07:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:24", + "echoMap": {}, + "alarmNo": "1470194773", + "alarmDate": "1769988119538", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113029106700342", + "createdBy": null, + "createdTime": "2026-02-02 07:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:06", + "echoMap": {}, + "alarmNo": "1470194774", + "alarmDate": "1769988125468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113033401667606", + "createdBy": null, + "createdTime": "2026-02-02 07:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:13", + "echoMap": {}, + "alarmNo": "1470194775", + "alarmDate": "1769988145224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113050581536771", + "createdBy": null, + "createdTime": "2026-02-02 07:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:50", + "echoMap": {}, + "alarmNo": "1470194776", + "alarmDate": "1769988769182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471377", + "createdBy": null, + "createdTime": "2026-02-02 07:42:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:05", + "echoMap": {}, + "alarmNo": "1470194777", + "alarmDate": "1769989324406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471379", + "createdBy": null, + "createdTime": "2026-02-02 07:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:11", + "echoMap": {}, + "alarmNo": "1470194778", + "alarmDate": "1769989324522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060066", + "deviceName": "[312](10)交大4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471400", + "createdBy": null, + "createdTime": "2026-02-02 07:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:47", + "echoMap": {}, + "alarmNo": "1470194779", + "alarmDate": "1769989344795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471403", + "createdBy": null, + "createdTime": "2026-02-02 07:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:27", + "echoMap": {}, + "alarmNo": "1470194780", + "alarmDate": "1769989345515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471424", + "createdBy": null, + "createdTime": "2026-02-02 07:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:43", + "echoMap": {}, + "alarmNo": "1470194781", + "alarmDate": "1769989361865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113063466438667", + "createdBy": null, + "createdTime": "2026-02-02 07:42:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:25", + "echoMap": {}, + "alarmNo": "1470194782", + "alarmDate": "1769989376947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113080646307920", + "createdBy": null, + "createdTime": "2026-02-02 08:02:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:23", + "echoMap": {}, + "alarmNo": "1470194783", + "alarmDate": "1769990542363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113084941275161", + "createdBy": null, + "createdTime": "2026-02-02 08:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:47", + "echoMap": {}, + "alarmNo": "1470194784", + "alarmDate": "1769990565700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113084941275174", + "createdBy": null, + "createdTime": "2026-02-02 08:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:56", + "echoMap": {}, + "alarmNo": "1470194785", + "alarmDate": "1769990574976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113093531209773", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:12", + "echoMap": {}, + "alarmNo": "1470194786", + "alarmDate": "1769991131238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177040", + "createdBy": null, + "createdTime": "2026-02-02 08:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:34", + "echoMap": {}, + "alarmNo": "1470194787", + "alarmDate": "1769991153384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177044", + "createdBy": null, + "createdTime": "2026-02-02 08:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:47", + "echoMap": {}, + "alarmNo": "1470194788", + "alarmDate": "1769991153815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177048", + "createdBy": null, + "createdTime": "2026-02-02 08:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:48", + "echoMap": {}, + "alarmNo": "1470194789", + "alarmDate": "1769991154499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060066", + "deviceName": "[312](10)交大4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177086", + "createdBy": null, + "createdTime": "2026-02-02 08:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:48", + "echoMap": {}, + "alarmNo": "1470194790", + "alarmDate": "1769991166498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113106416111695", + "createdBy": null, + "createdTime": "2026-02-02 08:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:18", + "echoMap": {}, + "alarmNo": "1470194791", + "alarmDate": "1769991731692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113110711078925", + "createdBy": null, + "createdTime": "2026-02-02 08:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:25", + "echoMap": {}, + "alarmNo": "1470194792", + "alarmDate": "1769991744338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113110711078935", + "createdBy": null, + "createdTime": "2026-02-02 08:22:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:50", + "echoMap": {}, + "alarmNo": "1470194793", + "alarmDate": "1769991750808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046240", + "createdBy": null, + "createdTime": "2026-02-02 08:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:05", + "echoMap": {}, + "alarmNo": "1470194794", + "alarmDate": "1769992319082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046249", + "createdBy": null, + "createdTime": "2026-02-02 08:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:20", + "echoMap": {}, + "alarmNo": "1470194795", + "alarmDate": "1769992334344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046253", + "createdBy": null, + "createdTime": "2026-02-02 08:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:29", + "echoMap": {}, + "alarmNo": "1470194796", + "alarmDate": "1769992336185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046270", + "createdBy": null, + "createdTime": "2026-02-02 08:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:28", + "echoMap": {}, + "alarmNo": "1470194797", + "alarmDate": "1769992347140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046277", + "createdBy": null, + "createdTime": "2026-02-02 08:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:46", + "echoMap": {}, + "alarmNo": "1470194798", + "alarmDate": "1769992353047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046288", + "createdBy": null, + "createdTime": "2026-02-02 08:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:29", + "echoMap": {}, + "alarmNo": "1470194799", + "alarmDate": "1769992361200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113119301013521", + "createdBy": null, + "createdTime": "2026-02-02 08:32:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:53", + "echoMap": {}, + "alarmNo": "1470194800", + "alarmDate": "1769992371670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113123595980888", + "createdBy": null, + "createdTime": "2026-02-02 08:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:19", + "echoMap": {}, + "alarmNo": "1470194801", + "alarmDate": "1769992938012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113123595980903", + "createdBy": null, + "createdTime": "2026-02-02 08:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:35", + "echoMap": {}, + "alarmNo": "1470194802", + "alarmDate": "1769992949336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113123595980923", + "createdBy": null, + "createdTime": "2026-02-02 08:42:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:41", + "echoMap": {}, + "alarmNo": "1470194803", + "alarmDate": "1769992960179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113132185915476", + "createdBy": null, + "createdTime": "2026-02-02 08:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:49", + "echoMap": {}, + "alarmNo": "1470194804", + "alarmDate": "1769993568208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113136480882691", + "createdBy": null, + "createdTime": "2026-02-02 08:52:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:28", + "echoMap": {}, + "alarmNo": "1470194805", + "alarmDate": "1769993572730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113136480882695", + "createdBy": null, + "createdTime": "2026-02-02 08:52:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1470194806", + "alarmDate": "1769993574606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113140775850064", + "createdBy": null, + "createdTime": "2026-02-02 09:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1470194807", + "alarmDate": "1769994128353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817285", + "createdBy": null, + "createdTime": "2026-02-02 09:02:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:33", + "echoMap": {}, + "alarmNo": "1470194808", + "alarmDate": "1769994151941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817289", + "createdBy": null, + "createdTime": "2026-02-02 09:02:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:10", + "echoMap": {}, + "alarmNo": "1470194809", + "alarmDate": "1769994159940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817297", + "createdBy": null, + "createdTime": "2026-02-02 09:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:46", + "echoMap": {}, + "alarmNo": "1470194810", + "alarmDate": "1769994165003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817306", + "createdBy": null, + "createdTime": "2026-02-02 09:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:58", + "echoMap": {}, + "alarmNo": "1470194811", + "alarmDate": "1769994170877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113153660751919", + "createdBy": null, + "createdTime": "2026-02-02 09:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:18", + "echoMap": {}, + "alarmNo": "1470194812", + "alarmDate": "1769994736718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719171", + "createdBy": null, + "createdTime": "2026-02-02 09:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:26", + "echoMap": {}, + "alarmNo": "1470194813", + "alarmDate": "1769994744856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719188", + "createdBy": null, + "createdTime": "2026-02-02 09:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:38", + "echoMap": {}, + "alarmNo": "1470194814", + "alarmDate": "1769994756749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719201", + "createdBy": null, + "createdTime": "2026-02-02 09:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:47", + "echoMap": {}, + "alarmNo": "1470194815", + "alarmDate": "1769994766015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719206", + "createdBy": null, + "createdTime": "2026-02-02 09:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:14", + "echoMap": {}, + "alarmNo": "1470194816", + "alarmDate": "1769994767112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113166545653790", + "createdBy": null, + "createdTime": "2026-02-02 09:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:02", + "echoMap": {}, + "alarmNo": "1470194817", + "alarmDate": "1769995321320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113166545653816", + "createdBy": null, + "createdTime": "2026-02-02 09:22:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:28", + "echoMap": {}, + "alarmNo": "1470194818", + "alarmDate": "1769995341524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113166545653825", + "createdBy": null, + "createdTime": "2026-02-02 09:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:32", + "echoMap": {}, + "alarmNo": "1470194819", + "alarmDate": "1769995365518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555665", + "createdBy": null, + "createdTime": "2026-02-02 09:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:22", + "echoMap": {}, + "alarmNo": "1470194820", + "alarmDate": "1769995941344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555684", + "createdBy": null, + "createdTime": "2026-02-02 09:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:38", + "echoMap": {}, + "alarmNo": "1470194821", + "alarmDate": "1769995956773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555690", + "createdBy": null, + "createdTime": "2026-02-02 09:32:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:51", + "echoMap": {}, + "alarmNo": "1470194822", + "alarmDate": "1769995958682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555698", + "createdBy": null, + "createdTime": "2026-02-02 09:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:48", + "echoMap": {}, + "alarmNo": "1470194823", + "alarmDate": "1769995961456", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113192315457586", + "createdBy": null, + "createdTime": "2026-02-02 09:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:39", + "echoMap": {}, + "alarmNo": "1470194824", + "alarmDate": "1769996546732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113192315457597", + "createdBy": null, + "createdTime": "2026-02-02 09:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:32", + "echoMap": {}, + "alarmNo": "1470194825", + "alarmDate": "1769996550699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113196610424832", + "createdBy": null, + "createdTime": "2026-02-02 09:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:25", + "echoMap": {}, + "alarmNo": "1470194826", + "alarmDate": "1769996564119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113196610424839", + "createdBy": null, + "createdTime": "2026-02-02 09:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:50", + "echoMap": {}, + "alarmNo": "1470194827", + "alarmDate": "1769996568661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113196610424846", + "createdBy": null, + "createdTime": "2026-02-02 09:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:53", + "echoMap": {}, + "alarmNo": "1470194828", + "alarmDate": "1769996571899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359435", + "createdBy": null, + "createdTime": "2026-02-02 09:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1470194829", + "alarmDate": "1769997124040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359448", + "createdBy": null, + "createdTime": "2026-02-02 09:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1470194830", + "alarmDate": "1769997129164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359486", + "createdBy": null, + "createdTime": "2026-02-02 09:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:50", + "echoMap": {}, + "alarmNo": "1470194831", + "alarmDate": "1769997157364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359494", + "createdBy": null, + "createdTime": "2026-02-02 09:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:43", + "echoMap": {}, + "alarmNo": "1470194832", + "alarmDate": "1769997162380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113213790294041", + "createdBy": null, + "createdTime": "2026-02-02 10:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:04", + "echoMap": {}, + "alarmNo": "1470194833", + "alarmDate": "1769997718282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113213790294045", + "createdBy": null, + "createdTime": "2026-02-02 10:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:18", + "echoMap": {}, + "alarmNo": "1470194834", + "alarmDate": "1769997719521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113213790294050", + "createdBy": null, + "createdTime": "2026-02-02 10:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:02", + "echoMap": {}, + "alarmNo": "1470194835", + "alarmDate": "1769997720592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113218085261315", + "createdBy": null, + "createdTime": "2026-02-02 10:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:39", + "echoMap": {}, + "alarmNo": "1470194836", + "alarmDate": "1769997740443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113226675195953", + "createdBy": null, + "createdTime": "2026-02-02 10:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:18", + "echoMap": {}, + "alarmNo": "1470194837", + "alarmDate": "1769998330507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113226675195982", + "createdBy": null, + "createdTime": "2026-02-02 10:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:30", + "echoMap": {}, + "alarmNo": "1470194838", + "alarmDate": "1769998348878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113230970163210", + "createdBy": null, + "createdTime": "2026-02-02 10:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:44", + "echoMap": {}, + "alarmNo": "1470194839", + "alarmDate": "1769998356621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113230970163216", + "createdBy": null, + "createdTime": "2026-02-02 10:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:39", + "echoMap": {}, + "alarmNo": "1470194840", + "alarmDate": "1769998358479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113230970163246", + "createdBy": null, + "createdTime": "2026-02-02 10:12:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:15", + "echoMap": {}, + "alarmNo": "1470194841", + "alarmDate": "1769998378753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113239560097824", + "createdBy": null, + "createdTime": "2026-02-02 10:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:07", + "echoMap": {}, + "alarmNo": "1470194842", + "alarmDate": "1769998919809", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113239560097843", + "createdBy": null, + "createdTime": "2026-02-02 10:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:21", + "echoMap": {}, + "alarmNo": "1470194843", + "alarmDate": "1769998934821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065096", + "createdBy": null, + "createdTime": "2026-02-02 10:22:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:24", + "echoMap": {}, + "alarmNo": "1470194844", + "alarmDate": "1769998942949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065116", + "createdBy": null, + "createdTime": "2026-02-02 10:22:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:45", + "echoMap": {}, + "alarmNo": "1470194845", + "alarmDate": "1769998958955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065136", + "createdBy": null, + "createdTime": "2026-02-02 10:22:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:20", + "echoMap": {}, + "alarmNo": "1470194846", + "alarmDate": "1769998969990", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065148", + "createdBy": null, + "createdTime": "2026-02-02 10:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:55", + "echoMap": {}, + "alarmNo": "1470194847", + "alarmDate": "1769998974259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999710", + "createdBy": null, + "createdTime": "2026-02-02 10:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:15", + "echoMap": {}, + "alarmNo": "1470194848", + "alarmDate": "1769999518278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999714", + "createdBy": null, + "createdTime": "2026-02-02 10:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:17", + "echoMap": {}, + "alarmNo": "1470194849", + "alarmDate": "1769999519134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999715", + "createdBy": null, + "createdTime": "2026-02-02 10:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1470194850", + "alarmDate": "1769999519155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999768", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:25", + "echoMap": {}, + "alarmNo": "1470194851", + "alarmDate": "1769999533184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113256739967008", + "createdBy": null, + "createdTime": "2026-02-02 10:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:40", + "echoMap": {}, + "alarmNo": "1470194852", + "alarmDate": "1769999547254", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113256739967020", + "createdBy": null, + "createdTime": "2026-02-02 10:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:06", + "echoMap": {}, + "alarmNo": "1470194853", + "alarmDate": "1769999550484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113261034934283", + "createdBy": null, + "createdTime": "2026-02-02 10:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:49", + "echoMap": {}, + "alarmNo": "1470194854", + "alarmDate": "1769999557134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113261034934305", + "createdBy": null, + "createdTime": "2026-02-02 10:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:55", + "echoMap": {}, + "alarmNo": "1470194855", + "alarmDate": "1769999562195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113261034934345", + "createdBy": null, + "createdTime": "2026-02-02 10:32:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:03", + "echoMap": {}, + "alarmNo": "1470194856", + "alarmDate": "1769999572276", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113269624868927", + "createdBy": null, + "createdTime": "2026-02-02 10:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:03", + "echoMap": {}, + "alarmNo": "1470194857", + "alarmDate": "1770000118349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113273919836179", + "createdBy": null, + "createdTime": "2026-02-02 10:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:28", + "echoMap": {}, + "alarmNo": "1470194858", + "alarmDate": "1770000136423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803468", + "createdBy": null, + "createdTime": "2026-02-02 10:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:43", + "echoMap": {}, + "alarmNo": "1470194859", + "alarmDate": "1770000161848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803471", + "createdBy": null, + "createdTime": "2026-02-02 10:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:43", + "echoMap": {}, + "alarmNo": "1470194860", + "alarmDate": "1770000162298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803491", + "createdBy": null, + "createdTime": "2026-02-02 10:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:56", + "echoMap": {}, + "alarmNo": "1470194861", + "alarmDate": "1770000169438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803507", + "createdBy": null, + "createdTime": "2026-02-02 10:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:02", + "echoMap": {}, + "alarmNo": "1470194862", + "alarmDate": "1770000173504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738137", + "createdBy": null, + "createdTime": "2026-02-02 10:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:05", + "echoMap": {}, + "alarmNo": "1470194863", + "alarmDate": "1770000737840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738141", + "createdBy": null, + "createdTime": "2026-02-02 10:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:20", + "echoMap": {}, + "alarmNo": "1470194864", + "alarmDate": "1770000738826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738150", + "createdBy": null, + "createdTime": "2026-02-02 10:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:32", + "echoMap": {}, + "alarmNo": "1470194865", + "alarmDate": "1770000744711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738163", + "createdBy": null, + "createdTime": "2026-02-02 10:52:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:31", + "echoMap": {}, + "alarmNo": "1470194866", + "alarmDate": "1770000749790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113291099705357", + "createdBy": null, + "createdTime": "2026-02-02 10:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:48", + "echoMap": {}, + "alarmNo": "1470194867", + "alarmDate": "1770000766715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639952", + "createdBy": null, + "createdTime": "2026-02-02 11:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:02", + "echoMap": {}, + "alarmNo": "1470194868", + "alarmDate": "1770001318886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639966", + "createdBy": null, + "createdTime": "2026-02-02 11:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:15", + "echoMap": {}, + "alarmNo": "1470194869", + "alarmDate": "1770001333844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639970", + "createdBy": null, + "createdTime": "2026-02-02 11:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:36", + "echoMap": {}, + "alarmNo": "1470194870", + "alarmDate": "1770001337129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639979", + "createdBy": null, + "createdTime": "2026-02-02 11:02:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:42", + "echoMap": {}, + "alarmNo": "1470194871", + "alarmDate": "1770001343961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607238", + "createdBy": null, + "createdTime": "2026-02-02 11:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:52", + "echoMap": {}, + "alarmNo": "1470194872", + "alarmDate": "1770001353893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607241", + "createdBy": null, + "createdTime": "2026-02-02 11:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:15", + "echoMap": {}, + "alarmNo": "1470194873", + "alarmDate": "1770001353958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607293", + "createdBy": null, + "createdTime": "2026-02-02 11:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:46", + "echoMap": {}, + "alarmNo": "1470194874", + "alarmDate": "1770001367288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607312", + "createdBy": null, + "createdTime": "2026-02-02 11:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:52", + "echoMap": {}, + "alarmNo": "1470194875", + "alarmDate": "1770001371141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113308279574532", + "createdBy": null, + "createdTime": "2026-02-02 11:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:41", + "echoMap": {}, + "alarmNo": "1470194876", + "alarmDate": "1770001374935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113316869509134", + "createdBy": null, + "createdTime": "2026-02-02 11:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:07", + "echoMap": {}, + "alarmNo": "1470194877", + "alarmDate": "1770001926287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113321164476431", + "createdBy": null, + "createdTime": "2026-02-02 11:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:49", + "echoMap": {}, + "alarmNo": "1470194878", + "alarmDate": "1770001968091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113321164476459", + "createdBy": null, + "createdTime": "2026-02-02 11:12:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:17", + "echoMap": {}, + "alarmNo": "1470194879", + "alarmDate": "1770001977294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113329754411050", + "createdBy": null, + "createdTime": "2026-02-02 11:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:04", + "echoMap": {}, + "alarmNo": "1470194880", + "alarmDate": "1770002523290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113329754411072", + "createdBy": null, + "createdTime": "2026-02-02 11:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:10", + "echoMap": {}, + "alarmNo": "1470194881", + "alarmDate": "1770002528932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113334049378333", + "createdBy": null, + "createdTime": "2026-02-02 11:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:26", + "echoMap": {}, + "alarmNo": "1470194882", + "alarmDate": "1770002544704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113334049378352", + "createdBy": null, + "createdTime": "2026-02-02 11:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:41", + "echoMap": {}, + "alarmNo": "1470194883", + "alarmDate": "1770002549487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113338344345649", + "createdBy": null, + "createdTime": "2026-02-02 11:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:45", + "echoMap": {}, + "alarmNo": "1470194884", + "alarmDate": "1770002563698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113342639312902", + "createdBy": null, + "createdTime": "2026-02-02 11:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:04", + "echoMap": {}, + "alarmNo": "1470194885", + "alarmDate": "1770002573552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113351229247532", + "createdBy": null, + "createdTime": "2026-02-02 11:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:23", + "echoMap": {}, + "alarmNo": "1470194886", + "alarmDate": "1770003130515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113359819182087", + "createdBy": null, + "createdTime": "2026-02-02 11:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:16", + "echoMap": {}, + "alarmNo": "1470194887", + "alarmDate": "1770003161634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113364114149381", + "createdBy": null, + "createdTime": "2026-02-02 11:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:56", + "echoMap": {}, + "alarmNo": "1470194888", + "alarmDate": "1770003174902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113368409116716", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:08", + "echoMap": {}, + "alarmNo": "1470194889", + "alarmDate": "1770003718802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113372704084002", + "createdBy": null, + "createdTime": "2026-02-02 11:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:10", + "echoMap": {}, + "alarmNo": "1470194890", + "alarmDate": "1770003729088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113381294018629", + "createdBy": null, + "createdTime": "2026-02-02 11:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:55", + "echoMap": {}, + "alarmNo": "1470194891", + "alarmDate": "1770003774001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113389883953213", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1470194892", + "alarmDate": "1770004330237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113389883953229", + "createdBy": null, + "createdTime": "2026-02-02 11:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:01", + "echoMap": {}, + "alarmNo": "1470194893", + "alarmDate": "1770004342324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113394178920471", + "createdBy": null, + "createdTime": "2026-02-02 11:52:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:32", + "echoMap": {}, + "alarmNo": "1470194894", + "alarmDate": "1770004350787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113398473887804", + "createdBy": null, + "createdTime": "2026-02-02 11:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:09", + "echoMap": {}, + "alarmNo": "1470194895", + "alarmDate": "1770004376724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113407063822415", + "createdBy": null, + "createdTime": "2026-02-02 12:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:06", + "echoMap": {}, + "alarmNo": "1470194896", + "alarmDate": "1770004932627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113415653756930", + "createdBy": null, + "createdTime": "2026-02-02 12:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:42", + "echoMap": {}, + "alarmNo": "1470194897", + "alarmDate": "1770004948600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691572", + "createdBy": null, + "createdTime": "2026-02-02 12:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:00", + "echoMap": {}, + "alarmNo": "1470194898", + "alarmDate": "1770005518947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691594", + "createdBy": null, + "createdTime": "2026-02-02 12:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:06", + "echoMap": {}, + "alarmNo": "1470194899", + "alarmDate": "1770005525383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691610", + "createdBy": null, + "createdTime": "2026-02-02 12:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:24", + "echoMap": {}, + "alarmNo": "1470194900", + "alarmDate": "1770005530540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691631", + "createdBy": null, + "createdTime": "2026-02-02 12:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:18", + "echoMap": {}, + "alarmNo": "1470194901", + "alarmDate": "1770005539696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691638", + "createdBy": null, + "createdTime": "2026-02-02 12:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:27", + "echoMap": {}, + "alarmNo": "1470194902", + "alarmDate": "1770005541037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113428538658857", + "createdBy": null, + "createdTime": "2026-02-02 12:12:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:03", + "echoMap": {}, + "alarmNo": "1470194903", + "alarmDate": "1770005565203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113432833626148", + "createdBy": null, + "createdTime": "2026-02-02 12:12:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:59", + "echoMap": {}, + "alarmNo": "1470194904", + "alarmDate": "1770005577812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593424", + "createdBy": null, + "createdTime": "2026-02-02 12:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:15", + "echoMap": {}, + "alarmNo": "1470194906", + "alarmDate": "1770006133928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593428", + "createdBy": null, + "createdTime": "2026-02-02 12:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:30", + "echoMap": {}, + "alarmNo": "1470194907", + "alarmDate": "1770006138020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593440", + "createdBy": null, + "createdTime": "2026-02-02 12:22:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:46", + "echoMap": {}, + "alarmNo": "1470194908", + "alarmDate": "1770006147381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593455", + "createdBy": null, + "createdTime": "2026-02-02 12:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:37", + "echoMap": {}, + "alarmNo": "1470194909", + "alarmDate": "1770006156490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113441423560820", + "createdBy": null, + "createdTime": "2026-02-02 12:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:02", + "echoMap": {}, + "alarmNo": "1470194910", + "alarmDate": "1770006718252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113441423560824", + "createdBy": null, + "createdTime": "2026-02-02 12:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:29", + "echoMap": {}, + "alarmNo": "1470194911", + "alarmDate": "1770006719610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113445718528011", + "createdBy": null, + "createdTime": "2026-02-02 12:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:28", + "echoMap": {}, + "alarmNo": "1470194912", + "alarmDate": "1770006741259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113445718528029", + "createdBy": null, + "createdTime": "2026-02-02 12:32:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:24", + "echoMap": {}, + "alarmNo": "1470194913", + "alarmDate": "1770006759717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113445718528045", + "createdBy": null, + "createdTime": "2026-02-02 12:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:35", + "echoMap": {}, + "alarmNo": "1470194914", + "alarmDate": "1770006773440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113454308462599", + "createdBy": null, + "createdTime": "2026-02-02 12:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:16", + "echoMap": {}, + "alarmNo": "1470194915", + "alarmDate": "1770007334635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113454308462605", + "createdBy": null, + "createdTime": "2026-02-02 12:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:17", + "echoMap": {}, + "alarmNo": "1470194916", + "alarmDate": "1770007336294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113454308462608", + "createdBy": null, + "createdTime": "2026-02-02 12:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:18", + "echoMap": {}, + "alarmNo": "1470194917", + "alarmDate": "1770007336842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113462898397200", + "createdBy": null, + "createdTime": "2026-02-02 12:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:09", + "echoMap": {}, + "alarmNo": "1470194918", + "alarmDate": "1770007927846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113462898397232", + "createdBy": null, + "createdTime": "2026-02-02 12:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:19", + "echoMap": {}, + "alarmNo": "1470194919", + "alarmDate": "1770007938253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113462898397235", + "createdBy": null, + "createdTime": "2026-02-02 12:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:20", + "echoMap": {}, + "alarmNo": "1470194920", + "alarmDate": "1770007938737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113467193364531", + "createdBy": null, + "createdTime": "2026-02-02 12:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:44", + "echoMap": {}, + "alarmNo": "1470194921", + "alarmDate": "1770007963277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113475783299131", + "createdBy": null, + "createdTime": "2026-02-02 13:02:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:34", + "echoMap": {}, + "alarmNo": "1470194922", + "alarmDate": "1770008553270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113475783299150", + "createdBy": null, + "createdTime": "2026-02-02 13:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:47", + "echoMap": {}, + "alarmNo": "1470194923", + "alarmDate": "1770008565678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113475783299155", + "createdBy": null, + "createdTime": "2026-02-02 13:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:06", + "echoMap": {}, + "alarmNo": "1470194924", + "alarmDate": "1770008567048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233725", + "createdBy": null, + "createdTime": "2026-02-02 13:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:16", + "echoMap": {}, + "alarmNo": "1470194925", + "alarmDate": "1770009135455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233732", + "createdBy": null, + "createdTime": "2026-02-02 13:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:24", + "echoMap": {}, + "alarmNo": "1470194926", + "alarmDate": "1770009138298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233746", + "createdBy": null, + "createdTime": "2026-02-02 13:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:25", + "echoMap": {}, + "alarmNo": "1470194927", + "alarmDate": "1770009143852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233769", + "createdBy": null, + "createdTime": "2026-02-02 13:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:32", + "echoMap": {}, + "alarmNo": "1470194928", + "alarmDate": "1770009162380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113492963168368", + "createdBy": null, + "createdTime": "2026-02-02 13:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:26", + "echoMap": {}, + "alarmNo": "1470194929", + "alarmDate": "1770009744527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113497258135592", + "createdBy": null, + "createdTime": "2026-02-02 13:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:54", + "echoMap": {}, + "alarmNo": "1470194930", + "alarmDate": "1770009773438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113505848070189", + "createdBy": null, + "createdTime": "2026-02-02 13:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:20", + "echoMap": {}, + "alarmNo": "1470194931", + "alarmDate": "1770010363869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113514438004774", + "createdBy": null, + "createdTime": "2026-02-02 13:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:30", + "echoMap": {}, + "alarmNo": "1470194932", + "alarmDate": "1770010948727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113514438004788", + "createdBy": null, + "createdTime": "2026-02-02 13:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:38", + "echoMap": {}, + "alarmNo": "1470194933", + "alarmDate": "1770010957065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113518732972162", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:50", + "echoMap": {}, + "alarmNo": "1470194934", + "alarmDate": "1770011518266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113523027939338", + "createdBy": null, + "createdTime": "2026-02-02 13:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:30", + "echoMap": {}, + "alarmNo": "1470194935", + "alarmDate": "1770011549332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113523027939371", + "createdBy": null, + "createdTime": "2026-02-02 13:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:44", + "echoMap": {}, + "alarmNo": "1470194936", + "alarmDate": "1770011562511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113527322906762", + "createdBy": null, + "createdTime": "2026-02-02 14:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:00", + "echoMap": {}, + "alarmNo": "1470194937", + "alarmDate": "1770012156013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841290", + "createdBy": null, + "createdTime": "2026-02-02 14:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:14", + "echoMap": {}, + "alarmNo": "1470194938", + "alarmDate": "1770012721813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841303", + "createdBy": null, + "createdTime": "2026-02-02 14:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:12", + "echoMap": {}, + "alarmNo": "1470194939", + "alarmDate": "1770012732240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841323", + "createdBy": null, + "createdTime": "2026-02-02 14:12:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:29", + "echoMap": {}, + "alarmNo": "1470194940", + "alarmDate": "1770012747728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841331", + "createdBy": null, + "createdTime": "2026-02-02 14:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:56", + "echoMap": {}, + "alarmNo": "1470194941", + "alarmDate": "1770012751951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841337", + "createdBy": null, + "createdTime": "2026-02-02 14:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:35", + "echoMap": {}, + "alarmNo": "1470194942", + "alarmDate": "1770012753553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113540207808526", + "createdBy": null, + "createdTime": "2026-02-02 14:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:49", + "echoMap": {}, + "alarmNo": "1470194943", + "alarmDate": "1770012767947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113544502775926", + "createdBy": null, + "createdTime": "2026-02-02 14:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:05", + "echoMap": {}, + "alarmNo": "1470194944", + "alarmDate": "1770013324143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113548797743158", + "createdBy": null, + "createdTime": "2026-02-02 14:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:21", + "echoMap": {}, + "alarmNo": "1470194945", + "alarmDate": "1770013341175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710423", + "createdBy": null, + "createdTime": "2026-02-02 14:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:35", + "echoMap": {}, + "alarmNo": "1470194946", + "alarmDate": "1770013348773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060032", + "deviceName": "[321](10)交大5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710425", + "createdBy": null, + "createdTime": "2026-02-02 14:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:30", + "echoMap": {}, + "alarmNo": "1470194947", + "alarmDate": "1770013348862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710455", + "createdBy": null, + "createdTime": "2026-02-02 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:36", + "echoMap": {}, + "alarmNo": "1470194948", + "alarmDate": "1770013355215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710497", + "createdBy": null, + "createdTime": "2026-02-02 14:22:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:48", + "echoMap": {}, + "alarmNo": "1470194949", + "alarmDate": "1770013367870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060032", + "deviceName": "[321](10)交大5#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113561682645042", + "createdBy": null, + "createdTime": "2026-02-02 14:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:03", + "echoMap": {}, + "alarmNo": "1470194950", + "alarmDate": "1770013922478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113561682645063", + "createdBy": null, + "createdTime": "2026-02-02 14:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:21", + "echoMap": {}, + "alarmNo": "1470194951", + "alarmDate": "1770013928500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113561682645080", + "createdBy": null, + "createdTime": "2026-02-02 14:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1470194952", + "alarmDate": "1770013932337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113565977612346", + "createdBy": null, + "createdTime": "2026-02-02 14:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:33", + "echoMap": {}, + "alarmNo": "1470194953", + "alarmDate": "1770013951527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113570272579612", + "createdBy": null, + "createdTime": "2026-02-02 14:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:54", + "echoMap": {}, + "alarmNo": "1470194954", + "alarmDate": "1770013960586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113432833626245", + "createdBy": null, + "createdTime": "2026-02-02 12:19:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:24:49", + "echoMap": {}, + "alarmNo": "1470194905", + "alarmDate": "1770005988528", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1010030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1010" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113570272579612", + "createdBy": null, + "createdTime": "2026-02-02 14:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:54", + "echoMap": {}, + "alarmNo": "1470194954", + "alarmDate": "1770013960586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113565977612346", + "createdBy": null, + "createdTime": "2026-02-02 14:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:33", + "echoMap": {}, + "alarmNo": "1470194953", + "alarmDate": "1770013951527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113561682645080", + "createdBy": null, + "createdTime": "2026-02-02 14:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1470194952", + "alarmDate": "1770013932337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113561682645063", + "createdBy": null, + "createdTime": "2026-02-02 14:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:21", + "echoMap": {}, + "alarmNo": "1470194951", + "alarmDate": "1770013928500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113561682645042", + "createdBy": null, + "createdTime": "2026-02-02 14:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:03", + "echoMap": {}, + "alarmNo": "1470194950", + "alarmDate": "1770013922478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710497", + "createdBy": null, + "createdTime": "2026-02-02 14:22:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:48", + "echoMap": {}, + "alarmNo": "1470194949", + "alarmDate": "1770013367870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060032", + "deviceName": "[321](10)交大5#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710455", + "createdBy": null, + "createdTime": "2026-02-02 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:36", + "echoMap": {}, + "alarmNo": "1470194948", + "alarmDate": "1770013355215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710425", + "createdBy": null, + "createdTime": "2026-02-02 14:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:30", + "echoMap": {}, + "alarmNo": "1470194947", + "alarmDate": "1770013348862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113553092710423", + "createdBy": null, + "createdTime": "2026-02-02 14:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:35", + "echoMap": {}, + "alarmNo": "1470194946", + "alarmDate": "1770013348773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060032", + "deviceName": "[321](10)交大5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113548797743158", + "createdBy": null, + "createdTime": "2026-02-02 14:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:21", + "echoMap": {}, + "alarmNo": "1470194945", + "alarmDate": "1770013341175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113544502775926", + "createdBy": null, + "createdTime": "2026-02-02 14:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:05", + "echoMap": {}, + "alarmNo": "1470194944", + "alarmDate": "1770013324143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113540207808526", + "createdBy": null, + "createdTime": "2026-02-02 14:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:49", + "echoMap": {}, + "alarmNo": "1470194943", + "alarmDate": "1770012767947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841337", + "createdBy": null, + "createdTime": "2026-02-02 14:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:35", + "echoMap": {}, + "alarmNo": "1470194942", + "alarmDate": "1770012753553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841331", + "createdBy": null, + "createdTime": "2026-02-02 14:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:56", + "echoMap": {}, + "alarmNo": "1470194941", + "alarmDate": "1770012751951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841323", + "createdBy": null, + "createdTime": "2026-02-02 14:12:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:29", + "echoMap": {}, + "alarmNo": "1470194940", + "alarmDate": "1770012747728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841303", + "createdBy": null, + "createdTime": "2026-02-02 14:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:12", + "echoMap": {}, + "alarmNo": "1470194939", + "alarmDate": "1770012732240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113535912841290", + "createdBy": null, + "createdTime": "2026-02-02 14:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:14", + "echoMap": {}, + "alarmNo": "1470194938", + "alarmDate": "1770012721813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113527322906762", + "createdBy": null, + "createdTime": "2026-02-02 14:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:00", + "echoMap": {}, + "alarmNo": "1470194937", + "alarmDate": "1770012156013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113523027939371", + "createdBy": null, + "createdTime": "2026-02-02 13:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:44", + "echoMap": {}, + "alarmNo": "1470194936", + "alarmDate": "1770011562511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113523027939338", + "createdBy": null, + "createdTime": "2026-02-02 13:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:30", + "echoMap": {}, + "alarmNo": "1470194935", + "alarmDate": "1770011549332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113518732972162", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:50", + "echoMap": {}, + "alarmNo": "1470194934", + "alarmDate": "1770011518266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113514438004788", + "createdBy": null, + "createdTime": "2026-02-02 13:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:38", + "echoMap": {}, + "alarmNo": "1470194933", + "alarmDate": "1770010957065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113514438004774", + "createdBy": null, + "createdTime": "2026-02-02 13:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:30", + "echoMap": {}, + "alarmNo": "1470194932", + "alarmDate": "1770010948727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113505848070189", + "createdBy": null, + "createdTime": "2026-02-02 13:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:20", + "echoMap": {}, + "alarmNo": "1470194931", + "alarmDate": "1770010363869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113497258135592", + "createdBy": null, + "createdTime": "2026-02-02 13:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:54", + "echoMap": {}, + "alarmNo": "1470194930", + "alarmDate": "1770009773438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113492963168368", + "createdBy": null, + "createdTime": "2026-02-02 13:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:26", + "echoMap": {}, + "alarmNo": "1470194929", + "alarmDate": "1770009744527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233769", + "createdBy": null, + "createdTime": "2026-02-02 13:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:32", + "echoMap": {}, + "alarmNo": "1470194928", + "alarmDate": "1770009162380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233746", + "createdBy": null, + "createdTime": "2026-02-02 13:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:25", + "echoMap": {}, + "alarmNo": "1470194927", + "alarmDate": "1770009143852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233732", + "createdBy": null, + "createdTime": "2026-02-02 13:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:24", + "echoMap": {}, + "alarmNo": "1470194926", + "alarmDate": "1770009138298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113484373233725", + "createdBy": null, + "createdTime": "2026-02-02 13:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:16", + "echoMap": {}, + "alarmNo": "1470194925", + "alarmDate": "1770009135455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113475783299155", + "createdBy": null, + "createdTime": "2026-02-02 13:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:06", + "echoMap": {}, + "alarmNo": "1470194924", + "alarmDate": "1770008567048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113475783299150", + "createdBy": null, + "createdTime": "2026-02-02 13:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:47", + "echoMap": {}, + "alarmNo": "1470194923", + "alarmDate": "1770008565678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113475783299131", + "createdBy": null, + "createdTime": "2026-02-02 13:02:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:34", + "echoMap": {}, + "alarmNo": "1470194922", + "alarmDate": "1770008553270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113467193364531", + "createdBy": null, + "createdTime": "2026-02-02 12:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:44", + "echoMap": {}, + "alarmNo": "1470194921", + "alarmDate": "1770007963277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113462898397235", + "createdBy": null, + "createdTime": "2026-02-02 12:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:20", + "echoMap": {}, + "alarmNo": "1470194920", + "alarmDate": "1770007938737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113462898397232", + "createdBy": null, + "createdTime": "2026-02-02 12:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:19", + "echoMap": {}, + "alarmNo": "1470194919", + "alarmDate": "1770007938253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113462898397200", + "createdBy": null, + "createdTime": "2026-02-02 12:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:09", + "echoMap": {}, + "alarmNo": "1470194918", + "alarmDate": "1770007927846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113454308462608", + "createdBy": null, + "createdTime": "2026-02-02 12:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:18", + "echoMap": {}, + "alarmNo": "1470194917", + "alarmDate": "1770007336842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113454308462605", + "createdBy": null, + "createdTime": "2026-02-02 12:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:17", + "echoMap": {}, + "alarmNo": "1470194916", + "alarmDate": "1770007336294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113454308462599", + "createdBy": null, + "createdTime": "2026-02-02 12:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:16", + "echoMap": {}, + "alarmNo": "1470194915", + "alarmDate": "1770007334635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113445718528045", + "createdBy": null, + "createdTime": "2026-02-02 12:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:35", + "echoMap": {}, + "alarmNo": "1470194914", + "alarmDate": "1770006773440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113445718528029", + "createdBy": null, + "createdTime": "2026-02-02 12:32:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:24", + "echoMap": {}, + "alarmNo": "1470194913", + "alarmDate": "1770006759717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113445718528011", + "createdBy": null, + "createdTime": "2026-02-02 12:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:28", + "echoMap": {}, + "alarmNo": "1470194912", + "alarmDate": "1770006741259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113441423560824", + "createdBy": null, + "createdTime": "2026-02-02 12:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:29", + "echoMap": {}, + "alarmNo": "1470194911", + "alarmDate": "1770006719610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113441423560820", + "createdBy": null, + "createdTime": "2026-02-02 12:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:02", + "echoMap": {}, + "alarmNo": "1470194910", + "alarmDate": "1770006718252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593455", + "createdBy": null, + "createdTime": "2026-02-02 12:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:37", + "echoMap": {}, + "alarmNo": "1470194909", + "alarmDate": "1770006156490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593440", + "createdBy": null, + "createdTime": "2026-02-02 12:22:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:46", + "echoMap": {}, + "alarmNo": "1470194908", + "alarmDate": "1770006147381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593428", + "createdBy": null, + "createdTime": "2026-02-02 12:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:30", + "echoMap": {}, + "alarmNo": "1470194907", + "alarmDate": "1770006138020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113437128593424", + "createdBy": null, + "createdTime": "2026-02-02 12:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:15", + "echoMap": {}, + "alarmNo": "1470194906", + "alarmDate": "1770006133928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113432833626245", + "createdBy": null, + "createdTime": "2026-02-02 12:19:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:24:49", + "echoMap": {}, + "alarmNo": "1470194905", + "alarmDate": "1770005988528", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1010030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1010" + }, + { + "id": "723113432833626148", + "createdBy": null, + "createdTime": "2026-02-02 12:12:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:59", + "echoMap": {}, + "alarmNo": "1470194904", + "alarmDate": "1770005577812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113428538658857", + "createdBy": null, + "createdTime": "2026-02-02 12:12:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:03", + "echoMap": {}, + "alarmNo": "1470194903", + "alarmDate": "1770005565203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691638", + "createdBy": null, + "createdTime": "2026-02-02 12:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:27", + "echoMap": {}, + "alarmNo": "1470194902", + "alarmDate": "1770005541037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691631", + "createdBy": null, + "createdTime": "2026-02-02 12:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:18", + "echoMap": {}, + "alarmNo": "1470194901", + "alarmDate": "1770005539696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691610", + "createdBy": null, + "createdTime": "2026-02-02 12:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:24", + "echoMap": {}, + "alarmNo": "1470194900", + "alarmDate": "1770005530540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691594", + "createdBy": null, + "createdTime": "2026-02-02 12:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:06", + "echoMap": {}, + "alarmNo": "1470194899", + "alarmDate": "1770005525383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113424243691572", + "createdBy": null, + "createdTime": "2026-02-02 12:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:00", + "echoMap": {}, + "alarmNo": "1470194898", + "alarmDate": "1770005518947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113415653756930", + "createdBy": null, + "createdTime": "2026-02-02 12:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:42", + "echoMap": {}, + "alarmNo": "1470194897", + "alarmDate": "1770004948600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113407063822415", + "createdBy": null, + "createdTime": "2026-02-02 12:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:06", + "echoMap": {}, + "alarmNo": "1470194896", + "alarmDate": "1770004932627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113398473887804", + "createdBy": null, + "createdTime": "2026-02-02 11:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:09", + "echoMap": {}, + "alarmNo": "1470194895", + "alarmDate": "1770004376724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113394178920471", + "createdBy": null, + "createdTime": "2026-02-02 11:52:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:32", + "echoMap": {}, + "alarmNo": "1470194894", + "alarmDate": "1770004350787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113389883953229", + "createdBy": null, + "createdTime": "2026-02-02 11:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:01", + "echoMap": {}, + "alarmNo": "1470194893", + "alarmDate": "1770004342324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113389883953213", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1470194892", + "alarmDate": "1770004330237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113381294018629", + "createdBy": null, + "createdTime": "2026-02-02 11:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:55", + "echoMap": {}, + "alarmNo": "1470194891", + "alarmDate": "1770003774001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113372704084002", + "createdBy": null, + "createdTime": "2026-02-02 11:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:10", + "echoMap": {}, + "alarmNo": "1470194890", + "alarmDate": "1770003729088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113368409116716", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:08", + "echoMap": {}, + "alarmNo": "1470194889", + "alarmDate": "1770003718802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113364114149381", + "createdBy": null, + "createdTime": "2026-02-02 11:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:56", + "echoMap": {}, + "alarmNo": "1470194888", + "alarmDate": "1770003174902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113359819182087", + "createdBy": null, + "createdTime": "2026-02-02 11:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:16", + "echoMap": {}, + "alarmNo": "1470194887", + "alarmDate": "1770003161634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113351229247532", + "createdBy": null, + "createdTime": "2026-02-02 11:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:23", + "echoMap": {}, + "alarmNo": "1470194886", + "alarmDate": "1770003130515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113342639312902", + "createdBy": null, + "createdTime": "2026-02-02 11:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:04", + "echoMap": {}, + "alarmNo": "1470194885", + "alarmDate": "1770002573552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113338344345649", + "createdBy": null, + "createdTime": "2026-02-02 11:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:45", + "echoMap": {}, + "alarmNo": "1470194884", + "alarmDate": "1770002563698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113334049378352", + "createdBy": null, + "createdTime": "2026-02-02 11:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:41", + "echoMap": {}, + "alarmNo": "1470194883", + "alarmDate": "1770002549487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113334049378333", + "createdBy": null, + "createdTime": "2026-02-02 11:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:26", + "echoMap": {}, + "alarmNo": "1470194882", + "alarmDate": "1770002544704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113329754411072", + "createdBy": null, + "createdTime": "2026-02-02 11:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:10", + "echoMap": {}, + "alarmNo": "1470194881", + "alarmDate": "1770002528932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113329754411050", + "createdBy": null, + "createdTime": "2026-02-02 11:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:04", + "echoMap": {}, + "alarmNo": "1470194880", + "alarmDate": "1770002523290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113321164476459", + "createdBy": null, + "createdTime": "2026-02-02 11:12:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:17", + "echoMap": {}, + "alarmNo": "1470194879", + "alarmDate": "1770001977294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113321164476431", + "createdBy": null, + "createdTime": "2026-02-02 11:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:49", + "echoMap": {}, + "alarmNo": "1470194878", + "alarmDate": "1770001968091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113316869509134", + "createdBy": null, + "createdTime": "2026-02-02 11:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:07", + "echoMap": {}, + "alarmNo": "1470194877", + "alarmDate": "1770001926287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113308279574532", + "createdBy": null, + "createdTime": "2026-02-02 11:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:41", + "echoMap": {}, + "alarmNo": "1470194876", + "alarmDate": "1770001374935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607312", + "createdBy": null, + "createdTime": "2026-02-02 11:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:52", + "echoMap": {}, + "alarmNo": "1470194875", + "alarmDate": "1770001371141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607293", + "createdBy": null, + "createdTime": "2026-02-02 11:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:46", + "echoMap": {}, + "alarmNo": "1470194874", + "alarmDate": "1770001367288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607241", + "createdBy": null, + "createdTime": "2026-02-02 11:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:15", + "echoMap": {}, + "alarmNo": "1470194873", + "alarmDate": "1770001353958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113303984607238", + "createdBy": null, + "createdTime": "2026-02-02 11:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:52", + "echoMap": {}, + "alarmNo": "1470194872", + "alarmDate": "1770001353893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639979", + "createdBy": null, + "createdTime": "2026-02-02 11:02:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:42", + "echoMap": {}, + "alarmNo": "1470194871", + "alarmDate": "1770001343961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639970", + "createdBy": null, + "createdTime": "2026-02-02 11:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:36", + "echoMap": {}, + "alarmNo": "1470194870", + "alarmDate": "1770001337129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639966", + "createdBy": null, + "createdTime": "2026-02-02 11:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:15", + "echoMap": {}, + "alarmNo": "1470194869", + "alarmDate": "1770001333844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113299689639952", + "createdBy": null, + "createdTime": "2026-02-02 11:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:02", + "echoMap": {}, + "alarmNo": "1470194868", + "alarmDate": "1770001318886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113291099705357", + "createdBy": null, + "createdTime": "2026-02-02 10:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:48", + "echoMap": {}, + "alarmNo": "1470194867", + "alarmDate": "1770000766715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738163", + "createdBy": null, + "createdTime": "2026-02-02 10:52:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:31", + "echoMap": {}, + "alarmNo": "1470194866", + "alarmDate": "1770000749790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738150", + "createdBy": null, + "createdTime": "2026-02-02 10:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:32", + "echoMap": {}, + "alarmNo": "1470194865", + "alarmDate": "1770000744711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738141", + "createdBy": null, + "createdTime": "2026-02-02 10:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:20", + "echoMap": {}, + "alarmNo": "1470194864", + "alarmDate": "1770000738826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113286804738137", + "createdBy": null, + "createdTime": "2026-02-02 10:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:05", + "echoMap": {}, + "alarmNo": "1470194863", + "alarmDate": "1770000737840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803507", + "createdBy": null, + "createdTime": "2026-02-02 10:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:02", + "echoMap": {}, + "alarmNo": "1470194862", + "alarmDate": "1770000173504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803491", + "createdBy": null, + "createdTime": "2026-02-02 10:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:56", + "echoMap": {}, + "alarmNo": "1470194861", + "alarmDate": "1770000169438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803471", + "createdBy": null, + "createdTime": "2026-02-02 10:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:43", + "echoMap": {}, + "alarmNo": "1470194860", + "alarmDate": "1770000162298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113278214803468", + "createdBy": null, + "createdTime": "2026-02-02 10:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:43", + "echoMap": {}, + "alarmNo": "1470194859", + "alarmDate": "1770000161848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113273919836179", + "createdBy": null, + "createdTime": "2026-02-02 10:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:28", + "echoMap": {}, + "alarmNo": "1470194858", + "alarmDate": "1770000136423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113269624868927", + "createdBy": null, + "createdTime": "2026-02-02 10:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:03", + "echoMap": {}, + "alarmNo": "1470194857", + "alarmDate": "1770000118349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113261034934345", + "createdBy": null, + "createdTime": "2026-02-02 10:32:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:03", + "echoMap": {}, + "alarmNo": "1470194856", + "alarmDate": "1769999572276", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113261034934305", + "createdBy": null, + "createdTime": "2026-02-02 10:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:55", + "echoMap": {}, + "alarmNo": "1470194855", + "alarmDate": "1769999562195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113261034934283", + "createdBy": null, + "createdTime": "2026-02-02 10:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:49", + "echoMap": {}, + "alarmNo": "1470194854", + "alarmDate": "1769999557134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113256739967020", + "createdBy": null, + "createdTime": "2026-02-02 10:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:06", + "echoMap": {}, + "alarmNo": "1470194853", + "alarmDate": "1769999550484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113256739967008", + "createdBy": null, + "createdTime": "2026-02-02 10:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:40", + "echoMap": {}, + "alarmNo": "1470194852", + "alarmDate": "1769999547254", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999768", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:25", + "echoMap": {}, + "alarmNo": "1470194851", + "alarmDate": "1769999533184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999715", + "createdBy": null, + "createdTime": "2026-02-02 10:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1470194850", + "alarmDate": "1769999519155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999714", + "createdBy": null, + "createdTime": "2026-02-02 10:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:17", + "echoMap": {}, + "alarmNo": "1470194849", + "alarmDate": "1769999519134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060025", + "deviceName": "[322](10)交大5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113252444999710", + "createdBy": null, + "createdTime": "2026-02-02 10:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:15", + "echoMap": {}, + "alarmNo": "1470194848", + "alarmDate": "1769999518278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065148", + "createdBy": null, + "createdTime": "2026-02-02 10:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:55", + "echoMap": {}, + "alarmNo": "1470194847", + "alarmDate": "1769998974259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065136", + "createdBy": null, + "createdTime": "2026-02-02 10:22:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:20", + "echoMap": {}, + "alarmNo": "1470194846", + "alarmDate": "1769998969990", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065116", + "createdBy": null, + "createdTime": "2026-02-02 10:22:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:45", + "echoMap": {}, + "alarmNo": "1470194845", + "alarmDate": "1769998958955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113243855065096", + "createdBy": null, + "createdTime": "2026-02-02 10:22:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:24", + "echoMap": {}, + "alarmNo": "1470194844", + "alarmDate": "1769998942949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113239560097843", + "createdBy": null, + "createdTime": "2026-02-02 10:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:21", + "echoMap": {}, + "alarmNo": "1470194843", + "alarmDate": "1769998934821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113239560097824", + "createdBy": null, + "createdTime": "2026-02-02 10:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:07", + "echoMap": {}, + "alarmNo": "1470194842", + "alarmDate": "1769998919809", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113230970163246", + "createdBy": null, + "createdTime": "2026-02-02 10:12:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:15", + "echoMap": {}, + "alarmNo": "1470194841", + "alarmDate": "1769998378753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113230970163216", + "createdBy": null, + "createdTime": "2026-02-02 10:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:39", + "echoMap": {}, + "alarmNo": "1470194840", + "alarmDate": "1769998358479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113230970163210", + "createdBy": null, + "createdTime": "2026-02-02 10:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:44", + "echoMap": {}, + "alarmNo": "1470194839", + "alarmDate": "1769998356621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113226675195982", + "createdBy": null, + "createdTime": "2026-02-02 10:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:30", + "echoMap": {}, + "alarmNo": "1470194838", + "alarmDate": "1769998348878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113226675195953", + "createdBy": null, + "createdTime": "2026-02-02 10:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:18", + "echoMap": {}, + "alarmNo": "1470194837", + "alarmDate": "1769998330507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113218085261315", + "createdBy": null, + "createdTime": "2026-02-02 10:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:39", + "echoMap": {}, + "alarmNo": "1470194836", + "alarmDate": "1769997740443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113213790294050", + "createdBy": null, + "createdTime": "2026-02-02 10:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:02", + "echoMap": {}, + "alarmNo": "1470194835", + "alarmDate": "1769997720592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113213790294045", + "createdBy": null, + "createdTime": "2026-02-02 10:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:18", + "echoMap": {}, + "alarmNo": "1470194834", + "alarmDate": "1769997719521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113213790294041", + "createdBy": null, + "createdTime": "2026-02-02 10:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:04", + "echoMap": {}, + "alarmNo": "1470194833", + "alarmDate": "1769997718282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359494", + "createdBy": null, + "createdTime": "2026-02-02 09:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:43", + "echoMap": {}, + "alarmNo": "1470194832", + "alarmDate": "1769997162380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359486", + "createdBy": null, + "createdTime": "2026-02-02 09:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:50", + "echoMap": {}, + "alarmNo": "1470194831", + "alarmDate": "1769997157364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359448", + "createdBy": null, + "createdTime": "2026-02-02 09:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1470194830", + "alarmDate": "1769997129164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113205200359435", + "createdBy": null, + "createdTime": "2026-02-02 09:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1470194829", + "alarmDate": "1769997124040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113196610424846", + "createdBy": null, + "createdTime": "2026-02-02 09:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:53", + "echoMap": {}, + "alarmNo": "1470194828", + "alarmDate": "1769996571899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113196610424839", + "createdBy": null, + "createdTime": "2026-02-02 09:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:50", + "echoMap": {}, + "alarmNo": "1470194827", + "alarmDate": "1769996568661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113196610424832", + "createdBy": null, + "createdTime": "2026-02-02 09:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:25", + "echoMap": {}, + "alarmNo": "1470194826", + "alarmDate": "1769996564119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113192315457597", + "createdBy": null, + "createdTime": "2026-02-02 09:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:32", + "echoMap": {}, + "alarmNo": "1470194825", + "alarmDate": "1769996550699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113192315457586", + "createdBy": null, + "createdTime": "2026-02-02 09:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:39", + "echoMap": {}, + "alarmNo": "1470194824", + "alarmDate": "1769996546732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555698", + "createdBy": null, + "createdTime": "2026-02-02 09:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:48", + "echoMap": {}, + "alarmNo": "1470194823", + "alarmDate": "1769995961456", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555690", + "createdBy": null, + "createdTime": "2026-02-02 09:32:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:51", + "echoMap": {}, + "alarmNo": "1470194822", + "alarmDate": "1769995958682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555684", + "createdBy": null, + "createdTime": "2026-02-02 09:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:38", + "echoMap": {}, + "alarmNo": "1470194821", + "alarmDate": "1769995956773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113179430555665", + "createdBy": null, + "createdTime": "2026-02-02 09:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:22", + "echoMap": {}, + "alarmNo": "1470194820", + "alarmDate": "1769995941344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113166545653825", + "createdBy": null, + "createdTime": "2026-02-02 09:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:32", + "echoMap": {}, + "alarmNo": "1470194819", + "alarmDate": "1769995365518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113166545653816", + "createdBy": null, + "createdTime": "2026-02-02 09:22:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:28", + "echoMap": {}, + "alarmNo": "1470194818", + "alarmDate": "1769995341524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113166545653790", + "createdBy": null, + "createdTime": "2026-02-02 09:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:02", + "echoMap": {}, + "alarmNo": "1470194817", + "alarmDate": "1769995321320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719206", + "createdBy": null, + "createdTime": "2026-02-02 09:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:14", + "echoMap": {}, + "alarmNo": "1470194816", + "alarmDate": "1769994767112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719201", + "createdBy": null, + "createdTime": "2026-02-02 09:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:47", + "echoMap": {}, + "alarmNo": "1470194815", + "alarmDate": "1769994766015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719188", + "createdBy": null, + "createdTime": "2026-02-02 09:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:38", + "echoMap": {}, + "alarmNo": "1470194814", + "alarmDate": "1769994756749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113157955719171", + "createdBy": null, + "createdTime": "2026-02-02 09:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:26", + "echoMap": {}, + "alarmNo": "1470194813", + "alarmDate": "1769994744856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113153660751919", + "createdBy": null, + "createdTime": "2026-02-02 09:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:18", + "echoMap": {}, + "alarmNo": "1470194812", + "alarmDate": "1769994736718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817306", + "createdBy": null, + "createdTime": "2026-02-02 09:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:58", + "echoMap": {}, + "alarmNo": "1470194811", + "alarmDate": "1769994170877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817297", + "createdBy": null, + "createdTime": "2026-02-02 09:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:46", + "echoMap": {}, + "alarmNo": "1470194810", + "alarmDate": "1769994165003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817289", + "createdBy": null, + "createdTime": "2026-02-02 09:02:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:10", + "echoMap": {}, + "alarmNo": "1470194809", + "alarmDate": "1769994159940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113145070817285", + "createdBy": null, + "createdTime": "2026-02-02 09:02:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:33", + "echoMap": {}, + "alarmNo": "1470194808", + "alarmDate": "1769994151941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113140775850064", + "createdBy": null, + "createdTime": "2026-02-02 09:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1470194807", + "alarmDate": "1769994128353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113136480882695", + "createdBy": null, + "createdTime": "2026-02-02 08:52:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1470194806", + "alarmDate": "1769993574606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113136480882691", + "createdBy": null, + "createdTime": "2026-02-02 08:52:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:28", + "echoMap": {}, + "alarmNo": "1470194805", + "alarmDate": "1769993572730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113132185915476", + "createdBy": null, + "createdTime": "2026-02-02 08:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:49", + "echoMap": {}, + "alarmNo": "1470194804", + "alarmDate": "1769993568208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113123595980923", + "createdBy": null, + "createdTime": "2026-02-02 08:42:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:41", + "echoMap": {}, + "alarmNo": "1470194803", + "alarmDate": "1769992960179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113123595980903", + "createdBy": null, + "createdTime": "2026-02-02 08:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:35", + "echoMap": {}, + "alarmNo": "1470194802", + "alarmDate": "1769992949336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113123595980888", + "createdBy": null, + "createdTime": "2026-02-02 08:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:19", + "echoMap": {}, + "alarmNo": "1470194801", + "alarmDate": "1769992938012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113119301013521", + "createdBy": null, + "createdTime": "2026-02-02 08:32:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:53", + "echoMap": {}, + "alarmNo": "1470194800", + "alarmDate": "1769992371670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046288", + "createdBy": null, + "createdTime": "2026-02-02 08:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:29", + "echoMap": {}, + "alarmNo": "1470194799", + "alarmDate": "1769992361200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046277", + "createdBy": null, + "createdTime": "2026-02-02 08:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:46", + "echoMap": {}, + "alarmNo": "1470194798", + "alarmDate": "1769992353047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046270", + "createdBy": null, + "createdTime": "2026-02-02 08:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:28", + "echoMap": {}, + "alarmNo": "1470194797", + "alarmDate": "1769992347140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046253", + "createdBy": null, + "createdTime": "2026-02-02 08:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:29", + "echoMap": {}, + "alarmNo": "1470194796", + "alarmDate": "1769992336185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046249", + "createdBy": null, + "createdTime": "2026-02-02 08:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:20", + "echoMap": {}, + "alarmNo": "1470194795", + "alarmDate": "1769992334344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113115006046240", + "createdBy": null, + "createdTime": "2026-02-02 08:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:05", + "echoMap": {}, + "alarmNo": "1470194794", + "alarmDate": "1769992319082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113110711078935", + "createdBy": null, + "createdTime": "2026-02-02 08:22:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:50", + "echoMap": {}, + "alarmNo": "1470194793", + "alarmDate": "1769991750808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113110711078925", + "createdBy": null, + "createdTime": "2026-02-02 08:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:25", + "echoMap": {}, + "alarmNo": "1470194792", + "alarmDate": "1769991744338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113106416111695", + "createdBy": null, + "createdTime": "2026-02-02 08:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:18", + "echoMap": {}, + "alarmNo": "1470194791", + "alarmDate": "1769991731692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060022", + "deviceName": "[320](10)交大5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177086", + "createdBy": null, + "createdTime": "2026-02-02 08:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:48", + "echoMap": {}, + "alarmNo": "1470194790", + "alarmDate": "1769991166498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177048", + "createdBy": null, + "createdTime": "2026-02-02 08:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:48", + "echoMap": {}, + "alarmNo": "1470194789", + "alarmDate": "1769991154499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060066", + "deviceName": "[312](10)交大4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177044", + "createdBy": null, + "createdTime": "2026-02-02 08:12:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:47", + "echoMap": {}, + "alarmNo": "1470194788", + "alarmDate": "1769991153815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060064", + "deviceName": "[309](10)交大4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113097826177040", + "createdBy": null, + "createdTime": "2026-02-02 08:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:34", + "echoMap": {}, + "alarmNo": "1470194787", + "alarmDate": "1769991153384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113093531209773", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:12", + "echoMap": {}, + "alarmNo": "1470194786", + "alarmDate": "1769991131238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113084941275174", + "createdBy": null, + "createdTime": "2026-02-02 08:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:56", + "echoMap": {}, + "alarmNo": "1470194785", + "alarmDate": "1769990574976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113084941275161", + "createdBy": null, + "createdTime": "2026-02-02 08:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:47", + "echoMap": {}, + "alarmNo": "1470194784", + "alarmDate": "1769990565700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113080646307920", + "createdBy": null, + "createdTime": "2026-02-02 08:02:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:23", + "echoMap": {}, + "alarmNo": "1470194783", + "alarmDate": "1769990542363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113063466438667", + "createdBy": null, + "createdTime": "2026-02-02 07:42:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:25", + "echoMap": {}, + "alarmNo": "1470194782", + "alarmDate": "1769989376947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471424", + "createdBy": null, + "createdTime": "2026-02-02 07:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:43", + "echoMap": {}, + "alarmNo": "1470194781", + "alarmDate": "1769989361865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471403", + "createdBy": null, + "createdTime": "2026-02-02 07:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:27", + "echoMap": {}, + "alarmNo": "1470194780", + "alarmDate": "1769989345515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471400", + "createdBy": null, + "createdTime": "2026-02-02 07:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:47", + "echoMap": {}, + "alarmNo": "1470194779", + "alarmDate": "1769989344795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471379", + "createdBy": null, + "createdTime": "2026-02-02 07:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:11", + "echoMap": {}, + "alarmNo": "1470194778", + "alarmDate": "1769989324522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060066", + "deviceName": "[312](10)交大4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113059171471377", + "createdBy": null, + "createdTime": "2026-02-02 07:42:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:05", + "echoMap": {}, + "alarmNo": "1470194777", + "alarmDate": "1769989324406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113050581536771", + "createdBy": null, + "createdTime": "2026-02-02 07:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:50", + "echoMap": {}, + "alarmNo": "1470194776", + "alarmDate": "1769988769182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113033401667606", + "createdBy": null, + "createdTime": "2026-02-02 07:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:13", + "echoMap": {}, + "alarmNo": "1470194775", + "alarmDate": "1769988145224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060051", + "deviceName": "[305](10)交大4#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113029106700342", + "createdBy": null, + "createdTime": "2026-02-02 07:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:06", + "echoMap": {}, + "alarmNo": "1470194774", + "alarmDate": "1769988125468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113029106700328", + "createdBy": null, + "createdTime": "2026-02-02 07:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:24", + "echoMap": {}, + "alarmNo": "1470194773", + "alarmDate": "1769988119538", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765808", + "createdBy": null, + "createdTime": "2026-02-02 07:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:49", + "echoMap": {}, + "alarmNo": "1470194772", + "alarmDate": "1769987568196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765791", + "createdBy": null, + "createdTime": "2026-02-02 07:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:37", + "echoMap": {}, + "alarmNo": "1470194771", + "alarmDate": "1769987556037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765752", + "createdBy": null, + "createdTime": "2026-02-02 07:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:20", + "echoMap": {}, + "alarmNo": "1470194770", + "alarmDate": "1769987538652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113020516765726", + "createdBy": null, + "createdTime": "2026-02-02 07:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:37", + "echoMap": {}, + "alarmNo": "1470194769", + "alarmDate": "1769987527420", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113011926831233", + "createdBy": null, + "createdTime": "2026-02-02 07:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:44", + "echoMap": {}, + "alarmNo": "1470194768", + "alarmDate": "1769986963362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113011926831182", + "createdBy": null, + "createdTime": "2026-02-02 07:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:13", + "echoMap": {}, + "alarmNo": "1470194767", + "alarmDate": "1769986931757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113011926831165", + "createdBy": null, + "createdTime": "2026-02-02 07:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:00", + "echoMap": {}, + "alarmNo": "1470194766", + "alarmDate": "1769986919255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113007631863809", + "createdBy": null, + "createdTime": "2026-02-02 06:52:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:58", + "echoMap": {}, + "alarmNo": "1470194765", + "alarmDate": "1769986376476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723113003336896631", + "createdBy": null, + "createdTime": "2026-02-02 06:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:44", + "echoMap": {}, + "alarmNo": "1470194764", + "alarmDate": "1769986363071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112994746962038", + "createdBy": null, + "createdTime": "2026-02-02 06:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:22", + "echoMap": {}, + "alarmNo": "1470194763", + "alarmDate": "1769985740792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112994746962027", + "createdBy": null, + "createdTime": "2026-02-02 06:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:14", + "echoMap": {}, + "alarmNo": "1470194762", + "alarmDate": "1769985733178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112990451994657", + "createdBy": null, + "createdTime": "2026-02-02 06:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:57", + "echoMap": {}, + "alarmNo": "1470194761", + "alarmDate": "1769985175985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112990451994637", + "createdBy": null, + "createdTime": "2026-02-02 06:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:42", + "echoMap": {}, + "alarmNo": "1470194760", + "alarmDate": "1769985160527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112986157027422", + "createdBy": null, + "createdTime": "2026-02-02 06:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:21", + "echoMap": {}, + "alarmNo": "1470194759", + "alarmDate": "1769985134427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112986157027415", + "createdBy": null, + "createdTime": "2026-02-02 06:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:12", + "echoMap": {}, + "alarmNo": "1470194758", + "alarmDate": "1769985130943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112981862060063", + "createdBy": null, + "createdTime": "2026-02-02 06:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:58", + "echoMap": {}, + "alarmNo": "1470194757", + "alarmDate": "1769984576683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112981862060047", + "createdBy": null, + "createdTime": "2026-02-02 06:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:45", + "echoMap": {}, + "alarmNo": "1470194756", + "alarmDate": "1769984563917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112981862060038", + "createdBy": null, + "createdTime": "2026-02-02 06:22:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:40", + "echoMap": {}, + "alarmNo": "1470194755", + "alarmDate": "1769984559155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112977567092835", + "createdBy": null, + "createdTime": "2026-02-02 06:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:26", + "echoMap": {}, + "alarmNo": "1470194754", + "alarmDate": "1769984538940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112977567092815", + "createdBy": null, + "createdTime": "2026-02-02 06:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:04", + "echoMap": {}, + "alarmNo": "1470194753", + "alarmDate": "1769984522879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112968977158199", + "createdBy": null, + "createdTime": "2026-02-02 06:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:42", + "echoMap": {}, + "alarmNo": "1470194752", + "alarmDate": "1769983931639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060067", + "deviceName": "[702](10)交大下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112968977158189", + "createdBy": null, + "createdTime": "2026-02-02 06:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:07", + "echoMap": {}, + "alarmNo": "1470194751", + "alarmDate": "1769983926224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112968977158180", + "createdBy": null, + "createdTime": "2026-02-02 06:12:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:01", + "echoMap": {}, + "alarmNo": "1470194750", + "alarmDate": "1769983920493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223706", + "createdBy": null, + "createdTime": "2026-02-02 06:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:52", + "echoMap": {}, + "alarmNo": "1470194749", + "alarmDate": "1769983371314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223702", + "createdBy": null, + "createdTime": "2026-02-02 06:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:50", + "echoMap": {}, + "alarmNo": "1470194748", + "alarmDate": "1769983368802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223692", + "createdBy": null, + "createdTime": "2026-02-02 06:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:49", + "echoMap": {}, + "alarmNo": "1470194747", + "alarmDate": "1769983362767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223688", + "createdBy": null, + "createdTime": "2026-02-02 06:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:31", + "echoMap": {}, + "alarmNo": "1470194746", + "alarmDate": "1769983350370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223667", + "createdBy": null, + "createdTime": "2026-02-02 06:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:20", + "echoMap": {}, + "alarmNo": "1470194745", + "alarmDate": "1769983339147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223665", + "createdBy": null, + "createdTime": "2026-02-02 06:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:20", + "echoMap": {}, + "alarmNo": "1470194744", + "alarmDate": "1769983339112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060041", + "deviceName": "[204](10)交大厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223660", + "createdBy": null, + "createdTime": "2026-02-02 06:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:11", + "echoMap": {}, + "alarmNo": "1470194743", + "alarmDate": "1769983330229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112960387223653", + "createdBy": null, + "createdTime": "2026-02-02 06:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:02", + "echoMap": {}, + "alarmNo": "1470194742", + "alarmDate": "1769983318358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112956092256312", + "createdBy": null, + "createdTime": "2026-02-02 05:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:42", + "echoMap": {}, + "alarmNo": "1470194741", + "alarmDate": "1769982761304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112956092256308", + "createdBy": null, + "createdTime": "2026-02-02 05:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:47", + "echoMap": {}, + "alarmNo": "1470194740", + "alarmDate": "1769982760267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112956092256304", + "createdBy": null, + "createdTime": "2026-02-02 05:52:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:32", + "echoMap": {}, + "alarmNo": "1470194739", + "alarmDate": "1769982750669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289016", + "createdBy": null, + "createdTime": "2026-02-02 05:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:44", + "echoMap": {}, + "alarmNo": "1470194738", + "alarmDate": "1769982162793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289011", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:35", + "echoMap": {}, + "alarmNo": "1470194737", + "alarmDate": "1769982153684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289008", + "createdBy": null, + "createdTime": "2026-02-02 05:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:34", + "echoMap": {}, + "alarmNo": "1470194736", + "alarmDate": "1769982153222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289004", + "createdBy": null, + "createdTime": "2026-02-02 05:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:20", + "echoMap": {}, + "alarmNo": "1470194735", + "alarmDate": "1769982138599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112951797289000", + "createdBy": null, + "createdTime": "2026-02-02 05:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:13", + "echoMap": {}, + "alarmNo": "1470194734", + "alarmDate": "1769982132136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112943207354466", + "createdBy": null, + "createdTime": "2026-02-02 05:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:31", + "echoMap": {}, + "alarmNo": "1470194733", + "alarmDate": "1769981544903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112943207354458", + "createdBy": null, + "createdTime": "2026-02-02 05:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:05", + "echoMap": {}, + "alarmNo": "1470194732", + "alarmDate": "1769981523680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112943207354453", + "createdBy": null, + "createdTime": "2026-02-02 05:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:07", + "echoMap": {}, + "alarmNo": "1470194731", + "alarmDate": "1769981520874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112938912387084", + "createdBy": null, + "createdTime": "2026-02-02 05:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:56", + "echoMap": {}, + "alarmNo": "1470194730", + "alarmDate": "1769980974390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112938912387074", + "createdBy": null, + "createdTime": "2026-02-02 05:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:44", + "echoMap": {}, + "alarmNo": "1470194729", + "alarmDate": "1769980957761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112934617419918", + "createdBy": null, + "createdTime": "2026-02-02 05:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:38", + "echoMap": {}, + "alarmNo": "1470194728", + "alarmDate": "1769980956871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112934617419909", + "createdBy": null, + "createdTime": "2026-02-02 05:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:16", + "echoMap": {}, + "alarmNo": "1470194727", + "alarmDate": "1769980935082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112934617419905", + "createdBy": null, + "createdTime": "2026-02-02 05:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:20", + "echoMap": {}, + "alarmNo": "1470194726", + "alarmDate": "1769980933649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452539", + "createdBy": null, + "createdTime": "2026-02-02 05:12:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:53", + "echoMap": {}, + "alarmNo": "1470194725", + "alarmDate": "1769980371837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452535", + "createdBy": null, + "createdTime": "2026-02-02 05:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:51", + "echoMap": {}, + "alarmNo": "1470194724", + "alarmDate": "1769980370379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452530", + "createdBy": null, + "createdTime": "2026-02-02 05:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:32", + "echoMap": {}, + "alarmNo": "1470194723", + "alarmDate": "1769980351378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452527", + "createdBy": null, + "createdTime": "2026-02-02 05:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:32", + "echoMap": {}, + "alarmNo": "1470194722", + "alarmDate": "1769980350708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112930322452523", + "createdBy": null, + "createdTime": "2026-02-02 05:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:11", + "echoMap": {}, + "alarmNo": "1470194721", + "alarmDate": "1769980329854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112926027485237", + "createdBy": null, + "createdTime": "2026-02-02 05:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:48", + "echoMap": {}, + "alarmNo": "1470194720", + "alarmDate": "1769979766696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060065", + "deviceName": "[209](10)交大4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112926027485232", + "createdBy": null, + "createdTime": "2026-02-02 05:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:19", + "echoMap": {}, + "alarmNo": "1470194719", + "alarmDate": "1769979737801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550696", + "createdBy": null, + "createdTime": "2026-02-02 04:52:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:45", + "echoMap": {}, + "alarmNo": "1470194718", + "alarmDate": "1769979164062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550692", + "createdBy": null, + "createdTime": "2026-02-02 04:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:36", + "echoMap": {}, + "alarmNo": "1470194717", + "alarmDate": "1769979155312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550686", + "createdBy": null, + "createdTime": "2026-02-02 04:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:19", + "echoMap": {}, + "alarmNo": "1470194716", + "alarmDate": "1769979137715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112917437550683", + "createdBy": null, + "createdTime": "2026-02-02 04:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:18", + "echoMap": {}, + "alarmNo": "1470194715", + "alarmDate": "1769979137357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112913142583326", + "createdBy": null, + "createdTime": "2026-02-02 04:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:52", + "echoMap": {}, + "alarmNo": "1470194714", + "alarmDate": "1769978570650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112913142583322", + "createdBy": null, + "createdTime": "2026-02-02 04:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:43", + "echoMap": {}, + "alarmNo": "1470194713", + "alarmDate": "1769978561944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112913142583317", + "createdBy": null, + "createdTime": "2026-02-02 04:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:30", + "echoMap": {}, + "alarmNo": "1470194712", + "alarmDate": "1769978549156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112908847616041", + "createdBy": null, + "createdTime": "2026-02-02 04:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:33", + "echoMap": {}, + "alarmNo": "1470194711", + "alarmDate": "1769977951947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112908847616037", + "createdBy": null, + "createdTime": "2026-02-02 04:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:05", + "echoMap": {}, + "alarmNo": "1470194710", + "alarmDate": "1769977924247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112908847616032", + "createdBy": null, + "createdTime": "2026-02-02 04:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:04", + "echoMap": {}, + "alarmNo": "1470194709", + "alarmDate": "1769977922731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681514", + "createdBy": null, + "createdTime": "2026-02-02 04:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:57", + "echoMap": {}, + "alarmNo": "1470194708", + "alarmDate": "1769977375592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681510", + "createdBy": null, + "createdTime": "2026-02-02 04:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:54", + "echoMap": {}, + "alarmNo": "1470194707", + "alarmDate": "1769977373118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681506", + "createdBy": null, + "createdTime": "2026-02-02 04:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:39", + "echoMap": {}, + "alarmNo": "1470194706", + "alarmDate": "1769977358052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681502", + "createdBy": null, + "createdTime": "2026-02-02 04:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:35", + "echoMap": {}, + "alarmNo": "1470194705", + "alarmDate": "1769977354485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681498", + "createdBy": null, + "createdTime": "2026-02-02 04:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:19", + "echoMap": {}, + "alarmNo": "1470194704", + "alarmDate": "1769977337955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112900257681494", + "createdBy": null, + "createdTime": "2026-02-02 04:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:10", + "echoMap": {}, + "alarmNo": "1470194703", + "alarmDate": "1769977329204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112895962714140", + "createdBy": null, + "createdTime": "2026-02-02 04:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:51", + "echoMap": {}, + "alarmNo": "1470194702", + "alarmDate": "1769976770312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746867", + "createdBy": null, + "createdTime": "2026-02-02 04:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:46", + "echoMap": {}, + "alarmNo": "1470194701", + "alarmDate": "1769976165131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746849", + "createdBy": null, + "createdTime": "2026-02-02 04:02:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:24", + "echoMap": {}, + "alarmNo": "1470194700", + "alarmDate": "1769976142931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746844", + "createdBy": null, + "createdTime": "2026-02-02 04:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:15", + "echoMap": {}, + "alarmNo": "1470194699", + "alarmDate": "1769976134394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746840", + "createdBy": null, + "createdTime": "2026-02-02 04:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:06", + "echoMap": {}, + "alarmNo": "1470194698", + "alarmDate": "1769976125289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112891667746836", + "createdBy": null, + "createdTime": "2026-02-02 04:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:01", + "echoMap": {}, + "alarmNo": "1470194697", + "alarmDate": "1769976119876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812393", + "createdBy": null, + "createdTime": "2026-02-02 03:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:58", + "echoMap": {}, + "alarmNo": "1470194696", + "alarmDate": "1769975577114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812389", + "createdBy": null, + "createdTime": "2026-02-02 03:52:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:53", + "echoMap": {}, + "alarmNo": "1470194695", + "alarmDate": "1769975571789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812384", + "createdBy": null, + "createdTime": "2026-02-02 03:52:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:39", + "echoMap": {}, + "alarmNo": "1470194694", + "alarmDate": "1769975558233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812380", + "createdBy": null, + "createdTime": "2026-02-02 03:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:30", + "echoMap": {}, + "alarmNo": "1470194693", + "alarmDate": "1769975549326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812357", + "createdBy": null, + "createdTime": "2026-02-02 03:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:28", + "echoMap": {}, + "alarmNo": "1470194692", + "alarmDate": "1769975542387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112883077812346", + "createdBy": null, + "createdTime": "2026-02-02 03:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:05", + "echoMap": {}, + "alarmNo": "1470194691", + "alarmDate": "1769975519348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844981", + "createdBy": null, + "createdTime": "2026-02-02 03:42:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:41", + "echoMap": {}, + "alarmNo": "1470194690", + "alarmDate": "1769974955248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844972", + "createdBy": null, + "createdTime": "2026-02-02 03:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:17", + "echoMap": {}, + "alarmNo": "1470194689", + "alarmDate": "1769974931163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844968", + "createdBy": null, + "createdTime": "2026-02-02 03:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:08", + "echoMap": {}, + "alarmNo": "1470194688", + "alarmDate": "1769974927464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112878782844964", + "createdBy": null, + "createdTime": "2026-02-02 03:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:01", + "echoMap": {}, + "alarmNo": "1470194687", + "alarmDate": "1769974920429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877677", + "createdBy": null, + "createdTime": "2026-02-02 03:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:56", + "echoMap": {}, + "alarmNo": "1470194686", + "alarmDate": "1769974375276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877672", + "createdBy": null, + "createdTime": "2026-02-02 03:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:54", + "echoMap": {}, + "alarmNo": "1470194685", + "alarmDate": "1769974373148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877664", + "createdBy": null, + "createdTime": "2026-02-02 03:32:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:54", + "echoMap": {}, + "alarmNo": "1470194684", + "alarmDate": "1769974368032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877659", + "createdBy": null, + "createdTime": "2026-02-02 03:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:42", + "echoMap": {}, + "alarmNo": "1470194683", + "alarmDate": "1769974361200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877649", + "createdBy": null, + "createdTime": "2026-02-02 03:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:26", + "echoMap": {}, + "alarmNo": "1470194682", + "alarmDate": "1769974344537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877646", + "createdBy": null, + "createdTime": "2026-02-02 03:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:30", + "echoMap": {}, + "alarmNo": "1470194681", + "alarmDate": "1769974343946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877642", + "createdBy": null, + "createdTime": "2026-02-02 03:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:22", + "echoMap": {}, + "alarmNo": "1470194680", + "alarmDate": "1769974340617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112874487877638", + "createdBy": null, + "createdTime": "2026-02-02 03:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:19", + "echoMap": {}, + "alarmNo": "1470194679", + "alarmDate": "1769974338118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112870192910390", + "createdBy": null, + "createdTime": "2026-02-02 03:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:06", + "echoMap": {}, + "alarmNo": "1470194678", + "alarmDate": "1769974324564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112870192910383", + "createdBy": null, + "createdTime": "2026-02-02 03:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:06", + "echoMap": {}, + "alarmNo": "1470194677", + "alarmDate": "1769974319836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943070", + "createdBy": null, + "createdTime": "2026-02-02 03:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:57", + "echoMap": {}, + "alarmNo": "1470194676", + "alarmDate": "1769973776426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943066", + "createdBy": null, + "createdTime": "2026-02-02 03:22:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:50", + "echoMap": {}, + "alarmNo": "1470194675", + "alarmDate": "1769973768508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943057", + "createdBy": null, + "createdTime": "2026-02-02 03:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:42", + "echoMap": {}, + "alarmNo": "1470194674", + "alarmDate": "1769973755656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112865897943047", + "createdBy": null, + "createdTime": "2026-02-02 03:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:19", + "echoMap": {}, + "alarmNo": "1470194673", + "alarmDate": "1769973731537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008582", + "createdBy": null, + "createdTime": "2026-02-02 03:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:54", + "echoMap": {}, + "alarmNo": "1470194672", + "alarmDate": "1769973168422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008559", + "createdBy": null, + "createdTime": "2026-02-02 03:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:30", + "echoMap": {}, + "alarmNo": "1470194671", + "alarmDate": "1769973144420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008554", + "createdBy": null, + "createdTime": "2026-02-02 03:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:21", + "echoMap": {}, + "alarmNo": "1470194670", + "alarmDate": "1769973139574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008549", + "createdBy": null, + "createdTime": "2026-02-02 03:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:19", + "echoMap": {}, + "alarmNo": "1470194669", + "alarmDate": "1769973137592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112857308008545", + "createdBy": null, + "createdTime": "2026-02-02 03:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:11", + "echoMap": {}, + "alarmNo": "1470194668", + "alarmDate": "1769973129612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041188", + "createdBy": null, + "createdTime": "2026-02-02 03:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:46", + "echoMap": {}, + "alarmNo": "1470194667", + "alarmDate": "1769972564697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041179", + "createdBy": null, + "createdTime": "2026-02-02 03:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:43", + "echoMap": {}, + "alarmNo": "1470194666", + "alarmDate": "1769972557136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041175", + "createdBy": null, + "createdTime": "2026-02-02 03:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:32", + "echoMap": {}, + "alarmNo": "1470194665", + "alarmDate": "1769972550723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041170", + "createdBy": null, + "createdTime": "2026-02-02 03:02:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:25", + "echoMap": {}, + "alarmNo": "1470194664", + "alarmDate": "1769972543895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041161", + "createdBy": null, + "createdTime": "2026-02-02 03:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:16", + "echoMap": {}, + "alarmNo": "1470194663", + "alarmDate": "1769972534844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112853013041157", + "createdBy": null, + "createdTime": "2026-02-02 03:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:19", + "echoMap": {}, + "alarmNo": "1470194662", + "alarmDate": "1769972533016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112848718073867", + "createdBy": null, + "createdTime": "2026-02-02 02:52:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:56", + "echoMap": {}, + "alarmNo": "1470194661", + "alarmDate": "1769971969872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112844423106627", + "createdBy": null, + "createdTime": "2026-02-02 02:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:32", + "echoMap": {}, + "alarmNo": "1470194660", + "alarmDate": "1769971945907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112844423106624", + "createdBy": null, + "createdTime": "2026-02-02 02:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:31", + "echoMap": {}, + "alarmNo": "1470194659", + "alarmDate": "1769971945448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112844423106614", + "createdBy": null, + "createdTime": "2026-02-02 02:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:08", + "echoMap": {}, + "alarmNo": "1470194658", + "alarmDate": "1769971921785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139317", + "createdBy": null, + "createdTime": "2026-02-02 02:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:42", + "echoMap": {}, + "alarmNo": "1470194657", + "alarmDate": "1769971360753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139311", + "createdBy": null, + "createdTime": "2026-02-02 02:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:44", + "echoMap": {}, + "alarmNo": "1470194656", + "alarmDate": "1769971357607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139306", + "createdBy": null, + "createdTime": "2026-02-02 02:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:32", + "echoMap": {}, + "alarmNo": "1470194655", + "alarmDate": "1769971350765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139303", + "createdBy": null, + "createdTime": "2026-02-02 02:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:31", + "echoMap": {}, + "alarmNo": "1470194654", + "alarmDate": "1769971349813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139293", + "createdBy": null, + "createdTime": "2026-02-02 02:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:20", + "echoMap": {}, + "alarmNo": "1470194653", + "alarmDate": "1769971333546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139290", + "createdBy": null, + "createdTime": "2026-02-02 02:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:14", + "echoMap": {}, + "alarmNo": "1470194652", + "alarmDate": "1769971333131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112840128139280", + "createdBy": null, + "createdTime": "2026-02-02 02:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:05", + "echoMap": {}, + "alarmNo": "1470194651", + "alarmDate": "1769971319242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112831538204750", + "createdBy": null, + "createdTime": "2026-02-02 02:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:43", + "echoMap": {}, + "alarmNo": "1470194650", + "alarmDate": "1769970762092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112831538204746", + "createdBy": null, + "createdTime": "2026-02-02 02:32:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:41", + "echoMap": {}, + "alarmNo": "1470194649", + "alarmDate": "1769970759885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112831538204742", + "createdBy": null, + "createdTime": "2026-02-02 02:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:34", + "echoMap": {}, + "alarmNo": "1470194648", + "alarmDate": "1769970753072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112822948270218", + "createdBy": null, + "createdTime": "2026-02-02 02:22:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:34", + "echoMap": {}, + "alarmNo": "1470194647", + "alarmDate": "1769970153262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112822948270213", + "createdBy": null, + "createdTime": "2026-02-02 02:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:09", + "echoMap": {}, + "alarmNo": "1470194646", + "alarmDate": "1769970128134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112822948270082", + "createdBy": null, + "createdTime": "2026-02-02 02:12:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:50", + "echoMap": {}, + "alarmNo": "1470194645", + "alarmDate": "1769969569153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302837", + "createdBy": null, + "createdTime": "2026-02-02 02:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:43", + "echoMap": {}, + "alarmNo": "1470194644", + "alarmDate": "1769969562006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302833", + "createdBy": null, + "createdTime": "2026-02-02 02:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:33", + "echoMap": {}, + "alarmNo": "1470194643", + "alarmDate": "1769969552250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302828", + "createdBy": null, + "createdTime": "2026-02-02 02:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:09", + "echoMap": {}, + "alarmNo": "1470194642", + "alarmDate": "1769969528397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302809", + "createdBy": null, + "createdTime": "2026-02-02 02:12:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:01", + "echoMap": {}, + "alarmNo": "1470194641", + "alarmDate": "1769969520174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112818653302806", + "createdBy": null, + "createdTime": "2026-02-02 02:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:00", + "echoMap": {}, + "alarmNo": "1470194640", + "alarmDate": "1769969519327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112814358335545", + "createdBy": null, + "createdTime": "2026-02-02 02:02:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:53", + "echoMap": {}, + "alarmNo": "1470194639", + "alarmDate": "1769968971982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112814358335541", + "createdBy": null, + "createdTime": "2026-02-02 02:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:50", + "echoMap": {}, + "alarmNo": "1470194638", + "alarmDate": "1769968969140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112814358335520", + "createdBy": null, + "createdTime": "2026-02-02 02:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:01", + "echoMap": {}, + "alarmNo": "1470194637", + "alarmDate": "1769968919595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768401003", + "createdBy": null, + "createdTime": "2026-02-02 01:52:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:51", + "echoMap": {}, + "alarmNo": "1470194636", + "alarmDate": "1769968370429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400983", + "createdBy": null, + "createdTime": "2026-02-02 01:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:28", + "echoMap": {}, + "alarmNo": "1470194635", + "alarmDate": "1769968347321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400979", + "createdBy": null, + "createdTime": "2026-02-02 01:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:17", + "echoMap": {}, + "alarmNo": "1470194634", + "alarmDate": "1769968336486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400975", + "createdBy": null, + "createdTime": "2026-02-02 01:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:05", + "echoMap": {}, + "alarmNo": "1470194633", + "alarmDate": "1769968324314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112805768400971", + "createdBy": null, + "createdTime": "2026-02-02 01:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:01", + "echoMap": {}, + "alarmNo": "1470194632", + "alarmDate": "1769968319703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433619", + "createdBy": null, + "createdTime": "2026-02-02 01:42:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:56", + "echoMap": {}, + "alarmNo": "1470194631", + "alarmDate": "1769967775138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433615", + "createdBy": null, + "createdTime": "2026-02-02 01:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:53", + "echoMap": {}, + "alarmNo": "1470194630", + "alarmDate": "1769967772454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433610", + "createdBy": null, + "createdTime": "2026-02-02 01:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:30", + "echoMap": {}, + "alarmNo": "1470194629", + "alarmDate": "1769967748717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433606", + "createdBy": null, + "createdTime": "2026-02-02 01:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:18", + "echoMap": {}, + "alarmNo": "1470194628", + "alarmDate": "1769967736525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112801473433602", + "createdBy": null, + "createdTime": "2026-02-02 01:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:10", + "echoMap": {}, + "alarmNo": "1470194627", + "alarmDate": "1769967729405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112797178466338", + "createdBy": null, + "createdTime": "2026-02-02 01:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:20", + "echoMap": {}, + "alarmNo": "1470194626", + "alarmDate": "1769967138755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112797178466328", + "createdBy": null, + "createdTime": "2026-02-02 01:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:13", + "echoMap": {}, + "alarmNo": "1470194625", + "alarmDate": "1769967126277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112788588531826", + "createdBy": null, + "createdTime": "2026-02-02 01:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:38", + "echoMap": {}, + "alarmNo": "1470194624", + "alarmDate": "1769966556767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112788588531821", + "createdBy": null, + "createdTime": "2026-02-02 01:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:21", + "echoMap": {}, + "alarmNo": "1470194623", + "alarmDate": "1769966539896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112788588531816", + "createdBy": null, + "createdTime": "2026-02-02 01:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:17", + "echoMap": {}, + "alarmNo": "1470194622", + "alarmDate": "1769966536466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564461", + "createdBy": null, + "createdTime": "2026-02-02 01:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:47", + "echoMap": {}, + "alarmNo": "1470194621", + "alarmDate": "1769965965943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564457", + "createdBy": null, + "createdTime": "2026-02-02 01:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:36", + "echoMap": {}, + "alarmNo": "1470194620", + "alarmDate": "1769965954625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564453", + "createdBy": null, + "createdTime": "2026-02-02 01:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:31", + "echoMap": {}, + "alarmNo": "1470194619", + "alarmDate": "1769965950202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112784293564449", + "createdBy": null, + "createdTime": "2026-02-02 01:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:19", + "echoMap": {}, + "alarmNo": "1470194618", + "alarmDate": "1769965938513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112779998597174", + "createdBy": null, + "createdTime": "2026-02-02 01:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:37", + "echoMap": {}, + "alarmNo": "1470194617", + "alarmDate": "1769965356030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112779998597164", + "createdBy": null, + "createdTime": "2026-02-02 01:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:18", + "echoMap": {}, + "alarmNo": "1470194616", + "alarmDate": "1769965331550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060023", + "deviceName": "[319](10)交大5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112779998597146", + "createdBy": null, + "createdTime": "2026-02-02 01:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:06", + "echoMap": {}, + "alarmNo": "1470194615", + "alarmDate": "1769965325125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662644", + "createdBy": null, + "createdTime": "2026-02-02 00:52:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:59", + "echoMap": {}, + "alarmNo": "1470194614", + "alarmDate": "1769964778038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662631", + "createdBy": null, + "createdTime": "2026-02-02 00:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:41", + "echoMap": {}, + "alarmNo": "1470194613", + "alarmDate": "1769964759976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662627", + "createdBy": null, + "createdTime": "2026-02-02 00:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:33", + "echoMap": {}, + "alarmNo": "1470194612", + "alarmDate": "1769964751696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662623", + "createdBy": null, + "createdTime": "2026-02-02 00:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:14", + "echoMap": {}, + "alarmNo": "1470194611", + "alarmDate": "1769964733352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662613", + "createdBy": null, + "createdTime": "2026-02-02 00:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:02", + "echoMap": {}, + "alarmNo": "1470194610", + "alarmDate": "1769964720932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112771408662610", + "createdBy": null, + "createdTime": "2026-02-02 00:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:07", + "echoMap": {}, + "alarmNo": "1470194609", + "alarmDate": "1769964720813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695252", + "createdBy": null, + "createdTime": "2026-02-02 00:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:52", + "echoMap": {}, + "alarmNo": "1470194608", + "alarmDate": "1769964170729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695248", + "createdBy": null, + "createdTime": "2026-02-02 00:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:50", + "echoMap": {}, + "alarmNo": "1470194607", + "alarmDate": "1769964169441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695244", + "createdBy": null, + "createdTime": "2026-02-02 00:42:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:29", + "echoMap": {}, + "alarmNo": "1470194606", + "alarmDate": "1769964147632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112767113695235", + "createdBy": null, + "createdTime": "2026-02-02 00:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:20", + "echoMap": {}, + "alarmNo": "1470194605", + "alarmDate": "1769964133469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112762818728064", + "createdBy": null, + "createdTime": "2026-02-02 00:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:02", + "echoMap": {}, + "alarmNo": "1470194604", + "alarmDate": "1769964121360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760691", + "createdBy": null, + "createdTime": "2026-02-02 00:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:54", + "echoMap": {}, + "alarmNo": "1470194603", + "alarmDate": "1769963573218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760685", + "createdBy": null, + "createdTime": "2026-02-02 00:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:55", + "echoMap": {}, + "alarmNo": "1470194602", + "alarmDate": "1769963569243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760675", + "createdBy": null, + "createdTime": "2026-02-02 00:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:31", + "echoMap": {}, + "alarmNo": "1470194601", + "alarmDate": "1769963545214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760672", + "createdBy": null, + "createdTime": "2026-02-02 00:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:25", + "echoMap": {}, + "alarmNo": "1470194600", + "alarmDate": "1769963544403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112758523760668", + "createdBy": null, + "createdTime": "2026-02-02 00:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:07", + "echoMap": {}, + "alarmNo": "1470194599", + "alarmDate": "1769963526427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793407", + "createdBy": null, + "createdTime": "2026-02-02 00:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:45", + "echoMap": {}, + "alarmNo": "1470194598", + "alarmDate": "1769962963839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793399", + "createdBy": null, + "createdTime": "2026-02-02 00:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:44", + "echoMap": {}, + "alarmNo": "1470194597", + "alarmDate": "1769962958053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060063", + "deviceName": "[310](10)交大4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793386", + "createdBy": null, + "createdTime": "2026-02-02 00:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:35", + "echoMap": {}, + "alarmNo": "1470194596", + "alarmDate": "1769962953694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793375", + "createdBy": null, + "createdTime": "2026-02-02 00:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:19", + "echoMap": {}, + "alarmNo": "1470194595", + "alarmDate": "1769962938096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060024", + "deviceName": "[210](10)交大5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112754228793371", + "createdBy": null, + "createdTime": "2026-02-02 00:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:18", + "echoMap": {}, + "alarmNo": "1470194594", + "alarmDate": "1769962936714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060083", + "deviceName": "[205](10)交大上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112741343891507", + "createdBy": null, + "createdTime": "2026-02-02 00:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:37", + "echoMap": {}, + "alarmNo": "1470194593", + "alarmDate": "1769962355731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060036", + "deviceName": "[202](10)交大厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112741343891502", + "createdBy": null, + "createdTime": "2026-02-02 00:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:18", + "echoMap": {}, + "alarmNo": "1470194592", + "alarmDate": "1769962336644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060058", + "deviceName": "[201](10)交大厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989676", + "createdBy": null, + "createdTime": "2026-02-02 00:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:46", + "echoMap": {}, + "alarmNo": "1470194591", + "alarmDate": "1769961764595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060077", + "deviceName": "[206](10)交大上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989672", + "createdBy": null, + "createdTime": "2026-02-02 00:02:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:28", + "echoMap": {}, + "alarmNo": "1470194590", + "alarmDate": "1769961746591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060070", + "deviceName": "[207](10)交大下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989667", + "createdBy": null, + "createdTime": "2026-02-02 00:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:03", + "echoMap": {}, + "alarmNo": "1470194589", + "alarmDate": "1769961722141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060052", + "deviceName": "[203](10)交大厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + }, + { + "id": "723112728458989663", + "createdBy": null, + "createdTime": "2026-02-02 00:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:02", + "echoMap": {}, + "alarmNo": "1470194588", + "alarmDate": "1769961720961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1010060081", + "deviceName": "[208](10)交大下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1010" + } + ] + }, + "1011": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112908848252071", + "createdBy": null, + "createdTime": "2026-02-02 00:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:44", + "echoMap": {}, + "alarmNo": "1490181844", + "alarmDate": "1769961643250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112908848252122", + "createdBy": null, + "createdTime": "2026-02-02 00:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:05", + "echoMap": {}, + "alarmNo": "1490181845", + "alarmDate": "1769961652761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112917438186537", + "createdBy": null, + "createdTime": "2026-02-02 00:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:29", + "echoMap": {}, + "alarmNo": "1490181846", + "alarmDate": "1769961676747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112917438186574", + "createdBy": null, + "createdTime": "2026-02-02 00:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:56", + "echoMap": {}, + "alarmNo": "1490181847", + "alarmDate": "1769961682142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112926028121168", + "createdBy": null, + "createdTime": "2026-02-02 00:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:47", + "echoMap": {}, + "alarmNo": "1490181848", + "alarmDate": "1769962247487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112926028121169", + "createdBy": null, + "createdTime": "2026-02-02 00:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:58", + "echoMap": {}, + "alarmNo": "1490181849", + "alarmDate": "1769962247490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112926028121296", + "createdBy": null, + "createdTime": "2026-02-02 00:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:22", + "echoMap": {}, + "alarmNo": "1490181850", + "alarmDate": "1769962270189", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112934618055720", + "createdBy": null, + "createdTime": "2026-02-02 00:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:52", + "echoMap": {}, + "alarmNo": "1490181851", + "alarmDate": "1769962294645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990352", + "createdBy": null, + "createdTime": "2026-02-02 00:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:16", + "echoMap": {}, + "alarmNo": "1490181852", + "alarmDate": "1769962864078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990438", + "createdBy": null, + "createdTime": "2026-02-02 00:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:19", + "echoMap": {}, + "alarmNo": "1490181853", + "alarmDate": "1769962878395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990447", + "createdBy": null, + "createdTime": "2026-02-02 00:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:21", + "echoMap": {}, + "alarmNo": "1490181854", + "alarmDate": "1769962879367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990500", + "createdBy": null, + "createdTime": "2026-02-02 00:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:40", + "echoMap": {}, + "alarmNo": "1490181855", + "alarmDate": "1769962888788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797924960", + "createdBy": null, + "createdTime": "2026-02-02 00:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:47", + "echoMap": {}, + "alarmNo": "1490181856", + "alarmDate": "1769963444855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797924999", + "createdBy": null, + "createdTime": "2026-02-02 00:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:04", + "echoMap": {}, + "alarmNo": "1490181857", + "alarmDate": "1769963451938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797925014", + "createdBy": null, + "createdTime": "2026-02-02 00:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:55", + "echoMap": {}, + "alarmNo": "1490181858", + "alarmDate": "1769963453863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797925038", + "createdBy": null, + "createdTime": "2026-02-02 00:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:20", + "echoMap": {}, + "alarmNo": "1490181859", + "alarmDate": "1769963457731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797925129", + "createdBy": null, + "createdTime": "2026-02-02 00:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:28", + "echoMap": {}, + "alarmNo": "1490181860", + "alarmDate": "1769963476030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112956092892186", + "createdBy": null, + "createdTime": "2026-02-02 00:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:37", + "echoMap": {}, + "alarmNo": "1490181861", + "alarmDate": "1769963482164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112960387859649", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:57", + "echoMap": {}, + "alarmNo": "1490181862", + "alarmDate": "1769964044715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112968977794054", + "createdBy": null, + "createdTime": "2026-02-02 00:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:21", + "echoMap": {}, + "alarmNo": "1490181863", + "alarmDate": "1769964068840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112968977794190", + "createdBy": null, + "createdTime": "2026-02-02 00:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:50", + "echoMap": {}, + "alarmNo": "1490181864", + "alarmDate": "1769964092838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112968977794219", + "createdBy": null, + "createdTime": "2026-02-02 00:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:49", + "echoMap": {}, + "alarmNo": "1490181865", + "alarmDate": "1769964097324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728707", + "createdBy": null, + "createdTime": "2026-02-02 00:50:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:00", + "echoMap": {}, + "alarmNo": "1490181866", + "alarmDate": "1769964658726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728727", + "createdBy": null, + "createdTime": "2026-02-02 00:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:14", + "echoMap": {}, + "alarmNo": "1490181867", + "alarmDate": "1769964662087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728798", + "createdBy": null, + "createdTime": "2026-02-02 00:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:13", + "echoMap": {}, + "alarmNo": "1490181868", + "alarmDate": "1769964671810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728877", + "createdBy": null, + "createdTime": "2026-02-02 00:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:02", + "echoMap": {}, + "alarmNo": "1490181869", + "alarmDate": "1769964686151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112981862695948", + "createdBy": null, + "createdTime": "2026-02-02 00:51:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:33", + "echoMap": {}, + "alarmNo": "1490181870", + "alarmDate": "1769964692178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112986157663326", + "createdBy": null, + "createdTime": "2026-02-02 01:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:42", + "echoMap": {}, + "alarmNo": "1490181871", + "alarmDate": "1769965241412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112990452630530", + "createdBy": null, + "createdTime": "2026-02-02 01:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:26", + "echoMap": {}, + "alarmNo": "1490181872", + "alarmDate": "1769965274362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112994747598009", + "createdBy": null, + "createdTime": "2026-02-02 01:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:43", + "echoMap": {}, + "alarmNo": "1490181873", + "alarmDate": "1769965842196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112994747598024", + "createdBy": null, + "createdTime": "2026-02-02 01:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:56", + "echoMap": {}, + "alarmNo": "1490181874", + "alarmDate": "1769965844509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112994747598054", + "createdBy": null, + "createdTime": "2026-02-02 01:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:13", + "echoMap": {}, + "alarmNo": "1490181875", + "alarmDate": "1769965849234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113003337532437", + "createdBy": null, + "createdTime": "2026-02-02 01:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:20", + "echoMap": {}, + "alarmNo": "1490181876", + "alarmDate": "1769965867641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113003337532473", + "createdBy": null, + "createdTime": "2026-02-02 01:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:06", + "echoMap": {}, + "alarmNo": "1490181877", + "alarmDate": "1769965873370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113003337532559", + "createdBy": null, + "createdTime": "2026-02-02 01:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:31", + "echoMap": {}, + "alarmNo": "1490181878", + "alarmDate": "1769965890372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113007632499723", + "createdBy": null, + "createdTime": "2026-02-02 01:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:50", + "echoMap": {}, + "alarmNo": "1490181879", + "alarmDate": "1769966439792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467099", + "createdBy": null, + "createdTime": "2026-02-02 01:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:14", + "echoMap": {}, + "alarmNo": "1490181880", + "alarmDate": "1769966462054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467113", + "createdBy": null, + "createdTime": "2026-02-02 01:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:05", + "echoMap": {}, + "alarmNo": "1490181881", + "alarmDate": "1769966463629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467134", + "createdBy": null, + "createdTime": "2026-02-02 01:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:07", + "echoMap": {}, + "alarmNo": "1490181882", + "alarmDate": "1769966466432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467193", + "createdBy": null, + "createdTime": "2026-02-02 01:21:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:17", + "echoMap": {}, + "alarmNo": "1490181883", + "alarmDate": "1769966476107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467248", + "createdBy": null, + "createdTime": "2026-02-02 01:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:38", + "echoMap": {}, + "alarmNo": "1490181884", + "alarmDate": "1769966486063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113020517401762", + "createdBy": null, + "createdTime": "2026-02-02 01:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:01", + "echoMap": {}, + "alarmNo": "1490181885", + "alarmDate": "1769967055155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113024812368917", + "createdBy": null, + "createdTime": "2026-02-02 01:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:31", + "echoMap": {}, + "alarmNo": "1490181886", + "alarmDate": "1769967079262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113029107336381", + "createdBy": null, + "createdTime": "2026-02-02 01:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:00", + "echoMap": {}, + "alarmNo": "1490181887", + "alarmDate": "1769967641612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113029107336388", + "createdBy": null, + "createdTime": "2026-02-02 01:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:54", + "echoMap": {}, + "alarmNo": "1490181888", + "alarmDate": "1769967642388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113033402303497", + "createdBy": null, + "createdTime": "2026-02-02 01:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:19", + "echoMap": {}, + "alarmNo": "1490181889", + "alarmDate": "1769967666524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113037697270785", + "createdBy": null, + "createdTime": "2026-02-02 01:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:12", + "echoMap": {}, + "alarmNo": "1490181890", + "alarmDate": "1769967671368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113037697270912", + "createdBy": null, + "createdTime": "2026-02-02 01:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:48", + "echoMap": {}, + "alarmNo": "1490181891", + "alarmDate": "1769967690581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113041992238122", + "createdBy": null, + "createdTime": "2026-02-02 01:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:57", + "echoMap": {}, + "alarmNo": "1490181892", + "alarmDate": "1769968256397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205399", + "createdBy": null, + "createdTime": "2026-02-02 01:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:12", + "echoMap": {}, + "alarmNo": "1490181893", + "alarmDate": "1769968259659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205422", + "createdBy": null, + "createdTime": "2026-02-02 01:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:04", + "echoMap": {}, + "alarmNo": "1490181894", + "alarmDate": "1769968262955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205446", + "createdBy": null, + "createdTime": "2026-02-02 01:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:00", + "echoMap": {}, + "alarmNo": "1490181895", + "alarmDate": "1769968266560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205535", + "createdBy": null, + "createdTime": "2026-02-02 01:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:37", + "echoMap": {}, + "alarmNo": "1490181896", + "alarmDate": "1769968284723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140008", + "createdBy": null, + "createdTime": "2026-02-02 02:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:00", + "echoMap": {}, + "alarmNo": "1490181897", + "alarmDate": "1769968854001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140046", + "createdBy": null, + "createdTime": "2026-02-02 02:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:24", + "echoMap": {}, + "alarmNo": "1490181898", + "alarmDate": "1769968859955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140130", + "createdBy": null, + "createdTime": "2026-02-02 02:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:30", + "echoMap": {}, + "alarmNo": "1490181899", + "alarmDate": "1769968878060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140167", + "createdBy": null, + "createdTime": "2026-02-02 02:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:54", + "echoMap": {}, + "alarmNo": "1490181900", + "alarmDate": "1769968883989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113059172107276", + "createdBy": null, + "createdTime": "2026-02-02 02:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:53", + "echoMap": {}, + "alarmNo": "1490181901", + "alarmDate": "1769969441196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074592", + "createdBy": null, + "createdTime": "2026-02-02 02:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:54", + "echoMap": {}, + "alarmNo": "1490181902", + "alarmDate": "1769969453237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074600", + "createdBy": null, + "createdTime": "2026-02-02 02:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:18", + "echoMap": {}, + "alarmNo": "1490181903", + "alarmDate": "1769969454247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074647", + "createdBy": null, + "createdTime": "2026-02-02 02:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:17", + "echoMap": {}, + "alarmNo": "1490181904", + "alarmDate": "1769969465310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074727", + "createdBy": null, + "createdTime": "2026-02-02 02:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:54", + "echoMap": {}, + "alarmNo": "1490181905", + "alarmDate": "1769969478221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074785", + "createdBy": null, + "createdTime": "2026-02-02 02:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:47", + "echoMap": {}, + "alarmNo": "1490181906", + "alarmDate": "1769969489325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074838", + "createdBy": null, + "createdTime": "2026-02-02 02:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:39", + "echoMap": {}, + "alarmNo": "1490181907", + "alarmDate": "1769969498036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009197", + "createdBy": null, + "createdTime": "2026-02-02 02:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:50", + "echoMap": {}, + "alarmNo": "1490181908", + "alarmDate": "1769970049204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009221", + "createdBy": null, + "createdTime": "2026-02-02 02:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:54", + "echoMap": {}, + "alarmNo": "1490181909", + "alarmDate": "1769970052910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009252", + "createdBy": null, + "createdTime": "2026-02-02 02:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:11", + "echoMap": {}, + "alarmNo": "1490181910", + "alarmDate": "1769970058513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009264", + "createdBy": null, + "createdTime": "2026-02-02 02:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:01", + "echoMap": {}, + "alarmNo": "1490181911", + "alarmDate": "1769970060013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009394", + "createdBy": null, + "createdTime": "2026-02-02 02:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:35", + "echoMap": {}, + "alarmNo": "1490181912", + "alarmDate": "1769970082601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646943774", + "createdBy": null, + "createdTime": "2026-02-02 02:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:42", + "echoMap": {}, + "alarmNo": "1490181913", + "alarmDate": "1769970641209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646943845", + "createdBy": null, + "createdTime": "2026-02-02 02:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:05", + "echoMap": {}, + "alarmNo": "1490181914", + "alarmDate": "1769970652775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646943979", + "createdBy": null, + "createdTime": "2026-02-02 02:31:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:13", + "echoMap": {}, + "alarmNo": "1490181915", + "alarmDate": "1769970672244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646944010", + "createdBy": null, + "createdTime": "2026-02-02 02:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:29", + "echoMap": {}, + "alarmNo": "1490181916", + "alarmDate": "1769970676872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113084941911043", + "createdBy": null, + "createdTime": "2026-02-02 02:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:28", + "echoMap": {}, + "alarmNo": "1490181917", + "alarmDate": "1769970686996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113089236878449", + "createdBy": null, + "createdTime": "2026-02-02 02:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:52", + "echoMap": {}, + "alarmNo": "1490181918", + "alarmDate": "1769971240074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113089236878554", + "createdBy": null, + "createdTime": "2026-02-02 02:40:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:36", + "echoMap": {}, + "alarmNo": "1490181919", + "alarmDate": "1769971254173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113089236878607", + "createdBy": null, + "createdTime": "2026-02-02 02:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:16", + "echoMap": {}, + "alarmNo": "1490181920", + "alarmDate": "1769971264036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113097826812990", + "createdBy": null, + "createdTime": "2026-02-02 02:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:45", + "echoMap": {}, + "alarmNo": "1490181921", + "alarmDate": "1769971288190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113097826813011", + "createdBy": null, + "createdTime": "2026-02-02 02:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:32", + "echoMap": {}, + "alarmNo": "1490181922", + "alarmDate": "1769971290817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113097826813170", + "createdBy": null, + "createdTime": "2026-02-02 02:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:43", + "echoMap": {}, + "alarmNo": "1490181923", + "alarmDate": "1769971842059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113102121780266", + "createdBy": null, + "createdTime": "2026-02-02 02:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:09", + "echoMap": {}, + "alarmNo": "1490181924", + "alarmDate": "1769971857287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747553", + "createdBy": null, + "createdTime": "2026-02-02 02:51:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:05", + "echoMap": {}, + "alarmNo": "1490181925", + "alarmDate": "1769971863869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747650", + "createdBy": null, + "createdTime": "2026-02-02 02:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:33", + "echoMap": {}, + "alarmNo": "1490181926", + "alarmDate": "1769971881378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747735", + "createdBy": null, + "createdTime": "2026-02-02 02:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:41", + "echoMap": {}, + "alarmNo": "1490181927", + "alarmDate": "1769971895596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747861", + "createdBy": null, + "createdTime": "2026-02-02 03:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:58", + "echoMap": {}, + "alarmNo": "1490181928", + "alarmDate": "1769972444534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113115006682160", + "createdBy": null, + "createdTime": "2026-02-02 03:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:09", + "echoMap": {}, + "alarmNo": "1490181929", + "alarmDate": "1769972467635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113115006682173", + "createdBy": null, + "createdTime": "2026-02-02 03:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:22", + "echoMap": {}, + "alarmNo": "1490181930", + "alarmDate": "1769972469559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113115006682439", + "createdBy": null, + "createdTime": "2026-02-02 03:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:51", + "echoMap": {}, + "alarmNo": "1490181931", + "alarmDate": "1769973039925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113119301649495", + "createdBy": null, + "createdTime": "2026-02-02 03:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:15", + "echoMap": {}, + "alarmNo": "1490181932", + "alarmDate": "1769973062804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113123596616794", + "createdBy": null, + "createdTime": "2026-02-02 03:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:24", + "echoMap": {}, + "alarmNo": "1490181933", + "alarmDate": "1769973082671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113123596616818", + "createdBy": null, + "createdTime": "2026-02-02 03:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:08", + "echoMap": {}, + "alarmNo": "1490181934", + "alarmDate": "1769973086907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113127891584032", + "createdBy": null, + "createdTime": "2026-02-02 03:21:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:10", + "echoMap": {}, + "alarmNo": "1490181935", + "alarmDate": "1769973668683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113127891584093", + "createdBy": null, + "createdTime": "2026-02-02 03:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:32", + "echoMap": {}, + "alarmNo": "1490181936", + "alarmDate": "1769973680183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551324", + "createdBy": null, + "createdTime": "2026-02-02 03:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:36", + "echoMap": {}, + "alarmNo": "1490181937", + "alarmDate": "1769973694757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551346", + "createdBy": null, + "createdTime": "2026-02-02 03:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:40", + "echoMap": {}, + "alarmNo": "1490181938", + "alarmDate": "1769973699407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551443", + "createdBy": null, + "createdTime": "2026-02-02 03:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:59", + "echoMap": {}, + "alarmNo": "1490181939", + "alarmDate": "1769974240833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551459", + "createdBy": null, + "createdTime": "2026-02-02 03:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:56", + "echoMap": {}, + "alarmNo": "1490181940", + "alarmDate": "1769974244395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551465", + "createdBy": null, + "createdTime": "2026-02-02 03:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:46", + "echoMap": {}, + "alarmNo": "1490181941", + "alarmDate": "1769974244901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551481", + "createdBy": null, + "createdTime": "2026-02-02 03:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:49", + "echoMap": {}, + "alarmNo": "1490181942", + "alarmDate": "1769974247594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551636", + "createdBy": null, + "createdTime": "2026-02-02 03:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:26", + "echoMap": {}, + "alarmNo": "1490181943", + "alarmDate": "1769974274498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486013", + "createdBy": null, + "createdTime": "2026-02-02 03:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:50", + "echoMap": {}, + "alarmNo": "1490181944", + "alarmDate": "1769974839619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486115", + "createdBy": null, + "createdTime": "2026-02-02 03:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:23", + "echoMap": {}, + "alarmNo": "1490181945", + "alarmDate": "1769974859330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486127", + "createdBy": null, + "createdTime": "2026-02-02 03:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:14", + "echoMap": {}, + "alarmNo": "1490181946", + "alarmDate": "1769974861633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486202", + "createdBy": null, + "createdTime": "2026-02-02 03:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:16", + "echoMap": {}, + "alarmNo": "1490181947", + "alarmDate": "1769974875426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486251", + "createdBy": null, + "createdTime": "2026-02-02 03:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1490181948", + "alarmDate": "1769974884148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113145071453184", + "createdBy": null, + "createdTime": "2026-02-02 03:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:38", + "echoMap": {}, + "alarmNo": "1490181949", + "alarmDate": "1769974885674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420606", + "createdBy": null, + "createdTime": "2026-02-02 03:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:43", + "echoMap": {}, + "alarmNo": "1490181950", + "alarmDate": "1769975439813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420680", + "createdBy": null, + "createdTime": "2026-02-02 03:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:17", + "echoMap": {}, + "alarmNo": "1490181951", + "alarmDate": "1769975453534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420692", + "createdBy": null, + "createdTime": "2026-02-02 03:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:07", + "echoMap": {}, + "alarmNo": "1490181952", + "alarmDate": "1769975455874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420766", + "createdBy": null, + "createdTime": "2026-02-02 03:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:11", + "echoMap": {}, + "alarmNo": "1490181953", + "alarmDate": "1769975469590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420810", + "createdBy": null, + "createdTime": "2026-02-02 03:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:11", + "echoMap": {}, + "alarmNo": "1490181954", + "alarmDate": "1769975477562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420817", + "createdBy": null, + "createdTime": "2026-02-02 03:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:31", + "echoMap": {}, + "alarmNo": "1490181955", + "alarmDate": "1769975478913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420824", + "createdBy": null, + "createdTime": "2026-02-02 03:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:21", + "echoMap": {}, + "alarmNo": "1490181956", + "alarmDate": "1769975479643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420829", + "createdBy": null, + "createdTime": "2026-02-02 03:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:21", + "echoMap": {}, + "alarmNo": "1490181957", + "alarmDate": "1769975480260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113157956355189", + "createdBy": null, + "createdTime": "2026-02-02 04:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:55", + "echoMap": {}, + "alarmNo": "1490181958", + "alarmDate": "1769976043140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113157956355371", + "createdBy": null, + "createdTime": "2026-02-02 04:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:35", + "echoMap": {}, + "alarmNo": "1490181959", + "alarmDate": "1769976070852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113157956355384", + "createdBy": null, + "createdTime": "2026-02-02 04:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:19", + "echoMap": {}, + "alarmNo": "1490181960", + "alarmDate": "1769976073195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289674", + "createdBy": null, + "createdTime": "2026-02-02 04:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:29", + "echoMap": {}, + "alarmNo": "1490181961", + "alarmDate": "1769976094859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289687", + "createdBy": null, + "createdTime": "2026-02-02 04:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:48", + "echoMap": {}, + "alarmNo": "1490181962", + "alarmDate": "1769976097308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289922", + "createdBy": null, + "createdTime": "2026-02-02 04:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:12", + "echoMap": {}, + "alarmNo": "1490181963", + "alarmDate": "1769976660347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289981", + "createdBy": null, + "createdTime": "2026-02-02 04:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:09", + "echoMap": {}, + "alarmNo": "1490181964", + "alarmDate": "1769976668297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224262", + "createdBy": null, + "createdTime": "2026-02-02 04:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:36", + "echoMap": {}, + "alarmNo": "1490181965", + "alarmDate": "1769976684466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224298", + "createdBy": null, + "createdTime": "2026-02-02 04:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:23", + "echoMap": {}, + "alarmNo": "1490181966", + "alarmDate": "1769976689264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224434", + "createdBy": null, + "createdTime": "2026-02-02 04:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:42", + "echoMap": {}, + "alarmNo": "1490181967", + "alarmDate": "1769977239686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224522", + "createdBy": null, + "createdTime": "2026-02-02 04:20:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:06", + "echoMap": {}, + "alarmNo": "1490181968", + "alarmDate": "1769977253656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224580", + "createdBy": null, + "createdTime": "2026-02-02 04:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:03", + "echoMap": {}, + "alarmNo": "1490181969", + "alarmDate": "1769977261545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224593", + "createdBy": null, + "createdTime": "2026-02-02 04:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:04", + "echoMap": {}, + "alarmNo": "1490181970", + "alarmDate": "1769977263186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113183726158881", + "createdBy": null, + "createdTime": "2026-02-02 04:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:30", + "echoMap": {}, + "alarmNo": "1490181971", + "alarmDate": "1769977277681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113183726158933", + "createdBy": null, + "createdTime": "2026-02-02 04:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:17", + "echoMap": {}, + "alarmNo": "1490181972", + "alarmDate": "1769977283449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113192316093695", + "createdBy": null, + "createdTime": "2026-02-02 04:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:02", + "echoMap": {}, + "alarmNo": "1490181973", + "alarmDate": "1769978461109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113196611060774", + "createdBy": null, + "createdTime": "2026-02-02 04:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:38", + "echoMap": {}, + "alarmNo": "1490181974", + "alarmDate": "1769978496836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113200906028133", + "createdBy": null, + "createdTime": "2026-02-02 04:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:07", + "echoMap": {}, + "alarmNo": "1490181975", + "alarmDate": "1769979041337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113200906028149", + "createdBy": null, + "createdTime": "2026-02-02 04:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:45", + "echoMap": {}, + "alarmNo": "1490181976", + "alarmDate": "1769979043989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113200906028379", + "createdBy": null, + "createdTime": "2026-02-02 04:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:33", + "echoMap": {}, + "alarmNo": "1490181977", + "alarmDate": "1769979091491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113209495962976", + "createdBy": null, + "createdTime": "2026-02-02 05:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:55", + "echoMap": {}, + "alarmNo": "1490181978", + "alarmDate": "1769980253880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897225", + "createdBy": null, + "createdTime": "2026-02-02 05:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:19", + "echoMap": {}, + "alarmNo": "1490181979", + "alarmDate": "1769980277609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897403", + "createdBy": null, + "createdTime": "2026-02-02 05:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:41", + "echoMap": {}, + "alarmNo": "1490181980", + "alarmDate": "1769980839902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897415", + "createdBy": null, + "createdTime": "2026-02-02 05:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:01", + "echoMap": {}, + "alarmNo": "1490181981", + "alarmDate": "1769980842072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897501", + "createdBy": null, + "createdTime": "2026-02-02 05:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:05", + "echoMap": {}, + "alarmNo": "1490181982", + "alarmDate": "1769980858892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113222380864554", + "createdBy": null, + "createdTime": "2026-02-02 05:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:27", + "echoMap": {}, + "alarmNo": "1490181983", + "alarmDate": "1769980881202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113222380864565", + "createdBy": null, + "createdTime": "2026-02-02 05:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:29", + "echoMap": {}, + "alarmNo": "1490181984", + "alarmDate": "1769980882871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675831980", + "createdBy": null, + "createdTime": "2026-02-02 05:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:55", + "echoMap": {}, + "alarmNo": "1490181985", + "alarmDate": "1769981442452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675832001", + "createdBy": null, + "createdTime": "2026-02-02 05:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:58", + "echoMap": {}, + "alarmNo": "1490181986", + "alarmDate": "1769981446090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675832121", + "createdBy": null, + "createdTime": "2026-02-02 05:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:22", + "echoMap": {}, + "alarmNo": "1490181987", + "alarmDate": "1769981470137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675832145", + "createdBy": null, + "createdTime": "2026-02-02 05:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:21", + "echoMap": {}, + "alarmNo": "1490181988", + "alarmDate": "1769981474506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766422", + "createdBy": null, + "createdTime": "2026-02-02 05:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:35", + "echoMap": {}, + "alarmNo": "1490181989", + "alarmDate": "1769981494441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766533", + "createdBy": null, + "createdTime": "2026-02-02 05:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:52", + "echoMap": {}, + "alarmNo": "1490181990", + "alarmDate": "1769982040290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766537", + "createdBy": null, + "createdTime": "2026-02-02 05:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:49", + "echoMap": {}, + "alarmNo": "1490181991", + "alarmDate": "1769982040742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766575", + "createdBy": null, + "createdTime": "2026-02-02 05:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:48", + "echoMap": {}, + "alarmNo": "1490181992", + "alarmDate": "1769982046597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766644", + "createdBy": null, + "createdTime": "2026-02-02 05:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:02", + "echoMap": {}, + "alarmNo": "1490181993", + "alarmDate": "1769982060506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766664", + "createdBy": null, + "createdTime": "2026-02-02 05:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:17", + "echoMap": {}, + "alarmNo": "1490181994", + "alarmDate": "1769982064380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766683", + "createdBy": null, + "createdTime": "2026-02-02 05:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:20", + "echoMap": {}, + "alarmNo": "1490181995", + "alarmDate": "1769982067950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113239560733725", + "createdBy": null, + "createdTime": "2026-02-02 05:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:55", + "echoMap": {}, + "alarmNo": "1490181996", + "alarmDate": "1769982095391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113239560733744", + "createdBy": null, + "createdTime": "2026-02-02 05:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:13", + "echoMap": {}, + "alarmNo": "1490181997", + "alarmDate": "1769982098968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113243855701250", + "createdBy": null, + "createdTime": "2026-02-02 05:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:19", + "echoMap": {}, + "alarmNo": "1490181998", + "alarmDate": "1769982672725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113243855701341", + "createdBy": null, + "createdTime": "2026-02-02 05:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:16", + "echoMap": {}, + "alarmNo": "1490181999", + "alarmDate": "1769982693172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113243855701367", + "createdBy": null, + "createdTime": "2026-02-02 05:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:57", + "echoMap": {}, + "alarmNo": "1490182000", + "alarmDate": "1769982697620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635718", + "createdBy": null, + "createdTime": "2026-02-02 06:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:21", + "echoMap": {}, + "alarmNo": "1490182001", + "alarmDate": "1769983274940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635766", + "createdBy": null, + "createdTime": "2026-02-02 06:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:28", + "echoMap": {}, + "alarmNo": "1490182002", + "alarmDate": "1769983287280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635791", + "createdBy": null, + "createdTime": "2026-02-02 06:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:09", + "echoMap": {}, + "alarmNo": "1490182003", + "alarmDate": "1769983294519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635810", + "createdBy": null, + "createdTime": "2026-02-02 06:01:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:59", + "echoMap": {}, + "alarmNo": "1490182004", + "alarmDate": "1769983298853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635954", + "createdBy": null, + "createdTime": "2026-02-02 06:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:51", + "echoMap": {}, + "alarmNo": "1490182005", + "alarmDate": "1769983850438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570194", + "createdBy": null, + "createdTime": "2026-02-02 06:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:23", + "echoMap": {}, + "alarmNo": "1490182006", + "alarmDate": "1769983877214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570373", + "createdBy": null, + "createdTime": "2026-02-02 06:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:53", + "echoMap": {}, + "alarmNo": "1490182007", + "alarmDate": "1769984441341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570457", + "createdBy": null, + "createdTime": "2026-02-02 06:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:10", + "echoMap": {}, + "alarmNo": "1490182008", + "alarmDate": "1769984464148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570488", + "createdBy": null, + "createdTime": "2026-02-02 06:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:17", + "echoMap": {}, + "alarmNo": "1490182009", + "alarmDate": "1769984471455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570534", + "createdBy": null, + "createdTime": "2026-02-02 06:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:56", + "echoMap": {}, + "alarmNo": "1490182010", + "alarmDate": "1769984483151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113265330537506", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:47", + "echoMap": {}, + "alarmNo": "1490182011", + "alarmDate": "1769984495485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625504920", + "createdBy": null, + "createdTime": "2026-02-02 06:30:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:50", + "echoMap": {}, + "alarmNo": "1490182012", + "alarmDate": "1769985049148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625504960", + "createdBy": null, + "createdTime": "2026-02-02 06:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:12", + "echoMap": {}, + "alarmNo": "1490182013", + "alarmDate": "1769985058689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625504973", + "createdBy": null, + "createdTime": "2026-02-02 06:31:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:02", + "echoMap": {}, + "alarmNo": "1490182014", + "alarmDate": "1769985061501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060055", + "deviceName": "[210](10)图书馆2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505009", + "createdBy": null, + "createdTime": "2026-02-02 06:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:30", + "echoMap": {}, + "alarmNo": "1490182015", + "alarmDate": "1769985069453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505058", + "createdBy": null, + "createdTime": "2026-02-02 06:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:21", + "echoMap": {}, + "alarmNo": "1490182016", + "alarmDate": "1769985080067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505098", + "createdBy": null, + "createdTime": "2026-02-02 06:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:30", + "echoMap": {}, + "alarmNo": "1490182017", + "alarmDate": "1769985089066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505107", + "createdBy": null, + "createdTime": "2026-02-02 06:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:50", + "echoMap": {}, + "alarmNo": "1490182018", + "alarmDate": "1769985090732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439398", + "createdBy": null, + "createdTime": "2026-02-02 06:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:42", + "echoMap": {}, + "alarmNo": "1490182019", + "alarmDate": "1769985641318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439549", + "createdBy": null, + "createdTime": "2026-02-02 06:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:29", + "echoMap": {}, + "alarmNo": "1490182020", + "alarmDate": "1769985683576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439581", + "createdBy": null, + "createdTime": "2026-02-02 06:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:43", + "echoMap": {}, + "alarmNo": "1490182021", + "alarmDate": "1769985692014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439703", + "createdBy": null, + "createdTime": "2026-02-02 06:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1490182022", + "alarmDate": "1769986239742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439710", + "createdBy": null, + "createdTime": "2026-02-02 06:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:53", + "echoMap": {}, + "alarmNo": "1490182023", + "alarmDate": "1769986240993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113282510406674", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:14", + "echoMap": {}, + "alarmNo": "1490182024", + "alarmDate": "1769986255227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805373958", + "createdBy": null, + "createdTime": "2026-02-02 06:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:16", + "echoMap": {}, + "alarmNo": "1490182025", + "alarmDate": "1769986262919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805373962", + "createdBy": null, + "createdTime": "2026-02-02 06:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:04", + "echoMap": {}, + "alarmNo": "1490182026", + "alarmDate": "1769986263209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374010", + "createdBy": null, + "createdTime": "2026-02-02 06:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:31", + "echoMap": {}, + "alarmNo": "1490182027", + "alarmDate": "1769986272054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374071", + "createdBy": null, + "createdTime": "2026-02-02 06:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:26", + "echoMap": {}, + "alarmNo": "1490182028", + "alarmDate": "1769986284832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374086", + "createdBy": null, + "createdTime": "2026-02-02 06:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:54", + "echoMap": {}, + "alarmNo": "1490182029", + "alarmDate": "1769986287294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374119", + "createdBy": null, + "createdTime": "2026-02-02 06:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:54", + "echoMap": {}, + "alarmNo": "1490182030", + "alarmDate": "1769986293879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374328", + "createdBy": null, + "createdTime": "2026-02-02 07:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:18", + "echoMap": {}, + "alarmNo": "1490182031", + "alarmDate": "1769986865553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113291100341272", + "createdBy": null, + "createdTime": "2026-02-02 07:01:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:18", + "echoMap": {}, + "alarmNo": "1490182032", + "alarmDate": "1769986872152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113291100341278", + "createdBy": null, + "createdTime": "2026-02-02 07:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:14", + "echoMap": {}, + "alarmNo": "1490182033", + "alarmDate": "1769986872830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308548", + "createdBy": null, + "createdTime": "2026-02-02 07:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:19", + "echoMap": {}, + "alarmNo": "1490182034", + "alarmDate": "1769986877865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308588", + "createdBy": null, + "createdTime": "2026-02-02 07:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:48", + "echoMap": {}, + "alarmNo": "1490182035", + "alarmDate": "1769986889506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308617", + "createdBy": null, + "createdTime": "2026-02-02 07:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:36", + "echoMap": {}, + "alarmNo": "1490182036", + "alarmDate": "1769986896176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308788", + "createdBy": null, + "createdTime": "2026-02-02 07:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:12", + "echoMap": {}, + "alarmNo": "1490182037", + "alarmDate": "1769987459820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308878", + "createdBy": null, + "createdTime": "2026-02-02 07:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:37", + "echoMap": {}, + "alarmNo": "1490182038", + "alarmDate": "1769987483881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243219", + "createdBy": null, + "createdTime": "2026-02-02 07:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:51", + "echoMap": {}, + "alarmNo": "1490182039", + "alarmDate": "1769988040008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243285", + "createdBy": null, + "createdTime": "2026-02-02 07:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:02", + "echoMap": {}, + "alarmNo": "1490182040", + "alarmDate": "1769988061103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243322", + "createdBy": null, + "createdTime": "2026-02-02 07:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:18", + "echoMap": {}, + "alarmNo": "1490182041", + "alarmDate": "1769988076709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243361", + "createdBy": null, + "createdTime": "2026-02-02 07:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:59", + "echoMap": {}, + "alarmNo": "1490182042", + "alarmDate": "1769988094140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113308280210440", + "createdBy": null, + "createdTime": "2026-02-02 07:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:09", + "echoMap": {}, + "alarmNo": "1490182043", + "alarmDate": "1769988663113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113308280210450", + "createdBy": null, + "createdTime": "2026-02-02 07:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:07", + "echoMap": {}, + "alarmNo": "1490182044", + "alarmDate": "1769988665598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575177738", + "createdBy": null, + "createdTime": "2026-02-02 07:31:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:15", + "echoMap": {}, + "alarmNo": "1490182045", + "alarmDate": "1769988673808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575177787", + "createdBy": null, + "createdTime": "2026-02-02 07:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:54", + "echoMap": {}, + "alarmNo": "1490182046", + "alarmDate": "1769988695441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575177951", + "createdBy": null, + "createdTime": "2026-02-02 07:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:19", + "echoMap": {}, + "alarmNo": "1490182047", + "alarmDate": "1769989265611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575178033", + "createdBy": null, + "createdTime": "2026-02-02 07:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:56", + "echoMap": {}, + "alarmNo": "1490182048", + "alarmDate": "1769989297654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112393", + "createdBy": null, + "createdTime": "2026-02-02 07:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:08", + "echoMap": {}, + "alarmNo": "1490182049", + "alarmDate": "1769989866979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112409", + "createdBy": null, + "createdTime": "2026-02-02 07:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:14", + "echoMap": {}, + "alarmNo": "1490182050", + "alarmDate": "1769989872666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112564", + "createdBy": null, + "createdTime": "2026-02-02 08:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:44", + "echoMap": {}, + "alarmNo": "1490182051", + "alarmDate": "1769990439992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112606", + "createdBy": null, + "createdTime": "2026-02-02 08:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:59", + "echoMap": {}, + "alarmNo": "1490182052", + "alarmDate": "1769990458403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112620", + "createdBy": null, + "createdTime": "2026-02-02 08:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:15", + "echoMap": {}, + "alarmNo": "1490182053", + "alarmDate": "1769990463139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112642", + "createdBy": null, + "createdTime": "2026-02-02 08:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:11", + "echoMap": {}, + "alarmNo": "1490182054", + "alarmDate": "1769990469764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112687", + "createdBy": null, + "createdTime": "2026-02-02 08:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:38", + "echoMap": {}, + "alarmNo": "1490182055", + "alarmDate": "1769990486153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755046969", + "createdBy": null, + "createdTime": "2026-02-02 08:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:32", + "echoMap": {}, + "alarmNo": "1490182056", + "alarmDate": "1769991050322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047213", + "createdBy": null, + "createdTime": "2026-02-02 08:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:49", + "echoMap": {}, + "alarmNo": "1490182057", + "alarmDate": "1769991642984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047218", + "createdBy": null, + "createdTime": "2026-02-02 08:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:27", + "echoMap": {}, + "alarmNo": "1490182058", + "alarmDate": "1769991643588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047313", + "createdBy": null, + "createdTime": "2026-02-02 08:21:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:14", + "echoMap": {}, + "alarmNo": "1490182059", + "alarmDate": "1769991672534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047332", + "createdBy": null, + "createdTime": "2026-02-02 08:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:18", + "echoMap": {}, + "alarmNo": "1490182060", + "alarmDate": "1769991676923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113334050014247", + "createdBy": null, + "createdTime": "2026-02-02 08:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:40", + "echoMap": {}, + "alarmNo": "1490182061", + "alarmDate": "1769991699101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981584", + "createdBy": null, + "createdTime": "2026-02-02 08:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:46", + "echoMap": {}, + "alarmNo": "1490182062", + "alarmDate": "1769992240269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981610", + "createdBy": null, + "createdTime": "2026-02-02 08:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:57", + "echoMap": {}, + "alarmNo": "1490182063", + "alarmDate": "1769992244832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981633", + "createdBy": null, + "createdTime": "2026-02-02 08:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:52", + "echoMap": {}, + "alarmNo": "1490182064", + "alarmDate": "1769992251244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981674", + "createdBy": null, + "createdTime": "2026-02-02 08:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:08", + "echoMap": {}, + "alarmNo": "1490182065", + "alarmDate": "1769992266615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981684", + "createdBy": null, + "createdTime": "2026-02-02 08:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:29", + "echoMap": {}, + "alarmNo": "1490182066", + "alarmDate": "1769992268958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981886", + "createdBy": null, + "createdTime": "2026-02-02 08:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:06", + "echoMap": {}, + "alarmNo": "1490182067", + "alarmDate": "1769992848190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113342639948828", + "createdBy": null, + "createdTime": "2026-02-02 08:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:34", + "echoMap": {}, + "alarmNo": "1490182068", + "alarmDate": "1769992875690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113342639948838", + "createdBy": null, + "createdTime": "2026-02-02 08:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:30", + "echoMap": {}, + "alarmNo": "1490182069", + "alarmDate": "1769992878224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916253", + "createdBy": null, + "createdTime": "2026-02-02 08:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:48", + "echoMap": {}, + "alarmNo": "1490182070", + "alarmDate": "1769993441938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916275", + "createdBy": null, + "createdTime": "2026-02-02 08:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:54", + "echoMap": {}, + "alarmNo": "1490182071", + "alarmDate": "1769993448450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916333", + "createdBy": null, + "createdTime": "2026-02-02 08:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:26", + "echoMap": {}, + "alarmNo": "1490182072", + "alarmDate": "1769993466601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916373", + "createdBy": null, + "createdTime": "2026-02-02 08:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:20", + "echoMap": {}, + "alarmNo": "1490182073", + "alarmDate": "1769993479423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113351229883406", + "createdBy": null, + "createdTime": "2026-02-02 08:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:27", + "echoMap": {}, + "alarmNo": "1490182074", + "alarmDate": "1769993485886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113351229883407", + "createdBy": null, + "createdTime": "2026-02-02 08:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:32", + "echoMap": {}, + "alarmNo": "1490182075", + "alarmDate": "1769993485924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113351229883434", + "createdBy": null, + "createdTime": "2026-02-02 08:51:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:33", + "echoMap": {}, + "alarmNo": "1490182076", + "alarmDate": "1769993491940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850689", + "createdBy": null, + "createdTime": "2026-02-02 08:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:49", + "echoMap": {}, + "alarmNo": "1490182077", + "alarmDate": "1769993497486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850789", + "createdBy": null, + "createdTime": "2026-02-02 09:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:45", + "echoMap": {}, + "alarmNo": "1490182078", + "alarmDate": "1769994040173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850804", + "createdBy": null, + "createdTime": "2026-02-02 09:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1490182079", + "alarmDate": "1769994043130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850805", + "createdBy": null, + "createdTime": "2026-02-02 09:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1490182080", + "alarmDate": "1769994043184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850849", + "createdBy": null, + "createdTime": "2026-02-02 09:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:10", + "echoMap": {}, + "alarmNo": "1490182081", + "alarmDate": "1769994058196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850881", + "createdBy": null, + "createdTime": "2026-02-02 09:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:10", + "echoMap": {}, + "alarmNo": "1490182082", + "alarmDate": "1769994068566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785295", + "createdBy": null, + "createdTime": "2026-02-02 09:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:42", + "echoMap": {}, + "alarmNo": "1490182083", + "alarmDate": "1769994639935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785326", + "createdBy": null, + "createdTime": "2026-02-02 09:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:06", + "echoMap": {}, + "alarmNo": "1490182084", + "alarmDate": "1769994653933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785382", + "createdBy": null, + "createdTime": "2026-02-02 09:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:21", + "echoMap": {}, + "alarmNo": "1490182085", + "alarmDate": "1769994674635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785395", + "createdBy": null, + "createdTime": "2026-02-02 09:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:37", + "echoMap": {}, + "alarmNo": "1490182086", + "alarmDate": "1769994678011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785551", + "createdBy": null, + "createdTime": "2026-02-02 09:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:44", + "echoMap": {}, + "alarmNo": "1490182087", + "alarmDate": "1769995239205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785557", + "createdBy": null, + "createdTime": "2026-02-02 09:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:47", + "echoMap": {}, + "alarmNo": "1490182088", + "alarmDate": "1769995240897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113368409752581", + "createdBy": null, + "createdTime": "2026-02-02 09:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:08", + "echoMap": {}, + "alarmNo": "1490182089", + "alarmDate": "1769995256160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113368409752591", + "createdBy": null, + "createdTime": "2026-02-02 09:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1490182090", + "alarmDate": "1769995258932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719921", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:32", + "echoMap": {}, + "alarmNo": "1490182091", + "alarmDate": "1769995280327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719936", + "createdBy": null, + "createdTime": "2026-02-02 09:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1490182092", + "alarmDate": "1769995283321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719945", + "createdBy": null, + "createdTime": "2026-02-02 09:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:26", + "echoMap": {}, + "alarmNo": "1490182093", + "alarmDate": "1769995284689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719983", + "createdBy": null, + "createdTime": "2026-02-02 09:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:55", + "echoMap": {}, + "alarmNo": "1490182094", + "alarmDate": "1769995297787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704720085", + "createdBy": null, + "createdTime": "2026-02-02 09:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:15", + "echoMap": {}, + "alarmNo": "1490182095", + "alarmDate": "1769995844193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704720103", + "createdBy": null, + "createdTime": "2026-02-02 09:30:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:02", + "echoMap": {}, + "alarmNo": "1490182096", + "alarmDate": "1769995849455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113376999687180", + "createdBy": null, + "createdTime": "2026-02-02 09:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:08", + "echoMap": {}, + "alarmNo": "1490182097", + "alarmDate": "1769995867469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113376999687205", + "createdBy": null, + "createdTime": "2026-02-02 09:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:27", + "echoMap": {}, + "alarmNo": "1490182098", + "alarmDate": "1769995874565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113381294654627", + "createdBy": null, + "createdTime": "2026-02-02 09:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:01", + "echoMap": {}, + "alarmNo": "1490182099", + "alarmDate": "1769996447609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113381294654699", + "createdBy": null, + "createdTime": "2026-02-02 09:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:21", + "echoMap": {}, + "alarmNo": "1490182100", + "alarmDate": "1769996474847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113381294654752", + "createdBy": null, + "createdTime": "2026-02-02 09:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:09", + "echoMap": {}, + "alarmNo": "1490182101", + "alarmDate": "1769996491526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589114", + "createdBy": null, + "createdTime": "2026-02-02 09:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:51", + "echoMap": {}, + "alarmNo": "1490182102", + "alarmDate": "1769997040064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589213", + "createdBy": null, + "createdTime": "2026-02-02 09:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:18", + "echoMap": {}, + "alarmNo": "1490182103", + "alarmDate": "1769997077415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589242", + "createdBy": null, + "createdTime": "2026-02-02 09:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:30", + "echoMap": {}, + "alarmNo": "1490182104", + "alarmDate": "1769997089237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589342", + "createdBy": null, + "createdTime": "2026-02-02 10:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:43", + "echoMap": {}, + "alarmNo": "1490182105", + "alarmDate": "1769997641466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113394179556366", + "createdBy": null, + "createdTime": "2026-02-02 10:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:05", + "echoMap": {}, + "alarmNo": "1490182106", + "alarmDate": "1769997664044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113394179556369", + "createdBy": null, + "createdTime": "2026-02-02 10:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:05", + "echoMap": {}, + "alarmNo": "1490182107", + "alarmDate": "1769997664345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113394179556388", + "createdBy": null, + "createdTime": "2026-02-02 10:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:17", + "echoMap": {}, + "alarmNo": "1490182108", + "alarmDate": "1769997671338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113398474523690", + "createdBy": null, + "createdTime": "2026-02-02 10:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:11", + "echoMap": {}, + "alarmNo": "1490182109", + "alarmDate": "1769997695416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113398474523791", + "createdBy": null, + "createdTime": "2026-02-02 10:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:46", + "echoMap": {}, + "alarmNo": "1490182110", + "alarmDate": "1769998240544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113398474523915", + "createdBy": null, + "createdTime": "2026-02-02 10:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:35", + "echoMap": {}, + "alarmNo": "1490182111", + "alarmDate": "1769998288671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458246", + "createdBy": null, + "createdTime": "2026-02-02 10:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:41", + "echoMap": {}, + "alarmNo": "1490182112", + "alarmDate": "1769998839918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458312", + "createdBy": null, + "createdTime": "2026-02-02 10:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:12", + "echoMap": {}, + "alarmNo": "1490182113", + "alarmDate": "1769998871265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458352", + "createdBy": null, + "createdTime": "2026-02-02 10:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:30", + "echoMap": {}, + "alarmNo": "1490182114", + "alarmDate": "1769998889108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458501", + "createdBy": null, + "createdTime": "2026-02-02 10:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:46", + "echoMap": {}, + "alarmNo": "1490182115", + "alarmDate": "1769999440084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458518", + "createdBy": null, + "createdTime": "2026-02-02 10:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:45", + "echoMap": {}, + "alarmNo": "1490182116", + "alarmDate": "1769999444421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458567", + "createdBy": null, + "createdTime": "2026-02-02 10:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:05", + "echoMap": {}, + "alarmNo": "1490182117", + "alarmDate": "1769999464200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458584", + "createdBy": null, + "createdTime": "2026-02-02 10:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:11", + "echoMap": {}, + "alarmNo": "1490182118", + "alarmDate": "1769999469943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458587", + "createdBy": null, + "createdTime": "2026-02-02 10:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:16", + "echoMap": {}, + "alarmNo": "1490182119", + "alarmDate": "1769999470173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654392949", + "createdBy": null, + "createdTime": "2026-02-02 10:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:46", + "echoMap": {}, + "alarmNo": "1490182120", + "alarmDate": "1770000040399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654392950", + "createdBy": null, + "createdTime": "2026-02-02 10:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:48", + "echoMap": {}, + "alarmNo": "1490182121", + "alarmDate": "1770000040482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654393017", + "createdBy": null, + "createdTime": "2026-02-02 10:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:10", + "echoMap": {}, + "alarmNo": "1490182122", + "alarmDate": "1770000064393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654393068", + "createdBy": null, + "createdTime": "2026-02-02 10:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:31", + "echoMap": {}, + "alarmNo": "1490182123", + "alarmDate": "1770000079502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327440", + "createdBy": null, + "createdTime": "2026-02-02 10:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:04", + "echoMap": {}, + "alarmNo": "1490182124", + "alarmDate": "1770000651680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327479", + "createdBy": null, + "createdTime": "2026-02-02 10:51:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:05", + "echoMap": {}, + "alarmNo": "1490182125", + "alarmDate": "1770000664036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327507", + "createdBy": null, + "createdTime": "2026-02-02 10:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1490182126", + "alarmDate": "1770000675756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327557", + "createdBy": null, + "createdTime": "2026-02-02 10:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:34", + "echoMap": {}, + "alarmNo": "1490182127", + "alarmDate": "1770000693090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327680", + "createdBy": null, + "createdTime": "2026-02-02 11:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:57", + "echoMap": {}, + "alarmNo": "1490182128", + "alarmDate": "1770001244942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327689", + "createdBy": null, + "createdTime": "2026-02-02 11:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:48", + "echoMap": {}, + "alarmNo": "1490182129", + "alarmDate": "1770001247297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113428539294754", + "createdBy": null, + "createdTime": "2026-02-02 11:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:02", + "echoMap": {}, + "alarmNo": "1490182130", + "alarmDate": "1770001261081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113428539294774", + "createdBy": null, + "createdTime": "2026-02-02 11:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:15", + "echoMap": {}, + "alarmNo": "1490182131", + "alarmDate": "1770001269058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113428539294780", + "createdBy": null, + "createdTime": "2026-02-02 11:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:21", + "echoMap": {}, + "alarmNo": "1490182132", + "alarmDate": "1770001270000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262023", + "createdBy": null, + "createdTime": "2026-02-02 11:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:20", + "echoMap": {}, + "alarmNo": "1490182133", + "alarmDate": "1770001274078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262043", + "createdBy": null, + "createdTime": "2026-02-02 11:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:19", + "echoMap": {}, + "alarmNo": "1490182134", + "alarmDate": "1770001277887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262182", + "createdBy": null, + "createdTime": "2026-02-02 11:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:45", + "echoMap": {}, + "alarmNo": "1490182135", + "alarmDate": "1770001839242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262226", + "createdBy": null, + "createdTime": "2026-02-02 11:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:03", + "echoMap": {}, + "alarmNo": "1490182136", + "alarmDate": "1770001857348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262269", + "createdBy": null, + "createdTime": "2026-02-02 11:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:57", + "echoMap": {}, + "alarmNo": "1490182137", + "alarmDate": "1770001875198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196693", + "createdBy": null, + "createdTime": "2026-02-02 11:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:05", + "echoMap": {}, + "alarmNo": "1490182140", + "alarmDate": "1770002440466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196746", + "createdBy": null, + "createdTime": "2026-02-02 11:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:58", + "echoMap": {}, + "alarmNo": "1490182141", + "alarmDate": "1770002456887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196854", + "createdBy": null, + "createdTime": "2026-02-02 11:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:39", + "echoMap": {}, + "alarmNo": "1490182142", + "alarmDate": "1770002498038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131237", + "createdBy": null, + "createdTime": "2026-02-02 11:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:53", + "echoMap": {}, + "alarmNo": "1490182143", + "alarmDate": "1770003052244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131257", + "createdBy": null, + "createdTime": "2026-02-02 11:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:59", + "echoMap": {}, + "alarmNo": "1490182144", + "alarmDate": "1770003057976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131261", + "createdBy": null, + "createdTime": "2026-02-02 11:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:05", + "echoMap": {}, + "alarmNo": "1490182145", + "alarmDate": "1770003058669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131315", + "createdBy": null, + "createdTime": "2026-02-02 11:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:21", + "echoMap": {}, + "alarmNo": "1490182146", + "alarmDate": "1770003074744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131351", + "createdBy": null, + "createdTime": "2026-02-02 11:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:29", + "echoMap": {}, + "alarmNo": "1490182147", + "alarmDate": "1770003087771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131377", + "createdBy": null, + "createdTime": "2026-02-02 11:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:15", + "echoMap": {}, + "alarmNo": "1490182148", + "alarmDate": "1770003098848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131479", + "createdBy": null, + "createdTime": "2026-02-02 11:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:46", + "echoMap": {}, + "alarmNo": "1490182149", + "alarmDate": "1770003644929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113458604065829", + "createdBy": null, + "createdTime": "2026-02-02 11:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:38", + "echoMap": {}, + "alarmNo": "1490182150", + "alarmDate": "1770003697452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113458604065942", + "createdBy": null, + "createdTime": "2026-02-02 11:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:50", + "echoMap": {}, + "alarmNo": "1490182151", + "alarmDate": "1770004248676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113458604066037", + "createdBy": null, + "createdTime": "2026-02-02 11:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:40", + "echoMap": {}, + "alarmNo": "1490182152", + "alarmDate": "1770004287262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000509", + "createdBy": null, + "createdTime": "2026-02-02 12:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:58", + "echoMap": {}, + "alarmNo": "1490182154", + "alarmDate": "1770004857133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000524", + "createdBy": null, + "createdTime": "2026-02-02 12:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1490182155", + "alarmDate": "1770004861973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000567", + "createdBy": null, + "createdTime": "2026-02-02 12:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:50", + "echoMap": {}, + "alarmNo": "1490182156", + "alarmDate": "1770004882951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060098", + "deviceName": "[102](10)图书馆上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000597", + "createdBy": null, + "createdTime": "2026-02-02 12:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:38", + "echoMap": {}, + "alarmNo": "1490182157", + "alarmDate": "1770004896717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000702", + "createdBy": null, + "createdTime": "2026-02-02 12:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:58", + "echoMap": {}, + "alarmNo": "1490182158", + "alarmDate": "1770005444798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000717", + "createdBy": null, + "createdTime": "2026-02-02 12:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:02", + "echoMap": {}, + "alarmNo": "1490182159", + "alarmDate": "1770005448865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113471488967685", + "createdBy": null, + "createdTime": "2026-02-02 12:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:52", + "echoMap": {}, + "alarmNo": "1490182160", + "alarmDate": "1770005450892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783934995", + "createdBy": null, + "createdTime": "2026-02-02 12:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:22", + "echoMap": {}, + "alarmNo": "1490182161", + "alarmDate": "1770005468794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783935057", + "createdBy": null, + "createdTime": "2026-02-02 12:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:31", + "echoMap": {}, + "alarmNo": "1490182162", + "alarmDate": "1770005490251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783935176", + "createdBy": null, + "createdTime": "2026-02-02 12:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:45", + "echoMap": {}, + "alarmNo": "1490182163", + "alarmDate": "1770006040964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783935180", + "createdBy": null, + "createdTime": "2026-02-02 12:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:42", + "echoMap": {}, + "alarmNo": "1490182164", + "alarmDate": "1770006041447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113480078902277", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:28", + "echoMap": {}, + "alarmNo": "1490182165", + "alarmDate": "1770006081101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869690", + "createdBy": null, + "createdTime": "2026-02-02 12:30:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:57", + "echoMap": {}, + "alarmNo": "1490182166", + "alarmDate": "1770006655812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869697", + "createdBy": null, + "createdTime": "2026-02-02 12:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:09", + "echoMap": {}, + "alarmNo": "1490182167", + "alarmDate": "1770006657264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869717", + "createdBy": null, + "createdTime": "2026-02-02 12:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:04", + "echoMap": {}, + "alarmNo": "1490182168", + "alarmDate": "1770006663085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869798", + "createdBy": null, + "createdTime": "2026-02-02 12:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:18", + "echoMap": {}, + "alarmNo": "1490182169", + "alarmDate": "1770006697106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060038", + "deviceName": "[404](10)图书馆2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804160", + "createdBy": null, + "createdTime": "2026-02-02 12:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:18", + "echoMap": {}, + "alarmNo": "1490182170", + "alarmDate": "1770007240485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804196", + "createdBy": null, + "createdTime": "2026-02-02 12:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:58", + "echoMap": {}, + "alarmNo": "1490182171", + "alarmDate": "1770007251573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804226", + "createdBy": null, + "createdTime": "2026-02-02 12:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:00", + "echoMap": {}, + "alarmNo": "1490182172", + "alarmDate": "1770007258856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804298", + "createdBy": null, + "createdTime": "2026-02-02 12:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:24", + "echoMap": {}, + "alarmNo": "1490182173", + "alarmDate": "1770007283050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113501553738779", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:58", + "echoMap": {}, + "alarmNo": "1490182174", + "alarmDate": "1770007845786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113501553738843", + "createdBy": null, + "createdTime": "2026-02-02 12:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:22", + "echoMap": {}, + "alarmNo": "1490182175", + "alarmDate": "1770007869790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113501553738928", + "createdBy": null, + "createdTime": "2026-02-02 12:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:41", + "echoMap": {}, + "alarmNo": "1490182176", + "alarmDate": "1770007899518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113510143673378", + "createdBy": null, + "createdTime": "2026-02-02 13:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:46", + "echoMap": {}, + "alarmNo": "1490182177", + "alarmDate": "1770008440046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113510143673408", + "createdBy": null, + "createdTime": "2026-02-02 13:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:53", + "echoMap": {}, + "alarmNo": "1490182178", + "alarmDate": "1770008451698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113510143673442", + "createdBy": null, + "createdTime": "2026-02-02 13:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:07", + "echoMap": {}, + "alarmNo": "1490182179", + "alarmDate": "1770008466005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733607954", + "createdBy": null, + "createdTime": "2026-02-02 13:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:40", + "echoMap": {}, + "alarmNo": "1490182180", + "alarmDate": "1770009039325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733607995", + "createdBy": null, + "createdTime": "2026-02-02 13:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:04", + "echoMap": {}, + "alarmNo": "1490182181", + "alarmDate": "1770009058312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733608025", + "createdBy": null, + "createdTime": "2026-02-02 13:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:11", + "echoMap": {}, + "alarmNo": "1490182182", + "alarmDate": "1770009069783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733608041", + "createdBy": null, + "createdTime": "2026-02-02 13:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:17", + "echoMap": {}, + "alarmNo": "1490182183", + "alarmDate": "1770009075913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113527323542600", + "createdBy": null, + "createdTime": "2026-02-02 13:21:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:29", + "echoMap": {}, + "alarmNo": "1490182184", + "alarmDate": "1770009675591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113527323542656", + "createdBy": null, + "createdTime": "2026-02-02 13:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:36", + "echoMap": {}, + "alarmNo": "1490182185", + "alarmDate": "1770009695382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113531618509844", + "createdBy": null, + "createdTime": "2026-02-02 13:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:53", + "echoMap": {}, + "alarmNo": "1490182186", + "alarmDate": "1770010240859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113531618509866", + "createdBy": null, + "createdTime": "2026-02-02 13:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:49", + "echoMap": {}, + "alarmNo": "1490182187", + "alarmDate": "1770010247594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477137", + "createdBy": null, + "createdTime": "2026-02-02 13:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:10", + "echoMap": {}, + "alarmNo": "1490182188", + "alarmDate": "1770010252474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060021", + "deviceName": "[324](10)图书馆3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477193", + "createdBy": null, + "createdTime": "2026-02-02 13:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:11", + "echoMap": {}, + "alarmNo": "1490182189", + "alarmDate": "1770010269986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477229", + "createdBy": null, + "createdTime": "2026-02-02 13:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:34", + "echoMap": {}, + "alarmNo": "1490182190", + "alarmDate": "1770010281852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477250", + "createdBy": null, + "createdTime": "2026-02-02 13:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:09", + "echoMap": {}, + "alarmNo": "1490182191", + "alarmDate": "1770010287837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477254", + "createdBy": null, + "createdTime": "2026-02-02 13:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:35", + "echoMap": {}, + "alarmNo": "1490182192", + "alarmDate": "1770010288476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060021", + "deviceName": "[324](10)图书馆3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411722", + "createdBy": null, + "createdTime": "2026-02-02 13:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:46", + "echoMap": {}, + "alarmNo": "1490182193", + "alarmDate": "1770010840007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411802", + "createdBy": null, + "createdTime": "2026-02-02 13:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:09", + "echoMap": {}, + "alarmNo": "1490182194", + "alarmDate": "1770010867730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411829", + "createdBy": null, + "createdTime": "2026-02-02 13:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:19", + "echoMap": {}, + "alarmNo": "1490182195", + "alarmDate": "1770010877754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411870", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:02", + "echoMap": {}, + "alarmNo": "1490182196", + "alarmDate": "1770010896143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113548798379034", + "createdBy": null, + "createdTime": "2026-02-02 13:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:40", + "echoMap": {}, + "alarmNo": "1490182197", + "alarmDate": "1770011440386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113553093346351", + "createdBy": null, + "createdTime": "2026-02-02 13:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:03", + "echoMap": {}, + "alarmNo": "1490182198", + "alarmDate": "1770011462596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060098", + "deviceName": "[102](10)图书馆上行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113553093346434", + "createdBy": null, + "createdTime": "2026-02-02 13:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:30", + "echoMap": {}, + "alarmNo": "1490182199", + "alarmDate": "1770011489262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113557388313637", + "createdBy": null, + "createdTime": "2026-02-02 14:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:44", + "echoMap": {}, + "alarmNo": "1490182200", + "alarmDate": "1770012042506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113561683280957", + "createdBy": null, + "createdTime": "2026-02-02 14:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:15", + "echoMap": {}, + "alarmNo": "1490182201", + "alarmDate": "1770012068534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113561683280982", + "createdBy": null, + "createdTime": "2026-02-02 14:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:15", + "echoMap": {}, + "alarmNo": "1490182202", + "alarmDate": "1770012073880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113570273215533", + "createdBy": null, + "createdTime": "2026-02-02 14:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:02", + "echoMap": {}, + "alarmNo": "1490182203", + "alarmDate": "1770012660428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113570273215625", + "createdBy": null, + "createdTime": "2026-02-02 14:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:27", + "echoMap": {}, + "alarmNo": "1490182204", + "alarmDate": "1770012685703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113574568182830", + "createdBy": null, + "createdTime": "2026-02-02 14:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:44", + "echoMap": {}, + "alarmNo": "1490182205", + "alarmDate": "1770013242897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113578863150218", + "createdBy": null, + "createdTime": "2026-02-02 14:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:28", + "echoMap": {}, + "alarmNo": "1490182206", + "alarmDate": "1770013287116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113587453084696", + "createdBy": null, + "createdTime": "2026-02-02 14:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:49", + "echoMap": {}, + "alarmNo": "1490182207", + "alarmDate": "1770013843211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113587453084812", + "createdBy": null, + "createdTime": "2026-02-02 14:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:20", + "echoMap": {}, + "alarmNo": "1490182208", + "alarmDate": "1770013878789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113441424196635", + "createdBy": null, + "createdTime": "2026-02-02 11:15:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:03", + "echoMap": {}, + "alarmNo": "1490182138", + "alarmDate": "1770002103839", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1011030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1011" + }, + { + "id": "723113441424196682", + "createdBy": null, + "createdTime": "2026-02-02 11:20:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:03", + "echoMap": {}, + "alarmNo": "1490182139", + "alarmDate": "1770002403812", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1011030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1011" + }, + { + "id": "723113467194000450", + "createdBy": null, + "createdTime": "2026-02-02 12:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1490182153", + "alarmDate": "1770004803799", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1011030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1011" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113587453084812", + "createdBy": null, + "createdTime": "2026-02-02 14:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:20", + "echoMap": {}, + "alarmNo": "1490182208", + "alarmDate": "1770013878789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113587453084696", + "createdBy": null, + "createdTime": "2026-02-02 14:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:49", + "echoMap": {}, + "alarmNo": "1490182207", + "alarmDate": "1770013843211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113578863150218", + "createdBy": null, + "createdTime": "2026-02-02 14:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:28", + "echoMap": {}, + "alarmNo": "1490182206", + "alarmDate": "1770013287116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113574568182830", + "createdBy": null, + "createdTime": "2026-02-02 14:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:44", + "echoMap": {}, + "alarmNo": "1490182205", + "alarmDate": "1770013242897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113570273215625", + "createdBy": null, + "createdTime": "2026-02-02 14:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:27", + "echoMap": {}, + "alarmNo": "1490182204", + "alarmDate": "1770012685703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113570273215533", + "createdBy": null, + "createdTime": "2026-02-02 14:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:02", + "echoMap": {}, + "alarmNo": "1490182203", + "alarmDate": "1770012660428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113561683280982", + "createdBy": null, + "createdTime": "2026-02-02 14:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:15", + "echoMap": {}, + "alarmNo": "1490182202", + "alarmDate": "1770012073880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113561683280957", + "createdBy": null, + "createdTime": "2026-02-02 14:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:15", + "echoMap": {}, + "alarmNo": "1490182201", + "alarmDate": "1770012068534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113557388313637", + "createdBy": null, + "createdTime": "2026-02-02 14:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:44", + "echoMap": {}, + "alarmNo": "1490182200", + "alarmDate": "1770012042506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113553093346434", + "createdBy": null, + "createdTime": "2026-02-02 13:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:30", + "echoMap": {}, + "alarmNo": "1490182199", + "alarmDate": "1770011489262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113553093346351", + "createdBy": null, + "createdTime": "2026-02-02 13:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:03", + "echoMap": {}, + "alarmNo": "1490182198", + "alarmDate": "1770011462596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060098", + "deviceName": "[102](10)图书馆上行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113548798379034", + "createdBy": null, + "createdTime": "2026-02-02 13:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:40", + "echoMap": {}, + "alarmNo": "1490182197", + "alarmDate": "1770011440386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411870", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:02", + "echoMap": {}, + "alarmNo": "1490182196", + "alarmDate": "1770010896143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411829", + "createdBy": null, + "createdTime": "2026-02-02 13:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:19", + "echoMap": {}, + "alarmNo": "1490182195", + "alarmDate": "1770010877754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411802", + "createdBy": null, + "createdTime": "2026-02-02 13:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:09", + "echoMap": {}, + "alarmNo": "1490182194", + "alarmDate": "1770010867730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113544503411722", + "createdBy": null, + "createdTime": "2026-02-02 13:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:46", + "echoMap": {}, + "alarmNo": "1490182193", + "alarmDate": "1770010840007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477254", + "createdBy": null, + "createdTime": "2026-02-02 13:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:35", + "echoMap": {}, + "alarmNo": "1490182192", + "alarmDate": "1770010288476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060021", + "deviceName": "[324](10)图书馆3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477250", + "createdBy": null, + "createdTime": "2026-02-02 13:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:09", + "echoMap": {}, + "alarmNo": "1490182191", + "alarmDate": "1770010287837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477229", + "createdBy": null, + "createdTime": "2026-02-02 13:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:34", + "echoMap": {}, + "alarmNo": "1490182190", + "alarmDate": "1770010281852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477193", + "createdBy": null, + "createdTime": "2026-02-02 13:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:11", + "echoMap": {}, + "alarmNo": "1490182189", + "alarmDate": "1770010269986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113535913477137", + "createdBy": null, + "createdTime": "2026-02-02 13:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:10", + "echoMap": {}, + "alarmNo": "1490182188", + "alarmDate": "1770010252474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060021", + "deviceName": "[324](10)图书馆3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113531618509866", + "createdBy": null, + "createdTime": "2026-02-02 13:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:49", + "echoMap": {}, + "alarmNo": "1490182187", + "alarmDate": "1770010247594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113531618509844", + "createdBy": null, + "createdTime": "2026-02-02 13:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:53", + "echoMap": {}, + "alarmNo": "1490182186", + "alarmDate": "1770010240859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113527323542656", + "createdBy": null, + "createdTime": "2026-02-02 13:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:36", + "echoMap": {}, + "alarmNo": "1490182185", + "alarmDate": "1770009695382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113527323542600", + "createdBy": null, + "createdTime": "2026-02-02 13:21:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:29", + "echoMap": {}, + "alarmNo": "1490182184", + "alarmDate": "1770009675591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733608041", + "createdBy": null, + "createdTime": "2026-02-02 13:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:17", + "echoMap": {}, + "alarmNo": "1490182183", + "alarmDate": "1770009075913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733608025", + "createdBy": null, + "createdTime": "2026-02-02 13:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:11", + "echoMap": {}, + "alarmNo": "1490182182", + "alarmDate": "1770009069783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733607995", + "createdBy": null, + "createdTime": "2026-02-02 13:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:04", + "echoMap": {}, + "alarmNo": "1490182181", + "alarmDate": "1770009058312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113518733607954", + "createdBy": null, + "createdTime": "2026-02-02 13:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:40", + "echoMap": {}, + "alarmNo": "1490182180", + "alarmDate": "1770009039325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113510143673442", + "createdBy": null, + "createdTime": "2026-02-02 13:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:07", + "echoMap": {}, + "alarmNo": "1490182179", + "alarmDate": "1770008466005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113510143673408", + "createdBy": null, + "createdTime": "2026-02-02 13:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:53", + "echoMap": {}, + "alarmNo": "1490182178", + "alarmDate": "1770008451698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113510143673378", + "createdBy": null, + "createdTime": "2026-02-02 13:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:46", + "echoMap": {}, + "alarmNo": "1490182177", + "alarmDate": "1770008440046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113501553738928", + "createdBy": null, + "createdTime": "2026-02-02 12:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:41", + "echoMap": {}, + "alarmNo": "1490182176", + "alarmDate": "1770007899518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113501553738843", + "createdBy": null, + "createdTime": "2026-02-02 12:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:22", + "echoMap": {}, + "alarmNo": "1490182175", + "alarmDate": "1770007869790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113501553738779", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:58", + "echoMap": {}, + "alarmNo": "1490182174", + "alarmDate": "1770007845786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804298", + "createdBy": null, + "createdTime": "2026-02-02 12:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:24", + "echoMap": {}, + "alarmNo": "1490182173", + "alarmDate": "1770007283050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804226", + "createdBy": null, + "createdTime": "2026-02-02 12:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:00", + "echoMap": {}, + "alarmNo": "1490182172", + "alarmDate": "1770007258856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804196", + "createdBy": null, + "createdTime": "2026-02-02 12:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:58", + "echoMap": {}, + "alarmNo": "1490182171", + "alarmDate": "1770007251573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113492963804160", + "createdBy": null, + "createdTime": "2026-02-02 12:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:18", + "echoMap": {}, + "alarmNo": "1490182170", + "alarmDate": "1770007240485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869798", + "createdBy": null, + "createdTime": "2026-02-02 12:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:18", + "echoMap": {}, + "alarmNo": "1490182169", + "alarmDate": "1770006697106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060038", + "deviceName": "[404](10)图书馆2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869717", + "createdBy": null, + "createdTime": "2026-02-02 12:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:04", + "echoMap": {}, + "alarmNo": "1490182168", + "alarmDate": "1770006663085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869697", + "createdBy": null, + "createdTime": "2026-02-02 12:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:09", + "echoMap": {}, + "alarmNo": "1490182167", + "alarmDate": "1770006657264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113484373869690", + "createdBy": null, + "createdTime": "2026-02-02 12:30:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:57", + "echoMap": {}, + "alarmNo": "1490182166", + "alarmDate": "1770006655812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113480078902277", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:28", + "echoMap": {}, + "alarmNo": "1490182165", + "alarmDate": "1770006081101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783935180", + "createdBy": null, + "createdTime": "2026-02-02 12:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:42", + "echoMap": {}, + "alarmNo": "1490182164", + "alarmDate": "1770006041447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783935176", + "createdBy": null, + "createdTime": "2026-02-02 12:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:45", + "echoMap": {}, + "alarmNo": "1490182163", + "alarmDate": "1770006040964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783935057", + "createdBy": null, + "createdTime": "2026-02-02 12:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:31", + "echoMap": {}, + "alarmNo": "1490182162", + "alarmDate": "1770005490251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113475783934995", + "createdBy": null, + "createdTime": "2026-02-02 12:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:22", + "echoMap": {}, + "alarmNo": "1490182161", + "alarmDate": "1770005468794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113471488967685", + "createdBy": null, + "createdTime": "2026-02-02 12:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:52", + "echoMap": {}, + "alarmNo": "1490182160", + "alarmDate": "1770005450892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000717", + "createdBy": null, + "createdTime": "2026-02-02 12:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:02", + "echoMap": {}, + "alarmNo": "1490182159", + "alarmDate": "1770005448865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000702", + "createdBy": null, + "createdTime": "2026-02-02 12:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:58", + "echoMap": {}, + "alarmNo": "1490182158", + "alarmDate": "1770005444798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000597", + "createdBy": null, + "createdTime": "2026-02-02 12:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:38", + "echoMap": {}, + "alarmNo": "1490182157", + "alarmDate": "1770004896717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000567", + "createdBy": null, + "createdTime": "2026-02-02 12:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:50", + "echoMap": {}, + "alarmNo": "1490182156", + "alarmDate": "1770004882951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060098", + "deviceName": "[102](10)图书馆上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000524", + "createdBy": null, + "createdTime": "2026-02-02 12:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1490182155", + "alarmDate": "1770004861973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000509", + "createdBy": null, + "createdTime": "2026-02-02 12:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:58", + "echoMap": {}, + "alarmNo": "1490182154", + "alarmDate": "1770004857133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113467194000450", + "createdBy": null, + "createdTime": "2026-02-02 12:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1490182153", + "alarmDate": "1770004803799", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1011030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1011" + }, + { + "id": "723113458604066037", + "createdBy": null, + "createdTime": "2026-02-02 11:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:40", + "echoMap": {}, + "alarmNo": "1490182152", + "alarmDate": "1770004287262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113458604065942", + "createdBy": null, + "createdTime": "2026-02-02 11:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:50", + "echoMap": {}, + "alarmNo": "1490182151", + "alarmDate": "1770004248676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113458604065829", + "createdBy": null, + "createdTime": "2026-02-02 11:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:38", + "echoMap": {}, + "alarmNo": "1490182150", + "alarmDate": "1770003697452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131479", + "createdBy": null, + "createdTime": "2026-02-02 11:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:46", + "echoMap": {}, + "alarmNo": "1490182149", + "alarmDate": "1770003644929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131377", + "createdBy": null, + "createdTime": "2026-02-02 11:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:15", + "echoMap": {}, + "alarmNo": "1490182148", + "alarmDate": "1770003098848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131351", + "createdBy": null, + "createdTime": "2026-02-02 11:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:29", + "echoMap": {}, + "alarmNo": "1490182147", + "alarmDate": "1770003087771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131315", + "createdBy": null, + "createdTime": "2026-02-02 11:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:21", + "echoMap": {}, + "alarmNo": "1490182146", + "alarmDate": "1770003074744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131261", + "createdBy": null, + "createdTime": "2026-02-02 11:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:05", + "echoMap": {}, + "alarmNo": "1490182145", + "alarmDate": "1770003058669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131257", + "createdBy": null, + "createdTime": "2026-02-02 11:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:59", + "echoMap": {}, + "alarmNo": "1490182144", + "alarmDate": "1770003057976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113450014131237", + "createdBy": null, + "createdTime": "2026-02-02 11:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:53", + "echoMap": {}, + "alarmNo": "1490182143", + "alarmDate": "1770003052244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196854", + "createdBy": null, + "createdTime": "2026-02-02 11:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:39", + "echoMap": {}, + "alarmNo": "1490182142", + "alarmDate": "1770002498038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196746", + "createdBy": null, + "createdTime": "2026-02-02 11:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:58", + "echoMap": {}, + "alarmNo": "1490182141", + "alarmDate": "1770002456887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196693", + "createdBy": null, + "createdTime": "2026-02-02 11:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:05", + "echoMap": {}, + "alarmNo": "1490182140", + "alarmDate": "1770002440466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113441424196682", + "createdBy": null, + "createdTime": "2026-02-02 11:20:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:03", + "echoMap": {}, + "alarmNo": "1490182139", + "alarmDate": "1770002403812", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1011030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1011" + }, + { + "id": "723113441424196635", + "createdBy": null, + "createdTime": "2026-02-02 11:15:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:03", + "echoMap": {}, + "alarmNo": "1490182138", + "alarmDate": "1770002103839", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1011030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1011" + }, + { + "id": "723113432834262269", + "createdBy": null, + "createdTime": "2026-02-02 11:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:57", + "echoMap": {}, + "alarmNo": "1490182137", + "alarmDate": "1770001875198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262226", + "createdBy": null, + "createdTime": "2026-02-02 11:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:03", + "echoMap": {}, + "alarmNo": "1490182136", + "alarmDate": "1770001857348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262182", + "createdBy": null, + "createdTime": "2026-02-02 11:10:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:45", + "echoMap": {}, + "alarmNo": "1490182135", + "alarmDate": "1770001839242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262043", + "createdBy": null, + "createdTime": "2026-02-02 11:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:19", + "echoMap": {}, + "alarmNo": "1490182134", + "alarmDate": "1770001277887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113432834262023", + "createdBy": null, + "createdTime": "2026-02-02 11:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:20", + "echoMap": {}, + "alarmNo": "1490182133", + "alarmDate": "1770001274078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113428539294780", + "createdBy": null, + "createdTime": "2026-02-02 11:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:21", + "echoMap": {}, + "alarmNo": "1490182132", + "alarmDate": "1770001270000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113428539294774", + "createdBy": null, + "createdTime": "2026-02-02 11:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:15", + "echoMap": {}, + "alarmNo": "1490182131", + "alarmDate": "1770001269058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113428539294754", + "createdBy": null, + "createdTime": "2026-02-02 11:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:02", + "echoMap": {}, + "alarmNo": "1490182130", + "alarmDate": "1770001261081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327689", + "createdBy": null, + "createdTime": "2026-02-02 11:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:48", + "echoMap": {}, + "alarmNo": "1490182129", + "alarmDate": "1770001247297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327680", + "createdBy": null, + "createdTime": "2026-02-02 11:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:57", + "echoMap": {}, + "alarmNo": "1490182128", + "alarmDate": "1770001244942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327557", + "createdBy": null, + "createdTime": "2026-02-02 10:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:34", + "echoMap": {}, + "alarmNo": "1490182127", + "alarmDate": "1770000693090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327507", + "createdBy": null, + "createdTime": "2026-02-02 10:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1490182126", + "alarmDate": "1770000675756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327479", + "createdBy": null, + "createdTime": "2026-02-02 10:51:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:05", + "echoMap": {}, + "alarmNo": "1490182125", + "alarmDate": "1770000664036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113424244327440", + "createdBy": null, + "createdTime": "2026-02-02 10:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:04", + "echoMap": {}, + "alarmNo": "1490182124", + "alarmDate": "1770000651680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654393068", + "createdBy": null, + "createdTime": "2026-02-02 10:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:31", + "echoMap": {}, + "alarmNo": "1490182123", + "alarmDate": "1770000079502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654393017", + "createdBy": null, + "createdTime": "2026-02-02 10:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:10", + "echoMap": {}, + "alarmNo": "1490182122", + "alarmDate": "1770000064393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654392950", + "createdBy": null, + "createdTime": "2026-02-02 10:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:48", + "echoMap": {}, + "alarmNo": "1490182121", + "alarmDate": "1770000040482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060054", + "deviceName": "[317](10)图书馆2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113415654392949", + "createdBy": null, + "createdTime": "2026-02-02 10:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:46", + "echoMap": {}, + "alarmNo": "1490182120", + "alarmDate": "1770000040399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458587", + "createdBy": null, + "createdTime": "2026-02-02 10:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:16", + "echoMap": {}, + "alarmNo": "1490182119", + "alarmDate": "1769999470173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458584", + "createdBy": null, + "createdTime": "2026-02-02 10:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:11", + "echoMap": {}, + "alarmNo": "1490182118", + "alarmDate": "1769999469943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458567", + "createdBy": null, + "createdTime": "2026-02-02 10:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:05", + "echoMap": {}, + "alarmNo": "1490182117", + "alarmDate": "1769999464200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458518", + "createdBy": null, + "createdTime": "2026-02-02 10:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:45", + "echoMap": {}, + "alarmNo": "1490182116", + "alarmDate": "1769999444421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458501", + "createdBy": null, + "createdTime": "2026-02-02 10:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:46", + "echoMap": {}, + "alarmNo": "1490182115", + "alarmDate": "1769999440084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458352", + "createdBy": null, + "createdTime": "2026-02-02 10:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:30", + "echoMap": {}, + "alarmNo": "1490182114", + "alarmDate": "1769998889108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458312", + "createdBy": null, + "createdTime": "2026-02-02 10:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:12", + "echoMap": {}, + "alarmNo": "1490182113", + "alarmDate": "1769998871265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113407064458246", + "createdBy": null, + "createdTime": "2026-02-02 10:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:41", + "echoMap": {}, + "alarmNo": "1490182112", + "alarmDate": "1769998839918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113398474523915", + "createdBy": null, + "createdTime": "2026-02-02 10:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:35", + "echoMap": {}, + "alarmNo": "1490182111", + "alarmDate": "1769998288671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113398474523791", + "createdBy": null, + "createdTime": "2026-02-02 10:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:46", + "echoMap": {}, + "alarmNo": "1490182110", + "alarmDate": "1769998240544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060056", + "deviceName": "[321](10)图书馆2#口职工餐厅", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113398474523690", + "createdBy": null, + "createdTime": "2026-02-02 10:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:11", + "echoMap": {}, + "alarmNo": "1490182109", + "alarmDate": "1769997695416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113394179556388", + "createdBy": null, + "createdTime": "2026-02-02 10:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:17", + "echoMap": {}, + "alarmNo": "1490182108", + "alarmDate": "1769997671338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113394179556369", + "createdBy": null, + "createdTime": "2026-02-02 10:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:05", + "echoMap": {}, + "alarmNo": "1490182107", + "alarmDate": "1769997664345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113394179556366", + "createdBy": null, + "createdTime": "2026-02-02 10:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:05", + "echoMap": {}, + "alarmNo": "1490182106", + "alarmDate": "1769997664044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589342", + "createdBy": null, + "createdTime": "2026-02-02 10:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:43", + "echoMap": {}, + "alarmNo": "1490182105", + "alarmDate": "1769997641466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589242", + "createdBy": null, + "createdTime": "2026-02-02 09:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:30", + "echoMap": {}, + "alarmNo": "1490182104", + "alarmDate": "1769997089237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589213", + "createdBy": null, + "createdTime": "2026-02-02 09:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:18", + "echoMap": {}, + "alarmNo": "1490182103", + "alarmDate": "1769997077415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113389884589114", + "createdBy": null, + "createdTime": "2026-02-02 09:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:51", + "echoMap": {}, + "alarmNo": "1490182102", + "alarmDate": "1769997040064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113381294654752", + "createdBy": null, + "createdTime": "2026-02-02 09:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:09", + "echoMap": {}, + "alarmNo": "1490182101", + "alarmDate": "1769996491526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113381294654699", + "createdBy": null, + "createdTime": "2026-02-02 09:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:21", + "echoMap": {}, + "alarmNo": "1490182100", + "alarmDate": "1769996474847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113381294654627", + "createdBy": null, + "createdTime": "2026-02-02 09:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:01", + "echoMap": {}, + "alarmNo": "1490182099", + "alarmDate": "1769996447609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113376999687205", + "createdBy": null, + "createdTime": "2026-02-02 09:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:27", + "echoMap": {}, + "alarmNo": "1490182098", + "alarmDate": "1769995874565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113376999687180", + "createdBy": null, + "createdTime": "2026-02-02 09:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:08", + "echoMap": {}, + "alarmNo": "1490182097", + "alarmDate": "1769995867469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704720103", + "createdBy": null, + "createdTime": "2026-02-02 09:30:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:02", + "echoMap": {}, + "alarmNo": "1490182096", + "alarmDate": "1769995849455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704720085", + "createdBy": null, + "createdTime": "2026-02-02 09:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:15", + "echoMap": {}, + "alarmNo": "1490182095", + "alarmDate": "1769995844193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719983", + "createdBy": null, + "createdTime": "2026-02-02 09:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:55", + "echoMap": {}, + "alarmNo": "1490182094", + "alarmDate": "1769995297787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719945", + "createdBy": null, + "createdTime": "2026-02-02 09:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:26", + "echoMap": {}, + "alarmNo": "1490182093", + "alarmDate": "1769995284689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719936", + "createdBy": null, + "createdTime": "2026-02-02 09:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1490182092", + "alarmDate": "1769995283321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113372704719921", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:32", + "echoMap": {}, + "alarmNo": "1490182091", + "alarmDate": "1769995280327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113368409752591", + "createdBy": null, + "createdTime": "2026-02-02 09:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1490182090", + "alarmDate": "1769995258932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113368409752581", + "createdBy": null, + "createdTime": "2026-02-02 09:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:08", + "echoMap": {}, + "alarmNo": "1490182089", + "alarmDate": "1769995256160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785557", + "createdBy": null, + "createdTime": "2026-02-02 09:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:47", + "echoMap": {}, + "alarmNo": "1490182088", + "alarmDate": "1769995240897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785551", + "createdBy": null, + "createdTime": "2026-02-02 09:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:44", + "echoMap": {}, + "alarmNo": "1490182087", + "alarmDate": "1769995239205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785395", + "createdBy": null, + "createdTime": "2026-02-02 09:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:37", + "echoMap": {}, + "alarmNo": "1490182086", + "alarmDate": "1769994678011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785382", + "createdBy": null, + "createdTime": "2026-02-02 09:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:21", + "echoMap": {}, + "alarmNo": "1490182085", + "alarmDate": "1769994674635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785326", + "createdBy": null, + "createdTime": "2026-02-02 09:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:06", + "echoMap": {}, + "alarmNo": "1490182084", + "alarmDate": "1769994653933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113364114785295", + "createdBy": null, + "createdTime": "2026-02-02 09:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:42", + "echoMap": {}, + "alarmNo": "1490182083", + "alarmDate": "1769994639935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850881", + "createdBy": null, + "createdTime": "2026-02-02 09:01:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:10", + "echoMap": {}, + "alarmNo": "1490182082", + "alarmDate": "1769994068566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850849", + "createdBy": null, + "createdTime": "2026-02-02 09:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:10", + "echoMap": {}, + "alarmNo": "1490182081", + "alarmDate": "1769994058196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850805", + "createdBy": null, + "createdTime": "2026-02-02 09:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1490182080", + "alarmDate": "1769994043184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850804", + "createdBy": null, + "createdTime": "2026-02-02 09:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1490182079", + "alarmDate": "1769994043130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850789", + "createdBy": null, + "createdTime": "2026-02-02 09:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:45", + "echoMap": {}, + "alarmNo": "1490182078", + "alarmDate": "1769994040173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113355524850689", + "createdBy": null, + "createdTime": "2026-02-02 08:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:49", + "echoMap": {}, + "alarmNo": "1490182077", + "alarmDate": "1769993497486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113351229883434", + "createdBy": null, + "createdTime": "2026-02-02 08:51:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:33", + "echoMap": {}, + "alarmNo": "1490182076", + "alarmDate": "1769993491940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113351229883407", + "createdBy": null, + "createdTime": "2026-02-02 08:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:32", + "echoMap": {}, + "alarmNo": "1490182075", + "alarmDate": "1769993485924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113351229883406", + "createdBy": null, + "createdTime": "2026-02-02 08:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:27", + "echoMap": {}, + "alarmNo": "1490182074", + "alarmDate": "1769993485886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916373", + "createdBy": null, + "createdTime": "2026-02-02 08:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:20", + "echoMap": {}, + "alarmNo": "1490182073", + "alarmDate": "1769993479423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916333", + "createdBy": null, + "createdTime": "2026-02-02 08:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:26", + "echoMap": {}, + "alarmNo": "1490182072", + "alarmDate": "1769993466601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916275", + "createdBy": null, + "createdTime": "2026-02-02 08:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:54", + "echoMap": {}, + "alarmNo": "1490182071", + "alarmDate": "1769993448450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113346934916253", + "createdBy": null, + "createdTime": "2026-02-02 08:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:48", + "echoMap": {}, + "alarmNo": "1490182070", + "alarmDate": "1769993441938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113342639948838", + "createdBy": null, + "createdTime": "2026-02-02 08:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:30", + "echoMap": {}, + "alarmNo": "1490182069", + "alarmDate": "1769992878224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113342639948828", + "createdBy": null, + "createdTime": "2026-02-02 08:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:34", + "echoMap": {}, + "alarmNo": "1490182068", + "alarmDate": "1769992875690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981886", + "createdBy": null, + "createdTime": "2026-02-02 08:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:06", + "echoMap": {}, + "alarmNo": "1490182067", + "alarmDate": "1769992848190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981684", + "createdBy": null, + "createdTime": "2026-02-02 08:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:29", + "echoMap": {}, + "alarmNo": "1490182066", + "alarmDate": "1769992268958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981674", + "createdBy": null, + "createdTime": "2026-02-02 08:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:08", + "echoMap": {}, + "alarmNo": "1490182065", + "alarmDate": "1769992266615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981633", + "createdBy": null, + "createdTime": "2026-02-02 08:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:52", + "echoMap": {}, + "alarmNo": "1490182064", + "alarmDate": "1769992251244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981610", + "createdBy": null, + "createdTime": "2026-02-02 08:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:57", + "echoMap": {}, + "alarmNo": "1490182063", + "alarmDate": "1769992244832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113338344981584", + "createdBy": null, + "createdTime": "2026-02-02 08:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:46", + "echoMap": {}, + "alarmNo": "1490182062", + "alarmDate": "1769992240269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113334050014247", + "createdBy": null, + "createdTime": "2026-02-02 08:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:40", + "echoMap": {}, + "alarmNo": "1490182061", + "alarmDate": "1769991699101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047332", + "createdBy": null, + "createdTime": "2026-02-02 08:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:18", + "echoMap": {}, + "alarmNo": "1490182060", + "alarmDate": "1769991676923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047313", + "createdBy": null, + "createdTime": "2026-02-02 08:21:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:14", + "echoMap": {}, + "alarmNo": "1490182059", + "alarmDate": "1769991672534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047218", + "createdBy": null, + "createdTime": "2026-02-02 08:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:27", + "echoMap": {}, + "alarmNo": "1490182058", + "alarmDate": "1769991643588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755047213", + "createdBy": null, + "createdTime": "2026-02-02 08:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:49", + "echoMap": {}, + "alarmNo": "1490182057", + "alarmDate": "1769991642984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060051", + "deviceName": "[313](10)图书馆2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113329755046969", + "createdBy": null, + "createdTime": "2026-02-02 08:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:32", + "echoMap": {}, + "alarmNo": "1490182056", + "alarmDate": "1769991050322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112687", + "createdBy": null, + "createdTime": "2026-02-02 08:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:38", + "echoMap": {}, + "alarmNo": "1490182055", + "alarmDate": "1769990486153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112642", + "createdBy": null, + "createdTime": "2026-02-02 08:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:11", + "echoMap": {}, + "alarmNo": "1490182054", + "alarmDate": "1769990469764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112620", + "createdBy": null, + "createdTime": "2026-02-02 08:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:15", + "echoMap": {}, + "alarmNo": "1490182053", + "alarmDate": "1769990463139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112606", + "createdBy": null, + "createdTime": "2026-02-02 08:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:59", + "echoMap": {}, + "alarmNo": "1490182052", + "alarmDate": "1769990458403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112564", + "createdBy": null, + "createdTime": "2026-02-02 08:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:44", + "echoMap": {}, + "alarmNo": "1490182051", + "alarmDate": "1769990439992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112409", + "createdBy": null, + "createdTime": "2026-02-02 07:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:14", + "echoMap": {}, + "alarmNo": "1490182050", + "alarmDate": "1769989872666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113321165112393", + "createdBy": null, + "createdTime": "2026-02-02 07:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:08", + "echoMap": {}, + "alarmNo": "1490182049", + "alarmDate": "1769989866979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575178033", + "createdBy": null, + "createdTime": "2026-02-02 07:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:56", + "echoMap": {}, + "alarmNo": "1490182048", + "alarmDate": "1769989297654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575177951", + "createdBy": null, + "createdTime": "2026-02-02 07:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:19", + "echoMap": {}, + "alarmNo": "1490182047", + "alarmDate": "1769989265611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575177787", + "createdBy": null, + "createdTime": "2026-02-02 07:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:54", + "echoMap": {}, + "alarmNo": "1490182046", + "alarmDate": "1769988695441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113312575177738", + "createdBy": null, + "createdTime": "2026-02-02 07:31:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:15", + "echoMap": {}, + "alarmNo": "1490182045", + "alarmDate": "1769988673808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113308280210450", + "createdBy": null, + "createdTime": "2026-02-02 07:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:07", + "echoMap": {}, + "alarmNo": "1490182044", + "alarmDate": "1769988665598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113308280210440", + "createdBy": null, + "createdTime": "2026-02-02 07:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:09", + "echoMap": {}, + "alarmNo": "1490182043", + "alarmDate": "1769988663113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243361", + "createdBy": null, + "createdTime": "2026-02-02 07:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:59", + "echoMap": {}, + "alarmNo": "1490182042", + "alarmDate": "1769988094140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243322", + "createdBy": null, + "createdTime": "2026-02-02 07:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:18", + "echoMap": {}, + "alarmNo": "1490182041", + "alarmDate": "1769988076709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243285", + "createdBy": null, + "createdTime": "2026-02-02 07:21:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:02", + "echoMap": {}, + "alarmNo": "1490182040", + "alarmDate": "1769988061103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113303985243219", + "createdBy": null, + "createdTime": "2026-02-02 07:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:51", + "echoMap": {}, + "alarmNo": "1490182039", + "alarmDate": "1769988040008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308878", + "createdBy": null, + "createdTime": "2026-02-02 07:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:37", + "echoMap": {}, + "alarmNo": "1490182038", + "alarmDate": "1769987483881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308788", + "createdBy": null, + "createdTime": "2026-02-02 07:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:12", + "echoMap": {}, + "alarmNo": "1490182037", + "alarmDate": "1769987459820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308617", + "createdBy": null, + "createdTime": "2026-02-02 07:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:36", + "echoMap": {}, + "alarmNo": "1490182036", + "alarmDate": "1769986896176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308588", + "createdBy": null, + "createdTime": "2026-02-02 07:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:48", + "echoMap": {}, + "alarmNo": "1490182035", + "alarmDate": "1769986889506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113295395308548", + "createdBy": null, + "createdTime": "2026-02-02 07:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:19", + "echoMap": {}, + "alarmNo": "1490182034", + "alarmDate": "1769986877865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113291100341278", + "createdBy": null, + "createdTime": "2026-02-02 07:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:14", + "echoMap": {}, + "alarmNo": "1490182033", + "alarmDate": "1769986872830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113291100341272", + "createdBy": null, + "createdTime": "2026-02-02 07:01:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:18", + "echoMap": {}, + "alarmNo": "1490182032", + "alarmDate": "1769986872152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374328", + "createdBy": null, + "createdTime": "2026-02-02 07:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:18", + "echoMap": {}, + "alarmNo": "1490182031", + "alarmDate": "1769986865553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374119", + "createdBy": null, + "createdTime": "2026-02-02 06:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:54", + "echoMap": {}, + "alarmNo": "1490182030", + "alarmDate": "1769986293879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374086", + "createdBy": null, + "createdTime": "2026-02-02 06:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:54", + "echoMap": {}, + "alarmNo": "1490182029", + "alarmDate": "1769986287294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374071", + "createdBy": null, + "createdTime": "2026-02-02 06:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:26", + "echoMap": {}, + "alarmNo": "1490182028", + "alarmDate": "1769986284832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805374010", + "createdBy": null, + "createdTime": "2026-02-02 06:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:31", + "echoMap": {}, + "alarmNo": "1490182027", + "alarmDate": "1769986272054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805373962", + "createdBy": null, + "createdTime": "2026-02-02 06:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:04", + "echoMap": {}, + "alarmNo": "1490182026", + "alarmDate": "1769986263209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113286805373958", + "createdBy": null, + "createdTime": "2026-02-02 06:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:16", + "echoMap": {}, + "alarmNo": "1490182025", + "alarmDate": "1769986262919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113282510406674", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:14", + "echoMap": {}, + "alarmNo": "1490182024", + "alarmDate": "1769986255227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439710", + "createdBy": null, + "createdTime": "2026-02-02 06:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:53", + "echoMap": {}, + "alarmNo": "1490182023", + "alarmDate": "1769986240993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439703", + "createdBy": null, + "createdTime": "2026-02-02 06:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1490182022", + "alarmDate": "1769986239742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439581", + "createdBy": null, + "createdTime": "2026-02-02 06:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:43", + "echoMap": {}, + "alarmNo": "1490182021", + "alarmDate": "1769985692014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439549", + "createdBy": null, + "createdTime": "2026-02-02 06:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:29", + "echoMap": {}, + "alarmNo": "1490182020", + "alarmDate": "1769985683576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113278215439398", + "createdBy": null, + "createdTime": "2026-02-02 06:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:42", + "echoMap": {}, + "alarmNo": "1490182019", + "alarmDate": "1769985641318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505107", + "createdBy": null, + "createdTime": "2026-02-02 06:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:50", + "echoMap": {}, + "alarmNo": "1490182018", + "alarmDate": "1769985090732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505098", + "createdBy": null, + "createdTime": "2026-02-02 06:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:30", + "echoMap": {}, + "alarmNo": "1490182017", + "alarmDate": "1769985089066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505058", + "createdBy": null, + "createdTime": "2026-02-02 06:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:21", + "echoMap": {}, + "alarmNo": "1490182016", + "alarmDate": "1769985080067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625505009", + "createdBy": null, + "createdTime": "2026-02-02 06:31:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:30", + "echoMap": {}, + "alarmNo": "1490182015", + "alarmDate": "1769985069453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625504973", + "createdBy": null, + "createdTime": "2026-02-02 06:31:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:02", + "echoMap": {}, + "alarmNo": "1490182014", + "alarmDate": "1769985061501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060055", + "deviceName": "[210](10)图书馆2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625504960", + "createdBy": null, + "createdTime": "2026-02-02 06:30:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:12", + "echoMap": {}, + "alarmNo": "1490182013", + "alarmDate": "1769985058689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113269625504920", + "createdBy": null, + "createdTime": "2026-02-02 06:30:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:50", + "echoMap": {}, + "alarmNo": "1490182012", + "alarmDate": "1769985049148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113265330537506", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:47", + "echoMap": {}, + "alarmNo": "1490182011", + "alarmDate": "1769984495485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570534", + "createdBy": null, + "createdTime": "2026-02-02 06:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:56", + "echoMap": {}, + "alarmNo": "1490182010", + "alarmDate": "1769984483151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570488", + "createdBy": null, + "createdTime": "2026-02-02 06:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:17", + "echoMap": {}, + "alarmNo": "1490182009", + "alarmDate": "1769984471455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570457", + "createdBy": null, + "createdTime": "2026-02-02 06:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:10", + "echoMap": {}, + "alarmNo": "1490182008", + "alarmDate": "1769984464148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570373", + "createdBy": null, + "createdTime": "2026-02-02 06:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:53", + "echoMap": {}, + "alarmNo": "1490182007", + "alarmDate": "1769984441341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113261035570194", + "createdBy": null, + "createdTime": "2026-02-02 06:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:23", + "echoMap": {}, + "alarmNo": "1490182006", + "alarmDate": "1769983877214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635954", + "createdBy": null, + "createdTime": "2026-02-02 06:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:51", + "echoMap": {}, + "alarmNo": "1490182005", + "alarmDate": "1769983850438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635810", + "createdBy": null, + "createdTime": "2026-02-02 06:01:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:59", + "echoMap": {}, + "alarmNo": "1490182004", + "alarmDate": "1769983298853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635791", + "createdBy": null, + "createdTime": "2026-02-02 06:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:09", + "echoMap": {}, + "alarmNo": "1490182003", + "alarmDate": "1769983294519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635766", + "createdBy": null, + "createdTime": "2026-02-02 06:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:28", + "echoMap": {}, + "alarmNo": "1490182002", + "alarmDate": "1769983287280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113252445635718", + "createdBy": null, + "createdTime": "2026-02-02 06:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:21", + "echoMap": {}, + "alarmNo": "1490182001", + "alarmDate": "1769983274940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113243855701367", + "createdBy": null, + "createdTime": "2026-02-02 05:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:57", + "echoMap": {}, + "alarmNo": "1490182000", + "alarmDate": "1769982697620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113243855701341", + "createdBy": null, + "createdTime": "2026-02-02 05:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:16", + "echoMap": {}, + "alarmNo": "1490181999", + "alarmDate": "1769982693172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113243855701250", + "createdBy": null, + "createdTime": "2026-02-02 05:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:19", + "echoMap": {}, + "alarmNo": "1490181998", + "alarmDate": "1769982672725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113239560733744", + "createdBy": null, + "createdTime": "2026-02-02 05:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:13", + "echoMap": {}, + "alarmNo": "1490181997", + "alarmDate": "1769982098968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113239560733725", + "createdBy": null, + "createdTime": "2026-02-02 05:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:55", + "echoMap": {}, + "alarmNo": "1490181996", + "alarmDate": "1769982095391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766683", + "createdBy": null, + "createdTime": "2026-02-02 05:41:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:20", + "echoMap": {}, + "alarmNo": "1490181995", + "alarmDate": "1769982067950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766664", + "createdBy": null, + "createdTime": "2026-02-02 05:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:17", + "echoMap": {}, + "alarmNo": "1490181994", + "alarmDate": "1769982064380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766644", + "createdBy": null, + "createdTime": "2026-02-02 05:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:02", + "echoMap": {}, + "alarmNo": "1490181993", + "alarmDate": "1769982060506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766575", + "createdBy": null, + "createdTime": "2026-02-02 05:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:48", + "echoMap": {}, + "alarmNo": "1490181992", + "alarmDate": "1769982046597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766537", + "createdBy": null, + "createdTime": "2026-02-02 05:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:49", + "echoMap": {}, + "alarmNo": "1490181991", + "alarmDate": "1769982040742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766533", + "createdBy": null, + "createdTime": "2026-02-02 05:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:52", + "echoMap": {}, + "alarmNo": "1490181990", + "alarmDate": "1769982040290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113235265766422", + "createdBy": null, + "createdTime": "2026-02-02 05:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:35", + "echoMap": {}, + "alarmNo": "1490181989", + "alarmDate": "1769981494441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675832145", + "createdBy": null, + "createdTime": "2026-02-02 05:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:21", + "echoMap": {}, + "alarmNo": "1490181988", + "alarmDate": "1769981474506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675832121", + "createdBy": null, + "createdTime": "2026-02-02 05:31:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:22", + "echoMap": {}, + "alarmNo": "1490181987", + "alarmDate": "1769981470137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675832001", + "createdBy": null, + "createdTime": "2026-02-02 05:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:58", + "echoMap": {}, + "alarmNo": "1490181986", + "alarmDate": "1769981446090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113226675831980", + "createdBy": null, + "createdTime": "2026-02-02 05:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:55", + "echoMap": {}, + "alarmNo": "1490181985", + "alarmDate": "1769981442452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113222380864565", + "createdBy": null, + "createdTime": "2026-02-02 05:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:29", + "echoMap": {}, + "alarmNo": "1490181984", + "alarmDate": "1769980882871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113222380864554", + "createdBy": null, + "createdTime": "2026-02-02 05:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:27", + "echoMap": {}, + "alarmNo": "1490181983", + "alarmDate": "1769980881202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897501", + "createdBy": null, + "createdTime": "2026-02-02 05:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:05", + "echoMap": {}, + "alarmNo": "1490181982", + "alarmDate": "1769980858892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897415", + "createdBy": null, + "createdTime": "2026-02-02 05:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:01", + "echoMap": {}, + "alarmNo": "1490181981", + "alarmDate": "1769980842072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060070", + "deviceName": "[303](10)图书馆1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897403", + "createdBy": null, + "createdTime": "2026-02-02 05:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:41", + "echoMap": {}, + "alarmNo": "1490181980", + "alarmDate": "1769980839902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060024", + "deviceName": "[330](10)图书馆3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113218085897225", + "createdBy": null, + "createdTime": "2026-02-02 05:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:19", + "echoMap": {}, + "alarmNo": "1490181979", + "alarmDate": "1769980277609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113209495962976", + "createdBy": null, + "createdTime": "2026-02-02 05:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:55", + "echoMap": {}, + "alarmNo": "1490181978", + "alarmDate": "1769980253880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113200906028379", + "createdBy": null, + "createdTime": "2026-02-02 04:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:33", + "echoMap": {}, + "alarmNo": "1490181977", + "alarmDate": "1769979091491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113200906028149", + "createdBy": null, + "createdTime": "2026-02-02 04:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:45", + "echoMap": {}, + "alarmNo": "1490181976", + "alarmDate": "1769979043989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113200906028133", + "createdBy": null, + "createdTime": "2026-02-02 04:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:07", + "echoMap": {}, + "alarmNo": "1490181975", + "alarmDate": "1769979041337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113196611060774", + "createdBy": null, + "createdTime": "2026-02-02 04:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:38", + "echoMap": {}, + "alarmNo": "1490181974", + "alarmDate": "1769978496836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113192316093695", + "createdBy": null, + "createdTime": "2026-02-02 04:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:02", + "echoMap": {}, + "alarmNo": "1490181973", + "alarmDate": "1769978461109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113183726158933", + "createdBy": null, + "createdTime": "2026-02-02 04:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:17", + "echoMap": {}, + "alarmNo": "1490181972", + "alarmDate": "1769977283449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113183726158881", + "createdBy": null, + "createdTime": "2026-02-02 04:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:30", + "echoMap": {}, + "alarmNo": "1490181971", + "alarmDate": "1769977277681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224593", + "createdBy": null, + "createdTime": "2026-02-02 04:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:04", + "echoMap": {}, + "alarmNo": "1490181970", + "alarmDate": "1769977263186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224580", + "createdBy": null, + "createdTime": "2026-02-02 04:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:03", + "echoMap": {}, + "alarmNo": "1490181969", + "alarmDate": "1769977261545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224522", + "createdBy": null, + "createdTime": "2026-02-02 04:20:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:06", + "echoMap": {}, + "alarmNo": "1490181968", + "alarmDate": "1769977253656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224434", + "createdBy": null, + "createdTime": "2026-02-02 04:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:42", + "echoMap": {}, + "alarmNo": "1490181967", + "alarmDate": "1769977239686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224298", + "createdBy": null, + "createdTime": "2026-02-02 04:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:23", + "echoMap": {}, + "alarmNo": "1490181966", + "alarmDate": "1769976689264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113175136224262", + "createdBy": null, + "createdTime": "2026-02-02 04:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:36", + "echoMap": {}, + "alarmNo": "1490181965", + "alarmDate": "1769976684466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289981", + "createdBy": null, + "createdTime": "2026-02-02 04:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:09", + "echoMap": {}, + "alarmNo": "1490181964", + "alarmDate": "1769976668297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289922", + "createdBy": null, + "createdTime": "2026-02-02 04:11:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:12", + "echoMap": {}, + "alarmNo": "1490181963", + "alarmDate": "1769976660347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289687", + "createdBy": null, + "createdTime": "2026-02-02 04:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:48", + "echoMap": {}, + "alarmNo": "1490181962", + "alarmDate": "1769976097308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113166546289674", + "createdBy": null, + "createdTime": "2026-02-02 04:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:29", + "echoMap": {}, + "alarmNo": "1490181961", + "alarmDate": "1769976094859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113157956355384", + "createdBy": null, + "createdTime": "2026-02-02 04:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:19", + "echoMap": {}, + "alarmNo": "1490181960", + "alarmDate": "1769976073195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113157956355371", + "createdBy": null, + "createdTime": "2026-02-02 04:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:35", + "echoMap": {}, + "alarmNo": "1490181959", + "alarmDate": "1769976070852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113157956355189", + "createdBy": null, + "createdTime": "2026-02-02 04:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:55", + "echoMap": {}, + "alarmNo": "1490181958", + "alarmDate": "1769976043140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420829", + "createdBy": null, + "createdTime": "2026-02-02 03:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:21", + "echoMap": {}, + "alarmNo": "1490181957", + "alarmDate": "1769975480260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420824", + "createdBy": null, + "createdTime": "2026-02-02 03:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:21", + "echoMap": {}, + "alarmNo": "1490181956", + "alarmDate": "1769975479643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420817", + "createdBy": null, + "createdTime": "2026-02-02 03:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:31", + "echoMap": {}, + "alarmNo": "1490181955", + "alarmDate": "1769975478913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420810", + "createdBy": null, + "createdTime": "2026-02-02 03:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:11", + "echoMap": {}, + "alarmNo": "1490181954", + "alarmDate": "1769975477562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420766", + "createdBy": null, + "createdTime": "2026-02-02 03:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:11", + "echoMap": {}, + "alarmNo": "1490181953", + "alarmDate": "1769975469590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420692", + "createdBy": null, + "createdTime": "2026-02-02 03:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:07", + "echoMap": {}, + "alarmNo": "1490181952", + "alarmDate": "1769975455874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420680", + "createdBy": null, + "createdTime": "2026-02-02 03:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:17", + "echoMap": {}, + "alarmNo": "1490181951", + "alarmDate": "1769975453534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113149366420606", + "createdBy": null, + "createdTime": "2026-02-02 03:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:43", + "echoMap": {}, + "alarmNo": "1490181950", + "alarmDate": "1769975439813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113145071453184", + "createdBy": null, + "createdTime": "2026-02-02 03:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:38", + "echoMap": {}, + "alarmNo": "1490181949", + "alarmDate": "1769974885674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486251", + "createdBy": null, + "createdTime": "2026-02-02 03:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:53", + "echoMap": {}, + "alarmNo": "1490181948", + "alarmDate": "1769974884148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486202", + "createdBy": null, + "createdTime": "2026-02-02 03:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:16", + "echoMap": {}, + "alarmNo": "1490181947", + "alarmDate": "1769974875426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486127", + "createdBy": null, + "createdTime": "2026-02-02 03:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:14", + "echoMap": {}, + "alarmNo": "1490181946", + "alarmDate": "1769974861633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486115", + "createdBy": null, + "createdTime": "2026-02-02 03:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:23", + "echoMap": {}, + "alarmNo": "1490181945", + "alarmDate": "1769974859330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113140776486013", + "createdBy": null, + "createdTime": "2026-02-02 03:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:50", + "echoMap": {}, + "alarmNo": "1490181944", + "alarmDate": "1769974839619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551636", + "createdBy": null, + "createdTime": "2026-02-02 03:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:26", + "echoMap": {}, + "alarmNo": "1490181943", + "alarmDate": "1769974274498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551481", + "createdBy": null, + "createdTime": "2026-02-02 03:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:49", + "echoMap": {}, + "alarmNo": "1490181942", + "alarmDate": "1769974247594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551465", + "createdBy": null, + "createdTime": "2026-02-02 03:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:46", + "echoMap": {}, + "alarmNo": "1490181941", + "alarmDate": "1769974244901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551459", + "createdBy": null, + "createdTime": "2026-02-02 03:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:56", + "echoMap": {}, + "alarmNo": "1490181940", + "alarmDate": "1769974244395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551443", + "createdBy": null, + "createdTime": "2026-02-02 03:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:59", + "echoMap": {}, + "alarmNo": "1490181939", + "alarmDate": "1769974240833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551346", + "createdBy": null, + "createdTime": "2026-02-02 03:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:40", + "echoMap": {}, + "alarmNo": "1490181938", + "alarmDate": "1769973699407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113132186551324", + "createdBy": null, + "createdTime": "2026-02-02 03:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:36", + "echoMap": {}, + "alarmNo": "1490181937", + "alarmDate": "1769973694757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113127891584093", + "createdBy": null, + "createdTime": "2026-02-02 03:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:32", + "echoMap": {}, + "alarmNo": "1490181936", + "alarmDate": "1769973680183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113127891584032", + "createdBy": null, + "createdTime": "2026-02-02 03:21:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:10", + "echoMap": {}, + "alarmNo": "1490181935", + "alarmDate": "1769973668683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113123596616818", + "createdBy": null, + "createdTime": "2026-02-02 03:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:08", + "echoMap": {}, + "alarmNo": "1490181934", + "alarmDate": "1769973086907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113123596616794", + "createdBy": null, + "createdTime": "2026-02-02 03:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:24", + "echoMap": {}, + "alarmNo": "1490181933", + "alarmDate": "1769973082671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113119301649495", + "createdBy": null, + "createdTime": "2026-02-02 03:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:15", + "echoMap": {}, + "alarmNo": "1490181932", + "alarmDate": "1769973062804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113115006682439", + "createdBy": null, + "createdTime": "2026-02-02 03:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:51", + "echoMap": {}, + "alarmNo": "1490181931", + "alarmDate": "1769973039925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113115006682173", + "createdBy": null, + "createdTime": "2026-02-02 03:01:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:22", + "echoMap": {}, + "alarmNo": "1490181930", + "alarmDate": "1769972469559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113115006682160", + "createdBy": null, + "createdTime": "2026-02-02 03:01:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:09", + "echoMap": {}, + "alarmNo": "1490181929", + "alarmDate": "1769972467635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747861", + "createdBy": null, + "createdTime": "2026-02-02 03:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:58", + "echoMap": {}, + "alarmNo": "1490181928", + "alarmDate": "1769972444534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747735", + "createdBy": null, + "createdTime": "2026-02-02 02:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:41", + "echoMap": {}, + "alarmNo": "1490181927", + "alarmDate": "1769971895596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747650", + "createdBy": null, + "createdTime": "2026-02-02 02:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:33", + "echoMap": {}, + "alarmNo": "1490181926", + "alarmDate": "1769971881378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113106416747553", + "createdBy": null, + "createdTime": "2026-02-02 02:51:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:05", + "echoMap": {}, + "alarmNo": "1490181925", + "alarmDate": "1769971863869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113102121780266", + "createdBy": null, + "createdTime": "2026-02-02 02:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:09", + "echoMap": {}, + "alarmNo": "1490181924", + "alarmDate": "1769971857287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113097826813170", + "createdBy": null, + "createdTime": "2026-02-02 02:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:43", + "echoMap": {}, + "alarmNo": "1490181923", + "alarmDate": "1769971842059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113097826813011", + "createdBy": null, + "createdTime": "2026-02-02 02:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:32", + "echoMap": {}, + "alarmNo": "1490181922", + "alarmDate": "1769971290817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113097826812990", + "createdBy": null, + "createdTime": "2026-02-02 02:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:45", + "echoMap": {}, + "alarmNo": "1490181921", + "alarmDate": "1769971288190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113089236878607", + "createdBy": null, + "createdTime": "2026-02-02 02:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:16", + "echoMap": {}, + "alarmNo": "1490181920", + "alarmDate": "1769971264036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113089236878554", + "createdBy": null, + "createdTime": "2026-02-02 02:40:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:36", + "echoMap": {}, + "alarmNo": "1490181919", + "alarmDate": "1769971254173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113089236878449", + "createdBy": null, + "createdTime": "2026-02-02 02:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:52", + "echoMap": {}, + "alarmNo": "1490181918", + "alarmDate": "1769971240074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113084941911043", + "createdBy": null, + "createdTime": "2026-02-02 02:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:28", + "echoMap": {}, + "alarmNo": "1490181917", + "alarmDate": "1769970686996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646944010", + "createdBy": null, + "createdTime": "2026-02-02 02:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:29", + "echoMap": {}, + "alarmNo": "1490181916", + "alarmDate": "1769970676872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646943979", + "createdBy": null, + "createdTime": "2026-02-02 02:31:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:13", + "echoMap": {}, + "alarmNo": "1490181915", + "alarmDate": "1769970672244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646943845", + "createdBy": null, + "createdTime": "2026-02-02 02:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:05", + "echoMap": {}, + "alarmNo": "1490181914", + "alarmDate": "1769970652775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113080646943774", + "createdBy": null, + "createdTime": "2026-02-02 02:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:42", + "echoMap": {}, + "alarmNo": "1490181913", + "alarmDate": "1769970641209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009394", + "createdBy": null, + "createdTime": "2026-02-02 02:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:35", + "echoMap": {}, + "alarmNo": "1490181912", + "alarmDate": "1769970082601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009264", + "createdBy": null, + "createdTime": "2026-02-02 02:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:01", + "echoMap": {}, + "alarmNo": "1490181911", + "alarmDate": "1769970060013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009252", + "createdBy": null, + "createdTime": "2026-02-02 02:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:11", + "echoMap": {}, + "alarmNo": "1490181910", + "alarmDate": "1769970058513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009221", + "createdBy": null, + "createdTime": "2026-02-02 02:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:54", + "echoMap": {}, + "alarmNo": "1490181909", + "alarmDate": "1769970052910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113072057009197", + "createdBy": null, + "createdTime": "2026-02-02 02:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:50", + "echoMap": {}, + "alarmNo": "1490181908", + "alarmDate": "1769970049204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074838", + "createdBy": null, + "createdTime": "2026-02-02 02:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:39", + "echoMap": {}, + "alarmNo": "1490181907", + "alarmDate": "1769969498036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074785", + "createdBy": null, + "createdTime": "2026-02-02 02:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:47", + "echoMap": {}, + "alarmNo": "1490181906", + "alarmDate": "1769969489325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074727", + "createdBy": null, + "createdTime": "2026-02-02 02:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:54", + "echoMap": {}, + "alarmNo": "1490181905", + "alarmDate": "1769969478221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074647", + "createdBy": null, + "createdTime": "2026-02-02 02:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:17", + "echoMap": {}, + "alarmNo": "1490181904", + "alarmDate": "1769969465310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074600", + "createdBy": null, + "createdTime": "2026-02-02 02:10:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:18", + "echoMap": {}, + "alarmNo": "1490181903", + "alarmDate": "1769969454247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113063467074592", + "createdBy": null, + "createdTime": "2026-02-02 02:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:54", + "echoMap": {}, + "alarmNo": "1490181902", + "alarmDate": "1769969453237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113059172107276", + "createdBy": null, + "createdTime": "2026-02-02 02:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:53", + "echoMap": {}, + "alarmNo": "1490181901", + "alarmDate": "1769969441196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140167", + "createdBy": null, + "createdTime": "2026-02-02 02:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:54", + "echoMap": {}, + "alarmNo": "1490181900", + "alarmDate": "1769968883989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140130", + "createdBy": null, + "createdTime": "2026-02-02 02:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:30", + "echoMap": {}, + "alarmNo": "1490181899", + "alarmDate": "1769968878060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140046", + "createdBy": null, + "createdTime": "2026-02-02 02:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:24", + "echoMap": {}, + "alarmNo": "1490181898", + "alarmDate": "1769968859955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113054877140008", + "createdBy": null, + "createdTime": "2026-02-02 02:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:00", + "echoMap": {}, + "alarmNo": "1490181897", + "alarmDate": "1769968854001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205535", + "createdBy": null, + "createdTime": "2026-02-02 01:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:37", + "echoMap": {}, + "alarmNo": "1490181896", + "alarmDate": "1769968284723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205446", + "createdBy": null, + "createdTime": "2026-02-02 01:51:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:00", + "echoMap": {}, + "alarmNo": "1490181895", + "alarmDate": "1769968266560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205422", + "createdBy": null, + "createdTime": "2026-02-02 01:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:04", + "echoMap": {}, + "alarmNo": "1490181894", + "alarmDate": "1769968262955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113046287205399", + "createdBy": null, + "createdTime": "2026-02-02 01:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:12", + "echoMap": {}, + "alarmNo": "1490181893", + "alarmDate": "1769968259659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113041992238122", + "createdBy": null, + "createdTime": "2026-02-02 01:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:57", + "echoMap": {}, + "alarmNo": "1490181892", + "alarmDate": "1769968256397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113037697270912", + "createdBy": null, + "createdTime": "2026-02-02 01:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:48", + "echoMap": {}, + "alarmNo": "1490181891", + "alarmDate": "1769967690581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113037697270785", + "createdBy": null, + "createdTime": "2026-02-02 01:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:12", + "echoMap": {}, + "alarmNo": "1490181890", + "alarmDate": "1769967671368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113033402303497", + "createdBy": null, + "createdTime": "2026-02-02 01:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:19", + "echoMap": {}, + "alarmNo": "1490181889", + "alarmDate": "1769967666524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113029107336388", + "createdBy": null, + "createdTime": "2026-02-02 01:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:54", + "echoMap": {}, + "alarmNo": "1490181888", + "alarmDate": "1769967642388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113029107336381", + "createdBy": null, + "createdTime": "2026-02-02 01:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:00", + "echoMap": {}, + "alarmNo": "1490181887", + "alarmDate": "1769967641612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060086", + "deviceName": "[103](10)图书馆上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113024812368917", + "createdBy": null, + "createdTime": "2026-02-02 01:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:31", + "echoMap": {}, + "alarmNo": "1490181886", + "alarmDate": "1769967079262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113020517401762", + "createdBy": null, + "createdTime": "2026-02-02 01:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:01", + "echoMap": {}, + "alarmNo": "1490181885", + "alarmDate": "1769967055155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467248", + "createdBy": null, + "createdTime": "2026-02-02 01:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:38", + "echoMap": {}, + "alarmNo": "1490181884", + "alarmDate": "1769966486063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467193", + "createdBy": null, + "createdTime": "2026-02-02 01:21:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:17", + "echoMap": {}, + "alarmNo": "1490181883", + "alarmDate": "1769966476107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467134", + "createdBy": null, + "createdTime": "2026-02-02 01:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:07", + "echoMap": {}, + "alarmNo": "1490181882", + "alarmDate": "1769966466432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467113", + "createdBy": null, + "createdTime": "2026-02-02 01:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:05", + "echoMap": {}, + "alarmNo": "1490181881", + "alarmDate": "1769966463629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113011927467099", + "createdBy": null, + "createdTime": "2026-02-02 01:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:14", + "echoMap": {}, + "alarmNo": "1490181880", + "alarmDate": "1769966462054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113007632499723", + "createdBy": null, + "createdTime": "2026-02-02 01:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:50", + "echoMap": {}, + "alarmNo": "1490181879", + "alarmDate": "1769966439792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113003337532559", + "createdBy": null, + "createdTime": "2026-02-02 01:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:31", + "echoMap": {}, + "alarmNo": "1490181878", + "alarmDate": "1769965890372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113003337532473", + "createdBy": null, + "createdTime": "2026-02-02 01:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:06", + "echoMap": {}, + "alarmNo": "1490181877", + "alarmDate": "1769965873370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723113003337532437", + "createdBy": null, + "createdTime": "2026-02-02 01:11:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:20", + "echoMap": {}, + "alarmNo": "1490181876", + "alarmDate": "1769965867641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112994747598054", + "createdBy": null, + "createdTime": "2026-02-02 01:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:13", + "echoMap": {}, + "alarmNo": "1490181875", + "alarmDate": "1769965849234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112994747598024", + "createdBy": null, + "createdTime": "2026-02-02 01:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:56", + "echoMap": {}, + "alarmNo": "1490181874", + "alarmDate": "1769965844509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112994747598009", + "createdBy": null, + "createdTime": "2026-02-02 01:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:43", + "echoMap": {}, + "alarmNo": "1490181873", + "alarmDate": "1769965842196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060079", + "deviceName": "[207](10)图书馆下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112990452630530", + "createdBy": null, + "createdTime": "2026-02-02 01:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:26", + "echoMap": {}, + "alarmNo": "1490181872", + "alarmDate": "1769965274362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112986157663326", + "createdBy": null, + "createdTime": "2026-02-02 01:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:42", + "echoMap": {}, + "alarmNo": "1490181871", + "alarmDate": "1769965241412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112981862695948", + "createdBy": null, + "createdTime": "2026-02-02 00:51:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:33", + "echoMap": {}, + "alarmNo": "1490181870", + "alarmDate": "1769964692178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728877", + "createdBy": null, + "createdTime": "2026-02-02 00:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:02", + "echoMap": {}, + "alarmNo": "1490181869", + "alarmDate": "1769964686151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728798", + "createdBy": null, + "createdTime": "2026-02-02 00:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:13", + "echoMap": {}, + "alarmNo": "1490181868", + "alarmDate": "1769964671810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728727", + "createdBy": null, + "createdTime": "2026-02-02 00:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:14", + "echoMap": {}, + "alarmNo": "1490181867", + "alarmDate": "1769964662087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112977567728707", + "createdBy": null, + "createdTime": "2026-02-02 00:50:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:00", + "echoMap": {}, + "alarmNo": "1490181866", + "alarmDate": "1769964658726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112968977794219", + "createdBy": null, + "createdTime": "2026-02-02 00:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:49", + "echoMap": {}, + "alarmNo": "1490181865", + "alarmDate": "1769964097324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112968977794190", + "createdBy": null, + "createdTime": "2026-02-02 00:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:50", + "echoMap": {}, + "alarmNo": "1490181864", + "alarmDate": "1769964092838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112968977794054", + "createdBy": null, + "createdTime": "2026-02-02 00:41:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:21", + "echoMap": {}, + "alarmNo": "1490181863", + "alarmDate": "1769964068840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112960387859649", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:57", + "echoMap": {}, + "alarmNo": "1490181862", + "alarmDate": "1769964044715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112956092892186", + "createdBy": null, + "createdTime": "2026-02-02 00:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:37", + "echoMap": {}, + "alarmNo": "1490181861", + "alarmDate": "1769963482164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797925129", + "createdBy": null, + "createdTime": "2026-02-02 00:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:28", + "echoMap": {}, + "alarmNo": "1490181860", + "alarmDate": "1769963476030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797925038", + "createdBy": null, + "createdTime": "2026-02-02 00:30:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:20", + "echoMap": {}, + "alarmNo": "1490181859", + "alarmDate": "1769963457731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797925014", + "createdBy": null, + "createdTime": "2026-02-02 00:30:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:55", + "echoMap": {}, + "alarmNo": "1490181858", + "alarmDate": "1769963453863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060022", + "deviceName": "[211](10)图书馆3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797924999", + "createdBy": null, + "createdTime": "2026-02-02 00:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:04", + "echoMap": {}, + "alarmNo": "1490181857", + "alarmDate": "1769963451938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112951797924960", + "createdBy": null, + "createdTime": "2026-02-02 00:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:47", + "echoMap": {}, + "alarmNo": "1490181856", + "alarmDate": "1769963444855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060078", + "deviceName": "[209](10)图书馆1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990500", + "createdBy": null, + "createdTime": "2026-02-02 00:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:40", + "echoMap": {}, + "alarmNo": "1490181855", + "alarmDate": "1769962888788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990447", + "createdBy": null, + "createdTime": "2026-02-02 00:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:21", + "echoMap": {}, + "alarmNo": "1490181854", + "alarmDate": "1769962879367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060104", + "deviceName": "[619](10)图书馆气瓶间1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990438", + "createdBy": null, + "createdTime": "2026-02-02 00:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:19", + "echoMap": {}, + "alarmNo": "1490181853", + "alarmDate": "1769962878395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112943207990352", + "createdBy": null, + "createdTime": "2026-02-02 00:21:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:16", + "echoMap": {}, + "alarmNo": "1490181852", + "alarmDate": "1769962864078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112934618055720", + "createdBy": null, + "createdTime": "2026-02-02 00:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:52", + "echoMap": {}, + "alarmNo": "1490181851", + "alarmDate": "1769962294645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112926028121296", + "createdBy": null, + "createdTime": "2026-02-02 00:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:22", + "echoMap": {}, + "alarmNo": "1490181850", + "alarmDate": "1769962270189", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112926028121169", + "createdBy": null, + "createdTime": "2026-02-02 00:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:58", + "echoMap": {}, + "alarmNo": "1490181849", + "alarmDate": "1769962247490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112926028121168", + "createdBy": null, + "createdTime": "2026-02-02 00:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:47", + "echoMap": {}, + "alarmNo": "1490181848", + "alarmDate": "1769962247487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112917438186574", + "createdBy": null, + "createdTime": "2026-02-02 00:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:56", + "echoMap": {}, + "alarmNo": "1490181847", + "alarmDate": "1769961682142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060020", + "deviceName": "[325](10)图书馆3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112917438186537", + "createdBy": null, + "createdTime": "2026-02-02 00:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:29", + "echoMap": {}, + "alarmNo": "1490181846", + "alarmDate": "1769961676747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112908848252122", + "createdBy": null, + "createdTime": "2026-02-02 00:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:05", + "echoMap": {}, + "alarmNo": "1490181845", + "alarmDate": "1769961652761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060023", + "deviceName": "[326](10)图书馆3#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + }, + { + "id": "723112908848252071", + "createdBy": null, + "createdTime": "2026-02-02 00:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:44", + "echoMap": {}, + "alarmNo": "1490181844", + "alarmDate": "1769961643250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1011060101", + "deviceName": "[205](10)图书馆上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1011" + } + ] + }, + "1012": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112878783454212", + "createdBy": null, + "createdTime": "2026-02-02 00:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:47", + "echoMap": {}, + "alarmNo": "1510202697", + "alarmDate": "1769961768406", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1012060051", + "deviceName": "[329](10)陕西南10-12换乘入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421534", + "createdBy": null, + "createdTime": "2026-02-02 00:07:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:58", + "echoMap": {}, + "alarmNo": "1510202698", + "alarmDate": "1769962072004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421562", + "createdBy": null, + "createdTime": "2026-02-02 00:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:03", + "echoMap": {}, + "alarmNo": "1510202699", + "alarmDate": "1769962081803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421573", + "createdBy": null, + "createdTime": "2026-02-02 00:08:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:06", + "echoMap": {}, + "alarmNo": "1510202700", + "alarmDate": "1769962085695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421600", + "createdBy": null, + "createdTime": "2026-02-02 00:08:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:23", + "echoMap": {}, + "alarmNo": "1510202701", + "alarmDate": "1769962097005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112887373388843", + "createdBy": null, + "createdTime": "2026-02-02 00:17:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:51", + "echoMap": {}, + "alarmNo": "1510202702", + "alarmDate": "1769962669734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112891668356305", + "createdBy": null, + "createdTime": "2026-02-02 00:27:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:58", + "echoMap": {}, + "alarmNo": "1510202703", + "alarmDate": "1769963264504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112895963323428", + "createdBy": null, + "createdTime": "2026-02-02 00:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:02", + "echoMap": {}, + "alarmNo": "1510202704", + "alarmDate": "1769963281376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290702", + "createdBy": null, + "createdTime": "2026-02-02 00:28:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:29", + "echoMap": {}, + "alarmNo": "1510202705", + "alarmDate": "1769963296887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290756", + "createdBy": null, + "createdTime": "2026-02-02 00:28:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:36", + "echoMap": {}, + "alarmNo": "1510202706", + "alarmDate": "1769963315568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290883", + "createdBy": null, + "createdTime": "2026-02-02 00:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:19", + "echoMap": {}, + "alarmNo": "1510202707", + "alarmDate": "1769963864500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290891", + "createdBy": null, + "createdTime": "2026-02-02 00:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:00", + "echoMap": {}, + "alarmNo": "1510202708", + "alarmDate": "1769963867685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290899", + "createdBy": null, + "createdTime": "2026-02-02 00:37:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:50", + "echoMap": {}, + "alarmNo": "1510202709", + "alarmDate": "1769963869422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290905", + "createdBy": null, + "createdTime": "2026-02-02 00:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:52", + "echoMap": {}, + "alarmNo": "1510202710", + "alarmDate": "1769963870888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112904553258035", + "createdBy": null, + "createdTime": "2026-02-02 00:38:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:28", + "echoMap": {}, + "alarmNo": "1510202711", + "alarmDate": "1769963906422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112908848225403", + "createdBy": null, + "createdTime": "2026-02-02 00:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:48", + "echoMap": {}, + "alarmNo": "1510202712", + "alarmDate": "1769964461647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112908848225514", + "createdBy": null, + "createdTime": "2026-02-02 00:48:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:51", + "echoMap": {}, + "alarmNo": "1510202713", + "alarmDate": "1769964510756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112913143192581", + "createdBy": null, + "createdTime": "2026-02-02 00:48:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:35", + "echoMap": {}, + "alarmNo": "1510202714", + "alarmDate": "1769964513608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438159952", + "createdBy": null, + "createdTime": "2026-02-02 00:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:43", + "echoMap": {}, + "alarmNo": "1510202715", + "alarmDate": "1769965061678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160017", + "createdBy": null, + "createdTime": "2026-02-02 00:58:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:15", + "echoMap": {}, + "alarmNo": "1510202716", + "alarmDate": "1769965089002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160055", + "createdBy": null, + "createdTime": "2026-02-02 00:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:24", + "echoMap": {}, + "alarmNo": "1510202717", + "alarmDate": "1769965102755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160058", + "createdBy": null, + "createdTime": "2026-02-02 00:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:24", + "echoMap": {}, + "alarmNo": "1510202718", + "alarmDate": "1769965102998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160084", + "createdBy": null, + "createdTime": "2026-02-02 00:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:39", + "echoMap": {}, + "alarmNo": "1510202719", + "alarmDate": "1769965114025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094482", + "createdBy": null, + "createdTime": "2026-02-02 01:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:04", + "echoMap": {}, + "alarmNo": "1510202720", + "alarmDate": "1769965661198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094589", + "createdBy": null, + "createdTime": "2026-02-02 01:08:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:28", + "echoMap": {}, + "alarmNo": "1510202721", + "alarmDate": "1769965684375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094613", + "createdBy": null, + "createdTime": "2026-02-02 01:08:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:11", + "echoMap": {}, + "alarmNo": "1510202722", + "alarmDate": "1769965690114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094706", + "createdBy": null, + "createdTime": "2026-02-02 01:08:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:51", + "echoMap": {}, + "alarmNo": "1510202723", + "alarmDate": "1769965708397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094720", + "createdBy": null, + "createdTime": "2026-02-02 01:08:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:33", + "echoMap": {}, + "alarmNo": "1510202724", + "alarmDate": "1769965711620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112934618029157", + "createdBy": null, + "createdTime": "2026-02-02 01:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:17", + "echoMap": {}, + "alarmNo": "1510202725", + "alarmDate": "1769966271487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112934618029284", + "createdBy": null, + "createdTime": "2026-02-02 01:18:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:40", + "echoMap": {}, + "alarmNo": "1510202726", + "alarmDate": "1769966296592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963665", + "createdBy": null, + "createdTime": "2026-02-02 01:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:04", + "echoMap": {}, + "alarmNo": "1510202727", + "alarmDate": "1769966319628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963768", + "createdBy": null, + "createdTime": "2026-02-02 01:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:09", + "echoMap": {}, + "alarmNo": "1510202728", + "alarmDate": "1769966861633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963880", + "createdBy": null, + "createdTime": "2026-02-02 01:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:04", + "echoMap": {}, + "alarmNo": "1510202729", + "alarmDate": "1769966883142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963885", + "createdBy": null, + "createdTime": "2026-02-02 01:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:28", + "echoMap": {}, + "alarmNo": "1510202730", + "alarmDate": "1769966883858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963900", + "createdBy": null, + "createdTime": "2026-02-02 01:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:08", + "echoMap": {}, + "alarmNo": "1510202731", + "alarmDate": "1769966886989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898269", + "createdBy": null, + "createdTime": "2026-02-02 01:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:52", + "echoMap": {}, + "alarmNo": "1510202732", + "alarmDate": "1769966907928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898487", + "createdBy": null, + "createdTime": "2026-02-02 01:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:16", + "echoMap": {}, + "alarmNo": "1510202733", + "alarmDate": "1769967472035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898493", + "createdBy": null, + "createdTime": "2026-02-02 01:37:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:54", + "echoMap": {}, + "alarmNo": "1510202734", + "alarmDate": "1769967472907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898595", + "createdBy": null, + "createdTime": "2026-02-02 01:38:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:03", + "echoMap": {}, + "alarmNo": "1510202735", + "alarmDate": "1769967496159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898611", + "createdBy": null, + "createdTime": "2026-02-02 01:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:56", + "echoMap": {}, + "alarmNo": "1510202736", + "alarmDate": "1769967500953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112964682800150", + "createdBy": null, + "createdTime": "2026-02-02 01:48:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:27", + "echoMap": {}, + "alarmNo": "1510202737", + "alarmDate": "1769968083392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112964682800167", + "createdBy": null, + "createdTime": "2026-02-02 01:48:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:43", + "echoMap": {}, + "alarmNo": "1510202738", + "alarmDate": "1769968088173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112968977767500", + "createdBy": null, + "createdTime": "2026-02-02 01:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:51", + "echoMap": {}, + "alarmNo": "1510202739", + "alarmDate": "1769968107459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702043", + "createdBy": null, + "createdTime": "2026-02-02 01:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:15", + "echoMap": {}, + "alarmNo": "1510202740", + "alarmDate": "1769968670645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702054", + "createdBy": null, + "createdTime": "2026-02-02 01:57:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:55", + "echoMap": {}, + "alarmNo": "1510202741", + "alarmDate": "1769968673982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702062", + "createdBy": null, + "createdTime": "2026-02-02 01:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:19", + "echoMap": {}, + "alarmNo": "1510202742", + "alarmDate": "1769968675448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702065", + "createdBy": null, + "createdTime": "2026-02-02 01:57:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:57", + "echoMap": {}, + "alarmNo": "1510202743", + "alarmDate": "1769968675848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702160", + "createdBy": null, + "createdTime": "2026-02-02 01:58:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:39", + "echoMap": {}, + "alarmNo": "1510202744", + "alarmDate": "1769968694734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112981862669312", + "createdBy": null, + "createdTime": "2026-02-02 01:58:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:29", + "echoMap": {}, + "alarmNo": "1510202745", + "alarmDate": "1769968707648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112986157636612", + "createdBy": null, + "createdTime": "2026-02-02 01:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:02", + "echoMap": {}, + "alarmNo": "1510202746", + "alarmDate": "1769968718742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112986157636827", + "createdBy": null, + "createdTime": "2026-02-02 02:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:26", + "echoMap": {}, + "alarmNo": "1510202747", + "alarmDate": "1769969282038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112994747571223", + "createdBy": null, + "createdTime": "2026-02-02 02:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:50", + "echoMap": {}, + "alarmNo": "1510202748", + "alarmDate": "1769969306052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112994747571239", + "createdBy": null, + "createdTime": "2026-02-02 02:08:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:18", + "echoMap": {}, + "alarmNo": "1510202749", + "alarmDate": "1769969310879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337505795", + "createdBy": null, + "createdTime": "2026-02-02 02:17:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:14", + "echoMap": {}, + "alarmNo": "1510202750", + "alarmDate": "1769969870199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337505906", + "createdBy": null, + "createdTime": "2026-02-02 02:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:38", + "echoMap": {}, + "alarmNo": "1510202751", + "alarmDate": "1769969894248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337506018", + "createdBy": null, + "createdTime": "2026-02-02 02:18:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:37", + "echoMap": {}, + "alarmNo": "1510202752", + "alarmDate": "1769969915542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337506020", + "createdBy": null, + "createdTime": "2026-02-02 02:18:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:37", + "echoMap": {}, + "alarmNo": "1510202753", + "alarmDate": "1769969915655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113007632473103", + "createdBy": null, + "createdTime": "2026-02-02 02:18:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:01", + "echoMap": {}, + "alarmNo": "1510202754", + "alarmDate": "1769969918299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113011927440467", + "createdBy": null, + "createdTime": "2026-02-02 02:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:47", + "echoMap": {}, + "alarmNo": "1510202755", + "alarmDate": "1769970465720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113011927440474", + "createdBy": null, + "createdTime": "2026-02-02 02:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:48", + "echoMap": {}, + "alarmNo": "1510202756", + "alarmDate": "1769970466952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113016222407696", + "createdBy": null, + "createdTime": "2026-02-02 02:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:25", + "echoMap": {}, + "alarmNo": "1510202757", + "alarmDate": "1769970481430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113016222407734", + "createdBy": null, + "createdTime": "2026-02-02 02:28:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:11", + "echoMap": {}, + "alarmNo": "1510202758", + "alarmDate": "1769970490469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113020517375046", + "createdBy": null, + "createdTime": "2026-02-02 02:28:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:49", + "echoMap": {}, + "alarmNo": "1510202759", + "alarmDate": "1769970505563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113020517375062", + "createdBy": null, + "createdTime": "2026-02-02 02:28:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:30", + "echoMap": {}, + "alarmNo": "1510202760", + "alarmDate": "1769970510445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113020517375240", + "createdBy": null, + "createdTime": "2026-02-02 02:37:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:13", + "echoMap": {}, + "alarmNo": "1510202761", + "alarmDate": "1769971068699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113029107309630", + "createdBy": null, + "createdTime": "2026-02-02 02:38:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:37", + "echoMap": {}, + "alarmNo": "1510202762", + "alarmDate": "1769971092841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113029107309735", + "createdBy": null, + "createdTime": "2026-02-02 02:38:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:01", + "echoMap": {}, + "alarmNo": "1510202763", + "alarmDate": "1769971116828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113029107309858", + "createdBy": null, + "createdTime": "2026-02-02 02:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:41", + "echoMap": {}, + "alarmNo": "1510202764", + "alarmDate": "1769971661824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244193", + "createdBy": null, + "createdTime": "2026-02-02 02:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:24", + "echoMap": {}, + "alarmNo": "1510202765", + "alarmDate": "1769971681035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244300", + "createdBy": null, + "createdTime": "2026-02-02 02:48:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:48", + "echoMap": {}, + "alarmNo": "1510202766", + "alarmDate": "1769971704134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244304", + "createdBy": null, + "createdTime": "2026-02-02 02:48:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:25", + "echoMap": {}, + "alarmNo": "1510202767", + "alarmDate": "1769971704448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244319", + "createdBy": null, + "createdTime": "2026-02-02 02:48:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:29", + "echoMap": {}, + "alarmNo": "1510202768", + "alarmDate": "1769971707555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244490", + "createdBy": null, + "createdTime": "2026-02-02 02:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:05", + "echoMap": {}, + "alarmNo": "1510202769", + "alarmDate": "1769972262082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244523", + "createdBy": null, + "createdTime": "2026-02-02 02:57:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:12", + "echoMap": {}, + "alarmNo": "1510202770", + "alarmDate": "1769972268270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244545", + "createdBy": null, + "createdTime": "2026-02-02 02:57:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:54", + "echoMap": {}, + "alarmNo": "1510202771", + "alarmDate": "1769972273291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113046287178761", + "createdBy": null, + "createdTime": "2026-02-02 02:58:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:36", + "echoMap": {}, + "alarmNo": "1510202772", + "alarmDate": "1769972292361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113046287178778", + "createdBy": null, + "createdTime": "2026-02-02 02:58:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:41", + "echoMap": {}, + "alarmNo": "1510202773", + "alarmDate": "1769972297120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113046287178871", + "createdBy": null, + "createdTime": "2026-02-02 02:58:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:59", + "echoMap": {}, + "alarmNo": "1510202774", + "alarmDate": "1769972316400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113050582146116", + "createdBy": null, + "createdTime": "2026-02-02 03:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:24", + "echoMap": {}, + "alarmNo": "1510202775", + "alarmDate": "1769972879529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113054877113466", + "createdBy": null, + "createdTime": "2026-02-02 03:08:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:47", + "echoMap": {}, + "alarmNo": "1510202776", + "alarmDate": "1769972903667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113054877113638", + "createdBy": null, + "createdTime": "2026-02-02 03:17:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:28", + "echoMap": {}, + "alarmNo": "1510202777", + "alarmDate": "1769973461698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113054877113664", + "createdBy": null, + "createdTime": "2026-02-02 03:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:11", + "echoMap": {}, + "alarmNo": "1510202778", + "alarmDate": "1769973466811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467047973", + "createdBy": null, + "createdTime": "2026-02-02 03:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:35", + "echoMap": {}, + "alarmNo": "1510202779", + "alarmDate": "1769973490940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467047975", + "createdBy": null, + "createdTime": "2026-02-02 03:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:12", + "echoMap": {}, + "alarmNo": "1510202780", + "alarmDate": "1769973491214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048008", + "createdBy": null, + "createdTime": "2026-02-02 03:18:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:19", + "echoMap": {}, + "alarmNo": "1510202781", + "alarmDate": "1769973498426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048046", + "createdBy": null, + "createdTime": "2026-02-02 03:18:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:27", + "echoMap": {}, + "alarmNo": "1510202782", + "alarmDate": "1769973506021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048087", + "createdBy": null, + "createdTime": "2026-02-02 03:18:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:59", + "echoMap": {}, + "alarmNo": "1510202783", + "alarmDate": "1769973514950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048104", + "createdBy": null, + "createdTime": "2026-02-02 03:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:16", + "echoMap": {}, + "alarmNo": "1510202784", + "alarmDate": "1769973519752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982636", + "createdBy": null, + "createdTime": "2026-02-02 03:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:23", + "echoMap": {}, + "alarmNo": "1510202785", + "alarmDate": "1769974079590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982741", + "createdBy": null, + "createdTime": "2026-02-02 03:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:47", + "echoMap": {}, + "alarmNo": "1510202786", + "alarmDate": "1769974103424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982759", + "createdBy": null, + "createdTime": "2026-02-02 03:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:03", + "echoMap": {}, + "alarmNo": "1510202787", + "alarmDate": "1769974108232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982867", + "createdBy": null, + "createdTime": "2026-02-02 03:32:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:33:48", + "echoMap": {}, + "alarmNo": "1510202788", + "alarmDate": "1769974368352", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1012060051", + "deviceName": "[329](10)陕西南10-12换乘入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917140", + "createdBy": null, + "createdTime": "2026-02-02 03:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:11", + "echoMap": {}, + "alarmNo": "1510202789", + "alarmDate": "1769974667708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917255", + "createdBy": null, + "createdTime": "2026-02-02 03:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:35", + "echoMap": {}, + "alarmNo": "1510202790", + "alarmDate": "1769974691531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917272", + "createdBy": null, + "createdTime": "2026-02-02 03:38:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:27", + "echoMap": {}, + "alarmNo": "1510202791", + "alarmDate": "1769974696308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917357", + "createdBy": null, + "createdTime": "2026-02-02 03:38:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:58", + "echoMap": {}, + "alarmNo": "1510202792", + "alarmDate": "1769974715645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917373", + "createdBy": null, + "createdTime": "2026-02-02 03:38:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:41", + "echoMap": {}, + "alarmNo": "1510202793", + "alarmDate": "1769974721011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917374", + "createdBy": null, + "createdTime": "2026-02-02 03:38:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:15", + "echoMap": {}, + "alarmNo": "1510202794", + "alarmDate": "1769974721012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113089236851840", + "createdBy": null, + "createdTime": "2026-02-02 03:47:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:22", + "echoMap": {}, + "alarmNo": "1510202795", + "alarmDate": "1769975278819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113089236851854", + "createdBy": null, + "createdTime": "2026-02-02 03:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:03", + "echoMap": {}, + "alarmNo": "1510202796", + "alarmDate": "1769975282379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113089236851881", + "createdBy": null, + "createdTime": "2026-02-02 03:48:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:09", + "echoMap": {}, + "alarmNo": "1510202797", + "alarmDate": "1769975288186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113093531819011", + "createdBy": null, + "createdTime": "2026-02-02 03:48:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:15", + "echoMap": {}, + "alarmNo": "1510202798", + "alarmDate": "1769975294161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113093531819049", + "createdBy": null, + "createdTime": "2026-02-02 03:48:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:41", + "echoMap": {}, + "alarmNo": "1510202799", + "alarmDate": "1769975303264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113097826786304", + "createdBy": null, + "createdTime": "2026-02-02 03:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:27", + "echoMap": {}, + "alarmNo": "1510202800", + "alarmDate": "1769975306806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113097826786480", + "createdBy": null, + "createdTime": "2026-02-02 03:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:43", + "echoMap": {}, + "alarmNo": "1510202801", + "alarmDate": "1769975862024", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113102121753626", + "createdBy": null, + "createdTime": "2026-02-02 03:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:31", + "echoMap": {}, + "alarmNo": "1510202802", + "alarmDate": "1769975878735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113106416720909", + "createdBy": null, + "createdTime": "2026-02-02 03:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:22", + "echoMap": {}, + "alarmNo": "1510202803", + "alarmDate": "1769975900621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113106416721096", + "createdBy": null, + "createdTime": "2026-02-02 04:07:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:08:04", + "echoMap": {}, + "alarmNo": "1510202804", + "alarmDate": "1769976471123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113115006655541", + "createdBy": null, + "createdTime": "2026-02-02 04:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:08:38", + "echoMap": {}, + "alarmNo": "1510202805", + "alarmDate": "1769976516793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113115006655656", + "createdBy": null, + "createdTime": "2026-02-02 04:17:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:46", + "echoMap": {}, + "alarmNo": "1510202806", + "alarmDate": "1769977065013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113115006655664", + "createdBy": null, + "createdTime": "2026-02-02 04:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:59", + "echoMap": {}, + "alarmNo": "1510202807", + "alarmDate": "1769977067412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113119301622793", + "createdBy": null, + "createdTime": "2026-02-02 04:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:52", + "echoMap": {}, + "alarmNo": "1510202808", + "alarmDate": "1769977070698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113123596590090", + "createdBy": null, + "createdTime": "2026-02-02 04:18:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:19", + "echoMap": {}, + "alarmNo": "1510202809", + "alarmDate": "1769977092448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113123596590104", + "createdBy": null, + "createdTime": "2026-02-02 04:18:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:17", + "echoMap": {}, + "alarmNo": "1510202810", + "alarmDate": "1769977096059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113127891557391", + "createdBy": null, + "createdTime": "2026-02-02 04:27:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:56", + "echoMap": {}, + "alarmNo": "1510202811", + "alarmDate": "1769977669663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113127891557425", + "createdBy": null, + "createdTime": "2026-02-02 04:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:04", + "echoMap": {}, + "alarmNo": "1510202812", + "alarmDate": "1769977683067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113132186524691", + "createdBy": null, + "createdTime": "2026-02-02 04:28:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:20", + "echoMap": {}, + "alarmNo": "1510202813", + "alarmDate": "1769977693624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113132186524751", + "createdBy": null, + "createdTime": "2026-02-02 04:28:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:59", + "echoMap": {}, + "alarmNo": "1510202814", + "alarmDate": "1769977718788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113140776459313", + "createdBy": null, + "createdTime": "2026-02-02 04:38:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:23", + "echoMap": {}, + "alarmNo": "1510202815", + "alarmDate": "1769978290924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113140776459344", + "createdBy": null, + "createdTime": "2026-02-02 04:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:22", + "echoMap": {}, + "alarmNo": "1510202816", + "alarmDate": "1769978300595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113140776459364", + "createdBy": null, + "createdTime": "2026-02-02 04:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:28", + "echoMap": {}, + "alarmNo": "1510202817", + "alarmDate": "1769978307475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113145071426603", + "createdBy": null, + "createdTime": "2026-02-02 04:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:46", + "echoMap": {}, + "alarmNo": "1510202818", + "alarmDate": "1769978861184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393885", + "createdBy": null, + "createdTime": "2026-02-02 04:47:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:58", + "echoMap": {}, + "alarmNo": "1510202819", + "alarmDate": "1769978876824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393890", + "createdBy": null, + "createdTime": "2026-02-02 04:47:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:11", + "echoMap": {}, + "alarmNo": "1510202820", + "alarmDate": "1769978878149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393934", + "createdBy": null, + "createdTime": "2026-02-02 04:48:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:11", + "echoMap": {}, + "alarmNo": "1510202821", + "alarmDate": "1769978890148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393985", + "createdBy": null, + "createdTime": "2026-02-02 04:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:35", + "echoMap": {}, + "alarmNo": "1510202822", + "alarmDate": "1769978909305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113153661361210", + "createdBy": null, + "createdTime": "2026-02-02 04:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:50", + "echoMap": {}, + "alarmNo": "1510202823", + "alarmDate": "1769979460482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328465", + "createdBy": null, + "createdTime": "2026-02-02 04:57:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:50", + "echoMap": {}, + "alarmNo": "1510202824", + "alarmDate": "1769979468903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328559", + "createdBy": null, + "createdTime": "2026-02-02 04:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:54", + "echoMap": {}, + "alarmNo": "1510202825", + "alarmDate": "1769979513622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328689", + "createdBy": null, + "createdTime": "2026-02-02 05:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:04", + "echoMap": {}, + "alarmNo": "1510202826", + "alarmDate": "1769980061202", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328740", + "createdBy": null, + "createdTime": "2026-02-02 05:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:11", + "echoMap": {}, + "alarmNo": "1510202827", + "alarmDate": "1769980079085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328753", + "createdBy": null, + "createdTime": "2026-02-02 05:08:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:04", + "echoMap": {}, + "alarmNo": "1510202828", + "alarmDate": "1769980082504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113162251295752", + "createdBy": null, + "createdTime": "2026-02-02 05:08:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:18", + "echoMap": {}, + "alarmNo": "1510202829", + "alarmDate": "1769980091758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113162251295757", + "createdBy": null, + "createdTime": "2026-02-02 05:08:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:13", + "echoMap": {}, + "alarmNo": "1510202830", + "alarmDate": "1769980092224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263075", + "createdBy": null, + "createdTime": "2026-02-02 05:08:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:32", + "echoMap": {}, + "alarmNo": "1510202831", + "alarmDate": "1769980110529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263094", + "createdBy": null, + "createdTime": "2026-02-02 05:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:49", + "echoMap": {}, + "alarmNo": "1510202832", + "alarmDate": "1769980115873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263246", + "createdBy": null, + "createdTime": "2026-02-02 05:17:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:51", + "echoMap": {}, + "alarmNo": "1510202833", + "alarmDate": "1769980669982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263282", + "createdBy": null, + "createdTime": "2026-02-02 05:18:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:13", + "echoMap": {}, + "alarmNo": "1510202834", + "alarmDate": "1769980681008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263366", + "createdBy": null, + "createdTime": "2026-02-02 05:18:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:25", + "echoMap": {}, + "alarmNo": "1510202835", + "alarmDate": "1769980703655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113170841230341", + "createdBy": null, + "createdTime": "2026-02-02 05:18:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:37", + "echoMap": {}, + "alarmNo": "1510202836", + "alarmDate": "1769980705046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113170841230374", + "createdBy": null, + "createdTime": "2026-02-02 05:18:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:06", + "echoMap": {}, + "alarmNo": "1510202837", + "alarmDate": "1769980715279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197726", + "createdBy": null, + "createdTime": "2026-02-02 05:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:44", + "echoMap": {}, + "alarmNo": "1510202838", + "alarmDate": "1769981261263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197767", + "createdBy": null, + "createdTime": "2026-02-02 05:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:10", + "echoMap": {}, + "alarmNo": "1510202839", + "alarmDate": "1769981284287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197838", + "createdBy": null, + "createdTime": "2026-02-02 05:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:49", + "echoMap": {}, + "alarmNo": "1510202840", + "alarmDate": "1769981308418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197869", + "createdBy": null, + "createdTime": "2026-02-02 05:28:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:39", + "echoMap": {}, + "alarmNo": "1510202841", + "alarmDate": "1769981318131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113179431164967", + "createdBy": null, + "createdTime": "2026-02-02 05:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:49", + "echoMap": {}, + "alarmNo": "1510202842", + "alarmDate": "1769981868359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132231", + "createdBy": null, + "createdTime": "2026-02-02 05:38:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:01", + "echoMap": {}, + "alarmNo": "1510202843", + "alarmDate": "1769981880102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132246", + "createdBy": null, + "createdTime": "2026-02-02 05:38:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:13", + "echoMap": {}, + "alarmNo": "1510202844", + "alarmDate": "1769981886463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132261", + "createdBy": null, + "createdTime": "2026-02-02 05:38:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:14", + "echoMap": {}, + "alarmNo": "1510202845", + "alarmDate": "1769981893409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132271", + "createdBy": null, + "createdTime": "2026-02-02 05:38:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:21", + "echoMap": {}, + "alarmNo": "1510202846", + "alarmDate": "1769981899502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060046", + "deviceName": "[209](10)陕西南6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132279", + "createdBy": null, + "createdTime": "2026-02-02 05:38:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:12", + "echoMap": {}, + "alarmNo": "1510202847", + "alarmDate": "1769981903669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132282", + "createdBy": null, + "createdTime": "2026-02-02 05:38:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:26", + "echoMap": {}, + "alarmNo": "1510202848", + "alarmDate": "1769981904611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132298", + "createdBy": null, + "createdTime": "2026-02-02 05:38:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:37", + "echoMap": {}, + "alarmNo": "1510202849", + "alarmDate": "1769981910689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132433", + "createdBy": null, + "createdTime": "2026-02-02 05:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:47:52", + "echoMap": {}, + "alarmNo": "1510202850", + "alarmDate": "1769982460750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132488", + "createdBy": null, + "createdTime": "2026-02-02 05:48:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:17", + "echoMap": {}, + "alarmNo": "1510202851", + "alarmDate": "1769982490802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132491", + "createdBy": null, + "createdTime": "2026-02-02 05:48:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:13", + "echoMap": {}, + "alarmNo": "1510202852", + "alarmDate": "1769982491552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132530", + "createdBy": null, + "createdTime": "2026-02-02 05:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:20", + "echoMap": {}, + "alarmNo": "1510202853", + "alarmDate": "1769982515916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066841", + "createdBy": null, + "createdTime": "2026-02-02 05:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:00", + "echoMap": {}, + "alarmNo": "1510202854", + "alarmDate": "1769983061006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066842", + "createdBy": null, + "createdTime": "2026-02-02 05:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:00", + "echoMap": {}, + "alarmNo": "1510202855", + "alarmDate": "1769983061032", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066928", + "createdBy": null, + "createdTime": "2026-02-02 05:58:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:36", + "echoMap": {}, + "alarmNo": "1510202856", + "alarmDate": "1769983092131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066968", + "createdBy": null, + "createdTime": "2026-02-02 05:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:24", + "echoMap": {}, + "alarmNo": "1510202857", + "alarmDate": "1769983103008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316067017", + "createdBy": null, + "createdTime": "2026-02-02 05:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:35", + "echoMap": {}, + "alarmNo": "1510202858", + "alarmDate": "1769983113894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316067033", + "createdBy": null, + "createdTime": "2026-02-02 05:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:52", + "echoMap": {}, + "alarmNo": "1510202859", + "alarmDate": "1769983118887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113196611034120", + "createdBy": null, + "createdTime": "2026-02-02 06:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:43", + "echoMap": {}, + "alarmNo": "1510202860", + "alarmDate": "1769983661350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113196611034146", + "createdBy": null, + "createdTime": "2026-02-02 06:07:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:50", + "echoMap": {}, + "alarmNo": "1510202861", + "alarmDate": "1769983669086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001409", + "createdBy": null, + "createdTime": "2026-02-02 06:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:01", + "echoMap": {}, + "alarmNo": "1510202862", + "alarmDate": "1769983680244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001443", + "createdBy": null, + "createdTime": "2026-02-02 06:08:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:10", + "echoMap": {}, + "alarmNo": "1510202863", + "alarmDate": "1769983689449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060046", + "deviceName": "[209](10)陕西南6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001498", + "createdBy": null, + "createdTime": "2026-02-02 06:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:38", + "echoMap": {}, + "alarmNo": "1510202864", + "alarmDate": "1769983706312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001526", + "createdBy": null, + "createdTime": "2026-02-02 06:08:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:34", + "echoMap": {}, + "alarmNo": "1510202865", + "alarmDate": "1769983713007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060070", + "deviceName": "[210](10)陕西南7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001662", + "createdBy": null, + "createdTime": "2026-02-02 06:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:42", + "echoMap": {}, + "alarmNo": "1510202866", + "alarmDate": "1769984260323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001670", + "createdBy": null, + "createdTime": "2026-02-02 06:17:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:43", + "echoMap": {}, + "alarmNo": "1510202867", + "alarmDate": "1769984262196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060070", + "deviceName": "[210](10)陕西南7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001719", + "createdBy": null, + "createdTime": "2026-02-02 06:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:30", + "echoMap": {}, + "alarmNo": "1510202868", + "alarmDate": "1769984274329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936006", + "createdBy": null, + "createdTime": "2026-02-02 06:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:15", + "echoMap": {}, + "alarmNo": "1510202869", + "alarmDate": "1769984293509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936073", + "createdBy": null, + "createdTime": "2026-02-02 06:18:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:30", + "echoMap": {}, + "alarmNo": "1510202870", + "alarmDate": "1769984308697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936236", + "createdBy": null, + "createdTime": "2026-02-02 06:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:42", + "echoMap": {}, + "alarmNo": "1510202871", + "alarmDate": "1769984860983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936276", + "createdBy": null, + "createdTime": "2026-02-02 06:27:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:59", + "echoMap": {}, + "alarmNo": "1510202872", + "alarmDate": "1769984872890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113213790903302", + "createdBy": null, + "createdTime": "2026-02-02 06:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:13", + "echoMap": {}, + "alarmNo": "1510202873", + "alarmDate": "1769984886670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113213790903346", + "createdBy": null, + "createdTime": "2026-02-02 06:28:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:19", + "echoMap": {}, + "alarmNo": "1510202874", + "alarmDate": "1769984897892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113213790903352", + "createdBy": null, + "createdTime": "2026-02-02 06:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:25", + "echoMap": {}, + "alarmNo": "1510202875", + "alarmDate": "1769984898876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870609", + "createdBy": null, + "createdTime": "2026-02-02 06:28:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:37", + "echoMap": {}, + "alarmNo": "1510202876", + "alarmDate": "1769984904668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870659", + "createdBy": null, + "createdTime": "2026-02-02 06:28:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:36", + "echoMap": {}, + "alarmNo": "1510202877", + "alarmDate": "1769984914621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870790", + "createdBy": null, + "createdTime": "2026-02-02 06:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:30", + "echoMap": {}, + "alarmNo": "1510202878", + "alarmDate": "1769985460764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870793", + "createdBy": null, + "createdTime": "2026-02-02 06:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:46", + "echoMap": {}, + "alarmNo": "1510202879", + "alarmDate": "1769985461144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870834", + "createdBy": null, + "createdTime": "2026-02-02 06:37:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:51", + "echoMap": {}, + "alarmNo": "1510202880", + "alarmDate": "1769985469904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870875", + "createdBy": null, + "createdTime": "2026-02-02 06:37:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:00", + "echoMap": {}, + "alarmNo": "1510202881", + "alarmDate": "1769985479180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870902", + "createdBy": null, + "createdTime": "2026-02-02 06:38:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:17", + "echoMap": {}, + "alarmNo": "1510202882", + "alarmDate": "1769985485114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113226675805237", + "createdBy": null, + "createdTime": "2026-02-02 06:38:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:21", + "echoMap": {}, + "alarmNo": "1510202883", + "alarmDate": "1769985516281", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113226675805358", + "createdBy": null, + "createdTime": "2026-02-02 06:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:37", + "echoMap": {}, + "alarmNo": "1510202884", + "alarmDate": "1769986060926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113226675805369", + "createdBy": null, + "createdTime": "2026-02-02 06:47:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:10", + "echoMap": {}, + "alarmNo": "1510202885", + "alarmDate": "1769986065050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113230970772528", + "createdBy": null, + "createdTime": "2026-02-02 06:48:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:55", + "echoMap": {}, + "alarmNo": "1510202886", + "alarmDate": "1769986117193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739779", + "createdBy": null, + "createdTime": "2026-02-02 06:48:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:18", + "echoMap": {}, + "alarmNo": "1510202887", + "alarmDate": "1769986119544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739890", + "createdBy": null, + "createdTime": "2026-02-02 06:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:07", + "echoMap": {}, + "alarmNo": "1510202888", + "alarmDate": "1769986660123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739901", + "createdBy": null, + "createdTime": "2026-02-02 06:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:50", + "echoMap": {}, + "alarmNo": "1510202889", + "alarmDate": "1769986663823", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739983", + "createdBy": null, + "createdTime": "2026-02-02 06:58:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:06", + "echoMap": {}, + "alarmNo": "1510202890", + "alarmDate": "1769986688532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740014", + "createdBy": null, + "createdTime": "2026-02-02 06:58:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:20", + "echoMap": {}, + "alarmNo": "1510202891", + "alarmDate": "1769986698760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740041", + "createdBy": null, + "createdTime": "2026-02-02 06:58:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:02", + "echoMap": {}, + "alarmNo": "1510202892", + "alarmDate": "1769986711248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740057", + "createdBy": null, + "createdTime": "2026-02-02 06:58:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:36", + "echoMap": {}, + "alarmNo": "1510202893", + "alarmDate": "1769986715709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740060", + "createdBy": null, + "createdTime": "2026-02-02 06:58:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:38", + "echoMap": {}, + "alarmNo": "1510202894", + "alarmDate": "1769986716572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113243855674429", + "createdBy": null, + "createdTime": "2026-02-02 07:07:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:54", + "echoMap": {}, + "alarmNo": "1510202895", + "alarmDate": "1769987272887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113243855674662", + "createdBy": null, + "createdTime": "2026-02-02 07:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:16", + "echoMap": {}, + "alarmNo": "1510202896", + "alarmDate": "1769987860734", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113243855674664", + "createdBy": null, + "createdTime": "2026-02-02 07:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:49", + "echoMap": {}, + "alarmNo": "1510202897", + "alarmDate": "1769987861108", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609007", + "createdBy": null, + "createdTime": "2026-02-02 07:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:08", + "echoMap": {}, + "alarmNo": "1510202898", + "alarmDate": "1769987893692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609034", + "createdBy": null, + "createdTime": "2026-02-02 07:18:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:22", + "echoMap": {}, + "alarmNo": "1510202899", + "alarmDate": "1769987901438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609046", + "createdBy": null, + "createdTime": "2026-02-02 07:18:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:25", + "echoMap": {}, + "alarmNo": "1510202900", + "alarmDate": "1769987904439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609070", + "createdBy": null, + "createdTime": "2026-02-02 07:18:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:47", + "echoMap": {}, + "alarmNo": "1510202901", + "alarmDate": "1769987911520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609222", + "createdBy": null, + "createdTime": "2026-02-02 07:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:01", + "echoMap": {}, + "alarmNo": "1510202902", + "alarmDate": "1769988463280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609250", + "createdBy": null, + "createdTime": "2026-02-02 07:27:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:52", + "echoMap": {}, + "alarmNo": "1510202903", + "alarmDate": "1769988470609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113256740576307", + "createdBy": null, + "createdTime": "2026-02-02 07:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:38", + "echoMap": {}, + "alarmNo": "1510202904", + "alarmDate": "1769988499892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543565", + "createdBy": null, + "createdTime": "2026-02-02 07:28:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:09", + "echoMap": {}, + "alarmNo": "1510202905", + "alarmDate": "1769988506909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543571", + "createdBy": null, + "createdTime": "2026-02-02 07:28:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:30", + "echoMap": {}, + "alarmNo": "1510202906", + "alarmDate": "1769988508653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543748", + "createdBy": null, + "createdTime": "2026-02-02 07:37:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:48", + "echoMap": {}, + "alarmNo": "1510202907", + "alarmDate": "1769989066852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543784", + "createdBy": null, + "createdTime": "2026-02-02 07:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:59", + "echoMap": {}, + "alarmNo": "1510202908", + "alarmDate": "1769989077900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543799", + "createdBy": null, + "createdTime": "2026-02-02 07:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:03", + "echoMap": {}, + "alarmNo": "1510202909", + "alarmDate": "1769989081816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543846", + "createdBy": null, + "createdTime": "2026-02-02 07:38:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:25", + "echoMap": {}, + "alarmNo": "1510202910", + "alarmDate": "1769989099594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543874", + "createdBy": null, + "createdTime": "2026-02-02 07:38:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:10", + "echoMap": {}, + "alarmNo": "1510202911", + "alarmDate": "1769989108149", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113269625478244", + "createdBy": null, + "createdTime": "2026-02-02 07:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:51", + "echoMap": {}, + "alarmNo": "1510202912", + "alarmDate": "1769989661549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113269625478317", + "createdBy": null, + "createdTime": "2026-02-02 07:48:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:07", + "echoMap": {}, + "alarmNo": "1510202913", + "alarmDate": "1769989683526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412764", + "createdBy": null, + "createdTime": "2026-02-02 07:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:47", + "echoMap": {}, + "alarmNo": "1510202914", + "alarmDate": "1769990260594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412798", + "createdBy": null, + "createdTime": "2026-02-02 07:57:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:49", + "echoMap": {}, + "alarmNo": "1510202915", + "alarmDate": "1769990267606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412823", + "createdBy": null, + "createdTime": "2026-02-02 07:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:05", + "echoMap": {}, + "alarmNo": "1510202916", + "alarmDate": "1769990278570", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412883", + "createdBy": null, + "createdTime": "2026-02-02 07:58:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:55", + "echoMap": {}, + "alarmNo": "1510202917", + "alarmDate": "1769990300031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412911", + "createdBy": null, + "createdTime": "2026-02-02 07:58:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:35", + "echoMap": {}, + "alarmNo": "1510202918", + "alarmDate": "1769990308577", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113282510380040", + "createdBy": null, + "createdTime": "2026-02-02 08:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:56", + "echoMap": {}, + "alarmNo": "1510202919", + "alarmDate": "1769990860677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113282510380042", + "createdBy": null, + "createdTime": "2026-02-02 08:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:53", + "echoMap": {}, + "alarmNo": "1510202920", + "alarmDate": "1769990860790", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347329", + "createdBy": null, + "createdTime": "2026-02-02 08:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:02", + "echoMap": {}, + "alarmNo": "1510202921", + "alarmDate": "1769990880747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347338", + "createdBy": null, + "createdTime": "2026-02-02 08:08:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:05", + "echoMap": {}, + "alarmNo": "1510202922", + "alarmDate": "1769990883735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347343", + "createdBy": null, + "createdTime": "2026-02-02 08:08:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:23", + "echoMap": {}, + "alarmNo": "1510202923", + "alarmDate": "1769990884824", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347353", + "createdBy": null, + "createdTime": "2026-02-02 08:08:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:14", + "echoMap": {}, + "alarmNo": "1510202924", + "alarmDate": "1769990887676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347378", + "createdBy": null, + "createdTime": "2026-02-02 08:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:15", + "echoMap": {}, + "alarmNo": "1510202925", + "alarmDate": "1769990893700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347417", + "createdBy": null, + "createdTime": "2026-02-02 08:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:44", + "echoMap": {}, + "alarmNo": "1510202926", + "alarmDate": "1769990905764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347431", + "createdBy": null, + "createdTime": "2026-02-02 08:08:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:33", + "echoMap": {}, + "alarmNo": "1510202927", + "alarmDate": "1769990911958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347588", + "createdBy": null, + "createdTime": "2026-02-02 08:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:52", + "echoMap": {}, + "alarmNo": "1510202928", + "alarmDate": "1769991471159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347606", + "createdBy": null, + "createdTime": "2026-02-02 08:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:32", + "echoMap": {}, + "alarmNo": "1510202929", + "alarmDate": "1769991481891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282013", + "createdBy": null, + "createdTime": "2026-02-02 08:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:08", + "echoMap": {}, + "alarmNo": "1510202930", + "alarmDate": "1769992060122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282030", + "createdBy": null, + "createdTime": "2026-02-02 08:27:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:57", + "echoMap": {}, + "alarmNo": "1510202931", + "alarmDate": "1769992068452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282050", + "createdBy": null, + "createdTime": "2026-02-02 08:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:56", + "echoMap": {}, + "alarmNo": "1510202932", + "alarmDate": "1769992074562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282090", + "createdBy": null, + "createdTime": "2026-02-02 08:28:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:25", + "echoMap": {}, + "alarmNo": "1510202933", + "alarmDate": "1769992092436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282100", + "createdBy": null, + "createdTime": "2026-02-02 08:28:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:34", + "echoMap": {}, + "alarmNo": "1510202934", + "alarmDate": "1769992096147", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282114", + "createdBy": null, + "createdTime": "2026-02-02 08:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:32", + "echoMap": {}, + "alarmNo": "1510202935", + "alarmDate": "1769992100258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216550", + "createdBy": null, + "createdTime": "2026-02-02 08:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:10", + "echoMap": {}, + "alarmNo": "1510202936", + "alarmDate": "1769992688599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216557", + "createdBy": null, + "createdTime": "2026-02-02 08:38:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:17", + "echoMap": {}, + "alarmNo": "1510202937", + "alarmDate": "1769992690735", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216573", + "createdBy": null, + "createdTime": "2026-02-02 08:38:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:16", + "echoMap": {}, + "alarmNo": "1510202938", + "alarmDate": "1769992694805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216588", + "createdBy": null, + "createdTime": "2026-02-02 08:38:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:21", + "echoMap": {}, + "alarmNo": "1510202939", + "alarmDate": "1769992699806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216605", + "createdBy": null, + "createdTime": "2026-02-02 08:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:28", + "echoMap": {}, + "alarmNo": "1510202940", + "alarmDate": "1769992706592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113308280183822", + "createdBy": null, + "createdTime": "2026-02-02 08:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:38", + "echoMap": {}, + "alarmNo": "1510202941", + "alarmDate": "1769993260573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113308280183832", + "createdBy": null, + "createdTime": "2026-02-02 08:47:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:46", + "echoMap": {}, + "alarmNo": "1510202942", + "alarmDate": "1769993264724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151119", + "createdBy": null, + "createdTime": "2026-02-02 08:48:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:06", + "echoMap": {}, + "alarmNo": "1510202943", + "alarmDate": "1769993280331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151138", + "createdBy": null, + "createdTime": "2026-02-02 08:48:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:07", + "echoMap": {}, + "alarmNo": "1510202944", + "alarmDate": "1769993286107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151170", + "createdBy": null, + "createdTime": "2026-02-02 08:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:32", + "echoMap": {}, + "alarmNo": "1510202945", + "alarmDate": "1769993299064", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151175", + "createdBy": null, + "createdTime": "2026-02-02 08:48:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:27", + "echoMap": {}, + "alarmNo": "1510202946", + "alarmDate": "1769993300395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113316870118429", + "createdBy": null, + "createdTime": "2026-02-02 08:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:51", + "echoMap": {}, + "alarmNo": "1510202947", + "alarmDate": "1769993860849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113316870118437", + "createdBy": null, + "createdTime": "2026-02-02 08:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:27", + "echoMap": {}, + "alarmNo": "1510202948", + "alarmDate": "1769993863813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113321165085709", + "createdBy": null, + "createdTime": "2026-02-02 08:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:01", + "echoMap": {}, + "alarmNo": "1510202949", + "alarmDate": "1769993875213", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113321165085768", + "createdBy": null, + "createdTime": "2026-02-02 08:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:32", + "echoMap": {}, + "alarmNo": "1510202950", + "alarmDate": "1769993893919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113321165085825", + "createdBy": null, + "createdTime": "2026-02-02 08:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:35", + "echoMap": {}, + "alarmNo": "1510202951", + "alarmDate": "1769993914497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113325460053041", + "createdBy": null, + "createdTime": "2026-02-02 09:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:58", + "echoMap": {}, + "alarmNo": "1510202952", + "alarmDate": "1769994463305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020366", + "createdBy": null, + "createdTime": "2026-02-02 09:08:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:11", + "echoMap": {}, + "alarmNo": "1510202953", + "alarmDate": "1769994490451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020415", + "createdBy": null, + "createdTime": "2026-02-02 09:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:32", + "echoMap": {}, + "alarmNo": "1510202954", + "alarmDate": "1769994505559", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020433", + "createdBy": null, + "createdTime": "2026-02-02 09:08:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:31", + "echoMap": {}, + "alarmNo": "1510202955", + "alarmDate": "1769994509656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020451", + "createdBy": null, + "createdTime": "2026-02-02 09:08:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:52", + "echoMap": {}, + "alarmNo": "1510202956", + "alarmDate": "1769994514938", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020458", + "createdBy": null, + "createdTime": "2026-02-02 09:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:38", + "echoMap": {}, + "alarmNo": "1510202957", + "alarmDate": "1769994516527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954904", + "createdBy": null, + "createdTime": "2026-02-02 09:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:14", + "echoMap": {}, + "alarmNo": "1510202958", + "alarmDate": "1769995060389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954910", + "createdBy": null, + "createdTime": "2026-02-02 09:17:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:44", + "echoMap": {}, + "alarmNo": "1510202959", + "alarmDate": "1769995063031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954922", + "createdBy": null, + "createdTime": "2026-02-02 09:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:48", + "echoMap": {}, + "alarmNo": "1510202960", + "alarmDate": "1769995066848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954948", + "createdBy": null, + "createdTime": "2026-02-02 09:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:55", + "echoMap": {}, + "alarmNo": "1510202961", + "alarmDate": "1769995073701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344955014", + "createdBy": null, + "createdTime": "2026-02-02 09:18:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:41", + "echoMap": {}, + "alarmNo": "1510202962", + "alarmDate": "1769995106761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113342639922213", + "createdBy": null, + "createdTime": "2026-02-02 09:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:03", + "echoMap": {}, + "alarmNo": "1510202963", + "alarmDate": "1769995660570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113342639922230", + "createdBy": null, + "createdTime": "2026-02-02 09:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:47", + "echoMap": {}, + "alarmNo": "1510202964", + "alarmDate": "1769995662105", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889516", + "createdBy": null, + "createdTime": "2026-02-02 09:28:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:35", + "echoMap": {}, + "alarmNo": "1510202965", + "alarmDate": "1769995691218", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889525", + "createdBy": null, + "createdTime": "2026-02-02 09:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:21", + "echoMap": {}, + "alarmNo": "1510202966", + "alarmDate": "1769995694584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889553", + "createdBy": null, + "createdTime": "2026-02-02 09:28:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:37", + "echoMap": {}, + "alarmNo": "1510202967", + "alarmDate": "1769995704229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889579", + "createdBy": null, + "createdTime": "2026-02-02 09:28:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:26", + "echoMap": {}, + "alarmNo": "1510202968", + "alarmDate": "1769995712690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824069", + "createdBy": null, + "createdTime": "2026-02-02 09:37:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:04", + "echoMap": {}, + "alarmNo": "1510202969", + "alarmDate": "1769996275695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824103", + "createdBy": null, + "createdTime": "2026-02-02 09:38:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:38", + "echoMap": {}, + "alarmNo": "1510202970", + "alarmDate": "1769996287212", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824133", + "createdBy": null, + "createdTime": "2026-02-02 09:38:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:17", + "echoMap": {}, + "alarmNo": "1510202971", + "alarmDate": "1769996296276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824139", + "createdBy": null, + "createdTime": "2026-02-02 09:38:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:25", + "echoMap": {}, + "alarmNo": "1510202972", + "alarmDate": "1769996297683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824193", + "createdBy": null, + "createdTime": "2026-02-02 09:38:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:34", + "echoMap": {}, + "alarmNo": "1510202973", + "alarmDate": "1769996312652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824214", + "createdBy": null, + "createdTime": "2026-02-02 09:38:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:09", + "echoMap": {}, + "alarmNo": "1510202974", + "alarmDate": "1769996318723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758685", + "createdBy": null, + "createdTime": "2026-02-02 09:47:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:52", + "echoMap": {}, + "alarmNo": "1510202975", + "alarmDate": "1769996870899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758697", + "createdBy": null, + "createdTime": "2026-02-02 09:47:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:06", + "echoMap": {}, + "alarmNo": "1510202976", + "alarmDate": "1769996873488", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758727", + "createdBy": null, + "createdTime": "2026-02-02 09:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:02", + "echoMap": {}, + "alarmNo": "1510202977", + "alarmDate": "1769996880736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758750", + "createdBy": null, + "createdTime": "2026-02-02 09:48:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:07", + "echoMap": {}, + "alarmNo": "1510202978", + "alarmDate": "1769996885690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758782", + "createdBy": null, + "createdTime": "2026-02-02 09:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:48", + "echoMap": {}, + "alarmNo": "1510202979", + "alarmDate": "1769996897582", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113368409725989", + "createdBy": null, + "createdTime": "2026-02-02 09:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:56", + "echoMap": {}, + "alarmNo": "1510202980", + "alarmDate": "1769997460279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693265", + "createdBy": null, + "createdTime": "2026-02-02 09:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:06", + "echoMap": {}, + "alarmNo": "1510202981", + "alarmDate": "1769997477584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693295", + "createdBy": null, + "createdTime": "2026-02-02 09:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:32", + "echoMap": {}, + "alarmNo": "1510202982", + "alarmDate": "1769997494289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693335", + "createdBy": null, + "createdTime": "2026-02-02 09:58:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:34", + "echoMap": {}, + "alarmNo": "1510202983", + "alarmDate": "1769997506684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693474", + "createdBy": null, + "createdTime": "2026-02-02 10:07:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:50", + "echoMap": {}, + "alarmNo": "1510202984", + "alarmDate": "1769998060465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113376999660549", + "createdBy": null, + "createdTime": "2026-02-02 10:08:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:45", + "echoMap": {}, + "alarmNo": "1510202985", + "alarmDate": "1769998083474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113376999660581", + "createdBy": null, + "createdTime": "2026-02-02 10:08:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:19", + "echoMap": {}, + "alarmNo": "1510202986", + "alarmDate": "1769998098086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113376999660589", + "createdBy": null, + "createdTime": "2026-02-02 10:08:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:22", + "echoMap": {}, + "alarmNo": "1510202987", + "alarmDate": "1769998100562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113381294627860", + "createdBy": null, + "createdTime": "2026-02-02 10:08:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:36", + "echoMap": {}, + "alarmNo": "1510202988", + "alarmDate": "1769998114082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113381294628026", + "createdBy": null, + "createdTime": "2026-02-02 10:17:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:15", + "echoMap": {}, + "alarmNo": "1510202989", + "alarmDate": "1769998676690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113385589595167", + "createdBy": null, + "createdTime": "2026-02-02 10:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:15", + "echoMap": {}, + "alarmNo": "1510202990", + "alarmDate": "1769998693638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113385589595168", + "createdBy": null, + "createdTime": "2026-02-02 10:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:15", + "echoMap": {}, + "alarmNo": "1510202991", + "alarmDate": "1769998693662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113385589595188", + "createdBy": null, + "createdTime": "2026-02-02 10:18:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:39", + "echoMap": {}, + "alarmNo": "1510202992", + "alarmDate": "1769998706747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113389884562575", + "createdBy": null, + "createdTime": "2026-02-02 10:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:09", + "echoMap": {}, + "alarmNo": "1510202993", + "alarmDate": "1769999260901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113389884562579", + "createdBy": null, + "createdTime": "2026-02-02 10:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:43", + "echoMap": {}, + "alarmNo": "1510202994", + "alarmDate": "1769999261849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113389884562612", + "createdBy": null, + "createdTime": "2026-02-02 10:27:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:19", + "echoMap": {}, + "alarmNo": "1510202995", + "alarmDate": "1769999276914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113394179529782", + "createdBy": null, + "createdTime": "2026-02-02 10:28:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:39", + "echoMap": {}, + "alarmNo": "1510202996", + "alarmDate": "1769999300931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113398474497176", + "createdBy": null, + "createdTime": "2026-02-02 10:37:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:57", + "echoMap": {}, + "alarmNo": "1510202997", + "alarmDate": "1769999860112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113398474497181", + "createdBy": null, + "createdTime": "2026-02-02 10:37:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:49", + "echoMap": {}, + "alarmNo": "1510202998", + "alarmDate": "1769999862203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113402769464371", + "createdBy": null, + "createdTime": "2026-02-02 10:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:03", + "echoMap": {}, + "alarmNo": "1510202999", + "alarmDate": "1769999889089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431620", + "createdBy": null, + "createdTime": "2026-02-02 10:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:19", + "echoMap": {}, + "alarmNo": "1510203000", + "alarmDate": "1769999892344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431795", + "createdBy": null, + "createdTime": "2026-02-02 10:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:46", + "echoMap": {}, + "alarmNo": "1510203001", + "alarmDate": "1770000461677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431829", + "createdBy": null, + "createdTime": "2026-02-02 10:48:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:50", + "echoMap": {}, + "alarmNo": "1510203002", + "alarmDate": "1770000479823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431844", + "createdBy": null, + "createdTime": "2026-02-02 10:48:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:06", + "echoMap": {}, + "alarmNo": "1510203003", + "alarmDate": "1770000484760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113411359398917", + "createdBy": null, + "createdTime": "2026-02-02 10:48:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:35", + "echoMap": {}, + "alarmNo": "1510203004", + "alarmDate": "1770000490526", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113411359398928", + "createdBy": null, + "createdTime": "2026-02-02 10:48:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:32", + "echoMap": {}, + "alarmNo": "1510203005", + "alarmDate": "1770000493492", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366208", + "createdBy": null, + "createdTime": "2026-02-02 10:48:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:24", + "echoMap": {}, + "alarmNo": "1510203006", + "alarmDate": "1770000502616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366235", + "createdBy": null, + "createdTime": "2026-02-02 10:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:30", + "echoMap": {}, + "alarmNo": "1510203007", + "alarmDate": "1770000508652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366404", + "createdBy": null, + "createdTime": "2026-02-02 10:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:46", + "echoMap": {}, + "alarmNo": "1510203008", + "alarmDate": "1770001060532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366422", + "createdBy": null, + "createdTime": "2026-02-02 10:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:47", + "echoMap": {}, + "alarmNo": "1510203009", + "alarmDate": "1770001065827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113419949333506", + "createdBy": null, + "createdTime": "2026-02-02 10:58:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:03", + "echoMap": {}, + "alarmNo": "1510203010", + "alarmDate": "1770001082387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113419949333508", + "createdBy": null, + "createdTime": "2026-02-02 10:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:27", + "echoMap": {}, + "alarmNo": "1510203011", + "alarmDate": "1770001082566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113424244301006", + "createdBy": null, + "createdTime": "2026-02-02 11:07:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:41", + "echoMap": {}, + "alarmNo": "1510203012", + "alarmDate": "1770001660427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113424244301008", + "createdBy": null, + "createdTime": "2026-02-02 11:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:09", + "echoMap": {}, + "alarmNo": "1510203013", + "alarmDate": "1770001660743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113424244301086", + "createdBy": null, + "createdTime": "2026-02-02 11:08:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:24", + "echoMap": {}, + "alarmNo": "1510203014", + "alarmDate": "1770001695704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113428539268096", + "createdBy": null, + "createdTime": "2026-02-02 11:08:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:56", + "echoMap": {}, + "alarmNo": "1510203015", + "alarmDate": "1770001700773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235532", + "createdBy": null, + "createdTime": "2026-02-02 11:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:59", + "echoMap": {}, + "alarmNo": "1510203016", + "alarmDate": "1770002267136", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235543", + "createdBy": null, + "createdTime": "2026-02-02 11:17:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:12", + "echoMap": {}, + "alarmNo": "1510203017", + "alarmDate": "1770002269245", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235614", + "createdBy": null, + "createdTime": "2026-02-02 11:18:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:10", + "echoMap": {}, + "alarmNo": "1510203018", + "alarmDate": "1770002288757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235617", + "createdBy": null, + "createdTime": "2026-02-02 11:18:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:24", + "echoMap": {}, + "alarmNo": "1510203019", + "alarmDate": "1770002289106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235628", + "createdBy": null, + "createdTime": "2026-02-02 11:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:35", + "echoMap": {}, + "alarmNo": "1510203020", + "alarmDate": "1770002291192", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113437129202725", + "createdBy": null, + "createdTime": "2026-02-02 11:18:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:32", + "echoMap": {}, + "alarmNo": "1510203021", + "alarmDate": "1770002311460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424169985", + "createdBy": null, + "createdTime": "2026-02-02 11:18:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:01", + "echoMap": {}, + "alarmNo": "1510203022", + "alarmDate": "1770002319135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170120", + "createdBy": null, + "createdTime": "2026-02-02 11:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:48", + "echoMap": {}, + "alarmNo": "1510203023", + "alarmDate": "1770002866579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170165", + "createdBy": null, + "createdTime": "2026-02-02 11:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:02", + "echoMap": {}, + "alarmNo": "1510203024", + "alarmDate": "1770002880702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170174", + "createdBy": null, + "createdTime": "2026-02-02 11:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:04", + "echoMap": {}, + "alarmNo": "1510203025", + "alarmDate": "1770002883211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170195", + "createdBy": null, + "createdTime": "2026-02-02 11:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:20", + "echoMap": {}, + "alarmNo": "1510203026", + "alarmDate": "1770002892600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170251", + "createdBy": null, + "createdTime": "2026-02-02 11:28:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:58", + "echoMap": {}, + "alarmNo": "1510203027", + "alarmDate": "1770002911226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060013", + "deviceName": "[108](10)陕西南下行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113450014104614", + "createdBy": null, + "createdTime": "2026-02-02 11:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:49", + "echoMap": {}, + "alarmNo": "1510203028", + "alarmDate": "1770003460883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113450014104660", + "createdBy": null, + "createdTime": "2026-02-02 11:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:33", + "echoMap": {}, + "alarmNo": "1510203029", + "alarmDate": "1770003489489", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113450014104697", + "createdBy": null, + "createdTime": "2026-02-02 11:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:34", + "echoMap": {}, + "alarmNo": "1510203030", + "alarmDate": "1770003507032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113454309071882", + "createdBy": null, + "createdTime": "2026-02-02 11:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:09", + "echoMap": {}, + "alarmNo": "1510203031", + "alarmDate": "1770004060771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113454309071894", + "createdBy": null, + "createdTime": "2026-02-02 11:47:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:33", + "echoMap": {}, + "alarmNo": "1510203032", + "alarmDate": "1770004066258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113454309071898", + "createdBy": null, + "createdTime": "2026-02-02 11:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:54", + "echoMap": {}, + "alarmNo": "1510203033", + "alarmDate": "1770004066791", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113458604039295", + "createdBy": null, + "createdTime": "2026-02-02 11:48:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:38", + "echoMap": {}, + "alarmNo": "1510203034", + "alarmDate": "1770004117314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113462899006469", + "createdBy": null, + "createdTime": "2026-02-02 11:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:47", + "echoMap": {}, + "alarmNo": "1510203035", + "alarmDate": "1770004661810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113462899006498", + "createdBy": null, + "createdTime": "2026-02-02 11:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:56", + "echoMap": {}, + "alarmNo": "1510203036", + "alarmDate": "1770004674526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113462899006512", + "createdBy": null, + "createdTime": "2026-02-02 11:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:37", + "echoMap": {}, + "alarmNo": "1510203037", + "alarmDate": "1770004679788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113467193973782", + "createdBy": null, + "createdTime": "2026-02-02 11:58:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:09", + "echoMap": {}, + "alarmNo": "1510203038", + "alarmDate": "1770004688059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113467193973797", + "createdBy": null, + "createdTime": "2026-02-02 11:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:15", + "echoMap": {}, + "alarmNo": "1510203039", + "alarmDate": "1770004693693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113467193973816", + "createdBy": null, + "createdTime": "2026-02-02 11:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:03", + "echoMap": {}, + "alarmNo": "1510203040", + "alarmDate": "1770004700963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908359", + "createdBy": null, + "createdTime": "2026-02-02 12:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:02", + "echoMap": {}, + "alarmNo": "1510203041", + "alarmDate": "1770005281057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908365", + "createdBy": null, + "createdTime": "2026-02-02 12:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:12", + "echoMap": {}, + "alarmNo": "1510203042", + "alarmDate": "1770005282418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908395", + "createdBy": null, + "createdTime": "2026-02-02 12:08:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:27", + "echoMap": {}, + "alarmNo": "1510203043", + "alarmDate": "1770005295164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908463", + "createdBy": null, + "createdTime": "2026-02-02 12:08:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:03", + "echoMap": {}, + "alarmNo": "1510203044", + "alarmDate": "1770005319166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908645", + "createdBy": null, + "createdTime": "2026-02-02 12:18:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:15", + "echoMap": {}, + "alarmNo": "1510203045", + "alarmDate": "1770005895448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113480078875667", + "createdBy": null, + "createdTime": "2026-02-02 12:18:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:42", + "echoMap": {}, + "alarmNo": "1510203046", + "alarmDate": "1770005905859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113480078875707", + "createdBy": null, + "createdTime": "2026-02-02 12:18:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:26", + "echoMap": {}, + "alarmNo": "1510203047", + "alarmDate": "1770005918417", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843058", + "createdBy": null, + "createdTime": "2026-02-02 12:27:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:45", + "echoMap": {}, + "alarmNo": "1510203048", + "alarmDate": "1770006463659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843089", + "createdBy": null, + "createdTime": "2026-02-02 12:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:03", + "echoMap": {}, + "alarmNo": "1510203049", + "alarmDate": "1770006475171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843112", + "createdBy": null, + "createdTime": "2026-02-02 12:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:01", + "echoMap": {}, + "alarmNo": "1510203050", + "alarmDate": "1770006480484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843162", + "createdBy": null, + "createdTime": "2026-02-02 12:28:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:15", + "echoMap": {}, + "alarmNo": "1510203051", + "alarmDate": "1770006493950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113488668810251", + "createdBy": null, + "createdTime": "2026-02-02 12:28:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:36", + "echoMap": {}, + "alarmNo": "1510203052", + "alarmDate": "1770006503622", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113488668810262", + "createdBy": null, + "createdTime": "2026-02-02 12:28:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:34", + "echoMap": {}, + "alarmNo": "1510203053", + "alarmDate": "1770006506655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113488668810267", + "createdBy": null, + "createdTime": "2026-02-02 12:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:29", + "echoMap": {}, + "alarmNo": "1510203054", + "alarmDate": "1770006507582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777549", + "createdBy": null, + "createdTime": "2026-02-02 12:28:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:46", + "echoMap": {}, + "alarmNo": "1510203055", + "alarmDate": "1770006519390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777665", + "createdBy": null, + "createdTime": "2026-02-02 12:37:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:45", + "echoMap": {}, + "alarmNo": "1510203056", + "alarmDate": "1770007063834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777677", + "createdBy": null, + "createdTime": "2026-02-02 12:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:09", + "echoMap": {}, + "alarmNo": "1510203057", + "alarmDate": "1770007070900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777697", + "createdBy": null, + "createdTime": "2026-02-02 12:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:08", + "echoMap": {}, + "alarmNo": "1510203058", + "alarmDate": "1770007080588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777737", + "createdBy": null, + "createdTime": "2026-02-02 12:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:15", + "echoMap": {}, + "alarmNo": "1510203059", + "alarmDate": "1770007100868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777756", + "createdBy": null, + "createdTime": "2026-02-02 12:38:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:46", + "echoMap": {}, + "alarmNo": "1510203060", + "alarmDate": "1770007108771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712200", + "createdBy": null, + "createdTime": "2026-02-02 12:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:44", + "echoMap": {}, + "alarmNo": "1510203061", + "alarmDate": "1770007662431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712238", + "createdBy": null, + "createdTime": "2026-02-02 12:47:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:53", + "echoMap": {}, + "alarmNo": "1510203062", + "alarmDate": "1770007672496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712347", + "createdBy": null, + "createdTime": "2026-02-02 12:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:39", + "echoMap": {}, + "alarmNo": "1510203063", + "alarmDate": "1770007707054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712367", + "createdBy": null, + "createdTime": "2026-02-02 12:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:19", + "echoMap": {}, + "alarmNo": "1510203064", + "alarmDate": "1770007716106", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712369", + "createdBy": null, + "createdTime": "2026-02-02 12:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:37", + "echoMap": {}, + "alarmNo": "1510203065", + "alarmDate": "1770007716375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646781", + "createdBy": null, + "createdTime": "2026-02-02 12:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:16", + "echoMap": {}, + "alarmNo": "1510203066", + "alarmDate": "1770008260186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646787", + "createdBy": null, + "createdTime": "2026-02-02 12:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:11", + "echoMap": {}, + "alarmNo": "1510203067", + "alarmDate": "1770008262537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646822", + "createdBy": null, + "createdTime": "2026-02-02 12:57:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:54", + "echoMap": {}, + "alarmNo": "1510203068", + "alarmDate": "1770008272600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646878", + "createdBy": null, + "createdTime": "2026-02-02 12:58:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:07", + "echoMap": {}, + "alarmNo": "1510203069", + "alarmDate": "1770008286403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646924", + "createdBy": null, + "createdTime": "2026-02-02 12:58:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:32", + "echoMap": {}, + "alarmNo": "1510203070", + "alarmDate": "1770008304642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113514438614030", + "createdBy": null, + "createdTime": "2026-02-02 12:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:40", + "echoMap": {}, + "alarmNo": "1510203071", + "alarmDate": "1770008319482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581394", + "createdBy": null, + "createdTime": "2026-02-02 13:07:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:02", + "echoMap": {}, + "alarmNo": "1510203072", + "alarmDate": "1770008865955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581434", + "createdBy": null, + "createdTime": "2026-02-02 13:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:00", + "echoMap": {}, + "alarmNo": "1510203073", + "alarmDate": "1770008878808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581501", + "createdBy": null, + "createdTime": "2026-02-02 13:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:21", + "echoMap": {}, + "alarmNo": "1510203074", + "alarmDate": "1770008899926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581504", + "createdBy": null, + "createdTime": "2026-02-02 13:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:32", + "echoMap": {}, + "alarmNo": "1510203075", + "alarmDate": "1770008900309", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113523028548640", + "createdBy": null, + "createdTime": "2026-02-02 13:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:38", + "echoMap": {}, + "alarmNo": "1510203076", + "alarmDate": "1770008917212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516003", + "createdBy": null, + "createdTime": "2026-02-02 13:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:50", + "echoMap": {}, + "alarmNo": "1510203077", + "alarmDate": "1770009460474", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516035", + "createdBy": null, + "createdTime": "2026-02-02 13:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:59", + "echoMap": {}, + "alarmNo": "1510203078", + "alarmDate": "1770009466536", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516060", + "createdBy": null, + "createdTime": "2026-02-02 13:17:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:54", + "echoMap": {}, + "alarmNo": "1510203079", + "alarmDate": "1770009473361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516066", + "createdBy": null, + "createdTime": "2026-02-02 13:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:55", + "echoMap": {}, + "alarmNo": "1510203080", + "alarmDate": "1770009474295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113531618483213", + "createdBy": null, + "createdTime": "2026-02-02 13:18:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:06", + "echoMap": {}, + "alarmNo": "1510203081", + "alarmDate": "1770009479768", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113531618483257", + "createdBy": null, + "createdTime": "2026-02-02 13:18:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:29", + "echoMap": {}, + "alarmNo": "1510203082", + "alarmDate": "1770009495571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113531618483264", + "createdBy": null, + "createdTime": "2026-02-02 13:18:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:30", + "echoMap": {}, + "alarmNo": "1510203083", + "alarmDate": "1770009497779", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113535913450533", + "createdBy": null, + "createdTime": "2026-02-02 13:18:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:39", + "echoMap": {}, + "alarmNo": "1510203084", + "alarmDate": "1770009513734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113535913450659", + "createdBy": null, + "createdTime": "2026-02-02 13:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:53", + "echoMap": {}, + "alarmNo": "1510203085", + "alarmDate": "1770010060742", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113535913450663", + "createdBy": null, + "createdTime": "2026-02-02 13:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:47", + "echoMap": {}, + "alarmNo": "1510203086", + "alarmDate": "1770010061878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113540208417801", + "createdBy": null, + "createdTime": "2026-02-02 13:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:08", + "echoMap": {}, + "alarmNo": "1510203087", + "alarmDate": "1770010080933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113540208417804", + "createdBy": null, + "createdTime": "2026-02-02 13:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:32", + "echoMap": {}, + "alarmNo": "1510203088", + "alarmDate": "1770010081694", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113544503385096", + "createdBy": null, + "createdTime": "2026-02-02 13:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:14", + "echoMap": {}, + "alarmNo": "1510203089", + "alarmDate": "1770010093302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113544503385135", + "createdBy": null, + "createdTime": "2026-02-02 13:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:30", + "echoMap": {}, + "alarmNo": "1510203090", + "alarmDate": "1770010103032", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113548798352405", + "createdBy": null, + "createdTime": "2026-02-02 13:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:42", + "echoMap": {}, + "alarmNo": "1510203091", + "alarmDate": "1770010660940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113548798352411", + "createdBy": null, + "createdTime": "2026-02-02 13:37:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:56", + "echoMap": {}, + "alarmNo": "1510203092", + "alarmDate": "1770010663908", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113548798352427", + "createdBy": null, + "createdTime": "2026-02-02 13:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:57", + "echoMap": {}, + "alarmNo": "1510203093", + "alarmDate": "1770010671085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319689", + "createdBy": null, + "createdTime": "2026-02-02 13:37:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:05", + "echoMap": {}, + "alarmNo": "1510203094", + "alarmDate": "1770010678981", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319707", + "createdBy": null, + "createdTime": "2026-02-02 13:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:21", + "echoMap": {}, + "alarmNo": "1510203095", + "alarmDate": "1770010689156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319715", + "createdBy": null, + "createdTime": "2026-02-02 13:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:13", + "echoMap": {}, + "alarmNo": "1510203096", + "alarmDate": "1770010691641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319722", + "createdBy": null, + "createdTime": "2026-02-02 13:38:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:20", + "echoMap": {}, + "alarmNo": "1510203097", + "alarmDate": "1770010693925", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319759", + "createdBy": null, + "createdTime": "2026-02-02 13:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:28", + "echoMap": {}, + "alarmNo": "1510203098", + "alarmDate": "1770010706832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319772", + "createdBy": null, + "createdTime": "2026-02-02 13:38:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:44", + "echoMap": {}, + "alarmNo": "1510203099", + "alarmDate": "1770010712068", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113557388286990", + "createdBy": null, + "createdTime": "2026-02-02 13:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:48", + "echoMap": {}, + "alarmNo": "1510203100", + "alarmDate": "1770011261130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113557388287018", + "createdBy": null, + "createdTime": "2026-02-02 13:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:17", + "echoMap": {}, + "alarmNo": "1510203101", + "alarmDate": "1770011267389", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113557388287021", + "createdBy": null, + "createdTime": "2026-02-02 13:47:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:03", + "echoMap": {}, + "alarmNo": "1510203102", + "alarmDate": "1770011267739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254380", + "createdBy": null, + "createdTime": "2026-02-02 13:48:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:25", + "echoMap": {}, + "alarmNo": "1510203103", + "alarmDate": "1770011293155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254426", + "createdBy": null, + "createdTime": "2026-02-02 13:48:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:36", + "echoMap": {}, + "alarmNo": "1510203104", + "alarmDate": "1770011302937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254450", + "createdBy": null, + "createdTime": "2026-02-02 13:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:35", + "echoMap": {}, + "alarmNo": "1510203105", + "alarmDate": "1770011309449", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254469", + "createdBy": null, + "createdTime": "2026-02-02 13:48:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:52", + "echoMap": {}, + "alarmNo": "1510203106", + "alarmDate": "1770011313435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273188940", + "createdBy": null, + "createdTime": "2026-02-02 13:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:14", + "echoMap": {}, + "alarmNo": "1510203107", + "alarmDate": "1770011866192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273188984", + "createdBy": null, + "createdTime": "2026-02-02 13:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:41", + "echoMap": {}, + "alarmNo": "1510203108", + "alarmDate": "1770011878350", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273188991", + "createdBy": null, + "createdTime": "2026-02-02 13:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:06", + "echoMap": {}, + "alarmNo": "1510203109", + "alarmDate": "1770011880301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189006", + "createdBy": null, + "createdTime": "2026-02-02 13:58:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:10", + "echoMap": {}, + "alarmNo": "1510203110", + "alarmDate": "1770011883661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189064", + "createdBy": null, + "createdTime": "2026-02-02 13:58:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:21", + "echoMap": {}, + "alarmNo": "1510203111", + "alarmDate": "1770011900450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189069", + "createdBy": null, + "createdTime": "2026-02-02 13:58:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:52", + "echoMap": {}, + "alarmNo": "1510203112", + "alarmDate": "1770011901701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189072", + "createdBy": null, + "createdTime": "2026-02-02 13:58:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:23", + "echoMap": {}, + "alarmNo": "1510203113", + "alarmDate": "1770011902176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189093", + "createdBy": null, + "createdTime": "2026-02-02 13:58:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:36", + "echoMap": {}, + "alarmNo": "1510203114", + "alarmDate": "1770011908389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123525", + "createdBy": null, + "createdTime": "2026-02-02 14:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:43", + "echoMap": {}, + "alarmNo": "1510203115", + "alarmDate": "1770012461455", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123559", + "createdBy": null, + "createdTime": "2026-02-02 14:07:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:05", + "echoMap": {}, + "alarmNo": "1510203116", + "alarmDate": "1770012476651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123565", + "createdBy": null, + "createdTime": "2026-02-02 14:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:59", + "echoMap": {}, + "alarmNo": "1510203117", + "alarmDate": "1770012477835", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123586", + "createdBy": null, + "createdTime": "2026-02-02 14:08:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:03", + "echoMap": {}, + "alarmNo": "1510203118", + "alarmDate": "1770012488875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123620", + "createdBy": null, + "createdTime": "2026-02-02 14:08:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:26", + "echoMap": {}, + "alarmNo": "1510203119", + "alarmDate": "1770012504611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123629", + "createdBy": null, + "createdTime": "2026-02-02 14:08:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:31", + "echoMap": {}, + "alarmNo": "1510203120", + "alarmDate": "1770012507826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113583158090760", + "createdBy": null, + "createdTime": "2026-02-02 14:08:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:36", + "echoMap": {}, + "alarmNo": "1510203121", + "alarmDate": "1770012514783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113583158090770", + "createdBy": null, + "createdTime": "2026-02-02 14:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:13", + "echoMap": {}, + "alarmNo": "1510203122", + "alarmDate": "1770012516610", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113587453058166", + "createdBy": null, + "createdTime": "2026-02-02 14:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:00", + "echoMap": {}, + "alarmNo": "1510203123", + "alarmDate": "1770013073935", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113591748025369", + "createdBy": null, + "createdTime": "2026-02-02 14:18:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:31", + "echoMap": {}, + "alarmNo": "1510203124", + "alarmDate": "1770013104690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992761", + "createdBy": null, + "createdTime": "2026-02-02 14:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:11", + "echoMap": {}, + "alarmNo": "1510203125", + "alarmDate": "1770013660954", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992765", + "createdBy": null, + "createdTime": "2026-02-02 14:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:43", + "echoMap": {}, + "alarmNo": "1510203126", + "alarmDate": "1770013661688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992784", + "createdBy": null, + "createdTime": "2026-02-02 14:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:54", + "echoMap": {}, + "alarmNo": "1510203127", + "alarmDate": "1770013667157", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992869", + "createdBy": null, + "createdTime": "2026-02-02 14:28:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "alarmNo": "1510203128", + "alarmDate": "1770013701322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992875", + "createdBy": null, + "createdTime": "2026-02-02 14:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:24", + "echoMap": {}, + "alarmNo": "1510203129", + "alarmDate": "1770013703375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992885", + "createdBy": null, + "createdTime": "2026-02-02 14:28:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:35", + "echoMap": {}, + "alarmNo": "1510203130", + "alarmDate": "1770013706877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113600337959944", + "createdBy": null, + "createdTime": "2026-02-02 14:28:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:31", + "echoMap": {}, + "alarmNo": "1510203131", + "alarmDate": "1770013710169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927324", + "createdBy": null, + "createdTime": "2026-02-02 14:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:46", + "echoMap": {}, + "alarmNo": "1510203132", + "alarmDate": "1770014261212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927344", + "createdBy": null, + "createdTime": "2026-02-02 14:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:47", + "echoMap": {}, + "alarmNo": "1510203133", + "alarmDate": "1770014266350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927399", + "createdBy": null, + "createdTime": "2026-02-02 14:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:19", + "echoMap": {}, + "alarmNo": "1510203134", + "alarmDate": "1770014292117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927440", + "createdBy": null, + "createdTime": "2026-02-02 14:38:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "alarmNo": "1510203135", + "alarmDate": "1770014313440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927442", + "createdBy": null, + "createdTime": "2026-02-02 14:38:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "alarmNo": "1510203136", + "alarmDate": "1770014313573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113604632927442", + "createdBy": null, + "createdTime": "2026-02-02 14:38:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "alarmNo": "1510203136", + "alarmDate": "1770014313573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927440", + "createdBy": null, + "createdTime": "2026-02-02 14:38:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "alarmNo": "1510203135", + "alarmDate": "1770014313440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927399", + "createdBy": null, + "createdTime": "2026-02-02 14:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:19", + "echoMap": {}, + "alarmNo": "1510203134", + "alarmDate": "1770014292117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927344", + "createdBy": null, + "createdTime": "2026-02-02 14:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:47", + "echoMap": {}, + "alarmNo": "1510203133", + "alarmDate": "1770014266350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113604632927324", + "createdBy": null, + "createdTime": "2026-02-02 14:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:46", + "echoMap": {}, + "alarmNo": "1510203132", + "alarmDate": "1770014261212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113600337959944", + "createdBy": null, + "createdTime": "2026-02-02 14:28:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:31", + "echoMap": {}, + "alarmNo": "1510203131", + "alarmDate": "1770013710169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992885", + "createdBy": null, + "createdTime": "2026-02-02 14:28:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:35", + "echoMap": {}, + "alarmNo": "1510203130", + "alarmDate": "1770013706877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992875", + "createdBy": null, + "createdTime": "2026-02-02 14:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:24", + "echoMap": {}, + "alarmNo": "1510203129", + "alarmDate": "1770013703375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992869", + "createdBy": null, + "createdTime": "2026-02-02 14:28:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "alarmNo": "1510203128", + "alarmDate": "1770013701322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992784", + "createdBy": null, + "createdTime": "2026-02-02 14:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:54", + "echoMap": {}, + "alarmNo": "1510203127", + "alarmDate": "1770013667157", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992765", + "createdBy": null, + "createdTime": "2026-02-02 14:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:43", + "echoMap": {}, + "alarmNo": "1510203126", + "alarmDate": "1770013661688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113596042992761", + "createdBy": null, + "createdTime": "2026-02-02 14:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:11", + "echoMap": {}, + "alarmNo": "1510203125", + "alarmDate": "1770013660954", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113591748025369", + "createdBy": null, + "createdTime": "2026-02-02 14:18:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:31", + "echoMap": {}, + "alarmNo": "1510203124", + "alarmDate": "1770013104690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113587453058166", + "createdBy": null, + "createdTime": "2026-02-02 14:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:00", + "echoMap": {}, + "alarmNo": "1510203123", + "alarmDate": "1770013073935", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113583158090770", + "createdBy": null, + "createdTime": "2026-02-02 14:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:13", + "echoMap": {}, + "alarmNo": "1510203122", + "alarmDate": "1770012516610", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113583158090760", + "createdBy": null, + "createdTime": "2026-02-02 14:08:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:36", + "echoMap": {}, + "alarmNo": "1510203121", + "alarmDate": "1770012514783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123629", + "createdBy": null, + "createdTime": "2026-02-02 14:08:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:31", + "echoMap": {}, + "alarmNo": "1510203120", + "alarmDate": "1770012507826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123620", + "createdBy": null, + "createdTime": "2026-02-02 14:08:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:26", + "echoMap": {}, + "alarmNo": "1510203119", + "alarmDate": "1770012504611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123586", + "createdBy": null, + "createdTime": "2026-02-02 14:08:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:03", + "echoMap": {}, + "alarmNo": "1510203118", + "alarmDate": "1770012488875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123565", + "createdBy": null, + "createdTime": "2026-02-02 14:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:59", + "echoMap": {}, + "alarmNo": "1510203117", + "alarmDate": "1770012477835", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123559", + "createdBy": null, + "createdTime": "2026-02-02 14:07:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:05", + "echoMap": {}, + "alarmNo": "1510203116", + "alarmDate": "1770012476651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113578863123525", + "createdBy": null, + "createdTime": "2026-02-02 14:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:43", + "echoMap": {}, + "alarmNo": "1510203115", + "alarmDate": "1770012461455", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189093", + "createdBy": null, + "createdTime": "2026-02-02 13:58:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:36", + "echoMap": {}, + "alarmNo": "1510203114", + "alarmDate": "1770011908389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189072", + "createdBy": null, + "createdTime": "2026-02-02 13:58:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:23", + "echoMap": {}, + "alarmNo": "1510203113", + "alarmDate": "1770011902176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189069", + "createdBy": null, + "createdTime": "2026-02-02 13:58:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:52", + "echoMap": {}, + "alarmNo": "1510203112", + "alarmDate": "1770011901701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189064", + "createdBy": null, + "createdTime": "2026-02-02 13:58:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:21", + "echoMap": {}, + "alarmNo": "1510203111", + "alarmDate": "1770011900450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273189006", + "createdBy": null, + "createdTime": "2026-02-02 13:58:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:10", + "echoMap": {}, + "alarmNo": "1510203110", + "alarmDate": "1770011883661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273188991", + "createdBy": null, + "createdTime": "2026-02-02 13:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:06", + "echoMap": {}, + "alarmNo": "1510203109", + "alarmDate": "1770011880301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273188984", + "createdBy": null, + "createdTime": "2026-02-02 13:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:41", + "echoMap": {}, + "alarmNo": "1510203108", + "alarmDate": "1770011878350", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113570273188940", + "createdBy": null, + "createdTime": "2026-02-02 13:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:14", + "echoMap": {}, + "alarmNo": "1510203107", + "alarmDate": "1770011866192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254469", + "createdBy": null, + "createdTime": "2026-02-02 13:48:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:52", + "echoMap": {}, + "alarmNo": "1510203106", + "alarmDate": "1770011313435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254450", + "createdBy": null, + "createdTime": "2026-02-02 13:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:35", + "echoMap": {}, + "alarmNo": "1510203105", + "alarmDate": "1770011309449", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254426", + "createdBy": null, + "createdTime": "2026-02-02 13:48:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:36", + "echoMap": {}, + "alarmNo": "1510203104", + "alarmDate": "1770011302937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113561683254380", + "createdBy": null, + "createdTime": "2026-02-02 13:48:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:25", + "echoMap": {}, + "alarmNo": "1510203103", + "alarmDate": "1770011293155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113557388287021", + "createdBy": null, + "createdTime": "2026-02-02 13:47:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:03", + "echoMap": {}, + "alarmNo": "1510203102", + "alarmDate": "1770011267739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113557388287018", + "createdBy": null, + "createdTime": "2026-02-02 13:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:17", + "echoMap": {}, + "alarmNo": "1510203101", + "alarmDate": "1770011267389", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113557388286990", + "createdBy": null, + "createdTime": "2026-02-02 13:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:48", + "echoMap": {}, + "alarmNo": "1510203100", + "alarmDate": "1770011261130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319772", + "createdBy": null, + "createdTime": "2026-02-02 13:38:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:44", + "echoMap": {}, + "alarmNo": "1510203099", + "alarmDate": "1770010712068", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319759", + "createdBy": null, + "createdTime": "2026-02-02 13:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:28", + "echoMap": {}, + "alarmNo": "1510203098", + "alarmDate": "1770010706832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319722", + "createdBy": null, + "createdTime": "2026-02-02 13:38:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:20", + "echoMap": {}, + "alarmNo": "1510203097", + "alarmDate": "1770010693925", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319715", + "createdBy": null, + "createdTime": "2026-02-02 13:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:13", + "echoMap": {}, + "alarmNo": "1510203096", + "alarmDate": "1770010691641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319707", + "createdBy": null, + "createdTime": "2026-02-02 13:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:21", + "echoMap": {}, + "alarmNo": "1510203095", + "alarmDate": "1770010689156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113553093319689", + "createdBy": null, + "createdTime": "2026-02-02 13:37:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:05", + "echoMap": {}, + "alarmNo": "1510203094", + "alarmDate": "1770010678981", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113548798352427", + "createdBy": null, + "createdTime": "2026-02-02 13:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:57", + "echoMap": {}, + "alarmNo": "1510203093", + "alarmDate": "1770010671085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113548798352411", + "createdBy": null, + "createdTime": "2026-02-02 13:37:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:56", + "echoMap": {}, + "alarmNo": "1510203092", + "alarmDate": "1770010663908", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113548798352405", + "createdBy": null, + "createdTime": "2026-02-02 13:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:42", + "echoMap": {}, + "alarmNo": "1510203091", + "alarmDate": "1770010660940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113544503385135", + "createdBy": null, + "createdTime": "2026-02-02 13:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:30", + "echoMap": {}, + "alarmNo": "1510203090", + "alarmDate": "1770010103032", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113544503385096", + "createdBy": null, + "createdTime": "2026-02-02 13:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:14", + "echoMap": {}, + "alarmNo": "1510203089", + "alarmDate": "1770010093302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113540208417804", + "createdBy": null, + "createdTime": "2026-02-02 13:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:32", + "echoMap": {}, + "alarmNo": "1510203088", + "alarmDate": "1770010081694", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113540208417801", + "createdBy": null, + "createdTime": "2026-02-02 13:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:08", + "echoMap": {}, + "alarmNo": "1510203087", + "alarmDate": "1770010080933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113535913450663", + "createdBy": null, + "createdTime": "2026-02-02 13:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:47", + "echoMap": {}, + "alarmNo": "1510203086", + "alarmDate": "1770010061878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113535913450659", + "createdBy": null, + "createdTime": "2026-02-02 13:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:53", + "echoMap": {}, + "alarmNo": "1510203085", + "alarmDate": "1770010060742", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113535913450533", + "createdBy": null, + "createdTime": "2026-02-02 13:18:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:39", + "echoMap": {}, + "alarmNo": "1510203084", + "alarmDate": "1770009513734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113531618483264", + "createdBy": null, + "createdTime": "2026-02-02 13:18:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:30", + "echoMap": {}, + "alarmNo": "1510203083", + "alarmDate": "1770009497779", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113531618483257", + "createdBy": null, + "createdTime": "2026-02-02 13:18:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:29", + "echoMap": {}, + "alarmNo": "1510203082", + "alarmDate": "1770009495571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113531618483213", + "createdBy": null, + "createdTime": "2026-02-02 13:18:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:06", + "echoMap": {}, + "alarmNo": "1510203081", + "alarmDate": "1770009479768", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516066", + "createdBy": null, + "createdTime": "2026-02-02 13:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:55", + "echoMap": {}, + "alarmNo": "1510203080", + "alarmDate": "1770009474295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516060", + "createdBy": null, + "createdTime": "2026-02-02 13:17:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:54", + "echoMap": {}, + "alarmNo": "1510203079", + "alarmDate": "1770009473361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516035", + "createdBy": null, + "createdTime": "2026-02-02 13:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:59", + "echoMap": {}, + "alarmNo": "1510203078", + "alarmDate": "1770009466536", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113527323516003", + "createdBy": null, + "createdTime": "2026-02-02 13:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:50", + "echoMap": {}, + "alarmNo": "1510203077", + "alarmDate": "1770009460474", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113523028548640", + "createdBy": null, + "createdTime": "2026-02-02 13:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:38", + "echoMap": {}, + "alarmNo": "1510203076", + "alarmDate": "1770008917212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581504", + "createdBy": null, + "createdTime": "2026-02-02 13:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:32", + "echoMap": {}, + "alarmNo": "1510203075", + "alarmDate": "1770008900309", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581501", + "createdBy": null, + "createdTime": "2026-02-02 13:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:21", + "echoMap": {}, + "alarmNo": "1510203074", + "alarmDate": "1770008899926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581434", + "createdBy": null, + "createdTime": "2026-02-02 13:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:08:00", + "echoMap": {}, + "alarmNo": "1510203073", + "alarmDate": "1770008878808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113518733581394", + "createdBy": null, + "createdTime": "2026-02-02 13:07:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:02", + "echoMap": {}, + "alarmNo": "1510203072", + "alarmDate": "1770008865955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113514438614030", + "createdBy": null, + "createdTime": "2026-02-02 12:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:40", + "echoMap": {}, + "alarmNo": "1510203071", + "alarmDate": "1770008319482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646924", + "createdBy": null, + "createdTime": "2026-02-02 12:58:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:32", + "echoMap": {}, + "alarmNo": "1510203070", + "alarmDate": "1770008304642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646878", + "createdBy": null, + "createdTime": "2026-02-02 12:58:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:07", + "echoMap": {}, + "alarmNo": "1510203069", + "alarmDate": "1770008286403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646822", + "createdBy": null, + "createdTime": "2026-02-02 12:57:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:54", + "echoMap": {}, + "alarmNo": "1510203068", + "alarmDate": "1770008272600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646787", + "createdBy": null, + "createdTime": "2026-02-02 12:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:11", + "echoMap": {}, + "alarmNo": "1510203067", + "alarmDate": "1770008262537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113510143646781", + "createdBy": null, + "createdTime": "2026-02-02 12:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:16", + "echoMap": {}, + "alarmNo": "1510203066", + "alarmDate": "1770008260186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712369", + "createdBy": null, + "createdTime": "2026-02-02 12:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:37", + "echoMap": {}, + "alarmNo": "1510203065", + "alarmDate": "1770007716375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712367", + "createdBy": null, + "createdTime": "2026-02-02 12:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:19", + "echoMap": {}, + "alarmNo": "1510203064", + "alarmDate": "1770007716106", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712347", + "createdBy": null, + "createdTime": "2026-02-02 12:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:39", + "echoMap": {}, + "alarmNo": "1510203063", + "alarmDate": "1770007707054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712238", + "createdBy": null, + "createdTime": "2026-02-02 12:47:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:53", + "echoMap": {}, + "alarmNo": "1510203062", + "alarmDate": "1770007672496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113501553712200", + "createdBy": null, + "createdTime": "2026-02-02 12:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:44", + "echoMap": {}, + "alarmNo": "1510203061", + "alarmDate": "1770007662431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777756", + "createdBy": null, + "createdTime": "2026-02-02 12:38:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:46", + "echoMap": {}, + "alarmNo": "1510203060", + "alarmDate": "1770007108771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777737", + "createdBy": null, + "createdTime": "2026-02-02 12:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:15", + "echoMap": {}, + "alarmNo": "1510203059", + "alarmDate": "1770007100868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777697", + "createdBy": null, + "createdTime": "2026-02-02 12:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:08", + "echoMap": {}, + "alarmNo": "1510203058", + "alarmDate": "1770007080588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777677", + "createdBy": null, + "createdTime": "2026-02-02 12:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:09", + "echoMap": {}, + "alarmNo": "1510203057", + "alarmDate": "1770007070900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777665", + "createdBy": null, + "createdTime": "2026-02-02 12:37:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:45", + "echoMap": {}, + "alarmNo": "1510203056", + "alarmDate": "1770007063834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113492963777549", + "createdBy": null, + "createdTime": "2026-02-02 12:28:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:46", + "echoMap": {}, + "alarmNo": "1510203055", + "alarmDate": "1770006519390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113488668810267", + "createdBy": null, + "createdTime": "2026-02-02 12:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:29", + "echoMap": {}, + "alarmNo": "1510203054", + "alarmDate": "1770006507582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113488668810262", + "createdBy": null, + "createdTime": "2026-02-02 12:28:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:34", + "echoMap": {}, + "alarmNo": "1510203053", + "alarmDate": "1770006506655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113488668810251", + "createdBy": null, + "createdTime": "2026-02-02 12:28:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:36", + "echoMap": {}, + "alarmNo": "1510203052", + "alarmDate": "1770006503622", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843162", + "createdBy": null, + "createdTime": "2026-02-02 12:28:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:15", + "echoMap": {}, + "alarmNo": "1510203051", + "alarmDate": "1770006493950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843112", + "createdBy": null, + "createdTime": "2026-02-02 12:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:01", + "echoMap": {}, + "alarmNo": "1510203050", + "alarmDate": "1770006480484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843089", + "createdBy": null, + "createdTime": "2026-02-02 12:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:03", + "echoMap": {}, + "alarmNo": "1510203049", + "alarmDate": "1770006475171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113484373843058", + "createdBy": null, + "createdTime": "2026-02-02 12:27:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:45", + "echoMap": {}, + "alarmNo": "1510203048", + "alarmDate": "1770006463659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113480078875707", + "createdBy": null, + "createdTime": "2026-02-02 12:18:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:26", + "echoMap": {}, + "alarmNo": "1510203047", + "alarmDate": "1770005918417", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113480078875667", + "createdBy": null, + "createdTime": "2026-02-02 12:18:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:42", + "echoMap": {}, + "alarmNo": "1510203046", + "alarmDate": "1770005905859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908645", + "createdBy": null, + "createdTime": "2026-02-02 12:18:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:15", + "echoMap": {}, + "alarmNo": "1510203045", + "alarmDate": "1770005895448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908463", + "createdBy": null, + "createdTime": "2026-02-02 12:08:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:03", + "echoMap": {}, + "alarmNo": "1510203044", + "alarmDate": "1770005319166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908395", + "createdBy": null, + "createdTime": "2026-02-02 12:08:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:27", + "echoMap": {}, + "alarmNo": "1510203043", + "alarmDate": "1770005295164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908365", + "createdBy": null, + "createdTime": "2026-02-02 12:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:12", + "echoMap": {}, + "alarmNo": "1510203042", + "alarmDate": "1770005282418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113475783908359", + "createdBy": null, + "createdTime": "2026-02-02 12:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:02", + "echoMap": {}, + "alarmNo": "1510203041", + "alarmDate": "1770005281057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113467193973816", + "createdBy": null, + "createdTime": "2026-02-02 11:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:03", + "echoMap": {}, + "alarmNo": "1510203040", + "alarmDate": "1770004700963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113467193973797", + "createdBy": null, + "createdTime": "2026-02-02 11:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:15", + "echoMap": {}, + "alarmNo": "1510203039", + "alarmDate": "1770004693693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113467193973782", + "createdBy": null, + "createdTime": "2026-02-02 11:58:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:09", + "echoMap": {}, + "alarmNo": "1510203038", + "alarmDate": "1770004688059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113462899006512", + "createdBy": null, + "createdTime": "2026-02-02 11:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:37", + "echoMap": {}, + "alarmNo": "1510203037", + "alarmDate": "1770004679788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113462899006498", + "createdBy": null, + "createdTime": "2026-02-02 11:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:56", + "echoMap": {}, + "alarmNo": "1510203036", + "alarmDate": "1770004674526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113462899006469", + "createdBy": null, + "createdTime": "2026-02-02 11:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:47", + "echoMap": {}, + "alarmNo": "1510203035", + "alarmDate": "1770004661810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113458604039295", + "createdBy": null, + "createdTime": "2026-02-02 11:48:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:38", + "echoMap": {}, + "alarmNo": "1510203034", + "alarmDate": "1770004117314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113454309071898", + "createdBy": null, + "createdTime": "2026-02-02 11:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:54", + "echoMap": {}, + "alarmNo": "1510203033", + "alarmDate": "1770004066791", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113454309071894", + "createdBy": null, + "createdTime": "2026-02-02 11:47:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:33", + "echoMap": {}, + "alarmNo": "1510203032", + "alarmDate": "1770004066258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113454309071882", + "createdBy": null, + "createdTime": "2026-02-02 11:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:09", + "echoMap": {}, + "alarmNo": "1510203031", + "alarmDate": "1770004060771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113450014104697", + "createdBy": null, + "createdTime": "2026-02-02 11:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:34", + "echoMap": {}, + "alarmNo": "1510203030", + "alarmDate": "1770003507032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113450014104660", + "createdBy": null, + "createdTime": "2026-02-02 11:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:33", + "echoMap": {}, + "alarmNo": "1510203029", + "alarmDate": "1770003489489", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113450014104614", + "createdBy": null, + "createdTime": "2026-02-02 11:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:49", + "echoMap": {}, + "alarmNo": "1510203028", + "alarmDate": "1770003460883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170251", + "createdBy": null, + "createdTime": "2026-02-02 11:28:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:58", + "echoMap": {}, + "alarmNo": "1510203027", + "alarmDate": "1770002911226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060013", + "deviceName": "[108](10)陕西南下行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170195", + "createdBy": null, + "createdTime": "2026-02-02 11:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:20", + "echoMap": {}, + "alarmNo": "1510203026", + "alarmDate": "1770002892600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170174", + "createdBy": null, + "createdTime": "2026-02-02 11:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:04", + "echoMap": {}, + "alarmNo": "1510203025", + "alarmDate": "1770002883211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170165", + "createdBy": null, + "createdTime": "2026-02-02 11:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:02", + "echoMap": {}, + "alarmNo": "1510203024", + "alarmDate": "1770002880702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424170120", + "createdBy": null, + "createdTime": "2026-02-02 11:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:48", + "echoMap": {}, + "alarmNo": "1510203023", + "alarmDate": "1770002866579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113441424169985", + "createdBy": null, + "createdTime": "2026-02-02 11:18:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:01", + "echoMap": {}, + "alarmNo": "1510203022", + "alarmDate": "1770002319135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113437129202725", + "createdBy": null, + "createdTime": "2026-02-02 11:18:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:32", + "echoMap": {}, + "alarmNo": "1510203021", + "alarmDate": "1770002311460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235628", + "createdBy": null, + "createdTime": "2026-02-02 11:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:35", + "echoMap": {}, + "alarmNo": "1510203020", + "alarmDate": "1770002291192", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235617", + "createdBy": null, + "createdTime": "2026-02-02 11:18:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:24", + "echoMap": {}, + "alarmNo": "1510203019", + "alarmDate": "1770002289106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235614", + "createdBy": null, + "createdTime": "2026-02-02 11:18:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:10", + "echoMap": {}, + "alarmNo": "1510203018", + "alarmDate": "1770002288757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235543", + "createdBy": null, + "createdTime": "2026-02-02 11:17:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:48:12", + "echoMap": {}, + "alarmNo": "1510203017", + "alarmDate": "1770002269245", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113432834235532", + "createdBy": null, + "createdTime": "2026-02-02 11:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:59", + "echoMap": {}, + "alarmNo": "1510203016", + "alarmDate": "1770002267136", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113428539268096", + "createdBy": null, + "createdTime": "2026-02-02 11:08:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:56", + "echoMap": {}, + "alarmNo": "1510203015", + "alarmDate": "1770001700773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113424244301086", + "createdBy": null, + "createdTime": "2026-02-02 11:08:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:24", + "echoMap": {}, + "alarmNo": "1510203014", + "alarmDate": "1770001695704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113424244301008", + "createdBy": null, + "createdTime": "2026-02-02 11:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:09", + "echoMap": {}, + "alarmNo": "1510203013", + "alarmDate": "1770001660743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113424244301006", + "createdBy": null, + "createdTime": "2026-02-02 11:07:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:41", + "echoMap": {}, + "alarmNo": "1510203012", + "alarmDate": "1770001660427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113419949333508", + "createdBy": null, + "createdTime": "2026-02-02 10:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:27", + "echoMap": {}, + "alarmNo": "1510203011", + "alarmDate": "1770001082566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113419949333506", + "createdBy": null, + "createdTime": "2026-02-02 10:58:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:03", + "echoMap": {}, + "alarmNo": "1510203010", + "alarmDate": "1770001082387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366422", + "createdBy": null, + "createdTime": "2026-02-02 10:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:47", + "echoMap": {}, + "alarmNo": "1510203009", + "alarmDate": "1770001065827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366404", + "createdBy": null, + "createdTime": "2026-02-02 10:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:46", + "echoMap": {}, + "alarmNo": "1510203008", + "alarmDate": "1770001060532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366235", + "createdBy": null, + "createdTime": "2026-02-02 10:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:30", + "echoMap": {}, + "alarmNo": "1510203007", + "alarmDate": "1770000508652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113415654366208", + "createdBy": null, + "createdTime": "2026-02-02 10:48:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:24", + "echoMap": {}, + "alarmNo": "1510203006", + "alarmDate": "1770000502616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113411359398928", + "createdBy": null, + "createdTime": "2026-02-02 10:48:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:32", + "echoMap": {}, + "alarmNo": "1510203005", + "alarmDate": "1770000493492", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113411359398917", + "createdBy": null, + "createdTime": "2026-02-02 10:48:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:35", + "echoMap": {}, + "alarmNo": "1510203004", + "alarmDate": "1770000490526", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431844", + "createdBy": null, + "createdTime": "2026-02-02 10:48:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:06", + "echoMap": {}, + "alarmNo": "1510203003", + "alarmDate": "1770000484760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431829", + "createdBy": null, + "createdTime": "2026-02-02 10:48:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:50", + "echoMap": {}, + "alarmNo": "1510203002", + "alarmDate": "1770000479823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431795", + "createdBy": null, + "createdTime": "2026-02-02 10:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:46", + "echoMap": {}, + "alarmNo": "1510203001", + "alarmDate": "1770000461677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113407064431620", + "createdBy": null, + "createdTime": "2026-02-02 10:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:19", + "echoMap": {}, + "alarmNo": "1510203000", + "alarmDate": "1769999892344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113402769464371", + "createdBy": null, + "createdTime": "2026-02-02 10:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:03", + "echoMap": {}, + "alarmNo": "1510202999", + "alarmDate": "1769999889089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113398474497181", + "createdBy": null, + "createdTime": "2026-02-02 10:37:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:49", + "echoMap": {}, + "alarmNo": "1510202998", + "alarmDate": "1769999862203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113398474497176", + "createdBy": null, + "createdTime": "2026-02-02 10:37:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:57", + "echoMap": {}, + "alarmNo": "1510202997", + "alarmDate": "1769999860112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113394179529782", + "createdBy": null, + "createdTime": "2026-02-02 10:28:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:39", + "echoMap": {}, + "alarmNo": "1510202996", + "alarmDate": "1769999300931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113389884562612", + "createdBy": null, + "createdTime": "2026-02-02 10:27:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:19", + "echoMap": {}, + "alarmNo": "1510202995", + "alarmDate": "1769999276914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113389884562579", + "createdBy": null, + "createdTime": "2026-02-02 10:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:43", + "echoMap": {}, + "alarmNo": "1510202994", + "alarmDate": "1769999261849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113389884562575", + "createdBy": null, + "createdTime": "2026-02-02 10:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:09", + "echoMap": {}, + "alarmNo": "1510202993", + "alarmDate": "1769999260901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113385589595188", + "createdBy": null, + "createdTime": "2026-02-02 10:18:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:39", + "echoMap": {}, + "alarmNo": "1510202992", + "alarmDate": "1769998706747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113385589595168", + "createdBy": null, + "createdTime": "2026-02-02 10:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:15", + "echoMap": {}, + "alarmNo": "1510202991", + "alarmDate": "1769998693662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113385589595167", + "createdBy": null, + "createdTime": "2026-02-02 10:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:15", + "echoMap": {}, + "alarmNo": "1510202990", + "alarmDate": "1769998693638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113381294628026", + "createdBy": null, + "createdTime": "2026-02-02 10:17:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:15", + "echoMap": {}, + "alarmNo": "1510202989", + "alarmDate": "1769998676690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113381294627860", + "createdBy": null, + "createdTime": "2026-02-02 10:08:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:36", + "echoMap": {}, + "alarmNo": "1510202988", + "alarmDate": "1769998114082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113376999660589", + "createdBy": null, + "createdTime": "2026-02-02 10:08:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:22", + "echoMap": {}, + "alarmNo": "1510202987", + "alarmDate": "1769998100562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113376999660581", + "createdBy": null, + "createdTime": "2026-02-02 10:08:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:19", + "echoMap": {}, + "alarmNo": "1510202986", + "alarmDate": "1769998098086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113376999660549", + "createdBy": null, + "createdTime": "2026-02-02 10:08:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:45", + "echoMap": {}, + "alarmNo": "1510202985", + "alarmDate": "1769998083474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693474", + "createdBy": null, + "createdTime": "2026-02-02 10:07:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:50", + "echoMap": {}, + "alarmNo": "1510202984", + "alarmDate": "1769998060465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693335", + "createdBy": null, + "createdTime": "2026-02-02 09:58:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:34", + "echoMap": {}, + "alarmNo": "1510202983", + "alarmDate": "1769997506684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693295", + "createdBy": null, + "createdTime": "2026-02-02 09:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:32", + "echoMap": {}, + "alarmNo": "1510202982", + "alarmDate": "1769997494289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113372704693265", + "createdBy": null, + "createdTime": "2026-02-02 09:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:06", + "echoMap": {}, + "alarmNo": "1510202981", + "alarmDate": "1769997477584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113368409725989", + "createdBy": null, + "createdTime": "2026-02-02 09:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:56", + "echoMap": {}, + "alarmNo": "1510202980", + "alarmDate": "1769997460279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758782", + "createdBy": null, + "createdTime": "2026-02-02 09:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:48", + "echoMap": {}, + "alarmNo": "1510202979", + "alarmDate": "1769996897582", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758750", + "createdBy": null, + "createdTime": "2026-02-02 09:48:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:07", + "echoMap": {}, + "alarmNo": "1510202978", + "alarmDate": "1769996885690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758727", + "createdBy": null, + "createdTime": "2026-02-02 09:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:02", + "echoMap": {}, + "alarmNo": "1510202977", + "alarmDate": "1769996880736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758697", + "createdBy": null, + "createdTime": "2026-02-02 09:47:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:06", + "echoMap": {}, + "alarmNo": "1510202976", + "alarmDate": "1769996873488", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113364114758685", + "createdBy": null, + "createdTime": "2026-02-02 09:47:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:52", + "echoMap": {}, + "alarmNo": "1510202975", + "alarmDate": "1769996870899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824214", + "createdBy": null, + "createdTime": "2026-02-02 09:38:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:09", + "echoMap": {}, + "alarmNo": "1510202974", + "alarmDate": "1769996318723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824193", + "createdBy": null, + "createdTime": "2026-02-02 09:38:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:34", + "echoMap": {}, + "alarmNo": "1510202973", + "alarmDate": "1769996312652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824139", + "createdBy": null, + "createdTime": "2026-02-02 09:38:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:25", + "echoMap": {}, + "alarmNo": "1510202972", + "alarmDate": "1769996297683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824133", + "createdBy": null, + "createdTime": "2026-02-02 09:38:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:17", + "echoMap": {}, + "alarmNo": "1510202971", + "alarmDate": "1769996296276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824103", + "createdBy": null, + "createdTime": "2026-02-02 09:38:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:38", + "echoMap": {}, + "alarmNo": "1510202970", + "alarmDate": "1769996287212", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113355524824069", + "createdBy": null, + "createdTime": "2026-02-02 09:37:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:04", + "echoMap": {}, + "alarmNo": "1510202969", + "alarmDate": "1769996275695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889579", + "createdBy": null, + "createdTime": "2026-02-02 09:28:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:26", + "echoMap": {}, + "alarmNo": "1510202968", + "alarmDate": "1769995712690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889553", + "createdBy": null, + "createdTime": "2026-02-02 09:28:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:37", + "echoMap": {}, + "alarmNo": "1510202967", + "alarmDate": "1769995704229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889525", + "createdBy": null, + "createdTime": "2026-02-02 09:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:21", + "echoMap": {}, + "alarmNo": "1510202966", + "alarmDate": "1769995694584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113346934889516", + "createdBy": null, + "createdTime": "2026-02-02 09:28:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:35", + "echoMap": {}, + "alarmNo": "1510202965", + "alarmDate": "1769995691218", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113342639922230", + "createdBy": null, + "createdTime": "2026-02-02 09:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:47", + "echoMap": {}, + "alarmNo": "1510202964", + "alarmDate": "1769995662105", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113342639922213", + "createdBy": null, + "createdTime": "2026-02-02 09:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:03", + "echoMap": {}, + "alarmNo": "1510202963", + "alarmDate": "1769995660570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344955014", + "createdBy": null, + "createdTime": "2026-02-02 09:18:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:41", + "echoMap": {}, + "alarmNo": "1510202962", + "alarmDate": "1769995106761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954948", + "createdBy": null, + "createdTime": "2026-02-02 09:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:55", + "echoMap": {}, + "alarmNo": "1510202961", + "alarmDate": "1769995073701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954922", + "createdBy": null, + "createdTime": "2026-02-02 09:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:48", + "echoMap": {}, + "alarmNo": "1510202960", + "alarmDate": "1769995066848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954910", + "createdBy": null, + "createdTime": "2026-02-02 09:17:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:44", + "echoMap": {}, + "alarmNo": "1510202959", + "alarmDate": "1769995063031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113338344954904", + "createdBy": null, + "createdTime": "2026-02-02 09:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:14", + "echoMap": {}, + "alarmNo": "1510202958", + "alarmDate": "1769995060389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020458", + "createdBy": null, + "createdTime": "2026-02-02 09:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:38", + "echoMap": {}, + "alarmNo": "1510202957", + "alarmDate": "1769994516527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020451", + "createdBy": null, + "createdTime": "2026-02-02 09:08:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:52", + "echoMap": {}, + "alarmNo": "1510202956", + "alarmDate": "1769994514938", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020433", + "createdBy": null, + "createdTime": "2026-02-02 09:08:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:31", + "echoMap": {}, + "alarmNo": "1510202955", + "alarmDate": "1769994509656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020415", + "createdBy": null, + "createdTime": "2026-02-02 09:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:32", + "echoMap": {}, + "alarmNo": "1510202954", + "alarmDate": "1769994505559", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113329755020366", + "createdBy": null, + "createdTime": "2026-02-02 09:08:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:11", + "echoMap": {}, + "alarmNo": "1510202953", + "alarmDate": "1769994490451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113325460053041", + "createdBy": null, + "createdTime": "2026-02-02 09:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:58", + "echoMap": {}, + "alarmNo": "1510202952", + "alarmDate": "1769994463305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113321165085825", + "createdBy": null, + "createdTime": "2026-02-02 08:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:35", + "echoMap": {}, + "alarmNo": "1510202951", + "alarmDate": "1769993914497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113321165085768", + "createdBy": null, + "createdTime": "2026-02-02 08:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:32", + "echoMap": {}, + "alarmNo": "1510202950", + "alarmDate": "1769993893919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113321165085709", + "createdBy": null, + "createdTime": "2026-02-02 08:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:01", + "echoMap": {}, + "alarmNo": "1510202949", + "alarmDate": "1769993875213", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113316870118437", + "createdBy": null, + "createdTime": "2026-02-02 08:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:27", + "echoMap": {}, + "alarmNo": "1510202948", + "alarmDate": "1769993863813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113316870118429", + "createdBy": null, + "createdTime": "2026-02-02 08:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:51", + "echoMap": {}, + "alarmNo": "1510202947", + "alarmDate": "1769993860849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151175", + "createdBy": null, + "createdTime": "2026-02-02 08:48:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:27", + "echoMap": {}, + "alarmNo": "1510202946", + "alarmDate": "1769993300395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151170", + "createdBy": null, + "createdTime": "2026-02-02 08:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:32", + "echoMap": {}, + "alarmNo": "1510202945", + "alarmDate": "1769993299064", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151138", + "createdBy": null, + "createdTime": "2026-02-02 08:48:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:07", + "echoMap": {}, + "alarmNo": "1510202944", + "alarmDate": "1769993286107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113312575151119", + "createdBy": null, + "createdTime": "2026-02-02 08:48:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:06", + "echoMap": {}, + "alarmNo": "1510202943", + "alarmDate": "1769993280331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113308280183832", + "createdBy": null, + "createdTime": "2026-02-02 08:47:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:46", + "echoMap": {}, + "alarmNo": "1510202942", + "alarmDate": "1769993264724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113308280183822", + "createdBy": null, + "createdTime": "2026-02-02 08:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:38", + "echoMap": {}, + "alarmNo": "1510202941", + "alarmDate": "1769993260573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216605", + "createdBy": null, + "createdTime": "2026-02-02 08:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:28", + "echoMap": {}, + "alarmNo": "1510202940", + "alarmDate": "1769992706592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216588", + "createdBy": null, + "createdTime": "2026-02-02 08:38:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:21", + "echoMap": {}, + "alarmNo": "1510202939", + "alarmDate": "1769992699806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216573", + "createdBy": null, + "createdTime": "2026-02-02 08:38:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:16", + "echoMap": {}, + "alarmNo": "1510202938", + "alarmDate": "1769992694805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216557", + "createdBy": null, + "createdTime": "2026-02-02 08:38:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:17", + "echoMap": {}, + "alarmNo": "1510202937", + "alarmDate": "1769992690735", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060071", + "deviceName": "[306](10)陕西南7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113303985216550", + "createdBy": null, + "createdTime": "2026-02-02 08:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:10", + "echoMap": {}, + "alarmNo": "1510202936", + "alarmDate": "1769992688599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282114", + "createdBy": null, + "createdTime": "2026-02-02 08:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:32", + "echoMap": {}, + "alarmNo": "1510202935", + "alarmDate": "1769992100258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282100", + "createdBy": null, + "createdTime": "2026-02-02 08:28:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:34", + "echoMap": {}, + "alarmNo": "1510202934", + "alarmDate": "1769992096147", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282090", + "createdBy": null, + "createdTime": "2026-02-02 08:28:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:25", + "echoMap": {}, + "alarmNo": "1510202933", + "alarmDate": "1769992092436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282050", + "createdBy": null, + "createdTime": "2026-02-02 08:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:56", + "echoMap": {}, + "alarmNo": "1510202932", + "alarmDate": "1769992074562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282030", + "createdBy": null, + "createdTime": "2026-02-02 08:27:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:57", + "echoMap": {}, + "alarmNo": "1510202931", + "alarmDate": "1769992068452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113295395282013", + "createdBy": null, + "createdTime": "2026-02-02 08:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:08", + "echoMap": {}, + "alarmNo": "1510202930", + "alarmDate": "1769992060122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347606", + "createdBy": null, + "createdTime": "2026-02-02 08:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:32", + "echoMap": {}, + "alarmNo": "1510202929", + "alarmDate": "1769991481891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347588", + "createdBy": null, + "createdTime": "2026-02-02 08:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:52", + "echoMap": {}, + "alarmNo": "1510202928", + "alarmDate": "1769991471159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347431", + "createdBy": null, + "createdTime": "2026-02-02 08:08:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:33", + "echoMap": {}, + "alarmNo": "1510202927", + "alarmDate": "1769990911958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347417", + "createdBy": null, + "createdTime": "2026-02-02 08:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:44", + "echoMap": {}, + "alarmNo": "1510202926", + "alarmDate": "1769990905764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347378", + "createdBy": null, + "createdTime": "2026-02-02 08:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:15", + "echoMap": {}, + "alarmNo": "1510202925", + "alarmDate": "1769990893700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347353", + "createdBy": null, + "createdTime": "2026-02-02 08:08:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:14", + "echoMap": {}, + "alarmNo": "1510202924", + "alarmDate": "1769990887676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347343", + "createdBy": null, + "createdTime": "2026-02-02 08:08:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:23", + "echoMap": {}, + "alarmNo": "1510202923", + "alarmDate": "1769990884824", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347338", + "createdBy": null, + "createdTime": "2026-02-02 08:08:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:05", + "echoMap": {}, + "alarmNo": "1510202922", + "alarmDate": "1769990883735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113286805347329", + "createdBy": null, + "createdTime": "2026-02-02 08:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:02", + "echoMap": {}, + "alarmNo": "1510202921", + "alarmDate": "1769990880747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113282510380042", + "createdBy": null, + "createdTime": "2026-02-02 08:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:53", + "echoMap": {}, + "alarmNo": "1510202920", + "alarmDate": "1769990860790", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113282510380040", + "createdBy": null, + "createdTime": "2026-02-02 08:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:56", + "echoMap": {}, + "alarmNo": "1510202919", + "alarmDate": "1769990860677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412911", + "createdBy": null, + "createdTime": "2026-02-02 07:58:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:35", + "echoMap": {}, + "alarmNo": "1510202918", + "alarmDate": "1769990308577", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412883", + "createdBy": null, + "createdTime": "2026-02-02 07:58:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:55", + "echoMap": {}, + "alarmNo": "1510202917", + "alarmDate": "1769990300031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412823", + "createdBy": null, + "createdTime": "2026-02-02 07:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:05", + "echoMap": {}, + "alarmNo": "1510202916", + "alarmDate": "1769990278570", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412798", + "createdBy": null, + "createdTime": "2026-02-02 07:57:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:49", + "echoMap": {}, + "alarmNo": "1510202915", + "alarmDate": "1769990267606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113278215412764", + "createdBy": null, + "createdTime": "2026-02-02 07:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:47", + "echoMap": {}, + "alarmNo": "1510202914", + "alarmDate": "1769990260594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113269625478317", + "createdBy": null, + "createdTime": "2026-02-02 07:48:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:07", + "echoMap": {}, + "alarmNo": "1510202913", + "alarmDate": "1769989683526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113269625478244", + "createdBy": null, + "createdTime": "2026-02-02 07:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:51", + "echoMap": {}, + "alarmNo": "1510202912", + "alarmDate": "1769989661549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543874", + "createdBy": null, + "createdTime": "2026-02-02 07:38:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:10", + "echoMap": {}, + "alarmNo": "1510202911", + "alarmDate": "1769989108149", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543846", + "createdBy": null, + "createdTime": "2026-02-02 07:38:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:25", + "echoMap": {}, + "alarmNo": "1510202910", + "alarmDate": "1769989099594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543799", + "createdBy": null, + "createdTime": "2026-02-02 07:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:03", + "echoMap": {}, + "alarmNo": "1510202909", + "alarmDate": "1769989081816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543784", + "createdBy": null, + "createdTime": "2026-02-02 07:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:59", + "echoMap": {}, + "alarmNo": "1510202908", + "alarmDate": "1769989077900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543748", + "createdBy": null, + "createdTime": "2026-02-02 07:37:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:48", + "echoMap": {}, + "alarmNo": "1510202907", + "alarmDate": "1769989066852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543571", + "createdBy": null, + "createdTime": "2026-02-02 07:28:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:30", + "echoMap": {}, + "alarmNo": "1510202906", + "alarmDate": "1769988508653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113261035543565", + "createdBy": null, + "createdTime": "2026-02-02 07:28:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:09", + "echoMap": {}, + "alarmNo": "1510202905", + "alarmDate": "1769988506909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113256740576307", + "createdBy": null, + "createdTime": "2026-02-02 07:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:38", + "echoMap": {}, + "alarmNo": "1510202904", + "alarmDate": "1769988499892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609250", + "createdBy": null, + "createdTime": "2026-02-02 07:27:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:52", + "echoMap": {}, + "alarmNo": "1510202903", + "alarmDate": "1769988470609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609222", + "createdBy": null, + "createdTime": "2026-02-02 07:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:01", + "echoMap": {}, + "alarmNo": "1510202902", + "alarmDate": "1769988463280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609070", + "createdBy": null, + "createdTime": "2026-02-02 07:18:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:47", + "echoMap": {}, + "alarmNo": "1510202901", + "alarmDate": "1769987911520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609046", + "createdBy": null, + "createdTime": "2026-02-02 07:18:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:25", + "echoMap": {}, + "alarmNo": "1510202900", + "alarmDate": "1769987904439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609034", + "createdBy": null, + "createdTime": "2026-02-02 07:18:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:22", + "echoMap": {}, + "alarmNo": "1510202899", + "alarmDate": "1769987901438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113252445609007", + "createdBy": null, + "createdTime": "2026-02-02 07:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:08", + "echoMap": {}, + "alarmNo": "1510202898", + "alarmDate": "1769987893692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113243855674664", + "createdBy": null, + "createdTime": "2026-02-02 07:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:49", + "echoMap": {}, + "alarmNo": "1510202897", + "alarmDate": "1769987861108", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113243855674662", + "createdBy": null, + "createdTime": "2026-02-02 07:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:16", + "echoMap": {}, + "alarmNo": "1510202896", + "alarmDate": "1769987860734", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113243855674429", + "createdBy": null, + "createdTime": "2026-02-02 07:07:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:54", + "echoMap": {}, + "alarmNo": "1510202895", + "alarmDate": "1769987272887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740060", + "createdBy": null, + "createdTime": "2026-02-02 06:58:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:38", + "echoMap": {}, + "alarmNo": "1510202894", + "alarmDate": "1769986716572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740057", + "createdBy": null, + "createdTime": "2026-02-02 06:58:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:36", + "echoMap": {}, + "alarmNo": "1510202893", + "alarmDate": "1769986715709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740041", + "createdBy": null, + "createdTime": "2026-02-02 06:58:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:02", + "echoMap": {}, + "alarmNo": "1510202892", + "alarmDate": "1769986711248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265740014", + "createdBy": null, + "createdTime": "2026-02-02 06:58:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:20", + "echoMap": {}, + "alarmNo": "1510202891", + "alarmDate": "1769986698760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739983", + "createdBy": null, + "createdTime": "2026-02-02 06:58:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:06", + "echoMap": {}, + "alarmNo": "1510202890", + "alarmDate": "1769986688532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739901", + "createdBy": null, + "createdTime": "2026-02-02 06:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:50", + "echoMap": {}, + "alarmNo": "1510202889", + "alarmDate": "1769986663823", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060048", + "deviceName": "[303](10)陕西南6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739890", + "createdBy": null, + "createdTime": "2026-02-02 06:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:07", + "echoMap": {}, + "alarmNo": "1510202888", + "alarmDate": "1769986660123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113235265739779", + "createdBy": null, + "createdTime": "2026-02-02 06:48:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:18", + "echoMap": {}, + "alarmNo": "1510202887", + "alarmDate": "1769986119544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113230970772528", + "createdBy": null, + "createdTime": "2026-02-02 06:48:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:55", + "echoMap": {}, + "alarmNo": "1510202886", + "alarmDate": "1769986117193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113226675805369", + "createdBy": null, + "createdTime": "2026-02-02 06:47:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:10", + "echoMap": {}, + "alarmNo": "1510202885", + "alarmDate": "1769986065050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060062", + "deviceName": "[403](10)陕西南2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113226675805358", + "createdBy": null, + "createdTime": "2026-02-02 06:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:37", + "echoMap": {}, + "alarmNo": "1510202884", + "alarmDate": "1769986060926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113226675805237", + "createdBy": null, + "createdTime": "2026-02-02 06:38:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:21", + "echoMap": {}, + "alarmNo": "1510202883", + "alarmDate": "1769985516281", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870902", + "createdBy": null, + "createdTime": "2026-02-02 06:38:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:17", + "echoMap": {}, + "alarmNo": "1510202882", + "alarmDate": "1769985485114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870875", + "createdBy": null, + "createdTime": "2026-02-02 06:37:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:00", + "echoMap": {}, + "alarmNo": "1510202881", + "alarmDate": "1769985479180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870834", + "createdBy": null, + "createdTime": "2026-02-02 06:37:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:51", + "echoMap": {}, + "alarmNo": "1510202880", + "alarmDate": "1769985469904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870793", + "createdBy": null, + "createdTime": "2026-02-02 06:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:46", + "echoMap": {}, + "alarmNo": "1510202879", + "alarmDate": "1769985461144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870790", + "createdBy": null, + "createdTime": "2026-02-02 06:37:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:30", + "echoMap": {}, + "alarmNo": "1510202878", + "alarmDate": "1769985460764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870659", + "createdBy": null, + "createdTime": "2026-02-02 06:28:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:36", + "echoMap": {}, + "alarmNo": "1510202877", + "alarmDate": "1769984914621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113218085870609", + "createdBy": null, + "createdTime": "2026-02-02 06:28:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:37", + "echoMap": {}, + "alarmNo": "1510202876", + "alarmDate": "1769984904668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113213790903352", + "createdBy": null, + "createdTime": "2026-02-02 06:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:25", + "echoMap": {}, + "alarmNo": "1510202875", + "alarmDate": "1769984898876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113213790903346", + "createdBy": null, + "createdTime": "2026-02-02 06:28:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:19", + "echoMap": {}, + "alarmNo": "1510202874", + "alarmDate": "1769984897892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113213790903302", + "createdBy": null, + "createdTime": "2026-02-02 06:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:13", + "echoMap": {}, + "alarmNo": "1510202873", + "alarmDate": "1769984886670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936276", + "createdBy": null, + "createdTime": "2026-02-02 06:27:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:59", + "echoMap": {}, + "alarmNo": "1510202872", + "alarmDate": "1769984872890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936236", + "createdBy": null, + "createdTime": "2026-02-02 06:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:42", + "echoMap": {}, + "alarmNo": "1510202871", + "alarmDate": "1769984860983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936073", + "createdBy": null, + "createdTime": "2026-02-02 06:18:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:30", + "echoMap": {}, + "alarmNo": "1510202870", + "alarmDate": "1769984308697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113209495936006", + "createdBy": null, + "createdTime": "2026-02-02 06:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:15", + "echoMap": {}, + "alarmNo": "1510202869", + "alarmDate": "1769984293509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001719", + "createdBy": null, + "createdTime": "2026-02-02 06:17:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:30", + "echoMap": {}, + "alarmNo": "1510202868", + "alarmDate": "1769984274329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001670", + "createdBy": null, + "createdTime": "2026-02-02 06:17:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:43", + "echoMap": {}, + "alarmNo": "1510202867", + "alarmDate": "1769984262196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060070", + "deviceName": "[210](10)陕西南7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001662", + "createdBy": null, + "createdTime": "2026-02-02 06:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:42", + "echoMap": {}, + "alarmNo": "1510202866", + "alarmDate": "1769984260323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001526", + "createdBy": null, + "createdTime": "2026-02-02 06:08:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:34", + "echoMap": {}, + "alarmNo": "1510202865", + "alarmDate": "1769983713007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060070", + "deviceName": "[210](10)陕西南7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001498", + "createdBy": null, + "createdTime": "2026-02-02 06:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:38", + "echoMap": {}, + "alarmNo": "1510202864", + "alarmDate": "1769983706312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001443", + "createdBy": null, + "createdTime": "2026-02-02 06:08:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:10", + "echoMap": {}, + "alarmNo": "1510202863", + "alarmDate": "1769983689449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060046", + "deviceName": "[209](10)陕西南6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113200906001409", + "createdBy": null, + "createdTime": "2026-02-02 06:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:01", + "echoMap": {}, + "alarmNo": "1510202862", + "alarmDate": "1769983680244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113196611034146", + "createdBy": null, + "createdTime": "2026-02-02 06:07:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:50", + "echoMap": {}, + "alarmNo": "1510202861", + "alarmDate": "1769983669086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113196611034120", + "createdBy": null, + "createdTime": "2026-02-02 06:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:43", + "echoMap": {}, + "alarmNo": "1510202860", + "alarmDate": "1769983661350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316067033", + "createdBy": null, + "createdTime": "2026-02-02 05:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:52", + "echoMap": {}, + "alarmNo": "1510202859", + "alarmDate": "1769983118887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316067017", + "createdBy": null, + "createdTime": "2026-02-02 05:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:35", + "echoMap": {}, + "alarmNo": "1510202858", + "alarmDate": "1769983113894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066968", + "createdBy": null, + "createdTime": "2026-02-02 05:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:24", + "echoMap": {}, + "alarmNo": "1510202857", + "alarmDate": "1769983103008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066928", + "createdBy": null, + "createdTime": "2026-02-02 05:58:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:36", + "echoMap": {}, + "alarmNo": "1510202856", + "alarmDate": "1769983092131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066842", + "createdBy": null, + "createdTime": "2026-02-02 05:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:00", + "echoMap": {}, + "alarmNo": "1510202855", + "alarmDate": "1769983061032", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060069", + "deviceName": "[309](10)陕西南7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113192316066841", + "createdBy": null, + "createdTime": "2026-02-02 05:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:00", + "echoMap": {}, + "alarmNo": "1510202854", + "alarmDate": "1769983061006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132530", + "createdBy": null, + "createdTime": "2026-02-02 05:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:20", + "echoMap": {}, + "alarmNo": "1510202853", + "alarmDate": "1769982515916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132491", + "createdBy": null, + "createdTime": "2026-02-02 05:48:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:13", + "echoMap": {}, + "alarmNo": "1510202852", + "alarmDate": "1769982491552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132488", + "createdBy": null, + "createdTime": "2026-02-02 05:48:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:17", + "echoMap": {}, + "alarmNo": "1510202851", + "alarmDate": "1769982490802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132433", + "createdBy": null, + "createdTime": "2026-02-02 05:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:47:52", + "echoMap": {}, + "alarmNo": "1510202850", + "alarmDate": "1769982460750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132298", + "createdBy": null, + "createdTime": "2026-02-02 05:38:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:37", + "echoMap": {}, + "alarmNo": "1510202849", + "alarmDate": "1769981910689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132282", + "createdBy": null, + "createdTime": "2026-02-02 05:38:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:26", + "echoMap": {}, + "alarmNo": "1510202848", + "alarmDate": "1769981904611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132279", + "createdBy": null, + "createdTime": "2026-02-02 05:38:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:12", + "echoMap": {}, + "alarmNo": "1510202847", + "alarmDate": "1769981903669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132271", + "createdBy": null, + "createdTime": "2026-02-02 05:38:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:21", + "echoMap": {}, + "alarmNo": "1510202846", + "alarmDate": "1769981899502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060046", + "deviceName": "[209](10)陕西南6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132261", + "createdBy": null, + "createdTime": "2026-02-02 05:38:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:14", + "echoMap": {}, + "alarmNo": "1510202845", + "alarmDate": "1769981893409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132246", + "createdBy": null, + "createdTime": "2026-02-02 05:38:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:13", + "echoMap": {}, + "alarmNo": "1510202844", + "alarmDate": "1769981886463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113183726132231", + "createdBy": null, + "createdTime": "2026-02-02 05:38:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:01", + "echoMap": {}, + "alarmNo": "1510202843", + "alarmDate": "1769981880102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113179431164967", + "createdBy": null, + "createdTime": "2026-02-02 05:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:49", + "echoMap": {}, + "alarmNo": "1510202842", + "alarmDate": "1769981868359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197869", + "createdBy": null, + "createdTime": "2026-02-02 05:28:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:39", + "echoMap": {}, + "alarmNo": "1510202841", + "alarmDate": "1769981318131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197838", + "createdBy": null, + "createdTime": "2026-02-02 05:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:49", + "echoMap": {}, + "alarmNo": "1510202840", + "alarmDate": "1769981308418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197767", + "createdBy": null, + "createdTime": "2026-02-02 05:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:10", + "echoMap": {}, + "alarmNo": "1510202839", + "alarmDate": "1769981284287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113175136197726", + "createdBy": null, + "createdTime": "2026-02-02 05:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:44", + "echoMap": {}, + "alarmNo": "1510202838", + "alarmDate": "1769981261263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113170841230374", + "createdBy": null, + "createdTime": "2026-02-02 05:18:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:06", + "echoMap": {}, + "alarmNo": "1510202837", + "alarmDate": "1769980715279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113170841230341", + "createdBy": null, + "createdTime": "2026-02-02 05:18:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:37", + "echoMap": {}, + "alarmNo": "1510202836", + "alarmDate": "1769980705046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263366", + "createdBy": null, + "createdTime": "2026-02-02 05:18:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:25", + "echoMap": {}, + "alarmNo": "1510202835", + "alarmDate": "1769980703655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263282", + "createdBy": null, + "createdTime": "2026-02-02 05:18:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:13", + "echoMap": {}, + "alarmNo": "1510202834", + "alarmDate": "1769980681008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263246", + "createdBy": null, + "createdTime": "2026-02-02 05:17:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:51", + "echoMap": {}, + "alarmNo": "1510202833", + "alarmDate": "1769980669982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263094", + "createdBy": null, + "createdTime": "2026-02-02 05:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:49", + "echoMap": {}, + "alarmNo": "1510202832", + "alarmDate": "1769980115873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113166546263075", + "createdBy": null, + "createdTime": "2026-02-02 05:08:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:32", + "echoMap": {}, + "alarmNo": "1510202831", + "alarmDate": "1769980110529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113162251295757", + "createdBy": null, + "createdTime": "2026-02-02 05:08:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:13", + "echoMap": {}, + "alarmNo": "1510202830", + "alarmDate": "1769980092224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113162251295752", + "createdBy": null, + "createdTime": "2026-02-02 05:08:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:18", + "echoMap": {}, + "alarmNo": "1510202829", + "alarmDate": "1769980091758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328753", + "createdBy": null, + "createdTime": "2026-02-02 05:08:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:04", + "echoMap": {}, + "alarmNo": "1510202828", + "alarmDate": "1769980082504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328740", + "createdBy": null, + "createdTime": "2026-02-02 05:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:11", + "echoMap": {}, + "alarmNo": "1510202827", + "alarmDate": "1769980079085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060034", + "deviceName": "[335](10)陕西南10-12换乘入8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328689", + "createdBy": null, + "createdTime": "2026-02-02 05:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:04", + "echoMap": {}, + "alarmNo": "1510202826", + "alarmDate": "1769980061202", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060045", + "deviceName": "[304](10)陕西南6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328559", + "createdBy": null, + "createdTime": "2026-02-02 04:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:54", + "echoMap": {}, + "alarmNo": "1510202825", + "alarmDate": "1769979513622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113157956328465", + "createdBy": null, + "createdTime": "2026-02-02 04:57:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:50", + "echoMap": {}, + "alarmNo": "1510202824", + "alarmDate": "1769979468903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113153661361210", + "createdBy": null, + "createdTime": "2026-02-02 04:57:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:50", + "echoMap": {}, + "alarmNo": "1510202823", + "alarmDate": "1769979460482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393985", + "createdBy": null, + "createdTime": "2026-02-02 04:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:35", + "echoMap": {}, + "alarmNo": "1510202822", + "alarmDate": "1769978909305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393934", + "createdBy": null, + "createdTime": "2026-02-02 04:48:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:11", + "echoMap": {}, + "alarmNo": "1510202821", + "alarmDate": "1769978890148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393890", + "createdBy": null, + "createdTime": "2026-02-02 04:47:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:11", + "echoMap": {}, + "alarmNo": "1510202820", + "alarmDate": "1769978878149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113149366393885", + "createdBy": null, + "createdTime": "2026-02-02 04:47:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:58", + "echoMap": {}, + "alarmNo": "1510202819", + "alarmDate": "1769978876824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113145071426603", + "createdBy": null, + "createdTime": "2026-02-02 04:47:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:46", + "echoMap": {}, + "alarmNo": "1510202818", + "alarmDate": "1769978861184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113140776459364", + "createdBy": null, + "createdTime": "2026-02-02 04:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:28", + "echoMap": {}, + "alarmNo": "1510202817", + "alarmDate": "1769978307475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113140776459344", + "createdBy": null, + "createdTime": "2026-02-02 04:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:22", + "echoMap": {}, + "alarmNo": "1510202816", + "alarmDate": "1769978300595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113140776459313", + "createdBy": null, + "createdTime": "2026-02-02 04:38:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:23", + "echoMap": {}, + "alarmNo": "1510202815", + "alarmDate": "1769978290924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113132186524751", + "createdBy": null, + "createdTime": "2026-02-02 04:28:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:59", + "echoMap": {}, + "alarmNo": "1510202814", + "alarmDate": "1769977718788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113132186524691", + "createdBy": null, + "createdTime": "2026-02-02 04:28:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:20", + "echoMap": {}, + "alarmNo": "1510202813", + "alarmDate": "1769977693624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113127891557425", + "createdBy": null, + "createdTime": "2026-02-02 04:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:04", + "echoMap": {}, + "alarmNo": "1510202812", + "alarmDate": "1769977683067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113127891557391", + "createdBy": null, + "createdTime": "2026-02-02 04:27:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:56", + "echoMap": {}, + "alarmNo": "1510202811", + "alarmDate": "1769977669663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113123596590104", + "createdBy": null, + "createdTime": "2026-02-02 04:18:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:17", + "echoMap": {}, + "alarmNo": "1510202810", + "alarmDate": "1769977096059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113123596590090", + "createdBy": null, + "createdTime": "2026-02-02 04:18:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:19", + "echoMap": {}, + "alarmNo": "1510202809", + "alarmDate": "1769977092448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113119301622793", + "createdBy": null, + "createdTime": "2026-02-02 04:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:52", + "echoMap": {}, + "alarmNo": "1510202808", + "alarmDate": "1769977070698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113115006655664", + "createdBy": null, + "createdTime": "2026-02-02 04:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:59", + "echoMap": {}, + "alarmNo": "1510202807", + "alarmDate": "1769977067412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113115006655656", + "createdBy": null, + "createdTime": "2026-02-02 04:17:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:46", + "echoMap": {}, + "alarmNo": "1510202806", + "alarmDate": "1769977065013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113115006655541", + "createdBy": null, + "createdTime": "2026-02-02 04:08:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:08:38", + "echoMap": {}, + "alarmNo": "1510202805", + "alarmDate": "1769976516793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113106416721096", + "createdBy": null, + "createdTime": "2026-02-02 04:07:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:08:04", + "echoMap": {}, + "alarmNo": "1510202804", + "alarmDate": "1769976471123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113106416720909", + "createdBy": null, + "createdTime": "2026-02-02 03:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:22", + "echoMap": {}, + "alarmNo": "1510202803", + "alarmDate": "1769975900621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113102121753626", + "createdBy": null, + "createdTime": "2026-02-02 03:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:31", + "echoMap": {}, + "alarmNo": "1510202802", + "alarmDate": "1769975878735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113097826786480", + "createdBy": null, + "createdTime": "2026-02-02 03:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:43", + "echoMap": {}, + "alarmNo": "1510202801", + "alarmDate": "1769975862024", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113097826786304", + "createdBy": null, + "createdTime": "2026-02-02 03:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:27", + "echoMap": {}, + "alarmNo": "1510202800", + "alarmDate": "1769975306806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113093531819049", + "createdBy": null, + "createdTime": "2026-02-02 03:48:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:41", + "echoMap": {}, + "alarmNo": "1510202799", + "alarmDate": "1769975303264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113093531819011", + "createdBy": null, + "createdTime": "2026-02-02 03:48:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:15", + "echoMap": {}, + "alarmNo": "1510202798", + "alarmDate": "1769975294161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113089236851881", + "createdBy": null, + "createdTime": "2026-02-02 03:48:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:09", + "echoMap": {}, + "alarmNo": "1510202797", + "alarmDate": "1769975288186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113089236851854", + "createdBy": null, + "createdTime": "2026-02-02 03:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:03", + "echoMap": {}, + "alarmNo": "1510202796", + "alarmDate": "1769975282379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113089236851840", + "createdBy": null, + "createdTime": "2026-02-02 03:47:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:22", + "echoMap": {}, + "alarmNo": "1510202795", + "alarmDate": "1769975278819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917374", + "createdBy": null, + "createdTime": "2026-02-02 03:38:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:15", + "echoMap": {}, + "alarmNo": "1510202794", + "alarmDate": "1769974721012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917373", + "createdBy": null, + "createdTime": "2026-02-02 03:38:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:41", + "echoMap": {}, + "alarmNo": "1510202793", + "alarmDate": "1769974721011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917357", + "createdBy": null, + "createdTime": "2026-02-02 03:38:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:58", + "echoMap": {}, + "alarmNo": "1510202792", + "alarmDate": "1769974715645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917272", + "createdBy": null, + "createdTime": "2026-02-02 03:38:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:27", + "echoMap": {}, + "alarmNo": "1510202791", + "alarmDate": "1769974696308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917255", + "createdBy": null, + "createdTime": "2026-02-02 03:38:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:35", + "echoMap": {}, + "alarmNo": "1510202790", + "alarmDate": "1769974691531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113080646917140", + "createdBy": null, + "createdTime": "2026-02-02 03:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:11", + "echoMap": {}, + "alarmNo": "1510202789", + "alarmDate": "1769974667708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982867", + "createdBy": null, + "createdTime": "2026-02-02 03:32:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:33:48", + "echoMap": {}, + "alarmNo": "1510202788", + "alarmDate": "1769974368352", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1012060051", + "deviceName": "[329](10)陕西南10-12换乘入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982759", + "createdBy": null, + "createdTime": "2026-02-02 03:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:03", + "echoMap": {}, + "alarmNo": "1510202787", + "alarmDate": "1769974108232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982741", + "createdBy": null, + "createdTime": "2026-02-02 03:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:47", + "echoMap": {}, + "alarmNo": "1510202786", + "alarmDate": "1769974103424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113072056982636", + "createdBy": null, + "createdTime": "2026-02-02 03:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:23", + "echoMap": {}, + "alarmNo": "1510202785", + "alarmDate": "1769974079590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048104", + "createdBy": null, + "createdTime": "2026-02-02 03:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:16", + "echoMap": {}, + "alarmNo": "1510202784", + "alarmDate": "1769973519752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048087", + "createdBy": null, + "createdTime": "2026-02-02 03:18:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:59", + "echoMap": {}, + "alarmNo": "1510202783", + "alarmDate": "1769973514950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048046", + "createdBy": null, + "createdTime": "2026-02-02 03:18:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:27", + "echoMap": {}, + "alarmNo": "1510202782", + "alarmDate": "1769973506021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467048008", + "createdBy": null, + "createdTime": "2026-02-02 03:18:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:19", + "echoMap": {}, + "alarmNo": "1510202781", + "alarmDate": "1769973498426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467047975", + "createdBy": null, + "createdTime": "2026-02-02 03:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:12", + "echoMap": {}, + "alarmNo": "1510202780", + "alarmDate": "1769973491214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113063467047973", + "createdBy": null, + "createdTime": "2026-02-02 03:18:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:35", + "echoMap": {}, + "alarmNo": "1510202779", + "alarmDate": "1769973490940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113054877113664", + "createdBy": null, + "createdTime": "2026-02-02 03:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:11", + "echoMap": {}, + "alarmNo": "1510202778", + "alarmDate": "1769973466811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113054877113638", + "createdBy": null, + "createdTime": "2026-02-02 03:17:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:28", + "echoMap": {}, + "alarmNo": "1510202777", + "alarmDate": "1769973461698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113054877113466", + "createdBy": null, + "createdTime": "2026-02-02 03:08:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:47", + "echoMap": {}, + "alarmNo": "1510202776", + "alarmDate": "1769972903667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113050582146116", + "createdBy": null, + "createdTime": "2026-02-02 03:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:24", + "echoMap": {}, + "alarmNo": "1510202775", + "alarmDate": "1769972879529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113046287178871", + "createdBy": null, + "createdTime": "2026-02-02 02:58:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:59", + "echoMap": {}, + "alarmNo": "1510202774", + "alarmDate": "1769972316400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113046287178778", + "createdBy": null, + "createdTime": "2026-02-02 02:58:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:41", + "echoMap": {}, + "alarmNo": "1510202773", + "alarmDate": "1769972297120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113046287178761", + "createdBy": null, + "createdTime": "2026-02-02 02:58:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:36", + "echoMap": {}, + "alarmNo": "1510202772", + "alarmDate": "1769972292361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244545", + "createdBy": null, + "createdTime": "2026-02-02 02:57:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:54", + "echoMap": {}, + "alarmNo": "1510202771", + "alarmDate": "1769972273291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244523", + "createdBy": null, + "createdTime": "2026-02-02 02:57:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:12", + "echoMap": {}, + "alarmNo": "1510202770", + "alarmDate": "1769972268270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244490", + "createdBy": null, + "createdTime": "2026-02-02 02:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:05", + "echoMap": {}, + "alarmNo": "1510202769", + "alarmDate": "1769972262082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244319", + "createdBy": null, + "createdTime": "2026-02-02 02:48:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:29", + "echoMap": {}, + "alarmNo": "1510202768", + "alarmDate": "1769971707555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244304", + "createdBy": null, + "createdTime": "2026-02-02 02:48:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:25", + "echoMap": {}, + "alarmNo": "1510202767", + "alarmDate": "1769971704448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244300", + "createdBy": null, + "createdTime": "2026-02-02 02:48:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:48", + "echoMap": {}, + "alarmNo": "1510202766", + "alarmDate": "1769971704134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113037697244193", + "createdBy": null, + "createdTime": "2026-02-02 02:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:24", + "echoMap": {}, + "alarmNo": "1510202765", + "alarmDate": "1769971681035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113029107309858", + "createdBy": null, + "createdTime": "2026-02-02 02:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:41", + "echoMap": {}, + "alarmNo": "1510202764", + "alarmDate": "1769971661824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113029107309735", + "createdBy": null, + "createdTime": "2026-02-02 02:38:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:01", + "echoMap": {}, + "alarmNo": "1510202763", + "alarmDate": "1769971116828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113029107309630", + "createdBy": null, + "createdTime": "2026-02-02 02:38:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:37", + "echoMap": {}, + "alarmNo": "1510202762", + "alarmDate": "1769971092841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113020517375240", + "createdBy": null, + "createdTime": "2026-02-02 02:37:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:13", + "echoMap": {}, + "alarmNo": "1510202761", + "alarmDate": "1769971068699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113020517375062", + "createdBy": null, + "createdTime": "2026-02-02 02:28:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:30", + "echoMap": {}, + "alarmNo": "1510202760", + "alarmDate": "1769970510445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113020517375046", + "createdBy": null, + "createdTime": "2026-02-02 02:28:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:49", + "echoMap": {}, + "alarmNo": "1510202759", + "alarmDate": "1769970505563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113016222407734", + "createdBy": null, + "createdTime": "2026-02-02 02:28:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:11", + "echoMap": {}, + "alarmNo": "1510202758", + "alarmDate": "1769970490469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113016222407696", + "createdBy": null, + "createdTime": "2026-02-02 02:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:25", + "echoMap": {}, + "alarmNo": "1510202757", + "alarmDate": "1769970481430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113011927440474", + "createdBy": null, + "createdTime": "2026-02-02 02:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:48", + "echoMap": {}, + "alarmNo": "1510202756", + "alarmDate": "1769970466952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113011927440467", + "createdBy": null, + "createdTime": "2026-02-02 02:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:47", + "echoMap": {}, + "alarmNo": "1510202755", + "alarmDate": "1769970465720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113007632473103", + "createdBy": null, + "createdTime": "2026-02-02 02:18:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:01", + "echoMap": {}, + "alarmNo": "1510202754", + "alarmDate": "1769969918299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337506020", + "createdBy": null, + "createdTime": "2026-02-02 02:18:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:37", + "echoMap": {}, + "alarmNo": "1510202753", + "alarmDate": "1769969915655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337506018", + "createdBy": null, + "createdTime": "2026-02-02 02:18:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:37", + "echoMap": {}, + "alarmNo": "1510202752", + "alarmDate": "1769969915542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337505906", + "createdBy": null, + "createdTime": "2026-02-02 02:18:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:38", + "echoMap": {}, + "alarmNo": "1510202751", + "alarmDate": "1769969894248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723113003337505795", + "createdBy": null, + "createdTime": "2026-02-02 02:17:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:14", + "echoMap": {}, + "alarmNo": "1510202750", + "alarmDate": "1769969870199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112994747571239", + "createdBy": null, + "createdTime": "2026-02-02 02:08:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:18", + "echoMap": {}, + "alarmNo": "1510202749", + "alarmDate": "1769969310879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112994747571223", + "createdBy": null, + "createdTime": "2026-02-02 02:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:50", + "echoMap": {}, + "alarmNo": "1510202748", + "alarmDate": "1769969306052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112986157636827", + "createdBy": null, + "createdTime": "2026-02-02 02:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:26", + "echoMap": {}, + "alarmNo": "1510202747", + "alarmDate": "1769969282038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112986157636612", + "createdBy": null, + "createdTime": "2026-02-02 01:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:02", + "echoMap": {}, + "alarmNo": "1510202746", + "alarmDate": "1769968718742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112981862669312", + "createdBy": null, + "createdTime": "2026-02-02 01:58:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:29", + "echoMap": {}, + "alarmNo": "1510202745", + "alarmDate": "1769968707648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702160", + "createdBy": null, + "createdTime": "2026-02-02 01:58:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:39", + "echoMap": {}, + "alarmNo": "1510202744", + "alarmDate": "1769968694734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702065", + "createdBy": null, + "createdTime": "2026-02-02 01:57:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:57", + "echoMap": {}, + "alarmNo": "1510202743", + "alarmDate": "1769968675848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702062", + "createdBy": null, + "createdTime": "2026-02-02 01:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:19", + "echoMap": {}, + "alarmNo": "1510202742", + "alarmDate": "1769968675448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702054", + "createdBy": null, + "createdTime": "2026-02-02 01:57:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:55", + "echoMap": {}, + "alarmNo": "1510202741", + "alarmDate": "1769968673982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112977567702043", + "createdBy": null, + "createdTime": "2026-02-02 01:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:15", + "echoMap": {}, + "alarmNo": "1510202740", + "alarmDate": "1769968670645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112968977767500", + "createdBy": null, + "createdTime": "2026-02-02 01:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:51", + "echoMap": {}, + "alarmNo": "1510202739", + "alarmDate": "1769968107459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112964682800167", + "createdBy": null, + "createdTime": "2026-02-02 01:48:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:43", + "echoMap": {}, + "alarmNo": "1510202738", + "alarmDate": "1769968088173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112964682800150", + "createdBy": null, + "createdTime": "2026-02-02 01:48:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:27", + "echoMap": {}, + "alarmNo": "1510202737", + "alarmDate": "1769968083392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898611", + "createdBy": null, + "createdTime": "2026-02-02 01:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:56", + "echoMap": {}, + "alarmNo": "1510202736", + "alarmDate": "1769967500953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898595", + "createdBy": null, + "createdTime": "2026-02-02 01:38:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:03", + "echoMap": {}, + "alarmNo": "1510202735", + "alarmDate": "1769967496159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898493", + "createdBy": null, + "createdTime": "2026-02-02 01:37:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:54", + "echoMap": {}, + "alarmNo": "1510202734", + "alarmDate": "1769967472907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898487", + "createdBy": null, + "createdTime": "2026-02-02 01:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:16", + "echoMap": {}, + "alarmNo": "1510202733", + "alarmDate": "1769967472035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112951797898269", + "createdBy": null, + "createdTime": "2026-02-02 01:28:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:52", + "echoMap": {}, + "alarmNo": "1510202732", + "alarmDate": "1769966907928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963900", + "createdBy": null, + "createdTime": "2026-02-02 01:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:08", + "echoMap": {}, + "alarmNo": "1510202731", + "alarmDate": "1769966886989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963885", + "createdBy": null, + "createdTime": "2026-02-02 01:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:28", + "echoMap": {}, + "alarmNo": "1510202730", + "alarmDate": "1769966883858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963880", + "createdBy": null, + "createdTime": "2026-02-02 01:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:04", + "echoMap": {}, + "alarmNo": "1510202729", + "alarmDate": "1769966883142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963768", + "createdBy": null, + "createdTime": "2026-02-02 01:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:09", + "echoMap": {}, + "alarmNo": "1510202728", + "alarmDate": "1769966861633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060072", + "deviceName": "[307](10)陕西南7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112943207963665", + "createdBy": null, + "createdTime": "2026-02-02 01:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:04", + "echoMap": {}, + "alarmNo": "1510202727", + "alarmDate": "1769966319628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112934618029284", + "createdBy": null, + "createdTime": "2026-02-02 01:18:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:40", + "echoMap": {}, + "alarmNo": "1510202726", + "alarmDate": "1769966296592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112934618029157", + "createdBy": null, + "createdTime": "2026-02-02 01:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:17", + "echoMap": {}, + "alarmNo": "1510202725", + "alarmDate": "1769966271487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094720", + "createdBy": null, + "createdTime": "2026-02-02 01:08:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:33", + "echoMap": {}, + "alarmNo": "1510202724", + "alarmDate": "1769965711620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060053", + "deviceName": "[202](10)陕西南厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094706", + "createdBy": null, + "createdTime": "2026-02-02 01:08:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:51", + "echoMap": {}, + "alarmNo": "1510202723", + "alarmDate": "1769965708397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094613", + "createdBy": null, + "createdTime": "2026-02-02 01:08:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:11", + "echoMap": {}, + "alarmNo": "1510202722", + "alarmDate": "1769965690114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094589", + "createdBy": null, + "createdTime": "2026-02-02 01:08:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:28", + "echoMap": {}, + "alarmNo": "1510202721", + "alarmDate": "1769965684375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112926028094482", + "createdBy": null, + "createdTime": "2026-02-02 01:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:04", + "echoMap": {}, + "alarmNo": "1510202720", + "alarmDate": "1769965661198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160084", + "createdBy": null, + "createdTime": "2026-02-02 00:58:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:39", + "echoMap": {}, + "alarmNo": "1510202719", + "alarmDate": "1769965114025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160058", + "createdBy": null, + "createdTime": "2026-02-02 00:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:24", + "echoMap": {}, + "alarmNo": "1510202718", + "alarmDate": "1769965102998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160055", + "createdBy": null, + "createdTime": "2026-02-02 00:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:24", + "echoMap": {}, + "alarmNo": "1510202717", + "alarmDate": "1769965102755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438160017", + "createdBy": null, + "createdTime": "2026-02-02 00:58:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:15", + "echoMap": {}, + "alarmNo": "1510202716", + "alarmDate": "1769965089002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112917438159952", + "createdBy": null, + "createdTime": "2026-02-02 00:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:43", + "echoMap": {}, + "alarmNo": "1510202715", + "alarmDate": "1769965061678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112913143192581", + "createdBy": null, + "createdTime": "2026-02-02 00:48:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:35", + "echoMap": {}, + "alarmNo": "1510202714", + "alarmDate": "1769964513608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112908848225514", + "createdBy": null, + "createdTime": "2026-02-02 00:48:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:51", + "echoMap": {}, + "alarmNo": "1510202713", + "alarmDate": "1769964510756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112908848225403", + "createdBy": null, + "createdTime": "2026-02-02 00:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:48", + "echoMap": {}, + "alarmNo": "1510202712", + "alarmDate": "1769964461647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112904553258035", + "createdBy": null, + "createdTime": "2026-02-02 00:38:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:28", + "echoMap": {}, + "alarmNo": "1510202711", + "alarmDate": "1769963906422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290905", + "createdBy": null, + "createdTime": "2026-02-02 00:37:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:52", + "echoMap": {}, + "alarmNo": "1510202710", + "alarmDate": "1769963870888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060020", + "deviceName": "[207](10)陕西南下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290899", + "createdBy": null, + "createdTime": "2026-02-02 00:37:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:50", + "echoMap": {}, + "alarmNo": "1510202709", + "alarmDate": "1769963869422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290891", + "createdBy": null, + "createdTime": "2026-02-02 00:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:00", + "echoMap": {}, + "alarmNo": "1510202708", + "alarmDate": "1769963867685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290883", + "createdBy": null, + "createdTime": "2026-02-02 00:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:19", + "echoMap": {}, + "alarmNo": "1510202707", + "alarmDate": "1769963864500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290756", + "createdBy": null, + "createdTime": "2026-02-02 00:28:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:36", + "echoMap": {}, + "alarmNo": "1510202706", + "alarmDate": "1769963315568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112900258290702", + "createdBy": null, + "createdTime": "2026-02-02 00:28:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:29", + "echoMap": {}, + "alarmNo": "1510202705", + "alarmDate": "1769963296887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112895963323428", + "createdBy": null, + "createdTime": "2026-02-02 00:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:02", + "echoMap": {}, + "alarmNo": "1510202704", + "alarmDate": "1769963281376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060016", + "deviceName": "[206](10)陕西南上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112891668356305", + "createdBy": null, + "createdTime": "2026-02-02 00:27:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:58", + "echoMap": {}, + "alarmNo": "1510202703", + "alarmDate": "1769963264504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112887373388843", + "createdBy": null, + "createdTime": "2026-02-02 00:17:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:51", + "echoMap": {}, + "alarmNo": "1510202702", + "alarmDate": "1769962669734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060028", + "deviceName": "[208](10)陕西南下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421600", + "createdBy": null, + "createdTime": "2026-02-02 00:08:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:23", + "echoMap": {}, + "alarmNo": "1510202701", + "alarmDate": "1769962097005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421573", + "createdBy": null, + "createdTime": "2026-02-02 00:08:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:06", + "echoMap": {}, + "alarmNo": "1510202700", + "alarmDate": "1769962085695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060023", + "deviceName": "[205](10)陕西南上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421562", + "createdBy": null, + "createdTime": "2026-02-02 00:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:03", + "echoMap": {}, + "alarmNo": "1510202699", + "alarmDate": "1769962081803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060078", + "deviceName": "[201](10)陕西南厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112883078421534", + "createdBy": null, + "createdTime": "2026-02-02 00:07:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:58", + "echoMap": {}, + "alarmNo": "1510202698", + "alarmDate": "1769962072004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1012060047", + "deviceName": "[302](10)陕西南6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + }, + { + "id": "723112878783454212", + "createdBy": null, + "createdTime": "2026-02-02 00:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:47", + "echoMap": {}, + "alarmNo": "1510202697", + "alarmDate": "1769961768406", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1012060051", + "deviceName": "[329](10)陕西南10-12换乘入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1012" + } + ] + }, + "1013": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112930325442644", + "createdBy": null, + "createdTime": "2026-02-02 00:04:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:46", + "echoMap": {}, + "alarmNo": "1530109252", + "alarmDate": "1769961892942", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112930325442659", + "createdBy": null, + "createdTime": "2026-02-02 00:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:49", + "echoMap": {}, + "alarmNo": "1530109253", + "alarmDate": "1769961894264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112938915377384", + "createdBy": null, + "createdTime": "2026-02-02 00:05:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:43", + "echoMap": {}, + "alarmNo": "1530109254", + "alarmDate": "1769961949463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112947505312029", + "createdBy": null, + "createdTime": "2026-02-02 00:15:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:30", + "echoMap": {}, + "alarmNo": "1530109256", + "alarmDate": "1769962512387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112947505312178", + "createdBy": null, + "createdTime": "2026-02-02 00:15:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:26", + "echoMap": {}, + "alarmNo": "1530109257", + "alarmDate": "1769962525194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112956095246408", + "createdBy": null, + "createdTime": "2026-02-02 00:15:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:41", + "echoMap": {}, + "alarmNo": "1530109258", + "alarmDate": "1769962539641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112990454984706", + "createdBy": null, + "createdTime": "2026-02-02 00:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:41", + "echoMap": {}, + "alarmNo": "1530109261", + "alarmDate": "1769963742051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112990454984721", + "createdBy": null, + "createdTime": "2026-02-02 00:35:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:19", + "echoMap": {}, + "alarmNo": "1530109262", + "alarmDate": "1769963743213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112994749952043", + "createdBy": null, + "createdTime": "2026-02-02 00:45:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:08", + "echoMap": {}, + "alarmNo": "1530109264", + "alarmDate": "1769964307116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112999044919379", + "createdBy": null, + "createdTime": "2026-02-02 00:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:19", + "echoMap": {}, + "alarmNo": "1530109265", + "alarmDate": "1769964318493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113007634854051", + "createdBy": null, + "createdTime": "2026-02-02 00:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:05", + "echoMap": {}, + "alarmNo": "1530109266", + "alarmDate": "1769964893889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113016224788506", + "createdBy": null, + "createdTime": "2026-02-02 00:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:53", + "echoMap": {}, + "alarmNo": "1530109267", + "alarmDate": "1769964916833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113016224788528", + "createdBy": null, + "createdTime": "2026-02-02 00:55:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:43", + "echoMap": {}, + "alarmNo": "1530109268", + "alarmDate": "1769964918690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113020519755829", + "createdBy": null, + "createdTime": "2026-02-02 00:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:36", + "echoMap": {}, + "alarmNo": "1530109269", + "alarmDate": "1769964942891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113024814723285", + "createdBy": null, + "createdTime": "2026-02-02 01:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:54", + "echoMap": {}, + "alarmNo": "1530109270", + "alarmDate": "1769965493695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113024814723290", + "createdBy": null, + "createdTime": "2026-02-02 01:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:16", + "echoMap": {}, + "alarmNo": "1530109271", + "alarmDate": "1769965494110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113033404657854", + "createdBy": null, + "createdTime": "2026-02-02 01:05:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:31", + "echoMap": {}, + "alarmNo": "1530109272", + "alarmDate": "1769965525019", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113033404657889", + "createdBy": null, + "createdTime": "2026-02-02 01:05:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:40", + "echoMap": {}, + "alarmNo": "1530109273", + "alarmDate": "1769965528245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113037699625029", + "createdBy": null, + "createdTime": "2026-02-02 01:05:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:42", + "echoMap": {}, + "alarmNo": "1530109274", + "alarmDate": "1769965540808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113041994592316", + "createdBy": null, + "createdTime": "2026-02-02 01:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:51", + "echoMap": {}, + "alarmNo": "1530109275", + "alarmDate": "1769965550160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113041994592338", + "createdBy": null, + "createdTime": "2026-02-02 01:05:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:14", + "echoMap": {}, + "alarmNo": "1530109276", + "alarmDate": "1769965552176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113046289559596", + "createdBy": null, + "createdTime": "2026-02-02 01:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:59", + "echoMap": {}, + "alarmNo": "1530109279", + "alarmDate": "1769966098295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113046289559620", + "createdBy": null, + "createdTime": "2026-02-02 01:15:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:18", + "echoMap": {}, + "alarmNo": "1530109280", + "alarmDate": "1769966100284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113050584526984", + "createdBy": null, + "createdTime": "2026-02-02 01:15:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:17", + "echoMap": {}, + "alarmNo": "1530109281", + "alarmDate": "1769966110775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113059174461649", + "createdBy": null, + "createdTime": "2026-02-02 01:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:11", + "echoMap": {}, + "alarmNo": "1530109282", + "alarmDate": "1769966148349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113076354330644", + "createdBy": null, + "createdTime": "2026-02-02 01:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:59", + "echoMap": {}, + "alarmNo": "1530109284", + "alarmDate": "1769966735679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113084944265275", + "createdBy": null, + "createdTime": "2026-02-02 01:34:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:46", + "echoMap": {}, + "alarmNo": "1530109286", + "alarmDate": "1769967298891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113089239232579", + "createdBy": null, + "createdTime": "2026-02-02 01:35:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:25", + "echoMap": {}, + "alarmNo": "1530109287", + "alarmDate": "1769967323638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113093534199848", + "createdBy": null, + "createdTime": "2026-02-02 01:35:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:31", + "echoMap": {}, + "alarmNo": "1530109288", + "alarmDate": "1769967329857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304003928", + "createdBy": null, + "createdTime": "2026-02-02 02:05:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:05", + "echoMap": {}, + "alarmNo": "1530109292", + "alarmDate": "1769969103627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304004002", + "createdBy": null, + "createdTime": "2026-02-02 02:05:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:12", + "echoMap": {}, + "alarmNo": "1530109293", + "alarmDate": "1769969110643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304004153", + "createdBy": null, + "createdTime": "2026-02-02 02:05:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:38", + "echoMap": {}, + "alarmNo": "1530109294", + "alarmDate": "1769969126354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113123598970948", + "createdBy": null, + "createdTime": "2026-02-02 02:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:48", + "echoMap": {}, + "alarmNo": "1530109295", + "alarmDate": "1769969150229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113127893938767", + "createdBy": null, + "createdTime": "2026-02-02 02:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:09", + "echoMap": {}, + "alarmNo": "1530109297", + "alarmDate": "1769969746043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873005", + "createdBy": null, + "createdTime": "2026-02-02 02:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:33", + "echoMap": {}, + "alarmNo": "1530109299", + "alarmDate": "1769970309191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873255", + "createdBy": null, + "createdTime": "2026-02-02 02:25:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:56", + "echoMap": {}, + "alarmNo": "1530109300", + "alarmDate": "1769970333232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873288", + "createdBy": null, + "createdTime": "2026-02-02 02:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:37", + "echoMap": {}, + "alarmNo": "1530109301", + "alarmDate": "1769970336227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873362", + "createdBy": null, + "createdTime": "2026-02-02 02:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:44", + "echoMap": {}, + "alarmNo": "1530109302", + "alarmDate": "1769970343290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113145073807478", + "createdBy": null, + "createdTime": "2026-02-02 02:34:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:20", + "echoMap": {}, + "alarmNo": "1530109303", + "alarmDate": "1769970896408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113145073807727", + "createdBy": null, + "createdTime": "2026-02-02 02:35:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:45", + "echoMap": {}, + "alarmNo": "1530109304", + "alarmDate": "1769970920363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113145073807995", + "createdBy": null, + "createdTime": "2026-02-02 02:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:09", + "echoMap": {}, + "alarmNo": "1530109305", + "alarmDate": "1769970945581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113153663742078", + "createdBy": null, + "createdTime": "2026-02-02 02:44:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:11", + "echoMap": {}, + "alarmNo": "1530109306", + "alarmDate": "1769971495749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113153663742218", + "createdBy": null, + "createdTime": "2026-02-02 02:45:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:39", + "echoMap": {}, + "alarmNo": "1530109307", + "alarmDate": "1769971508616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113153663742536", + "createdBy": null, + "createdTime": "2026-02-02 02:45:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:27", + "echoMap": {}, + "alarmNo": "1530109308", + "alarmDate": "1769971538659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253676915", + "createdBy": null, + "createdTime": "2026-02-02 02:55:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:19", + "echoMap": {}, + "alarmNo": "1530109311", + "alarmDate": "1769972118147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253676972", + "createdBy": null, + "createdTime": "2026-02-02 02:55:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:24", + "echoMap": {}, + "alarmNo": "1530109312", + "alarmDate": "1769972123053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253677018", + "createdBy": null, + "createdTime": "2026-02-02 02:55:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:14", + "echoMap": {}, + "alarmNo": "1530109313", + "alarmDate": "1769972126918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113170843611272", + "createdBy": null, + "createdTime": "2026-02-02 03:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:58", + "echoMap": {}, + "alarmNo": "1530109314", + "alarmDate": "1769972694183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113170843611480", + "createdBy": null, + "createdTime": "2026-02-02 03:05:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:39", + "echoMap": {}, + "alarmNo": "1530109315", + "alarmDate": "1769972714163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113170843611742", + "createdBy": null, + "createdTime": "2026-02-02 03:05:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:26", + "echoMap": {}, + "alarmNo": "1530109316", + "alarmDate": "1769972739212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113179433545972", + "createdBy": null, + "createdTime": "2026-02-02 03:15:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:51", + "echoMap": {}, + "alarmNo": "1530109318", + "alarmDate": "1769973310625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113179433546162", + "createdBy": null, + "createdTime": "2026-02-02 03:15:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:51", + "echoMap": {}, + "alarmNo": "1530109319", + "alarmDate": "1769973326442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113183728513034", + "createdBy": null, + "createdTime": "2026-02-02 03:15:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:30", + "echoMap": {}, + "alarmNo": "1530109320", + "alarmDate": "1769973348524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113183728513051", + "createdBy": null, + "createdTime": "2026-02-02 03:15:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:51", + "echoMap": {}, + "alarmNo": "1530109321", + "alarmDate": "1769973349822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113183728513062", + "createdBy": null, + "createdTime": "2026-02-02 03:15:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:14", + "echoMap": {}, + "alarmNo": "1530109322", + "alarmDate": "1769973350559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480504", + "createdBy": null, + "createdTime": "2026-02-02 03:24:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:00", + "echoMap": {}, + "alarmNo": "1530109325", + "alarmDate": "1769973899069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480558", + "createdBy": null, + "createdTime": "2026-02-02 03:25:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:06", + "echoMap": {}, + "alarmNo": "1530109326", + "alarmDate": "1769973904742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480657", + "createdBy": null, + "createdTime": "2026-02-02 03:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:38", + "echoMap": {}, + "alarmNo": "1530109327", + "alarmDate": "1769973914659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480801", + "createdBy": null, + "createdTime": "2026-02-02 03:25:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:32", + "echoMap": {}, + "alarmNo": "1530109328", + "alarmDate": "1769973930492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060106", + "deviceName": "[205](10)新天地上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480887", + "createdBy": null, + "createdTime": "2026-02-02 03:25:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:43", + "echoMap": {}, + "alarmNo": "1530109329", + "alarmDate": "1769973938667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349531", + "createdBy": null, + "createdTime": "2026-02-02 03:44:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:16", + "echoMap": {}, + "alarmNo": "1530109331", + "alarmDate": "1769975094349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349819", + "createdBy": null, + "createdTime": "2026-02-02 03:45:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:39", + "echoMap": {}, + "alarmNo": "1530109332", + "alarmDate": "1769975127502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349851", + "createdBy": null, + "createdTime": "2026-02-02 03:45:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:32", + "echoMap": {}, + "alarmNo": "1530109333", + "alarmDate": "1769975130603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349921", + "createdBy": null, + "createdTime": "2026-02-02 03:45:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:38", + "echoMap": {}, + "alarmNo": "1530109334", + "alarmDate": "1769975137389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349990", + "createdBy": null, + "createdTime": "2026-02-02 03:45:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:42", + "echoMap": {}, + "alarmNo": "1530109335", + "alarmDate": "1769975144234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203350051", + "createdBy": null, + "createdTime": "2026-02-02 03:45:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:27", + "echoMap": {}, + "alarmNo": "1530109337", + "alarmDate": "1769975151488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113213793284284", + "createdBy": null, + "createdTime": "2026-02-02 03:55:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:36", + "echoMap": {}, + "alarmNo": "1530109338", + "alarmDate": "1769975723206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113213793284439", + "createdBy": null, + "createdTime": "2026-02-02 03:55:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:38", + "echoMap": {}, + "alarmNo": "1530109339", + "alarmDate": "1769975738838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113213793284516", + "createdBy": null, + "createdTime": "2026-02-02 03:55:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:15", + "echoMap": {}, + "alarmNo": "1530109340", + "alarmDate": "1769975748098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219014", + "createdBy": null, + "createdTime": "2026-02-02 04:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:06", + "echoMap": {}, + "alarmNo": "1530109341", + "alarmDate": "1769976342786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219074", + "createdBy": null, + "createdTime": "2026-02-02 04:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:50", + "echoMap": {}, + "alarmNo": "1530109342", + "alarmDate": "1769976350104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219245", + "createdBy": null, + "createdTime": "2026-02-02 04:14:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:40", + "echoMap": {}, + "alarmNo": "1530109343", + "alarmDate": "1769976892859", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219256", + "createdBy": null, + "createdTime": "2026-02-02 04:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:40", + "echoMap": {}, + "alarmNo": "1530109344", + "alarmDate": "1769976893879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113226678186019", + "createdBy": null, + "createdTime": "2026-02-02 04:15:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:17", + "echoMap": {}, + "alarmNo": "1530109345", + "alarmDate": "1769976907101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153297", + "createdBy": null, + "createdTime": "2026-02-02 04:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:16", + "echoMap": {}, + "alarmNo": "1530109346", + "alarmDate": "1769976914605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153310", + "createdBy": null, + "createdTime": "2026-02-02 04:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:27", + "echoMap": {}, + "alarmNo": "1530109347", + "alarmDate": "1769976915383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153324", + "createdBy": null, + "createdTime": "2026-02-02 04:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:17", + "echoMap": {}, + "alarmNo": "1530109348", + "alarmDate": "1769976916218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153705", + "createdBy": null, + "createdTime": "2026-02-02 04:15:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:02", + "echoMap": {}, + "alarmNo": "1530109349", + "alarmDate": "1769976952079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113239563087924", + "createdBy": null, + "createdTime": "2026-02-02 04:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:05", + "echoMap": {}, + "alarmNo": "1530109352", + "alarmDate": "1769977517435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113243858055170", + "createdBy": null, + "createdTime": "2026-02-02 04:35:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:04", + "echoMap": {}, + "alarmNo": "1530109356", + "alarmDate": "1769978104691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153022820", + "createdBy": null, + "createdTime": "2026-02-02 04:35:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:48", + "echoMap": {}, + "alarmNo": "1530109358", + "alarmDate": "1769978147233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153022829", + "createdBy": null, + "createdTime": "2026-02-02 04:35:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:49", + "echoMap": {}, + "alarmNo": "1530109359", + "alarmDate": "1769978147725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153023050", + "createdBy": null, + "createdTime": "2026-02-02 04:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:56", + "echoMap": {}, + "alarmNo": "1530109361", + "alarmDate": "1769978694862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153023057", + "createdBy": null, + "createdTime": "2026-02-02 04:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:56", + "echoMap": {}, + "alarmNo": "1530109362", + "alarmDate": "1769978695425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113256742957720", + "createdBy": null, + "createdTime": "2026-02-02 04:55:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:04", + "echoMap": {}, + "alarmNo": "1530109364", + "alarmDate": "1769979304238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113265332891971", + "createdBy": null, + "createdTime": "2026-02-02 04:55:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:45", + "echoMap": {}, + "alarmNo": "1530109365", + "alarmDate": "1769979345172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113265332892292", + "createdBy": null, + "createdTime": "2026-02-02 05:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:30", + "echoMap": {}, + "alarmNo": "1530109367", + "alarmDate": "1769979928612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113265332892297", + "createdBy": null, + "createdTime": "2026-02-02 05:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:30", + "echoMap": {}, + "alarmNo": "1530109368", + "alarmDate": "1769979929199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113282512760881", + "createdBy": null, + "createdTime": "2026-02-02 05:35:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:09", + "echoMap": {}, + "alarmNo": "1530109371", + "alarmDate": "1769981708260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113282512760898", + "createdBy": null, + "createdTime": "2026-02-02 05:35:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:12", + "echoMap": {}, + "alarmNo": "1530109372", + "alarmDate": "1769981711082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113282512761395", + "createdBy": null, + "createdTime": "2026-02-02 05:45:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:45", + "echoMap": {}, + "alarmNo": "1530109374", + "alarmDate": "1769982346693", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060055", + "deviceName": "[617](10)新天地环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695572", + "createdBy": null, + "createdTime": "2026-02-02 05:55:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:43", + "echoMap": {}, + "alarmNo": "1530109375", + "alarmDate": "1769982941914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695581", + "createdBy": null, + "createdTime": "2026-02-02 05:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:43", + "echoMap": {}, + "alarmNo": "1530109376", + "alarmDate": "1769982943306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060098", + "deviceName": "[359](10)新天地10-13换乘通道4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695601", + "createdBy": null, + "createdTime": "2026-02-02 05:55:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:49", + "echoMap": {}, + "alarmNo": "1530109377", + "alarmDate": "1769982947683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695789", + "createdBy": null, + "createdTime": "2026-02-02 06:04:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:59", + "echoMap": {}, + "alarmNo": "1530109379", + "alarmDate": "1769983497871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113299692630475", + "createdBy": null, + "createdTime": "2026-02-02 06:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:16", + "echoMap": {}, + "alarmNo": "1530109383", + "alarmDate": "1769984714807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060018", + "deviceName": "[209](10)新天地1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113299692630524", + "createdBy": null, + "createdTime": "2026-02-02 06:25:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:27", + "echoMap": {}, + "alarmNo": "1530109384", + "alarmDate": "1769984725797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113299692630590", + "createdBy": null, + "createdTime": "2026-02-02 06:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:43", + "echoMap": {}, + "alarmNo": "1530109385", + "alarmDate": "1769984741669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113308282564687", + "createdBy": null, + "createdTime": "2026-02-02 06:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:21", + "echoMap": {}, + "alarmNo": "1530109387", + "alarmDate": "1769985293596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113308282565158", + "createdBy": null, + "createdTime": "2026-02-02 06:45:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:40", + "echoMap": {}, + "alarmNo": "1530109388", + "alarmDate": "1769985905501", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499456", + "createdBy": null, + "createdTime": "2026-02-02 06:55:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:12", + "echoMap": {}, + "alarmNo": "1530109390", + "alarmDate": "1769986511285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499549", + "createdBy": null, + "createdTime": "2026-02-02 06:55:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:40", + "echoMap": {}, + "alarmNo": "1530109391", + "alarmDate": "1769986539430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499783", + "createdBy": null, + "createdTime": "2026-02-02 07:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:57", + "echoMap": {}, + "alarmNo": "1530109394", + "alarmDate": "1769987095653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113321167466562", + "createdBy": null, + "createdTime": "2026-02-02 07:05:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:14", + "echoMap": {}, + "alarmNo": "1530109395", + "alarmDate": "1769987114491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462433924", + "createdBy": null, + "createdTime": "2026-02-02 07:05:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:51", + "echoMap": {}, + "alarmNo": "1530109396", + "alarmDate": "1769987145275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434032", + "createdBy": null, + "createdTime": "2026-02-02 07:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:45", + "echoMap": {}, + "alarmNo": "1530109397", + "alarmDate": "1769987446267", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060055", + "deviceName": "[617](10)新天地环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434118", + "createdBy": null, + "createdTime": "2026-02-02 07:14:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:03", + "echoMap": {}, + "alarmNo": "1530109399", + "alarmDate": "1769987696426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434132", + "createdBy": null, + "createdTime": "2026-02-02 07:14:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:05", + "echoMap": {}, + "alarmNo": "1530109400", + "alarmDate": "1769987698806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434145", + "createdBy": null, + "createdTime": "2026-02-02 07:15:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:07", + "echoMap": {}, + "alarmNo": "1530109401", + "alarmDate": "1769987700552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434255", + "createdBy": null, + "createdTime": "2026-02-02 07:15:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:45", + "echoMap": {}, + "alarmNo": "1530109402", + "alarmDate": "1769987726751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434261", + "createdBy": null, + "createdTime": "2026-02-02 07:15:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:39", + "echoMap": {}, + "alarmNo": "1530109403", + "alarmDate": "1769987727569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434365", + "createdBy": null, + "createdTime": "2026-02-02 07:15:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:05", + "echoMap": {}, + "alarmNo": "1530109404", + "alarmDate": "1769987753958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113329757401114", + "createdBy": null, + "createdTime": "2026-02-02 07:24:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:28", + "echoMap": {}, + "alarmNo": "1530109407", + "alarmDate": "1769988292909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368397", + "createdBy": null, + "createdTime": "2026-02-02 07:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:21", + "echoMap": {}, + "alarmNo": "1530109408", + "alarmDate": "1769988308718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368477", + "createdBy": null, + "createdTime": "2026-02-02 07:25:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:45", + "echoMap": {}, + "alarmNo": "1530109409", + "alarmDate": "1769988327692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368515", + "createdBy": null, + "createdTime": "2026-02-02 07:25:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:51", + "echoMap": {}, + "alarmNo": "1530109410", + "alarmDate": "1769988338835", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368526", + "createdBy": null, + "createdTime": "2026-02-02 07:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:09", + "echoMap": {}, + "alarmNo": "1530109411", + "alarmDate": "1769988341023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368528", + "createdBy": null, + "createdTime": "2026-02-02 07:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:42", + "echoMap": {}, + "alarmNo": "1530109412", + "alarmDate": "1769988341119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368536", + "createdBy": null, + "createdTime": "2026-02-02 07:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:24", + "echoMap": {}, + "alarmNo": "1530109413", + "alarmDate": "1769988341906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368541", + "createdBy": null, + "createdTime": "2026-02-02 07:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:49", + "echoMap": {}, + "alarmNo": "1530109414", + "alarmDate": "1769988342114", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368553", + "createdBy": null, + "createdTime": "2026-02-02 07:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:44", + "echoMap": {}, + "alarmNo": "1530109415", + "alarmDate": "1769988343348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368774", + "createdBy": null, + "createdTime": "2026-02-02 07:34:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:03", + "echoMap": {}, + "alarmNo": "1530109416", + "alarmDate": "1769988896966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368785", + "createdBy": null, + "createdTime": "2026-02-02 07:35:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:01", + "echoMap": {}, + "alarmNo": "1530109417", + "alarmDate": "1769988899587", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368860", + "createdBy": null, + "createdTime": "2026-02-02 07:35:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:51", + "echoMap": {}, + "alarmNo": "1530109418", + "alarmDate": "1769988927110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113338347335722", + "createdBy": null, + "createdTime": "2026-02-02 07:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:42", + "echoMap": {}, + "alarmNo": "1530109420", + "alarmDate": "1769989494607", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303059", + "createdBy": null, + "createdTime": "2026-02-02 07:45:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:36", + "echoMap": {}, + "alarmNo": "1530109421", + "alarmDate": "1769989530388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303132", + "createdBy": null, + "createdTime": "2026-02-02 07:45:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:51", + "echoMap": {}, + "alarmNo": "1530109422", + "alarmDate": "1769989549762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303295", + "createdBy": null, + "createdTime": "2026-02-02 07:55:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:06", + "echoMap": {}, + "alarmNo": "1530109423", + "alarmDate": "1769990104895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303345", + "createdBy": null, + "createdTime": "2026-02-02 07:55:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:41", + "echoMap": {}, + "alarmNo": "1530109424", + "alarmDate": "1769990122003", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303372", + "createdBy": null, + "createdTime": "2026-02-02 07:55:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:37", + "echoMap": {}, + "alarmNo": "1530109425", + "alarmDate": "1769990129727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303406", + "createdBy": null, + "createdTime": "2026-02-02 07:55:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:44", + "echoMap": {}, + "alarmNo": "1530109426", + "alarmDate": "1769990137542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303447", + "createdBy": null, + "createdTime": "2026-02-02 07:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:51", + "echoMap": {}, + "alarmNo": "1530109427", + "alarmDate": "1769990150327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303618", + "createdBy": null, + "createdTime": "2026-02-02 08:05:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:06", + "echoMap": {}, + "alarmNo": "1530109429", + "alarmDate": "1769990704522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303634", + "createdBy": null, + "createdTime": "2026-02-02 08:05:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:18", + "echoMap": {}, + "alarmNo": "1530109430", + "alarmDate": "1769990705358", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237742", + "createdBy": null, + "createdTime": "2026-02-02 08:14:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:02", + "echoMap": {}, + "alarmNo": "1530109432", + "alarmDate": "1769991294705", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237821", + "createdBy": null, + "createdTime": "2026-02-02 08:15:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:35", + "echoMap": {}, + "alarmNo": "1530109433", + "alarmDate": "1769991328991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237824", + "createdBy": null, + "createdTime": "2026-02-02 08:15:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:35", + "echoMap": {}, + "alarmNo": "1530109434", + "alarmDate": "1769991329168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237845", + "createdBy": null, + "createdTime": "2026-02-02 08:15:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:42", + "echoMap": {}, + "alarmNo": "1530109435", + "alarmDate": "1769991333735", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237909", + "createdBy": null, + "createdTime": "2026-02-02 08:15:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:54", + "echoMap": {}, + "alarmNo": "1530109437", + "alarmDate": "1769991352586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238053", + "createdBy": null, + "createdTime": "2026-02-02 08:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:45", + "echoMap": {}, + "alarmNo": "1530109440", + "alarmDate": "1769991886368", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238077", + "createdBy": null, + "createdTime": "2026-02-02 08:24:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:05", + "echoMap": {}, + "alarmNo": "1530109441", + "alarmDate": "1769991899173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238103", + "createdBy": null, + "createdTime": "2026-02-02 08:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:09", + "echoMap": {}, + "alarmNo": "1530109442", + "alarmDate": "1769991907678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238128", + "createdBy": null, + "createdTime": "2026-02-02 08:25:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:24", + "echoMap": {}, + "alarmNo": "1530109443", + "alarmDate": "1769991918022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172167", + "createdBy": null, + "createdTime": "2026-02-02 08:34:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:17", + "echoMap": {}, + "alarmNo": "1530109446", + "alarmDate": "1769992493486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172196", + "createdBy": null, + "createdTime": "2026-02-02 08:35:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:26", + "echoMap": {}, + "alarmNo": "1530109447", + "alarmDate": "1769992501766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172214", + "createdBy": null, + "createdTime": "2026-02-02 08:35:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:30", + "echoMap": {}, + "alarmNo": "1530109448", + "alarmDate": "1769992505308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172278", + "createdBy": null, + "createdTime": "2026-02-02 08:35:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:15", + "echoMap": {}, + "alarmNo": "1530109449", + "alarmDate": "1769992514435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172354", + "createdBy": null, + "createdTime": "2026-02-02 08:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:35", + "echoMap": {}, + "alarmNo": "1530109450", + "alarmDate": "1769992529372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172408", + "createdBy": null, + "createdTime": "2026-02-02 08:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:18", + "echoMap": {}, + "alarmNo": "1530109451", + "alarmDate": "1769992542396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172449", + "createdBy": null, + "createdTime": "2026-02-02 08:35:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:56", + "echoMap": {}, + "alarmNo": "1530109452", + "alarmDate": "1769992549888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172696", + "createdBy": null, + "createdTime": "2026-02-02 08:45:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:25", + "echoMap": {}, + "alarmNo": "1530109453", + "alarmDate": "1769993120130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172749", + "createdBy": null, + "createdTime": "2026-02-02 08:45:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:42", + "echoMap": {}, + "alarmNo": "1530109454", + "alarmDate": "1769993135531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172792", + "createdBy": null, + "createdTime": "2026-02-02 08:45:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:56", + "echoMap": {}, + "alarmNo": "1530109455", + "alarmDate": "1769993144150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113368412106834", + "createdBy": null, + "createdTime": "2026-02-02 08:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:53", + "echoMap": {}, + "alarmNo": "1530109457", + "alarmDate": "1769993692812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113368412106916", + "createdBy": null, + "createdTime": "2026-02-02 08:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:13", + "echoMap": {}, + "alarmNo": "1530109458", + "alarmDate": "1769993711548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113368412106932", + "createdBy": null, + "createdTime": "2026-02-02 08:55:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:26", + "echoMap": {}, + "alarmNo": "1530109459", + "alarmDate": "1769993714474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113377002041498", + "createdBy": null, + "createdTime": "2026-02-02 09:04:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:09", + "echoMap": {}, + "alarmNo": "1530109461", + "alarmDate": "1769994296569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113377002041592", + "createdBy": null, + "createdTime": "2026-02-02 09:05:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:23", + "echoMap": {}, + "alarmNo": "1530109462", + "alarmDate": "1769994322376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113385591975945", + "createdBy": null, + "createdTime": "2026-02-02 09:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:50", + "echoMap": {}, + "alarmNo": "1530109463", + "alarmDate": "1769994342814", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113385591976118", + "createdBy": null, + "createdTime": "2026-02-02 09:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:15", + "echoMap": {}, + "alarmNo": "1530109467", + "alarmDate": "1769994894167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113394181910545", + "createdBy": null, + "createdTime": "2026-02-02 09:15:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:23", + "echoMap": {}, + "alarmNo": "1530109468", + "alarmDate": "1769994941315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113394181910801", + "createdBy": null, + "createdTime": "2026-02-02 09:25:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:17", + "echoMap": {}, + "alarmNo": "1530109471", + "alarmDate": "1769995516327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113402771845277", + "createdBy": null, + "createdTime": "2026-02-02 09:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:09", + "echoMap": {}, + "alarmNo": "1530109473", + "alarmDate": "1769996094878", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113402771845339", + "createdBy": null, + "createdTime": "2026-02-02 09:35:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:18", + "echoMap": {}, + "alarmNo": "1530109474", + "alarmDate": "1769996116849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113407066812421", + "createdBy": null, + "createdTime": "2026-02-02 09:35:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:33", + "echoMap": {}, + "alarmNo": "1530109475", + "alarmDate": "1769996132270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113407066812445", + "createdBy": null, + "createdTime": "2026-02-02 09:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:17", + "echoMap": {}, + "alarmNo": "1530109476", + "alarmDate": "1769996141591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113411361779857", + "createdBy": null, + "createdTime": "2026-02-02 09:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:02", + "echoMap": {}, + "alarmNo": "1530109478", + "alarmDate": "1769996693329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113411361779861", + "createdBy": null, + "createdTime": "2026-02-02 09:44:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:31", + "echoMap": {}, + "alarmNo": "1530109479", + "alarmDate": "1769996693959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113419951714531", + "createdBy": null, + "createdTime": "2026-02-02 09:55:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:22", + "echoMap": {}, + "alarmNo": "1530109482", + "alarmDate": "1769997321150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541648995", + "createdBy": null, + "createdTime": "2026-02-02 10:04:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:45", + "echoMap": {}, + "alarmNo": "1530109484", + "alarmDate": "1769997886318", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541649123", + "createdBy": null, + "createdTime": "2026-02-02 10:05:31", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:37", + "echoMap": {}, + "alarmNo": "1530109485", + "alarmDate": "1769997931157", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541649161", + "createdBy": null, + "createdTime": "2026-02-02 10:05:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:42", + "echoMap": {}, + "alarmNo": "1530109486", + "alarmDate": "1769997941280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541649171", + "createdBy": null, + "createdTime": "2026-02-02 10:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:15", + "echoMap": {}, + "alarmNo": "1530109487", + "alarmDate": "1769997942646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113437131583612", + "createdBy": null, + "createdTime": "2026-02-02 10:14:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:57", + "echoMap": {}, + "alarmNo": "1530109491", + "alarmDate": "1769998496511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113445721518233", + "createdBy": null, + "createdTime": "2026-02-02 10:25:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:24", + "echoMap": {}, + "alarmNo": "1530109493", + "alarmDate": "1769999111537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113445721518294", + "createdBy": null, + "createdTime": "2026-02-02 10:25:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:24", + "echoMap": {}, + "alarmNo": "1530109494", + "alarmDate": "1769999126172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113445721518306", + "createdBy": null, + "createdTime": "2026-02-02 10:25:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:29", + "echoMap": {}, + "alarmNo": "1530109495", + "alarmDate": "1769999127930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452733", + "createdBy": null, + "createdTime": "2026-02-02 10:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:06", + "echoMap": {}, + "alarmNo": "1530109498", + "alarmDate": "1769999693769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452738", + "createdBy": null, + "createdTime": "2026-02-02 10:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:31", + "echoMap": {}, + "alarmNo": "1530109499", + "alarmDate": "1769999694364", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452842", + "createdBy": null, + "createdTime": "2026-02-02 10:35:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:18", + "echoMap": {}, + "alarmNo": "1530109500", + "alarmDate": "1769999716678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452950", + "createdBy": null, + "createdTime": "2026-02-02 10:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:47", + "echoMap": {}, + "alarmNo": "1530109501", + "alarmDate": "1769999746182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387315", + "createdBy": null, + "createdTime": "2026-02-02 10:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:03", + "echoMap": {}, + "alarmNo": "1530109503", + "alarmDate": "1770000294641", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387367", + "createdBy": null, + "createdTime": "2026-02-02 10:45:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:03", + "echoMap": {}, + "alarmNo": "1530109504", + "alarmDate": "1770000302404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387448", + "createdBy": null, + "createdTime": "2026-02-02 10:45:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:27", + "echoMap": {}, + "alarmNo": "1530109505", + "alarmDate": "1770000321449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060115", + "deviceName": "[105](10)新天地上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387498", + "createdBy": null, + "createdTime": "2026-02-02 10:45:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:41", + "echoMap": {}, + "alarmNo": "1530109506", + "alarmDate": "1770000334272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113467196354576", + "createdBy": null, + "createdTime": "2026-02-02 10:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:04", + "echoMap": {}, + "alarmNo": "1530109508", + "alarmDate": "1770000347747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113471491321968", + "createdBy": null, + "createdTime": "2026-02-02 10:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:05", + "echoMap": {}, + "alarmNo": "1530109510", + "alarmDate": "1770000894186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113471491322098", + "createdBy": null, + "createdTime": "2026-02-02 10:55:31", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:32", + "echoMap": {}, + "alarmNo": "1530109511", + "alarmDate": "1770000930782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256459", + "createdBy": null, + "createdTime": "2026-02-02 11:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:45", + "echoMap": {}, + "alarmNo": "1530109513", + "alarmDate": "1770001426286", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060069", + "deviceName": "[332](10)新天地#3厅扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256566", + "createdBy": null, + "createdTime": "2026-02-02 11:05:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:16", + "echoMap": {}, + "alarmNo": "1530109514", + "alarmDate": "1770001514591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256630", + "createdBy": null, + "createdTime": "2026-02-02 11:05:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:43", + "echoMap": {}, + "alarmNo": "1530109515", + "alarmDate": "1770001529878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256661", + "createdBy": null, + "createdTime": "2026-02-02 11:05:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:47", + "echoMap": {}, + "alarmNo": "1530109516", + "alarmDate": "1770001535378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191137", + "createdBy": null, + "createdTime": "2026-02-02 11:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:10", + "echoMap": {}, + "alarmNo": "1530109519", + "alarmDate": "1770002109286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191146", + "createdBy": null, + "createdTime": "2026-02-02 11:15:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:18", + "echoMap": {}, + "alarmNo": "1530109520", + "alarmDate": "1770002111550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191161", + "createdBy": null, + "createdTime": "2026-02-02 11:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:35", + "echoMap": {}, + "alarmNo": "1530109521", + "alarmDate": "1770002115621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191238", + "createdBy": null, + "createdTime": "2026-02-02 11:15:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:48", + "echoMap": {}, + "alarmNo": "1530109522", + "alarmDate": "1770002141571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191259", + "createdBy": null, + "createdTime": "2026-02-02 11:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:05", + "echoMap": {}, + "alarmNo": "1530109523", + "alarmDate": "1770002147663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113497261125677", + "createdBy": null, + "createdTime": "2026-02-02 11:25:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:34", + "echoMap": {}, + "alarmNo": "1530109526", + "alarmDate": "1770002732637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113497261125688", + "createdBy": null, + "createdTime": "2026-02-02 11:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:49", + "echoMap": {}, + "alarmNo": "1530109527", + "alarmDate": "1770002735909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113501556092931", + "createdBy": null, + "createdTime": "2026-02-02 11:34:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:45", + "echoMap": {}, + "alarmNo": "1530109531", + "alarmDate": "1770003286283", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113501556092942", + "createdBy": null, + "createdTime": "2026-02-02 11:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:03", + "echoMap": {}, + "alarmNo": "1530109532", + "alarmDate": "1770003294092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113505851060248", + "createdBy": null, + "createdTime": "2026-02-02 11:35:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:36", + "echoMap": {}, + "alarmNo": "1530109533", + "alarmDate": "1770003323890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113505851060467", + "createdBy": null, + "createdTime": "2026-02-02 11:44:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:17", + "echoMap": {}, + "alarmNo": "1530109536", + "alarmDate": "1770003894411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113505851060470", + "createdBy": null, + "createdTime": "2026-02-02 11:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:21", + "echoMap": {}, + "alarmNo": "1530109537", + "alarmDate": "1770003894913", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113514440994824", + "createdBy": null, + "createdTime": "2026-02-02 11:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:19", + "echoMap": {}, + "alarmNo": "1530109538", + "alarmDate": "1770003918314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113514440994898", + "createdBy": null, + "createdTime": "2026-02-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:42", + "echoMap": {}, + "alarmNo": "1530109539", + "alarmDate": "1770003940990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113518735962144", + "createdBy": null, + "createdTime": "2026-02-02 11:54:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:54:56", + "echoMap": {}, + "alarmNo": "1530109542", + "alarmDate": "1770004495179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113523030929461", + "createdBy": null, + "createdTime": "2026-02-02 11:55:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:38", + "echoMap": {}, + "alarmNo": "1530109543", + "alarmDate": "1770004528790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113523030929484", + "createdBy": null, + "createdTime": "2026-02-02 11:55:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:36", + "echoMap": {}, + "alarmNo": "1530109544", + "alarmDate": "1770004535421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113531620864053", + "createdBy": null, + "createdTime": "2026-02-02 12:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:41", + "echoMap": {}, + "alarmNo": "1530109545", + "alarmDate": "1770005115879", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113531620864172", + "createdBy": null, + "createdTime": "2026-02-02 12:05:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:49", + "echoMap": {}, + "alarmNo": "1530109546", + "alarmDate": "1770005141881", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113531620864200", + "createdBy": null, + "createdTime": "2026-02-02 12:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:58", + "echoMap": {}, + "alarmNo": "1530109548", + "alarmDate": "1770005150079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798614", + "createdBy": null, + "createdTime": "2026-02-02 12:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:05", + "echoMap": {}, + "alarmNo": "1530109550", + "alarmDate": "1770005693506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798640", + "createdBy": null, + "createdTime": "2026-02-02 12:15:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:06", + "echoMap": {}, + "alarmNo": "1530109551", + "alarmDate": "1770005699529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798677", + "createdBy": null, + "createdTime": "2026-02-02 12:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:35", + "echoMap": {}, + "alarmNo": "1530109552", + "alarmDate": "1770005709363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798729", + "createdBy": null, + "createdTime": "2026-02-02 12:15:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:36", + "echoMap": {}, + "alarmNo": "1530109553", + "alarmDate": "1770005722511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798736", + "createdBy": null, + "createdTime": "2026-02-02 12:15:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:36", + "echoMap": {}, + "alarmNo": "1530109554", + "alarmDate": "1770005723669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798741", + "createdBy": null, + "createdTime": "2026-02-02 12:15:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:25", + "echoMap": {}, + "alarmNo": "1530109555", + "alarmDate": "1770005724156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798748", + "createdBy": null, + "createdTime": "2026-02-02 12:15:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:31", + "echoMap": {}, + "alarmNo": "1530109556", + "alarmDate": "1770005724889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113544505765927", + "createdBy": null, + "createdTime": "2026-02-02 12:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:54", + "echoMap": {}, + "alarmNo": "1530109557", + "alarmDate": "1770005748405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113548800733356", + "createdBy": null, + "createdTime": "2026-02-02 12:25:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:45", + "echoMap": {}, + "alarmNo": "1530109559", + "alarmDate": "1770006304551", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113548800733507", + "createdBy": null, + "createdTime": "2026-02-02 12:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:42", + "echoMap": {}, + "alarmNo": "1530109560", + "alarmDate": "1770006341214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113548800733512", + "createdBy": null, + "createdTime": "2026-02-02 12:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:48", + "echoMap": {}, + "alarmNo": "1530109561", + "alarmDate": "1770006341838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667868", + "createdBy": null, + "createdTime": "2026-02-02 12:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:45", + "echoMap": {}, + "alarmNo": "1530109564", + "alarmDate": "1770006826267", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060069", + "deviceName": "[332](10)新天地#3厅扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667900", + "createdBy": null, + "createdTime": "2026-02-02 12:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:00", + "echoMap": {}, + "alarmNo": "1530109565", + "alarmDate": "1770006894046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667915", + "createdBy": null, + "createdTime": "2026-02-02 12:34:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:58", + "echoMap": {}, + "alarmNo": "1530109566", + "alarmDate": "1770006897316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390668002", + "createdBy": null, + "createdTime": "2026-02-02 12:35:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:24", + "echoMap": {}, + "alarmNo": "1530109567", + "alarmDate": "1770006923426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390668080", + "createdBy": null, + "createdTime": "2026-02-02 12:35:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:43", + "echoMap": {}, + "alarmNo": "1530109568", + "alarmDate": "1770006948442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602456", + "createdBy": null, + "createdTime": "2026-02-02 12:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:01", + "echoMap": {}, + "alarmNo": "1530109569", + "alarmDate": "1770007493344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602497", + "createdBy": null, + "createdTime": "2026-02-02 12:45:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:20", + "echoMap": {}, + "alarmNo": "1530109570", + "alarmDate": "1770007507138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602548", + "createdBy": null, + "createdTime": "2026-02-02 12:45:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:33", + "echoMap": {}, + "alarmNo": "1530109571", + "alarmDate": "1770007520270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602587", + "createdBy": null, + "createdTime": "2026-02-02 12:45:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:27", + "echoMap": {}, + "alarmNo": "1530109572", + "alarmDate": "1770007532270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602593", + "createdBy": null, + "createdTime": "2026-02-02 12:45:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:34", + "echoMap": {}, + "alarmNo": "1530109573", + "alarmDate": "1770007533145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602626", + "createdBy": null, + "createdTime": "2026-02-02 12:45:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:48", + "echoMap": {}, + "alarmNo": "1530109574", + "alarmDate": "1770007536227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113574570537158", + "createdBy": null, + "createdTime": "2026-02-02 12:55:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:36", + "echoMap": {}, + "alarmNo": "1530109575", + "alarmDate": "1770008130457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113574570537247", + "createdBy": null, + "createdTime": "2026-02-02 12:55:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:49", + "echoMap": {}, + "alarmNo": "1530109576", + "alarmDate": "1770008148025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471632", + "createdBy": null, + "createdTime": "2026-02-02 13:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:03", + "echoMap": {}, + "alarmNo": "1530109578", + "alarmDate": "1770008702184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471714", + "createdBy": null, + "createdTime": "2026-02-02 13:05:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:27", + "echoMap": {}, + "alarmNo": "1530109579", + "alarmDate": "1770008720885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471744", + "createdBy": null, + "createdTime": "2026-02-02 13:05:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:28", + "echoMap": {}, + "alarmNo": "1530109580", + "alarmDate": "1770008727479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471765", + "createdBy": null, + "createdTime": "2026-02-02 13:05:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:47", + "echoMap": {}, + "alarmNo": "1530109581", + "alarmDate": "1770008733262", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113587455438883", + "createdBy": null, + "createdTime": "2026-02-02 13:05:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:11", + "echoMap": {}, + "alarmNo": "1530109582", + "alarmDate": "1770008750866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113591750406265", + "createdBy": null, + "createdTime": "2026-02-02 13:14:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:57", + "echoMap": {}, + "alarmNo": "1530109584", + "alarmDate": "1770009294631", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113591750406399", + "createdBy": null, + "createdTime": "2026-02-02 13:15:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:41", + "echoMap": {}, + "alarmNo": "1530109585", + "alarmDate": "1770009335068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113596045373443", + "createdBy": null, + "createdTime": "2026-02-02 13:15:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:43", + "echoMap": {}, + "alarmNo": "1530109586", + "alarmDate": "1770009342084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113600340340846", + "createdBy": null, + "createdTime": "2026-02-02 13:24:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:54", + "echoMap": {}, + "alarmNo": "1530109588", + "alarmDate": "1770009893282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113600340340866", + "createdBy": null, + "createdTime": "2026-02-02 13:24:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:59", + "echoMap": {}, + "alarmNo": "1530109589", + "alarmDate": "1770009898295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275339", + "createdBy": null, + "createdTime": "2026-02-02 13:25:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:52", + "echoMap": {}, + "alarmNo": "1530109590", + "alarmDate": "1770009950807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275484", + "createdBy": null, + "createdTime": "2026-02-02 13:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:58", + "echoMap": {}, + "alarmNo": "1530109593", + "alarmDate": "1770010493810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275489", + "createdBy": null, + "createdTime": "2026-02-02 13:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:06", + "echoMap": {}, + "alarmNo": "1530109594", + "alarmDate": "1770010494110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275541", + "createdBy": null, + "createdTime": "2026-02-02 13:35:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:07", + "echoMap": {}, + "alarmNo": "1530109595", + "alarmDate": "1770010505960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113613225242646", + "createdBy": null, + "createdTime": "2026-02-02 13:35:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:44", + "echoMap": {}, + "alarmNo": "1530109596", + "alarmDate": "1770010539703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113613225242660", + "createdBy": null, + "createdTime": "2026-02-02 13:35:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:00", + "echoMap": {}, + "alarmNo": "1530109597", + "alarmDate": "1770010543533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113617520210085", + "createdBy": null, + "createdTime": "2026-02-02 13:45:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:06", + "echoMap": {}, + "alarmNo": "1530109599", + "alarmDate": "1770011100293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144512", + "createdBy": null, + "createdTime": "2026-02-02 13:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:49", + "echoMap": {}, + "alarmNo": "1530109600", + "alarmDate": "1770011148056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144684", + "createdBy": null, + "createdTime": "2026-02-02 13:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:04", + "echoMap": {}, + "alarmNo": "1530109602", + "alarmDate": "1770011703264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144709", + "createdBy": null, + "createdTime": "2026-02-02 13:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:11", + "echoMap": {}, + "alarmNo": "1530109603", + "alarmDate": "1770011709984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144778", + "createdBy": null, + "createdTime": "2026-02-02 13:55:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:38", + "echoMap": {}, + "alarmNo": "1530109604", + "alarmDate": "1770011731368", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113634700079278", + "createdBy": null, + "createdTime": "2026-02-02 14:05:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:14", + "echoMap": {}, + "alarmNo": "1530109607", + "alarmDate": "1770012312794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113634700079317", + "createdBy": null, + "createdTime": "2026-02-02 14:05:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:30", + "echoMap": {}, + "alarmNo": "1530109608", + "alarmDate": "1770012324275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113638995046411", + "createdBy": null, + "createdTime": "2026-02-02 14:05:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:48", + "echoMap": {}, + "alarmNo": "1530109609", + "alarmDate": "1770012335860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113643290013836", + "createdBy": null, + "createdTime": "2026-02-02 14:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:55", + "echoMap": {}, + "alarmNo": "1530109612", + "alarmDate": "1770012893590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113643290013898", + "createdBy": null, + "createdTime": "2026-02-02 14:15:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:19", + "echoMap": {}, + "alarmNo": "1530109613", + "alarmDate": "1770012912524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113647584981001", + "createdBy": null, + "createdTime": "2026-02-02 14:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:50", + "echoMap": {}, + "alarmNo": "1530109614", + "alarmDate": "1770012943585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948401", + "createdBy": null, + "createdTime": "2026-02-02 14:24:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:17", + "echoMap": {}, + "alarmNo": "1530109617", + "alarmDate": "1770013493699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948403", + "createdBy": null, + "createdTime": "2026-02-02 14:24:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:54", + "echoMap": {}, + "alarmNo": "1530109618", + "alarmDate": "1770013493926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948498", + "createdBy": null, + "createdTime": "2026-02-02 14:25:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:13", + "echoMap": {}, + "alarmNo": "1530109619", + "alarmDate": "1770013512188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948557", + "createdBy": null, + "createdTime": "2026-02-02 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:30", + "echoMap": {}, + "alarmNo": "1530109620", + "alarmDate": "1770013528657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060018", + "deviceName": "[209](10)新天地1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948564", + "createdBy": null, + "createdTime": "2026-02-02 14:25:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:30", + "echoMap": {}, + "alarmNo": "1530109621", + "alarmDate": "1770013529824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948579", + "createdBy": null, + "createdTime": "2026-02-02 14:25:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:51", + "echoMap": {}, + "alarmNo": "1530109622", + "alarmDate": "1770013532879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113660469883030", + "createdBy": null, + "createdTime": "2026-02-02 14:34:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:02", + "echoMap": {}, + "alarmNo": "1530109625", + "alarmDate": "1770014096000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113660469883117", + "createdBy": null, + "createdTime": "2026-02-02 14:35:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:18", + "echoMap": {}, + "alarmNo": "1530109626", + "alarmDate": "1770014116646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113664764850196", + "createdBy": null, + "createdTime": "2026-02-02 14:35:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "alarmNo": "1530109627", + "alarmDate": "1770014139256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723112947505311789", + "createdBy": null, + "createdTime": "2026-02-02 00:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:45", + "echoMap": {}, + "alarmNo": "1530109255", + "alarmDate": "1769962366364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112964685180929", + "createdBy": null, + "createdTime": "2026-02-02 00:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:45", + "echoMap": {}, + "alarmNo": "1530109259", + "alarmDate": "1769963026313", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112973275115875", + "createdBy": null, + "createdTime": "2026-02-02 00:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:45", + "echoMap": {}, + "alarmNo": "1530109260", + "alarmDate": "1769963506319", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112990454984899", + "createdBy": null, + "createdTime": "2026-02-02 00:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:45", + "echoMap": {}, + "alarmNo": "1530109263", + "alarmDate": "1769964106322", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113041994592416", + "createdBy": null, + "createdTime": "2026-02-02 01:09:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:46", + "echoMap": {}, + "alarmNo": "1530109277", + "alarmDate": "1769965786613", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113041994592461", + "createdBy": null, + "createdTime": "2026-02-02 01:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:46", + "echoMap": {}, + "alarmNo": "1530109278", + "alarmDate": "1769965966593", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113059174461736", + "createdBy": null, + "createdTime": "2026-02-02 01:18:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:46", + "echoMap": {}, + "alarmNo": "1530109283", + "alarmDate": "1769966326547", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113076354330841", + "createdBy": null, + "createdTime": "2026-02-02 01:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:45", + "echoMap": {}, + "alarmNo": "1530109285", + "alarmDate": "1769966866494", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113093534200109", + "createdBy": null, + "createdTime": "2026-02-02 01:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:46", + "echoMap": {}, + "alarmNo": "1530109289", + "alarmDate": "1769967406590", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113097829167125", + "createdBy": null, + "createdTime": "2026-02-02 01:38:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:46", + "echoMap": {}, + "alarmNo": "1530109290", + "alarmDate": "1769967526589", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113119304003763", + "createdBy": null, + "createdTime": "2026-02-02 02:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:46", + "echoMap": {}, + "alarmNo": "1530109291", + "alarmDate": "1769968846584", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113123598971008", + "createdBy": null, + "createdTime": "2026-02-02 02:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:46", + "echoMap": {}, + "alarmNo": "1530109296", + "alarmDate": "1769969266570", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113132188905543", + "createdBy": null, + "createdTime": "2026-02-02 02:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:46", + "echoMap": {}, + "alarmNo": "1530109298", + "alarmDate": "1769970046478", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113162253676577", + "createdBy": null, + "createdTime": "2026-02-02 02:48:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:45", + "echoMap": {}, + "alarmNo": "1530109309", + "alarmDate": "1769971726544", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113162253676591", + "createdBy": null, + "createdTime": "2026-02-02 02:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:45", + "echoMap": {}, + "alarmNo": "1530109310", + "alarmDate": "1769971846454", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113175138578483", + "createdBy": null, + "createdTime": "2026-02-02 03:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:45", + "echoMap": {}, + "alarmNo": "1530109317", + "alarmDate": "1769972866602", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113188023480341", + "createdBy": null, + "createdTime": "2026-02-02 03:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:45", + "echoMap": {}, + "alarmNo": "1530109323", + "alarmDate": "1769973466546", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113188023480418", + "createdBy": null, + "createdTime": "2026-02-02 03:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:46", + "echoMap": {}, + "alarmNo": "1530109324", + "alarmDate": "1769973826430", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113200908382247", + "createdBy": null, + "createdTime": "2026-02-02 03:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:46", + "echoMap": {}, + "alarmNo": "1530109330", + "alarmDate": "1769974906516", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113205203350010", + "createdBy": null, + "createdTime": "2026-02-02 03:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:46", + "echoMap": {}, + "alarmNo": "1530109336", + "alarmDate": "1769975146483", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113230973153719", + "createdBy": null, + "createdTime": "2026-02-02 04:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:46", + "echoMap": {}, + "alarmNo": "1530109350", + "alarmDate": "1769977066669", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113230973153815", + "createdBy": null, + "createdTime": "2026-02-02 04:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:23:46", + "echoMap": {}, + "alarmNo": "1530109351", + "alarmDate": "1769977366582", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113239563088318", + "createdBy": null, + "createdTime": "2026-02-02 04:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:46", + "echoMap": {}, + "alarmNo": "1530109353", + "alarmDate": "1769977666560", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113239563088351", + "createdBy": null, + "createdTime": "2026-02-02 04:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:46", + "echoMap": {}, + "alarmNo": "1530109354", + "alarmDate": "1769977846499", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113239563088398", + "createdBy": null, + "createdTime": "2026-02-02 04:33:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:45", + "echoMap": {}, + "alarmNo": "1530109355", + "alarmDate": "1769978026524", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113248153022812", + "createdBy": null, + "createdTime": "2026-02-02 04:35:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:46", + "echoMap": {}, + "alarmNo": "1530109357", + "alarmDate": "1769978146563", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113248153022955", + "createdBy": null, + "createdTime": "2026-02-02 04:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:45", + "echoMap": {}, + "alarmNo": "1530109360", + "alarmDate": "1769978446602", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113256742957463", + "createdBy": null, + "createdTime": "2026-02-02 04:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:45", + "echoMap": {}, + "alarmNo": "1530109363", + "alarmDate": "1769978806547", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113265332892180", + "createdBy": null, + "createdTime": "2026-02-02 05:04:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:46", + "echoMap": {}, + "alarmNo": "1530109366", + "alarmDate": "1769979886610", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113273922826636", + "createdBy": null, + "createdTime": "2026-02-02 05:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:25:46", + "echoMap": {}, + "alarmNo": "1530109369", + "alarmDate": "1769980966602", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113273922826884", + "createdBy": null, + "createdTime": "2026-02-02 05:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:46", + "echoMap": {}, + "alarmNo": "1530109370", + "alarmDate": "1769981206500", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113282512761158", + "createdBy": null, + "createdTime": "2026-02-02 05:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:46", + "echoMap": {}, + "alarmNo": "1530109373", + "alarmDate": "1769982046725", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113291102695627", + "createdBy": null, + "createdTime": "2026-02-02 05:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:46", + "echoMap": {}, + "alarmNo": "1530109378", + "alarmDate": "1769983006503", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113291102696011", + "createdBy": null, + "createdTime": "2026-02-02 06:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:46", + "echoMap": {}, + "alarmNo": "1530109380", + "alarmDate": "1769983726495", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113299692630018", + "createdBy": null, + "createdTime": "2026-02-02 06:13:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:45", + "echoMap": {}, + "alarmNo": "1530109381", + "alarmDate": "1769984026562", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113299692630315", + "createdBy": null, + "createdTime": "2026-02-02 06:18:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:46", + "echoMap": {}, + "alarmNo": "1530109382", + "alarmDate": "1769984326576", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113303987597341", + "createdBy": null, + "createdTime": "2026-02-02 06:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:46", + "echoMap": {}, + "alarmNo": "1530109386", + "alarmDate": "1769984806569", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113316872499322", + "createdBy": null, + "createdTime": "2026-02-02 06:49:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1530109389", + "alarmDate": "1769986186334", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113316872499636", + "createdBy": null, + "createdTime": "2026-02-02 06:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:45", + "echoMap": {}, + "alarmNo": "1530109392", + "alarmDate": "1769986666308", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113316872499720", + "createdBy": null, + "createdTime": "2026-02-02 07:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:45", + "echoMap": {}, + "alarmNo": "1530109393", + "alarmDate": "1769986966364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113325462434041", + "createdBy": null, + "createdTime": "2026-02-02 07:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:45", + "echoMap": {}, + "alarmNo": "1530109398", + "alarmDate": "1769987506420", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113325462434442", + "createdBy": null, + "createdTime": "2026-02-02 07:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:45", + "echoMap": {}, + "alarmNo": "1530109405", + "alarmDate": "1769988046316", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113329757401111", + "createdBy": null, + "createdTime": "2026-02-02 07:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:45", + "echoMap": {}, + "alarmNo": "1530109406", + "alarmDate": "1769988286390", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113338347335715", + "createdBy": null, + "createdTime": "2026-02-02 07:44:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:45", + "echoMap": {}, + "alarmNo": "1530109419", + "alarmDate": "1769989486328", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113342642303505", + "createdBy": null, + "createdTime": "2026-02-02 07:58:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:45", + "echoMap": {}, + "alarmNo": "1530109428", + "alarmDate": "1769990326332", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232237591", + "createdBy": null, + "createdTime": "2026-02-02 08:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:45", + "echoMap": {}, + "alarmNo": "1530109431", + "alarmDate": "1769990806331", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232237890", + "createdBy": null, + "createdTime": "2026-02-02 08:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:45", + "echoMap": {}, + "alarmNo": "1530109436", + "alarmDate": "1769991346351", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232237991", + "createdBy": null, + "createdTime": "2026-02-02 08:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:45", + "echoMap": {}, + "alarmNo": "1530109438", + "alarmDate": "1769991646364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232238019", + "createdBy": null, + "createdTime": "2026-02-02 08:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:47", + "echoMap": {}, + "alarmNo": "1530109439", + "alarmDate": "1769991826331", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113355527204913", + "createdBy": null, + "createdTime": "2026-02-02 08:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:45", + "echoMap": {}, + "alarmNo": "1530109444", + "alarmDate": "1769992366335", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113359822172163", + "createdBy": null, + "createdTime": "2026-02-02 08:34:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:45", + "echoMap": {}, + "alarmNo": "1530109445", + "alarmDate": "1769992486337", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113368412106759", + "createdBy": null, + "createdTime": "2026-02-02 08:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:45", + "echoMap": {}, + "alarmNo": "1530109456", + "alarmDate": "1769993446416", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113377002041467", + "createdBy": null, + "createdTime": "2026-02-02 09:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:45", + "echoMap": {}, + "alarmNo": "1530109460", + "alarmDate": "1769994226340", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113385591975968", + "createdBy": null, + "createdTime": "2026-02-02 09:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:45", + "echoMap": {}, + "alarmNo": "1530109464", + "alarmDate": "1769994346320", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113385591976027", + "createdBy": null, + "createdTime": "2026-02-02 09:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:09:45", + "echoMap": {}, + "alarmNo": "1530109465", + "alarmDate": "1769994526318", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113385591976111", + "createdBy": null, + "createdTime": "2026-02-02 09:14:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:45", + "echoMap": {}, + "alarmNo": "1530109466", + "alarmDate": "1769994886350", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113394181910605", + "createdBy": null, + "createdTime": "2026-02-02 09:17:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:45", + "echoMap": {}, + "alarmNo": "1530109469", + "alarmDate": "1769995066316", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113394181910700", + "createdBy": null, + "createdTime": "2026-02-02 09:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:45", + "echoMap": {}, + "alarmNo": "1530109470", + "alarmDate": "1769995426315", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113402771845221", + "createdBy": null, + "createdTime": "2026-02-02 09:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:45", + "echoMap": {}, + "alarmNo": "1530109472", + "alarmDate": "1769995966325", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113411361779752", + "createdBy": null, + "createdTime": "2026-02-02 09:38:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:39:45", + "echoMap": {}, + "alarmNo": "1530109477", + "alarmDate": "1769996326356", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113419951714367", + "createdBy": null, + "createdTime": "2026-02-02 09:49:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:45", + "echoMap": {}, + "alarmNo": "1530109480", + "alarmDate": "1769996986322", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113419951714443", + "createdBy": null, + "createdTime": "2026-02-02 09:54:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:45", + "echoMap": {}, + "alarmNo": "1530109481", + "alarmDate": "1769997286337", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113428541648987", + "createdBy": null, + "createdTime": "2026-02-02 10:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:47", + "echoMap": {}, + "alarmNo": "1530109483", + "alarmDate": "1769997826408", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113432836616204", + "createdBy": null, + "createdTime": "2026-02-02 10:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:45", + "echoMap": {}, + "alarmNo": "1530109488", + "alarmDate": "1769997946558", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113437131583516", + "createdBy": null, + "createdTime": "2026-02-02 10:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:45", + "echoMap": {}, + "alarmNo": "1530109489", + "alarmDate": "1769998126356", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113437131583581", + "createdBy": null, + "createdTime": "2026-02-02 10:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:45", + "echoMap": {}, + "alarmNo": "1530109490", + "alarmDate": "1769998426315", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113441426550852", + "createdBy": null, + "createdTime": "2026-02-02 10:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:46", + "echoMap": {}, + "alarmNo": "1530109492", + "alarmDate": "1769998726306", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113450016485428", + "createdBy": null, + "createdTime": "2026-02-02 10:29:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:45", + "echoMap": {}, + "alarmNo": "1530109496", + "alarmDate": "1769999386426", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113454311452690", + "createdBy": null, + "createdTime": "2026-02-02 10:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:45", + "echoMap": {}, + "alarmNo": "1530109497", + "alarmDate": "1769999506333", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113458606419975", + "createdBy": null, + "createdTime": "2026-02-02 10:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:45", + "echoMap": {}, + "alarmNo": "1530109502", + "alarmDate": "1769999866309", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113467196354569", + "createdBy": null, + "createdTime": "2026-02-02 10:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:45", + "echoMap": {}, + "alarmNo": "1530109507", + "alarmDate": "1770000346332", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113471491321920", + "createdBy": null, + "createdTime": "2026-02-02 10:52:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:45", + "echoMap": {}, + "alarmNo": "1530109509", + "alarmDate": "1770000766335", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113471491322191", + "createdBy": null, + "createdTime": "2026-02-02 10:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:45", + "echoMap": {}, + "alarmNo": "1530109512", + "alarmDate": "1770001006461", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113484376223759", + "createdBy": null, + "createdTime": "2026-02-02 11:07:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:45", + "echoMap": {}, + "alarmNo": "1530109517", + "alarmDate": "1770001666303", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113488671191054", + "createdBy": null, + "createdTime": "2026-02-02 11:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:45", + "echoMap": {}, + "alarmNo": "1530109518", + "alarmDate": "1770001906310", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113488671191310", + "createdBy": null, + "createdTime": "2026-02-02 11:17:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:45", + "echoMap": {}, + "alarmNo": "1530109524", + "alarmDate": "1770002266383", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113488671191375", + "createdBy": null, + "createdTime": "2026-02-02 11:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:45", + "echoMap": {}, + "alarmNo": "1530109525", + "alarmDate": "1770002566343", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113497261125763", + "createdBy": null, + "createdTime": "2026-02-02 11:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:45", + "echoMap": {}, + "alarmNo": "1530109528", + "alarmDate": "1770002926304", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113497261125813", + "createdBy": null, + "createdTime": "2026-02-02 11:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:45", + "echoMap": {}, + "alarmNo": "1530109529", + "alarmDate": "1770003046413", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113497261125846", + "createdBy": null, + "createdTime": "2026-02-02 11:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:46", + "echoMap": {}, + "alarmNo": "1530109530", + "alarmDate": "1770003226402", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113505851060312", + "createdBy": null, + "createdTime": "2026-02-02 11:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:45", + "echoMap": {}, + "alarmNo": "1530109534", + "alarmDate": "1770003346396", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113505851060354", + "createdBy": null, + "createdTime": "2026-02-02 11:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:45", + "echoMap": {}, + "alarmNo": "1530109535", + "alarmDate": "1770003466340", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113514440994978", + "createdBy": null, + "createdTime": "2026-02-02 11:47:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:45", + "echoMap": {}, + "alarmNo": "1530109540", + "alarmDate": "1770004066315", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113514440995015", + "createdBy": null, + "createdTime": "2026-02-02 11:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:45", + "echoMap": {}, + "alarmNo": "1530109541", + "alarmDate": "1770004306313", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113531620864187", + "createdBy": null, + "createdTime": "2026-02-02 12:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:45", + "echoMap": {}, + "alarmNo": "1530109547", + "alarmDate": "1770005146306", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113535915831342", + "createdBy": null, + "createdTime": "2026-02-02 12:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:45", + "echoMap": {}, + "alarmNo": "1530109549", + "alarmDate": "1770005506390", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113548800733217", + "createdBy": null, + "createdTime": "2026-02-02 12:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:45", + "echoMap": {}, + "alarmNo": "1530109558", + "alarmDate": "1770005926366", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113553095700496", + "createdBy": null, + "createdTime": "2026-02-02 12:25:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:45", + "echoMap": {}, + "alarmNo": "1530109562", + "alarmDate": "1770006346400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113557390667816", + "createdBy": null, + "createdTime": "2026-02-02 12:29:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:45", + "echoMap": {}, + "alarmNo": "1530109563", + "alarmDate": "1770006586329", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113578865504270", + "createdBy": null, + "createdTime": "2026-02-02 12:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:45", + "echoMap": {}, + "alarmNo": "1530109577", + "alarmDate": "1770008206309", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113587455438893", + "createdBy": null, + "createdTime": "2026-02-02 13:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:45", + "echoMap": {}, + "alarmNo": "1530109583", + "alarmDate": "1770008806359", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113600340340821", + "createdBy": null, + "createdTime": "2026-02-02 13:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:45", + "echoMap": {}, + "alarmNo": "1530109587", + "alarmDate": "1770009826314", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113608930275373", + "createdBy": null, + "createdTime": "2026-02-02 13:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:45", + "echoMap": {}, + "alarmNo": "1530109591", + "alarmDate": "1770010126306", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113608930275478", + "createdBy": null, + "createdTime": "2026-02-02 13:34:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:45", + "echoMap": {}, + "alarmNo": "1530109592", + "alarmDate": "1770010486364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113617520210012", + "createdBy": null, + "createdTime": "2026-02-02 13:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:45", + "echoMap": {}, + "alarmNo": "1530109598", + "alarmDate": "1770010906340", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113626110144569", + "createdBy": null, + "createdTime": "2026-02-02 13:48:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:45", + "echoMap": {}, + "alarmNo": "1530109601", + "alarmDate": "1770011326299", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113630405111827", + "createdBy": null, + "createdTime": "2026-02-02 13:55:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:45", + "echoMap": {}, + "alarmNo": "1530109605", + "alarmDate": "1770011746307", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113634700079117", + "createdBy": null, + "createdTime": "2026-02-02 13:58:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:45", + "echoMap": {}, + "alarmNo": "1530109606", + "alarmDate": "1770011926367", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113638995046457", + "createdBy": null, + "createdTime": "2026-02-02 14:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:45", + "echoMap": {}, + "alarmNo": "1530109610", + "alarmDate": "1770012346305", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113643290013806", + "createdBy": null, + "createdTime": "2026-02-02 14:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:45", + "echoMap": {}, + "alarmNo": "1530109611", + "alarmDate": "1770012826313", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113647584981013", + "createdBy": null, + "createdTime": "2026-02-02 14:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:45", + "echoMap": {}, + "alarmNo": "1530109615", + "alarmDate": "1770012946312", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113651879948344", + "createdBy": null, + "createdTime": "2026-02-02 14:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:45", + "echoMap": {}, + "alarmNo": "1530109616", + "alarmDate": "1770013306331", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113660469882914", + "createdBy": null, + "createdTime": "2026-02-02 14:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:46", + "echoMap": {}, + "alarmNo": "1530109623", + "alarmDate": "1770013726303", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113660469882952", + "createdBy": null, + "createdTime": "2026-02-02 14:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:45", + "echoMap": {}, + "alarmNo": "1530109624", + "alarmDate": "1770013846302", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113664764850229", + "createdBy": null, + "createdTime": "2026-02-02 14:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "alarmNo": "1530109628", + "alarmDate": "1770014146481", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113664764850229", + "createdBy": null, + "createdTime": "2026-02-02 14:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "alarmNo": "1530109628", + "alarmDate": "1770014146481", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113664764850196", + "createdBy": null, + "createdTime": "2026-02-02 14:35:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "alarmNo": "1530109627", + "alarmDate": "1770014139256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113660469883117", + "createdBy": null, + "createdTime": "2026-02-02 14:35:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:18", + "echoMap": {}, + "alarmNo": "1530109626", + "alarmDate": "1770014116646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113660469883030", + "createdBy": null, + "createdTime": "2026-02-02 14:34:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:02", + "echoMap": {}, + "alarmNo": "1530109625", + "alarmDate": "1770014096000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113660469882952", + "createdBy": null, + "createdTime": "2026-02-02 14:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:45", + "echoMap": {}, + "alarmNo": "1530109624", + "alarmDate": "1770013846302", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113660469882914", + "createdBy": null, + "createdTime": "2026-02-02 14:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:46", + "echoMap": {}, + "alarmNo": "1530109623", + "alarmDate": "1770013726303", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113651879948579", + "createdBy": null, + "createdTime": "2026-02-02 14:25:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:51", + "echoMap": {}, + "alarmNo": "1530109622", + "alarmDate": "1770013532879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948564", + "createdBy": null, + "createdTime": "2026-02-02 14:25:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:30", + "echoMap": {}, + "alarmNo": "1530109621", + "alarmDate": "1770013529824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948557", + "createdBy": null, + "createdTime": "2026-02-02 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:30", + "echoMap": {}, + "alarmNo": "1530109620", + "alarmDate": "1770013528657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060018", + "deviceName": "[209](10)新天地1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948498", + "createdBy": null, + "createdTime": "2026-02-02 14:25:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:13", + "echoMap": {}, + "alarmNo": "1530109619", + "alarmDate": "1770013512188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948403", + "createdBy": null, + "createdTime": "2026-02-02 14:24:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:54", + "echoMap": {}, + "alarmNo": "1530109618", + "alarmDate": "1770013493926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948401", + "createdBy": null, + "createdTime": "2026-02-02 14:24:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:17", + "echoMap": {}, + "alarmNo": "1530109617", + "alarmDate": "1770013493699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113651879948344", + "createdBy": null, + "createdTime": "2026-02-02 14:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:45", + "echoMap": {}, + "alarmNo": "1530109616", + "alarmDate": "1770013306331", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113647584981013", + "createdBy": null, + "createdTime": "2026-02-02 14:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:45", + "echoMap": {}, + "alarmNo": "1530109615", + "alarmDate": "1770012946312", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113647584981001", + "createdBy": null, + "createdTime": "2026-02-02 14:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:50", + "echoMap": {}, + "alarmNo": "1530109614", + "alarmDate": "1770012943585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113643290013898", + "createdBy": null, + "createdTime": "2026-02-02 14:15:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:19", + "echoMap": {}, + "alarmNo": "1530109613", + "alarmDate": "1770012912524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113643290013836", + "createdBy": null, + "createdTime": "2026-02-02 14:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:55", + "echoMap": {}, + "alarmNo": "1530109612", + "alarmDate": "1770012893590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113643290013806", + "createdBy": null, + "createdTime": "2026-02-02 14:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:45", + "echoMap": {}, + "alarmNo": "1530109611", + "alarmDate": "1770012826313", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113638995046457", + "createdBy": null, + "createdTime": "2026-02-02 14:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:45", + "echoMap": {}, + "alarmNo": "1530109610", + "alarmDate": "1770012346305", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113638995046411", + "createdBy": null, + "createdTime": "2026-02-02 14:05:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:48", + "echoMap": {}, + "alarmNo": "1530109609", + "alarmDate": "1770012335860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113634700079317", + "createdBy": null, + "createdTime": "2026-02-02 14:05:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:30", + "echoMap": {}, + "alarmNo": "1530109608", + "alarmDate": "1770012324275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113634700079278", + "createdBy": null, + "createdTime": "2026-02-02 14:05:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:14", + "echoMap": {}, + "alarmNo": "1530109607", + "alarmDate": "1770012312794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113634700079117", + "createdBy": null, + "createdTime": "2026-02-02 13:58:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:45", + "echoMap": {}, + "alarmNo": "1530109606", + "alarmDate": "1770011926367", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113630405111827", + "createdBy": null, + "createdTime": "2026-02-02 13:55:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:45", + "echoMap": {}, + "alarmNo": "1530109605", + "alarmDate": "1770011746307", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113626110144778", + "createdBy": null, + "createdTime": "2026-02-02 13:55:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:38", + "echoMap": {}, + "alarmNo": "1530109604", + "alarmDate": "1770011731368", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144709", + "createdBy": null, + "createdTime": "2026-02-02 13:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:11", + "echoMap": {}, + "alarmNo": "1530109603", + "alarmDate": "1770011709984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144684", + "createdBy": null, + "createdTime": "2026-02-02 13:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:04", + "echoMap": {}, + "alarmNo": "1530109602", + "alarmDate": "1770011703264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113626110144569", + "createdBy": null, + "createdTime": "2026-02-02 13:48:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:45", + "echoMap": {}, + "alarmNo": "1530109601", + "alarmDate": "1770011326299", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113626110144512", + "createdBy": null, + "createdTime": "2026-02-02 13:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:49", + "echoMap": {}, + "alarmNo": "1530109600", + "alarmDate": "1770011148056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113617520210085", + "createdBy": null, + "createdTime": "2026-02-02 13:45:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:06", + "echoMap": {}, + "alarmNo": "1530109599", + "alarmDate": "1770011100293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113617520210012", + "createdBy": null, + "createdTime": "2026-02-02 13:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:45", + "echoMap": {}, + "alarmNo": "1530109598", + "alarmDate": "1770010906340", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113613225242660", + "createdBy": null, + "createdTime": "2026-02-02 13:35:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:00", + "echoMap": {}, + "alarmNo": "1530109597", + "alarmDate": "1770010543533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113613225242646", + "createdBy": null, + "createdTime": "2026-02-02 13:35:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:44", + "echoMap": {}, + "alarmNo": "1530109596", + "alarmDate": "1770010539703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275541", + "createdBy": null, + "createdTime": "2026-02-02 13:35:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:07", + "echoMap": {}, + "alarmNo": "1530109595", + "alarmDate": "1770010505960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275489", + "createdBy": null, + "createdTime": "2026-02-02 13:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:06", + "echoMap": {}, + "alarmNo": "1530109594", + "alarmDate": "1770010494110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275484", + "createdBy": null, + "createdTime": "2026-02-02 13:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:58", + "echoMap": {}, + "alarmNo": "1530109593", + "alarmDate": "1770010493810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113608930275478", + "createdBy": null, + "createdTime": "2026-02-02 13:34:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:45", + "echoMap": {}, + "alarmNo": "1530109592", + "alarmDate": "1770010486364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113608930275373", + "createdBy": null, + "createdTime": "2026-02-02 13:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:45", + "echoMap": {}, + "alarmNo": "1530109591", + "alarmDate": "1770010126306", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113608930275339", + "createdBy": null, + "createdTime": "2026-02-02 13:25:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:52", + "echoMap": {}, + "alarmNo": "1530109590", + "alarmDate": "1770009950807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113600340340866", + "createdBy": null, + "createdTime": "2026-02-02 13:24:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:59", + "echoMap": {}, + "alarmNo": "1530109589", + "alarmDate": "1770009898295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113600340340846", + "createdBy": null, + "createdTime": "2026-02-02 13:24:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:54", + "echoMap": {}, + "alarmNo": "1530109588", + "alarmDate": "1770009893282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113600340340821", + "createdBy": null, + "createdTime": "2026-02-02 13:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:45", + "echoMap": {}, + "alarmNo": "1530109587", + "alarmDate": "1770009826314", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113596045373443", + "createdBy": null, + "createdTime": "2026-02-02 13:15:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:43", + "echoMap": {}, + "alarmNo": "1530109586", + "alarmDate": "1770009342084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113591750406399", + "createdBy": null, + "createdTime": "2026-02-02 13:15:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:41", + "echoMap": {}, + "alarmNo": "1530109585", + "alarmDate": "1770009335068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113591750406265", + "createdBy": null, + "createdTime": "2026-02-02 13:14:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:57", + "echoMap": {}, + "alarmNo": "1530109584", + "alarmDate": "1770009294631", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113587455438893", + "createdBy": null, + "createdTime": "2026-02-02 13:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:45", + "echoMap": {}, + "alarmNo": "1530109583", + "alarmDate": "1770008806359", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113587455438883", + "createdBy": null, + "createdTime": "2026-02-02 13:05:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:11", + "echoMap": {}, + "alarmNo": "1530109582", + "alarmDate": "1770008750866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471765", + "createdBy": null, + "createdTime": "2026-02-02 13:05:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:47", + "echoMap": {}, + "alarmNo": "1530109581", + "alarmDate": "1770008733262", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471744", + "createdBy": null, + "createdTime": "2026-02-02 13:05:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:28", + "echoMap": {}, + "alarmNo": "1530109580", + "alarmDate": "1770008727479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471714", + "createdBy": null, + "createdTime": "2026-02-02 13:05:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:27", + "echoMap": {}, + "alarmNo": "1530109579", + "alarmDate": "1770008720885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113583160471632", + "createdBy": null, + "createdTime": "2026-02-02 13:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:03", + "echoMap": {}, + "alarmNo": "1530109578", + "alarmDate": "1770008702184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113578865504270", + "createdBy": null, + "createdTime": "2026-02-02 12:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:45", + "echoMap": {}, + "alarmNo": "1530109577", + "alarmDate": "1770008206309", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113574570537247", + "createdBy": null, + "createdTime": "2026-02-02 12:55:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:49", + "echoMap": {}, + "alarmNo": "1530109576", + "alarmDate": "1770008148025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113574570537158", + "createdBy": null, + "createdTime": "2026-02-02 12:55:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:36", + "echoMap": {}, + "alarmNo": "1530109575", + "alarmDate": "1770008130457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602626", + "createdBy": null, + "createdTime": "2026-02-02 12:45:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:48", + "echoMap": {}, + "alarmNo": "1530109574", + "alarmDate": "1770007536227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602593", + "createdBy": null, + "createdTime": "2026-02-02 12:45:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:34", + "echoMap": {}, + "alarmNo": "1530109573", + "alarmDate": "1770007533145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602587", + "createdBy": null, + "createdTime": "2026-02-02 12:45:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:27", + "echoMap": {}, + "alarmNo": "1530109572", + "alarmDate": "1770007532270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602548", + "createdBy": null, + "createdTime": "2026-02-02 12:45:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:33", + "echoMap": {}, + "alarmNo": "1530109571", + "alarmDate": "1770007520270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602497", + "createdBy": null, + "createdTime": "2026-02-02 12:45:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:20", + "echoMap": {}, + "alarmNo": "1530109570", + "alarmDate": "1770007507138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113565980602456", + "createdBy": null, + "createdTime": "2026-02-02 12:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:01", + "echoMap": {}, + "alarmNo": "1530109569", + "alarmDate": "1770007493344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390668080", + "createdBy": null, + "createdTime": "2026-02-02 12:35:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:43", + "echoMap": {}, + "alarmNo": "1530109568", + "alarmDate": "1770006948442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390668002", + "createdBy": null, + "createdTime": "2026-02-02 12:35:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:24", + "echoMap": {}, + "alarmNo": "1530109567", + "alarmDate": "1770006923426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667915", + "createdBy": null, + "createdTime": "2026-02-02 12:34:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:58", + "echoMap": {}, + "alarmNo": "1530109566", + "alarmDate": "1770006897316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667900", + "createdBy": null, + "createdTime": "2026-02-02 12:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:00", + "echoMap": {}, + "alarmNo": "1530109565", + "alarmDate": "1770006894046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667868", + "createdBy": null, + "createdTime": "2026-02-02 12:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:45", + "echoMap": {}, + "alarmNo": "1530109564", + "alarmDate": "1770006826267", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060069", + "deviceName": "[332](10)新天地#3厅扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113557390667816", + "createdBy": null, + "createdTime": "2026-02-02 12:29:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:45", + "echoMap": {}, + "alarmNo": "1530109563", + "alarmDate": "1770006586329", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113553095700496", + "createdBy": null, + "createdTime": "2026-02-02 12:25:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:45", + "echoMap": {}, + "alarmNo": "1530109562", + "alarmDate": "1770006346400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113548800733512", + "createdBy": null, + "createdTime": "2026-02-02 12:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:48", + "echoMap": {}, + "alarmNo": "1530109561", + "alarmDate": "1770006341838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113548800733507", + "createdBy": null, + "createdTime": "2026-02-02 12:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:42", + "echoMap": {}, + "alarmNo": "1530109560", + "alarmDate": "1770006341214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113548800733356", + "createdBy": null, + "createdTime": "2026-02-02 12:25:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:45", + "echoMap": {}, + "alarmNo": "1530109559", + "alarmDate": "1770006304551", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113548800733217", + "createdBy": null, + "createdTime": "2026-02-02 12:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:45", + "echoMap": {}, + "alarmNo": "1530109558", + "alarmDate": "1770005926366", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113544505765927", + "createdBy": null, + "createdTime": "2026-02-02 12:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:54", + "echoMap": {}, + "alarmNo": "1530109557", + "alarmDate": "1770005748405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798748", + "createdBy": null, + "createdTime": "2026-02-02 12:15:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:31", + "echoMap": {}, + "alarmNo": "1530109556", + "alarmDate": "1770005724889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798741", + "createdBy": null, + "createdTime": "2026-02-02 12:15:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:25", + "echoMap": {}, + "alarmNo": "1530109555", + "alarmDate": "1770005724156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798736", + "createdBy": null, + "createdTime": "2026-02-02 12:15:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:36", + "echoMap": {}, + "alarmNo": "1530109554", + "alarmDate": "1770005723669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798729", + "createdBy": null, + "createdTime": "2026-02-02 12:15:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:36", + "echoMap": {}, + "alarmNo": "1530109553", + "alarmDate": "1770005722511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798677", + "createdBy": null, + "createdTime": "2026-02-02 12:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:35", + "echoMap": {}, + "alarmNo": "1530109552", + "alarmDate": "1770005709363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798640", + "createdBy": null, + "createdTime": "2026-02-02 12:15:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:06", + "echoMap": {}, + "alarmNo": "1530109551", + "alarmDate": "1770005699529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113540210798614", + "createdBy": null, + "createdTime": "2026-02-02 12:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:05", + "echoMap": {}, + "alarmNo": "1530109550", + "alarmDate": "1770005693506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113535915831342", + "createdBy": null, + "createdTime": "2026-02-02 12:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:45", + "echoMap": {}, + "alarmNo": "1530109549", + "alarmDate": "1770005506390", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113531620864200", + "createdBy": null, + "createdTime": "2026-02-02 12:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:58", + "echoMap": {}, + "alarmNo": "1530109548", + "alarmDate": "1770005150079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113531620864187", + "createdBy": null, + "createdTime": "2026-02-02 12:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:45", + "echoMap": {}, + "alarmNo": "1530109547", + "alarmDate": "1770005146306", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113531620864172", + "createdBy": null, + "createdTime": "2026-02-02 12:05:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:49", + "echoMap": {}, + "alarmNo": "1530109546", + "alarmDate": "1770005141881", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113531620864053", + "createdBy": null, + "createdTime": "2026-02-02 12:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:41", + "echoMap": {}, + "alarmNo": "1530109545", + "alarmDate": "1770005115879", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113523030929484", + "createdBy": null, + "createdTime": "2026-02-02 11:55:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:36", + "echoMap": {}, + "alarmNo": "1530109544", + "alarmDate": "1770004535421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113523030929461", + "createdBy": null, + "createdTime": "2026-02-02 11:55:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:38", + "echoMap": {}, + "alarmNo": "1530109543", + "alarmDate": "1770004528790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113518735962144", + "createdBy": null, + "createdTime": "2026-02-02 11:54:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:54:56", + "echoMap": {}, + "alarmNo": "1530109542", + "alarmDate": "1770004495179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113514440995015", + "createdBy": null, + "createdTime": "2026-02-02 11:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:45", + "echoMap": {}, + "alarmNo": "1530109541", + "alarmDate": "1770004306313", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113514440994978", + "createdBy": null, + "createdTime": "2026-02-02 11:47:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:45", + "echoMap": {}, + "alarmNo": "1530109540", + "alarmDate": "1770004066315", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113514440994898", + "createdBy": null, + "createdTime": "2026-02-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:42", + "echoMap": {}, + "alarmNo": "1530109539", + "alarmDate": "1770003940990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113514440994824", + "createdBy": null, + "createdTime": "2026-02-02 11:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:19", + "echoMap": {}, + "alarmNo": "1530109538", + "alarmDate": "1770003918314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113505851060470", + "createdBy": null, + "createdTime": "2026-02-02 11:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:21", + "echoMap": {}, + "alarmNo": "1530109537", + "alarmDate": "1770003894913", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113505851060467", + "createdBy": null, + "createdTime": "2026-02-02 11:44:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:17", + "echoMap": {}, + "alarmNo": "1530109536", + "alarmDate": "1770003894411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113505851060354", + "createdBy": null, + "createdTime": "2026-02-02 11:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:45", + "echoMap": {}, + "alarmNo": "1530109535", + "alarmDate": "1770003466340", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113505851060312", + "createdBy": null, + "createdTime": "2026-02-02 11:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:45", + "echoMap": {}, + "alarmNo": "1530109534", + "alarmDate": "1770003346396", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113505851060248", + "createdBy": null, + "createdTime": "2026-02-02 11:35:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:36", + "echoMap": {}, + "alarmNo": "1530109533", + "alarmDate": "1770003323890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113501556092942", + "createdBy": null, + "createdTime": "2026-02-02 11:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:03", + "echoMap": {}, + "alarmNo": "1530109532", + "alarmDate": "1770003294092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113501556092931", + "createdBy": null, + "createdTime": "2026-02-02 11:34:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:45", + "echoMap": {}, + "alarmNo": "1530109531", + "alarmDate": "1770003286283", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113497261125846", + "createdBy": null, + "createdTime": "2026-02-02 11:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:46", + "echoMap": {}, + "alarmNo": "1530109530", + "alarmDate": "1770003226402", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113497261125813", + "createdBy": null, + "createdTime": "2026-02-02 11:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:45", + "echoMap": {}, + "alarmNo": "1530109529", + "alarmDate": "1770003046413", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113497261125763", + "createdBy": null, + "createdTime": "2026-02-02 11:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:45", + "echoMap": {}, + "alarmNo": "1530109528", + "alarmDate": "1770002926304", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113497261125688", + "createdBy": null, + "createdTime": "2026-02-02 11:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:49", + "echoMap": {}, + "alarmNo": "1530109527", + "alarmDate": "1770002735909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113497261125677", + "createdBy": null, + "createdTime": "2026-02-02 11:25:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:34", + "echoMap": {}, + "alarmNo": "1530109526", + "alarmDate": "1770002732637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191375", + "createdBy": null, + "createdTime": "2026-02-02 11:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:45", + "echoMap": {}, + "alarmNo": "1530109525", + "alarmDate": "1770002566343", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113488671191310", + "createdBy": null, + "createdTime": "2026-02-02 11:17:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:45", + "echoMap": {}, + "alarmNo": "1530109524", + "alarmDate": "1770002266383", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113488671191259", + "createdBy": null, + "createdTime": "2026-02-02 11:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:05", + "echoMap": {}, + "alarmNo": "1530109523", + "alarmDate": "1770002147663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191238", + "createdBy": null, + "createdTime": "2026-02-02 11:15:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:48", + "echoMap": {}, + "alarmNo": "1530109522", + "alarmDate": "1770002141571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191161", + "createdBy": null, + "createdTime": "2026-02-02 11:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:35", + "echoMap": {}, + "alarmNo": "1530109521", + "alarmDate": "1770002115621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191146", + "createdBy": null, + "createdTime": "2026-02-02 11:15:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:18", + "echoMap": {}, + "alarmNo": "1530109520", + "alarmDate": "1770002111550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191137", + "createdBy": null, + "createdTime": "2026-02-02 11:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:10", + "echoMap": {}, + "alarmNo": "1530109519", + "alarmDate": "1770002109286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113488671191054", + "createdBy": null, + "createdTime": "2026-02-02 11:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:45", + "echoMap": {}, + "alarmNo": "1530109518", + "alarmDate": "1770001906310", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113484376223759", + "createdBy": null, + "createdTime": "2026-02-02 11:07:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:45", + "echoMap": {}, + "alarmNo": "1530109517", + "alarmDate": "1770001666303", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113480081256661", + "createdBy": null, + "createdTime": "2026-02-02 11:05:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:47", + "echoMap": {}, + "alarmNo": "1530109516", + "alarmDate": "1770001535378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256630", + "createdBy": null, + "createdTime": "2026-02-02 11:05:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:43", + "echoMap": {}, + "alarmNo": "1530109515", + "alarmDate": "1770001529878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256566", + "createdBy": null, + "createdTime": "2026-02-02 11:05:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:16", + "echoMap": {}, + "alarmNo": "1530109514", + "alarmDate": "1770001514591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113480081256459", + "createdBy": null, + "createdTime": "2026-02-02 11:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:45", + "echoMap": {}, + "alarmNo": "1530109513", + "alarmDate": "1770001426286", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060069", + "deviceName": "[332](10)新天地#3厅扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113471491322191", + "createdBy": null, + "createdTime": "2026-02-02 10:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:45", + "echoMap": {}, + "alarmNo": "1530109512", + "alarmDate": "1770001006461", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113471491322098", + "createdBy": null, + "createdTime": "2026-02-02 10:55:31", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:32", + "echoMap": {}, + "alarmNo": "1530109511", + "alarmDate": "1770000930782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113471491321968", + "createdBy": null, + "createdTime": "2026-02-02 10:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:05", + "echoMap": {}, + "alarmNo": "1530109510", + "alarmDate": "1770000894186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113471491321920", + "createdBy": null, + "createdTime": "2026-02-02 10:52:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:45", + "echoMap": {}, + "alarmNo": "1530109509", + "alarmDate": "1770000766335", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113467196354576", + "createdBy": null, + "createdTime": "2026-02-02 10:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:04", + "echoMap": {}, + "alarmNo": "1530109508", + "alarmDate": "1770000347747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113467196354569", + "createdBy": null, + "createdTime": "2026-02-02 10:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:45", + "echoMap": {}, + "alarmNo": "1530109507", + "alarmDate": "1770000346332", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113462901387498", + "createdBy": null, + "createdTime": "2026-02-02 10:45:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:41", + "echoMap": {}, + "alarmNo": "1530109506", + "alarmDate": "1770000334272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387448", + "createdBy": null, + "createdTime": "2026-02-02 10:45:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:27", + "echoMap": {}, + "alarmNo": "1530109505", + "alarmDate": "1770000321449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060115", + "deviceName": "[105](10)新天地上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387367", + "createdBy": null, + "createdTime": "2026-02-02 10:45:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:03", + "echoMap": {}, + "alarmNo": "1530109504", + "alarmDate": "1770000302404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113462901387315", + "createdBy": null, + "createdTime": "2026-02-02 10:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:03", + "echoMap": {}, + "alarmNo": "1530109503", + "alarmDate": "1770000294641", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113458606419975", + "createdBy": null, + "createdTime": "2026-02-02 10:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:45", + "echoMap": {}, + "alarmNo": "1530109502", + "alarmDate": "1769999866309", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113454311452950", + "createdBy": null, + "createdTime": "2026-02-02 10:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:47", + "echoMap": {}, + "alarmNo": "1530109501", + "alarmDate": "1769999746182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452842", + "createdBy": null, + "createdTime": "2026-02-02 10:35:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:18", + "echoMap": {}, + "alarmNo": "1530109500", + "alarmDate": "1769999716678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452738", + "createdBy": null, + "createdTime": "2026-02-02 10:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:31", + "echoMap": {}, + "alarmNo": "1530109499", + "alarmDate": "1769999694364", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452733", + "createdBy": null, + "createdTime": "2026-02-02 10:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:06", + "echoMap": {}, + "alarmNo": "1530109498", + "alarmDate": "1769999693769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113454311452690", + "createdBy": null, + "createdTime": "2026-02-02 10:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:45", + "echoMap": {}, + "alarmNo": "1530109497", + "alarmDate": "1769999506333", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113450016485428", + "createdBy": null, + "createdTime": "2026-02-02 10:29:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:45", + "echoMap": {}, + "alarmNo": "1530109496", + "alarmDate": "1769999386426", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113445721518306", + "createdBy": null, + "createdTime": "2026-02-02 10:25:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:29", + "echoMap": {}, + "alarmNo": "1530109495", + "alarmDate": "1769999127930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113445721518294", + "createdBy": null, + "createdTime": "2026-02-02 10:25:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:24", + "echoMap": {}, + "alarmNo": "1530109494", + "alarmDate": "1769999126172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113445721518233", + "createdBy": null, + "createdTime": "2026-02-02 10:25:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:24", + "echoMap": {}, + "alarmNo": "1530109493", + "alarmDate": "1769999111537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113441426550852", + "createdBy": null, + "createdTime": "2026-02-02 10:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:46", + "echoMap": {}, + "alarmNo": "1530109492", + "alarmDate": "1769998726306", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113437131583612", + "createdBy": null, + "createdTime": "2026-02-02 10:14:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:57", + "echoMap": {}, + "alarmNo": "1530109491", + "alarmDate": "1769998496511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113437131583581", + "createdBy": null, + "createdTime": "2026-02-02 10:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:45", + "echoMap": {}, + "alarmNo": "1530109490", + "alarmDate": "1769998426315", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113437131583516", + "createdBy": null, + "createdTime": "2026-02-02 10:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:45", + "echoMap": {}, + "alarmNo": "1530109489", + "alarmDate": "1769998126356", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113432836616204", + "createdBy": null, + "createdTime": "2026-02-02 10:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:45", + "echoMap": {}, + "alarmNo": "1530109488", + "alarmDate": "1769997946558", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113428541649171", + "createdBy": null, + "createdTime": "2026-02-02 10:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:15", + "echoMap": {}, + "alarmNo": "1530109487", + "alarmDate": "1769997942646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541649161", + "createdBy": null, + "createdTime": "2026-02-02 10:05:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:42", + "echoMap": {}, + "alarmNo": "1530109486", + "alarmDate": "1769997941280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541649123", + "createdBy": null, + "createdTime": "2026-02-02 10:05:31", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:37", + "echoMap": {}, + "alarmNo": "1530109485", + "alarmDate": "1769997931157", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541648995", + "createdBy": null, + "createdTime": "2026-02-02 10:04:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:45", + "echoMap": {}, + "alarmNo": "1530109484", + "alarmDate": "1769997886318", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113428541648987", + "createdBy": null, + "createdTime": "2026-02-02 10:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:47", + "echoMap": {}, + "alarmNo": "1530109483", + "alarmDate": "1769997826408", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113419951714531", + "createdBy": null, + "createdTime": "2026-02-02 09:55:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:22", + "echoMap": {}, + "alarmNo": "1530109482", + "alarmDate": "1769997321150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113419951714443", + "createdBy": null, + "createdTime": "2026-02-02 09:54:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:45", + "echoMap": {}, + "alarmNo": "1530109481", + "alarmDate": "1769997286337", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113419951714367", + "createdBy": null, + "createdTime": "2026-02-02 09:49:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:45", + "echoMap": {}, + "alarmNo": "1530109480", + "alarmDate": "1769996986322", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113411361779861", + "createdBy": null, + "createdTime": "2026-02-02 09:44:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:31", + "echoMap": {}, + "alarmNo": "1530109479", + "alarmDate": "1769996693959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113411361779857", + "createdBy": null, + "createdTime": "2026-02-02 09:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:02", + "echoMap": {}, + "alarmNo": "1530109478", + "alarmDate": "1769996693329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113411361779752", + "createdBy": null, + "createdTime": "2026-02-02 09:38:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:39:45", + "echoMap": {}, + "alarmNo": "1530109477", + "alarmDate": "1769996326356", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113407066812445", + "createdBy": null, + "createdTime": "2026-02-02 09:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:17", + "echoMap": {}, + "alarmNo": "1530109476", + "alarmDate": "1769996141591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113407066812421", + "createdBy": null, + "createdTime": "2026-02-02 09:35:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:33", + "echoMap": {}, + "alarmNo": "1530109475", + "alarmDate": "1769996132270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113402771845339", + "createdBy": null, + "createdTime": "2026-02-02 09:35:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:18", + "echoMap": {}, + "alarmNo": "1530109474", + "alarmDate": "1769996116849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060044", + "deviceName": "[211](10)新天地6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113402771845277", + "createdBy": null, + "createdTime": "2026-02-02 09:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:09", + "echoMap": {}, + "alarmNo": "1530109473", + "alarmDate": "1769996094878", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113402771845221", + "createdBy": null, + "createdTime": "2026-02-02 09:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:45", + "echoMap": {}, + "alarmNo": "1530109472", + "alarmDate": "1769995966325", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113394181910801", + "createdBy": null, + "createdTime": "2026-02-02 09:25:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:17", + "echoMap": {}, + "alarmNo": "1530109471", + "alarmDate": "1769995516327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113394181910700", + "createdBy": null, + "createdTime": "2026-02-02 09:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:45", + "echoMap": {}, + "alarmNo": "1530109470", + "alarmDate": "1769995426315", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113394181910605", + "createdBy": null, + "createdTime": "2026-02-02 09:17:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:45", + "echoMap": {}, + "alarmNo": "1530109469", + "alarmDate": "1769995066316", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113394181910545", + "createdBy": null, + "createdTime": "2026-02-02 09:15:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:23", + "echoMap": {}, + "alarmNo": "1530109468", + "alarmDate": "1769994941315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113385591976118", + "createdBy": null, + "createdTime": "2026-02-02 09:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:15", + "echoMap": {}, + "alarmNo": "1530109467", + "alarmDate": "1769994894167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113385591976111", + "createdBy": null, + "createdTime": "2026-02-02 09:14:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:45", + "echoMap": {}, + "alarmNo": "1530109466", + "alarmDate": "1769994886350", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113385591976027", + "createdBy": null, + "createdTime": "2026-02-02 09:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:09:45", + "echoMap": {}, + "alarmNo": "1530109465", + "alarmDate": "1769994526318", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113385591975968", + "createdBy": null, + "createdTime": "2026-02-02 09:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:45", + "echoMap": {}, + "alarmNo": "1530109464", + "alarmDate": "1769994346320", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113385591975945", + "createdBy": null, + "createdTime": "2026-02-02 09:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:50", + "echoMap": {}, + "alarmNo": "1530109463", + "alarmDate": "1769994342814", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113377002041592", + "createdBy": null, + "createdTime": "2026-02-02 09:05:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:23", + "echoMap": {}, + "alarmNo": "1530109462", + "alarmDate": "1769994322376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113377002041498", + "createdBy": null, + "createdTime": "2026-02-02 09:04:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:09", + "echoMap": {}, + "alarmNo": "1530109461", + "alarmDate": "1769994296569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113377002041467", + "createdBy": null, + "createdTime": "2026-02-02 09:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:45", + "echoMap": {}, + "alarmNo": "1530109460", + "alarmDate": "1769994226340", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113368412106932", + "createdBy": null, + "createdTime": "2026-02-02 08:55:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:26", + "echoMap": {}, + "alarmNo": "1530109459", + "alarmDate": "1769993714474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113368412106916", + "createdBy": null, + "createdTime": "2026-02-02 08:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:13", + "echoMap": {}, + "alarmNo": "1530109458", + "alarmDate": "1769993711548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113368412106834", + "createdBy": null, + "createdTime": "2026-02-02 08:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:53", + "echoMap": {}, + "alarmNo": "1530109457", + "alarmDate": "1769993692812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113368412106759", + "createdBy": null, + "createdTime": "2026-02-02 08:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:45", + "echoMap": {}, + "alarmNo": "1530109456", + "alarmDate": "1769993446416", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113359822172792", + "createdBy": null, + "createdTime": "2026-02-02 08:45:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:56", + "echoMap": {}, + "alarmNo": "1530109455", + "alarmDate": "1769993144150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172749", + "createdBy": null, + "createdTime": "2026-02-02 08:45:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:42", + "echoMap": {}, + "alarmNo": "1530109454", + "alarmDate": "1769993135531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172696", + "createdBy": null, + "createdTime": "2026-02-02 08:45:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:25", + "echoMap": {}, + "alarmNo": "1530109453", + "alarmDate": "1769993120130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172449", + "createdBy": null, + "createdTime": "2026-02-02 08:35:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:56", + "echoMap": {}, + "alarmNo": "1530109452", + "alarmDate": "1769992549888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172408", + "createdBy": null, + "createdTime": "2026-02-02 08:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:18", + "echoMap": {}, + "alarmNo": "1530109451", + "alarmDate": "1769992542396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172354", + "createdBy": null, + "createdTime": "2026-02-02 08:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:35", + "echoMap": {}, + "alarmNo": "1530109450", + "alarmDate": "1769992529372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172278", + "createdBy": null, + "createdTime": "2026-02-02 08:35:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:15", + "echoMap": {}, + "alarmNo": "1530109449", + "alarmDate": "1769992514435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172214", + "createdBy": null, + "createdTime": "2026-02-02 08:35:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:30", + "echoMap": {}, + "alarmNo": "1530109448", + "alarmDate": "1769992505308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172196", + "createdBy": null, + "createdTime": "2026-02-02 08:35:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:26", + "echoMap": {}, + "alarmNo": "1530109447", + "alarmDate": "1769992501766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172167", + "createdBy": null, + "createdTime": "2026-02-02 08:34:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:17", + "echoMap": {}, + "alarmNo": "1530109446", + "alarmDate": "1769992493486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113359822172163", + "createdBy": null, + "createdTime": "2026-02-02 08:34:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:45", + "echoMap": {}, + "alarmNo": "1530109445", + "alarmDate": "1769992486337", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113355527204913", + "createdBy": null, + "createdTime": "2026-02-02 08:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:45", + "echoMap": {}, + "alarmNo": "1530109444", + "alarmDate": "1769992366335", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232238128", + "createdBy": null, + "createdTime": "2026-02-02 08:25:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:24", + "echoMap": {}, + "alarmNo": "1530109443", + "alarmDate": "1769991918022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238103", + "createdBy": null, + "createdTime": "2026-02-02 08:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:09", + "echoMap": {}, + "alarmNo": "1530109442", + "alarmDate": "1769991907678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238077", + "createdBy": null, + "createdTime": "2026-02-02 08:24:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:05", + "echoMap": {}, + "alarmNo": "1530109441", + "alarmDate": "1769991899173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238053", + "createdBy": null, + "createdTime": "2026-02-02 08:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:45", + "echoMap": {}, + "alarmNo": "1530109440", + "alarmDate": "1769991886368", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232238019", + "createdBy": null, + "createdTime": "2026-02-02 08:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:47", + "echoMap": {}, + "alarmNo": "1530109439", + "alarmDate": "1769991826331", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232237991", + "createdBy": null, + "createdTime": "2026-02-02 08:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:45", + "echoMap": {}, + "alarmNo": "1530109438", + "alarmDate": "1769991646364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232237909", + "createdBy": null, + "createdTime": "2026-02-02 08:15:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:54", + "echoMap": {}, + "alarmNo": "1530109437", + "alarmDate": "1769991352586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237890", + "createdBy": null, + "createdTime": "2026-02-02 08:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:45", + "echoMap": {}, + "alarmNo": "1530109436", + "alarmDate": "1769991346351", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113351232237845", + "createdBy": null, + "createdTime": "2026-02-02 08:15:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:42", + "echoMap": {}, + "alarmNo": "1530109435", + "alarmDate": "1769991333735", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237824", + "createdBy": null, + "createdTime": "2026-02-02 08:15:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:35", + "echoMap": {}, + "alarmNo": "1530109434", + "alarmDate": "1769991329168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237821", + "createdBy": null, + "createdTime": "2026-02-02 08:15:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:35", + "echoMap": {}, + "alarmNo": "1530109433", + "alarmDate": "1769991328991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237742", + "createdBy": null, + "createdTime": "2026-02-02 08:14:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:02", + "echoMap": {}, + "alarmNo": "1530109432", + "alarmDate": "1769991294705", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113351232237591", + "createdBy": null, + "createdTime": "2026-02-02 08:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:45", + "echoMap": {}, + "alarmNo": "1530109431", + "alarmDate": "1769990806331", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113342642303634", + "createdBy": null, + "createdTime": "2026-02-02 08:05:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:18", + "echoMap": {}, + "alarmNo": "1530109430", + "alarmDate": "1769990705358", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303618", + "createdBy": null, + "createdTime": "2026-02-02 08:05:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:06", + "echoMap": {}, + "alarmNo": "1530109429", + "alarmDate": "1769990704522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303505", + "createdBy": null, + "createdTime": "2026-02-02 07:58:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:45", + "echoMap": {}, + "alarmNo": "1530109428", + "alarmDate": "1769990326332", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113342642303447", + "createdBy": null, + "createdTime": "2026-02-02 07:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:51", + "echoMap": {}, + "alarmNo": "1530109427", + "alarmDate": "1769990150327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303406", + "createdBy": null, + "createdTime": "2026-02-02 07:55:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:44", + "echoMap": {}, + "alarmNo": "1530109426", + "alarmDate": "1769990137542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303372", + "createdBy": null, + "createdTime": "2026-02-02 07:55:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:37", + "echoMap": {}, + "alarmNo": "1530109425", + "alarmDate": "1769990129727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303345", + "createdBy": null, + "createdTime": "2026-02-02 07:55:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:41", + "echoMap": {}, + "alarmNo": "1530109424", + "alarmDate": "1769990122003", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303295", + "createdBy": null, + "createdTime": "2026-02-02 07:55:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:06", + "echoMap": {}, + "alarmNo": "1530109423", + "alarmDate": "1769990104895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303132", + "createdBy": null, + "createdTime": "2026-02-02 07:45:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:51", + "echoMap": {}, + "alarmNo": "1530109422", + "alarmDate": "1769989549762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113342642303059", + "createdBy": null, + "createdTime": "2026-02-02 07:45:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:36", + "echoMap": {}, + "alarmNo": "1530109421", + "alarmDate": "1769989530388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113338347335722", + "createdBy": null, + "createdTime": "2026-02-02 07:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:42", + "echoMap": {}, + "alarmNo": "1530109420", + "alarmDate": "1769989494607", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113338347335715", + "createdBy": null, + "createdTime": "2026-02-02 07:44:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:45", + "echoMap": {}, + "alarmNo": "1530109419", + "alarmDate": "1769989486328", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113334052368860", + "createdBy": null, + "createdTime": "2026-02-02 07:35:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:51", + "echoMap": {}, + "alarmNo": "1530109418", + "alarmDate": "1769988927110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368785", + "createdBy": null, + "createdTime": "2026-02-02 07:35:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:01", + "echoMap": {}, + "alarmNo": "1530109417", + "alarmDate": "1769988899587", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368774", + "createdBy": null, + "createdTime": "2026-02-02 07:34:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:03", + "echoMap": {}, + "alarmNo": "1530109416", + "alarmDate": "1769988896966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368553", + "createdBy": null, + "createdTime": "2026-02-02 07:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:44", + "echoMap": {}, + "alarmNo": "1530109415", + "alarmDate": "1769988343348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368541", + "createdBy": null, + "createdTime": "2026-02-02 07:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:49", + "echoMap": {}, + "alarmNo": "1530109414", + "alarmDate": "1769988342114", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368536", + "createdBy": null, + "createdTime": "2026-02-02 07:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:35:24", + "echoMap": {}, + "alarmNo": "1530109413", + "alarmDate": "1769988341906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368528", + "createdBy": null, + "createdTime": "2026-02-02 07:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:45:42", + "echoMap": {}, + "alarmNo": "1530109412", + "alarmDate": "1769988341119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368526", + "createdBy": null, + "createdTime": "2026-02-02 07:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:09", + "echoMap": {}, + "alarmNo": "1530109411", + "alarmDate": "1769988341023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368515", + "createdBy": null, + "createdTime": "2026-02-02 07:25:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:51", + "echoMap": {}, + "alarmNo": "1530109410", + "alarmDate": "1769988338835", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368477", + "createdBy": null, + "createdTime": "2026-02-02 07:25:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:45", + "echoMap": {}, + "alarmNo": "1530109409", + "alarmDate": "1769988327692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060013", + "deviceName": "[307](10)新天地1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113334052368397", + "createdBy": null, + "createdTime": "2026-02-02 07:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:21", + "echoMap": {}, + "alarmNo": "1530109408", + "alarmDate": "1769988308718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113329757401114", + "createdBy": null, + "createdTime": "2026-02-02 07:24:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:28", + "echoMap": {}, + "alarmNo": "1530109407", + "alarmDate": "1769988292909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113329757401111", + "createdBy": null, + "createdTime": "2026-02-02 07:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:45", + "echoMap": {}, + "alarmNo": "1530109406", + "alarmDate": "1769988286390", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113325462434442", + "createdBy": null, + "createdTime": "2026-02-02 07:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:45", + "echoMap": {}, + "alarmNo": "1530109405", + "alarmDate": "1769988046316", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113325462434365", + "createdBy": null, + "createdTime": "2026-02-02 07:15:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:05", + "echoMap": {}, + "alarmNo": "1530109404", + "alarmDate": "1769987753958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434261", + "createdBy": null, + "createdTime": "2026-02-02 07:15:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:39", + "echoMap": {}, + "alarmNo": "1530109403", + "alarmDate": "1769987727569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434255", + "createdBy": null, + "createdTime": "2026-02-02 07:15:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:45", + "echoMap": {}, + "alarmNo": "1530109402", + "alarmDate": "1769987726751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434145", + "createdBy": null, + "createdTime": "2026-02-02 07:15:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:07", + "echoMap": {}, + "alarmNo": "1530109401", + "alarmDate": "1769987700552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060049", + "deviceName": "[327](10)新天地6#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434132", + "createdBy": null, + "createdTime": "2026-02-02 07:14:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:05", + "echoMap": {}, + "alarmNo": "1530109400", + "alarmDate": "1769987698806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060041", + "deviceName": "[321](10)新天地6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434118", + "createdBy": null, + "createdTime": "2026-02-02 07:14:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:03", + "echoMap": {}, + "alarmNo": "1530109399", + "alarmDate": "1769987696426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462434041", + "createdBy": null, + "createdTime": "2026-02-02 07:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:45", + "echoMap": {}, + "alarmNo": "1530109398", + "alarmDate": "1769987506420", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113325462434032", + "createdBy": null, + "createdTime": "2026-02-02 07:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:45", + "echoMap": {}, + "alarmNo": "1530109397", + "alarmDate": "1769987446267", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060055", + "deviceName": "[617](10)新天地环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113325462433924", + "createdBy": null, + "createdTime": "2026-02-02 07:05:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:51", + "echoMap": {}, + "alarmNo": "1530109396", + "alarmDate": "1769987145275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113321167466562", + "createdBy": null, + "createdTime": "2026-02-02 07:05:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:14", + "echoMap": {}, + "alarmNo": "1530109395", + "alarmDate": "1769987114491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499783", + "createdBy": null, + "createdTime": "2026-02-02 07:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:57", + "echoMap": {}, + "alarmNo": "1530109394", + "alarmDate": "1769987095653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499720", + "createdBy": null, + "createdTime": "2026-02-02 07:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:45", + "echoMap": {}, + "alarmNo": "1530109393", + "alarmDate": "1769986966364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113316872499636", + "createdBy": null, + "createdTime": "2026-02-02 06:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:45", + "echoMap": {}, + "alarmNo": "1530109392", + "alarmDate": "1769986666308", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113316872499549", + "createdBy": null, + "createdTime": "2026-02-02 06:55:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:40", + "echoMap": {}, + "alarmNo": "1530109391", + "alarmDate": "1769986539430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499456", + "createdBy": null, + "createdTime": "2026-02-02 06:55:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:12", + "echoMap": {}, + "alarmNo": "1530109390", + "alarmDate": "1769986511285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113316872499322", + "createdBy": null, + "createdTime": "2026-02-02 06:49:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1530109389", + "alarmDate": "1769986186334", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113308282565158", + "createdBy": null, + "createdTime": "2026-02-02 06:45:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:40", + "echoMap": {}, + "alarmNo": "1530109388", + "alarmDate": "1769985905501", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060065", + "deviceName": "[405](10)新天地3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113308282564687", + "createdBy": null, + "createdTime": "2026-02-02 06:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:21", + "echoMap": {}, + "alarmNo": "1530109387", + "alarmDate": "1769985293596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113303987597341", + "createdBy": null, + "createdTime": "2026-02-02 06:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:46", + "echoMap": {}, + "alarmNo": "1530109386", + "alarmDate": "1769984806569", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113299692630590", + "createdBy": null, + "createdTime": "2026-02-02 06:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:43", + "echoMap": {}, + "alarmNo": "1530109385", + "alarmDate": "1769984741669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113299692630524", + "createdBy": null, + "createdTime": "2026-02-02 06:25:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:27", + "echoMap": {}, + "alarmNo": "1530109384", + "alarmDate": "1769984725797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113299692630475", + "createdBy": null, + "createdTime": "2026-02-02 06:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:16", + "echoMap": {}, + "alarmNo": "1530109383", + "alarmDate": "1769984714807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060018", + "deviceName": "[209](10)新天地1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113299692630315", + "createdBy": null, + "createdTime": "2026-02-02 06:18:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:46", + "echoMap": {}, + "alarmNo": "1530109382", + "alarmDate": "1769984326576", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113299692630018", + "createdBy": null, + "createdTime": "2026-02-02 06:13:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:45", + "echoMap": {}, + "alarmNo": "1530109381", + "alarmDate": "1769984026562", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113291102696011", + "createdBy": null, + "createdTime": "2026-02-02 06:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:46", + "echoMap": {}, + "alarmNo": "1530109380", + "alarmDate": "1769983726495", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113291102695789", + "createdBy": null, + "createdTime": "2026-02-02 06:04:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:59", + "echoMap": {}, + "alarmNo": "1530109379", + "alarmDate": "1769983497871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695627", + "createdBy": null, + "createdTime": "2026-02-02 05:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:46", + "echoMap": {}, + "alarmNo": "1530109378", + "alarmDate": "1769983006503", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113291102695601", + "createdBy": null, + "createdTime": "2026-02-02 05:55:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:49", + "echoMap": {}, + "alarmNo": "1530109377", + "alarmDate": "1769982947683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695581", + "createdBy": null, + "createdTime": "2026-02-02 05:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:43", + "echoMap": {}, + "alarmNo": "1530109376", + "alarmDate": "1769982943306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060098", + "deviceName": "[359](10)新天地10-13换乘通道4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113291102695572", + "createdBy": null, + "createdTime": "2026-02-02 05:55:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:43", + "echoMap": {}, + "alarmNo": "1530109375", + "alarmDate": "1769982941914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113282512761395", + "createdBy": null, + "createdTime": "2026-02-02 05:45:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:45", + "echoMap": {}, + "alarmNo": "1530109374", + "alarmDate": "1769982346693", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1013060055", + "deviceName": "[617](10)新天地环控室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113282512761158", + "createdBy": null, + "createdTime": "2026-02-02 05:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:46", + "echoMap": {}, + "alarmNo": "1530109373", + "alarmDate": "1769982046725", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113282512760898", + "createdBy": null, + "createdTime": "2026-02-02 05:35:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:12", + "echoMap": {}, + "alarmNo": "1530109372", + "alarmDate": "1769981711082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113282512760881", + "createdBy": null, + "createdTime": "2026-02-02 05:35:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:09", + "echoMap": {}, + "alarmNo": "1530109371", + "alarmDate": "1769981708260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113273922826884", + "createdBy": null, + "createdTime": "2026-02-02 05:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:46", + "echoMap": {}, + "alarmNo": "1530109370", + "alarmDate": "1769981206500", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113273922826636", + "createdBy": null, + "createdTime": "2026-02-02 05:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:25:46", + "echoMap": {}, + "alarmNo": "1530109369", + "alarmDate": "1769980966602", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113265332892297", + "createdBy": null, + "createdTime": "2026-02-02 05:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:30", + "echoMap": {}, + "alarmNo": "1530109368", + "alarmDate": "1769979929199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113265332892292", + "createdBy": null, + "createdTime": "2026-02-02 05:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:30", + "echoMap": {}, + "alarmNo": "1530109367", + "alarmDate": "1769979928612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113265332892180", + "createdBy": null, + "createdTime": "2026-02-02 05:04:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:46", + "echoMap": {}, + "alarmNo": "1530109366", + "alarmDate": "1769979886610", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113265332891971", + "createdBy": null, + "createdTime": "2026-02-02 04:55:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:45", + "echoMap": {}, + "alarmNo": "1530109365", + "alarmDate": "1769979345172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113256742957720", + "createdBy": null, + "createdTime": "2026-02-02 04:55:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:04", + "echoMap": {}, + "alarmNo": "1530109364", + "alarmDate": "1769979304238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113256742957463", + "createdBy": null, + "createdTime": "2026-02-02 04:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:45", + "echoMap": {}, + "alarmNo": "1530109363", + "alarmDate": "1769978806547", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113248153023057", + "createdBy": null, + "createdTime": "2026-02-02 04:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:56", + "echoMap": {}, + "alarmNo": "1530109362", + "alarmDate": "1769978695425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153023050", + "createdBy": null, + "createdTime": "2026-02-02 04:44:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:56", + "echoMap": {}, + "alarmNo": "1530109361", + "alarmDate": "1769978694862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153022955", + "createdBy": null, + "createdTime": "2026-02-02 04:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:45", + "echoMap": {}, + "alarmNo": "1530109360", + "alarmDate": "1769978446602", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113248153022829", + "createdBy": null, + "createdTime": "2026-02-02 04:35:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:49", + "echoMap": {}, + "alarmNo": "1530109359", + "alarmDate": "1769978147725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153022820", + "createdBy": null, + "createdTime": "2026-02-02 04:35:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:48", + "echoMap": {}, + "alarmNo": "1530109358", + "alarmDate": "1769978147233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113248153022812", + "createdBy": null, + "createdTime": "2026-02-02 04:35:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:46", + "echoMap": {}, + "alarmNo": "1530109357", + "alarmDate": "1769978146563", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113243858055170", + "createdBy": null, + "createdTime": "2026-02-02 04:35:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:04", + "echoMap": {}, + "alarmNo": "1530109356", + "alarmDate": "1769978104691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113239563088398", + "createdBy": null, + "createdTime": "2026-02-02 04:33:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:45", + "echoMap": {}, + "alarmNo": "1530109355", + "alarmDate": "1769978026524", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113239563088351", + "createdBy": null, + "createdTime": "2026-02-02 04:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:46", + "echoMap": {}, + "alarmNo": "1530109354", + "alarmDate": "1769977846499", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113239563088318", + "createdBy": null, + "createdTime": "2026-02-02 04:27:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:46", + "echoMap": {}, + "alarmNo": "1530109353", + "alarmDate": "1769977666560", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113239563087924", + "createdBy": null, + "createdTime": "2026-02-02 04:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:05", + "echoMap": {}, + "alarmNo": "1530109352", + "alarmDate": "1769977517435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153815", + "createdBy": null, + "createdTime": "2026-02-02 04:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:23:46", + "echoMap": {}, + "alarmNo": "1530109351", + "alarmDate": "1769977366582", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113230973153719", + "createdBy": null, + "createdTime": "2026-02-02 04:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:46", + "echoMap": {}, + "alarmNo": "1530109350", + "alarmDate": "1769977066669", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113230973153705", + "createdBy": null, + "createdTime": "2026-02-02 04:15:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:02", + "echoMap": {}, + "alarmNo": "1530109349", + "alarmDate": "1769976952079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153324", + "createdBy": null, + "createdTime": "2026-02-02 04:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:17", + "echoMap": {}, + "alarmNo": "1530109348", + "alarmDate": "1769976916218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153310", + "createdBy": null, + "createdTime": "2026-02-02 04:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:27", + "echoMap": {}, + "alarmNo": "1530109347", + "alarmDate": "1769976915383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113230973153297", + "createdBy": null, + "createdTime": "2026-02-02 04:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:16", + "echoMap": {}, + "alarmNo": "1530109346", + "alarmDate": "1769976914605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113226678186019", + "createdBy": null, + "createdTime": "2026-02-02 04:15:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:17", + "echoMap": {}, + "alarmNo": "1530109345", + "alarmDate": "1769976907101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219256", + "createdBy": null, + "createdTime": "2026-02-02 04:14:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:40", + "echoMap": {}, + "alarmNo": "1530109344", + "alarmDate": "1769976893879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219245", + "createdBy": null, + "createdTime": "2026-02-02 04:14:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:40", + "echoMap": {}, + "alarmNo": "1530109343", + "alarmDate": "1769976892859", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219074", + "createdBy": null, + "createdTime": "2026-02-02 04:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:50", + "echoMap": {}, + "alarmNo": "1530109342", + "alarmDate": "1769976350104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113222383219014", + "createdBy": null, + "createdTime": "2026-02-02 04:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:06", + "echoMap": {}, + "alarmNo": "1530109341", + "alarmDate": "1769976342786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113213793284516", + "createdBy": null, + "createdTime": "2026-02-02 03:55:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:15", + "echoMap": {}, + "alarmNo": "1530109340", + "alarmDate": "1769975748098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113213793284439", + "createdBy": null, + "createdTime": "2026-02-02 03:55:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:38", + "echoMap": {}, + "alarmNo": "1530109339", + "alarmDate": "1769975738838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113213793284284", + "createdBy": null, + "createdTime": "2026-02-02 03:55:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:36", + "echoMap": {}, + "alarmNo": "1530109338", + "alarmDate": "1769975723206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203350051", + "createdBy": null, + "createdTime": "2026-02-02 03:45:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:27", + "echoMap": {}, + "alarmNo": "1530109337", + "alarmDate": "1769975151488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203350010", + "createdBy": null, + "createdTime": "2026-02-02 03:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:46", + "echoMap": {}, + "alarmNo": "1530109336", + "alarmDate": "1769975146483", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113205203349990", + "createdBy": null, + "createdTime": "2026-02-02 03:45:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:42", + "echoMap": {}, + "alarmNo": "1530109335", + "alarmDate": "1769975144234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349921", + "createdBy": null, + "createdTime": "2026-02-02 03:45:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:38", + "echoMap": {}, + "alarmNo": "1530109334", + "alarmDate": "1769975137389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349851", + "createdBy": null, + "createdTime": "2026-02-02 03:45:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:32", + "echoMap": {}, + "alarmNo": "1530109333", + "alarmDate": "1769975130603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349819", + "createdBy": null, + "createdTime": "2026-02-02 03:45:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:39", + "echoMap": {}, + "alarmNo": "1530109332", + "alarmDate": "1769975127502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113205203349531", + "createdBy": null, + "createdTime": "2026-02-02 03:44:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:16", + "echoMap": {}, + "alarmNo": "1530109331", + "alarmDate": "1769975094349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113200908382247", + "createdBy": null, + "createdTime": "2026-02-02 03:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:46", + "echoMap": {}, + "alarmNo": "1530109330", + "alarmDate": "1769974906516", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113188023480887", + "createdBy": null, + "createdTime": "2026-02-02 03:25:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:43", + "echoMap": {}, + "alarmNo": "1530109329", + "alarmDate": "1769973938667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480801", + "createdBy": null, + "createdTime": "2026-02-02 03:25:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:32", + "echoMap": {}, + "alarmNo": "1530109328", + "alarmDate": "1769973930492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060106", + "deviceName": "[205](10)新天地上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480657", + "createdBy": null, + "createdTime": "2026-02-02 03:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:38", + "echoMap": {}, + "alarmNo": "1530109327", + "alarmDate": "1769973914659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480558", + "createdBy": null, + "createdTime": "2026-02-02 03:25:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:06", + "echoMap": {}, + "alarmNo": "1530109326", + "alarmDate": "1769973904742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480504", + "createdBy": null, + "createdTime": "2026-02-02 03:24:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:00", + "echoMap": {}, + "alarmNo": "1530109325", + "alarmDate": "1769973899069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113188023480418", + "createdBy": null, + "createdTime": "2026-02-02 03:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:46", + "echoMap": {}, + "alarmNo": "1530109324", + "alarmDate": "1769973826430", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113188023480341", + "createdBy": null, + "createdTime": "2026-02-02 03:17:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:45", + "echoMap": {}, + "alarmNo": "1530109323", + "alarmDate": "1769973466546", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113183728513062", + "createdBy": null, + "createdTime": "2026-02-02 03:15:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:14", + "echoMap": {}, + "alarmNo": "1530109322", + "alarmDate": "1769973350559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113183728513051", + "createdBy": null, + "createdTime": "2026-02-02 03:15:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:51", + "echoMap": {}, + "alarmNo": "1530109321", + "alarmDate": "1769973349822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113183728513034", + "createdBy": null, + "createdTime": "2026-02-02 03:15:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:30", + "echoMap": {}, + "alarmNo": "1530109320", + "alarmDate": "1769973348524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113179433546162", + "createdBy": null, + "createdTime": "2026-02-02 03:15:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:51", + "echoMap": {}, + "alarmNo": "1530109319", + "alarmDate": "1769973326442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113179433545972", + "createdBy": null, + "createdTime": "2026-02-02 03:15:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:51", + "echoMap": {}, + "alarmNo": "1530109318", + "alarmDate": "1769973310625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113175138578483", + "createdBy": null, + "createdTime": "2026-02-02 03:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:45", + "echoMap": {}, + "alarmNo": "1530109317", + "alarmDate": "1769972866602", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113170843611742", + "createdBy": null, + "createdTime": "2026-02-02 03:05:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:26", + "echoMap": {}, + "alarmNo": "1530109316", + "alarmDate": "1769972739212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113170843611480", + "createdBy": null, + "createdTime": "2026-02-02 03:05:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:39", + "echoMap": {}, + "alarmNo": "1530109315", + "alarmDate": "1769972714163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113170843611272", + "createdBy": null, + "createdTime": "2026-02-02 03:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:58", + "echoMap": {}, + "alarmNo": "1530109314", + "alarmDate": "1769972694183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253677018", + "createdBy": null, + "createdTime": "2026-02-02 02:55:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:14", + "echoMap": {}, + "alarmNo": "1530109313", + "alarmDate": "1769972126918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253676972", + "createdBy": null, + "createdTime": "2026-02-02 02:55:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:24", + "echoMap": {}, + "alarmNo": "1530109312", + "alarmDate": "1769972123053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253676915", + "createdBy": null, + "createdTime": "2026-02-02 02:55:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:19", + "echoMap": {}, + "alarmNo": "1530109311", + "alarmDate": "1769972118147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113162253676591", + "createdBy": null, + "createdTime": "2026-02-02 02:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:45", + "echoMap": {}, + "alarmNo": "1530109310", + "alarmDate": "1769971846454", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113162253676577", + "createdBy": null, + "createdTime": "2026-02-02 02:48:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:45", + "echoMap": {}, + "alarmNo": "1530109309", + "alarmDate": "1769971726544", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113153663742536", + "createdBy": null, + "createdTime": "2026-02-02 02:45:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:27", + "echoMap": {}, + "alarmNo": "1530109308", + "alarmDate": "1769971538659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113153663742218", + "createdBy": null, + "createdTime": "2026-02-02 02:45:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:39", + "echoMap": {}, + "alarmNo": "1530109307", + "alarmDate": "1769971508616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113153663742078", + "createdBy": null, + "createdTime": "2026-02-02 02:44:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:11", + "echoMap": {}, + "alarmNo": "1530109306", + "alarmDate": "1769971495749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060116", + "deviceName": "[106](10)新天地上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113145073807995", + "createdBy": null, + "createdTime": "2026-02-02 02:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:09", + "echoMap": {}, + "alarmNo": "1530109305", + "alarmDate": "1769970945581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113145073807727", + "createdBy": null, + "createdTime": "2026-02-02 02:35:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:45", + "echoMap": {}, + "alarmNo": "1530109304", + "alarmDate": "1769970920363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113145073807478", + "createdBy": null, + "createdTime": "2026-02-02 02:34:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:20", + "echoMap": {}, + "alarmNo": "1530109303", + "alarmDate": "1769970896408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873362", + "createdBy": null, + "createdTime": "2026-02-02 02:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:44", + "echoMap": {}, + "alarmNo": "1530109302", + "alarmDate": "1769970343290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873288", + "createdBy": null, + "createdTime": "2026-02-02 02:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:37", + "echoMap": {}, + "alarmNo": "1530109301", + "alarmDate": "1769970336227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873255", + "createdBy": null, + "createdTime": "2026-02-02 02:25:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:56", + "echoMap": {}, + "alarmNo": "1530109300", + "alarmDate": "1769970333232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113136483873005", + "createdBy": null, + "createdTime": "2026-02-02 02:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:33", + "echoMap": {}, + "alarmNo": "1530109299", + "alarmDate": "1769970309191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113132188905543", + "createdBy": null, + "createdTime": "2026-02-02 02:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:46", + "echoMap": {}, + "alarmNo": "1530109298", + "alarmDate": "1769970046478", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113127893938767", + "createdBy": null, + "createdTime": "2026-02-02 02:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:09", + "echoMap": {}, + "alarmNo": "1530109297", + "alarmDate": "1769969746043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113123598971008", + "createdBy": null, + "createdTime": "2026-02-02 02:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:46", + "echoMap": {}, + "alarmNo": "1530109296", + "alarmDate": "1769969266570", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113123598970948", + "createdBy": null, + "createdTime": "2026-02-02 02:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:48", + "echoMap": {}, + "alarmNo": "1530109295", + "alarmDate": "1769969150229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304004153", + "createdBy": null, + "createdTime": "2026-02-02 02:05:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:38", + "echoMap": {}, + "alarmNo": "1530109294", + "alarmDate": "1769969126354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304004002", + "createdBy": null, + "createdTime": "2026-02-02 02:05:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:12", + "echoMap": {}, + "alarmNo": "1530109293", + "alarmDate": "1769969110643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304003928", + "createdBy": null, + "createdTime": "2026-02-02 02:05:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:05", + "echoMap": {}, + "alarmNo": "1530109292", + "alarmDate": "1769969103627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113119304003763", + "createdBy": null, + "createdTime": "2026-02-02 02:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:46", + "echoMap": {}, + "alarmNo": "1530109291", + "alarmDate": "1769968846584", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113097829167125", + "createdBy": null, + "createdTime": "2026-02-02 01:38:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:46", + "echoMap": {}, + "alarmNo": "1530109290", + "alarmDate": "1769967526589", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113093534200109", + "createdBy": null, + "createdTime": "2026-02-02 01:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:46", + "echoMap": {}, + "alarmNo": "1530109289", + "alarmDate": "1769967406590", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113093534199848", + "createdBy": null, + "createdTime": "2026-02-02 01:35:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:31", + "echoMap": {}, + "alarmNo": "1530109288", + "alarmDate": "1769967329857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113089239232579", + "createdBy": null, + "createdTime": "2026-02-02 01:35:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:25", + "echoMap": {}, + "alarmNo": "1530109287", + "alarmDate": "1769967323638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113084944265275", + "createdBy": null, + "createdTime": "2026-02-02 01:34:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:46", + "echoMap": {}, + "alarmNo": "1530109286", + "alarmDate": "1769967298891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113076354330841", + "createdBy": null, + "createdTime": "2026-02-02 01:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:45", + "echoMap": {}, + "alarmNo": "1530109285", + "alarmDate": "1769966866494", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113076354330644", + "createdBy": null, + "createdTime": "2026-02-02 01:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:59", + "echoMap": {}, + "alarmNo": "1530109284", + "alarmDate": "1769966735679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113059174461736", + "createdBy": null, + "createdTime": "2026-02-02 01:18:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:46", + "echoMap": {}, + "alarmNo": "1530109283", + "alarmDate": "1769966326547", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113059174461649", + "createdBy": null, + "createdTime": "2026-02-02 01:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:11", + "echoMap": {}, + "alarmNo": "1530109282", + "alarmDate": "1769966148349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113050584526984", + "createdBy": null, + "createdTime": "2026-02-02 01:15:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:17", + "echoMap": {}, + "alarmNo": "1530109281", + "alarmDate": "1769966110775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060048", + "deviceName": "[323](10)新天地6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113046289559620", + "createdBy": null, + "createdTime": "2026-02-02 01:15:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:18", + "echoMap": {}, + "alarmNo": "1530109280", + "alarmDate": "1769966100284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113046289559596", + "createdBy": null, + "createdTime": "2026-02-02 01:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:59", + "echoMap": {}, + "alarmNo": "1530109279", + "alarmDate": "1769966098295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113041994592461", + "createdBy": null, + "createdTime": "2026-02-02 01:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:46", + "echoMap": {}, + "alarmNo": "1530109278", + "alarmDate": "1769965966593", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113041994592416", + "createdBy": null, + "createdTime": "2026-02-02 01:09:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:46", + "echoMap": {}, + "alarmNo": "1530109277", + "alarmDate": "1769965786613", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723113041994592338", + "createdBy": null, + "createdTime": "2026-02-02 01:05:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:14", + "echoMap": {}, + "alarmNo": "1530109276", + "alarmDate": "1769965552176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113041994592316", + "createdBy": null, + "createdTime": "2026-02-02 01:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:51", + "echoMap": {}, + "alarmNo": "1530109275", + "alarmDate": "1769965550160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113037699625029", + "createdBy": null, + "createdTime": "2026-02-02 01:05:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:42", + "echoMap": {}, + "alarmNo": "1530109274", + "alarmDate": "1769965540808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113033404657889", + "createdBy": null, + "createdTime": "2026-02-02 01:05:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:40", + "echoMap": {}, + "alarmNo": "1530109273", + "alarmDate": "1769965528245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113033404657854", + "createdBy": null, + "createdTime": "2026-02-02 01:05:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:31", + "echoMap": {}, + "alarmNo": "1530109272", + "alarmDate": "1769965525019", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060050", + "deviceName": "[326](10)新天地6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113024814723290", + "createdBy": null, + "createdTime": "2026-02-02 01:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:16", + "echoMap": {}, + "alarmNo": "1530109271", + "alarmDate": "1769965494110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113024814723285", + "createdBy": null, + "createdTime": "2026-02-02 01:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:54", + "echoMap": {}, + "alarmNo": "1530109270", + "alarmDate": "1769965493695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060017", + "deviceName": "[303](10)新天地1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113020519755829", + "createdBy": null, + "createdTime": "2026-02-02 00:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:36", + "echoMap": {}, + "alarmNo": "1530109269", + "alarmDate": "1769964942891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113016224788528", + "createdBy": null, + "createdTime": "2026-02-02 00:55:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:43", + "echoMap": {}, + "alarmNo": "1530109268", + "alarmDate": "1769964918690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113016224788506", + "createdBy": null, + "createdTime": "2026-02-02 00:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:53", + "echoMap": {}, + "alarmNo": "1530109267", + "alarmDate": "1769964916833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723113007634854051", + "createdBy": null, + "createdTime": "2026-02-02 00:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:05", + "echoMap": {}, + "alarmNo": "1530109266", + "alarmDate": "1769964893889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112999044919379", + "createdBy": null, + "createdTime": "2026-02-02 00:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:19", + "echoMap": {}, + "alarmNo": "1530109265", + "alarmDate": "1769964318493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112994749952043", + "createdBy": null, + "createdTime": "2026-02-02 00:45:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:08", + "echoMap": {}, + "alarmNo": "1530109264", + "alarmDate": "1769964307116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112990454984899", + "createdBy": null, + "createdTime": "2026-02-02 00:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:45", + "echoMap": {}, + "alarmNo": "1530109263", + "alarmDate": "1769964106322", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112990454984721", + "createdBy": null, + "createdTime": "2026-02-02 00:35:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:19", + "echoMap": {}, + "alarmNo": "1530109262", + "alarmDate": "1769963743213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112990454984706", + "createdBy": null, + "createdTime": "2026-02-02 00:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:41", + "echoMap": {}, + "alarmNo": "1530109261", + "alarmDate": "1769963742051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112973275115875", + "createdBy": null, + "createdTime": "2026-02-02 00:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:45", + "echoMap": {}, + "alarmNo": "1530109260", + "alarmDate": "1769963506319", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112964685180929", + "createdBy": null, + "createdTime": "2026-02-02 00:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:45", + "echoMap": {}, + "alarmNo": "1530109259", + "alarmDate": "1769963026313", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112956095246408", + "createdBy": null, + "createdTime": "2026-02-02 00:15:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:41", + "echoMap": {}, + "alarmNo": "1530109258", + "alarmDate": "1769962539641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060066", + "deviceName": "[203](10)新天地厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112947505312178", + "createdBy": null, + "createdTime": "2026-02-02 00:15:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:26", + "echoMap": {}, + "alarmNo": "1530109257", + "alarmDate": "1769962525194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060058", + "deviceName": "[201](10)新天地厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112947505312029", + "createdBy": null, + "createdTime": "2026-02-02 00:15:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:30", + "echoMap": {}, + "alarmNo": "1530109256", + "alarmDate": "1769962512387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060046", + "deviceName": "[325](10)新天地6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112947505311789", + "createdBy": null, + "createdTime": "2026-02-02 00:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:45", + "echoMap": {}, + "alarmNo": "1530109255", + "alarmDate": "1769962366364", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1013030012", + "deviceName": "安防箱12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1013" + }, + { + "id": "723112938915377384", + "createdBy": null, + "createdTime": "2026-02-02 00:05:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:43", + "echoMap": {}, + "alarmNo": "1530109254", + "alarmDate": "1769961949463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112930325442659", + "createdBy": null, + "createdTime": "2026-02-02 00:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:49", + "echoMap": {}, + "alarmNo": "1530109253", + "alarmDate": "1769961894264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060047", + "deviceName": "[324](10)新天地6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + }, + { + "id": "723112930325442644", + "createdBy": null, + "createdTime": "2026-02-02 00:04:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:46", + "echoMap": {}, + "alarmNo": "1530109252", + "alarmDate": "1769961892942", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1013060015", + "deviceName": "[309](10)新天地1#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1013" + } + ] + }, + "1014": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112874489138261", + "createdBy": null, + "createdTime": "2026-02-02 00:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:06", + "echoMap": {}, + "alarmNo": "1550081443", + "alarmDate": "1769961707493", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112891669007438", + "createdBy": null, + "createdTime": "2026-02-02 00:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:34", + "echoMap": {}, + "alarmNo": "1550081444", + "alarmDate": "1769962352697", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112917438811233", + "createdBy": null, + "createdTime": "2026-02-02 00:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:48", + "echoMap": {}, + "alarmNo": "1550081445", + "alarmDate": "1769964154078", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112930323713024", + "createdBy": null, + "createdTime": "2026-02-02 01:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:44", + "echoMap": {}, + "alarmNo": "1550081446", + "alarmDate": "1769965303931", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112943208614948", + "createdBy": null, + "createdTime": "2026-02-02 01:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:37", + "echoMap": {}, + "alarmNo": "1550081447", + "alarmDate": "1769965955876", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112943208615132", + "createdBy": null, + "createdTime": "2026-02-02 01:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:53", + "echoMap": {}, + "alarmNo": "1550081448", + "alarmDate": "1769966512017", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112951798549607", + "createdBy": null, + "createdTime": "2026-02-02 01:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:43", + "echoMap": {}, + "alarmNo": "1550081449", + "alarmDate": "1769966803856", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112968978418743", + "createdBy": null, + "createdTime": "2026-02-02 01:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:56", + "echoMap": {}, + "alarmNo": "1550081450", + "alarmDate": "1769967761291", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112977568353399", + "createdBy": null, + "createdTime": "2026-02-02 01:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:44", + "echoMap": {}, + "alarmNo": "1550081451", + "alarmDate": "1769968603767", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112990453255194", + "createdBy": null, + "createdTime": "2026-02-02 02:12:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:45", + "echoMap": {}, + "alarmNo": "1550081452", + "alarmDate": "1769969564518", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112994748222597", + "createdBy": null, + "createdTime": "2026-02-02 02:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:03", + "echoMap": {}, + "alarmNo": "1550081453", + "alarmDate": "1769970121720", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113011928091703", + "createdBy": null, + "createdTime": "2026-02-02 02:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:53", + "echoMap": {}, + "alarmNo": "1550081454", + "alarmDate": "1769971364612", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113033402928135", + "createdBy": null, + "createdTime": "2026-02-02 03:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:40", + "echoMap": {}, + "alarmNo": "1550081455", + "alarmDate": "1769973159322", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113037697895541", + "createdBy": null, + "createdTime": "2026-02-02 03:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:57", + "echoMap": {}, + "alarmNo": "1550081456", + "alarmDate": "1769973715563", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113054877764734", + "createdBy": null, + "createdTime": "2026-02-02 03:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:03", + "echoMap": {}, + "alarmNo": "1550081457", + "alarmDate": "1769974968813", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113080647568537", + "createdBy": null, + "createdTime": "2026-02-02 04:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:09", + "echoMap": {}, + "alarmNo": "1550081458", + "alarmDate": "1769977328521", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113089237503031", + "createdBy": null, + "createdTime": "2026-02-02 04:28:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:44", + "echoMap": {}, + "alarmNo": "1550081459", + "alarmDate": "1769977724392", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113106417372326", + "createdBy": null, + "createdTime": "2026-02-02 04:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:14", + "echoMap": {}, + "alarmNo": "1550081460", + "alarmDate": "1769979133874", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113110712339529", + "createdBy": null, + "createdTime": "2026-02-02 05:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:44", + "echoMap": {}, + "alarmNo": "1550081461", + "alarmDate": "1769979644560", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274084", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:08", + "echoMap": {}, + "alarmNo": "1550081462", + "alarmDate": "1769980327719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274085", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:08", + "echoMap": {}, + "alarmNo": "1550081463", + "alarmDate": "1769980327724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274086", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:08", + "echoMap": {}, + "alarmNo": "1550081464", + "alarmDate": "1769980327728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274088", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:11", + "echoMap": {}, + "alarmNo": "1550081465", + "alarmDate": "1769980327732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241356", + "createdBy": null, + "createdTime": "2026-02-02 05:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:41", + "echoMap": {}, + "alarmNo": "1550081466", + "alarmDate": "1769980348860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241496", + "createdBy": null, + "createdTime": "2026-02-02 05:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:44", + "echoMap": {}, + "alarmNo": "1550081467", + "alarmDate": "1769980726422", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241582", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:56", + "echoMap": {}, + "alarmNo": "1550081468", + "alarmDate": "1769980916183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241583", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:56", + "echoMap": {}, + "alarmNo": "1550081469", + "alarmDate": "1769980916187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241584", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:56", + "echoMap": {}, + "alarmNo": "1550081470", + "alarmDate": "1769980916191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241585", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:01", + "echoMap": {}, + "alarmNo": "1550081471", + "alarmDate": "1769980916194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241634", + "createdBy": null, + "createdTime": "2026-02-02 05:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:23", + "echoMap": {}, + "alarmNo": "1550081472", + "alarmDate": "1769980937383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113127892208644", + "createdBy": null, + "createdTime": "2026-02-02 05:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:28", + "echoMap": {}, + "alarmNo": "1550081473", + "alarmDate": "1769980941288", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113127892208689", + "createdBy": null, + "createdTime": "2026-02-02 05:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:10", + "echoMap": {}, + "alarmNo": "1550081474", + "alarmDate": "1769980961227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113136482143262", + "createdBy": null, + "createdTime": "2026-02-02 05:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:34", + "echoMap": {}, + "alarmNo": "1550081475", + "alarmDate": "1769981542194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113140777110546", + "createdBy": null, + "createdTime": "2026-02-02 05:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:57", + "echoMap": {}, + "alarmNo": "1550081476", + "alarmDate": "1769981566260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113145072077857", + "createdBy": null, + "createdTime": "2026-02-02 05:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:22", + "echoMap": {}, + "alarmNo": "1550081477", + "alarmDate": "1769982129818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113149367045140", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:46", + "echoMap": {}, + "alarmNo": "1550081478", + "alarmDate": "1769982153595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113153662012455", + "createdBy": null, + "createdTime": "2026-02-02 05:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:10", + "echoMap": {}, + "alarmNo": "1550081479", + "alarmDate": "1769982717972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113157956979739", + "createdBy": null, + "createdTime": "2026-02-02 05:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:34", + "echoMap": {}, + "alarmNo": "1550081480", + "alarmDate": "1769982742002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113157956979804", + "createdBy": null, + "createdTime": "2026-02-02 05:52:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:52", + "echoMap": {}, + "alarmNo": "1550081481", + "alarmDate": "1769982765947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914332", + "createdBy": null, + "createdTime": "2026-02-02 06:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:12", + "echoMap": {}, + "alarmNo": "1550081482", + "alarmDate": "1769983331584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914333", + "createdBy": null, + "createdTime": "2026-02-02 06:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:12", + "echoMap": {}, + "alarmNo": "1550081483", + "alarmDate": "1769983331588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914334", + "createdBy": null, + "createdTime": "2026-02-02 06:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:16", + "echoMap": {}, + "alarmNo": "1550081484", + "alarmDate": "1769983331592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914408", + "createdBy": null, + "createdTime": "2026-02-02 06:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:39", + "echoMap": {}, + "alarmNo": "1550081485", + "alarmDate": "1769983354207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113175136848951", + "createdBy": null, + "createdTime": "2026-02-02 06:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:03", + "echoMap": {}, + "alarmNo": "1550081486", + "alarmDate": "1769983917012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113175136849036", + "createdBy": null, + "createdTime": "2026-02-02 06:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:35", + "echoMap": {}, + "alarmNo": "1550081487", + "alarmDate": "1769983942096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113179431816233", + "createdBy": null, + "createdTime": "2026-02-02 06:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:00", + "echoMap": {}, + "alarmNo": "1550081488", + "alarmDate": "1769983967122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113188021750785", + "createdBy": null, + "createdTime": "2026-02-02 06:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:24", + "echoMap": {}, + "alarmNo": "1550081489", + "alarmDate": "1769984538350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113188021750816", + "createdBy": null, + "createdTime": "2026-02-02 06:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:31", + "echoMap": {}, + "alarmNo": "1550081490", + "alarmDate": "1769984549926", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113192316718213", + "createdBy": null, + "createdTime": "2026-02-02 06:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:43", + "echoMap": {}, + "alarmNo": "1550081491", + "alarmDate": "1769985103694", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113192316718233", + "createdBy": null, + "createdTime": "2026-02-02 06:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:57", + "echoMap": {}, + "alarmNo": "1550081492", + "alarmDate": "1769985109580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113196611685419", + "createdBy": null, + "createdTime": "2026-02-02 06:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:27", + "echoMap": {}, + "alarmNo": "1550081493", + "alarmDate": "1769985134740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113200906652727", + "createdBy": null, + "createdTime": "2026-02-02 06:32:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:01", + "echoMap": {}, + "alarmNo": "1550081494", + "alarmDate": "1769985158725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113218086521914", + "createdBy": null, + "createdTime": "2026-02-02 06:52:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:34", + "echoMap": {}, + "alarmNo": "1550081495", + "alarmDate": "1769986352809", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113218086522022", + "createdBy": null, + "createdTime": "2026-02-02 06:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:43", + "echoMap": {}, + "alarmNo": "1550081496", + "alarmDate": "1769986663713", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113222381489200", + "createdBy": null, + "createdTime": "2026-02-02 07:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:54", + "echoMap": {}, + "alarmNo": "1550081497", + "alarmDate": "1769986908323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113226676456485", + "createdBy": null, + "createdTime": "2026-02-02 07:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:23", + "echoMap": {}, + "alarmNo": "1550081498", + "alarmDate": "1769986932294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113226676456526", + "createdBy": null, + "createdTime": "2026-02-02 07:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:31", + "echoMap": {}, + "alarmNo": "1550081499", + "alarmDate": "1769986945460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113226676456573", + "createdBy": null, + "createdTime": "2026-02-02 07:02:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:45", + "echoMap": {}, + "alarmNo": "1550081500", + "alarmDate": "1769986964463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113235266391149", + "createdBy": null, + "createdTime": "2026-02-02 07:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:27", + "echoMap": {}, + "alarmNo": "1550081501", + "alarmDate": "1769987533603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113243856325739", + "createdBy": null, + "createdTime": "2026-02-02 07:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:20", + "echoMap": {}, + "alarmNo": "1550081502", + "alarmDate": "1769988108920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113243856325761", + "createdBy": null, + "createdTime": "2026-02-02 07:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:18", + "echoMap": {}, + "alarmNo": "1550081503", + "alarmDate": "1769988115705", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113248151292981", + "createdBy": null, + "createdTime": "2026-02-02 07:22:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:39", + "echoMap": {}, + "alarmNo": "1550081504", + "alarmDate": "1769988146971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260235", + "createdBy": null, + "createdTime": "2026-02-02 07:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:36", + "echoMap": {}, + "alarmNo": "1550081505", + "alarmDate": "1769988154760", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260436", + "createdBy": null, + "createdTime": "2026-02-02 07:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:49", + "echoMap": {}, + "alarmNo": "1550081506", + "alarmDate": "1769988708982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060053", + "deviceName": "[329](10)老西门7#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260447", + "createdBy": null, + "createdTime": "2026-02-02 07:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:52", + "echoMap": {}, + "alarmNo": "1550081507", + "alarmDate": "1769988710925", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260475", + "createdBy": null, + "createdTime": "2026-02-02 07:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:10", + "echoMap": {}, + "alarmNo": "1550081508", + "alarmDate": "1769988717069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113261036194919", + "createdBy": null, + "createdTime": "2026-02-02 07:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:21", + "echoMap": {}, + "alarmNo": "1550081509", + "alarmDate": "1769988758325", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113261036194955", + "createdBy": null, + "createdTime": "2026-02-02 07:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:21", + "echoMap": {}, + "alarmNo": "1550081510", + "alarmDate": "1769988765211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113286805998719", + "createdBy": null, + "createdTime": "2026-02-02 07:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:40", + "echoMap": {}, + "alarmNo": "1550081511", + "alarmDate": "1769989958675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113291100965932", + "createdBy": null, + "createdTime": "2026-02-02 07:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:43", + "echoMap": {}, + "alarmNo": "1550081512", + "alarmDate": "1769990203704", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113295395933236", + "createdBy": null, + "createdTime": "2026-02-02 08:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:05", + "echoMap": {}, + "alarmNo": "1550081513", + "alarmDate": "1769990507471", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113295395933262", + "createdBy": null, + "createdTime": "2026-02-02 08:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:53", + "echoMap": {}, + "alarmNo": "1550081514", + "alarmDate": "1769990511850", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113295395933321", + "createdBy": null, + "createdTime": "2026-02-02 08:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:20", + "echoMap": {}, + "alarmNo": "1550081515", + "alarmDate": "1769990522868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802393", + "createdBy": null, + "createdTime": "2026-02-02 08:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:13", + "echoMap": {}, + "alarmNo": "1550081516", + "alarmDate": "1769991126399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802449", + "createdBy": null, + "createdTime": "2026-02-02 08:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:34", + "echoMap": {}, + "alarmNo": "1550081517", + "alarmDate": "1769991137946", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802492", + "createdBy": null, + "createdTime": "2026-02-02 08:12:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:39", + "echoMap": {}, + "alarmNo": "1550081518", + "alarmDate": "1769991147168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802520", + "createdBy": null, + "createdTime": "2026-02-02 08:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:17", + "echoMap": {}, + "alarmNo": "1550081519", + "alarmDate": "1769991152365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113316870769678", + "createdBy": null, + "createdTime": "2026-02-02 08:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:13:43", + "echoMap": {}, + "alarmNo": "1550081520", + "alarmDate": "1769991163714", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113325460704294", + "createdBy": null, + "createdTime": "2026-02-02 08:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:26", + "echoMap": {}, + "alarmNo": "1550081521", + "alarmDate": "1769991739767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113325460704329", + "createdBy": null, + "createdTime": "2026-02-02 08:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:35", + "echoMap": {}, + "alarmNo": "1550081522", + "alarmDate": "1769991748662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113329755671589", + "createdBy": null, + "createdTime": "2026-02-02 08:22:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:45", + "echoMap": {}, + "alarmNo": "1550081523", + "alarmDate": "1769991758781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113329755671597", + "createdBy": null, + "createdTime": "2026-02-02 08:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:42", + "echoMap": {}, + "alarmNo": "1550081524", + "alarmDate": "1769991760570", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113329755671625", + "createdBy": null, + "createdTime": "2026-02-02 08:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:47", + "echoMap": {}, + "alarmNo": "1550081525", + "alarmDate": "1769991766699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638866", + "createdBy": null, + "createdTime": "2026-02-02 08:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1550081526", + "alarmDate": "1769992303723", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638875", + "createdBy": null, + "createdTime": "2026-02-02 08:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:55", + "echoMap": {}, + "alarmNo": "1550081527", + "alarmDate": "1769992307885", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638885", + "createdBy": null, + "createdTime": "2026-02-02 08:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:09", + "echoMap": {}, + "alarmNo": "1550081528", + "alarmDate": "1769992308736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638925", + "createdBy": null, + "createdTime": "2026-02-02 08:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:56", + "echoMap": {}, + "alarmNo": "1550081529", + "alarmDate": "1769992314782", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113338345606309", + "createdBy": null, + "createdTime": "2026-02-02 08:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:53", + "echoMap": {}, + "alarmNo": "1550081530", + "alarmDate": "1769992351837", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113342640573453", + "createdBy": null, + "createdTime": "2026-02-02 08:32:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:54", + "echoMap": {}, + "alarmNo": "1550081531", + "alarmDate": "1769992359810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113346935540860", + "createdBy": null, + "createdTime": "2026-02-02 08:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:43", + "echoMap": {}, + "alarmNo": "1550081532", + "alarmDate": "1769992903712", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113351230508057", + "createdBy": null, + "createdTime": "2026-02-02 08:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:12", + "echoMap": {}, + "alarmNo": "1550081533", + "alarmDate": "1769992925360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113351230508093", + "createdBy": null, + "createdTime": "2026-02-02 08:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:24", + "echoMap": {}, + "alarmNo": "1550081534", + "alarmDate": "1769992931991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113364115410039", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:18", + "echoMap": {}, + "alarmNo": "1550081535", + "alarmDate": "1769993532200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113368410377268", + "createdBy": null, + "createdTime": "2026-02-02 08:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:08", + "echoMap": {}, + "alarmNo": "1550081536", + "alarmDate": "1769993562295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113368410377279", + "createdBy": null, + "createdTime": "2026-02-02 08:52:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:45", + "echoMap": {}, + "alarmNo": "1550081537", + "alarmDate": "1769993563555", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113372705344713", + "createdBy": null, + "createdTime": "2026-02-02 09:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:07", + "echoMap": {}, + "alarmNo": "1550081538", + "alarmDate": "1769994119192", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113372705344721", + "createdBy": null, + "createdTime": "2026-02-02 09:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:01", + "echoMap": {}, + "alarmNo": "1550081539", + "alarmDate": "1769994119751", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113381295279157", + "createdBy": null, + "createdTime": "2026-02-02 09:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:37", + "echoMap": {}, + "alarmNo": "1550081540", + "alarmDate": "1769994150246", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113381295279224", + "createdBy": null, + "createdTime": "2026-02-02 09:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:09", + "echoMap": {}, + "alarmNo": "1550081541", + "alarmDate": "1769994164546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113389885213883", + "createdBy": null, + "createdTime": "2026-02-02 09:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:22", + "echoMap": {}, + "alarmNo": "1550081542", + "alarmDate": "1769994754698", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113394180181026", + "createdBy": null, + "createdTime": "2026-02-02 09:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:53", + "echoMap": {}, + "alarmNo": "1550081543", + "alarmDate": "1769994767437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113398475148368", + "createdBy": null, + "createdTime": "2026-02-02 09:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:43", + "echoMap": {}, + "alarmNo": "1550081544", + "alarmDate": "1769995243709", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113398475148443", + "createdBy": null, + "createdTime": "2026-02-02 09:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:10", + "echoMap": {}, + "alarmNo": "1550081545", + "alarmDate": "1769995316884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113398475148492", + "createdBy": null, + "createdTime": "2026-02-02 09:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:30", + "echoMap": {}, + "alarmNo": "1550081546", + "alarmDate": "1769995324737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113407065082996", + "createdBy": null, + "createdTime": "2026-02-02 09:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:03", + "echoMap": {}, + "alarmNo": "1550081547", + "alarmDate": "1769995361728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113411360050250", + "createdBy": null, + "createdTime": "2026-02-02 09:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:52", + "echoMap": {}, + "alarmNo": "1550081548", + "alarmDate": "1769995908407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113415655017478", + "createdBy": null, + "createdTime": "2026-02-02 09:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:29", + "echoMap": {}, + "alarmNo": "1550081549", + "alarmDate": "1769995909533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113415655017552", + "createdBy": null, + "createdTime": "2026-02-02 09:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:08", + "echoMap": {}, + "alarmNo": "1550081550", + "alarmDate": "1769995926640", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113415655017660", + "createdBy": null, + "createdTime": "2026-02-02 09:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:35", + "echoMap": {}, + "alarmNo": "1550081551", + "alarmDate": "1769995949195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113424244952140", + "createdBy": null, + "createdTime": "2026-02-02 09:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:43", + "echoMap": {}, + "alarmNo": "1550081552", + "alarmDate": "1769996443718", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113424244952166", + "createdBy": null, + "createdTime": "2026-02-02 09:41:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:58", + "echoMap": {}, + "alarmNo": "1550081553", + "alarmDate": "1769996508009", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113428539919367", + "createdBy": null, + "createdTime": "2026-02-02 09:42:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:35", + "echoMap": {}, + "alarmNo": "1550081554", + "alarmDate": "1769996548435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113428539919428", + "createdBy": null, + "createdTime": "2026-02-02 09:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:47", + "echoMap": {}, + "alarmNo": "1550081555", + "alarmDate": "1769996561402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886816", + "createdBy": null, + "createdTime": "2026-02-02 09:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:50", + "echoMap": {}, + "alarmNo": "1550081557", + "alarmDate": "1769997107490", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886824", + "createdBy": null, + "createdTime": "2026-02-02 09:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:07", + "echoMap": {}, + "alarmNo": "1550081558", + "alarmDate": "1769997108604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886827", + "createdBy": null, + "createdTime": "2026-02-02 09:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:54", + "echoMap": {}, + "alarmNo": "1550081559", + "alarmDate": "1769997108725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113441424821313", + "createdBy": null, + "createdTime": "2026-02-02 09:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:39", + "echoMap": {}, + "alarmNo": "1550081560", + "alarmDate": "1769997151715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113441424821323", + "createdBy": null, + "createdTime": "2026-02-02 09:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:28", + "echoMap": {}, + "alarmNo": "1550081561", + "alarmDate": "1769997153534", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113441424821361", + "createdBy": null, + "createdTime": "2026-02-02 09:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:59", + "echoMap": {}, + "alarmNo": "1550081562", + "alarmDate": "1769997161108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113445719788544", + "createdBy": null, + "createdTime": "2026-02-02 10:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:53", + "echoMap": {}, + "alarmNo": "1550081563", + "alarmDate": "1769997707970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113445719788553", + "createdBy": null, + "createdTime": "2026-02-02 10:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:52", + "echoMap": {}, + "alarmNo": "1550081564", + "alarmDate": "1769997708989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113445719788606", + "createdBy": null, + "createdTime": "2026-02-02 10:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:54", + "echoMap": {}, + "alarmNo": "1550081565", + "alarmDate": "1769997724054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113450014755855", + "createdBy": null, + "createdTime": "2026-02-02 10:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:11", + "echoMap": {}, + "alarmNo": "1550081566", + "alarmDate": "1769997729574", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113450014755967", + "createdBy": null, + "createdTime": "2026-02-02 10:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:29", + "echoMap": {}, + "alarmNo": "1550081567", + "alarmDate": "1769997748989", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113458604690598", + "createdBy": null, + "createdTime": "2026-02-02 10:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:16", + "echoMap": {}, + "alarmNo": "1550081568", + "alarmDate": "1769998324031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113462899657742", + "createdBy": null, + "createdTime": "2026-02-02 10:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:24", + "echoMap": {}, + "alarmNo": "1550081569", + "alarmDate": "1769998332279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113467194625109", + "createdBy": null, + "createdTime": "2026-02-02 10:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:37", + "echoMap": {}, + "alarmNo": "1550081570", + "alarmDate": "1769998363068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113471489592340", + "createdBy": null, + "createdTime": "2026-02-02 10:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:53", + "echoMap": {}, + "alarmNo": "1550081571", + "alarmDate": "1769998908354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559628", + "createdBy": null, + "createdTime": "2026-02-02 10:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:20", + "echoMap": {}, + "alarmNo": "1550081572", + "alarmDate": "1769998925880", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559634", + "createdBy": null, + "createdTime": "2026-02-02 10:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:02", + "echoMap": {}, + "alarmNo": "1550081573", + "alarmDate": "1769998926789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559660", + "createdBy": null, + "createdTime": "2026-02-02 10:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:17", + "echoMap": {}, + "alarmNo": "1550081574", + "alarmDate": "1769998931342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559682", + "createdBy": null, + "createdTime": "2026-02-02 10:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:21", + "echoMap": {}, + "alarmNo": "1550081575", + "alarmDate": "1769998934511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559771", + "createdBy": null, + "createdTime": "2026-02-02 10:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:43", + "echoMap": {}, + "alarmNo": "1550081576", + "alarmDate": "1769998951873", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559831", + "createdBy": null, + "createdTime": "2026-02-02 10:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1550081577", + "alarmDate": "1769998962387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113484374494360", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1550081578", + "alarmDate": "1769999533491", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113484374494409", + "createdBy": null, + "createdTime": "2026-02-02 10:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1550081579", + "alarmDate": "1769999544467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113484374494494", + "createdBy": null, + "createdTime": "2026-02-02 10:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:09", + "echoMap": {}, + "alarmNo": "1550081580", + "alarmDate": "1769999563775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113492964428956", + "createdBy": null, + "createdTime": "2026-02-02 10:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:30", + "echoMap": {}, + "alarmNo": "1550081581", + "alarmDate": "1770000124936", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113492964429135", + "createdBy": null, + "createdTime": "2026-02-02 10:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:17", + "echoMap": {}, + "alarmNo": "1550081582", + "alarmDate": "1770000160970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113501554363492", + "createdBy": null, + "createdTime": "2026-02-02 10:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:11", + "echoMap": {}, + "alarmNo": "1550081583", + "alarmDate": "1770000708116", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113505849330708", + "createdBy": null, + "createdTime": "2026-02-02 10:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:12", + "echoMap": {}, + "alarmNo": "1550081584", + "alarmDate": "1770000759273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298127", + "createdBy": null, + "createdTime": "2026-02-02 11:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:58", + "echoMap": {}, + "alarmNo": "1550081585", + "alarmDate": "1770001308491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298140", + "createdBy": null, + "createdTime": "2026-02-02 11:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:58", + "echoMap": {}, + "alarmNo": "1550081586", + "alarmDate": "1770001310488", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298204", + "createdBy": null, + "createdTime": "2026-02-02 11:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:06", + "echoMap": {}, + "alarmNo": "1550081587", + "alarmDate": "1770001320234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298260", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:41", + "echoMap": {}, + "alarmNo": "1550081588", + "alarmDate": "1770001329598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298294", + "createdBy": null, + "createdTime": "2026-02-02 11:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:16", + "echoMap": {}, + "alarmNo": "1550081589", + "alarmDate": "1770001335340", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113514439265344", + "createdBy": null, + "createdTime": "2026-02-02 11:02:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:30", + "echoMap": {}, + "alarmNo": "1550081590", + "alarmDate": "1770001352617", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113518734232861", + "createdBy": null, + "createdTime": "2026-02-02 11:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:35", + "echoMap": {}, + "alarmNo": "1550081591", + "alarmDate": "1770001923923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113518734232891", + "createdBy": null, + "createdTime": "2026-02-02 11:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:23", + "echoMap": {}, + "alarmNo": "1550081592", + "alarmDate": "1770001930770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113518734232896", + "createdBy": null, + "createdTime": "2026-02-02 11:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:11", + "echoMap": {}, + "alarmNo": "1550081593", + "alarmDate": "1770001931229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113527324167184", + "createdBy": null, + "createdTime": "2026-02-02 11:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:42", + "echoMap": {}, + "alarmNo": "1550081594", + "alarmDate": "1770001955506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113527324167214", + "createdBy": null, + "createdTime": "2026-02-02 11:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:05", + "echoMap": {}, + "alarmNo": "1550081595", + "alarmDate": "1770001960802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113527324167425", + "createdBy": null, + "createdTime": "2026-02-02 11:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:59", + "echoMap": {}, + "alarmNo": "1550081597", + "alarmDate": "1770002513109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113535914101784", + "createdBy": null, + "createdTime": "2026-02-02 11:22:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:37", + "echoMap": {}, + "alarmNo": "1550081598", + "alarmDate": "1770002551250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113535914101830", + "createdBy": null, + "createdTime": "2026-02-02 11:22:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:48", + "echoMap": {}, + "alarmNo": "1550081599", + "alarmDate": "1770002560056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113535914102060", + "createdBy": null, + "createdTime": "2026-02-02 11:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:47", + "echoMap": {}, + "alarmNo": "1550081600", + "alarmDate": "1770003117858", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036356", + "createdBy": null, + "createdTime": "2026-02-02 11:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:18", + "echoMap": {}, + "alarmNo": "1550081601", + "alarmDate": "1770003137187", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036378", + "createdBy": null, + "createdTime": "2026-02-02 11:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:29", + "echoMap": {}, + "alarmNo": "1550081602", + "alarmDate": "1770003141548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036386", + "createdBy": null, + "createdTime": "2026-02-02 11:32:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:16", + "echoMap": {}, + "alarmNo": "1550081603", + "alarmDate": "1770003142855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036434", + "createdBy": null, + "createdTime": "2026-02-02 11:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:36", + "echoMap": {}, + "alarmNo": "1550081604", + "alarmDate": "1770003150378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036687", + "createdBy": null, + "createdTime": "2026-02-02 11:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:56", + "echoMap": {}, + "alarmNo": "1550081605", + "alarmDate": "1770003709739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036712", + "createdBy": null, + "createdTime": "2026-02-02 11:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:07", + "echoMap": {}, + "alarmNo": "1550081606", + "alarmDate": "1770003714403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113548799003655", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:17", + "echoMap": {}, + "alarmNo": "1550081607", + "alarmDate": "1770003719241", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113553093970960", + "createdBy": null, + "createdTime": "2026-02-02 11:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:20", + "echoMap": {}, + "alarmNo": "1550081608", + "alarmDate": "1770003733818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113557388938245", + "createdBy": null, + "createdTime": "2026-02-02 11:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:59", + "echoMap": {}, + "alarmNo": "1550081609", + "alarmDate": "1770004311517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113557388938287", + "createdBy": null, + "createdTime": "2026-02-02 11:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:04", + "echoMap": {}, + "alarmNo": "1550081610", + "alarmDate": "1770004318081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113561683905581", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:28", + "echoMap": {}, + "alarmNo": "1550081611", + "alarmDate": "1770004330464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113561683905653", + "createdBy": null, + "createdTime": "2026-02-02 11:52:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:36", + "echoMap": {}, + "alarmNo": "1550081612", + "alarmDate": "1770004343161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113561683905665", + "createdBy": null, + "createdTime": "2026-02-02 11:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:37", + "echoMap": {}, + "alarmNo": "1550081613", + "alarmDate": "1770004344803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840149", + "createdBy": null, + "createdTime": "2026-02-02 12:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:12", + "echoMap": {}, + "alarmNo": "1550081614", + "alarmDate": "1770004913172", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840275", + "createdBy": null, + "createdTime": "2026-02-02 12:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:19", + "echoMap": {}, + "alarmNo": "1550081615", + "alarmDate": "1770004937944", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840287", + "createdBy": null, + "createdTime": "2026-02-02 12:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:25", + "echoMap": {}, + "alarmNo": "1550081616", + "alarmDate": "1770004939463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840322", + "createdBy": null, + "createdTime": "2026-02-02 12:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:37", + "echoMap": {}, + "alarmNo": "1550081617", + "alarmDate": "1770004945044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774777", + "createdBy": null, + "createdTime": "2026-02-02 12:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:50", + "echoMap": {}, + "alarmNo": "1550081618", + "alarmDate": "1770005508338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774789", + "createdBy": null, + "createdTime": "2026-02-02 12:11:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:57", + "echoMap": {}, + "alarmNo": "1550081619", + "alarmDate": "1770005510623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774863", + "createdBy": null, + "createdTime": "2026-02-02 12:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:20", + "echoMap": {}, + "alarmNo": "1550081620", + "alarmDate": "1770005529304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774887", + "createdBy": null, + "createdTime": "2026-02-02 12:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:53", + "echoMap": {}, + "alarmNo": "1550081621", + "alarmDate": "1770005534533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863775000", + "createdBy": null, + "createdTime": "2026-02-02 12:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:51", + "echoMap": {}, + "alarmNo": "1550081622", + "alarmDate": "1770005559333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113587453709528", + "createdBy": null, + "createdTime": "2026-02-02 12:22:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:34", + "echoMap": {}, + "alarmNo": "1550081623", + "alarmDate": "1770006148146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113591748676622", + "createdBy": null, + "createdTime": "2026-02-02 12:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:51", + "echoMap": {}, + "alarmNo": "1550081624", + "alarmDate": "1770006708316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113596043643937", + "createdBy": null, + "createdTime": "2026-02-02 12:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:22", + "echoMap": {}, + "alarmNo": "1550081625", + "alarmDate": "1770006729790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113596043643979", + "createdBy": null, + "createdTime": "2026-02-02 12:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:18", + "echoMap": {}, + "alarmNo": "1550081626", + "alarmDate": "1770006736855", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113596043644024", + "createdBy": null, + "createdTime": "2026-02-02 12:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:23", + "echoMap": {}, + "alarmNo": "1550081627", + "alarmDate": "1770006745613", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113600338611264", + "createdBy": null, + "createdTime": "2026-02-02 12:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:56", + "echoMap": {}, + "alarmNo": "1550081628", + "alarmDate": "1770007309593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578501", + "createdBy": null, + "createdTime": "2026-02-02 12:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:05", + "echoMap": {}, + "alarmNo": "1550081629", + "alarmDate": "1770007312937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578577", + "createdBy": null, + "createdTime": "2026-02-02 12:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:14", + "echoMap": {}, + "alarmNo": "1550081630", + "alarmDate": "1770007327610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578662", + "createdBy": null, + "createdTime": "2026-02-02 12:42:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:35", + "echoMap": {}, + "alarmNo": "1550081631", + "alarmDate": "1770007343066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578736", + "createdBy": null, + "createdTime": "2026-02-02 12:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:08", + "echoMap": {}, + "alarmNo": "1550081632", + "alarmDate": "1770007357718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113608928545867", + "createdBy": null, + "createdTime": "2026-02-02 12:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:16", + "echoMap": {}, + "alarmNo": "1550081633", + "alarmDate": "1770007907482", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113613223513346", + "createdBy": null, + "createdTime": "2026-02-02 12:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:45", + "echoMap": {}, + "alarmNo": "1550081634", + "alarmDate": "1770007958968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113613223513365", + "createdBy": null, + "createdTime": "2026-02-02 12:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:50", + "echoMap": {}, + "alarmNo": "1550081635", + "alarmDate": "1770007962320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113621813447722", + "createdBy": null, + "createdTime": "2026-02-02 13:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:04", + "echoMap": {}, + "alarmNo": "1550081636", + "alarmDate": "1770008509204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113621813447905", + "createdBy": null, + "createdTime": "2026-02-02 13:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:21", + "echoMap": {}, + "alarmNo": "1550081637", + "alarmDate": "1770008539637", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113621813448046", + "createdBy": null, + "createdTime": "2026-02-02 13:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:44", + "echoMap": {}, + "alarmNo": "1550081638", + "alarmDate": "1770008567036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113630403382325", + "createdBy": null, + "createdTime": "2026-02-02 13:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:43", + "echoMap": {}, + "alarmNo": "1550081639", + "alarmDate": "1770009043701", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113630403382464", + "createdBy": null, + "createdTime": "2026-02-02 13:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:20", + "echoMap": {}, + "alarmNo": "1550081640", + "alarmDate": "1770009127687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113630403382585", + "createdBy": null, + "createdTime": "2026-02-02 13:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:32", + "echoMap": {}, + "alarmNo": "1550081641", + "alarmDate": "1770009146418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317082", + "createdBy": null, + "createdTime": "2026-02-02 13:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:03", + "echoMap": {}, + "alarmNo": "1550081642", + "alarmDate": "1770009716979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317160", + "createdBy": null, + "createdTime": "2026-02-02 13:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:16", + "echoMap": {}, + "alarmNo": "1550081643", + "alarmDate": "1770009729664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317163", + "createdBy": null, + "createdTime": "2026-02-02 13:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:16", + "echoMap": {}, + "alarmNo": "1550081644", + "alarmDate": "1770009729765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317212", + "createdBy": null, + "createdTime": "2026-02-02 13:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:39", + "echoMap": {}, + "alarmNo": "1550081645", + "alarmDate": "1770009735871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113647583251614", + "createdBy": null, + "createdTime": "2026-02-02 13:27:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:43", + "echoMap": {}, + "alarmNo": "1550081646", + "alarmDate": "1770010063713", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113647583251793", + "createdBy": null, + "createdTime": "2026-02-02 13:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:20", + "echoMap": {}, + "alarmNo": "1550081647", + "alarmDate": "1770010328258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113651878218822", + "createdBy": null, + "createdTime": "2026-02-02 13:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:22", + "echoMap": {}, + "alarmNo": "1550081648", + "alarmDate": "1770010341437", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186075", + "createdBy": null, + "createdTime": "2026-02-02 13:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:34", + "echoMap": {}, + "alarmNo": "1550081649", + "alarmDate": "1770010347950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186137", + "createdBy": null, + "createdTime": "2026-02-02 13:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:22", + "echoMap": {}, + "alarmNo": "1550081650", + "alarmDate": "1770010358346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186336", + "createdBy": null, + "createdTime": "2026-02-02 13:41:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:54", + "echoMap": {}, + "alarmNo": "1550081651", + "alarmDate": "1770010908391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186342", + "createdBy": null, + "createdTime": "2026-02-02 13:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:49", + "echoMap": {}, + "alarmNo": "1550081652", + "alarmDate": "1770010909298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113664763120682", + "createdBy": null, + "createdTime": "2026-02-02 13:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:30", + "echoMap": {}, + "alarmNo": "1550081653", + "alarmDate": "1770010944508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113664763120953", + "createdBy": null, + "createdTime": "2026-02-02 13:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:56", + "echoMap": {}, + "alarmNo": "1550081654", + "alarmDate": "1770011508110", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113664763120958", + "createdBy": null, + "createdTime": "2026-02-02 13:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:52", + "echoMap": {}, + "alarmNo": "1550081655", + "alarmDate": "1770011508723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113669058087986", + "createdBy": null, + "createdTime": "2026-02-02 13:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:27", + "echoMap": {}, + "alarmNo": "1550081656", + "alarmDate": "1770011535443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113673353055240", + "createdBy": null, + "createdTime": "2026-02-02 13:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:29", + "echoMap": {}, + "alarmNo": "1550081657", + "alarmDate": "1770011541806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113673353055533", + "createdBy": null, + "createdTime": "2026-02-02 14:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1550081658", + "alarmDate": "1770012113964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113677648022537", + "createdBy": null, + "createdTime": "2026-02-02 14:02:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:23", + "echoMap": {}, + "alarmNo": "1550081659", + "alarmDate": "1770012142265", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113677648022574", + "createdBy": null, + "createdTime": "2026-02-02 14:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:01", + "echoMap": {}, + "alarmNo": "1550081660", + "alarmDate": "1770012150642", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113681942990033", + "createdBy": null, + "createdTime": "2026-02-02 14:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:51", + "echoMap": {}, + "alarmNo": "1550081661", + "alarmDate": "1770012708306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113681942990069", + "createdBy": null, + "createdTime": "2026-02-02 14:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:07", + "echoMap": {}, + "alarmNo": "1550081662", + "alarmDate": "1770012714220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113681942990171", + "createdBy": null, + "createdTime": "2026-02-02 14:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:21", + "echoMap": {}, + "alarmNo": "1550081663", + "alarmDate": "1770012733869", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113690532924416", + "createdBy": null, + "createdTime": "2026-02-02 14:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:37", + "echoMap": {}, + "alarmNo": "1550081664", + "alarmDate": "1770012757373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113690532924446", + "createdBy": null, + "createdTime": "2026-02-02 14:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:57", + "echoMap": {}, + "alarmNo": "1550081665", + "alarmDate": "1770012762966", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113694827891783", + "createdBy": null, + "createdTime": "2026-02-02 14:22:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:45", + "echoMap": {}, + "alarmNo": "1550081666", + "alarmDate": "1770013364692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859239", + "createdBy": null, + "createdTime": "2026-02-02 14:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:23", + "echoMap": {}, + "alarmNo": "1550081667", + "alarmDate": "1770013925322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859248", + "createdBy": null, + "createdTime": "2026-02-02 14:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1550081668", + "alarmDate": "1770013926765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859326", + "createdBy": null, + "createdTime": "2026-02-02 14:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:25", + "echoMap": {}, + "alarmNo": "1550081669", + "alarmDate": "1770013944091", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859352", + "createdBy": null, + "createdTime": "2026-02-02 14:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:43", + "echoMap": {}, + "alarmNo": "1550081670", + "alarmDate": "1770013951411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113703417826312", + "createdBy": null, + "createdTime": "2026-02-02 14:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:41", + "echoMap": {}, + "alarmNo": "1550081671", + "alarmDate": "1770013961424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113703417826359", + "createdBy": null, + "createdTime": "2026-02-02 14:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "alarmNo": "1550081672", + "alarmDate": "1770014023789", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113707712793678", + "createdBy": null, + "createdTime": "2026-02-02 14:39:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:44", + "echoMap": {}, + "alarmNo": "1550081673", + "alarmDate": "1770014383805", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113432834886703", + "createdBy": null, + "createdTime": "2026-02-02 09:44:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:46", + "echoMap": {}, + "alarmNo": "1550081556", + "alarmDate": "1769996686050", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014030007", + "deviceName": "安防箱7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1014" + }, + { + "id": "723113527324167362", + "createdBy": null, + "createdTime": "2026-02-02 11:19:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:44", + "echoMap": {}, + "alarmNo": "1550081596", + "alarmDate": "1770002384808", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1014030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1014" + }, + { + "id": "723113707712793682", + "createdBy": null, + "createdTime": "2026-02-02 14:39:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:45", + "echoMap": {}, + "alarmNo": "1550081674", + "alarmDate": "1770014384710", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014030005", + "deviceName": "安防箱5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1014" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113707712793682", + "createdBy": null, + "createdTime": "2026-02-02 14:39:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:45", + "echoMap": {}, + "alarmNo": "1550081674", + "alarmDate": "1770014384710", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014030005", + "deviceName": "安防箱5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1014" + }, + { + "id": "723113707712793678", + "createdBy": null, + "createdTime": "2026-02-02 14:39:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:44", + "echoMap": {}, + "alarmNo": "1550081673", + "alarmDate": "1770014383805", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113703417826359", + "createdBy": null, + "createdTime": "2026-02-02 14:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "alarmNo": "1550081672", + "alarmDate": "1770014023789", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113703417826312", + "createdBy": null, + "createdTime": "2026-02-02 14:32:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:41", + "echoMap": {}, + "alarmNo": "1550081671", + "alarmDate": "1770013961424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859352", + "createdBy": null, + "createdTime": "2026-02-02 14:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:43", + "echoMap": {}, + "alarmNo": "1550081670", + "alarmDate": "1770013951411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859326", + "createdBy": null, + "createdTime": "2026-02-02 14:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:25", + "echoMap": {}, + "alarmNo": "1550081669", + "alarmDate": "1770013944091", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859248", + "createdBy": null, + "createdTime": "2026-02-02 14:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1550081668", + "alarmDate": "1770013926765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113699122859239", + "createdBy": null, + "createdTime": "2026-02-02 14:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:23", + "echoMap": {}, + "alarmNo": "1550081667", + "alarmDate": "1770013925322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113694827891783", + "createdBy": null, + "createdTime": "2026-02-02 14:22:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:45", + "echoMap": {}, + "alarmNo": "1550081666", + "alarmDate": "1770013364692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113690532924446", + "createdBy": null, + "createdTime": "2026-02-02 14:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:57", + "echoMap": {}, + "alarmNo": "1550081665", + "alarmDate": "1770012762966", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113690532924416", + "createdBy": null, + "createdTime": "2026-02-02 14:12:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:37", + "echoMap": {}, + "alarmNo": "1550081664", + "alarmDate": "1770012757373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113681942990171", + "createdBy": null, + "createdTime": "2026-02-02 14:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:21", + "echoMap": {}, + "alarmNo": "1550081663", + "alarmDate": "1770012733869", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113681942990069", + "createdBy": null, + "createdTime": "2026-02-02 14:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:07", + "echoMap": {}, + "alarmNo": "1550081662", + "alarmDate": "1770012714220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113681942990033", + "createdBy": null, + "createdTime": "2026-02-02 14:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:51", + "echoMap": {}, + "alarmNo": "1550081661", + "alarmDate": "1770012708306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113677648022574", + "createdBy": null, + "createdTime": "2026-02-02 14:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:01", + "echoMap": {}, + "alarmNo": "1550081660", + "alarmDate": "1770012150642", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113677648022537", + "createdBy": null, + "createdTime": "2026-02-02 14:02:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:23", + "echoMap": {}, + "alarmNo": "1550081659", + "alarmDate": "1770012142265", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113673353055533", + "createdBy": null, + "createdTime": "2026-02-02 14:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1550081658", + "alarmDate": "1770012113964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113673353055240", + "createdBy": null, + "createdTime": "2026-02-02 13:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:29", + "echoMap": {}, + "alarmNo": "1550081657", + "alarmDate": "1770011541806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113669058087986", + "createdBy": null, + "createdTime": "2026-02-02 13:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:27", + "echoMap": {}, + "alarmNo": "1550081656", + "alarmDate": "1770011535443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113664763120958", + "createdBy": null, + "createdTime": "2026-02-02 13:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:52", + "echoMap": {}, + "alarmNo": "1550081655", + "alarmDate": "1770011508723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113664763120953", + "createdBy": null, + "createdTime": "2026-02-02 13:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:56", + "echoMap": {}, + "alarmNo": "1550081654", + "alarmDate": "1770011508110", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113664763120682", + "createdBy": null, + "createdTime": "2026-02-02 13:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:30", + "echoMap": {}, + "alarmNo": "1550081653", + "alarmDate": "1770010944508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186342", + "createdBy": null, + "createdTime": "2026-02-02 13:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:49", + "echoMap": {}, + "alarmNo": "1550081652", + "alarmDate": "1770010909298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186336", + "createdBy": null, + "createdTime": "2026-02-02 13:41:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:54", + "echoMap": {}, + "alarmNo": "1550081651", + "alarmDate": "1770010908391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186137", + "createdBy": null, + "createdTime": "2026-02-02 13:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:22", + "echoMap": {}, + "alarmNo": "1550081650", + "alarmDate": "1770010358346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113656173186075", + "createdBy": null, + "createdTime": "2026-02-02 13:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:34", + "echoMap": {}, + "alarmNo": "1550081649", + "alarmDate": "1770010347950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113651878218822", + "createdBy": null, + "createdTime": "2026-02-02 13:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:22", + "echoMap": {}, + "alarmNo": "1550081648", + "alarmDate": "1770010341437", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113647583251793", + "createdBy": null, + "createdTime": "2026-02-02 13:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:20", + "echoMap": {}, + "alarmNo": "1550081647", + "alarmDate": "1770010328258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113647583251614", + "createdBy": null, + "createdTime": "2026-02-02 13:27:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:43", + "echoMap": {}, + "alarmNo": "1550081646", + "alarmDate": "1770010063713", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317212", + "createdBy": null, + "createdTime": "2026-02-02 13:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:39", + "echoMap": {}, + "alarmNo": "1550081645", + "alarmDate": "1770009735871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317163", + "createdBy": null, + "createdTime": "2026-02-02 13:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:16", + "echoMap": {}, + "alarmNo": "1550081644", + "alarmDate": "1770009729765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317160", + "createdBy": null, + "createdTime": "2026-02-02 13:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:16", + "echoMap": {}, + "alarmNo": "1550081643", + "alarmDate": "1770009729664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113638993317082", + "createdBy": null, + "createdTime": "2026-02-02 13:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:03", + "echoMap": {}, + "alarmNo": "1550081642", + "alarmDate": "1770009716979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113630403382585", + "createdBy": null, + "createdTime": "2026-02-02 13:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:32", + "echoMap": {}, + "alarmNo": "1550081641", + "alarmDate": "1770009146418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113630403382464", + "createdBy": null, + "createdTime": "2026-02-02 13:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:20", + "echoMap": {}, + "alarmNo": "1550081640", + "alarmDate": "1770009127687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113630403382325", + "createdBy": null, + "createdTime": "2026-02-02 13:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:43", + "echoMap": {}, + "alarmNo": "1550081639", + "alarmDate": "1770009043701", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113621813448046", + "createdBy": null, + "createdTime": "2026-02-02 13:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:44", + "echoMap": {}, + "alarmNo": "1550081638", + "alarmDate": "1770008567036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113621813447905", + "createdBy": null, + "createdTime": "2026-02-02 13:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:21", + "echoMap": {}, + "alarmNo": "1550081637", + "alarmDate": "1770008539637", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113621813447722", + "createdBy": null, + "createdTime": "2026-02-02 13:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:04", + "echoMap": {}, + "alarmNo": "1550081636", + "alarmDate": "1770008509204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113613223513365", + "createdBy": null, + "createdTime": "2026-02-02 12:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:50", + "echoMap": {}, + "alarmNo": "1550081635", + "alarmDate": "1770007962320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113613223513346", + "createdBy": null, + "createdTime": "2026-02-02 12:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:45", + "echoMap": {}, + "alarmNo": "1550081634", + "alarmDate": "1770007958968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113608928545867", + "createdBy": null, + "createdTime": "2026-02-02 12:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:16", + "echoMap": {}, + "alarmNo": "1550081633", + "alarmDate": "1770007907482", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578736", + "createdBy": null, + "createdTime": "2026-02-02 12:42:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:08", + "echoMap": {}, + "alarmNo": "1550081632", + "alarmDate": "1770007357718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578662", + "createdBy": null, + "createdTime": "2026-02-02 12:42:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:35", + "echoMap": {}, + "alarmNo": "1550081631", + "alarmDate": "1770007343066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578577", + "createdBy": null, + "createdTime": "2026-02-02 12:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:14", + "echoMap": {}, + "alarmNo": "1550081630", + "alarmDate": "1770007327610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113604633578501", + "createdBy": null, + "createdTime": "2026-02-02 12:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:05", + "echoMap": {}, + "alarmNo": "1550081629", + "alarmDate": "1770007312937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113600338611264", + "createdBy": null, + "createdTime": "2026-02-02 12:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:56", + "echoMap": {}, + "alarmNo": "1550081628", + "alarmDate": "1770007309593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113596043644024", + "createdBy": null, + "createdTime": "2026-02-02 12:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:23", + "echoMap": {}, + "alarmNo": "1550081627", + "alarmDate": "1770006745613", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113596043643979", + "createdBy": null, + "createdTime": "2026-02-02 12:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:18", + "echoMap": {}, + "alarmNo": "1550081626", + "alarmDate": "1770006736855", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113596043643937", + "createdBy": null, + "createdTime": "2026-02-02 12:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:22", + "echoMap": {}, + "alarmNo": "1550081625", + "alarmDate": "1770006729790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113591748676622", + "createdBy": null, + "createdTime": "2026-02-02 12:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:51", + "echoMap": {}, + "alarmNo": "1550081624", + "alarmDate": "1770006708316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113587453709528", + "createdBy": null, + "createdTime": "2026-02-02 12:22:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:34", + "echoMap": {}, + "alarmNo": "1550081623", + "alarmDate": "1770006148146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863775000", + "createdBy": null, + "createdTime": "2026-02-02 12:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:51", + "echoMap": {}, + "alarmNo": "1550081622", + "alarmDate": "1770005559333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774887", + "createdBy": null, + "createdTime": "2026-02-02 12:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:53", + "echoMap": {}, + "alarmNo": "1550081621", + "alarmDate": "1770005534533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774863", + "createdBy": null, + "createdTime": "2026-02-02 12:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:20", + "echoMap": {}, + "alarmNo": "1550081620", + "alarmDate": "1770005529304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774789", + "createdBy": null, + "createdTime": "2026-02-02 12:11:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:57", + "echoMap": {}, + "alarmNo": "1550081619", + "alarmDate": "1770005510623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113578863774777", + "createdBy": null, + "createdTime": "2026-02-02 12:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:50", + "echoMap": {}, + "alarmNo": "1550081618", + "alarmDate": "1770005508338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840322", + "createdBy": null, + "createdTime": "2026-02-02 12:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:37", + "echoMap": {}, + "alarmNo": "1550081617", + "alarmDate": "1770004945044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840287", + "createdBy": null, + "createdTime": "2026-02-02 12:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:25", + "echoMap": {}, + "alarmNo": "1550081616", + "alarmDate": "1770004939463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840275", + "createdBy": null, + "createdTime": "2026-02-02 12:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:19", + "echoMap": {}, + "alarmNo": "1550081615", + "alarmDate": "1770004937944", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113570273840149", + "createdBy": null, + "createdTime": "2026-02-02 12:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:12", + "echoMap": {}, + "alarmNo": "1550081614", + "alarmDate": "1770004913172", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113561683905665", + "createdBy": null, + "createdTime": "2026-02-02 11:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:37", + "echoMap": {}, + "alarmNo": "1550081613", + "alarmDate": "1770004344803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113561683905653", + "createdBy": null, + "createdTime": "2026-02-02 11:52:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:36", + "echoMap": {}, + "alarmNo": "1550081612", + "alarmDate": "1770004343161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113561683905581", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:28", + "echoMap": {}, + "alarmNo": "1550081611", + "alarmDate": "1770004330464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113557388938287", + "createdBy": null, + "createdTime": "2026-02-02 11:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:04", + "echoMap": {}, + "alarmNo": "1550081610", + "alarmDate": "1770004318081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113557388938245", + "createdBy": null, + "createdTime": "2026-02-02 11:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:59", + "echoMap": {}, + "alarmNo": "1550081609", + "alarmDate": "1770004311517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113553093970960", + "createdBy": null, + "createdTime": "2026-02-02 11:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:20", + "echoMap": {}, + "alarmNo": "1550081608", + "alarmDate": "1770003733818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113548799003655", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:17", + "echoMap": {}, + "alarmNo": "1550081607", + "alarmDate": "1770003719241", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036712", + "createdBy": null, + "createdTime": "2026-02-02 11:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:07", + "echoMap": {}, + "alarmNo": "1550081606", + "alarmDate": "1770003714403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036687", + "createdBy": null, + "createdTime": "2026-02-02 11:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:56", + "echoMap": {}, + "alarmNo": "1550081605", + "alarmDate": "1770003709739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036434", + "createdBy": null, + "createdTime": "2026-02-02 11:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:36", + "echoMap": {}, + "alarmNo": "1550081604", + "alarmDate": "1770003150378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036386", + "createdBy": null, + "createdTime": "2026-02-02 11:32:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:16", + "echoMap": {}, + "alarmNo": "1550081603", + "alarmDate": "1770003142855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036378", + "createdBy": null, + "createdTime": "2026-02-02 11:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:29", + "echoMap": {}, + "alarmNo": "1550081602", + "alarmDate": "1770003141548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113544504036356", + "createdBy": null, + "createdTime": "2026-02-02 11:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:18", + "echoMap": {}, + "alarmNo": "1550081601", + "alarmDate": "1770003137187", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113535914102060", + "createdBy": null, + "createdTime": "2026-02-02 11:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:47", + "echoMap": {}, + "alarmNo": "1550081600", + "alarmDate": "1770003117858", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113535914101830", + "createdBy": null, + "createdTime": "2026-02-02 11:22:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:48", + "echoMap": {}, + "alarmNo": "1550081599", + "alarmDate": "1770002560056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113535914101784", + "createdBy": null, + "createdTime": "2026-02-02 11:22:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:37", + "echoMap": {}, + "alarmNo": "1550081598", + "alarmDate": "1770002551250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113527324167425", + "createdBy": null, + "createdTime": "2026-02-02 11:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:59", + "echoMap": {}, + "alarmNo": "1550081597", + "alarmDate": "1770002513109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113527324167362", + "createdBy": null, + "createdTime": "2026-02-02 11:19:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:44", + "echoMap": {}, + "alarmNo": "1550081596", + "alarmDate": "1770002384808", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1014030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1014" + }, + { + "id": "723113527324167214", + "createdBy": null, + "createdTime": "2026-02-02 11:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:05", + "echoMap": {}, + "alarmNo": "1550081595", + "alarmDate": "1770001960802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113527324167184", + "createdBy": null, + "createdTime": "2026-02-02 11:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:42", + "echoMap": {}, + "alarmNo": "1550081594", + "alarmDate": "1770001955506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113518734232896", + "createdBy": null, + "createdTime": "2026-02-02 11:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:11", + "echoMap": {}, + "alarmNo": "1550081593", + "alarmDate": "1770001931229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113518734232891", + "createdBy": null, + "createdTime": "2026-02-02 11:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:23", + "echoMap": {}, + "alarmNo": "1550081592", + "alarmDate": "1770001930770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113518734232861", + "createdBy": null, + "createdTime": "2026-02-02 11:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:35", + "echoMap": {}, + "alarmNo": "1550081591", + "alarmDate": "1770001923923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113514439265344", + "createdBy": null, + "createdTime": "2026-02-02 11:02:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:30", + "echoMap": {}, + "alarmNo": "1550081590", + "alarmDate": "1770001352617", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298294", + "createdBy": null, + "createdTime": "2026-02-02 11:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:16", + "echoMap": {}, + "alarmNo": "1550081589", + "alarmDate": "1770001335340", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298260", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:41", + "echoMap": {}, + "alarmNo": "1550081588", + "alarmDate": "1770001329598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298204", + "createdBy": null, + "createdTime": "2026-02-02 11:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:06", + "echoMap": {}, + "alarmNo": "1550081587", + "alarmDate": "1770001320234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298140", + "createdBy": null, + "createdTime": "2026-02-02 11:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:58", + "echoMap": {}, + "alarmNo": "1550081586", + "alarmDate": "1770001310488", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113510144298127", + "createdBy": null, + "createdTime": "2026-02-02 11:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:58", + "echoMap": {}, + "alarmNo": "1550081585", + "alarmDate": "1770001308491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113505849330708", + "createdBy": null, + "createdTime": "2026-02-02 10:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:12", + "echoMap": {}, + "alarmNo": "1550081584", + "alarmDate": "1770000759273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113501554363492", + "createdBy": null, + "createdTime": "2026-02-02 10:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:11", + "echoMap": {}, + "alarmNo": "1550081583", + "alarmDate": "1770000708116", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113492964429135", + "createdBy": null, + "createdTime": "2026-02-02 10:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:17", + "echoMap": {}, + "alarmNo": "1550081582", + "alarmDate": "1770000160970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113492964428956", + "createdBy": null, + "createdTime": "2026-02-02 10:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:30", + "echoMap": {}, + "alarmNo": "1550081581", + "alarmDate": "1770000124936", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113484374494494", + "createdBy": null, + "createdTime": "2026-02-02 10:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:09", + "echoMap": {}, + "alarmNo": "1550081580", + "alarmDate": "1769999563775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113484374494409", + "createdBy": null, + "createdTime": "2026-02-02 10:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1550081579", + "alarmDate": "1769999544467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113484374494360", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1550081578", + "alarmDate": "1769999533491", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559831", + "createdBy": null, + "createdTime": "2026-02-02 10:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:14", + "echoMap": {}, + "alarmNo": "1550081577", + "alarmDate": "1769998962387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559771", + "createdBy": null, + "createdTime": "2026-02-02 10:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:43", + "echoMap": {}, + "alarmNo": "1550081576", + "alarmDate": "1769998951873", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559682", + "createdBy": null, + "createdTime": "2026-02-02 10:22:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:21", + "echoMap": {}, + "alarmNo": "1550081575", + "alarmDate": "1769998934511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559660", + "createdBy": null, + "createdTime": "2026-02-02 10:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:17", + "echoMap": {}, + "alarmNo": "1550081574", + "alarmDate": "1769998931342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559634", + "createdBy": null, + "createdTime": "2026-02-02 10:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:02", + "echoMap": {}, + "alarmNo": "1550081573", + "alarmDate": "1769998926789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113475784559628", + "createdBy": null, + "createdTime": "2026-02-02 10:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:20", + "echoMap": {}, + "alarmNo": "1550081572", + "alarmDate": "1769998925880", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113471489592340", + "createdBy": null, + "createdTime": "2026-02-02 10:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:53", + "echoMap": {}, + "alarmNo": "1550081571", + "alarmDate": "1769998908354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113467194625109", + "createdBy": null, + "createdTime": "2026-02-02 10:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:37", + "echoMap": {}, + "alarmNo": "1550081570", + "alarmDate": "1769998363068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060043", + "deviceName": "[303](10)老西门2#口商场", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113462899657742", + "createdBy": null, + "createdTime": "2026-02-02 10:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:24", + "echoMap": {}, + "alarmNo": "1550081569", + "alarmDate": "1769998332279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113458604690598", + "createdBy": null, + "createdTime": "2026-02-02 10:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:16", + "echoMap": {}, + "alarmNo": "1550081568", + "alarmDate": "1769998324031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060041", + "deviceName": "[301](10)老西门2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113450014755967", + "createdBy": null, + "createdTime": "2026-02-02 10:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:29", + "echoMap": {}, + "alarmNo": "1550081567", + "alarmDate": "1769997748989", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113450014755855", + "createdBy": null, + "createdTime": "2026-02-02 10:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:11", + "echoMap": {}, + "alarmNo": "1550081566", + "alarmDate": "1769997729574", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113445719788606", + "createdBy": null, + "createdTime": "2026-02-02 10:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:54", + "echoMap": {}, + "alarmNo": "1550081565", + "alarmDate": "1769997724054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113445719788553", + "createdBy": null, + "createdTime": "2026-02-02 10:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:52", + "echoMap": {}, + "alarmNo": "1550081564", + "alarmDate": "1769997708989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113445719788544", + "createdBy": null, + "createdTime": "2026-02-02 10:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:53", + "echoMap": {}, + "alarmNo": "1550081563", + "alarmDate": "1769997707970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113441424821361", + "createdBy": null, + "createdTime": "2026-02-02 09:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:59", + "echoMap": {}, + "alarmNo": "1550081562", + "alarmDate": "1769997161108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113441424821323", + "createdBy": null, + "createdTime": "2026-02-02 09:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:28", + "echoMap": {}, + "alarmNo": "1550081561", + "alarmDate": "1769997153534", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113441424821313", + "createdBy": null, + "createdTime": "2026-02-02 09:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:39", + "echoMap": {}, + "alarmNo": "1550081560", + "alarmDate": "1769997151715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886827", + "createdBy": null, + "createdTime": "2026-02-02 09:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:54", + "echoMap": {}, + "alarmNo": "1550081559", + "alarmDate": "1769997108725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886824", + "createdBy": null, + "createdTime": "2026-02-02 09:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:07", + "echoMap": {}, + "alarmNo": "1550081558", + "alarmDate": "1769997108604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886816", + "createdBy": null, + "createdTime": "2026-02-02 09:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:50", + "echoMap": {}, + "alarmNo": "1550081557", + "alarmDate": "1769997107490", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113432834886703", + "createdBy": null, + "createdTime": "2026-02-02 09:44:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:46", + "echoMap": {}, + "alarmNo": "1550081556", + "alarmDate": "1769996686050", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014030007", + "deviceName": "安防箱7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1014" + }, + { + "id": "723113428539919428", + "createdBy": null, + "createdTime": "2026-02-02 09:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:47", + "echoMap": {}, + "alarmNo": "1550081555", + "alarmDate": "1769996561402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113428539919367", + "createdBy": null, + "createdTime": "2026-02-02 09:42:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:35", + "echoMap": {}, + "alarmNo": "1550081554", + "alarmDate": "1769996548435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113424244952166", + "createdBy": null, + "createdTime": "2026-02-02 09:41:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:58", + "echoMap": {}, + "alarmNo": "1550081553", + "alarmDate": "1769996508009", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113424244952140", + "createdBy": null, + "createdTime": "2026-02-02 09:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:43", + "echoMap": {}, + "alarmNo": "1550081552", + "alarmDate": "1769996443718", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113415655017660", + "createdBy": null, + "createdTime": "2026-02-02 09:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:35", + "echoMap": {}, + "alarmNo": "1550081551", + "alarmDate": "1769995949195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113415655017552", + "createdBy": null, + "createdTime": "2026-02-02 09:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:08", + "echoMap": {}, + "alarmNo": "1550081550", + "alarmDate": "1769995926640", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113415655017478", + "createdBy": null, + "createdTime": "2026-02-02 09:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:29", + "echoMap": {}, + "alarmNo": "1550081549", + "alarmDate": "1769995909533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113411360050250", + "createdBy": null, + "createdTime": "2026-02-02 09:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:52", + "echoMap": {}, + "alarmNo": "1550081548", + "alarmDate": "1769995908407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113407065082996", + "createdBy": null, + "createdTime": "2026-02-02 09:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:03", + "echoMap": {}, + "alarmNo": "1550081547", + "alarmDate": "1769995361728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113398475148492", + "createdBy": null, + "createdTime": "2026-02-02 09:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:30", + "echoMap": {}, + "alarmNo": "1550081546", + "alarmDate": "1769995324737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113398475148443", + "createdBy": null, + "createdTime": "2026-02-02 09:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:10", + "echoMap": {}, + "alarmNo": "1550081545", + "alarmDate": "1769995316884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113398475148368", + "createdBy": null, + "createdTime": "2026-02-02 09:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:43", + "echoMap": {}, + "alarmNo": "1550081544", + "alarmDate": "1769995243709", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113394180181026", + "createdBy": null, + "createdTime": "2026-02-02 09:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:53", + "echoMap": {}, + "alarmNo": "1550081543", + "alarmDate": "1769994767437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113389885213883", + "createdBy": null, + "createdTime": "2026-02-02 09:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:22", + "echoMap": {}, + "alarmNo": "1550081542", + "alarmDate": "1769994754698", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113381295279224", + "createdBy": null, + "createdTime": "2026-02-02 09:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:09", + "echoMap": {}, + "alarmNo": "1550081541", + "alarmDate": "1769994164546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113381295279157", + "createdBy": null, + "createdTime": "2026-02-02 09:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:37", + "echoMap": {}, + "alarmNo": "1550081540", + "alarmDate": "1769994150246", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113372705344721", + "createdBy": null, + "createdTime": "2026-02-02 09:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:01", + "echoMap": {}, + "alarmNo": "1550081539", + "alarmDate": "1769994119751", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113372705344713", + "createdBy": null, + "createdTime": "2026-02-02 09:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:07", + "echoMap": {}, + "alarmNo": "1550081538", + "alarmDate": "1769994119192", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113368410377279", + "createdBy": null, + "createdTime": "2026-02-02 08:52:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:45", + "echoMap": {}, + "alarmNo": "1550081537", + "alarmDate": "1769993563555", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113368410377268", + "createdBy": null, + "createdTime": "2026-02-02 08:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:08", + "echoMap": {}, + "alarmNo": "1550081536", + "alarmDate": "1769993562295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113364115410039", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:18", + "echoMap": {}, + "alarmNo": "1550081535", + "alarmDate": "1769993532200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113351230508093", + "createdBy": null, + "createdTime": "2026-02-02 08:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:24", + "echoMap": {}, + "alarmNo": "1550081534", + "alarmDate": "1769992931991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113351230508057", + "createdBy": null, + "createdTime": "2026-02-02 08:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:12", + "echoMap": {}, + "alarmNo": "1550081533", + "alarmDate": "1769992925360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113346935540860", + "createdBy": null, + "createdTime": "2026-02-02 08:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:43", + "echoMap": {}, + "alarmNo": "1550081532", + "alarmDate": "1769992903712", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113342640573453", + "createdBy": null, + "createdTime": "2026-02-02 08:32:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:54", + "echoMap": {}, + "alarmNo": "1550081531", + "alarmDate": "1769992359810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113338345606309", + "createdBy": null, + "createdTime": "2026-02-02 08:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:53", + "echoMap": {}, + "alarmNo": "1550081530", + "alarmDate": "1769992351837", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638925", + "createdBy": null, + "createdTime": "2026-02-02 08:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:56", + "echoMap": {}, + "alarmNo": "1550081529", + "alarmDate": "1769992314782", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638885", + "createdBy": null, + "createdTime": "2026-02-02 08:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:09", + "echoMap": {}, + "alarmNo": "1550081528", + "alarmDate": "1769992308736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638875", + "createdBy": null, + "createdTime": "2026-02-02 08:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:55", + "echoMap": {}, + "alarmNo": "1550081527", + "alarmDate": "1769992307885", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113334050638866", + "createdBy": null, + "createdTime": "2026-02-02 08:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1550081526", + "alarmDate": "1769992303723", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113329755671625", + "createdBy": null, + "createdTime": "2026-02-02 08:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:47", + "echoMap": {}, + "alarmNo": "1550081525", + "alarmDate": "1769991766699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113329755671597", + "createdBy": null, + "createdTime": "2026-02-02 08:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:42", + "echoMap": {}, + "alarmNo": "1550081524", + "alarmDate": "1769991760570", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113329755671589", + "createdBy": null, + "createdTime": "2026-02-02 08:22:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:45", + "echoMap": {}, + "alarmNo": "1550081523", + "alarmDate": "1769991758781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113325460704329", + "createdBy": null, + "createdTime": "2026-02-02 08:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:35", + "echoMap": {}, + "alarmNo": "1550081522", + "alarmDate": "1769991748662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113325460704294", + "createdBy": null, + "createdTime": "2026-02-02 08:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:26", + "echoMap": {}, + "alarmNo": "1550081521", + "alarmDate": "1769991739767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113316870769678", + "createdBy": null, + "createdTime": "2026-02-02 08:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:13:43", + "echoMap": {}, + "alarmNo": "1550081520", + "alarmDate": "1769991163714", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802520", + "createdBy": null, + "createdTime": "2026-02-02 08:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:17", + "echoMap": {}, + "alarmNo": "1550081519", + "alarmDate": "1769991152365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802492", + "createdBy": null, + "createdTime": "2026-02-02 08:12:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:39", + "echoMap": {}, + "alarmNo": "1550081518", + "alarmDate": "1769991147168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802449", + "createdBy": null, + "createdTime": "2026-02-02 08:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:34", + "echoMap": {}, + "alarmNo": "1550081517", + "alarmDate": "1769991137946", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113312575802393", + "createdBy": null, + "createdTime": "2026-02-02 08:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:13", + "echoMap": {}, + "alarmNo": "1550081516", + "alarmDate": "1769991126399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060059", + "deviceName": "[326](10)老西门7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113295395933321", + "createdBy": null, + "createdTime": "2026-02-02 08:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:20", + "echoMap": {}, + "alarmNo": "1550081515", + "alarmDate": "1769990522868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113295395933262", + "createdBy": null, + "createdTime": "2026-02-02 08:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:53", + "echoMap": {}, + "alarmNo": "1550081514", + "alarmDate": "1769990511850", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113295395933236", + "createdBy": null, + "createdTime": "2026-02-02 08:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:05", + "echoMap": {}, + "alarmNo": "1550081513", + "alarmDate": "1769990507471", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113291100965932", + "createdBy": null, + "createdTime": "2026-02-02 07:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:43", + "echoMap": {}, + "alarmNo": "1550081512", + "alarmDate": "1769990203704", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113286805998719", + "createdBy": null, + "createdTime": "2026-02-02 07:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:40", + "echoMap": {}, + "alarmNo": "1550081511", + "alarmDate": "1769989958675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113261036194955", + "createdBy": null, + "createdTime": "2026-02-02 07:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:21", + "echoMap": {}, + "alarmNo": "1550081510", + "alarmDate": "1769988765211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113261036194919", + "createdBy": null, + "createdTime": "2026-02-02 07:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:21", + "echoMap": {}, + "alarmNo": "1550081509", + "alarmDate": "1769988758325", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260475", + "createdBy": null, + "createdTime": "2026-02-02 07:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:10", + "echoMap": {}, + "alarmNo": "1550081508", + "alarmDate": "1769988717069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260447", + "createdBy": null, + "createdTime": "2026-02-02 07:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:52", + "echoMap": {}, + "alarmNo": "1550081507", + "alarmDate": "1769988710925", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260436", + "createdBy": null, + "createdTime": "2026-02-02 07:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:49", + "echoMap": {}, + "alarmNo": "1550081506", + "alarmDate": "1769988708982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060053", + "deviceName": "[329](10)老西门7#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113252446260235", + "createdBy": null, + "createdTime": "2026-02-02 07:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:36", + "echoMap": {}, + "alarmNo": "1550081505", + "alarmDate": "1769988154760", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113248151292981", + "createdBy": null, + "createdTime": "2026-02-02 07:22:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:39", + "echoMap": {}, + "alarmNo": "1550081504", + "alarmDate": "1769988146971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113243856325761", + "createdBy": null, + "createdTime": "2026-02-02 07:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:18", + "echoMap": {}, + "alarmNo": "1550081503", + "alarmDate": "1769988115705", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113243856325739", + "createdBy": null, + "createdTime": "2026-02-02 07:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:20", + "echoMap": {}, + "alarmNo": "1550081502", + "alarmDate": "1769988108920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113235266391149", + "createdBy": null, + "createdTime": "2026-02-02 07:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:27", + "echoMap": {}, + "alarmNo": "1550081501", + "alarmDate": "1769987533603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113226676456573", + "createdBy": null, + "createdTime": "2026-02-02 07:02:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:45", + "echoMap": {}, + "alarmNo": "1550081500", + "alarmDate": "1769986964463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113226676456526", + "createdBy": null, + "createdTime": "2026-02-02 07:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:31", + "echoMap": {}, + "alarmNo": "1550081499", + "alarmDate": "1769986945460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113226676456485", + "createdBy": null, + "createdTime": "2026-02-02 07:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:23", + "echoMap": {}, + "alarmNo": "1550081498", + "alarmDate": "1769986932294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113222381489200", + "createdBy": null, + "createdTime": "2026-02-02 07:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:54", + "echoMap": {}, + "alarmNo": "1550081497", + "alarmDate": "1769986908323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060035", + "deviceName": "[323](10)老西门7#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113218086522022", + "createdBy": null, + "createdTime": "2026-02-02 06:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:43", + "echoMap": {}, + "alarmNo": "1550081496", + "alarmDate": "1769986663713", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113218086521914", + "createdBy": null, + "createdTime": "2026-02-02 06:52:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:34", + "echoMap": {}, + "alarmNo": "1550081495", + "alarmDate": "1769986352809", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113200906652727", + "createdBy": null, + "createdTime": "2026-02-02 06:32:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:01", + "echoMap": {}, + "alarmNo": "1550081494", + "alarmDate": "1769985158725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113196611685419", + "createdBy": null, + "createdTime": "2026-02-02 06:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:27", + "echoMap": {}, + "alarmNo": "1550081493", + "alarmDate": "1769985134740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113192316718233", + "createdBy": null, + "createdTime": "2026-02-02 06:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:57", + "echoMap": {}, + "alarmNo": "1550081492", + "alarmDate": "1769985109580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113192316718213", + "createdBy": null, + "createdTime": "2026-02-02 06:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:43", + "echoMap": {}, + "alarmNo": "1550081491", + "alarmDate": "1769985103694", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113188021750816", + "createdBy": null, + "createdTime": "2026-02-02 06:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:31", + "echoMap": {}, + "alarmNo": "1550081490", + "alarmDate": "1769984549926", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113188021750785", + "createdBy": null, + "createdTime": "2026-02-02 06:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:24", + "echoMap": {}, + "alarmNo": "1550081489", + "alarmDate": "1769984538350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113179431816233", + "createdBy": null, + "createdTime": "2026-02-02 06:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:00", + "echoMap": {}, + "alarmNo": "1550081488", + "alarmDate": "1769983967122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113175136849036", + "createdBy": null, + "createdTime": "2026-02-02 06:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:35", + "echoMap": {}, + "alarmNo": "1550081487", + "alarmDate": "1769983942096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113175136848951", + "createdBy": null, + "createdTime": "2026-02-02 06:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:03", + "echoMap": {}, + "alarmNo": "1550081486", + "alarmDate": "1769983917012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914408", + "createdBy": null, + "createdTime": "2026-02-02 06:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:39", + "echoMap": {}, + "alarmNo": "1550081485", + "alarmDate": "1769983354207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914334", + "createdBy": null, + "createdTime": "2026-02-02 06:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:16", + "echoMap": {}, + "alarmNo": "1550081484", + "alarmDate": "1769983331592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914333", + "createdBy": null, + "createdTime": "2026-02-02 06:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:12", + "echoMap": {}, + "alarmNo": "1550081483", + "alarmDate": "1769983331588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113166546914332", + "createdBy": null, + "createdTime": "2026-02-02 06:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:12", + "echoMap": {}, + "alarmNo": "1550081482", + "alarmDate": "1769983331584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113157956979804", + "createdBy": null, + "createdTime": "2026-02-02 05:52:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:52", + "echoMap": {}, + "alarmNo": "1550081481", + "alarmDate": "1769982765947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113157956979739", + "createdBy": null, + "createdTime": "2026-02-02 05:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:34", + "echoMap": {}, + "alarmNo": "1550081480", + "alarmDate": "1769982742002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113153662012455", + "createdBy": null, + "createdTime": "2026-02-02 05:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:10", + "echoMap": {}, + "alarmNo": "1550081479", + "alarmDate": "1769982717972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113149367045140", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:46", + "echoMap": {}, + "alarmNo": "1550081478", + "alarmDate": "1769982153595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113145072077857", + "createdBy": null, + "createdTime": "2026-02-02 05:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:22", + "echoMap": {}, + "alarmNo": "1550081477", + "alarmDate": "1769982129818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113140777110546", + "createdBy": null, + "createdTime": "2026-02-02 05:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:57", + "echoMap": {}, + "alarmNo": "1550081476", + "alarmDate": "1769981566260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113136482143262", + "createdBy": null, + "createdTime": "2026-02-02 05:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:34", + "echoMap": {}, + "alarmNo": "1550081475", + "alarmDate": "1769981542194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113127892208689", + "createdBy": null, + "createdTime": "2026-02-02 05:22:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:10", + "echoMap": {}, + "alarmNo": "1550081474", + "alarmDate": "1769980961227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113127892208644", + "createdBy": null, + "createdTime": "2026-02-02 05:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:28", + "echoMap": {}, + "alarmNo": "1550081473", + "alarmDate": "1769980941288", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241634", + "createdBy": null, + "createdTime": "2026-02-02 05:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:23", + "echoMap": {}, + "alarmNo": "1550081472", + "alarmDate": "1769980937383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241585", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:01", + "echoMap": {}, + "alarmNo": "1550081471", + "alarmDate": "1769980916194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241584", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:56", + "echoMap": {}, + "alarmNo": "1550081470", + "alarmDate": "1769980916191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241583", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:56", + "echoMap": {}, + "alarmNo": "1550081469", + "alarmDate": "1769980916187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241582", + "createdBy": null, + "createdTime": "2026-02-02 05:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:56", + "echoMap": {}, + "alarmNo": "1550081468", + "alarmDate": "1769980916183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241496", + "createdBy": null, + "createdTime": "2026-02-02 05:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:44", + "echoMap": {}, + "alarmNo": "1550081467", + "alarmDate": "1769980726422", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113123597241356", + "createdBy": null, + "createdTime": "2026-02-02 05:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:41", + "echoMap": {}, + "alarmNo": "1550081466", + "alarmDate": "1769980348860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274088", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:11", + "echoMap": {}, + "alarmNo": "1550081465", + "alarmDate": "1769980327732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274086", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:08", + "echoMap": {}, + "alarmNo": "1550081464", + "alarmDate": "1769980327728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274085", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:08", + "echoMap": {}, + "alarmNo": "1550081463", + "alarmDate": "1769980327724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113119302274084", + "createdBy": null, + "createdTime": "2026-02-02 05:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:08", + "echoMap": {}, + "alarmNo": "1550081462", + "alarmDate": "1769980327719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060064", + "deviceName": "[316](10)老西门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113110712339529", + "createdBy": null, + "createdTime": "2026-02-02 05:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:44", + "echoMap": {}, + "alarmNo": "1550081461", + "alarmDate": "1769979644560", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113106417372326", + "createdBy": null, + "createdTime": "2026-02-02 04:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:14", + "echoMap": {}, + "alarmNo": "1550081460", + "alarmDate": "1769979133874", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113089237503031", + "createdBy": null, + "createdTime": "2026-02-02 04:28:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:44", + "echoMap": {}, + "alarmNo": "1550081459", + "alarmDate": "1769977724392", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113080647568537", + "createdBy": null, + "createdTime": "2026-02-02 04:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:09", + "echoMap": {}, + "alarmNo": "1550081458", + "alarmDate": "1769977328521", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113054877764734", + "createdBy": null, + "createdTime": "2026-02-02 03:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:03", + "echoMap": {}, + "alarmNo": "1550081457", + "alarmDate": "1769974968813", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113037697895541", + "createdBy": null, + "createdTime": "2026-02-02 03:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:57", + "echoMap": {}, + "alarmNo": "1550081456", + "alarmDate": "1769973715563", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113033402928135", + "createdBy": null, + "createdTime": "2026-02-02 03:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:40", + "echoMap": {}, + "alarmNo": "1550081455", + "alarmDate": "1769973159322", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723113011928091703", + "createdBy": null, + "createdTime": "2026-02-02 02:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:53", + "echoMap": {}, + "alarmNo": "1550081454", + "alarmDate": "1769971364612", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112994748222597", + "createdBy": null, + "createdTime": "2026-02-02 02:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:03", + "echoMap": {}, + "alarmNo": "1550081453", + "alarmDate": "1769970121720", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112990453255194", + "createdBy": null, + "createdTime": "2026-02-02 02:12:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:45", + "echoMap": {}, + "alarmNo": "1550081452", + "alarmDate": "1769969564518", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112977568353399", + "createdBy": null, + "createdTime": "2026-02-02 01:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:44", + "echoMap": {}, + "alarmNo": "1550081451", + "alarmDate": "1769968603767", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112968978418743", + "createdBy": null, + "createdTime": "2026-02-02 01:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:56", + "echoMap": {}, + "alarmNo": "1550081450", + "alarmDate": "1769967761291", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112951798549607", + "createdBy": null, + "createdTime": "2026-02-02 01:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:43", + "echoMap": {}, + "alarmNo": "1550081449", + "alarmDate": "1769966803856", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112943208615132", + "createdBy": null, + "createdTime": "2026-02-02 01:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:53", + "echoMap": {}, + "alarmNo": "1550081448", + "alarmDate": "1769966512017", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112943208614948", + "createdBy": null, + "createdTime": "2026-02-02 01:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:37", + "echoMap": {}, + "alarmNo": "1550081447", + "alarmDate": "1769965955876", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112930323713024", + "createdBy": null, + "createdTime": "2026-02-02 01:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:44", + "echoMap": {}, + "alarmNo": "1550081446", + "alarmDate": "1769965303931", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1014060069", + "deviceName": "[608](10)老西门环控室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112917438811233", + "createdBy": null, + "createdTime": "2026-02-02 00:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:48", + "echoMap": {}, + "alarmNo": "1550081445", + "alarmDate": "1769964154078", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112891669007438", + "createdBy": null, + "createdTime": "2026-02-02 00:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:34", + "echoMap": {}, + "alarmNo": "1550081444", + "alarmDate": "1769962352697", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060002", + "deviceName": "[201](10)老西门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + }, + { + "id": "723112874489138261", + "createdBy": null, + "createdTime": "2026-02-02 00:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:06", + "echoMap": {}, + "alarmNo": "1550081443", + "alarmDate": "1769961707493", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1014060009", + "deviceName": "[405](10)老西门2#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1014" + } + ] + }, + "1015": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723117130800979760", + "createdBy": null, + "createdTime": "2026-02-02 00:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:24", + "echoMap": {}, + "alarmNo": "1570474448", + "alarmDate": "1769961982555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979814", + "createdBy": null, + "createdTime": "2026-02-02 00:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:28", + "echoMap": {}, + "alarmNo": "1570474449", + "alarmDate": "1769961987604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979826", + "createdBy": null, + "createdTime": "2026-02-02 00:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:48", + "echoMap": {}, + "alarmNo": "1570474450", + "alarmDate": "1769961988571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979876", + "createdBy": null, + "createdTime": "2026-02-02 00:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:34", + "echoMap": {}, + "alarmNo": "1570474451", + "alarmDate": "1769961993059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117135095946297", + "createdBy": null, + "createdTime": "2026-02-02 00:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:47", + "echoMap": {}, + "alarmNo": "1570474452", + "alarmDate": "1769962006184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685880841", + "createdBy": null, + "createdTime": "2026-02-02 00:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:59", + "echoMap": {}, + "alarmNo": "1570474453", + "alarmDate": "1769962017615", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685880874", + "createdBy": null, + "createdTime": "2026-02-02 00:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:27", + "echoMap": {}, + "alarmNo": "1570474454", + "alarmDate": "1769962020603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685880918", + "createdBy": null, + "createdTime": "2026-02-02 00:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:05", + "echoMap": {}, + "alarmNo": "1570474455", + "alarmDate": "1769962024391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685881533", + "createdBy": null, + "createdTime": "2026-02-02 00:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:52", + "echoMap": {}, + "alarmNo": "1570474456", + "alarmDate": "1769962598830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275815503", + "createdBy": null, + "createdTime": "2026-02-02 00:17:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:32", + "echoMap": {}, + "alarmNo": "1570474457", + "alarmDate": "1769962624934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816014", + "createdBy": null, + "createdTime": "2026-02-02 00:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:26", + "echoMap": {}, + "alarmNo": "1570474458", + "alarmDate": "1769963204188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816068", + "createdBy": null, + "createdTime": "2026-02-02 00:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:50", + "echoMap": {}, + "alarmNo": "1570474459", + "alarmDate": "1769963208795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816153", + "createdBy": null, + "createdTime": "2026-02-02 00:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:56", + "echoMap": {}, + "alarmNo": "1570474460", + "alarmDate": "1769963215103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816196", + "createdBy": null, + "createdTime": "2026-02-02 00:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:00", + "echoMap": {}, + "alarmNo": "1570474461", + "alarmDate": "1769963218858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816260", + "createdBy": null, + "createdTime": "2026-02-02 00:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:06", + "echoMap": {}, + "alarmNo": "1570474462", + "alarmDate": "1769963224506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750085", + "createdBy": null, + "createdTime": "2026-02-02 00:27:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:29", + "echoMap": {}, + "alarmNo": "1570474463", + "alarmDate": "1769963239758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750329", + "createdBy": null, + "createdTime": "2026-02-02 00:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:32", + "echoMap": {}, + "alarmNo": "1570474464", + "alarmDate": "1769963791428", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750402", + "createdBy": null, + "createdTime": "2026-02-02 00:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:50", + "echoMap": {}, + "alarmNo": "1570474465", + "alarmDate": "1769963798420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750501", + "createdBy": null, + "createdTime": "2026-02-02 00:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:48", + "echoMap": {}, + "alarmNo": "1570474466", + "alarmDate": "1769963807321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750659", + "createdBy": null, + "createdTime": "2026-02-02 00:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:15", + "echoMap": {}, + "alarmNo": "1570474467", + "alarmDate": "1769963822491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117165160717325", + "createdBy": null, + "createdTime": "2026-02-02 00:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:08", + "echoMap": {}, + "alarmNo": "1570474468", + "alarmDate": "1769964379625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117169455685418", + "createdBy": null, + "createdTime": "2026-02-02 00:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:29", + "echoMap": {}, + "alarmNo": "1570474469", + "alarmDate": "1769964987597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619205", + "createdBy": null, + "createdTime": "2026-02-02 00:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:35", + "echoMap": {}, + "alarmNo": "1570474470", + "alarmDate": "1769964993931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619270", + "createdBy": null, + "createdTime": "2026-02-02 00:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:40", + "echoMap": {}, + "alarmNo": "1570474471", + "alarmDate": "1769964998637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619349", + "createdBy": null, + "createdTime": "2026-02-02 00:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:46", + "echoMap": {}, + "alarmNo": "1570474472", + "alarmDate": "1769965005341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619501", + "createdBy": null, + "createdTime": "2026-02-02 00:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:00", + "echoMap": {}, + "alarmNo": "1570474473", + "alarmDate": "1769965019019", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619510", + "createdBy": null, + "createdTime": "2026-02-02 00:57:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:01", + "echoMap": {}, + "alarmNo": "1570474474", + "alarmDate": "1769965019677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619849", + "createdBy": null, + "createdTime": "2026-02-02 01:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:21", + "echoMap": {}, + "alarmNo": "1570474475", + "alarmDate": "1769965580710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060107", + "deviceName": "[334](10)豫园#1台扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619933", + "createdBy": null, + "createdTime": "2026-02-02 01:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:29", + "echoMap": {}, + "alarmNo": "1570474476", + "alarmDate": "1769965588227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117186635554309", + "createdBy": null, + "createdTime": "2026-02-02 01:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:33", + "echoMap": {}, + "alarmNo": "1570474478", + "alarmDate": "1769966181065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117186635554569", + "createdBy": null, + "createdTime": "2026-02-02 01:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:28", + "echoMap": {}, + "alarmNo": "1570474479", + "alarmDate": "1769966204675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488467", + "createdBy": null, + "createdTime": "2026-02-02 01:17:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:02", + "echoMap": {}, + "alarmNo": "1570474480", + "alarmDate": "1769966220682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488525", + "createdBy": null, + "createdTime": "2026-02-02 01:17:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:07", + "echoMap": {}, + "alarmNo": "1570474481", + "alarmDate": "1769966225696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488594", + "createdBy": null, + "createdTime": "2026-02-02 01:17:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:13", + "echoMap": {}, + "alarmNo": "1570474482", + "alarmDate": "1769966231625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488659", + "createdBy": null, + "createdTime": "2026-02-02 01:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:18", + "echoMap": {}, + "alarmNo": "1570474483", + "alarmDate": "1769966237311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488790", + "createdBy": null, + "createdTime": "2026-02-02 01:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:20", + "echoMap": {}, + "alarmNo": "1570474484", + "alarmDate": "1769966778687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488847", + "createdBy": null, + "createdTime": "2026-02-02 01:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:25", + "echoMap": {}, + "alarmNo": "1570474485", + "alarmDate": "1769966784364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488955", + "createdBy": null, + "createdTime": "2026-02-02 01:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:36", + "echoMap": {}, + "alarmNo": "1570474486", + "alarmDate": "1769966794423", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225489000", + "createdBy": null, + "createdTime": "2026-02-02 01:26:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:42", + "echoMap": {}, + "alarmNo": "1570474487", + "alarmDate": "1769966798624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225489038", + "createdBy": null, + "createdTime": "2026-02-02 01:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:42", + "echoMap": {}, + "alarmNo": "1570474488", + "alarmDate": "1769966801809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225489039", + "createdBy": null, + "createdTime": "2026-02-02 01:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:23", + "echoMap": {}, + "alarmNo": "1570474489", + "alarmDate": "1769966801810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117203815423105", + "createdBy": null, + "createdTime": "2026-02-02 01:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:47", + "echoMap": {}, + "alarmNo": "1570474490", + "alarmDate": "1769966823054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117203815423553", + "createdBy": null, + "createdTime": "2026-02-02 01:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:19", + "echoMap": {}, + "alarmNo": "1570474491", + "alarmDate": "1769967395101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117212405357969", + "createdBy": null, + "createdTime": "2026-02-02 01:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:08", + "echoMap": {}, + "alarmNo": "1570474492", + "alarmDate": "1769967981370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117212405358181", + "createdBy": null, + "createdTime": "2026-02-02 01:46:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:41", + "echoMap": {}, + "alarmNo": "1570474493", + "alarmDate": "1769968000358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117212405358251", + "createdBy": null, + "createdTime": "2026-02-02 01:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:48", + "echoMap": {}, + "alarmNo": "1570474494", + "alarmDate": "1769968006399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117216700324911", + "createdBy": null, + "createdTime": "2026-02-02 01:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:52", + "echoMap": {}, + "alarmNo": "1570474495", + "alarmDate": "1769968011522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292216", + "createdBy": null, + "createdTime": "2026-02-02 01:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:58", + "echoMap": {}, + "alarmNo": "1570474496", + "alarmDate": "1769968016939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292258", + "createdBy": null, + "createdTime": "2026-02-02 01:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:02", + "echoMap": {}, + "alarmNo": "1570474497", + "alarmDate": "1769968020511", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292376", + "createdBy": null, + "createdTime": "2026-02-02 01:47:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:12", + "echoMap": {}, + "alarmNo": "1570474498", + "alarmDate": "1769968031471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292583", + "createdBy": null, + "createdTime": "2026-02-02 01:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:03", + "echoMap": {}, + "alarmNo": "1570474499", + "alarmDate": "1769968581051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117229585226845", + "createdBy": null, + "createdTime": "2026-02-02 01:57:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:34", + "echoMap": {}, + "alarmNo": "1570474500", + "alarmDate": "1769968633988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117229585227290", + "createdBy": null, + "createdTime": "2026-02-02 02:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:58", + "echoMap": {}, + "alarmNo": "1570474501", + "alarmDate": "1769969205898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161395", + "createdBy": null, + "createdTime": "2026-02-02 02:07:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:30", + "echoMap": {}, + "alarmNo": "1570474502", + "alarmDate": "1769969230168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161427", + "createdBy": null, + "createdTime": "2026-02-02 02:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:14", + "echoMap": {}, + "alarmNo": "1570474503", + "alarmDate": "1769969232861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161490", + "createdBy": null, + "createdTime": "2026-02-02 02:07:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:19", + "echoMap": {}, + "alarmNo": "1570474504", + "alarmDate": "1769969238547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161636", + "createdBy": null, + "createdTime": "2026-02-02 02:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:54", + "echoMap": {}, + "alarmNo": "1570474505", + "alarmDate": "1769969781724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161677", + "createdBy": null, + "createdTime": "2026-02-02 02:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:26", + "echoMap": {}, + "alarmNo": "1570474506", + "alarmDate": "1769969785230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161741", + "createdBy": null, + "createdTime": "2026-02-02 02:16:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:32", + "echoMap": {}, + "alarmNo": "1570474507", + "alarmDate": "1769969791031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161790", + "createdBy": null, + "createdTime": "2026-02-02 02:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:03", + "echoMap": {}, + "alarmNo": "1570474508", + "alarmDate": "1769969795444", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161826", + "createdBy": null, + "createdTime": "2026-02-02 02:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:40", + "echoMap": {}, + "alarmNo": "1570474509", + "alarmDate": "1769969798873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161866", + "createdBy": null, + "createdTime": "2026-02-02 02:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:54", + "echoMap": {}, + "alarmNo": "1570474510", + "alarmDate": "1769969802509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161990", + "createdBy": null, + "createdTime": "2026-02-02 02:16:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:54", + "echoMap": {}, + "alarmNo": "1570474511", + "alarmDate": "1769969813407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765095967", + "createdBy": null, + "createdTime": "2026-02-02 02:17:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:18", + "echoMap": {}, + "alarmNo": "1570474512", + "alarmDate": "1769969826973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765096222", + "createdBy": null, + "createdTime": "2026-02-02 02:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:25", + "echoMap": {}, + "alarmNo": "1570474513", + "alarmDate": "1769970380386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765096327", + "createdBy": null, + "createdTime": "2026-02-02 02:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:31", + "echoMap": {}, + "alarmNo": "1570474514", + "alarmDate": "1769970390522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765096410", + "createdBy": null, + "createdTime": "2026-02-02 02:26:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:58", + "echoMap": {}, + "alarmNo": "1570474515", + "alarmDate": "1769970398381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117255355030569", + "createdBy": null, + "createdTime": "2026-02-02 02:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:36", + "echoMap": {}, + "alarmNo": "1570474516", + "alarmDate": "1769970429487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117255355031084", + "createdBy": null, + "createdTime": "2026-02-02 02:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:01", + "echoMap": {}, + "alarmNo": "1570474517", + "alarmDate": "1769971007568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117255355031200", + "createdBy": null, + "createdTime": "2026-02-02 02:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:58", + "echoMap": {}, + "alarmNo": "1570474518", + "alarmDate": "1769971017616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117259649997864", + "createdBy": null, + "createdTime": "2026-02-02 02:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:04", + "echoMap": {}, + "alarmNo": "1570474519", + "alarmDate": "1769971023425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965159", + "createdBy": null, + "createdTime": "2026-02-02 02:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:11", + "echoMap": {}, + "alarmNo": "1570474520", + "alarmDate": "1769971030018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965198", + "createdBy": null, + "createdTime": "2026-02-02 02:37:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:40", + "echoMap": {}, + "alarmNo": "1570474521", + "alarmDate": "1769971033723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965504", + "createdBy": null, + "createdTime": "2026-02-02 02:46:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:34", + "echoMap": {}, + "alarmNo": "1570474522", + "alarmDate": "1769971592672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965709", + "createdBy": null, + "createdTime": "2026-02-02 02:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:04", + "echoMap": {}, + "alarmNo": "1570474523", + "alarmDate": "1769971611894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117268239932425", + "createdBy": null, + "createdTime": "2026-02-02 02:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:06", + "echoMap": {}, + "alarmNo": "1570474524", + "alarmDate": "1769971625268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117272534899776", + "createdBy": null, + "createdTime": "2026-02-02 02:47:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:35", + "echoMap": {}, + "alarmNo": "1570474525", + "alarmDate": "1769971636046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117272534900209", + "createdBy": null, + "createdTime": "2026-02-02 02:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:00", + "echoMap": {}, + "alarmNo": "1570474526", + "alarmDate": "1769972207149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117276829867067", + "createdBy": null, + "createdTime": "2026-02-02 02:57:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:38", + "echoMap": {}, + "alarmNo": "1570474527", + "alarmDate": "1769972232259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834628", + "createdBy": null, + "createdTime": "2026-02-02 03:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:34", + "echoMap": {}, + "alarmNo": "1570474528", + "alarmDate": "1769972792952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834658", + "createdBy": null, + "createdTime": "2026-02-02 03:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:36", + "echoMap": {}, + "alarmNo": "1570474529", + "alarmDate": "1769972795427", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834671", + "createdBy": null, + "createdTime": "2026-02-02 03:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:37", + "echoMap": {}, + "alarmNo": "1570474530", + "alarmDate": "1769972796267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834746", + "createdBy": null, + "createdTime": "2026-02-02 03:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:44", + "echoMap": {}, + "alarmNo": "1570474531", + "alarmDate": "1769972803276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834819", + "createdBy": null, + "createdTime": "2026-02-02 03:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:03", + "echoMap": {}, + "alarmNo": "1570474532", + "alarmDate": "1769972810374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834824", + "createdBy": null, + "createdTime": "2026-02-02 03:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:52", + "echoMap": {}, + "alarmNo": "1570474533", + "alarmDate": "1769972810813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834986", + "createdBy": null, + "createdTime": "2026-02-02 03:07:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:06", + "echoMap": {}, + "alarmNo": "1570474534", + "alarmDate": "1769972825383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117289714768905", + "createdBy": null, + "createdTime": "2026-02-02 03:07:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:35", + "echoMap": {}, + "alarmNo": "1570474535", + "alarmDate": "1769972834478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117289714769333", + "createdBy": null, + "createdTime": "2026-02-02 03:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:46", + "echoMap": {}, + "alarmNo": "1570474536", + "alarmDate": "1769973405068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117289714769355", + "createdBy": null, + "createdTime": "2026-02-02 03:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:07", + "echoMap": {}, + "alarmNo": "1570474537", + "alarmDate": "1769973406733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304703513", + "createdBy": null, + "createdTime": "2026-02-02 03:17:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:39", + "echoMap": {}, + "alarmNo": "1570474538", + "alarmDate": "1769973438741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304703974", + "createdBy": null, + "createdTime": "2026-02-02 03:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:33", + "echoMap": {}, + "alarmNo": "1570474539", + "alarmDate": "1769974010930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304704110", + "createdBy": null, + "createdTime": "2026-02-02 03:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:04", + "echoMap": {}, + "alarmNo": "1570474540", + "alarmDate": "1769974022961", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304704130", + "createdBy": null, + "createdTime": "2026-02-02 03:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:06", + "echoMap": {}, + "alarmNo": "1570474541", + "alarmDate": "1769974024631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304704179", + "createdBy": null, + "createdTime": "2026-02-02 03:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:10", + "echoMap": {}, + "alarmNo": "1570474542", + "alarmDate": "1769974028743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638087", + "createdBy": null, + "createdTime": "2026-02-02 03:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:16", + "echoMap": {}, + "alarmNo": "1570474543", + "alarmDate": "1769974034818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638274", + "createdBy": null, + "createdTime": "2026-02-02 03:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:23", + "echoMap": {}, + "alarmNo": "1570474544", + "alarmDate": "1769974581938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638369", + "createdBy": null, + "createdTime": "2026-02-02 03:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:32", + "echoMap": {}, + "alarmNo": "1570474545", + "alarmDate": "1769974590531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638512", + "createdBy": null, + "createdTime": "2026-02-02 03:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:45", + "echoMap": {}, + "alarmNo": "1570474546", + "alarmDate": "1769974604108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638527", + "createdBy": null, + "createdTime": "2026-02-02 03:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:57", + "echoMap": {}, + "alarmNo": "1570474547", + "alarmDate": "1769974605243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638785", + "createdBy": null, + "createdTime": "2026-02-02 03:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:29", + "echoMap": {}, + "alarmNo": "1570474548", + "alarmDate": "1769974629353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117315484572904", + "createdBy": null, + "createdTime": "2026-02-02 03:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:27", + "echoMap": {}, + "alarmNo": "1570474549", + "alarmDate": "1769975185991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117315484573055", + "createdBy": null, + "createdTime": "2026-02-02 03:46:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:53", + "echoMap": {}, + "alarmNo": "1570474550", + "alarmDate": "1769975200491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117315484573311", + "createdBy": null, + "createdTime": "2026-02-02 03:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:17", + "echoMap": {}, + "alarmNo": "1570474551", + "alarmDate": "1769975224669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507418", + "createdBy": null, + "createdTime": "2026-02-02 03:56:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:25", + "echoMap": {}, + "alarmNo": "1570474552", + "alarmDate": "1769975779791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507603", + "createdBy": null, + "createdTime": "2026-02-02 03:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:57", + "echoMap": {}, + "alarmNo": "1570474553", + "alarmDate": "1769975797780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507683", + "createdBy": null, + "createdTime": "2026-02-02 03:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:45", + "echoMap": {}, + "alarmNo": "1570474554", + "alarmDate": "1769975804654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507716", + "createdBy": null, + "createdTime": "2026-02-02 03:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:49", + "echoMap": {}, + "alarmNo": "1570474555", + "alarmDate": "1769975807540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507800", + "createdBy": null, + "createdTime": "2026-02-02 03:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:56", + "echoMap": {}, + "alarmNo": "1570474556", + "alarmDate": "1769975814674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507901", + "createdBy": null, + "createdTime": "2026-02-02 03:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:04", + "echoMap": {}, + "alarmNo": "1570474557", + "alarmDate": "1769975823211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117328369474563", + "createdBy": null, + "createdTime": "2026-02-02 03:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:46", + "echoMap": {}, + "alarmNo": "1570474558", + "alarmDate": "1769975828951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117332664441894", + "createdBy": null, + "createdTime": "2026-02-02 03:57:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:18", + "echoMap": {}, + "alarmNo": "1570474559", + "alarmDate": "1769975836897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117332664442079", + "createdBy": null, + "createdTime": "2026-02-02 04:06:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:25", + "echoMap": {}, + "alarmNo": "1570474560", + "alarmDate": "1769976384029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117332664442474", + "createdBy": null, + "createdTime": "2026-02-02 04:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:01", + "echoMap": {}, + "alarmNo": "1570474561", + "alarmDate": "1769976419693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117341254377031", + "createdBy": null, + "createdTime": "2026-02-02 04:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:11", + "echoMap": {}, + "alarmNo": "1570474562", + "alarmDate": "1769977018371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311074", + "createdBy": null, + "createdTime": "2026-02-02 04:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:18", + "echoMap": {}, + "alarmNo": "1570474563", + "alarmDate": "1769977037014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311093", + "createdBy": null, + "createdTime": "2026-02-02 04:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:28", + "echoMap": {}, + "alarmNo": "1570474564", + "alarmDate": "1769977040084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311256", + "createdBy": null, + "createdTime": "2026-02-02 04:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:25", + "echoMap": {}, + "alarmNo": "1570474565", + "alarmDate": "1769977584137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311325", + "createdBy": null, + "createdTime": "2026-02-02 04:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:22", + "echoMap": {}, + "alarmNo": "1570474566", + "alarmDate": "1769977590586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311357", + "createdBy": null, + "createdTime": "2026-02-02 04:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:34", + "echoMap": {}, + "alarmNo": "1570474567", + "alarmDate": "1769977593327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311464", + "createdBy": null, + "createdTime": "2026-02-02 04:26:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:44", + "echoMap": {}, + "alarmNo": "1570474568", + "alarmDate": "1769977602993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311619", + "createdBy": null, + "createdTime": "2026-02-02 04:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:58", + "echoMap": {}, + "alarmNo": "1570474569", + "alarmDate": "1769977616704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117358434245945", + "createdBy": null, + "createdTime": "2026-02-02 04:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:46", + "echoMap": {}, + "alarmNo": "1570474570", + "alarmDate": "1769978193806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117358434246031", + "createdBy": null, + "createdTime": "2026-02-02 04:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:43", + "echoMap": {}, + "alarmNo": "1570474571", + "alarmDate": "1769978201543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117358434246203", + "createdBy": null, + "createdTime": "2026-02-02 04:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:11", + "echoMap": {}, + "alarmNo": "1570474572", + "alarmDate": "1769978217851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180482", + "createdBy": null, + "createdTime": "2026-02-02 04:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:41", + "echoMap": {}, + "alarmNo": "1570474573", + "alarmDate": "1769978788995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180736", + "createdBy": null, + "createdTime": "2026-02-02 04:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:06", + "echoMap": {}, + "alarmNo": "1570474574", + "alarmDate": "1769978813146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180780", + "createdBy": null, + "createdTime": "2026-02-02 04:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:58", + "echoMap": {}, + "alarmNo": "1570474575", + "alarmDate": "1769978816776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180805", + "createdBy": null, + "createdTime": "2026-02-02 04:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:00", + "echoMap": {}, + "alarmNo": "1570474576", + "alarmDate": "1769978818753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180889", + "createdBy": null, + "createdTime": "2026-02-02 04:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:07", + "echoMap": {}, + "alarmNo": "1570474577", + "alarmDate": "1769978825988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614114838", + "createdBy": null, + "createdTime": "2026-02-02 04:47:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:16", + "echoMap": {}, + "alarmNo": "1570474578", + "alarmDate": "1769978835462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614114865", + "createdBy": null, + "createdTime": "2026-02-02 04:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:08", + "echoMap": {}, + "alarmNo": "1570474579", + "alarmDate": "1769978838265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614115019", + "createdBy": null, + "createdTime": "2026-02-02 04:56:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:24", + "echoMap": {}, + "alarmNo": "1570474580", + "alarmDate": "1769979382622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614115171", + "createdBy": null, + "createdTime": "2026-02-02 04:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:37", + "echoMap": {}, + "alarmNo": "1570474581", + "alarmDate": "1769979396411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049432", + "createdBy": null, + "createdTime": "2026-02-02 04:57:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:15", + "echoMap": {}, + "alarmNo": "1570474582", + "alarmDate": "1769979434199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049598", + "createdBy": null, + "createdTime": "2026-02-02 05:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:33", + "echoMap": {}, + "alarmNo": "1570474583", + "alarmDate": "1769979979576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049616", + "createdBy": null, + "createdTime": "2026-02-02 05:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:22", + "echoMap": {}, + "alarmNo": "1570474584", + "alarmDate": "1769979981378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049871", + "createdBy": null, + "createdTime": "2026-02-02 05:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:06", + "echoMap": {}, + "alarmNo": "1570474585", + "alarmDate": "1769980005561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984058", + "createdBy": null, + "createdTime": "2026-02-02 05:07:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:32", + "echoMap": {}, + "alarmNo": "1570474586", + "alarmDate": "1769980037783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984379", + "createdBy": null, + "createdTime": "2026-02-02 05:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:38", + "echoMap": {}, + "alarmNo": "1570474587", + "alarmDate": "1769980596657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984415", + "createdBy": null, + "createdTime": "2026-02-02 05:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:41", + "echoMap": {}, + "alarmNo": "1570474588", + "alarmDate": "1769980599602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984496", + "createdBy": null, + "createdTime": "2026-02-02 05:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:47", + "echoMap": {}, + "alarmNo": "1570474589", + "alarmDate": "1769980605736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984612", + "createdBy": null, + "createdTime": "2026-02-02 05:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:56", + "echoMap": {}, + "alarmNo": "1570474590", + "alarmDate": "1769980615255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918600", + "createdBy": null, + "createdTime": "2026-02-02 05:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:11", + "echoMap": {}, + "alarmNo": "1570474591", + "alarmDate": "1769980630118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918824", + "createdBy": null, + "createdTime": "2026-02-02 05:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:32", + "echoMap": {}, + "alarmNo": "1570474592", + "alarmDate": "1769981180399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918901", + "createdBy": null, + "createdTime": "2026-02-02 05:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:33", + "echoMap": {}, + "alarmNo": "1570474593", + "alarmDate": "1769981186893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918970", + "createdBy": null, + "createdTime": "2026-02-02 05:26:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:44", + "echoMap": {}, + "alarmNo": "1570474594", + "alarmDate": "1769981191943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383919110", + "createdBy": null, + "createdTime": "2026-02-02 05:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:57", + "echoMap": {}, + "alarmNo": "1570474595", + "alarmDate": "1769981203514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383919251", + "createdBy": null, + "createdTime": "2026-02-02 05:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1570474596", + "alarmDate": "1769981215030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383919266", + "createdBy": null, + "createdTime": "2026-02-02 05:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:15", + "echoMap": {}, + "alarmNo": "1570474597", + "alarmDate": "1769981215940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853312", + "createdBy": null, + "createdTime": "2026-02-02 05:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:28", + "echoMap": {}, + "alarmNo": "1570474598", + "alarmDate": "1769981234532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853509", + "createdBy": null, + "createdTime": "2026-02-02 05:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:28", + "echoMap": {}, + "alarmNo": "1570474599", + "alarmDate": "1769981782219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853642", + "createdBy": null, + "createdTime": "2026-02-02 05:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:39", + "echoMap": {}, + "alarmNo": "1570474600", + "alarmDate": "1769981793101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853738", + "createdBy": null, + "createdTime": "2026-02-02 05:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:42", + "echoMap": {}, + "alarmNo": "1570474601", + "alarmDate": "1769981801239", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853791", + "createdBy": null, + "createdTime": "2026-02-02 05:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:52", + "echoMap": {}, + "alarmNo": "1570474602", + "alarmDate": "1769981805833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853869", + "createdBy": null, + "createdTime": "2026-02-02 05:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:10", + "echoMap": {}, + "alarmNo": "1570474603", + "alarmDate": "1769981812201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787903", + "createdBy": null, + "createdTime": "2026-02-02 05:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:47:07", + "echoMap": {}, + "alarmNo": "1570474604", + "alarmDate": "1769981828022", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787918", + "createdBy": null, + "createdTime": "2026-02-02 05:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:10", + "echoMap": {}, + "alarmNo": "1570474605", + "alarmDate": "1769981829216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787940", + "createdBy": null, + "createdTime": "2026-02-02 05:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:31", + "echoMap": {}, + "alarmNo": "1570474606", + "alarmDate": "1769981830842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787959", + "createdBy": null, + "createdTime": "2026-02-02 05:37:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:13", + "echoMap": {}, + "alarmNo": "1570474607", + "alarmDate": "1769981832202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788155", + "createdBy": null, + "createdTime": "2026-02-02 05:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:19", + "echoMap": {}, + "alarmNo": "1570474608", + "alarmDate": "1769982378685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060014", + "deviceName": "[314](10)豫园3#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788181", + "createdBy": null, + "createdTime": "2026-02-02 05:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:34", + "echoMap": {}, + "alarmNo": "1570474609", + "alarmDate": "1769982381313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788239", + "createdBy": null, + "createdTime": "2026-02-02 05:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:26", + "echoMap": {}, + "alarmNo": "1570474610", + "alarmDate": "1769982385409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788412", + "createdBy": null, + "createdTime": "2026-02-02 05:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:40", + "echoMap": {}, + "alarmNo": "1570474611", + "alarmDate": "1769982398935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788454", + "createdBy": null, + "createdTime": "2026-02-02 05:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:48", + "echoMap": {}, + "alarmNo": "1570474612", + "alarmDate": "1769982402399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788464", + "createdBy": null, + "createdTime": "2026-02-02 05:46:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:55", + "echoMap": {}, + "alarmNo": "1570474613", + "alarmDate": "1769982403142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788471", + "createdBy": null, + "createdTime": "2026-02-02 05:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:35", + "echoMap": {}, + "alarmNo": "1570474614", + "alarmDate": "1769982403692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117422858755090", + "createdBy": null, + "createdTime": "2026-02-02 05:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:58", + "echoMap": {}, + "alarmNo": "1570474615", + "alarmDate": "1769982406389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722424", + "createdBy": null, + "createdTime": "2026-02-02 05:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:54", + "echoMap": {}, + "alarmNo": "1570474616", + "alarmDate": "1769982412887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722608", + "createdBy": null, + "createdTime": "2026-02-02 05:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:07", + "echoMap": {}, + "alarmNo": "1570474617", + "alarmDate": "1769982427244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722698", + "createdBy": null, + "createdTime": "2026-02-02 05:47:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:34", + "echoMap": {}, + "alarmNo": "1570474618", + "alarmDate": "1769982435126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722727", + "createdBy": null, + "createdTime": "2026-02-02 05:47:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:37", + "echoMap": {}, + "alarmNo": "1570474619", + "alarmDate": "1769982437432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153723056", + "createdBy": null, + "createdTime": "2026-02-02 05:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:43", + "echoMap": {}, + "alarmNo": "1570474620", + "alarmDate": "1769982997685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743656968", + "createdBy": null, + "createdTime": "2026-02-02 05:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:00", + "echoMap": {}, + "alarmNo": "1570474621", + "alarmDate": "1769983006463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743656975", + "createdBy": null, + "createdTime": "2026-02-02 05:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:59", + "echoMap": {}, + "alarmNo": "1570474622", + "alarmDate": "1769983006938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743656997", + "createdBy": null, + "createdTime": "2026-02-02 05:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:01", + "echoMap": {}, + "alarmNo": "1570474623", + "alarmDate": "1769983008664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657237", + "createdBy": null, + "createdTime": "2026-02-02 05:57:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:42", + "echoMap": {}, + "alarmNo": "1570474624", + "alarmDate": "1769983030980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657256", + "createdBy": null, + "createdTime": "2026-02-02 05:57:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:33", + "echoMap": {}, + "alarmNo": "1570474625", + "alarmDate": "1769983032694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657451", + "createdBy": null, + "createdTime": "2026-02-02 06:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:20", + "echoMap": {}, + "alarmNo": "1570474626", + "alarmDate": "1769983580247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060089", + "deviceName": "[415](10)豫园4#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657464", + "createdBy": null, + "createdTime": "2026-02-02 06:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:21", + "echoMap": {}, + "alarmNo": "1570474627", + "alarmDate": "1769983580790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060088", + "deviceName": "[416](10)豫园4#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657591", + "createdBy": null, + "createdTime": "2026-02-02 06:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:47", + "echoMap": {}, + "alarmNo": "1570474628", + "alarmDate": "1769983587720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117440038624309", + "createdBy": null, + "createdTime": "2026-02-02 06:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:40", + "echoMap": {}, + "alarmNo": "1570474629", + "alarmDate": "1769983593913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591741", + "createdBy": null, + "createdTime": "2026-02-02 06:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:57", + "echoMap": {}, + "alarmNo": "1570474630", + "alarmDate": "1769983603899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591884", + "createdBy": null, + "createdTime": "2026-02-02 06:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:52", + "echoMap": {}, + "alarmNo": "1570474631", + "alarmDate": "1769983610945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591926", + "createdBy": null, + "createdTime": "2026-02-02 06:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:54", + "echoMap": {}, + "alarmNo": "1570474632", + "alarmDate": "1769983613231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591944", + "createdBy": null, + "createdTime": "2026-02-02 06:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:55", + "echoMap": {}, + "alarmNo": "1570474633", + "alarmDate": "1769983613932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333592048", + "createdBy": null, + "createdTime": "2026-02-02 06:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:19", + "echoMap": {}, + "alarmNo": "1570474634", + "alarmDate": "1769983619765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333592199", + "createdBy": null, + "createdTime": "2026-02-02 06:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:28", + "echoMap": {}, + "alarmNo": "1570474635", + "alarmDate": "1769983627992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526206", + "createdBy": null, + "createdTime": "2026-02-02 06:07:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:19", + "echoMap": {}, + "alarmNo": "1570474636", + "alarmDate": "1769983637701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526356", + "createdBy": null, + "createdTime": "2026-02-02 06:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:27", + "echoMap": {}, + "alarmNo": "1570474637", + "alarmDate": "1769984179840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526472", + "createdBy": null, + "createdTime": "2026-02-02 06:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:28", + "echoMap": {}, + "alarmNo": "1570474638", + "alarmDate": "1769984186751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526667", + "createdBy": null, + "createdTime": "2026-02-02 06:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:58", + "echoMap": {}, + "alarmNo": "1570474639", + "alarmDate": "1769984198896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526679", + "createdBy": null, + "createdTime": "2026-02-02 06:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:52", + "echoMap": {}, + "alarmNo": "1570474640", + "alarmDate": "1769984199303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526685", + "createdBy": null, + "createdTime": "2026-02-02 06:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:41", + "echoMap": {}, + "alarmNo": "1570474641", + "alarmDate": "1769984199729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513460792", + "createdBy": null, + "createdTime": "2026-02-02 06:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:38", + "echoMap": {}, + "alarmNo": "1570474642", + "alarmDate": "1769984214475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513460954", + "createdBy": null, + "createdTime": "2026-02-02 06:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:16", + "echoMap": {}, + "alarmNo": "1570474643", + "alarmDate": "1769984224271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513461069", + "createdBy": null, + "createdTime": "2026-02-02 06:17:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:21", + "echoMap": {}, + "alarmNo": "1570474644", + "alarmDate": "1769984230988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513461190", + "createdBy": null, + "createdTime": "2026-02-02 06:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:26", + "echoMap": {}, + "alarmNo": "1570474645", + "alarmDate": "1769984237454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513461339", + "createdBy": null, + "createdTime": "2026-02-02 06:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:23", + "echoMap": {}, + "alarmNo": "1570474646", + "alarmDate": "1769984779275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395408", + "createdBy": null, + "createdTime": "2026-02-02 06:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:46", + "echoMap": {}, + "alarmNo": "1570474647", + "alarmDate": "1769984793140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395464", + "createdBy": null, + "createdTime": "2026-02-02 06:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:55", + "echoMap": {}, + "alarmNo": "1570474648", + "alarmDate": "1769984796345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395608", + "createdBy": null, + "createdTime": "2026-02-02 06:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:46", + "echoMap": {}, + "alarmNo": "1570474649", + "alarmDate": "1769984804567", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395696", + "createdBy": null, + "createdTime": "2026-02-02 06:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:02", + "echoMap": {}, + "alarmNo": "1570474650", + "alarmDate": "1769984809720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395869", + "createdBy": null, + "createdTime": "2026-02-02 06:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:09", + "echoMap": {}, + "alarmNo": "1570474651", + "alarmDate": "1769984820888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395936", + "createdBy": null, + "createdTime": "2026-02-02 06:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:18", + "echoMap": {}, + "alarmNo": "1570474652", + "alarmDate": "1769984825263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395972", + "createdBy": null, + "createdTime": "2026-02-02 06:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:28", + "echoMap": {}, + "alarmNo": "1570474653", + "alarmDate": "1769984827435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117474398362657", + "createdBy": null, + "createdTime": "2026-02-02 06:27:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:41", + "echoMap": {}, + "alarmNo": "1570474654", + "alarmDate": "1769984833705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330353", + "createdBy": null, + "createdTime": "2026-02-02 06:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:36", + "echoMap": {}, + "alarmNo": "1570474655", + "alarmDate": "1769985394614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330433", + "createdBy": null, + "createdTime": "2026-02-02 06:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:40", + "echoMap": {}, + "alarmNo": "1570474656", + "alarmDate": "1769985399261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330440", + "createdBy": null, + "createdTime": "2026-02-02 06:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:51", + "echoMap": {}, + "alarmNo": "1570474657", + "alarmDate": "1769985399764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330505", + "createdBy": null, + "createdTime": "2026-02-02 06:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:50", + "echoMap": {}, + "alarmNo": "1570474658", + "alarmDate": "1769985403442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330529", + "createdBy": null, + "createdTime": "2026-02-02 06:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:46", + "echoMap": {}, + "alarmNo": "1570474659", + "alarmDate": "1769985404739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264521", + "createdBy": null, + "createdTime": "2026-02-02 06:36:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:06", + "echoMap": {}, + "alarmNo": "1570474660", + "alarmDate": "1769985413039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264691", + "createdBy": null, + "createdTime": "2026-02-02 06:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:04", + "echoMap": {}, + "alarmNo": "1570474661", + "alarmDate": "1769985423730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264772", + "createdBy": null, + "createdTime": "2026-02-02 06:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:09", + "echoMap": {}, + "alarmNo": "1570474662", + "alarmDate": "1769985428497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264864", + "createdBy": null, + "createdTime": "2026-02-02 06:37:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:15", + "echoMap": {}, + "alarmNo": "1570474663", + "alarmDate": "1769985434404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264925", + "createdBy": null, + "createdTime": "2026-02-02 06:37:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:38", + "echoMap": {}, + "alarmNo": "1570474664", + "alarmDate": "1769985439393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283265059", + "createdBy": null, + "createdTime": "2026-02-02 06:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:22", + "echoMap": {}, + "alarmNo": "1570474665", + "alarmDate": "1769985980578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283265126", + "createdBy": null, + "createdTime": "2026-02-02 06:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:26", + "echoMap": {}, + "alarmNo": "1570474666", + "alarmDate": "1769985984607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283265234", + "createdBy": null, + "createdTime": "2026-02-02 06:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:37", + "echoMap": {}, + "alarmNo": "1570474667", + "alarmDate": "1769985991176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117495873199523", + "createdBy": null, + "createdTime": "2026-02-02 06:47:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:01", + "echoMap": {}, + "alarmNo": "1570474668", + "alarmDate": "1769986020089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117495873199731", + "createdBy": null, + "createdTime": "2026-02-02 06:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:13", + "echoMap": {}, + "alarmNo": "1570474669", + "alarmDate": "1769986032155", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117504463134017", + "createdBy": null, + "createdTime": "2026-02-02 06:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:20", + "echoMap": {}, + "alarmNo": "1570474670", + "alarmDate": "1769986597735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117504463134243", + "createdBy": null, + "createdTime": "2026-02-02 06:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:53", + "echoMap": {}, + "alarmNo": "1570474671", + "alarmDate": "1769986611775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068308", + "createdBy": null, + "createdTime": "2026-02-02 06:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:11", + "echoMap": {}, + "alarmNo": "1570474672", + "alarmDate": "1769986630372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068420", + "createdBy": null, + "createdTime": "2026-02-02 06:57:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:29", + "echoMap": {}, + "alarmNo": "1570474673", + "alarmDate": "1769986636958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068451", + "createdBy": null, + "createdTime": "2026-02-02 06:57:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:50", + "echoMap": {}, + "alarmNo": "1570474674", + "alarmDate": "1769986639894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068844", + "createdBy": null, + "createdTime": "2026-02-02 07:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:38", + "echoMap": {}, + "alarmNo": "1570474675", + "alarmDate": "1769987196548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643002942", + "createdBy": null, + "createdTime": "2026-02-02 07:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:02", + "echoMap": {}, + "alarmNo": "1570474676", + "alarmDate": "1769987221203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643002959", + "createdBy": null, + "createdTime": "2026-02-02 07:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:20", + "echoMap": {}, + "alarmNo": "1570474677", + "alarmDate": "1769987222100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643003017", + "createdBy": null, + "createdTime": "2026-02-02 07:07:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:06", + "echoMap": {}, + "alarmNo": "1570474678", + "alarmDate": "1769987225248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643003365", + "createdBy": null, + "createdTime": "2026-02-02 07:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:02", + "echoMap": {}, + "alarmNo": "1570474679", + "alarmDate": "1769987781106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232937550", + "createdBy": null, + "createdTime": "2026-02-02 07:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:44", + "echoMap": {}, + "alarmNo": "1570474680", + "alarmDate": "1769987802920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232937871", + "createdBy": null, + "createdTime": "2026-02-02 07:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:08", + "echoMap": {}, + "alarmNo": "1570474681", + "alarmDate": "1769987822366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232938226", + "createdBy": null, + "createdTime": "2026-02-02 07:26:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:54", + "echoMap": {}, + "alarmNo": "1570474682", + "alarmDate": "1769988378356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232938261", + "createdBy": null, + "createdTime": "2026-02-02 07:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:50", + "echoMap": {}, + "alarmNo": "1570474683", + "alarmDate": "1769988381341", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117839587", + "createdBy": null, + "createdTime": "2026-02-02 07:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:02", + "echoMap": {}, + "alarmNo": "1570474684", + "alarmDate": "1769988421153", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117839663", + "createdBy": null, + "createdTime": "2026-02-02 07:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:34", + "echoMap": {}, + "alarmNo": "1570474685", + "alarmDate": "1769988425545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117839700", + "createdBy": null, + "createdTime": "2026-02-02 07:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:09", + "echoMap": {}, + "alarmNo": "1570474686", + "alarmDate": "1769988427720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117840228", + "createdBy": null, + "createdTime": "2026-02-02 07:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:35", + "echoMap": {}, + "alarmNo": "1570474687", + "alarmDate": "1769988994329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117547412806694", + "createdBy": null, + "createdTime": "2026-02-02 07:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:48", + "echoMap": {}, + "alarmNo": "1570474688", + "alarmDate": "1769989007143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117547412806712", + "createdBy": null, + "createdTime": "2026-02-02 07:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:56", + "echoMap": {}, + "alarmNo": "1570474689", + "alarmDate": "1769989008027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741446", + "createdBy": null, + "createdTime": "2026-02-02 07:37:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:06", + "echoMap": {}, + "alarmNo": "1570474690", + "alarmDate": "1769989024858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741487", + "createdBy": null, + "createdTime": "2026-02-02 07:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:38", + "echoMap": {}, + "alarmNo": "1570474691", + "alarmDate": "1769989027768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741540", + "createdBy": null, + "createdTime": "2026-02-02 07:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:24", + "echoMap": {}, + "alarmNo": "1570474692", + "alarmDate": "1769989031018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741931", + "createdBy": null, + "createdTime": "2026-02-02 07:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:30", + "echoMap": {}, + "alarmNo": "1570474693", + "alarmDate": "1769989588764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002742073", + "createdBy": null, + "createdTime": "2026-02-02 07:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:51", + "echoMap": {}, + "alarmNo": "1570474694", + "alarmDate": "1769989597492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887643146", + "createdBy": null, + "createdTime": "2026-02-02 07:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:20", + "echoMap": {}, + "alarmNo": "1570474695", + "alarmDate": "1769989615964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887643232", + "createdBy": null, + "createdTime": "2026-02-02 07:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:50", + "echoMap": {}, + "alarmNo": "1570474696", + "alarmDate": "1769989621322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887643672", + "createdBy": null, + "createdTime": "2026-02-02 07:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:14", + "echoMap": {}, + "alarmNo": "1570474697", + "alarmDate": "1769990181129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887644041", + "createdBy": null, + "createdTime": "2026-02-02 07:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:49", + "echoMap": {}, + "alarmNo": "1570474698", + "alarmDate": "1769990201831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545196", + "createdBy": null, + "createdTime": "2026-02-02 07:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:56", + "echoMap": {}, + "alarmNo": "1570474699", + "alarmDate": "1769990223963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545224", + "createdBy": null, + "createdTime": "2026-02-02 07:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:07", + "echoMap": {}, + "alarmNo": "1570474700", + "alarmDate": "1769990225756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545579", + "createdBy": null, + "createdTime": "2026-02-02 08:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:38", + "echoMap": {}, + "alarmNo": "1570474701", + "alarmDate": "1769990781506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545756", + "createdBy": null, + "createdTime": "2026-02-02 08:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:34", + "echoMap": {}, + "alarmNo": "1570474702", + "alarmDate": "1769990792789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545812", + "createdBy": null, + "createdTime": "2026-02-02 08:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:37", + "echoMap": {}, + "alarmNo": "1570474703", + "alarmDate": "1769990796210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545820", + "createdBy": null, + "createdTime": "2026-02-02 08:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:49", + "echoMap": {}, + "alarmNo": "1570474704", + "alarmDate": "1769990796782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545909", + "createdBy": null, + "createdTime": "2026-02-02 08:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:51", + "echoMap": {}, + "alarmNo": "1570474705", + "alarmDate": "1769990802428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772546034", + "createdBy": null, + "createdTime": "2026-02-02 08:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:51", + "echoMap": {}, + "alarmNo": "1570474706", + "alarmDate": "1769990810190", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117586067512353", + "createdBy": null, + "createdTime": "2026-02-02 08:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:12", + "echoMap": {}, + "alarmNo": "1570474707", + "alarmDate": "1769990813205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117590362479654", + "createdBy": null, + "createdTime": "2026-02-02 08:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:08", + "echoMap": {}, + "alarmNo": "1570474708", + "alarmDate": "1769990816475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447045", + "createdBy": null, + "createdTime": "2026-02-02 08:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:22", + "echoMap": {}, + "alarmNo": "1570474709", + "alarmDate": "1769990826440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447067", + "createdBy": null, + "createdTime": "2026-02-02 08:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:09", + "echoMap": {}, + "alarmNo": "1570474710", + "alarmDate": "1769990827675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447079", + "createdBy": null, + "createdTime": "2026-02-02 08:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:09", + "echoMap": {}, + "alarmNo": "1570474711", + "alarmDate": "1769990828301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447152", + "createdBy": null, + "createdTime": "2026-02-02 08:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:31", + "echoMap": {}, + "alarmNo": "1570474712", + "alarmDate": "1769990832903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447353", + "createdBy": null, + "createdTime": "2026-02-02 08:16:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:01", + "echoMap": {}, + "alarmNo": "1570474713", + "alarmDate": "1769991379400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447386", + "createdBy": null, + "createdTime": "2026-02-02 08:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:26", + "echoMap": {}, + "alarmNo": "1570474714", + "alarmDate": "1769991381535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447387", + "createdBy": null, + "createdTime": "2026-02-02 08:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:23", + "echoMap": {}, + "alarmNo": "1570474715", + "alarmDate": "1769991381590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447426", + "createdBy": null, + "createdTime": "2026-02-02 08:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:25", + "echoMap": {}, + "alarmNo": "1570474716", + "alarmDate": "1769991383875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447596", + "createdBy": null, + "createdTime": "2026-02-02 08:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:47", + "echoMap": {}, + "alarmNo": "1570474717", + "alarmDate": "1769991393877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447791", + "createdBy": null, + "createdTime": "2026-02-02 08:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:42", + "echoMap": {}, + "alarmNo": "1570474718", + "alarmDate": "1769991405771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542348953", + "createdBy": null, + "createdTime": "2026-02-02 08:17:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:01", + "echoMap": {}, + "alarmNo": "1570474719", + "alarmDate": "1769991427034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349064", + "createdBy": null, + "createdTime": "2026-02-02 08:17:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:39", + "echoMap": {}, + "alarmNo": "1570474720", + "alarmDate": "1769991433502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349264", + "createdBy": null, + "createdTime": "2026-02-02 08:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:30", + "echoMap": {}, + "alarmNo": "1570474721", + "alarmDate": "1769991979263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349654", + "createdBy": null, + "createdTime": "2026-02-02 08:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:54", + "echoMap": {}, + "alarmNo": "1570474722", + "alarmDate": "1769992002252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349681", + "createdBy": null, + "createdTime": "2026-02-02 08:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:50", + "echoMap": {}, + "alarmNo": "1570474723", + "alarmDate": "1769992003838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349770", + "createdBy": null, + "createdTime": "2026-02-02 08:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:50", + "echoMap": {}, + "alarmNo": "1570474724", + "alarmDate": "1769992009186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117611837316110", + "createdBy": null, + "createdTime": "2026-02-02 08:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:11", + "echoMap": {}, + "alarmNo": "1570474725", + "alarmDate": "1769992011815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283583", + "createdBy": null, + "createdTime": "2026-02-02 08:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:13", + "echoMap": {}, + "alarmNo": "1570474726", + "alarmDate": "1769992026448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283665", + "createdBy": null, + "createdTime": "2026-02-02 08:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:13", + "echoMap": {}, + "alarmNo": "1570474727", + "alarmDate": "1769992031581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283682", + "createdBy": null, + "createdTime": "2026-02-02 08:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:13", + "echoMap": {}, + "alarmNo": "1570474728", + "alarmDate": "1769992032582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283703", + "createdBy": null, + "createdTime": "2026-02-02 08:27:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:20", + "echoMap": {}, + "alarmNo": "1570474729", + "alarmDate": "1769992033893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283718", + "createdBy": null, + "createdTime": "2026-02-02 08:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:07", + "echoMap": {}, + "alarmNo": "1570474730", + "alarmDate": "1769992034744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283771", + "createdBy": null, + "createdTime": "2026-02-02 08:27:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:20", + "echoMap": {}, + "alarmNo": "1570474731", + "alarmDate": "1769992038841", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283875", + "createdBy": null, + "createdTime": "2026-02-02 08:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:11", + "echoMap": {}, + "alarmNo": "1570474732", + "alarmDate": "1769992578770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283889", + "createdBy": null, + "createdTime": "2026-02-02 08:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1570474733", + "alarmDate": "1769992580055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283920", + "createdBy": null, + "createdTime": "2026-02-02 08:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:50", + "echoMap": {}, + "alarmNo": "1570474734", + "alarmDate": "1769992582007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283960", + "createdBy": null, + "createdTime": "2026-02-02 08:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:26", + "echoMap": {}, + "alarmNo": "1570474735", + "alarmDate": "1769992584710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132284001", + "createdBy": null, + "createdTime": "2026-02-02 08:36:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:28", + "echoMap": {}, + "alarmNo": "1570474736", + "alarmDate": "1769992586878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132284253", + "createdBy": null, + "createdTime": "2026-02-02 08:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:00", + "echoMap": {}, + "alarmNo": "1570474737", + "alarmDate": "1769992601636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132284265", + "createdBy": null, + "createdTime": "2026-02-02 08:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:43", + "echoMap": {}, + "alarmNo": "1570474738", + "alarmDate": "1769992601951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218199", + "createdBy": null, + "createdTime": "2026-02-02 08:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:05", + "echoMap": {}, + "alarmNo": "1570474739", + "alarmDate": "1769992624149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218222", + "createdBy": null, + "createdTime": "2026-02-02 08:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:12", + "echoMap": {}, + "alarmNo": "1570474740", + "alarmDate": "1769992625592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060108", + "deviceName": "[103](10)豫园上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218413", + "createdBy": null, + "createdTime": "2026-02-02 08:37:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:53", + "echoMap": {}, + "alarmNo": "1570474741", + "alarmDate": "1769992637808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218526", + "createdBy": null, + "createdTime": "2026-02-02 08:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:48", + "echoMap": {}, + "alarmNo": "1570474742", + "alarmDate": "1769993178666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218563", + "createdBy": null, + "createdTime": "2026-02-02 08:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:44", + "echoMap": {}, + "alarmNo": "1570474743", + "alarmDate": "1769993181153", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218828", + "createdBy": null, + "createdTime": "2026-02-02 08:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:55", + "echoMap": {}, + "alarmNo": "1570474744", + "alarmDate": "1769993195614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117633312152611", + "createdBy": null, + "createdTime": "2026-02-02 08:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:52", + "echoMap": {}, + "alarmNo": "1570474745", + "alarmDate": "1769993210601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607119935", + "createdBy": null, + "createdTime": "2026-02-02 08:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:14", + "echoMap": {}, + "alarmNo": "1570474746", + "alarmDate": "1769993216379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607119966", + "createdBy": null, + "createdTime": "2026-02-02 08:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:06", + "echoMap": {}, + "alarmNo": "1570474747", + "alarmDate": "1769993218418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120063", + "createdBy": null, + "createdTime": "2026-02-02 08:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:47", + "echoMap": {}, + "alarmNo": "1570474748", + "alarmDate": "1769993224988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120186", + "createdBy": null, + "createdTime": "2026-02-02 08:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:18", + "echoMap": {}, + "alarmNo": "1570474749", + "alarmDate": "1769993231822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120232", + "createdBy": null, + "createdTime": "2026-02-02 08:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:09", + "echoMap": {}, + "alarmNo": "1570474750", + "alarmDate": "1769993234380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120417", + "createdBy": null, + "createdTime": "2026-02-02 08:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:24", + "echoMap": {}, + "alarmNo": "1570474751", + "alarmDate": "1769993778988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120418", + "createdBy": null, + "createdTime": "2026-02-02 08:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:42", + "echoMap": {}, + "alarmNo": "1570474752", + "alarmDate": "1769993779114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120831", + "createdBy": null, + "createdTime": "2026-02-02 08:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:04", + "echoMap": {}, + "alarmNo": "1570474753", + "alarmDate": "1769993806015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054494", + "createdBy": null, + "createdTime": "2026-02-02 08:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:53", + "echoMap": {}, + "alarmNo": "1570474754", + "alarmDate": "1769993812147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054567", + "createdBy": null, + "createdTime": "2026-02-02 08:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:58", + "echoMap": {}, + "alarmNo": "1570474755", + "alarmDate": "1769993816578", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054612", + "createdBy": null, + "createdTime": "2026-02-02 08:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:05", + "echoMap": {}, + "alarmNo": "1570474756", + "alarmDate": "1769993819266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054678", + "createdBy": null, + "createdTime": "2026-02-02 08:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:09", + "echoMap": {}, + "alarmNo": "1570474757", + "alarmDate": "1769993822964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054739", + "createdBy": null, + "createdTime": "2026-02-02 08:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:07", + "echoMap": {}, + "alarmNo": "1570474758", + "alarmDate": "1769993826377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054883", + "createdBy": null, + "createdTime": "2026-02-02 08:57:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:16", + "echoMap": {}, + "alarmNo": "1570474759", + "alarmDate": "1769993835456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055067", + "createdBy": null, + "createdTime": "2026-02-02 09:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:05", + "echoMap": {}, + "alarmNo": "1570474760", + "alarmDate": "1769994379565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055217", + "createdBy": null, + "createdTime": "2026-02-02 09:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:35", + "echoMap": {}, + "alarmNo": "1570474761", + "alarmDate": "1769994388782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055251", + "createdBy": null, + "createdTime": "2026-02-02 09:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:32", + "echoMap": {}, + "alarmNo": "1570474762", + "alarmDate": "1769994390743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055384", + "createdBy": null, + "createdTime": "2026-02-02 09:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:08", + "echoMap": {}, + "alarmNo": "1570474763", + "alarmDate": "1769994398635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117650492021777", + "createdBy": null, + "createdTime": "2026-02-02 09:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:47", + "echoMap": {}, + "alarmNo": "1570474764", + "alarmDate": "1769994405754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989172", + "createdBy": null, + "createdTime": "2026-02-02 09:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:49", + "echoMap": {}, + "alarmNo": "1570474765", + "alarmDate": "1769994415674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989274", + "createdBy": null, + "createdTime": "2026-02-02 09:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:03", + "echoMap": {}, + "alarmNo": "1570474766", + "alarmDate": "1769994421907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989311", + "createdBy": null, + "createdTime": "2026-02-02 09:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:16", + "echoMap": {}, + "alarmNo": "1570474767", + "alarmDate": "1769994424268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989654", + "createdBy": null, + "createdTime": "2026-02-02 09:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:22", + "echoMap": {}, + "alarmNo": "1570474768", + "alarmDate": "1769994978242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989663", + "createdBy": null, + "createdTime": "2026-02-02 09:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:00", + "echoMap": {}, + "alarmNo": "1570474769", + "alarmDate": "1769994979519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989695", + "createdBy": null, + "createdTime": "2026-02-02 09:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:27", + "echoMap": {}, + "alarmNo": "1570474770", + "alarmDate": "1769994981487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989703", + "createdBy": null, + "createdTime": "2026-02-02 09:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:27", + "echoMap": {}, + "alarmNo": "1570474771", + "alarmDate": "1769994981859", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989797", + "createdBy": null, + "createdTime": "2026-02-02 09:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:57", + "echoMap": {}, + "alarmNo": "1570474772", + "alarmDate": "1769994986916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891249", + "createdBy": null, + "createdTime": "2026-02-02 09:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:38", + "echoMap": {}, + "alarmNo": "1570474773", + "alarmDate": "1769995027981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891333", + "createdBy": null, + "createdTime": "2026-02-02 09:17:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:58", + "echoMap": {}, + "alarmNo": "1570474774", + "alarmDate": "1769995033371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891394", + "createdBy": null, + "createdTime": "2026-02-02 09:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:28", + "echoMap": {}, + "alarmNo": "1570474775", + "alarmDate": "1769995037076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891874", + "createdBy": null, + "createdTime": "2026-02-02 09:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:52", + "echoMap": {}, + "alarmNo": "1570474776", + "alarmDate": "1769995600515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825575", + "createdBy": null, + "createdTime": "2026-02-02 09:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:44", + "echoMap": {}, + "alarmNo": "1570474777", + "alarmDate": "1769995610149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825645", + "createdBy": null, + "createdTime": "2026-02-02 09:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:55", + "echoMap": {}, + "alarmNo": "1570474778", + "alarmDate": "1769995614173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825661", + "createdBy": null, + "createdTime": "2026-02-02 09:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:56", + "echoMap": {}, + "alarmNo": "1570474779", + "alarmDate": "1769995614868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825797", + "createdBy": null, + "createdTime": "2026-02-02 09:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:18", + "echoMap": {}, + "alarmNo": "1570474780", + "alarmDate": "1769995622930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825963", + "createdBy": null, + "createdTime": "2026-02-02 09:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:13", + "echoMap": {}, + "alarmNo": "1570474781", + "alarmDate": "1769995632962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261826035", + "createdBy": null, + "createdTime": "2026-02-02 09:27:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:16", + "echoMap": {}, + "alarmNo": "1570474782", + "alarmDate": "1769995637204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261826473", + "createdBy": null, + "createdTime": "2026-02-02 09:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:38", + "echoMap": {}, + "alarmNo": "1570474783", + "alarmDate": "1769996196716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261826488", + "createdBy": null, + "createdTime": "2026-02-02 09:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:50", + "echoMap": {}, + "alarmNo": "1570474784", + "alarmDate": "1769996197374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117684851760153", + "createdBy": null, + "createdTime": "2026-02-02 09:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:47", + "echoMap": {}, + "alarmNo": "1570474785", + "alarmDate": "1769996205536", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727483", + "createdBy": null, + "createdTime": "2026-02-02 09:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:52", + "echoMap": {}, + "alarmNo": "1570474786", + "alarmDate": "1769996210609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727569", + "createdBy": null, + "createdTime": "2026-02-02 09:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:57", + "echoMap": {}, + "alarmNo": "1570474787", + "alarmDate": "1769996215833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727582", + "createdBy": null, + "createdTime": "2026-02-02 09:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:27", + "echoMap": {}, + "alarmNo": "1570474788", + "alarmDate": "1769996216410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727732", + "createdBy": null, + "createdTime": "2026-02-02 09:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:11", + "echoMap": {}, + "alarmNo": "1570474789", + "alarmDate": "1769996224440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146728285", + "createdBy": null, + "createdTime": "2026-02-02 09:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:55", + "echoMap": {}, + "alarmNo": "1570474790", + "alarmDate": "1769996790791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629325", + "createdBy": null, + "createdTime": "2026-02-02 09:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:03", + "echoMap": {}, + "alarmNo": "1570474791", + "alarmDate": "1769996804596", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629656", + "createdBy": null, + "createdTime": "2026-02-02 09:47:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:32", + "echoMap": {}, + "alarmNo": "1570474792", + "alarmDate": "1769996822894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629706", + "createdBy": null, + "createdTime": "2026-02-02 09:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:32", + "echoMap": {}, + "alarmNo": "1570474793", + "alarmDate": "1769996826355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629768", + "createdBy": null, + "createdTime": "2026-02-02 09:47:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:54", + "echoMap": {}, + "alarmNo": "1570474794", + "alarmDate": "1769996830026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629866", + "createdBy": null, + "createdTime": "2026-02-02 09:47:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:50", + "echoMap": {}, + "alarmNo": "1570474795", + "alarmDate": "1769996835819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060046", + "deviceName": "[409](10)豫园3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117710621563924", + "createdBy": null, + "createdTime": "2026-02-02 09:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:44", + "echoMap": {}, + "alarmNo": "1570474796", + "alarmDate": "1769997403053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117710621563940", + "createdBy": null, + "createdTime": "2026-02-02 09:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:02", + "echoMap": {}, + "alarmNo": "1570474797", + "alarmDate": "1769997403890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117714916531212", + "createdBy": null, + "createdTime": "2026-02-02 09:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:12", + "echoMap": {}, + "alarmNo": "1570474798", + "alarmDate": "1769997404821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117714916531489", + "createdBy": null, + "createdTime": "2026-02-02 09:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:02", + "echoMap": {}, + "alarmNo": "1570474799", + "alarmDate": "1769997420586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117714916531909", + "createdBy": null, + "createdTime": "2026-02-02 10:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:20", + "echoMap": {}, + "alarmNo": "1570474800", + "alarmDate": "1769997978824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117723506465828", + "createdBy": null, + "createdTime": "2026-02-02 10:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:43", + "echoMap": {}, + "alarmNo": "1570474801", + "alarmDate": "1769998001623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433207", + "createdBy": null, + "createdTime": "2026-02-02 10:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:51", + "echoMap": {}, + "alarmNo": "1570474802", + "alarmDate": "1769998009651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433344", + "createdBy": null, + "createdTime": "2026-02-02 10:06:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:58", + "echoMap": {}, + "alarmNo": "1570474803", + "alarmDate": "1769998017454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433519", + "createdBy": null, + "createdTime": "2026-02-02 10:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:20", + "echoMap": {}, + "alarmNo": "1570474804", + "alarmDate": "1769998028011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433624", + "createdBy": null, + "createdTime": "2026-02-02 10:07:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:02", + "echoMap": {}, + "alarmNo": "1570474805", + "alarmDate": "1769998034184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433812", + "createdBy": null, + "createdTime": "2026-02-02 10:16:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:32", + "echoMap": {}, + "alarmNo": "1570474806", + "alarmDate": "1769998578711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801434077", + "createdBy": null, + "createdTime": "2026-02-02 10:16:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:37", + "echoMap": {}, + "alarmNo": "1570474807", + "alarmDate": "1769998595719", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368397", + "createdBy": null, + "createdTime": "2026-02-02 10:26:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "alarmNo": "1570474808", + "alarmDate": "1769999178109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368442", + "createdBy": null, + "createdTime": "2026-02-02 10:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:33", + "echoMap": {}, + "alarmNo": "1570474809", + "alarmDate": "1769999181567", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368595", + "createdBy": null, + "createdTime": "2026-02-02 10:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:31", + "echoMap": {}, + "alarmNo": "1570474810", + "alarmDate": "1769999189882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368652", + "createdBy": null, + "createdTime": "2026-02-02 10:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:09", + "echoMap": {}, + "alarmNo": "1570474811", + "alarmDate": "1769999192658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276269788", + "createdBy": null, + "createdTime": "2026-02-02 10:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:29", + "echoMap": {}, + "alarmNo": "1570474812", + "alarmDate": "1769999212303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276269946", + "createdBy": null, + "createdTime": "2026-02-02 10:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:02", + "echoMap": {}, + "alarmNo": "1570474813", + "alarmDate": "1769999220948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276269995", + "createdBy": null, + "createdTime": "2026-02-02 10:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:04", + "echoMap": {}, + "alarmNo": "1570474814", + "alarmDate": "1769999223501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276270097", + "createdBy": null, + "createdTime": "2026-02-02 10:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:33", + "echoMap": {}, + "alarmNo": "1570474815", + "alarmDate": "1769999228713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276270402", + "createdBy": null, + "createdTime": "2026-02-02 10:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:21", + "echoMap": {}, + "alarmNo": "1570474816", + "alarmDate": "1769999780081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117757866204179", + "createdBy": null, + "createdTime": "2026-02-02 10:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:17", + "echoMap": {}, + "alarmNo": "1570474817", + "alarmDate": "1769999793283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171612", + "createdBy": null, + "createdTime": "2026-02-02 10:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:45", + "echoMap": {}, + "alarmNo": "1570474818", + "alarmDate": "1769999804391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171621", + "createdBy": null, + "createdTime": "2026-02-02 10:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:32", + "echoMap": {}, + "alarmNo": "1570474819", + "alarmDate": "1769999804757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171701", + "createdBy": null, + "createdTime": "2026-02-02 10:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:50", + "echoMap": {}, + "alarmNo": "1570474820", + "alarmDate": "1769999808519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171951", + "createdBy": null, + "createdTime": "2026-02-02 10:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:03", + "echoMap": {}, + "alarmNo": "1570474821", + "alarmDate": "1769999822210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161172025", + "createdBy": null, + "createdTime": "2026-02-02 10:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:07", + "echoMap": {}, + "alarmNo": "1570474822", + "alarmDate": "1769999826142", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161172360", + "createdBy": null, + "createdTime": "2026-02-02 10:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:22", + "echoMap": {}, + "alarmNo": "1570474823", + "alarmDate": "1770000378794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073344", + "createdBy": null, + "createdTime": "2026-02-02 10:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:43", + "echoMap": {}, + "alarmNo": "1570474824", + "alarmDate": "1770000390487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060112", + "deviceName": "[111](10)豫园下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073439", + "createdBy": null, + "createdTime": "2026-02-02 10:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:43", + "echoMap": {}, + "alarmNo": "1570474825", + "alarmDate": "1770000395878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073473", + "createdBy": null, + "createdTime": "2026-02-02 10:46:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:52", + "echoMap": {}, + "alarmNo": "1570474826", + "alarmDate": "1770000397655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060024", + "deviceName": "[402](10)豫园1#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073793", + "createdBy": null, + "createdTime": "2026-02-02 10:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:17", + "echoMap": {}, + "alarmNo": "1570474827", + "alarmDate": "1770000415917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073794", + "createdBy": null, + "createdTime": "2026-02-02 10:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:20", + "echoMap": {}, + "alarmNo": "1570474828", + "alarmDate": "1770000415992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074010", + "createdBy": null, + "createdTime": "2026-02-02 10:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:53", + "echoMap": {}, + "alarmNo": "1570474829", + "alarmDate": "1770000428444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074034", + "createdBy": null, + "createdTime": "2026-02-02 10:47:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:11", + "echoMap": {}, + "alarmNo": "1570474830", + "alarmDate": "1770000429611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074123", + "createdBy": null, + "createdTime": "2026-02-02 10:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:45", + "echoMap": {}, + "alarmNo": "1570474831", + "alarmDate": "1770000434385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074345", + "createdBy": null, + "createdTime": "2026-02-02 10:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:20", + "echoMap": {}, + "alarmNo": "1570474832", + "alarmDate": "1770000981193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074356", + "createdBy": null, + "createdTime": "2026-02-02 10:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:23", + "echoMap": {}, + "alarmNo": "1570474833", + "alarmDate": "1770000981754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117783636007957", + "createdBy": null, + "createdTime": "2026-02-02 10:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:30", + "echoMap": {}, + "alarmNo": "1570474834", + "alarmDate": "1770000988630", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930975364", + "createdBy": null, + "createdTime": "2026-02-02 10:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:07", + "echoMap": {}, + "alarmNo": "1570474835", + "alarmDate": "1770000998381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930975859", + "createdBy": null, + "createdTime": "2026-02-02 10:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:46", + "echoMap": {}, + "alarmNo": "1570474836", + "alarmDate": "1770001026180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930975880", + "createdBy": null, + "createdTime": "2026-02-02 10:57:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:08", + "echoMap": {}, + "alarmNo": "1570474837", + "alarmDate": "1770001027366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930976187", + "createdBy": null, + "createdTime": "2026-02-02 11:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:22", + "echoMap": {}, + "alarmNo": "1570474838", + "alarmDate": "1770001578813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930976245", + "createdBy": null, + "createdTime": "2026-02-02 11:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:23", + "echoMap": {}, + "alarmNo": "1570474839", + "alarmDate": "1770001582397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877228", + "createdBy": null, + "createdTime": "2026-02-02 11:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:51", + "echoMap": {}, + "alarmNo": "1570474840", + "alarmDate": "1770001595827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877248", + "createdBy": null, + "createdTime": "2026-02-02 11:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:38", + "echoMap": {}, + "alarmNo": "1570474841", + "alarmDate": "1770001596956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877330", + "createdBy": null, + "createdTime": "2026-02-02 11:06:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:42", + "echoMap": {}, + "alarmNo": "1570474842", + "alarmDate": "1770001601214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877796", + "createdBy": null, + "createdTime": "2026-02-02 11:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:09", + "echoMap": {}, + "alarmNo": "1570474843", + "alarmDate": "1770001628018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877886", + "createdBy": null, + "createdTime": "2026-02-02 11:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:46", + "echoMap": {}, + "alarmNo": "1570474844", + "alarmDate": "1770001633021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117809405811727", + "createdBy": null, + "createdTime": "2026-02-02 11:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:25", + "echoMap": {}, + "alarmNo": "1570474845", + "alarmDate": "1770002184171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117813700779275", + "createdBy": null, + "createdTime": "2026-02-02 11:16:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:07", + "echoMap": {}, + "alarmNo": "1570474846", + "alarmDate": "1770002201886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117813700779664", + "createdBy": null, + "createdTime": "2026-02-02 11:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:04", + "echoMap": {}, + "alarmNo": "1570474847", + "alarmDate": "1770002223314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117822290713620", + "createdBy": null, + "createdTime": "2026-02-02 11:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:22", + "echoMap": {}, + "alarmNo": "1570474848", + "alarmDate": "1770002782006", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117822290713621", + "createdBy": null, + "createdTime": "2026-02-02 11:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:09", + "echoMap": {}, + "alarmNo": "1570474849", + "alarmDate": "1770002782009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117826585681533", + "createdBy": null, + "createdTime": "2026-02-02 11:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:11", + "echoMap": {}, + "alarmNo": "1570474850", + "alarmDate": "1770002817812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117826585681745", + "createdBy": null, + "createdTime": "2026-02-02 11:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:50", + "echoMap": {}, + "alarmNo": "1570474851", + "alarmDate": "1770002828958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117826585681819", + "createdBy": null, + "createdTime": "2026-02-02 11:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:14", + "echoMap": {}, + "alarmNo": "1570474852", + "alarmDate": "1770002833013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470582927", + "createdBy": null, + "createdTime": "2026-02-02 11:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:26", + "echoMap": {}, + "alarmNo": "1570474853", + "alarmDate": "1770003384755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060106", + "deviceName": "[206](10)豫园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583000", + "createdBy": null, + "createdTime": "2026-02-02 11:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:30", + "echoMap": {}, + "alarmNo": "1570474854", + "alarmDate": "1770003389188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583162", + "createdBy": null, + "createdTime": "2026-02-02 11:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:40", + "echoMap": {}, + "alarmNo": "1570474855", + "alarmDate": "1770003398970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583474", + "createdBy": null, + "createdTime": "2026-02-02 11:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:02", + "echoMap": {}, + "alarmNo": "1570474856", + "alarmDate": "1770003417077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583549", + "createdBy": null, + "createdTime": "2026-02-02 11:37:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:16", + "echoMap": {}, + "alarmNo": "1570474857", + "alarmDate": "1770003421443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583587", + "createdBy": null, + "createdTime": "2026-02-02 11:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:04", + "echoMap": {}, + "alarmNo": "1570474858", + "alarmDate": "1770003423371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583792", + "createdBy": null, + "createdTime": "2026-02-02 11:37:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:16", + "echoMap": {}, + "alarmNo": "1570474859", + "alarmDate": "1770003434861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355484674", + "createdBy": null, + "createdTime": "2026-02-02 11:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:20", + "echoMap": {}, + "alarmNo": "1570474860", + "alarmDate": "1770003978521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355484679", + "createdBy": null, + "createdTime": "2026-02-02 11:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:34", + "echoMap": {}, + "alarmNo": "1570474861", + "alarmDate": "1770003978779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355484884", + "createdBy": null, + "createdTime": "2026-02-02 11:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:31", + "echoMap": {}, + "alarmNo": "1570474862", + "alarmDate": "1770003990030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355485213", + "createdBy": null, + "createdTime": "2026-02-02 11:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:37", + "echoMap": {}, + "alarmNo": "1570474863", + "alarmDate": "1770004008914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355485365", + "createdBy": null, + "createdTime": "2026-02-02 11:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:58", + "echoMap": {}, + "alarmNo": "1570474864", + "alarmDate": "1770004017232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117860945419301", + "createdBy": null, + "createdTime": "2026-02-02 11:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:34", + "echoMap": {}, + "alarmNo": "1570474865", + "alarmDate": "1770004578860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240386664", + "createdBy": null, + "createdTime": "2026-02-02 11:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:51", + "echoMap": {}, + "alarmNo": "1570474866", + "alarmDate": "1770004586547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240386960", + "createdBy": null, + "createdTime": "2026-02-02 11:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:44", + "echoMap": {}, + "alarmNo": "1570474867", + "alarmDate": "1770004603434", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240386992", + "createdBy": null, + "createdTime": "2026-02-02 11:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:46", + "echoMap": {}, + "alarmNo": "1570474868", + "alarmDate": "1770004605330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387064", + "createdBy": null, + "createdTime": "2026-02-02 11:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:37", + "echoMap": {}, + "alarmNo": "1570474869", + "alarmDate": "1770004609324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387295", + "createdBy": null, + "createdTime": "2026-02-02 11:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:57", + "echoMap": {}, + "alarmNo": "1570474870", + "alarmDate": "1770004622483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387342", + "createdBy": null, + "createdTime": "2026-02-02 11:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:22", + "echoMap": {}, + "alarmNo": "1570474871", + "alarmDate": "1770004625317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060046", + "deviceName": "[409](10)豫园3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387577", + "createdBy": null, + "createdTime": "2026-02-02 11:57:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:20", + "echoMap": {}, + "alarmNo": "1570474872", + "alarmDate": "1770004638780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125288696", + "createdBy": null, + "createdTime": "2026-02-02 12:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:36", + "echoMap": {}, + "alarmNo": "1570474873", + "alarmDate": "1770005194949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125288763", + "createdBy": null, + "createdTime": "2026-02-02 12:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:40", + "echoMap": {}, + "alarmNo": "1570474874", + "alarmDate": "1770005198746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125288973", + "createdBy": null, + "createdTime": "2026-02-02 12:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:58", + "echoMap": {}, + "alarmNo": "1570474875", + "alarmDate": "1770005210887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125289376", + "createdBy": null, + "createdTime": "2026-02-02 12:07:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:37", + "echoMap": {}, + "alarmNo": "1570474876", + "alarmDate": "1770005234049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010190569", + "createdBy": null, + "createdTime": "2026-02-02 12:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:36", + "echoMap": {}, + "alarmNo": "1570474877", + "alarmDate": "1770005794699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010190802", + "createdBy": null, + "createdTime": "2026-02-02 12:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:48", + "echoMap": {}, + "alarmNo": "1570474878", + "alarmDate": "1770005807116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010190972", + "createdBy": null, + "createdTime": "2026-02-02 12:16:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:45", + "echoMap": {}, + "alarmNo": "1570474879", + "alarmDate": "1770005817063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010191091", + "createdBy": null, + "createdTime": "2026-02-02 12:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:35", + "echoMap": {}, + "alarmNo": "1570474880", + "alarmDate": "1770005824364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010191252", + "createdBy": null, + "createdTime": "2026-02-02 12:17:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:15", + "echoMap": {}, + "alarmNo": "1570474881", + "alarmDate": "1770005833821", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117899600124945", + "createdBy": null, + "createdTime": "2026-02-02 12:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:59", + "echoMap": {}, + "alarmNo": "1570474882", + "alarmDate": "1770006379549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117903895092752", + "createdBy": null, + "createdTime": "2026-02-02 12:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:52", + "echoMap": {}, + "alarmNo": "1570474883", + "alarmDate": "1770006410819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117903895092931", + "createdBy": null, + "createdTime": "2026-02-02 12:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:01", + "echoMap": {}, + "alarmNo": "1570474884", + "alarmDate": "1770006420422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117916779994380", + "createdBy": null, + "createdTime": "2026-02-02 12:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:38", + "echoMap": {}, + "alarmNo": "1570474885", + "alarmDate": "1770006996588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117916779994432", + "createdBy": null, + "createdTime": "2026-02-02 12:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:41", + "echoMap": {}, + "alarmNo": "1570474886", + "alarmDate": "1770006999753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117916779994902", + "createdBy": null, + "createdTime": "2026-02-02 12:37:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:25", + "echoMap": {}, + "alarmNo": "1570474887", + "alarmDate": "1770007027319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896229", + "createdBy": null, + "createdTime": "2026-02-02 12:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:40", + "echoMap": {}, + "alarmNo": "1570474888", + "alarmDate": "1770007598970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896259", + "createdBy": null, + "createdTime": "2026-02-02 12:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:42", + "echoMap": {}, + "alarmNo": "1570474889", + "alarmDate": "1770007600634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896421", + "createdBy": null, + "createdTime": "2026-02-02 12:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:51", + "echoMap": {}, + "alarmNo": "1570474890", + "alarmDate": "1770007609689", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896557", + "createdBy": null, + "createdTime": "2026-02-02 12:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:16", + "echoMap": {}, + "alarmNo": "1570474891", + "alarmDate": "1770007617550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117938254830601", + "createdBy": null, + "createdTime": "2026-02-02 12:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:03", + "echoMap": {}, + "alarmNo": "1570474892", + "alarmDate": "1770008181663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798035", + "createdBy": null, + "createdTime": "2026-02-02 12:56:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:53", + "echoMap": {}, + "alarmNo": "1570474893", + "alarmDate": "1770008194591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798428", + "createdBy": null, + "createdTime": "2026-02-02 12:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:58", + "echoMap": {}, + "alarmNo": "1570474894", + "alarmDate": "1770008216781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798895", + "createdBy": null, + "createdTime": "2026-02-02 13:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:12", + "echoMap": {}, + "alarmNo": "1570474895", + "alarmDate": "1770008778870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798898", + "createdBy": null, + "createdTime": "2026-02-02 13:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:19", + "echoMap": {}, + "alarmNo": "1570474896", + "alarmDate": "1770008778993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434699936", + "createdBy": null, + "createdTime": "2026-02-02 13:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:37", + "echoMap": {}, + "alarmNo": "1570474897", + "alarmDate": "1770008796327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700124", + "createdBy": null, + "createdTime": "2026-02-02 13:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:48", + "echoMap": {}, + "alarmNo": "1570474898", + "alarmDate": "1770008806590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700151", + "createdBy": null, + "createdTime": "2026-02-02 13:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:54", + "echoMap": {}, + "alarmNo": "1570474899", + "alarmDate": "1770008807884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060108", + "deviceName": "[103](10)豫园上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700430", + "createdBy": null, + "createdTime": "2026-02-02 13:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:09", + "echoMap": {}, + "alarmNo": "1570474900", + "alarmDate": "1770008822847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700621", + "createdBy": null, + "createdTime": "2026-02-02 13:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:13", + "echoMap": {}, + "alarmNo": "1570474901", + "alarmDate": "1770008832987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060108", + "deviceName": "[103](10)豫园上行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700690", + "createdBy": null, + "createdTime": "2026-02-02 13:07:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:18", + "echoMap": {}, + "alarmNo": "1570474902", + "alarmDate": "1770008836600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601692", + "createdBy": null, + "createdTime": "2026-02-02 13:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:27", + "echoMap": {}, + "alarmNo": "1570474903", + "alarmDate": "1770009385745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601719", + "createdBy": null, + "createdTime": "2026-02-02 13:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:28", + "echoMap": {}, + "alarmNo": "1570474904", + "alarmDate": "1770009387291", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601818", + "createdBy": null, + "createdTime": "2026-02-02 13:16:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:39", + "echoMap": {}, + "alarmNo": "1570474905", + "alarmDate": "1770009392920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060141", + "deviceName": "[354](10)豫园3B#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601969", + "createdBy": null, + "createdTime": "2026-02-02 13:16:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:42", + "echoMap": {}, + "alarmNo": "1570474906", + "alarmDate": "1770009401315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319602012", + "createdBy": null, + "createdTime": "2026-02-02 13:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:44", + "echoMap": {}, + "alarmNo": "1570474907", + "alarmDate": "1770009403468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319602518", + "createdBy": null, + "createdTime": "2026-02-02 13:17:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:14", + "echoMap": {}, + "alarmNo": "1570474908", + "alarmDate": "1770009432930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117972614568995", + "createdBy": null, + "createdTime": "2026-02-02 13:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:44", + "echoMap": {}, + "alarmNo": "1570474909", + "alarmDate": "1770009978611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117981204503584", + "createdBy": null, + "createdTime": "2026-02-02 13:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:28", + "echoMap": {}, + "alarmNo": "1570474910", + "alarmDate": "1770009987056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117981204503591", + "createdBy": null, + "createdTime": "2026-02-02 13:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:45", + "echoMap": {}, + "alarmNo": "1570474911", + "alarmDate": "1770009987348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117981204504093", + "createdBy": null, + "createdTime": "2026-02-02 13:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:33", + "echoMap": {}, + "alarmNo": "1570474912", + "alarmDate": "1770010017503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117985499470850", + "createdBy": null, + "createdTime": "2026-02-02 13:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:39", + "echoMap": {}, + "alarmNo": "1570474913", + "alarmDate": "1770010580680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405558", + "createdBy": null, + "createdTime": "2026-02-02 13:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:35", + "echoMap": {}, + "alarmNo": "1570474914", + "alarmDate": "1770010594218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405767", + "createdBy": null, + "createdTime": "2026-02-02 13:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:27", + "echoMap": {}, + "alarmNo": "1570474915", + "alarmDate": "1770010607153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405794", + "createdBy": null, + "createdTime": "2026-02-02 13:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:00", + "echoMap": {}, + "alarmNo": "1570474916", + "alarmDate": "1770010608839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405870", + "createdBy": null, + "createdTime": "2026-02-02 13:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:55", + "echoMap": {}, + "alarmNo": "1570474917", + "alarmDate": "1770010613562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405928", + "createdBy": null, + "createdTime": "2026-02-02 13:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:58", + "echoMap": {}, + "alarmNo": "1570474918", + "alarmDate": "1770010616951", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405936", + "createdBy": null, + "createdTime": "2026-02-02 13:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:04", + "echoMap": {}, + "alarmNo": "1570474919", + "alarmDate": "1770010617302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089406042", + "createdBy": null, + "createdTime": "2026-02-02 13:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:04", + "echoMap": {}, + "alarmNo": "1570474920", + "alarmDate": "1770010623394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089406406", + "createdBy": null, + "createdTime": "2026-02-02 13:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:45", + "echoMap": {}, + "alarmNo": "1570474921", + "alarmDate": "1770011178578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118006974307525", + "createdBy": null, + "createdTime": "2026-02-02 13:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:33", + "echoMap": {}, + "alarmNo": "1570474922", + "alarmDate": "1770011204892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118006974307550", + "createdBy": null, + "createdTime": "2026-02-02 13:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:47", + "echoMap": {}, + "alarmNo": "1570474923", + "alarmDate": "1770011206253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209357", + "createdBy": null, + "createdTime": "2026-02-02 13:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:14", + "echoMap": {}, + "alarmNo": "1570474924", + "alarmDate": "1770011802466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209401", + "createdBy": null, + "createdTime": "2026-02-02 13:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:46", + "echoMap": {}, + "alarmNo": "1570474925", + "alarmDate": "1770011804872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209409", + "createdBy": null, + "createdTime": "2026-02-02 13:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:15", + "echoMap": {}, + "alarmNo": "1570474926", + "alarmDate": "1770011805141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209619", + "createdBy": null, + "createdTime": "2026-02-02 13:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:12", + "echoMap": {}, + "alarmNo": "1570474927", + "alarmDate": "1770011817297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209929", + "createdBy": null, + "createdTime": "2026-02-02 13:57:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:16", + "echoMap": {}, + "alarmNo": "1570474928", + "alarmDate": "1770011834609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209981", + "createdBy": null, + "createdTime": "2026-02-02 13:57:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:33", + "echoMap": {}, + "alarmNo": "1570474929", + "alarmDate": "1770011837820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859210105", + "createdBy": null, + "createdTime": "2026-02-02 14:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:52", + "echoMap": {}, + "alarmNo": "1570474930", + "alarmDate": "1770012378683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859210136", + "createdBy": null, + "createdTime": "2026-02-02 14:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:27", + "echoMap": {}, + "alarmNo": "1570474931", + "alarmDate": "1770012381299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118024154176562", + "createdBy": null, + "createdTime": "2026-02-02 14:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:32", + "echoMap": {}, + "alarmNo": "1570474932", + "alarmDate": "1770012390792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111155", + "createdBy": null, + "createdTime": "2026-02-02 14:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:40", + "echoMap": {}, + "alarmNo": "1570474933", + "alarmDate": "1770012399329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111411", + "createdBy": null, + "createdTime": "2026-02-02 14:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:55", + "echoMap": {}, + "alarmNo": "1570474934", + "alarmDate": "1770012414260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111510", + "createdBy": null, + "createdTime": "2026-02-02 14:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:01", + "echoMap": {}, + "alarmNo": "1570474935", + "alarmDate": "1770012420250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111601", + "createdBy": null, + "createdTime": "2026-02-02 14:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:38", + "echoMap": {}, + "alarmNo": "1570474936", + "alarmDate": "1770012425843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111621", + "createdBy": null, + "createdTime": "2026-02-02 14:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:14", + "echoMap": {}, + "alarmNo": "1570474937", + "alarmDate": "1770012426845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111739", + "createdBy": null, + "createdTime": "2026-02-02 14:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:14", + "echoMap": {}, + "alarmNo": "1570474938", + "alarmDate": "1770012433456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118041334045700", + "createdBy": null, + "createdTime": "2026-02-02 14:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:33", + "echoMap": {}, + "alarmNo": "1570474939", + "alarmDate": "1770012992466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013059", + "createdBy": null, + "createdTime": "2026-02-02 14:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:39", + "echoMap": {}, + "alarmNo": "1570474940", + "alarmDate": "1770012999350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013065", + "createdBy": null, + "createdTime": "2026-02-02 14:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:10", + "echoMap": {}, + "alarmNo": "1570474941", + "alarmDate": "1770012999635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013222", + "createdBy": null, + "createdTime": "2026-02-02 14:16:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:50", + "echoMap": {}, + "alarmNo": "1570474942", + "alarmDate": "1770013008860", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013277", + "createdBy": null, + "createdTime": "2026-02-02 14:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:53", + "echoMap": {}, + "alarmNo": "1570474943", + "alarmDate": "1770013011942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013334", + "createdBy": null, + "createdTime": "2026-02-02 14:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:08", + "echoMap": {}, + "alarmNo": "1570474944", + "alarmDate": "1770013014999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013613", + "createdBy": null, + "createdTime": "2026-02-02 14:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:16", + "echoMap": {}, + "alarmNo": "1570474945", + "alarmDate": "1770013030405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013897", + "createdBy": null, + "createdTime": "2026-02-02 14:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:36", + "echoMap": {}, + "alarmNo": "1570474946", + "alarmDate": "1770013581240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013909", + "createdBy": null, + "createdTime": "2026-02-02 14:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "alarmNo": "1570474947", + "alarmDate": "1770013581725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915568", + "createdBy": null, + "createdTime": "2026-02-02 14:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:15", + "echoMap": {}, + "alarmNo": "1570474948", + "alarmDate": "1770013635195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915579", + "createdBy": null, + "createdTime": "2026-02-02 14:27:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:17", + "echoMap": {}, + "alarmNo": "1570474949", + "alarmDate": "1770013635612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915783", + "createdBy": null, + "createdTime": "2026-02-02 14:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "alarmNo": "1570474950", + "alarmDate": "1770014182494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915804", + "createdBy": null, + "createdTime": "2026-02-02 14:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:30", + "echoMap": {}, + "alarmNo": "1570474951", + "alarmDate": "1770014183763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118062808882213", + "createdBy": null, + "createdTime": "2026-02-02 14:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:35", + "echoMap": {}, + "alarmNo": "1570474952", + "alarmDate": "1770014193812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118067103849478", + "createdBy": null, + "createdTime": "2026-02-02 14:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:38", + "echoMap": {}, + "alarmNo": "1570474953", + "alarmDate": "1770014196806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118067103849487", + "createdBy": null, + "createdTime": "2026-02-02 14:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:37", + "echoMap": {}, + "alarmNo": "1570474954", + "alarmDate": "1770014197385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060046", + "deviceName": "[409](10)豫园3#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398816771", + "createdBy": null, + "createdTime": "2026-02-02 14:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:47", + "echoMap": {}, + "alarmNo": "1570474955", + "alarmDate": "1770014200457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398816794", + "createdBy": null, + "createdTime": "2026-02-02 14:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:49", + "echoMap": {}, + "alarmNo": "1570474956", + "alarmDate": "1770014201822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398816818", + "createdBy": null, + "createdTime": "2026-02-02 14:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:44", + "echoMap": {}, + "alarmNo": "1570474957", + "alarmDate": "1770014203098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817014", + "createdBy": null, + "createdTime": "2026-02-02 14:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:03", + "echoMap": {}, + "alarmNo": "1570474958", + "alarmDate": "1770014216989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817087", + "createdBy": null, + "createdTime": "2026-02-02 14:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:02", + "echoMap": {}, + "alarmNo": "1570474959", + "alarmDate": "1770014221812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817113", + "createdBy": null, + "createdTime": "2026-02-02 14:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:03", + "echoMap": {}, + "alarmNo": "1570474960", + "alarmDate": "1770014223278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817162", + "createdBy": null, + "createdTime": "2026-02-02 14:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "alarmNo": "1570474961", + "alarmDate": "1770014226092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817186", + "createdBy": null, + "createdTime": "2026-02-02 14:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "alarmNo": "1570474962", + "alarmDate": "1770014227644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817276", + "createdBy": null, + "createdTime": "2026-02-02 14:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:13", + "echoMap": {}, + "alarmNo": "1570474963", + "alarmDate": "1770014232719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817357", + "createdBy": null, + "createdTime": "2026-02-02 14:37:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:18", + "echoMap": {}, + "alarmNo": "1570474964", + "alarmDate": "1770014236541", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723117186635554191", + "createdBy": null, + "createdTime": "2026-02-02 01:07:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:31", + "echoMap": {}, + "alarmNo": "1570474477", + "alarmDate": "1769965651361", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1015030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1015" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723118071398817357", + "createdBy": null, + "createdTime": "2026-02-02 14:37:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:18", + "echoMap": {}, + "alarmNo": "1570474964", + "alarmDate": "1770014236541", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817276", + "createdBy": null, + "createdTime": "2026-02-02 14:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:13", + "echoMap": {}, + "alarmNo": "1570474963", + "alarmDate": "1770014232719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817186", + "createdBy": null, + "createdTime": "2026-02-02 14:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "alarmNo": "1570474962", + "alarmDate": "1770014227644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817162", + "createdBy": null, + "createdTime": "2026-02-02 14:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "alarmNo": "1570474961", + "alarmDate": "1770014226092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817113", + "createdBy": null, + "createdTime": "2026-02-02 14:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:03", + "echoMap": {}, + "alarmNo": "1570474960", + "alarmDate": "1770014223278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817087", + "createdBy": null, + "createdTime": "2026-02-02 14:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:02", + "echoMap": {}, + "alarmNo": "1570474959", + "alarmDate": "1770014221812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398817014", + "createdBy": null, + "createdTime": "2026-02-02 14:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:03", + "echoMap": {}, + "alarmNo": "1570474958", + "alarmDate": "1770014216989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398816818", + "createdBy": null, + "createdTime": "2026-02-02 14:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:44", + "echoMap": {}, + "alarmNo": "1570474957", + "alarmDate": "1770014203098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398816794", + "createdBy": null, + "createdTime": "2026-02-02 14:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:49", + "echoMap": {}, + "alarmNo": "1570474956", + "alarmDate": "1770014201822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118071398816771", + "createdBy": null, + "createdTime": "2026-02-02 14:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:47", + "echoMap": {}, + "alarmNo": "1570474955", + "alarmDate": "1770014200457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118067103849487", + "createdBy": null, + "createdTime": "2026-02-02 14:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:37", + "echoMap": {}, + "alarmNo": "1570474954", + "alarmDate": "1770014197385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060046", + "deviceName": "[409](10)豫园3#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118067103849478", + "createdBy": null, + "createdTime": "2026-02-02 14:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:38", + "echoMap": {}, + "alarmNo": "1570474953", + "alarmDate": "1770014196806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118062808882213", + "createdBy": null, + "createdTime": "2026-02-02 14:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:35", + "echoMap": {}, + "alarmNo": "1570474952", + "alarmDate": "1770014193812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915804", + "createdBy": null, + "createdTime": "2026-02-02 14:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:30", + "echoMap": {}, + "alarmNo": "1570474951", + "alarmDate": "1770014183763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915783", + "createdBy": null, + "createdTime": "2026-02-02 14:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "alarmNo": "1570474950", + "alarmDate": "1770014182494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915579", + "createdBy": null, + "createdTime": "2026-02-02 14:27:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:17", + "echoMap": {}, + "alarmNo": "1570474949", + "alarmDate": "1770013635612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118058513915568", + "createdBy": null, + "createdTime": "2026-02-02 14:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:15", + "echoMap": {}, + "alarmNo": "1570474948", + "alarmDate": "1770013635195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013909", + "createdBy": null, + "createdTime": "2026-02-02 14:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "alarmNo": "1570474947", + "alarmDate": "1770013581725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013897", + "createdBy": null, + "createdTime": "2026-02-02 14:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:36", + "echoMap": {}, + "alarmNo": "1570474946", + "alarmDate": "1770013581240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013613", + "createdBy": null, + "createdTime": "2026-02-02 14:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:16", + "echoMap": {}, + "alarmNo": "1570474945", + "alarmDate": "1770013030405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013334", + "createdBy": null, + "createdTime": "2026-02-02 14:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:08", + "echoMap": {}, + "alarmNo": "1570474944", + "alarmDate": "1770013014999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013277", + "createdBy": null, + "createdTime": "2026-02-02 14:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:53", + "echoMap": {}, + "alarmNo": "1570474943", + "alarmDate": "1770013011942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013222", + "createdBy": null, + "createdTime": "2026-02-02 14:16:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:50", + "echoMap": {}, + "alarmNo": "1570474942", + "alarmDate": "1770013008860", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013065", + "createdBy": null, + "createdTime": "2026-02-02 14:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:10", + "echoMap": {}, + "alarmNo": "1570474941", + "alarmDate": "1770012999635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118045629013059", + "createdBy": null, + "createdTime": "2026-02-02 14:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:39", + "echoMap": {}, + "alarmNo": "1570474940", + "alarmDate": "1770012999350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118041334045700", + "createdBy": null, + "createdTime": "2026-02-02 14:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:33", + "echoMap": {}, + "alarmNo": "1570474939", + "alarmDate": "1770012992466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111739", + "createdBy": null, + "createdTime": "2026-02-02 14:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:14", + "echoMap": {}, + "alarmNo": "1570474938", + "alarmDate": "1770012433456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111621", + "createdBy": null, + "createdTime": "2026-02-02 14:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:14", + "echoMap": {}, + "alarmNo": "1570474937", + "alarmDate": "1770012426845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111601", + "createdBy": null, + "createdTime": "2026-02-02 14:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:38", + "echoMap": {}, + "alarmNo": "1570474936", + "alarmDate": "1770012425843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111510", + "createdBy": null, + "createdTime": "2026-02-02 14:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:01", + "echoMap": {}, + "alarmNo": "1570474935", + "alarmDate": "1770012420250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111411", + "createdBy": null, + "createdTime": "2026-02-02 14:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:55", + "echoMap": {}, + "alarmNo": "1570474934", + "alarmDate": "1770012414260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118032744111155", + "createdBy": null, + "createdTime": "2026-02-02 14:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:40", + "echoMap": {}, + "alarmNo": "1570474933", + "alarmDate": "1770012399329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118024154176562", + "createdBy": null, + "createdTime": "2026-02-02 14:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:32", + "echoMap": {}, + "alarmNo": "1570474932", + "alarmDate": "1770012390792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859210136", + "createdBy": null, + "createdTime": "2026-02-02 14:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:27", + "echoMap": {}, + "alarmNo": "1570474931", + "alarmDate": "1770012381299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859210105", + "createdBy": null, + "createdTime": "2026-02-02 14:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:52", + "echoMap": {}, + "alarmNo": "1570474930", + "alarmDate": "1770012378683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209981", + "createdBy": null, + "createdTime": "2026-02-02 13:57:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:33", + "echoMap": {}, + "alarmNo": "1570474929", + "alarmDate": "1770011837820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209929", + "createdBy": null, + "createdTime": "2026-02-02 13:57:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:16", + "echoMap": {}, + "alarmNo": "1570474928", + "alarmDate": "1770011834609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209619", + "createdBy": null, + "createdTime": "2026-02-02 13:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:12", + "echoMap": {}, + "alarmNo": "1570474927", + "alarmDate": "1770011817297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209409", + "createdBy": null, + "createdTime": "2026-02-02 13:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:15", + "echoMap": {}, + "alarmNo": "1570474926", + "alarmDate": "1770011805141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209401", + "createdBy": null, + "createdTime": "2026-02-02 13:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:46", + "echoMap": {}, + "alarmNo": "1570474925", + "alarmDate": "1770011804872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118019859209357", + "createdBy": null, + "createdTime": "2026-02-02 13:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:14", + "echoMap": {}, + "alarmNo": "1570474924", + "alarmDate": "1770011802466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118006974307550", + "createdBy": null, + "createdTime": "2026-02-02 13:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:47", + "echoMap": {}, + "alarmNo": "1570474923", + "alarmDate": "1770011206253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723118006974307525", + "createdBy": null, + "createdTime": "2026-02-02 13:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:33", + "echoMap": {}, + "alarmNo": "1570474922", + "alarmDate": "1770011204892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089406406", + "createdBy": null, + "createdTime": "2026-02-02 13:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:45", + "echoMap": {}, + "alarmNo": "1570474921", + "alarmDate": "1770011178578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089406042", + "createdBy": null, + "createdTime": "2026-02-02 13:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:04", + "echoMap": {}, + "alarmNo": "1570474920", + "alarmDate": "1770010623394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405936", + "createdBy": null, + "createdTime": "2026-02-02 13:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:04", + "echoMap": {}, + "alarmNo": "1570474919", + "alarmDate": "1770010617302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405928", + "createdBy": null, + "createdTime": "2026-02-02 13:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:58", + "echoMap": {}, + "alarmNo": "1570474918", + "alarmDate": "1770010616951", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405870", + "createdBy": null, + "createdTime": "2026-02-02 13:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:55", + "echoMap": {}, + "alarmNo": "1570474917", + "alarmDate": "1770010613562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405794", + "createdBy": null, + "createdTime": "2026-02-02 13:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:00", + "echoMap": {}, + "alarmNo": "1570474916", + "alarmDate": "1770010608839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405767", + "createdBy": null, + "createdTime": "2026-02-02 13:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:27", + "echoMap": {}, + "alarmNo": "1570474915", + "alarmDate": "1770010607153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117994089405558", + "createdBy": null, + "createdTime": "2026-02-02 13:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:35", + "echoMap": {}, + "alarmNo": "1570474914", + "alarmDate": "1770010594218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117985499470850", + "createdBy": null, + "createdTime": "2026-02-02 13:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:39", + "echoMap": {}, + "alarmNo": "1570474913", + "alarmDate": "1770010580680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117981204504093", + "createdBy": null, + "createdTime": "2026-02-02 13:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:33", + "echoMap": {}, + "alarmNo": "1570474912", + "alarmDate": "1770010017503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117981204503591", + "createdBy": null, + "createdTime": "2026-02-02 13:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:45", + "echoMap": {}, + "alarmNo": "1570474911", + "alarmDate": "1770009987348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117981204503584", + "createdBy": null, + "createdTime": "2026-02-02 13:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:28", + "echoMap": {}, + "alarmNo": "1570474910", + "alarmDate": "1770009987056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117972614568995", + "createdBy": null, + "createdTime": "2026-02-02 13:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:44", + "echoMap": {}, + "alarmNo": "1570474909", + "alarmDate": "1770009978611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319602518", + "createdBy": null, + "createdTime": "2026-02-02 13:17:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:14", + "echoMap": {}, + "alarmNo": "1570474908", + "alarmDate": "1770009432930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319602012", + "createdBy": null, + "createdTime": "2026-02-02 13:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:44", + "echoMap": {}, + "alarmNo": "1570474907", + "alarmDate": "1770009403468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601969", + "createdBy": null, + "createdTime": "2026-02-02 13:16:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:42", + "echoMap": {}, + "alarmNo": "1570474906", + "alarmDate": "1770009401315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601818", + "createdBy": null, + "createdTime": "2026-02-02 13:16:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:39", + "echoMap": {}, + "alarmNo": "1570474905", + "alarmDate": "1770009392920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060141", + "deviceName": "[354](10)豫园3B#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601719", + "createdBy": null, + "createdTime": "2026-02-02 13:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:28", + "echoMap": {}, + "alarmNo": "1570474904", + "alarmDate": "1770009387291", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117968319601692", + "createdBy": null, + "createdTime": "2026-02-02 13:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:27", + "echoMap": {}, + "alarmNo": "1570474903", + "alarmDate": "1770009385745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700690", + "createdBy": null, + "createdTime": "2026-02-02 13:07:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:18", + "echoMap": {}, + "alarmNo": "1570474902", + "alarmDate": "1770008836600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700621", + "createdBy": null, + "createdTime": "2026-02-02 13:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:13", + "echoMap": {}, + "alarmNo": "1570474901", + "alarmDate": "1770008832987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060108", + "deviceName": "[103](10)豫园上行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700430", + "createdBy": null, + "createdTime": "2026-02-02 13:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:09", + "echoMap": {}, + "alarmNo": "1570474900", + "alarmDate": "1770008822847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700151", + "createdBy": null, + "createdTime": "2026-02-02 13:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:54", + "echoMap": {}, + "alarmNo": "1570474899", + "alarmDate": "1770008807884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060108", + "deviceName": "[103](10)豫园上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434700124", + "createdBy": null, + "createdTime": "2026-02-02 13:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:48", + "echoMap": {}, + "alarmNo": "1570474898", + "alarmDate": "1770008806590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117955434699936", + "createdBy": null, + "createdTime": "2026-02-02 13:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:37", + "echoMap": {}, + "alarmNo": "1570474897", + "alarmDate": "1770008796327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798898", + "createdBy": null, + "createdTime": "2026-02-02 13:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:19", + "echoMap": {}, + "alarmNo": "1570474896", + "alarmDate": "1770008778993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798895", + "createdBy": null, + "createdTime": "2026-02-02 13:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:12", + "echoMap": {}, + "alarmNo": "1570474895", + "alarmDate": "1770008778870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798428", + "createdBy": null, + "createdTime": "2026-02-02 12:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:58", + "echoMap": {}, + "alarmNo": "1570474894", + "alarmDate": "1770008216781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117942549798035", + "createdBy": null, + "createdTime": "2026-02-02 12:56:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:53", + "echoMap": {}, + "alarmNo": "1570474893", + "alarmDate": "1770008194591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060109", + "deviceName": "[105](10)豫园上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117938254830601", + "createdBy": null, + "createdTime": "2026-02-02 12:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:03", + "echoMap": {}, + "alarmNo": "1570474892", + "alarmDate": "1770008181663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896557", + "createdBy": null, + "createdTime": "2026-02-02 12:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:16", + "echoMap": {}, + "alarmNo": "1570474891", + "alarmDate": "1770007617550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896421", + "createdBy": null, + "createdTime": "2026-02-02 12:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:51", + "echoMap": {}, + "alarmNo": "1570474890", + "alarmDate": "1770007609689", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896259", + "createdBy": null, + "createdTime": "2026-02-02 12:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:42", + "echoMap": {}, + "alarmNo": "1570474889", + "alarmDate": "1770007600634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117929664896229", + "createdBy": null, + "createdTime": "2026-02-02 12:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:40", + "echoMap": {}, + "alarmNo": "1570474888", + "alarmDate": "1770007598970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117916779994902", + "createdBy": null, + "createdTime": "2026-02-02 12:37:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:25", + "echoMap": {}, + "alarmNo": "1570474887", + "alarmDate": "1770007027319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117916779994432", + "createdBy": null, + "createdTime": "2026-02-02 12:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:41", + "echoMap": {}, + "alarmNo": "1570474886", + "alarmDate": "1770006999753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117916779994380", + "createdBy": null, + "createdTime": "2026-02-02 12:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:38", + "echoMap": {}, + "alarmNo": "1570474885", + "alarmDate": "1770006996588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117903895092931", + "createdBy": null, + "createdTime": "2026-02-02 12:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:01", + "echoMap": {}, + "alarmNo": "1570474884", + "alarmDate": "1770006420422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117903895092752", + "createdBy": null, + "createdTime": "2026-02-02 12:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:52", + "echoMap": {}, + "alarmNo": "1570474883", + "alarmDate": "1770006410819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117899600124945", + "createdBy": null, + "createdTime": "2026-02-02 12:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:59", + "echoMap": {}, + "alarmNo": "1570474882", + "alarmDate": "1770006379549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010191252", + "createdBy": null, + "createdTime": "2026-02-02 12:17:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:15", + "echoMap": {}, + "alarmNo": "1570474881", + "alarmDate": "1770005833821", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010191091", + "createdBy": null, + "createdTime": "2026-02-02 12:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:35", + "echoMap": {}, + "alarmNo": "1570474880", + "alarmDate": "1770005824364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010190972", + "createdBy": null, + "createdTime": "2026-02-02 12:16:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:45", + "echoMap": {}, + "alarmNo": "1570474879", + "alarmDate": "1770005817063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010190802", + "createdBy": null, + "createdTime": "2026-02-02 12:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:48", + "echoMap": {}, + "alarmNo": "1570474878", + "alarmDate": "1770005807116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117891010190569", + "createdBy": null, + "createdTime": "2026-02-02 12:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:36", + "echoMap": {}, + "alarmNo": "1570474877", + "alarmDate": "1770005794699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125289376", + "createdBy": null, + "createdTime": "2026-02-02 12:07:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:37", + "echoMap": {}, + "alarmNo": "1570474876", + "alarmDate": "1770005234049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125288973", + "createdBy": null, + "createdTime": "2026-02-02 12:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:58", + "echoMap": {}, + "alarmNo": "1570474875", + "alarmDate": "1770005210887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125288763", + "createdBy": null, + "createdTime": "2026-02-02 12:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:40", + "echoMap": {}, + "alarmNo": "1570474874", + "alarmDate": "1770005198746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117878125288696", + "createdBy": null, + "createdTime": "2026-02-02 12:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:36", + "echoMap": {}, + "alarmNo": "1570474873", + "alarmDate": "1770005194949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387577", + "createdBy": null, + "createdTime": "2026-02-02 11:57:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:20", + "echoMap": {}, + "alarmNo": "1570474872", + "alarmDate": "1770004638780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387342", + "createdBy": null, + "createdTime": "2026-02-02 11:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:22", + "echoMap": {}, + "alarmNo": "1570474871", + "alarmDate": "1770004625317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060046", + "deviceName": "[409](10)豫园3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387295", + "createdBy": null, + "createdTime": "2026-02-02 11:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:57", + "echoMap": {}, + "alarmNo": "1570474870", + "alarmDate": "1770004622483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240387064", + "createdBy": null, + "createdTime": "2026-02-02 11:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:37", + "echoMap": {}, + "alarmNo": "1570474869", + "alarmDate": "1770004609324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240386992", + "createdBy": null, + "createdTime": "2026-02-02 11:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:46", + "echoMap": {}, + "alarmNo": "1570474868", + "alarmDate": "1770004605330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240386960", + "createdBy": null, + "createdTime": "2026-02-02 11:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:44", + "echoMap": {}, + "alarmNo": "1570474867", + "alarmDate": "1770004603434", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117865240386664", + "createdBy": null, + "createdTime": "2026-02-02 11:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:51", + "echoMap": {}, + "alarmNo": "1570474866", + "alarmDate": "1770004586547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117860945419301", + "createdBy": null, + "createdTime": "2026-02-02 11:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:34", + "echoMap": {}, + "alarmNo": "1570474865", + "alarmDate": "1770004578860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355485365", + "createdBy": null, + "createdTime": "2026-02-02 11:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:58", + "echoMap": {}, + "alarmNo": "1570474864", + "alarmDate": "1770004017232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355485213", + "createdBy": null, + "createdTime": "2026-02-02 11:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:37", + "echoMap": {}, + "alarmNo": "1570474863", + "alarmDate": "1770004008914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355484884", + "createdBy": null, + "createdTime": "2026-02-02 11:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:31", + "echoMap": {}, + "alarmNo": "1570474862", + "alarmDate": "1770003990030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355484679", + "createdBy": null, + "createdTime": "2026-02-02 11:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:34", + "echoMap": {}, + "alarmNo": "1570474861", + "alarmDate": "1770003978779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117852355484674", + "createdBy": null, + "createdTime": "2026-02-02 11:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:20", + "echoMap": {}, + "alarmNo": "1570474860", + "alarmDate": "1770003978521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583792", + "createdBy": null, + "createdTime": "2026-02-02 11:37:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:16", + "echoMap": {}, + "alarmNo": "1570474859", + "alarmDate": "1770003434861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583587", + "createdBy": null, + "createdTime": "2026-02-02 11:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:04", + "echoMap": {}, + "alarmNo": "1570474858", + "alarmDate": "1770003423371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583549", + "createdBy": null, + "createdTime": "2026-02-02 11:37:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:16", + "echoMap": {}, + "alarmNo": "1570474857", + "alarmDate": "1770003421443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583474", + "createdBy": null, + "createdTime": "2026-02-02 11:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:02", + "echoMap": {}, + "alarmNo": "1570474856", + "alarmDate": "1770003417077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583162", + "createdBy": null, + "createdTime": "2026-02-02 11:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:40", + "echoMap": {}, + "alarmNo": "1570474855", + "alarmDate": "1770003398970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470583000", + "createdBy": null, + "createdTime": "2026-02-02 11:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:30", + "echoMap": {}, + "alarmNo": "1570474854", + "alarmDate": "1770003389188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117839470582927", + "createdBy": null, + "createdTime": "2026-02-02 11:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:26", + "echoMap": {}, + "alarmNo": "1570474853", + "alarmDate": "1770003384755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060106", + "deviceName": "[206](10)豫园上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117826585681819", + "createdBy": null, + "createdTime": "2026-02-02 11:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:14", + "echoMap": {}, + "alarmNo": "1570474852", + "alarmDate": "1770002833013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117826585681745", + "createdBy": null, + "createdTime": "2026-02-02 11:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:50", + "echoMap": {}, + "alarmNo": "1570474851", + "alarmDate": "1770002828958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117826585681533", + "createdBy": null, + "createdTime": "2026-02-02 11:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:11", + "echoMap": {}, + "alarmNo": "1570474850", + "alarmDate": "1770002817812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117822290713621", + "createdBy": null, + "createdTime": "2026-02-02 11:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:09", + "echoMap": {}, + "alarmNo": "1570474849", + "alarmDate": "1770002782009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117822290713620", + "createdBy": null, + "createdTime": "2026-02-02 11:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:22", + "echoMap": {}, + "alarmNo": "1570474848", + "alarmDate": "1770002782006", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117813700779664", + "createdBy": null, + "createdTime": "2026-02-02 11:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:04", + "echoMap": {}, + "alarmNo": "1570474847", + "alarmDate": "1770002223314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117813700779275", + "createdBy": null, + "createdTime": "2026-02-02 11:16:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:07", + "echoMap": {}, + "alarmNo": "1570474846", + "alarmDate": "1770002201886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117809405811727", + "createdBy": null, + "createdTime": "2026-02-02 11:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:25", + "echoMap": {}, + "alarmNo": "1570474845", + "alarmDate": "1770002184171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877886", + "createdBy": null, + "createdTime": "2026-02-02 11:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:46", + "echoMap": {}, + "alarmNo": "1570474844", + "alarmDate": "1770001633021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877796", + "createdBy": null, + "createdTime": "2026-02-02 11:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:09", + "echoMap": {}, + "alarmNo": "1570474843", + "alarmDate": "1770001628018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877330", + "createdBy": null, + "createdTime": "2026-02-02 11:06:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:42", + "echoMap": {}, + "alarmNo": "1570474842", + "alarmDate": "1770001601214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877248", + "createdBy": null, + "createdTime": "2026-02-02 11:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:38", + "echoMap": {}, + "alarmNo": "1570474841", + "alarmDate": "1770001596956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117800815877228", + "createdBy": null, + "createdTime": "2026-02-02 11:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:51", + "echoMap": {}, + "alarmNo": "1570474840", + "alarmDate": "1770001595827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930976245", + "createdBy": null, + "createdTime": "2026-02-02 11:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:23", + "echoMap": {}, + "alarmNo": "1570474839", + "alarmDate": "1770001582397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930976187", + "createdBy": null, + "createdTime": "2026-02-02 11:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:22", + "echoMap": {}, + "alarmNo": "1570474838", + "alarmDate": "1770001578813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930975880", + "createdBy": null, + "createdTime": "2026-02-02 10:57:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:08", + "echoMap": {}, + "alarmNo": "1570474837", + "alarmDate": "1770001027366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930975859", + "createdBy": null, + "createdTime": "2026-02-02 10:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:46", + "echoMap": {}, + "alarmNo": "1570474836", + "alarmDate": "1770001026180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117787930975364", + "createdBy": null, + "createdTime": "2026-02-02 10:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:07", + "echoMap": {}, + "alarmNo": "1570474835", + "alarmDate": "1770000998381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117783636007957", + "createdBy": null, + "createdTime": "2026-02-02 10:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:30", + "echoMap": {}, + "alarmNo": "1570474834", + "alarmDate": "1770000988630", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074356", + "createdBy": null, + "createdTime": "2026-02-02 10:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:23", + "echoMap": {}, + "alarmNo": "1570474833", + "alarmDate": "1770000981754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074345", + "createdBy": null, + "createdTime": "2026-02-02 10:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:20", + "echoMap": {}, + "alarmNo": "1570474832", + "alarmDate": "1770000981193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074123", + "createdBy": null, + "createdTime": "2026-02-02 10:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:45", + "echoMap": {}, + "alarmNo": "1570474831", + "alarmDate": "1770000434385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074034", + "createdBy": null, + "createdTime": "2026-02-02 10:47:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:11", + "echoMap": {}, + "alarmNo": "1570474830", + "alarmDate": "1770000429611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046074010", + "createdBy": null, + "createdTime": "2026-02-02 10:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:53", + "echoMap": {}, + "alarmNo": "1570474829", + "alarmDate": "1770000428444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073794", + "createdBy": null, + "createdTime": "2026-02-02 10:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:20", + "echoMap": {}, + "alarmNo": "1570474828", + "alarmDate": "1770000415992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073793", + "createdBy": null, + "createdTime": "2026-02-02 10:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:17", + "echoMap": {}, + "alarmNo": "1570474827", + "alarmDate": "1770000415917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073473", + "createdBy": null, + "createdTime": "2026-02-02 10:46:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:52", + "echoMap": {}, + "alarmNo": "1570474826", + "alarmDate": "1770000397655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060024", + "deviceName": "[402](10)豫园1#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073439", + "createdBy": null, + "createdTime": "2026-02-02 10:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:43", + "echoMap": {}, + "alarmNo": "1570474825", + "alarmDate": "1770000395878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117775046073344", + "createdBy": null, + "createdTime": "2026-02-02 10:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:43", + "echoMap": {}, + "alarmNo": "1570474824", + "alarmDate": "1770000390487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060112", + "deviceName": "[111](10)豫园下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161172360", + "createdBy": null, + "createdTime": "2026-02-02 10:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:22", + "echoMap": {}, + "alarmNo": "1570474823", + "alarmDate": "1770000378794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161172025", + "createdBy": null, + "createdTime": "2026-02-02 10:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:07", + "echoMap": {}, + "alarmNo": "1570474822", + "alarmDate": "1769999826142", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171951", + "createdBy": null, + "createdTime": "2026-02-02 10:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:03", + "echoMap": {}, + "alarmNo": "1570474821", + "alarmDate": "1769999822210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171701", + "createdBy": null, + "createdTime": "2026-02-02 10:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:50", + "echoMap": {}, + "alarmNo": "1570474820", + "alarmDate": "1769999808519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171621", + "createdBy": null, + "createdTime": "2026-02-02 10:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:32", + "echoMap": {}, + "alarmNo": "1570474819", + "alarmDate": "1769999804757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117762161171612", + "createdBy": null, + "createdTime": "2026-02-02 10:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:45", + "echoMap": {}, + "alarmNo": "1570474818", + "alarmDate": "1769999804391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117757866204179", + "createdBy": null, + "createdTime": "2026-02-02 10:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:17", + "echoMap": {}, + "alarmNo": "1570474817", + "alarmDate": "1769999793283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276270402", + "createdBy": null, + "createdTime": "2026-02-02 10:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:21", + "echoMap": {}, + "alarmNo": "1570474816", + "alarmDate": "1769999780081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276270097", + "createdBy": null, + "createdTime": "2026-02-02 10:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:33", + "echoMap": {}, + "alarmNo": "1570474815", + "alarmDate": "1769999228713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276269995", + "createdBy": null, + "createdTime": "2026-02-02 10:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:04", + "echoMap": {}, + "alarmNo": "1570474814", + "alarmDate": "1769999223501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276269946", + "createdBy": null, + "createdTime": "2026-02-02 10:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:02", + "echoMap": {}, + "alarmNo": "1570474813", + "alarmDate": "1769999220948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117749276269788", + "createdBy": null, + "createdTime": "2026-02-02 10:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:29", + "echoMap": {}, + "alarmNo": "1570474812", + "alarmDate": "1769999212303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368652", + "createdBy": null, + "createdTime": "2026-02-02 10:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:09", + "echoMap": {}, + "alarmNo": "1570474811", + "alarmDate": "1769999192658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368595", + "createdBy": null, + "createdTime": "2026-02-02 10:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:31", + "echoMap": {}, + "alarmNo": "1570474810", + "alarmDate": "1769999189882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368442", + "createdBy": null, + "createdTime": "2026-02-02 10:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:33", + "echoMap": {}, + "alarmNo": "1570474809", + "alarmDate": "1769999181567", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117736391368397", + "createdBy": null, + "createdTime": "2026-02-02 10:26:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "alarmNo": "1570474808", + "alarmDate": "1769999178109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801434077", + "createdBy": null, + "createdTime": "2026-02-02 10:16:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:37", + "echoMap": {}, + "alarmNo": "1570474807", + "alarmDate": "1769998595719", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433812", + "createdBy": null, + "createdTime": "2026-02-02 10:16:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:32", + "echoMap": {}, + "alarmNo": "1570474806", + "alarmDate": "1769998578711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433624", + "createdBy": null, + "createdTime": "2026-02-02 10:07:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:02", + "echoMap": {}, + "alarmNo": "1570474805", + "alarmDate": "1769998034184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433519", + "createdBy": null, + "createdTime": "2026-02-02 10:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:20", + "echoMap": {}, + "alarmNo": "1570474804", + "alarmDate": "1769998028011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433344", + "createdBy": null, + "createdTime": "2026-02-02 10:06:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:58", + "echoMap": {}, + "alarmNo": "1570474803", + "alarmDate": "1769998017454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117727801433207", + "createdBy": null, + "createdTime": "2026-02-02 10:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:51", + "echoMap": {}, + "alarmNo": "1570474802", + "alarmDate": "1769998009651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117723506465828", + "createdBy": null, + "createdTime": "2026-02-02 10:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:43", + "echoMap": {}, + "alarmNo": "1570474801", + "alarmDate": "1769998001623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117714916531909", + "createdBy": null, + "createdTime": "2026-02-02 10:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:20", + "echoMap": {}, + "alarmNo": "1570474800", + "alarmDate": "1769997978824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117714916531489", + "createdBy": null, + "createdTime": "2026-02-02 09:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:02", + "echoMap": {}, + "alarmNo": "1570474799", + "alarmDate": "1769997420586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117714916531212", + "createdBy": null, + "createdTime": "2026-02-02 09:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:12", + "echoMap": {}, + "alarmNo": "1570474798", + "alarmDate": "1769997404821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117710621563940", + "createdBy": null, + "createdTime": "2026-02-02 09:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:02", + "echoMap": {}, + "alarmNo": "1570474797", + "alarmDate": "1769997403890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117710621563924", + "createdBy": null, + "createdTime": "2026-02-02 09:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:44", + "echoMap": {}, + "alarmNo": "1570474796", + "alarmDate": "1769997403053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629866", + "createdBy": null, + "createdTime": "2026-02-02 09:47:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:50", + "echoMap": {}, + "alarmNo": "1570474795", + "alarmDate": "1769996835819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060046", + "deviceName": "[409](10)豫园3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629768", + "createdBy": null, + "createdTime": "2026-02-02 09:47:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:54", + "echoMap": {}, + "alarmNo": "1570474794", + "alarmDate": "1769996830026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629706", + "createdBy": null, + "createdTime": "2026-02-02 09:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:32", + "echoMap": {}, + "alarmNo": "1570474793", + "alarmDate": "1769996826355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629656", + "createdBy": null, + "createdTime": "2026-02-02 09:47:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:32", + "echoMap": {}, + "alarmNo": "1570474792", + "alarmDate": "1769996822894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117702031629325", + "createdBy": null, + "createdTime": "2026-02-02 09:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:03", + "echoMap": {}, + "alarmNo": "1570474791", + "alarmDate": "1769996804596", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146728285", + "createdBy": null, + "createdTime": "2026-02-02 09:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:55", + "echoMap": {}, + "alarmNo": "1570474790", + "alarmDate": "1769996790791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727732", + "createdBy": null, + "createdTime": "2026-02-02 09:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:11", + "echoMap": {}, + "alarmNo": "1570474789", + "alarmDate": "1769996224440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727582", + "createdBy": null, + "createdTime": "2026-02-02 09:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:27", + "echoMap": {}, + "alarmNo": "1570474788", + "alarmDate": "1769996216410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727569", + "createdBy": null, + "createdTime": "2026-02-02 09:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:57", + "echoMap": {}, + "alarmNo": "1570474787", + "alarmDate": "1769996215833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117689146727483", + "createdBy": null, + "createdTime": "2026-02-02 09:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:52", + "echoMap": {}, + "alarmNo": "1570474786", + "alarmDate": "1769996210609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117684851760153", + "createdBy": null, + "createdTime": "2026-02-02 09:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:47", + "echoMap": {}, + "alarmNo": "1570474785", + "alarmDate": "1769996205536", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261826488", + "createdBy": null, + "createdTime": "2026-02-02 09:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:50", + "echoMap": {}, + "alarmNo": "1570474784", + "alarmDate": "1769996197374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261826473", + "createdBy": null, + "createdTime": "2026-02-02 09:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:38", + "echoMap": {}, + "alarmNo": "1570474783", + "alarmDate": "1769996196716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261826035", + "createdBy": null, + "createdTime": "2026-02-02 09:27:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:16", + "echoMap": {}, + "alarmNo": "1570474782", + "alarmDate": "1769995637204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825963", + "createdBy": null, + "createdTime": "2026-02-02 09:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:13", + "echoMap": {}, + "alarmNo": "1570474781", + "alarmDate": "1769995632962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825797", + "createdBy": null, + "createdTime": "2026-02-02 09:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:18", + "echoMap": {}, + "alarmNo": "1570474780", + "alarmDate": "1769995622930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825661", + "createdBy": null, + "createdTime": "2026-02-02 09:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:56", + "echoMap": {}, + "alarmNo": "1570474779", + "alarmDate": "1769995614868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825645", + "createdBy": null, + "createdTime": "2026-02-02 09:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:55", + "echoMap": {}, + "alarmNo": "1570474778", + "alarmDate": "1769995614173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117676261825575", + "createdBy": null, + "createdTime": "2026-02-02 09:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:44", + "echoMap": {}, + "alarmNo": "1570474777", + "alarmDate": "1769995610149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891874", + "createdBy": null, + "createdTime": "2026-02-02 09:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:52", + "echoMap": {}, + "alarmNo": "1570474776", + "alarmDate": "1769995600515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891394", + "createdBy": null, + "createdTime": "2026-02-02 09:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:28", + "echoMap": {}, + "alarmNo": "1570474775", + "alarmDate": "1769995037076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891333", + "createdBy": null, + "createdTime": "2026-02-02 09:17:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:58", + "echoMap": {}, + "alarmNo": "1570474774", + "alarmDate": "1769995033371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117667671891249", + "createdBy": null, + "createdTime": "2026-02-02 09:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:38", + "echoMap": {}, + "alarmNo": "1570474773", + "alarmDate": "1769995027981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989797", + "createdBy": null, + "createdTime": "2026-02-02 09:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:57", + "echoMap": {}, + "alarmNo": "1570474772", + "alarmDate": "1769994986916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989703", + "createdBy": null, + "createdTime": "2026-02-02 09:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:27", + "echoMap": {}, + "alarmNo": "1570474771", + "alarmDate": "1769994981859", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989695", + "createdBy": null, + "createdTime": "2026-02-02 09:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:27", + "echoMap": {}, + "alarmNo": "1570474770", + "alarmDate": "1769994981487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989663", + "createdBy": null, + "createdTime": "2026-02-02 09:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:00", + "echoMap": {}, + "alarmNo": "1570474769", + "alarmDate": "1769994979519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989654", + "createdBy": null, + "createdTime": "2026-02-02 09:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:22", + "echoMap": {}, + "alarmNo": "1570474768", + "alarmDate": "1769994978242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989311", + "createdBy": null, + "createdTime": "2026-02-02 09:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:16", + "echoMap": {}, + "alarmNo": "1570474767", + "alarmDate": "1769994424268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989274", + "createdBy": null, + "createdTime": "2026-02-02 09:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:03", + "echoMap": {}, + "alarmNo": "1570474766", + "alarmDate": "1769994421907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117654786989172", + "createdBy": null, + "createdTime": "2026-02-02 09:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:49", + "echoMap": {}, + "alarmNo": "1570474765", + "alarmDate": "1769994415674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117650492021777", + "createdBy": null, + "createdTime": "2026-02-02 09:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:47", + "echoMap": {}, + "alarmNo": "1570474764", + "alarmDate": "1769994405754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055384", + "createdBy": null, + "createdTime": "2026-02-02 09:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:08", + "echoMap": {}, + "alarmNo": "1570474763", + "alarmDate": "1769994398635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055251", + "createdBy": null, + "createdTime": "2026-02-02 09:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:32", + "echoMap": {}, + "alarmNo": "1570474762", + "alarmDate": "1769994390743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055217", + "createdBy": null, + "createdTime": "2026-02-02 09:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:35", + "echoMap": {}, + "alarmNo": "1570474761", + "alarmDate": "1769994388782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197055067", + "createdBy": null, + "createdTime": "2026-02-02 09:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:05", + "echoMap": {}, + "alarmNo": "1570474760", + "alarmDate": "1769994379565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054883", + "createdBy": null, + "createdTime": "2026-02-02 08:57:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:16", + "echoMap": {}, + "alarmNo": "1570474759", + "alarmDate": "1769993835456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054739", + "createdBy": null, + "createdTime": "2026-02-02 08:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:07", + "echoMap": {}, + "alarmNo": "1570474758", + "alarmDate": "1769993826377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054678", + "createdBy": null, + "createdTime": "2026-02-02 08:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:09", + "echoMap": {}, + "alarmNo": "1570474757", + "alarmDate": "1769993822964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060110", + "deviceName": "[106](10)豫园上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054612", + "createdBy": null, + "createdTime": "2026-02-02 08:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:05", + "echoMap": {}, + "alarmNo": "1570474756", + "alarmDate": "1769993819266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054567", + "createdBy": null, + "createdTime": "2026-02-02 08:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:58", + "echoMap": {}, + "alarmNo": "1570474755", + "alarmDate": "1769993816578", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117646197054494", + "createdBy": null, + "createdTime": "2026-02-02 08:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:53", + "echoMap": {}, + "alarmNo": "1570474754", + "alarmDate": "1769993812147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120831", + "createdBy": null, + "createdTime": "2026-02-02 08:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:04", + "echoMap": {}, + "alarmNo": "1570474753", + "alarmDate": "1769993806015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120418", + "createdBy": null, + "createdTime": "2026-02-02 08:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:42", + "echoMap": {}, + "alarmNo": "1570474752", + "alarmDate": "1769993779114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120417", + "createdBy": null, + "createdTime": "2026-02-02 08:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:24", + "echoMap": {}, + "alarmNo": "1570474751", + "alarmDate": "1769993778988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120232", + "createdBy": null, + "createdTime": "2026-02-02 08:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:09", + "echoMap": {}, + "alarmNo": "1570474750", + "alarmDate": "1769993234380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120186", + "createdBy": null, + "createdTime": "2026-02-02 08:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:18", + "echoMap": {}, + "alarmNo": "1570474749", + "alarmDate": "1769993231822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607120063", + "createdBy": null, + "createdTime": "2026-02-02 08:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:47", + "echoMap": {}, + "alarmNo": "1570474748", + "alarmDate": "1769993224988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607119966", + "createdBy": null, + "createdTime": "2026-02-02 08:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:06", + "echoMap": {}, + "alarmNo": "1570474747", + "alarmDate": "1769993218418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117637607119935", + "createdBy": null, + "createdTime": "2026-02-02 08:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:14", + "echoMap": {}, + "alarmNo": "1570474746", + "alarmDate": "1769993216379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117633312152611", + "createdBy": null, + "createdTime": "2026-02-02 08:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:52", + "echoMap": {}, + "alarmNo": "1570474745", + "alarmDate": "1769993210601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218828", + "createdBy": null, + "createdTime": "2026-02-02 08:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:55", + "echoMap": {}, + "alarmNo": "1570474744", + "alarmDate": "1769993195614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218563", + "createdBy": null, + "createdTime": "2026-02-02 08:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:44", + "echoMap": {}, + "alarmNo": "1570474743", + "alarmDate": "1769993181153", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218526", + "createdBy": null, + "createdTime": "2026-02-02 08:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:48", + "echoMap": {}, + "alarmNo": "1570474742", + "alarmDate": "1769993178666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218413", + "createdBy": null, + "createdTime": "2026-02-02 08:37:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:53", + "echoMap": {}, + "alarmNo": "1570474741", + "alarmDate": "1769992637808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218222", + "createdBy": null, + "createdTime": "2026-02-02 08:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:12", + "echoMap": {}, + "alarmNo": "1570474740", + "alarmDate": "1769992625592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060108", + "deviceName": "[103](10)豫园上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117624722218199", + "createdBy": null, + "createdTime": "2026-02-02 08:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:05", + "echoMap": {}, + "alarmNo": "1570474739", + "alarmDate": "1769992624149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132284265", + "createdBy": null, + "createdTime": "2026-02-02 08:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:43", + "echoMap": {}, + "alarmNo": "1570474738", + "alarmDate": "1769992601951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132284253", + "createdBy": null, + "createdTime": "2026-02-02 08:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:00", + "echoMap": {}, + "alarmNo": "1570474737", + "alarmDate": "1769992601636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132284001", + "createdBy": null, + "createdTime": "2026-02-02 08:36:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:28", + "echoMap": {}, + "alarmNo": "1570474736", + "alarmDate": "1769992586878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283960", + "createdBy": null, + "createdTime": "2026-02-02 08:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:26", + "echoMap": {}, + "alarmNo": "1570474735", + "alarmDate": "1769992584710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283920", + "createdBy": null, + "createdTime": "2026-02-02 08:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:50", + "echoMap": {}, + "alarmNo": "1570474734", + "alarmDate": "1769992582007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283889", + "createdBy": null, + "createdTime": "2026-02-02 08:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1570474733", + "alarmDate": "1769992580055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283875", + "createdBy": null, + "createdTime": "2026-02-02 08:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:11", + "echoMap": {}, + "alarmNo": "1570474732", + "alarmDate": "1769992578770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060035", + "deviceName": "[404](10)豫园2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283771", + "createdBy": null, + "createdTime": "2026-02-02 08:27:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:20", + "echoMap": {}, + "alarmNo": "1570474731", + "alarmDate": "1769992038841", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283718", + "createdBy": null, + "createdTime": "2026-02-02 08:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:07", + "echoMap": {}, + "alarmNo": "1570474730", + "alarmDate": "1769992034744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283703", + "createdBy": null, + "createdTime": "2026-02-02 08:27:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:20", + "echoMap": {}, + "alarmNo": "1570474729", + "alarmDate": "1769992033893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283682", + "createdBy": null, + "createdTime": "2026-02-02 08:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:13", + "echoMap": {}, + "alarmNo": "1570474728", + "alarmDate": "1769992032582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283665", + "createdBy": null, + "createdTime": "2026-02-02 08:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:13", + "echoMap": {}, + "alarmNo": "1570474727", + "alarmDate": "1769992031581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117616132283583", + "createdBy": null, + "createdTime": "2026-02-02 08:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:13", + "echoMap": {}, + "alarmNo": "1570474726", + "alarmDate": "1769992026448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117611837316110", + "createdBy": null, + "createdTime": "2026-02-02 08:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:11", + "echoMap": {}, + "alarmNo": "1570474725", + "alarmDate": "1769992011815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349770", + "createdBy": null, + "createdTime": "2026-02-02 08:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:50", + "echoMap": {}, + "alarmNo": "1570474724", + "alarmDate": "1769992009186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349681", + "createdBy": null, + "createdTime": "2026-02-02 08:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:50", + "echoMap": {}, + "alarmNo": "1570474723", + "alarmDate": "1769992003838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349654", + "createdBy": null, + "createdTime": "2026-02-02 08:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:54", + "echoMap": {}, + "alarmNo": "1570474722", + "alarmDate": "1769992002252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349264", + "createdBy": null, + "createdTime": "2026-02-02 08:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:30", + "echoMap": {}, + "alarmNo": "1570474721", + "alarmDate": "1769991979263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542349064", + "createdBy": null, + "createdTime": "2026-02-02 08:17:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:39", + "echoMap": {}, + "alarmNo": "1570474720", + "alarmDate": "1769991433502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117607542348953", + "createdBy": null, + "createdTime": "2026-02-02 08:17:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:01", + "echoMap": {}, + "alarmNo": "1570474719", + "alarmDate": "1769991427034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447791", + "createdBy": null, + "createdTime": "2026-02-02 08:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:42", + "echoMap": {}, + "alarmNo": "1570474718", + "alarmDate": "1769991405771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060028", + "deviceName": "[420](10)豫园5#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447596", + "createdBy": null, + "createdTime": "2026-02-02 08:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:47", + "echoMap": {}, + "alarmNo": "1570474717", + "alarmDate": "1769991393877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447426", + "createdBy": null, + "createdTime": "2026-02-02 08:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:25", + "echoMap": {}, + "alarmNo": "1570474716", + "alarmDate": "1769991383875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447387", + "createdBy": null, + "createdTime": "2026-02-02 08:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:23", + "echoMap": {}, + "alarmNo": "1570474715", + "alarmDate": "1769991381590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447386", + "createdBy": null, + "createdTime": "2026-02-02 08:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:26", + "echoMap": {}, + "alarmNo": "1570474714", + "alarmDate": "1769991381535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447353", + "createdBy": null, + "createdTime": "2026-02-02 08:16:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:01", + "echoMap": {}, + "alarmNo": "1570474713", + "alarmDate": "1769991379400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447152", + "createdBy": null, + "createdTime": "2026-02-02 08:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:31", + "echoMap": {}, + "alarmNo": "1570474712", + "alarmDate": "1769990832903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447079", + "createdBy": null, + "createdTime": "2026-02-02 08:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:09", + "echoMap": {}, + "alarmNo": "1570474711", + "alarmDate": "1769990828301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447067", + "createdBy": null, + "createdTime": "2026-02-02 08:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:09", + "echoMap": {}, + "alarmNo": "1570474710", + "alarmDate": "1769990827675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117594657447045", + "createdBy": null, + "createdTime": "2026-02-02 08:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:22", + "echoMap": {}, + "alarmNo": "1570474709", + "alarmDate": "1769990826440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117590362479654", + "createdBy": null, + "createdTime": "2026-02-02 08:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:08", + "echoMap": {}, + "alarmNo": "1570474708", + "alarmDate": "1769990816475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117586067512353", + "createdBy": null, + "createdTime": "2026-02-02 08:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:12", + "echoMap": {}, + "alarmNo": "1570474707", + "alarmDate": "1769990813205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772546034", + "createdBy": null, + "createdTime": "2026-02-02 08:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:51", + "echoMap": {}, + "alarmNo": "1570474706", + "alarmDate": "1769990810190", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545909", + "createdBy": null, + "createdTime": "2026-02-02 08:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:51", + "echoMap": {}, + "alarmNo": "1570474705", + "alarmDate": "1769990802428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060050", + "deviceName": "[406](10)豫园2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545820", + "createdBy": null, + "createdTime": "2026-02-02 08:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:49", + "echoMap": {}, + "alarmNo": "1570474704", + "alarmDate": "1769990796782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545812", + "createdBy": null, + "createdTime": "2026-02-02 08:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:37", + "echoMap": {}, + "alarmNo": "1570474703", + "alarmDate": "1769990796210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545756", + "createdBy": null, + "createdTime": "2026-02-02 08:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:34", + "echoMap": {}, + "alarmNo": "1570474702", + "alarmDate": "1769990792789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545579", + "createdBy": null, + "createdTime": "2026-02-02 08:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:38", + "echoMap": {}, + "alarmNo": "1570474701", + "alarmDate": "1769990781506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545224", + "createdBy": null, + "createdTime": "2026-02-02 07:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:07", + "echoMap": {}, + "alarmNo": "1570474700", + "alarmDate": "1769990225756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117581772545196", + "createdBy": null, + "createdTime": "2026-02-02 07:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:56", + "echoMap": {}, + "alarmNo": "1570474699", + "alarmDate": "1769990223963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887644041", + "createdBy": null, + "createdTime": "2026-02-02 07:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:49", + "echoMap": {}, + "alarmNo": "1570474698", + "alarmDate": "1769990201831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060060", + "deviceName": "[306](10)豫园1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887643672", + "createdBy": null, + "createdTime": "2026-02-02 07:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:14", + "echoMap": {}, + "alarmNo": "1570474697", + "alarmDate": "1769990181129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887643232", + "createdBy": null, + "createdTime": "2026-02-02 07:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:50", + "echoMap": {}, + "alarmNo": "1570474696", + "alarmDate": "1769989621322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060056", + "deviceName": "[308](10)豫园1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117568887643146", + "createdBy": null, + "createdTime": "2026-02-02 07:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:20", + "echoMap": {}, + "alarmNo": "1570474695", + "alarmDate": "1769989615964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002742073", + "createdBy": null, + "createdTime": "2026-02-02 07:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:51", + "echoMap": {}, + "alarmNo": "1570474694", + "alarmDate": "1769989597492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741931", + "createdBy": null, + "createdTime": "2026-02-02 07:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:30", + "echoMap": {}, + "alarmNo": "1570474693", + "alarmDate": "1769989588764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741540", + "createdBy": null, + "createdTime": "2026-02-02 07:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:24", + "echoMap": {}, + "alarmNo": "1570474692", + "alarmDate": "1769989031018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741487", + "createdBy": null, + "createdTime": "2026-02-02 07:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:38", + "echoMap": {}, + "alarmNo": "1570474691", + "alarmDate": "1769989027768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117556002741446", + "createdBy": null, + "createdTime": "2026-02-02 07:37:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:06", + "echoMap": {}, + "alarmNo": "1570474690", + "alarmDate": "1769989024858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117547412806712", + "createdBy": null, + "createdTime": "2026-02-02 07:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:56", + "echoMap": {}, + "alarmNo": "1570474689", + "alarmDate": "1769989008027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117547412806694", + "createdBy": null, + "createdTime": "2026-02-02 07:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:48", + "echoMap": {}, + "alarmNo": "1570474688", + "alarmDate": "1769989007143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117840228", + "createdBy": null, + "createdTime": "2026-02-02 07:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:35", + "echoMap": {}, + "alarmNo": "1570474687", + "alarmDate": "1769988994329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117839700", + "createdBy": null, + "createdTime": "2026-02-02 07:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:09", + "echoMap": {}, + "alarmNo": "1570474686", + "alarmDate": "1769988427720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117839663", + "createdBy": null, + "createdTime": "2026-02-02 07:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:34", + "echoMap": {}, + "alarmNo": "1570474685", + "alarmDate": "1769988425545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117543117839587", + "createdBy": null, + "createdTime": "2026-02-02 07:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:02", + "echoMap": {}, + "alarmNo": "1570474684", + "alarmDate": "1769988421153", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232938261", + "createdBy": null, + "createdTime": "2026-02-02 07:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:50", + "echoMap": {}, + "alarmNo": "1570474683", + "alarmDate": "1769988381341", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232938226", + "createdBy": null, + "createdTime": "2026-02-02 07:26:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:54", + "echoMap": {}, + "alarmNo": "1570474682", + "alarmDate": "1769988378356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232937871", + "createdBy": null, + "createdTime": "2026-02-02 07:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:08", + "echoMap": {}, + "alarmNo": "1570474681", + "alarmDate": "1769987822366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117530232937550", + "createdBy": null, + "createdTime": "2026-02-02 07:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:44", + "echoMap": {}, + "alarmNo": "1570474680", + "alarmDate": "1769987802920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643003365", + "createdBy": null, + "createdTime": "2026-02-02 07:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:02", + "echoMap": {}, + "alarmNo": "1570474679", + "alarmDate": "1769987781106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643003017", + "createdBy": null, + "createdTime": "2026-02-02 07:07:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:06", + "echoMap": {}, + "alarmNo": "1570474678", + "alarmDate": "1769987225248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643002959", + "createdBy": null, + "createdTime": "2026-02-02 07:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:20", + "echoMap": {}, + "alarmNo": "1570474677", + "alarmDate": "1769987222100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117521643002942", + "createdBy": null, + "createdTime": "2026-02-02 07:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:02", + "echoMap": {}, + "alarmNo": "1570474676", + "alarmDate": "1769987221203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068844", + "createdBy": null, + "createdTime": "2026-02-02 07:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:38", + "echoMap": {}, + "alarmNo": "1570474675", + "alarmDate": "1769987196548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068451", + "createdBy": null, + "createdTime": "2026-02-02 06:57:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:50", + "echoMap": {}, + "alarmNo": "1570474674", + "alarmDate": "1769986639894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068420", + "createdBy": null, + "createdTime": "2026-02-02 06:57:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:29", + "echoMap": {}, + "alarmNo": "1570474673", + "alarmDate": "1769986636958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117513053068308", + "createdBy": null, + "createdTime": "2026-02-02 06:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:11", + "echoMap": {}, + "alarmNo": "1570474672", + "alarmDate": "1769986630372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117504463134243", + "createdBy": null, + "createdTime": "2026-02-02 06:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:53", + "echoMap": {}, + "alarmNo": "1570474671", + "alarmDate": "1769986611775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060057", + "deviceName": "[209](10)豫园1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117504463134017", + "createdBy": null, + "createdTime": "2026-02-02 06:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:20", + "echoMap": {}, + "alarmNo": "1570474670", + "alarmDate": "1769986597735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117495873199731", + "createdBy": null, + "createdTime": "2026-02-02 06:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:13", + "echoMap": {}, + "alarmNo": "1570474669", + "alarmDate": "1769986032155", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117495873199523", + "createdBy": null, + "createdTime": "2026-02-02 06:47:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:01", + "echoMap": {}, + "alarmNo": "1570474668", + "alarmDate": "1769986020089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283265234", + "createdBy": null, + "createdTime": "2026-02-02 06:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:37", + "echoMap": {}, + "alarmNo": "1570474667", + "alarmDate": "1769985991176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283265126", + "createdBy": null, + "createdTime": "2026-02-02 06:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:26", + "echoMap": {}, + "alarmNo": "1570474666", + "alarmDate": "1769985984607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283265059", + "createdBy": null, + "createdTime": "2026-02-02 06:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:22", + "echoMap": {}, + "alarmNo": "1570474665", + "alarmDate": "1769985980578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264925", + "createdBy": null, + "createdTime": "2026-02-02 06:37:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:38", + "echoMap": {}, + "alarmNo": "1570474664", + "alarmDate": "1769985439393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264864", + "createdBy": null, + "createdTime": "2026-02-02 06:37:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:15", + "echoMap": {}, + "alarmNo": "1570474663", + "alarmDate": "1769985434404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264772", + "createdBy": null, + "createdTime": "2026-02-02 06:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:09", + "echoMap": {}, + "alarmNo": "1570474662", + "alarmDate": "1769985428497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264691", + "createdBy": null, + "createdTime": "2026-02-02 06:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:04", + "echoMap": {}, + "alarmNo": "1570474661", + "alarmDate": "1769985423730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117487283264521", + "createdBy": null, + "createdTime": "2026-02-02 06:36:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:06", + "echoMap": {}, + "alarmNo": "1570474660", + "alarmDate": "1769985413039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330529", + "createdBy": null, + "createdTime": "2026-02-02 06:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:46", + "echoMap": {}, + "alarmNo": "1570474659", + "alarmDate": "1769985404739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330505", + "createdBy": null, + "createdTime": "2026-02-02 06:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:50", + "echoMap": {}, + "alarmNo": "1570474658", + "alarmDate": "1769985403442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330440", + "createdBy": null, + "createdTime": "2026-02-02 06:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:51", + "echoMap": {}, + "alarmNo": "1570474657", + "alarmDate": "1769985399764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330433", + "createdBy": null, + "createdTime": "2026-02-02 06:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:40", + "echoMap": {}, + "alarmNo": "1570474656", + "alarmDate": "1769985399261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117478693330353", + "createdBy": null, + "createdTime": "2026-02-02 06:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:36", + "echoMap": {}, + "alarmNo": "1570474655", + "alarmDate": "1769985394614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117474398362657", + "createdBy": null, + "createdTime": "2026-02-02 06:27:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:41", + "echoMap": {}, + "alarmNo": "1570474654", + "alarmDate": "1769984833705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395972", + "createdBy": null, + "createdTime": "2026-02-02 06:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:28", + "echoMap": {}, + "alarmNo": "1570474653", + "alarmDate": "1769984827435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395936", + "createdBy": null, + "createdTime": "2026-02-02 06:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:18", + "echoMap": {}, + "alarmNo": "1570474652", + "alarmDate": "1769984825263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395869", + "createdBy": null, + "createdTime": "2026-02-02 06:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:09", + "echoMap": {}, + "alarmNo": "1570474651", + "alarmDate": "1769984820888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060029", + "deviceName": "[421](10)豫园5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395696", + "createdBy": null, + "createdTime": "2026-02-02 06:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:02", + "echoMap": {}, + "alarmNo": "1570474650", + "alarmDate": "1769984809720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395608", + "createdBy": null, + "createdTime": "2026-02-02 06:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:46", + "echoMap": {}, + "alarmNo": "1570474649", + "alarmDate": "1769984804567", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395464", + "createdBy": null, + "createdTime": "2026-02-02 06:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:55", + "echoMap": {}, + "alarmNo": "1570474648", + "alarmDate": "1769984796345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117470103395408", + "createdBy": null, + "createdTime": "2026-02-02 06:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:46", + "echoMap": {}, + "alarmNo": "1570474647", + "alarmDate": "1769984793140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513461339", + "createdBy": null, + "createdTime": "2026-02-02 06:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:23", + "echoMap": {}, + "alarmNo": "1570474646", + "alarmDate": "1769984779275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513461190", + "createdBy": null, + "createdTime": "2026-02-02 06:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:26", + "echoMap": {}, + "alarmNo": "1570474645", + "alarmDate": "1769984237454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513461069", + "createdBy": null, + "createdTime": "2026-02-02 06:17:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:21", + "echoMap": {}, + "alarmNo": "1570474644", + "alarmDate": "1769984230988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513460954", + "createdBy": null, + "createdTime": "2026-02-02 06:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:16", + "echoMap": {}, + "alarmNo": "1570474643", + "alarmDate": "1769984224271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117461513460792", + "createdBy": null, + "createdTime": "2026-02-02 06:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:38", + "echoMap": {}, + "alarmNo": "1570474642", + "alarmDate": "1769984214475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526685", + "createdBy": null, + "createdTime": "2026-02-02 06:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:41", + "echoMap": {}, + "alarmNo": "1570474641", + "alarmDate": "1769984199729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526679", + "createdBy": null, + "createdTime": "2026-02-02 06:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:52", + "echoMap": {}, + "alarmNo": "1570474640", + "alarmDate": "1769984199303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526667", + "createdBy": null, + "createdTime": "2026-02-02 06:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:58", + "echoMap": {}, + "alarmNo": "1570474639", + "alarmDate": "1769984198896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526472", + "createdBy": null, + "createdTime": "2026-02-02 06:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:28", + "echoMap": {}, + "alarmNo": "1570474638", + "alarmDate": "1769984186751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526356", + "createdBy": null, + "createdTime": "2026-02-02 06:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:27", + "echoMap": {}, + "alarmNo": "1570474637", + "alarmDate": "1769984179840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117452923526206", + "createdBy": null, + "createdTime": "2026-02-02 06:07:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:19", + "echoMap": {}, + "alarmNo": "1570474636", + "alarmDate": "1769983637701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333592199", + "createdBy": null, + "createdTime": "2026-02-02 06:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:28", + "echoMap": {}, + "alarmNo": "1570474635", + "alarmDate": "1769983627992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333592048", + "createdBy": null, + "createdTime": "2026-02-02 06:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:19", + "echoMap": {}, + "alarmNo": "1570474634", + "alarmDate": "1769983619765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591944", + "createdBy": null, + "createdTime": "2026-02-02 06:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:55", + "echoMap": {}, + "alarmNo": "1570474633", + "alarmDate": "1769983613932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591926", + "createdBy": null, + "createdTime": "2026-02-02 06:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:54", + "echoMap": {}, + "alarmNo": "1570474632", + "alarmDate": "1769983613231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591884", + "createdBy": null, + "createdTime": "2026-02-02 06:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:52", + "echoMap": {}, + "alarmNo": "1570474631", + "alarmDate": "1769983610945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117444333591741", + "createdBy": null, + "createdTime": "2026-02-02 06:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:57", + "echoMap": {}, + "alarmNo": "1570474630", + "alarmDate": "1769983603899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117440038624309", + "createdBy": null, + "createdTime": "2026-02-02 06:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:40", + "echoMap": {}, + "alarmNo": "1570474629", + "alarmDate": "1769983593913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657591", + "createdBy": null, + "createdTime": "2026-02-02 06:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:47", + "echoMap": {}, + "alarmNo": "1570474628", + "alarmDate": "1769983587720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657464", + "createdBy": null, + "createdTime": "2026-02-02 06:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:21", + "echoMap": {}, + "alarmNo": "1570474627", + "alarmDate": "1769983580790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060088", + "deviceName": "[416](10)豫园4#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657451", + "createdBy": null, + "createdTime": "2026-02-02 06:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:20", + "echoMap": {}, + "alarmNo": "1570474626", + "alarmDate": "1769983580247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060089", + "deviceName": "[415](10)豫园4#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657256", + "createdBy": null, + "createdTime": "2026-02-02 05:57:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:33", + "echoMap": {}, + "alarmNo": "1570474625", + "alarmDate": "1769983032694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743657237", + "createdBy": null, + "createdTime": "2026-02-02 05:57:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:42", + "echoMap": {}, + "alarmNo": "1570474624", + "alarmDate": "1769983030980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743656997", + "createdBy": null, + "createdTime": "2026-02-02 05:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:01", + "echoMap": {}, + "alarmNo": "1570474623", + "alarmDate": "1769983008664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743656975", + "createdBy": null, + "createdTime": "2026-02-02 05:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:59", + "echoMap": {}, + "alarmNo": "1570474622", + "alarmDate": "1769983006938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117435743656968", + "createdBy": null, + "createdTime": "2026-02-02 05:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:00", + "echoMap": {}, + "alarmNo": "1570474621", + "alarmDate": "1769983006463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153723056", + "createdBy": null, + "createdTime": "2026-02-02 05:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:43", + "echoMap": {}, + "alarmNo": "1570474620", + "alarmDate": "1769982997685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722727", + "createdBy": null, + "createdTime": "2026-02-02 05:47:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:37", + "echoMap": {}, + "alarmNo": "1570474619", + "alarmDate": "1769982437432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722698", + "createdBy": null, + "createdTime": "2026-02-02 05:47:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:34", + "echoMap": {}, + "alarmNo": "1570474618", + "alarmDate": "1769982435126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722608", + "createdBy": null, + "createdTime": "2026-02-02 05:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:07", + "echoMap": {}, + "alarmNo": "1570474617", + "alarmDate": "1769982427244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117427153722424", + "createdBy": null, + "createdTime": "2026-02-02 05:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:54", + "echoMap": {}, + "alarmNo": "1570474616", + "alarmDate": "1769982412887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117422858755090", + "createdBy": null, + "createdTime": "2026-02-02 05:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:58", + "echoMap": {}, + "alarmNo": "1570474615", + "alarmDate": "1769982406389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788471", + "createdBy": null, + "createdTime": "2026-02-02 05:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:35", + "echoMap": {}, + "alarmNo": "1570474614", + "alarmDate": "1769982403692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788464", + "createdBy": null, + "createdTime": "2026-02-02 05:46:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:55", + "echoMap": {}, + "alarmNo": "1570474613", + "alarmDate": "1769982403142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788454", + "createdBy": null, + "createdTime": "2026-02-02 05:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:48", + "echoMap": {}, + "alarmNo": "1570474612", + "alarmDate": "1769982402399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788412", + "createdBy": null, + "createdTime": "2026-02-02 05:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:40", + "echoMap": {}, + "alarmNo": "1570474611", + "alarmDate": "1769982398935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788239", + "createdBy": null, + "createdTime": "2026-02-02 05:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:26", + "echoMap": {}, + "alarmNo": "1570474610", + "alarmDate": "1769982385409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788181", + "createdBy": null, + "createdTime": "2026-02-02 05:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:34", + "echoMap": {}, + "alarmNo": "1570474609", + "alarmDate": "1769982381313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563788155", + "createdBy": null, + "createdTime": "2026-02-02 05:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:19", + "echoMap": {}, + "alarmNo": "1570474608", + "alarmDate": "1769982378685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060014", + "deviceName": "[314](10)豫园3#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787959", + "createdBy": null, + "createdTime": "2026-02-02 05:37:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:13", + "echoMap": {}, + "alarmNo": "1570474607", + "alarmDate": "1769981832202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787940", + "createdBy": null, + "createdTime": "2026-02-02 05:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:31", + "echoMap": {}, + "alarmNo": "1570474606", + "alarmDate": "1769981830842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787918", + "createdBy": null, + "createdTime": "2026-02-02 05:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:10", + "echoMap": {}, + "alarmNo": "1570474605", + "alarmDate": "1769981829216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117418563787903", + "createdBy": null, + "createdTime": "2026-02-02 05:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:47:07", + "echoMap": {}, + "alarmNo": "1570474604", + "alarmDate": "1769981828022", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060134", + "deviceName": "[358](10)豫园3B#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853869", + "createdBy": null, + "createdTime": "2026-02-02 05:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:10", + "echoMap": {}, + "alarmNo": "1570474603", + "alarmDate": "1769981812201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853791", + "createdBy": null, + "createdTime": "2026-02-02 05:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:52", + "echoMap": {}, + "alarmNo": "1570474602", + "alarmDate": "1769981805833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853738", + "createdBy": null, + "createdTime": "2026-02-02 05:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:42", + "echoMap": {}, + "alarmNo": "1570474601", + "alarmDate": "1769981801239", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853642", + "createdBy": null, + "createdTime": "2026-02-02 05:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:39", + "echoMap": {}, + "alarmNo": "1570474600", + "alarmDate": "1769981793101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853509", + "createdBy": null, + "createdTime": "2026-02-02 05:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:28", + "echoMap": {}, + "alarmNo": "1570474599", + "alarmDate": "1769981782219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117409973853312", + "createdBy": null, + "createdTime": "2026-02-02 05:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:28", + "echoMap": {}, + "alarmNo": "1570474598", + "alarmDate": "1769981234532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383919266", + "createdBy": null, + "createdTime": "2026-02-02 05:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:15", + "echoMap": {}, + "alarmNo": "1570474597", + "alarmDate": "1769981215940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383919251", + "createdBy": null, + "createdTime": "2026-02-02 05:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1570474596", + "alarmDate": "1769981215030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383919110", + "createdBy": null, + "createdTime": "2026-02-02 05:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:57", + "echoMap": {}, + "alarmNo": "1570474595", + "alarmDate": "1769981203514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918970", + "createdBy": null, + "createdTime": "2026-02-02 05:26:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:44", + "echoMap": {}, + "alarmNo": "1570474594", + "alarmDate": "1769981191943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060059", + "deviceName": "[305](10)豫园1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918901", + "createdBy": null, + "createdTime": "2026-02-02 05:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:33", + "echoMap": {}, + "alarmNo": "1570474593", + "alarmDate": "1769981186893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060079", + "deviceName": "[322](10)豫园4#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918824", + "createdBy": null, + "createdTime": "2026-02-02 05:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:32", + "echoMap": {}, + "alarmNo": "1570474592", + "alarmDate": "1769981180399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060077", + "deviceName": "[319](10)豫园4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117401383918600", + "createdBy": null, + "createdTime": "2026-02-02 05:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:11", + "echoMap": {}, + "alarmNo": "1570474591", + "alarmDate": "1769980630118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984612", + "createdBy": null, + "createdTime": "2026-02-02 05:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:56", + "echoMap": {}, + "alarmNo": "1570474590", + "alarmDate": "1769980615255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984496", + "createdBy": null, + "createdTime": "2026-02-02 05:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:47", + "echoMap": {}, + "alarmNo": "1570474589", + "alarmDate": "1769980605736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984415", + "createdBy": null, + "createdTime": "2026-02-02 05:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:41", + "echoMap": {}, + "alarmNo": "1570474588", + "alarmDate": "1769980599602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984379", + "createdBy": null, + "createdTime": "2026-02-02 05:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:38", + "echoMap": {}, + "alarmNo": "1570474587", + "alarmDate": "1769980596657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117392793984058", + "createdBy": null, + "createdTime": "2026-02-02 05:07:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:32", + "echoMap": {}, + "alarmNo": "1570474586", + "alarmDate": "1769980037783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049871", + "createdBy": null, + "createdTime": "2026-02-02 05:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:06", + "echoMap": {}, + "alarmNo": "1570474585", + "alarmDate": "1769980005561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049616", + "createdBy": null, + "createdTime": "2026-02-02 05:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:22", + "echoMap": {}, + "alarmNo": "1570474584", + "alarmDate": "1769979981378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049598", + "createdBy": null, + "createdTime": "2026-02-02 05:06:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:33", + "echoMap": {}, + "alarmNo": "1570474583", + "alarmDate": "1769979979576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117384204049432", + "createdBy": null, + "createdTime": "2026-02-02 04:57:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:15", + "echoMap": {}, + "alarmNo": "1570474582", + "alarmDate": "1769979434199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614115171", + "createdBy": null, + "createdTime": "2026-02-02 04:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:37", + "echoMap": {}, + "alarmNo": "1570474581", + "alarmDate": "1769979396411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614115019", + "createdBy": null, + "createdTime": "2026-02-02 04:56:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:24", + "echoMap": {}, + "alarmNo": "1570474580", + "alarmDate": "1769979382622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614114865", + "createdBy": null, + "createdTime": "2026-02-02 04:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:08", + "echoMap": {}, + "alarmNo": "1570474579", + "alarmDate": "1769978838265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117375614114838", + "createdBy": null, + "createdTime": "2026-02-02 04:47:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:16", + "echoMap": {}, + "alarmNo": "1570474578", + "alarmDate": "1769978835462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180889", + "createdBy": null, + "createdTime": "2026-02-02 04:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:07", + "echoMap": {}, + "alarmNo": "1570474577", + "alarmDate": "1769978825988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180805", + "createdBy": null, + "createdTime": "2026-02-02 04:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:00", + "echoMap": {}, + "alarmNo": "1570474576", + "alarmDate": "1769978818753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180780", + "createdBy": null, + "createdTime": "2026-02-02 04:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:58", + "echoMap": {}, + "alarmNo": "1570474575", + "alarmDate": "1769978816776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180736", + "createdBy": null, + "createdTime": "2026-02-02 04:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:06", + "echoMap": {}, + "alarmNo": "1570474574", + "alarmDate": "1769978813146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117367024180482", + "createdBy": null, + "createdTime": "2026-02-02 04:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:41", + "echoMap": {}, + "alarmNo": "1570474573", + "alarmDate": "1769978788995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117358434246203", + "createdBy": null, + "createdTime": "2026-02-02 04:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:11", + "echoMap": {}, + "alarmNo": "1570474572", + "alarmDate": "1769978217851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117358434246031", + "createdBy": null, + "createdTime": "2026-02-02 04:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:43", + "echoMap": {}, + "alarmNo": "1570474571", + "alarmDate": "1769978201543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117358434245945", + "createdBy": null, + "createdTime": "2026-02-02 04:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:46", + "echoMap": {}, + "alarmNo": "1570474570", + "alarmDate": "1769978193806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311619", + "createdBy": null, + "createdTime": "2026-02-02 04:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:58", + "echoMap": {}, + "alarmNo": "1570474569", + "alarmDate": "1769977616704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311464", + "createdBy": null, + "createdTime": "2026-02-02 04:26:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:44", + "echoMap": {}, + "alarmNo": "1570474568", + "alarmDate": "1769977602993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311357", + "createdBy": null, + "createdTime": "2026-02-02 04:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:34", + "echoMap": {}, + "alarmNo": "1570474567", + "alarmDate": "1769977593327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311325", + "createdBy": null, + "createdTime": "2026-02-02 04:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:22", + "echoMap": {}, + "alarmNo": "1570474566", + "alarmDate": "1769977590586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311256", + "createdBy": null, + "createdTime": "2026-02-02 04:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:25", + "echoMap": {}, + "alarmNo": "1570474565", + "alarmDate": "1769977584137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311093", + "createdBy": null, + "createdTime": "2026-02-02 04:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:28", + "echoMap": {}, + "alarmNo": "1570474564", + "alarmDate": "1769977040084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117349844311074", + "createdBy": null, + "createdTime": "2026-02-02 04:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:18", + "echoMap": {}, + "alarmNo": "1570474563", + "alarmDate": "1769977037014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117341254377031", + "createdBy": null, + "createdTime": "2026-02-02 04:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:11", + "echoMap": {}, + "alarmNo": "1570474562", + "alarmDate": "1769977018371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117332664442474", + "createdBy": null, + "createdTime": "2026-02-02 04:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:01", + "echoMap": {}, + "alarmNo": "1570474561", + "alarmDate": "1769976419693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117332664442079", + "createdBy": null, + "createdTime": "2026-02-02 04:06:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:25", + "echoMap": {}, + "alarmNo": "1570474560", + "alarmDate": "1769976384029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117332664441894", + "createdBy": null, + "createdTime": "2026-02-02 03:57:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:18", + "echoMap": {}, + "alarmNo": "1570474559", + "alarmDate": "1769975836897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117328369474563", + "createdBy": null, + "createdTime": "2026-02-02 03:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:46", + "echoMap": {}, + "alarmNo": "1570474558", + "alarmDate": "1769975828951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507901", + "createdBy": null, + "createdTime": "2026-02-02 03:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:04", + "echoMap": {}, + "alarmNo": "1570474557", + "alarmDate": "1769975823211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507800", + "createdBy": null, + "createdTime": "2026-02-02 03:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:56", + "echoMap": {}, + "alarmNo": "1570474556", + "alarmDate": "1769975814674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507716", + "createdBy": null, + "createdTime": "2026-02-02 03:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:49", + "echoMap": {}, + "alarmNo": "1570474555", + "alarmDate": "1769975807540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507683", + "createdBy": null, + "createdTime": "2026-02-02 03:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:45", + "echoMap": {}, + "alarmNo": "1570474554", + "alarmDate": "1769975804654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507603", + "createdBy": null, + "createdTime": "2026-02-02 03:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:57", + "echoMap": {}, + "alarmNo": "1570474553", + "alarmDate": "1769975797780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117324074507418", + "createdBy": null, + "createdTime": "2026-02-02 03:56:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:25", + "echoMap": {}, + "alarmNo": "1570474552", + "alarmDate": "1769975779791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117315484573311", + "createdBy": null, + "createdTime": "2026-02-02 03:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:17", + "echoMap": {}, + "alarmNo": "1570474551", + "alarmDate": "1769975224669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117315484573055", + "createdBy": null, + "createdTime": "2026-02-02 03:46:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:53", + "echoMap": {}, + "alarmNo": "1570474550", + "alarmDate": "1769975200491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117315484572904", + "createdBy": null, + "createdTime": "2026-02-02 03:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:27", + "echoMap": {}, + "alarmNo": "1570474549", + "alarmDate": "1769975185991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638785", + "createdBy": null, + "createdTime": "2026-02-02 03:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:29", + "echoMap": {}, + "alarmNo": "1570474548", + "alarmDate": "1769974629353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638527", + "createdBy": null, + "createdTime": "2026-02-02 03:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:57", + "echoMap": {}, + "alarmNo": "1570474547", + "alarmDate": "1769974605243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638512", + "createdBy": null, + "createdTime": "2026-02-02 03:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:45", + "echoMap": {}, + "alarmNo": "1570474546", + "alarmDate": "1769974604108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638369", + "createdBy": null, + "createdTime": "2026-02-02 03:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:32", + "echoMap": {}, + "alarmNo": "1570474545", + "alarmDate": "1769974590531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638274", + "createdBy": null, + "createdTime": "2026-02-02 03:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:23", + "echoMap": {}, + "alarmNo": "1570474544", + "alarmDate": "1769974581938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117306894638087", + "createdBy": null, + "createdTime": "2026-02-02 03:27:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:16", + "echoMap": {}, + "alarmNo": "1570474543", + "alarmDate": "1769974034818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304704179", + "createdBy": null, + "createdTime": "2026-02-02 03:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:10", + "echoMap": {}, + "alarmNo": "1570474542", + "alarmDate": "1769974028743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304704130", + "createdBy": null, + "createdTime": "2026-02-02 03:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:06", + "echoMap": {}, + "alarmNo": "1570474541", + "alarmDate": "1769974024631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304704110", + "createdBy": null, + "createdTime": "2026-02-02 03:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:04", + "echoMap": {}, + "alarmNo": "1570474540", + "alarmDate": "1769974022961", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304703974", + "createdBy": null, + "createdTime": "2026-02-02 03:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:33", + "echoMap": {}, + "alarmNo": "1570474539", + "alarmDate": "1769974010930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117298304703513", + "createdBy": null, + "createdTime": "2026-02-02 03:17:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:39", + "echoMap": {}, + "alarmNo": "1570474538", + "alarmDate": "1769973438741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117289714769355", + "createdBy": null, + "createdTime": "2026-02-02 03:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:07", + "echoMap": {}, + "alarmNo": "1570474537", + "alarmDate": "1769973406733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117289714769333", + "createdBy": null, + "createdTime": "2026-02-02 03:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:46", + "echoMap": {}, + "alarmNo": "1570474536", + "alarmDate": "1769973405068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117289714768905", + "createdBy": null, + "createdTime": "2026-02-02 03:07:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:35", + "echoMap": {}, + "alarmNo": "1570474535", + "alarmDate": "1769972834478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834986", + "createdBy": null, + "createdTime": "2026-02-02 03:07:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:06", + "echoMap": {}, + "alarmNo": "1570474534", + "alarmDate": "1769972825383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834824", + "createdBy": null, + "createdTime": "2026-02-02 03:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:52", + "echoMap": {}, + "alarmNo": "1570474533", + "alarmDate": "1769972810813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834819", + "createdBy": null, + "createdTime": "2026-02-02 03:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:03", + "echoMap": {}, + "alarmNo": "1570474532", + "alarmDate": "1769972810374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834746", + "createdBy": null, + "createdTime": "2026-02-02 03:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:44", + "echoMap": {}, + "alarmNo": "1570474531", + "alarmDate": "1769972803276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834671", + "createdBy": null, + "createdTime": "2026-02-02 03:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:37", + "echoMap": {}, + "alarmNo": "1570474530", + "alarmDate": "1769972796267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834658", + "createdBy": null, + "createdTime": "2026-02-02 03:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:36", + "echoMap": {}, + "alarmNo": "1570474529", + "alarmDate": "1769972795427", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117281124834628", + "createdBy": null, + "createdTime": "2026-02-02 03:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:34", + "echoMap": {}, + "alarmNo": "1570474528", + "alarmDate": "1769972792952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117276829867067", + "createdBy": null, + "createdTime": "2026-02-02 02:57:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:38", + "echoMap": {}, + "alarmNo": "1570474527", + "alarmDate": "1769972232259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117272534900209", + "createdBy": null, + "createdTime": "2026-02-02 02:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:00", + "echoMap": {}, + "alarmNo": "1570474526", + "alarmDate": "1769972207149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117272534899776", + "createdBy": null, + "createdTime": "2026-02-02 02:47:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:35", + "echoMap": {}, + "alarmNo": "1570474525", + "alarmDate": "1769971636046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117268239932425", + "createdBy": null, + "createdTime": "2026-02-02 02:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:06", + "echoMap": {}, + "alarmNo": "1570474524", + "alarmDate": "1769971625268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965709", + "createdBy": null, + "createdTime": "2026-02-02 02:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:04", + "echoMap": {}, + "alarmNo": "1570474523", + "alarmDate": "1769971611894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965504", + "createdBy": null, + "createdTime": "2026-02-02 02:46:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:34", + "echoMap": {}, + "alarmNo": "1570474522", + "alarmDate": "1769971592672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965198", + "createdBy": null, + "createdTime": "2026-02-02 02:37:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:40", + "echoMap": {}, + "alarmNo": "1570474521", + "alarmDate": "1769971033723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117263944965159", + "createdBy": null, + "createdTime": "2026-02-02 02:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:11", + "echoMap": {}, + "alarmNo": "1570474520", + "alarmDate": "1769971030018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117259649997864", + "createdBy": null, + "createdTime": "2026-02-02 02:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:04", + "echoMap": {}, + "alarmNo": "1570474519", + "alarmDate": "1769971023425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117255355031200", + "createdBy": null, + "createdTime": "2026-02-02 02:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:58", + "echoMap": {}, + "alarmNo": "1570474518", + "alarmDate": "1769971017616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117255355031084", + "createdBy": null, + "createdTime": "2026-02-02 02:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:01", + "echoMap": {}, + "alarmNo": "1570474517", + "alarmDate": "1769971007568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117255355030569", + "createdBy": null, + "createdTime": "2026-02-02 02:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:36", + "echoMap": {}, + "alarmNo": "1570474516", + "alarmDate": "1769970429487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765096410", + "createdBy": null, + "createdTime": "2026-02-02 02:26:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:58", + "echoMap": {}, + "alarmNo": "1570474515", + "alarmDate": "1769970398381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765096327", + "createdBy": null, + "createdTime": "2026-02-02 02:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:31", + "echoMap": {}, + "alarmNo": "1570474514", + "alarmDate": "1769970390522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765096222", + "createdBy": null, + "createdTime": "2026-02-02 02:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:25", + "echoMap": {}, + "alarmNo": "1570474513", + "alarmDate": "1769970380386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117246765095967", + "createdBy": null, + "createdTime": "2026-02-02 02:17:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:18", + "echoMap": {}, + "alarmNo": "1570474512", + "alarmDate": "1769969826973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161990", + "createdBy": null, + "createdTime": "2026-02-02 02:16:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:54", + "echoMap": {}, + "alarmNo": "1570474511", + "alarmDate": "1769969813407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161866", + "createdBy": null, + "createdTime": "2026-02-02 02:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:54", + "echoMap": {}, + "alarmNo": "1570474510", + "alarmDate": "1769969802509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161826", + "createdBy": null, + "createdTime": "2026-02-02 02:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:40", + "echoMap": {}, + "alarmNo": "1570474509", + "alarmDate": "1769969798873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161790", + "createdBy": null, + "createdTime": "2026-02-02 02:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:03", + "echoMap": {}, + "alarmNo": "1570474508", + "alarmDate": "1769969795444", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161741", + "createdBy": null, + "createdTime": "2026-02-02 02:16:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:32", + "echoMap": {}, + "alarmNo": "1570474507", + "alarmDate": "1769969791031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161677", + "createdBy": null, + "createdTime": "2026-02-02 02:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:26", + "echoMap": {}, + "alarmNo": "1570474506", + "alarmDate": "1769969785230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161636", + "createdBy": null, + "createdTime": "2026-02-02 02:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:54", + "echoMap": {}, + "alarmNo": "1570474505", + "alarmDate": "1769969781724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161490", + "createdBy": null, + "createdTime": "2026-02-02 02:07:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:19", + "echoMap": {}, + "alarmNo": "1570474504", + "alarmDate": "1769969238547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161427", + "createdBy": null, + "createdTime": "2026-02-02 02:07:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:14", + "echoMap": {}, + "alarmNo": "1570474503", + "alarmDate": "1769969232861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117238175161395", + "createdBy": null, + "createdTime": "2026-02-02 02:07:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:30", + "echoMap": {}, + "alarmNo": "1570474502", + "alarmDate": "1769969230168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117229585227290", + "createdBy": null, + "createdTime": "2026-02-02 02:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:58", + "echoMap": {}, + "alarmNo": "1570474501", + "alarmDate": "1769969205898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117229585226845", + "createdBy": null, + "createdTime": "2026-02-02 01:57:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:34", + "echoMap": {}, + "alarmNo": "1570474500", + "alarmDate": "1769968633988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292583", + "createdBy": null, + "createdTime": "2026-02-02 01:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:03", + "echoMap": {}, + "alarmNo": "1570474499", + "alarmDate": "1769968581051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292376", + "createdBy": null, + "createdTime": "2026-02-02 01:47:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:12", + "echoMap": {}, + "alarmNo": "1570474498", + "alarmDate": "1769968031471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292258", + "createdBy": null, + "createdTime": "2026-02-02 01:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:02", + "echoMap": {}, + "alarmNo": "1570474497", + "alarmDate": "1769968020511", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117220995292216", + "createdBy": null, + "createdTime": "2026-02-02 01:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:58", + "echoMap": {}, + "alarmNo": "1570474496", + "alarmDate": "1769968016939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117216700324911", + "createdBy": null, + "createdTime": "2026-02-02 01:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:52", + "echoMap": {}, + "alarmNo": "1570474495", + "alarmDate": "1769968011522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117212405358251", + "createdBy": null, + "createdTime": "2026-02-02 01:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:48", + "echoMap": {}, + "alarmNo": "1570474494", + "alarmDate": "1769968006399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117212405358181", + "createdBy": null, + "createdTime": "2026-02-02 01:46:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:41", + "echoMap": {}, + "alarmNo": "1570474493", + "alarmDate": "1769968000358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117212405357969", + "createdBy": null, + "createdTime": "2026-02-02 01:46:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:08", + "echoMap": {}, + "alarmNo": "1570474492", + "alarmDate": "1769967981370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117203815423553", + "createdBy": null, + "createdTime": "2026-02-02 01:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:19", + "echoMap": {}, + "alarmNo": "1570474491", + "alarmDate": "1769967395101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117203815423105", + "createdBy": null, + "createdTime": "2026-02-02 01:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:47", + "echoMap": {}, + "alarmNo": "1570474490", + "alarmDate": "1769966823054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225489039", + "createdBy": null, + "createdTime": "2026-02-02 01:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:23", + "echoMap": {}, + "alarmNo": "1570474489", + "alarmDate": "1769966801810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225489038", + "createdBy": null, + "createdTime": "2026-02-02 01:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:42", + "echoMap": {}, + "alarmNo": "1570474488", + "alarmDate": "1769966801809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225489000", + "createdBy": null, + "createdTime": "2026-02-02 01:26:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:42", + "echoMap": {}, + "alarmNo": "1570474487", + "alarmDate": "1769966798624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488955", + "createdBy": null, + "createdTime": "2026-02-02 01:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:36", + "echoMap": {}, + "alarmNo": "1570474486", + "alarmDate": "1769966794423", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488847", + "createdBy": null, + "createdTime": "2026-02-02 01:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:25", + "echoMap": {}, + "alarmNo": "1570474485", + "alarmDate": "1769966784364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488790", + "createdBy": null, + "createdTime": "2026-02-02 01:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:20", + "echoMap": {}, + "alarmNo": "1570474484", + "alarmDate": "1769966778687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488659", + "createdBy": null, + "createdTime": "2026-02-02 01:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:18", + "echoMap": {}, + "alarmNo": "1570474483", + "alarmDate": "1769966237311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488594", + "createdBy": null, + "createdTime": "2026-02-02 01:17:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:13", + "echoMap": {}, + "alarmNo": "1570474482", + "alarmDate": "1769966231625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488525", + "createdBy": null, + "createdTime": "2026-02-02 01:17:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:07", + "echoMap": {}, + "alarmNo": "1570474481", + "alarmDate": "1769966225696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117195225488467", + "createdBy": null, + "createdTime": "2026-02-02 01:17:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:02", + "echoMap": {}, + "alarmNo": "1570474480", + "alarmDate": "1769966220682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117186635554569", + "createdBy": null, + "createdTime": "2026-02-02 01:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:28", + "echoMap": {}, + "alarmNo": "1570474479", + "alarmDate": "1769966204675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117186635554309", + "createdBy": null, + "createdTime": "2026-02-02 01:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:33", + "echoMap": {}, + "alarmNo": "1570474478", + "alarmDate": "1769966181065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117186635554191", + "createdBy": null, + "createdTime": "2026-02-02 01:07:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:31", + "echoMap": {}, + "alarmNo": "1570474477", + "alarmDate": "1769965651361", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1015030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1015" + }, + { + "id": "723117178045619933", + "createdBy": null, + "createdTime": "2026-02-02 01:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:29", + "echoMap": {}, + "alarmNo": "1570474476", + "alarmDate": "1769965588227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619849", + "createdBy": null, + "createdTime": "2026-02-02 01:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:21", + "echoMap": {}, + "alarmNo": "1570474475", + "alarmDate": "1769965580710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060107", + "deviceName": "[334](10)豫园#1台扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619510", + "createdBy": null, + "createdTime": "2026-02-02 00:57:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:01", + "echoMap": {}, + "alarmNo": "1570474474", + "alarmDate": "1769965019677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619501", + "createdBy": null, + "createdTime": "2026-02-02 00:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:00", + "echoMap": {}, + "alarmNo": "1570474473", + "alarmDate": "1769965019019", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619349", + "createdBy": null, + "createdTime": "2026-02-02 00:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:46", + "echoMap": {}, + "alarmNo": "1570474472", + "alarmDate": "1769965005341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619270", + "createdBy": null, + "createdTime": "2026-02-02 00:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:40", + "echoMap": {}, + "alarmNo": "1570474471", + "alarmDate": "1769964998637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117178045619205", + "createdBy": null, + "createdTime": "2026-02-02 00:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:35", + "echoMap": {}, + "alarmNo": "1570474470", + "alarmDate": "1769964993931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117169455685418", + "createdBy": null, + "createdTime": "2026-02-02 00:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:29", + "echoMap": {}, + "alarmNo": "1570474469", + "alarmDate": "1769964987597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117165160717325", + "createdBy": null, + "createdTime": "2026-02-02 00:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:08", + "echoMap": {}, + "alarmNo": "1570474468", + "alarmDate": "1769964379625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750659", + "createdBy": null, + "createdTime": "2026-02-02 00:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:15", + "echoMap": {}, + "alarmNo": "1570474467", + "alarmDate": "1769963822491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750501", + "createdBy": null, + "createdTime": "2026-02-02 00:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:48", + "echoMap": {}, + "alarmNo": "1570474466", + "alarmDate": "1769963807321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750402", + "createdBy": null, + "createdTime": "2026-02-02 00:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:50", + "echoMap": {}, + "alarmNo": "1570474465", + "alarmDate": "1769963798420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750329", + "createdBy": null, + "createdTime": "2026-02-02 00:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:32", + "echoMap": {}, + "alarmNo": "1570474464", + "alarmDate": "1769963791428", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117160865750085", + "createdBy": null, + "createdTime": "2026-02-02 00:27:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:29", + "echoMap": {}, + "alarmNo": "1570474463", + "alarmDate": "1769963239758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816260", + "createdBy": null, + "createdTime": "2026-02-02 00:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:06", + "echoMap": {}, + "alarmNo": "1570474462", + "alarmDate": "1769963224506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816196", + "createdBy": null, + "createdTime": "2026-02-02 00:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:00", + "echoMap": {}, + "alarmNo": "1570474461", + "alarmDate": "1769963218858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816153", + "createdBy": null, + "createdTime": "2026-02-02 00:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:56", + "echoMap": {}, + "alarmNo": "1570474460", + "alarmDate": "1769963215103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816068", + "createdBy": null, + "createdTime": "2026-02-02 00:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:50", + "echoMap": {}, + "alarmNo": "1570474459", + "alarmDate": "1769963208795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060071", + "deviceName": "[204](10)豫园厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275816014", + "createdBy": null, + "createdTime": "2026-02-02 00:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:26", + "echoMap": {}, + "alarmNo": "1570474458", + "alarmDate": "1769963204188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117152275815503", + "createdBy": null, + "createdTime": "2026-02-02 00:17:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:32", + "echoMap": {}, + "alarmNo": "1570474457", + "alarmDate": "1769962624934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685881533", + "createdBy": null, + "createdTime": "2026-02-02 00:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:52", + "echoMap": {}, + "alarmNo": "1570474456", + "alarmDate": "1769962598830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685880918", + "createdBy": null, + "createdTime": "2026-02-02 00:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:05", + "echoMap": {}, + "alarmNo": "1570474455", + "alarmDate": "1769962024391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060027", + "deviceName": "[201](10)豫园厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685880874", + "createdBy": null, + "createdTime": "2026-02-02 00:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:27", + "echoMap": {}, + "alarmNo": "1570474454", + "alarmDate": "1769962020603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117143685880841", + "createdBy": null, + "createdTime": "2026-02-02 00:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:59", + "echoMap": {}, + "alarmNo": "1570474453", + "alarmDate": "1769962017615", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060123", + "deviceName": "[702](10)豫园豫园老西门下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117135095946297", + "createdBy": null, + "createdTime": "2026-02-02 00:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:47", + "echoMap": {}, + "alarmNo": "1570474452", + "alarmDate": "1769962006184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060117", + "deviceName": "[205](10)豫园上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979876", + "createdBy": null, + "createdTime": "2026-02-02 00:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:34", + "echoMap": {}, + "alarmNo": "1570474451", + "alarmDate": "1769961993059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060104", + "deviceName": "[207](10)豫园下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979826", + "createdBy": null, + "createdTime": "2026-02-02 00:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:48", + "echoMap": {}, + "alarmNo": "1570474450", + "alarmDate": "1769961988571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060078", + "deviceName": "[320](10)豫园4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979814", + "createdBy": null, + "createdTime": "2026-02-02 00:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:28", + "echoMap": {}, + "alarmNo": "1570474449", + "alarmDate": "1769961987604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060030", + "deviceName": "[203](10)豫园厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + }, + { + "id": "723117130800979760", + "createdBy": null, + "createdTime": "2026-02-02 00:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:24", + "echoMap": {}, + "alarmNo": "1570474448", + "alarmDate": "1769961982555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1015060137", + "deviceName": "[350](10)豫园3B#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1015" + } + ] + }, + "1016": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723132004273674510", + "createdBy": null, + "createdTime": "2026-02-02 00:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:20", + "echoMap": {}, + "alarmNo": "1593542749", + "alarmDate": "1769961678819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132004273674570", + "createdBy": null, + "createdTime": "2026-02-02 00:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:24", + "echoMap": {}, + "alarmNo": "1593542750", + "alarmDate": "1769961682627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132004273674882", + "createdBy": null, + "createdTime": "2026-02-02 00:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:34", + "echoMap": {}, + "alarmNo": "1593542751", + "alarmDate": "1769961693064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641562", + "createdBy": null, + "createdTime": "2026-02-02 00:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:48", + "echoMap": {}, + "alarmNo": "1593542752", + "alarmDate": "1769961706668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641623", + "createdBy": null, + "createdTime": "2026-02-02 00:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:54", + "echoMap": {}, + "alarmNo": "1593542753", + "alarmDate": "1769961708485", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641646", + "createdBy": null, + "createdTime": "2026-02-02 00:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:49", + "echoMap": {}, + "alarmNo": "1593542754", + "alarmDate": "1769961709068", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060079", + "deviceName": "[403](10)南京东2#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641799", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:38", + "echoMap": {}, + "alarmNo": "1593542755", + "alarmDate": "1769961713047", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641804", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:25", + "echoMap": {}, + "alarmNo": "1593542756", + "alarmDate": "1769961713076", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641807", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:06", + "echoMap": {}, + "alarmNo": "1593542757", + "alarmDate": "1769961713101", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641812", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:04", + "echoMap": {}, + "alarmNo": "1593542758", + "alarmDate": "1769961713228", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641840", + "createdBy": null, + "createdTime": "2026-02-02 00:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:54", + "echoMap": {}, + "alarmNo": "1593542759", + "alarmDate": "1769961713920", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060001", + "deviceName": "[411](10)南京东5#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641855", + "createdBy": null, + "createdTime": "2026-02-02 00:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:29", + "echoMap": {}, + "alarmNo": "1593542760", + "alarmDate": "1769961714142", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641908", + "createdBy": null, + "createdTime": "2026-02-02 00:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:15", + "echoMap": {}, + "alarmNo": "1593542761", + "alarmDate": "1769961715503", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641934", + "createdBy": null, + "createdTime": "2026-02-02 00:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:53", + "echoMap": {}, + "alarmNo": "1593542762", + "alarmDate": "1769961716192", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060077", + "deviceName": "[402](10)南京东2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641974", + "createdBy": null, + "createdTime": "2026-02-02 00:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:02", + "echoMap": {}, + "alarmNo": "1593542763", + "alarmDate": "1769961717393", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641996", + "createdBy": null, + "createdTime": "2026-02-02 00:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:04", + "echoMap": {}, + "alarmNo": "1593542764", + "alarmDate": "1769961718036", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642020", + "createdBy": null, + "createdTime": "2026-02-02 00:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:55", + "echoMap": {}, + "alarmNo": "1593542765", + "alarmDate": "1769961718773", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060071", + "deviceName": "[308](10)南京东5#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642026", + "createdBy": null, + "createdTime": "2026-02-02 00:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:05", + "echoMap": {}, + "alarmNo": "1593542766", + "alarmDate": "1769961718910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060095", + "deviceName": "[317](10)南京东6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642173", + "createdBy": null, + "createdTime": "2026-02-02 00:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:50", + "echoMap": {}, + "alarmNo": "1593542767", + "alarmDate": "1769961723014", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642231", + "createdBy": null, + "createdTime": "2026-02-02 00:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:06", + "echoMap": {}, + "alarmNo": "1593542768", + "alarmDate": "1769961724846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642250", + "createdBy": null, + "createdTime": "2026-02-02 00:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542769", + "alarmDate": "1769961725217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060032", + "deviceName": "[351](10)南京东10-2换乘入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642254", + "createdBy": null, + "createdTime": "2026-02-02 00:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:57", + "echoMap": {}, + "alarmNo": "1593542770", + "alarmDate": "1769961725351", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642267", + "createdBy": null, + "createdTime": "2026-02-02 00:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542771", + "alarmDate": "1769961725769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060031", + "deviceName": "[350](10)南京东10-2换乘入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642290", + "createdBy": null, + "createdTime": "2026-02-02 00:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542772", + "alarmDate": "1769961726320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642317", + "createdBy": null, + "createdTime": "2026-02-02 00:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:51", + "echoMap": {}, + "alarmNo": "1593542773", + "alarmDate": "1769961727088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060091", + "deviceName": "[312](10)南京东6#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642335", + "createdBy": null, + "createdTime": "2026-02-02 00:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:53", + "echoMap": {}, + "alarmNo": "1593542774", + "alarmDate": "1769961727522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642336", + "createdBy": null, + "createdTime": "2026-02-02 00:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542775", + "alarmDate": "1769961727523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060042", + "deviceName": "[406](10)南京东3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642382", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:27", + "echoMap": {}, + "alarmNo": "1593542776", + "alarmDate": "1769961728799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642387", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542777", + "alarmDate": "1769961728950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060119", + "deviceName": "[106](10)南京东上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642407", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:52", + "echoMap": {}, + "alarmNo": "1593542778", + "alarmDate": "1769961729252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642415", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:53", + "echoMap": {}, + "alarmNo": "1593542779", + "alarmDate": "1769961729425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132017158576557", + "createdBy": null, + "createdTime": "2026-02-02 00:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:32", + "echoMap": {}, + "alarmNo": "1593542781", + "alarmDate": "1769962280804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132021453543532", + "createdBy": null, + "createdTime": "2026-02-02 00:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:50", + "echoMap": {}, + "alarmNo": "1593542782", + "alarmDate": "1769962303994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132021453544039", + "createdBy": null, + "createdTime": "2026-02-02 00:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:02", + "echoMap": {}, + "alarmNo": "1593542783", + "alarmDate": "1769962321170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132021453544067", + "createdBy": null, + "createdTime": "2026-02-02 00:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:07", + "echoMap": {}, + "alarmNo": "1593542784", + "alarmDate": "1769962322016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132025748510789", + "createdBy": null, + "createdTime": "2026-02-02 00:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:52", + "echoMap": {}, + "alarmNo": "1593542785", + "alarmDate": "1769962334927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132025748510820", + "createdBy": null, + "createdTime": "2026-02-02 00:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:39", + "echoMap": {}, + "alarmNo": "1593542786", + "alarmDate": "1769962335879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478307", + "createdBy": null, + "createdTime": "2026-02-02 00:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542787", + "alarmDate": "1769962879871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478412", + "createdBy": null, + "createdTime": "2026-02-02 00:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:25", + "echoMap": {}, + "alarmNo": "1593542788", + "alarmDate": "1769962884237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478929", + "createdBy": null, + "createdTime": "2026-02-02 00:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:42", + "echoMap": {}, + "alarmNo": "1593542789", + "alarmDate": "1769962900936", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478987", + "createdBy": null, + "createdTime": "2026-02-02 00:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:44", + "echoMap": {}, + "alarmNo": "1593542790", + "alarmDate": "1769962902705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445524", + "createdBy": null, + "createdTime": "2026-02-02 00:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:52", + "echoMap": {}, + "alarmNo": "1593542791", + "alarmDate": "1769962911256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445533", + "createdBy": null, + "createdTime": "2026-02-02 00:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:53", + "echoMap": {}, + "alarmNo": "1593542792", + "alarmDate": "1769962911542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445922", + "createdBy": null, + "createdTime": "2026-02-02 00:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:05", + "echoMap": {}, + "alarmNo": "1593542793", + "alarmDate": "1769962924174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445999", + "createdBy": null, + "createdTime": "2026-02-02 00:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:08", + "echoMap": {}, + "alarmNo": "1593542794", + "alarmDate": "1769962926661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132042928379921", + "createdBy": null, + "createdTime": "2026-02-02 00:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:36", + "echoMap": {}, + "alarmNo": "1593542795", + "alarmDate": "1769962939167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132047223347824", + "createdBy": null, + "createdTime": "2026-02-02 00:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:33", + "echoMap": {}, + "alarmNo": "1593542796", + "alarmDate": "1769963492412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518314585", + "createdBy": null, + "createdTime": "2026-02-02 00:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:54", + "echoMap": {}, + "alarmNo": "1593542797", + "alarmDate": "1769963508482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518314854", + "createdBy": null, + "createdTime": "2026-02-02 00:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:58", + "echoMap": {}, + "alarmNo": "1593542798", + "alarmDate": "1769963517450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518314869", + "createdBy": null, + "createdTime": "2026-02-02 00:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:29", + "echoMap": {}, + "alarmNo": "1593542799", + "alarmDate": "1769963517737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518315129", + "createdBy": null, + "createdTime": "2026-02-02 00:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:55", + "echoMap": {}, + "alarmNo": "1593542800", + "alarmDate": "1769963526419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132060108249849", + "createdBy": null, + "createdTime": "2026-02-02 00:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:35", + "echoMap": {}, + "alarmNo": "1593542801", + "alarmDate": "1769964094179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403216492", + "createdBy": null, + "createdTime": "2026-02-02 00:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:47", + "echoMap": {}, + "alarmNo": "1593542802", + "alarmDate": "1769964106023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403216612", + "createdBy": null, + "createdTime": "2026-02-02 00:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:56", + "echoMap": {}, + "alarmNo": "1593542803", + "alarmDate": "1769964109838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403217113", + "createdBy": null, + "createdTime": "2026-02-02 00:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:12", + "echoMap": {}, + "alarmNo": "1593542804", + "alarmDate": "1769964126771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403217349", + "createdBy": null, + "createdTime": "2026-02-02 00:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:16", + "echoMap": {}, + "alarmNo": "1593542805", + "alarmDate": "1769964134718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403217376", + "createdBy": null, + "createdTime": "2026-02-02 00:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:16", + "echoMap": {}, + "alarmNo": "1593542806", + "alarmDate": "1769964135285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118373", + "createdBy": null, + "createdTime": "2026-02-02 00:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1593542807", + "alarmDate": "1769964680899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118424", + "createdBy": null, + "createdTime": "2026-02-02 00:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1593542808", + "alarmDate": "1769964682827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118450", + "createdBy": null, + "createdTime": "2026-02-02 00:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1593542809", + "alarmDate": "1769964683554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118757", + "createdBy": null, + "createdTime": "2026-02-02 00:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:34", + "echoMap": {}, + "alarmNo": "1593542810", + "alarmDate": "1769964693319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118843", + "createdBy": null, + "createdTime": "2026-02-02 00:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:42", + "echoMap": {}, + "alarmNo": "1593542811", + "alarmDate": "1769964695949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288119126", + "createdBy": null, + "createdTime": "2026-02-02 00:51:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:47", + "echoMap": {}, + "alarmNo": "1593542812", + "alarmDate": "1769964705477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085616", + "createdBy": null, + "createdTime": "2026-02-02 00:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:54", + "echoMap": {}, + "alarmNo": "1593542813", + "alarmDate": "1769964712634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085659", + "createdBy": null, + "createdTime": "2026-02-02 00:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:11", + "echoMap": {}, + "alarmNo": "1593542814", + "alarmDate": "1769964714067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085724", + "createdBy": null, + "createdTime": "2026-02-02 00:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:57", + "echoMap": {}, + "alarmNo": "1593542815", + "alarmDate": "1769964716054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085726", + "createdBy": null, + "createdTime": "2026-02-02 00:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:50", + "echoMap": {}, + "alarmNo": "1593542816", + "alarmDate": "1769964716087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085794", + "createdBy": null, + "createdTime": "2026-02-02 00:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:59", + "echoMap": {}, + "alarmNo": "1593542817", + "alarmDate": "1769964718157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583086187", + "createdBy": null, + "createdTime": "2026-02-02 00:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:12", + "echoMap": {}, + "alarmNo": "1593542818", + "alarmDate": "1769964731047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132090173020341", + "createdBy": null, + "createdTime": "2026-02-02 01:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:23", + "echoMap": {}, + "alarmNo": "1593542819", + "alarmDate": "1769965282306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132090173020876", + "createdBy": null, + "createdTime": "2026-02-02 01:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:41", + "echoMap": {}, + "alarmNo": "1593542820", + "alarmDate": "1769965299559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132090173021137", + "createdBy": null, + "createdTime": "2026-02-02 01:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542821", + "alarmDate": "1769965308185", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987492", + "createdBy": null, + "createdTime": "2026-02-02 01:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:51", + "echoMap": {}, + "alarmNo": "1593542822", + "alarmDate": "1769965310356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987529", + "createdBy": null, + "createdTime": "2026-02-02 01:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:18", + "echoMap": {}, + "alarmNo": "1593542823", + "alarmDate": "1769965311239", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987634", + "createdBy": null, + "createdTime": "2026-02-02 01:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542824", + "alarmDate": "1769965314268", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060077", + "deviceName": "[402](10)南京东2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987643", + "createdBy": null, + "createdTime": "2026-02-02 01:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:54", + "echoMap": {}, + "alarmNo": "1593542825", + "alarmDate": "1769965314536", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987681", + "createdBy": null, + "createdTime": "2026-02-02 01:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542826", + "alarmDate": "1769965315934", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060071", + "deviceName": "[308](10)南京东5#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987716", + "createdBy": null, + "createdTime": "2026-02-02 01:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:08", + "echoMap": {}, + "alarmNo": "1593542827", + "alarmDate": "1769965317182", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987737", + "createdBy": null, + "createdTime": "2026-02-02 01:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:28", + "echoMap": {}, + "alarmNo": "1593542828", + "alarmDate": "1769965318110", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987847", + "createdBy": null, + "createdTime": "2026-02-02 01:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:03", + "echoMap": {}, + "alarmNo": "1593542829", + "alarmDate": "1769965322841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060128", + "deviceName": "[104](10)南京东上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987894", + "createdBy": null, + "createdTime": "2026-02-02 01:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:03", + "echoMap": {}, + "alarmNo": "1593542830", + "alarmDate": "1769965324461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987897", + "createdBy": null, + "createdTime": "2026-02-02 01:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:41", + "echoMap": {}, + "alarmNo": "1593542831", + "alarmDate": "1769965324621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987903", + "createdBy": null, + "createdTime": "2026-02-02 01:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:29", + "echoMap": {}, + "alarmNo": "1593542832", + "alarmDate": "1769965324889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987958", + "createdBy": null, + "createdTime": "2026-02-02 01:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:19", + "echoMap": {}, + "alarmNo": "1593542833", + "alarmDate": "1769965326555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060031", + "deviceName": "[350](10)南京东10-2换乘入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987965", + "createdBy": null, + "createdTime": "2026-02-02 01:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:07", + "echoMap": {}, + "alarmNo": "1593542834", + "alarmDate": "1769965326867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060119", + "deviceName": "[106](10)南京东上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988006", + "createdBy": null, + "createdTime": "2026-02-02 01:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:08", + "echoMap": {}, + "alarmNo": "1593542835", + "alarmDate": "1769965328119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060032", + "deviceName": "[351](10)南京东10-2换乘入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988008", + "createdBy": null, + "createdTime": "2026-02-02 01:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:08", + "echoMap": {}, + "alarmNo": "1593542836", + "alarmDate": "1769965328149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060042", + "deviceName": "[406](10)南京东3#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988032", + "createdBy": null, + "createdTime": "2026-02-02 01:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:09", + "echoMap": {}, + "alarmNo": "1593542837", + "alarmDate": "1769965328667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060091", + "deviceName": "[312](10)南京东6#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988110", + "createdBy": null, + "createdTime": "2026-02-02 01:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:49", + "echoMap": {}, + "alarmNo": "1593542838", + "alarmDate": "1769965330888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988149", + "createdBy": null, + "createdTime": "2026-02-02 01:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:14", + "echoMap": {}, + "alarmNo": "1593542839", + "alarmDate": "1769965331825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988397", + "createdBy": null, + "createdTime": "2026-02-02 01:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:25", + "echoMap": {}, + "alarmNo": "1593542840", + "alarmDate": "1769965338365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922226", + "createdBy": null, + "createdTime": "2026-02-02 01:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:29", + "echoMap": {}, + "alarmNo": "1593542841", + "alarmDate": "1769965883491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922289", + "createdBy": null, + "createdTime": "2026-02-02 01:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:03", + "echoMap": {}, + "alarmNo": "1593542842", + "alarmDate": "1769965885468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922405", + "createdBy": null, + "createdTime": "2026-02-02 01:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:30", + "echoMap": {}, + "alarmNo": "1593542843", + "alarmDate": "1769965888874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922786", + "createdBy": null, + "createdTime": "2026-02-02 01:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:47", + "echoMap": {}, + "alarmNo": "1593542844", + "alarmDate": "1769965900629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889497", + "createdBy": null, + "createdTime": "2026-02-02 01:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:08", + "echoMap": {}, + "alarmNo": "1593542845", + "alarmDate": "1769965915135", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889511", + "createdBy": null, + "createdTime": "2026-02-02 01:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:57", + "echoMap": {}, + "alarmNo": "1593542846", + "alarmDate": "1769965915469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889534", + "createdBy": null, + "createdTime": "2026-02-02 01:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:57", + "echoMap": {}, + "alarmNo": "1593542847", + "alarmDate": "1769965916218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889612", + "createdBy": null, + "createdTime": "2026-02-02 01:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:47", + "echoMap": {}, + "alarmNo": "1593542848", + "alarmDate": "1769965918613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889866", + "createdBy": null, + "createdTime": "2026-02-02 01:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:08", + "echoMap": {}, + "alarmNo": "1593542849", + "alarmDate": "1769965927048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132111647856652", + "createdBy": null, + "createdTime": "2026-02-02 01:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:20", + "echoMap": {}, + "alarmNo": "1593542850", + "alarmDate": "1769965939151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132115942824291", + "createdBy": null, + "createdTime": "2026-02-02 01:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:29", + "echoMap": {}, + "alarmNo": "1593542851", + "alarmDate": "1769966488266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132115942824571", + "createdBy": null, + "createdTime": "2026-02-02 01:21:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:37", + "echoMap": {}, + "alarmNo": "1593542852", + "alarmDate": "1769966496350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791237", + "createdBy": null, + "createdTime": "2026-02-02 01:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:50", + "echoMap": {}, + "alarmNo": "1593542853", + "alarmDate": "1769966508990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791274", + "createdBy": null, + "createdTime": "2026-02-02 01:21:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:51", + "echoMap": {}, + "alarmNo": "1593542854", + "alarmDate": "1769966510049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791513", + "createdBy": null, + "createdTime": "2026-02-02 01:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:59", + "echoMap": {}, + "alarmNo": "1593542855", + "alarmDate": "1769966517935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791549", + "createdBy": null, + "createdTime": "2026-02-02 01:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:05", + "echoMap": {}, + "alarmNo": "1593542856", + "alarmDate": "1769966518967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237792095", + "createdBy": null, + "createdTime": "2026-02-02 01:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:34", + "echoMap": {}, + "alarmNo": "1593542857", + "alarmDate": "1769966536914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132128827726308", + "createdBy": null, + "createdTime": "2026-02-02 01:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:41", + "echoMap": {}, + "alarmNo": "1593542858", + "alarmDate": "1769967086801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693138", + "createdBy": null, + "createdTime": "2026-02-02 01:31:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:44", + "echoMap": {}, + "alarmNo": "1593542859", + "alarmDate": "1769967103213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693232", + "createdBy": null, + "createdTime": "2026-02-02 01:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:33", + "echoMap": {}, + "alarmNo": "1593542860", + "alarmDate": "1769967106120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693734", + "createdBy": null, + "createdTime": "2026-02-02 01:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:03", + "echoMap": {}, + "alarmNo": "1593542861", + "alarmDate": "1769967121628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693781", + "createdBy": null, + "createdTime": "2026-02-02 01:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:52", + "echoMap": {}, + "alarmNo": "1593542862", + "alarmDate": "1769967123091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132141712628541", + "createdBy": null, + "createdTime": "2026-02-02 01:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:36", + "echoMap": {}, + "alarmNo": "1593542863", + "alarmDate": "1769967695073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132141712628552", + "createdBy": null, + "createdTime": "2026-02-02 01:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:36", + "echoMap": {}, + "alarmNo": "1593542864", + "alarmDate": "1769967695362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595105", + "createdBy": null, + "createdTime": "2026-02-02 01:41:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:51", + "echoMap": {}, + "alarmNo": "1593542865", + "alarmDate": "1769967705299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595207", + "createdBy": null, + "createdTime": "2026-02-02 01:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:50", + "echoMap": {}, + "alarmNo": "1593542866", + "alarmDate": "1769967708728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595571", + "createdBy": null, + "createdTime": "2026-02-02 01:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:02", + "echoMap": {}, + "alarmNo": "1593542867", + "alarmDate": "1769967720958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595647", + "createdBy": null, + "createdTime": "2026-02-02 01:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:09", + "echoMap": {}, + "alarmNo": "1593542868", + "alarmDate": "1769967723496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597529868", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:22", + "echoMap": {}, + "alarmNo": "1593542869", + "alarmDate": "1769968280581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597529869", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:18", + "echoMap": {}, + "alarmNo": "1593542870", + "alarmDate": "1769968280623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597530261", + "createdBy": null, + "createdTime": "2026-02-02 01:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:09", + "echoMap": {}, + "alarmNo": "1593542871", + "alarmDate": "1769968293677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597530486", + "createdBy": null, + "createdTime": "2026-02-02 01:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:42", + "echoMap": {}, + "alarmNo": "1593542872", + "alarmDate": "1769968300985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597530513", + "createdBy": null, + "createdTime": "2026-02-02 01:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:43", + "echoMap": {}, + "alarmNo": "1593542873", + "alarmDate": "1769968301811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132158892496914", + "createdBy": null, + "createdTime": "2026-02-02 01:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:47", + "echoMap": {}, + "alarmNo": "1593542874", + "alarmDate": "1769968305924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432058", + "createdBy": null, + "createdTime": "2026-02-02 02:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:39", + "echoMap": {}, + "alarmNo": "1593542875", + "alarmDate": "1769968892920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432133", + "createdBy": null, + "createdTime": "2026-02-02 02:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:36", + "echoMap": {}, + "alarmNo": "1593542876", + "alarmDate": "1769968895137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432145", + "createdBy": null, + "createdTime": "2026-02-02 02:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:37", + "echoMap": {}, + "alarmNo": "1593542877", + "alarmDate": "1769968895513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432386", + "createdBy": null, + "createdTime": "2026-02-02 02:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:44", + "echoMap": {}, + "alarmNo": "1593542878", + "alarmDate": "1769968903509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777398879", + "createdBy": null, + "createdTime": "2026-02-02 02:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:57", + "echoMap": {}, + "alarmNo": "1593542879", + "alarmDate": "1769968910949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777399411", + "createdBy": null, + "createdTime": "2026-02-02 02:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:10", + "echoMap": {}, + "alarmNo": "1593542880", + "alarmDate": "1769968928986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777399416", + "createdBy": null, + "createdTime": "2026-02-02 02:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:56", + "echoMap": {}, + "alarmNo": "1593542881", + "alarmDate": "1769968929043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777399464", + "createdBy": null, + "createdTime": "2026-02-02 02:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:12", + "echoMap": {}, + "alarmNo": "1593542882", + "alarmDate": "1769968930637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132180367333624", + "createdBy": null, + "createdTime": "2026-02-02 02:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:31", + "echoMap": {}, + "alarmNo": "1593542883", + "alarmDate": "1769969489606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132180367334028", + "createdBy": null, + "createdTime": "2026-02-02 02:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:43", + "echoMap": {}, + "alarmNo": "1593542884", + "alarmDate": "1769969501840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132184662301115", + "createdBy": null, + "createdTime": "2026-02-02 02:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:14", + "echoMap": {}, + "alarmNo": "1593542885", + "alarmDate": "1769969528325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132184662301458", + "createdBy": null, + "createdTime": "2026-02-02 02:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:33", + "echoMap": {}, + "alarmNo": "1593542886", + "alarmDate": "1769969540552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132188957267989", + "createdBy": null, + "createdTime": "2026-02-02 02:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:01", + "echoMap": {}, + "alarmNo": "1593542887", + "alarmDate": "1769970080350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132188957267997", + "createdBy": null, + "createdTime": "2026-02-02 02:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:25", + "echoMap": {}, + "alarmNo": "1593542888", + "alarmDate": "1769970080540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132188957268006", + "createdBy": null, + "createdTime": "2026-02-02 02:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:47", + "echoMap": {}, + "alarmNo": "1593542889", + "alarmDate": "1769970080920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252235430", + "createdBy": null, + "createdTime": "2026-02-02 02:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:31", + "echoMap": {}, + "alarmNo": "1593542890", + "alarmDate": "1769970089609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252235680", + "createdBy": null, + "createdTime": "2026-02-02 02:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:43", + "echoMap": {}, + "alarmNo": "1593542891", + "alarmDate": "1769970097448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252236168", + "createdBy": null, + "createdTime": "2026-02-02 02:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:55", + "echoMap": {}, + "alarmNo": "1593542892", + "alarmDate": "1769970113832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252236221", + "createdBy": null, + "createdTime": "2026-02-02 02:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:01", + "echoMap": {}, + "alarmNo": "1593542893", + "alarmDate": "1769970115600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132197547202936", + "createdBy": null, + "createdTime": "2026-02-02 02:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:11", + "echoMap": {}, + "alarmNo": "1593542894", + "alarmDate": "1769970130166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132197547203135", + "createdBy": null, + "createdTime": "2026-02-02 02:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:18", + "echoMap": {}, + "alarmNo": "1593542895", + "alarmDate": "1769970136717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137137334", + "createdBy": null, + "createdTime": "2026-02-02 02:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:30", + "echoMap": {}, + "alarmNo": "1593542896", + "alarmDate": "1769970688966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137137483", + "createdBy": null, + "createdTime": "2026-02-02 02:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:34", + "echoMap": {}, + "alarmNo": "1593542897", + "alarmDate": "1769970693291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137137958", + "createdBy": null, + "createdTime": "2026-02-02 02:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:50", + "echoMap": {}, + "alarmNo": "1593542898", + "alarmDate": "1769970708829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137138043", + "createdBy": null, + "createdTime": "2026-02-02 02:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:53", + "echoMap": {}, + "alarmNo": "1593542899", + "alarmDate": "1769970711541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104640", + "createdBy": null, + "createdTime": "2026-02-02 02:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:03", + "echoMap": {}, + "alarmNo": "1593542900", + "alarmDate": "1769970722245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104938", + "createdBy": null, + "createdTime": "2026-02-02 02:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:27", + "echoMap": {}, + "alarmNo": "1593542901", + "alarmDate": "1769970732828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104970", + "createdBy": null, + "createdTime": "2026-02-02 02:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:20", + "echoMap": {}, + "alarmNo": "1593542902", + "alarmDate": "1769970733861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104990", + "createdBy": null, + "createdTime": "2026-02-02 02:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:15", + "echoMap": {}, + "alarmNo": "1593542903", + "alarmDate": "1769970734353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132219022039122", + "createdBy": null, + "createdTime": "2026-02-02 02:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:31", + "echoMap": {}, + "alarmNo": "1593542904", + "alarmDate": "1769971284963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132219022039680", + "createdBy": null, + "createdTime": "2026-02-02 02:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:48", + "echoMap": {}, + "alarmNo": "1593542905", + "alarmDate": "1769971303034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132219022040063", + "createdBy": null, + "createdTime": "2026-02-02 02:41:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:57", + "echoMap": {}, + "alarmNo": "1593542906", + "alarmDate": "1769971315662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132223317006690", + "createdBy": null, + "createdTime": "2026-02-02 02:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:08", + "echoMap": {}, + "alarmNo": "1593542907", + "alarmDate": "1769971327366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132223317006814", + "createdBy": null, + "createdTime": "2026-02-02 02:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:13", + "echoMap": {}, + "alarmNo": "1593542908", + "alarmDate": "1769971331498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132231906940935", + "createdBy": null, + "createdTime": "2026-02-02 02:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:24", + "echoMap": {}, + "alarmNo": "1593542909", + "alarmDate": "1769971882669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132231906941930", + "createdBy": null, + "createdTime": "2026-02-02 02:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:56", + "echoMap": {}, + "alarmNo": "1593542910", + "alarmDate": "1769971915006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908256", + "createdBy": null, + "createdTime": "2026-02-02 02:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:58", + "echoMap": {}, + "alarmNo": "1593542911", + "alarmDate": "1769971916759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908363", + "createdBy": null, + "createdTime": "2026-02-02 02:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:06", + "echoMap": {}, + "alarmNo": "1593542912", + "alarmDate": "1769971920256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908667", + "createdBy": null, + "createdTime": "2026-02-02 02:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:12", + "echoMap": {}, + "alarmNo": "1593542913", + "alarmDate": "1769971930615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908895", + "createdBy": null, + "createdTime": "2026-02-02 02:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:36", + "echoMap": {}, + "alarmNo": "1593542914", + "alarmDate": "1769971938372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791842981", + "createdBy": null, + "createdTime": "2026-02-02 03:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:31", + "echoMap": {}, + "alarmNo": "1593542915", + "alarmDate": "1769972489763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843104", + "createdBy": null, + "createdTime": "2026-02-02 03:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:34", + "echoMap": {}, + "alarmNo": "1593542916", + "alarmDate": "1769972493278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843405", + "createdBy": null, + "createdTime": "2026-02-02 03:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:44", + "echoMap": {}, + "alarmNo": "1593542917", + "alarmDate": "1769972503126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843539", + "createdBy": null, + "createdTime": "2026-02-02 03:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:36", + "echoMap": {}, + "alarmNo": "1593542918", + "alarmDate": "1769972507571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843740", + "createdBy": null, + "createdTime": "2026-02-02 03:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:55", + "echoMap": {}, + "alarmNo": "1593542919", + "alarmDate": "1769972514236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132249086810518", + "createdBy": null, + "createdTime": "2026-02-02 03:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:11", + "echoMap": {}, + "alarmNo": "1593542920", + "alarmDate": "1769972530369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132257676745256", + "createdBy": null, + "createdTime": "2026-02-02 03:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:42", + "echoMap": {}, + "alarmNo": "1593542921", + "alarmDate": "1769973100511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132257676745471", + "createdBy": null, + "createdTime": "2026-02-02 03:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:54", + "echoMap": {}, + "alarmNo": "1593542922", + "alarmDate": "1769973107800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132261971712030", + "createdBy": null, + "createdTime": "2026-02-02 03:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:58", + "echoMap": {}, + "alarmNo": "1593542923", + "alarmDate": "1769973117201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132261971712239", + "createdBy": null, + "createdTime": "2026-02-02 03:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:05", + "echoMap": {}, + "alarmNo": "1593542924", + "alarmDate": "1769973124340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132261971712287", + "createdBy": null, + "createdTime": "2026-02-02 03:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:12", + "echoMap": {}, + "alarmNo": "1593542925", + "alarmDate": "1769973125962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132266266679347", + "createdBy": null, + "createdTime": "2026-02-02 03:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:23", + "echoMap": {}, + "alarmNo": "1593542926", + "alarmDate": "1769973681061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132270561646942", + "createdBy": null, + "createdTime": "2026-02-02 03:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:11", + "echoMap": {}, + "alarmNo": "1593542927", + "alarmDate": "1769973695093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132270561647444", + "createdBy": null, + "createdTime": "2026-02-02 03:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:53", + "echoMap": {}, + "alarmNo": "1593542928", + "alarmDate": "1769973711646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614066", + "createdBy": null, + "createdTime": "2026-02-02 03:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:04", + "echoMap": {}, + "alarmNo": "1593542929", + "alarmDate": "1769973723290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614073", + "createdBy": null, + "createdTime": "2026-02-02 03:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:04", + "echoMap": {}, + "alarmNo": "1593542930", + "alarmDate": "1769973723432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614188", + "createdBy": null, + "createdTime": "2026-02-02 03:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:08", + "echoMap": {}, + "alarmNo": "1593542931", + "alarmDate": "1769973727040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614484", + "createdBy": null, + "createdTime": "2026-02-02 03:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:18", + "echoMap": {}, + "alarmNo": "1593542932", + "alarmDate": "1769973736856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132279151581218", + "createdBy": null, + "createdTime": "2026-02-02 03:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:22", + "echoMap": {}, + "alarmNo": "1593542933", + "alarmDate": "1769974280352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548496", + "createdBy": null, + "createdTime": "2026-02-02 03:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1593542934", + "alarmDate": "1769974283958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548499", + "createdBy": null, + "createdTime": "2026-02-02 03:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1593542935", + "alarmDate": "1769974284083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548577", + "createdBy": null, + "createdTime": "2026-02-02 03:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:28", + "echoMap": {}, + "alarmNo": "1593542936", + "alarmDate": "1769974286687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548832", + "createdBy": null, + "createdTime": "2026-02-02 03:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:40", + "echoMap": {}, + "alarmNo": "1593542937", + "alarmDate": "1769974294411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548854", + "createdBy": null, + "createdTime": "2026-02-02 03:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:36", + "echoMap": {}, + "alarmNo": "1593542938", + "alarmDate": "1769974295003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446549377", + "createdBy": null, + "createdTime": "2026-02-02 03:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:58", + "echoMap": {}, + "alarmNo": "1593542939", + "alarmDate": "1769974312391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741515864", + "createdBy": null, + "createdTime": "2026-02-02 03:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:07", + "echoMap": {}, + "alarmNo": "1593542940", + "alarmDate": "1769974319514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741516193", + "createdBy": null, + "createdTime": "2026-02-02 03:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:59", + "echoMap": {}, + "alarmNo": "1593542941", + "alarmDate": "1769974330529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741516401", + "createdBy": null, + "createdTime": "2026-02-02 03:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:18", + "echoMap": {}, + "alarmNo": "1593542942", + "alarmDate": "1769974337341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741516461", + "createdBy": null, + "createdTime": "2026-02-02 03:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:03", + "echoMap": {}, + "alarmNo": "1593542943", + "alarmDate": "1769974339544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132296331450512", + "createdBy": null, + "createdTime": "2026-02-02 03:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:28", + "echoMap": {}, + "alarmNo": "1593542944", + "alarmDate": "1769974887412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132300626417673", + "createdBy": null, + "createdTime": "2026-02-02 03:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:56", + "echoMap": {}, + "alarmNo": "1593542945", + "alarmDate": "1769974915304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132300626418118", + "createdBy": null, + "createdTime": "2026-02-02 03:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:16", + "echoMap": {}, + "alarmNo": "1593542946", + "alarmDate": "1769974929799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132300626418206", + "createdBy": null, + "createdTime": "2026-02-02 03:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:13", + "echoMap": {}, + "alarmNo": "1593542947", + "alarmDate": "1769974932485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132304921385012", + "createdBy": null, + "createdTime": "2026-02-02 03:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:22", + "echoMap": {}, + "alarmNo": "1593542948", + "alarmDate": "1769975480613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132304921385020", + "createdBy": null, + "createdTime": "2026-02-02 03:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:28", + "echoMap": {}, + "alarmNo": "1593542949", + "alarmDate": "1769975480923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216352773", + "createdBy": null, + "createdTime": "2026-02-02 03:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:46", + "echoMap": {}, + "alarmNo": "1593542950", + "alarmDate": "1769975499930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216352877", + "createdBy": null, + "createdTime": "2026-02-02 03:51:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:44", + "echoMap": {}, + "alarmNo": "1593542951", + "alarmDate": "1769975503277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216352879", + "createdBy": null, + "createdTime": "2026-02-02 03:51:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:44", + "echoMap": {}, + "alarmNo": "1593542952", + "alarmDate": "1769975503383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216353017", + "createdBy": null, + "createdTime": "2026-02-02 03:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:49", + "echoMap": {}, + "alarmNo": "1593542953", + "alarmDate": "1769975507760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319589", + "createdBy": null, + "createdTime": "2026-02-02 03:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:03", + "echoMap": {}, + "alarmNo": "1593542954", + "alarmDate": "1769975517981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319610", + "createdBy": null, + "createdTime": "2026-02-02 03:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:00", + "echoMap": {}, + "alarmNo": "1593542955", + "alarmDate": "1769975518585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319637", + "createdBy": null, + "createdTime": "2026-02-02 03:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:00", + "echoMap": {}, + "alarmNo": "1593542956", + "alarmDate": "1769975519319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319873", + "createdBy": null, + "createdTime": "2026-02-02 03:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:08", + "echoMap": {}, + "alarmNo": "1593542957", + "alarmDate": "1769975526742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319957", + "createdBy": null, + "createdTime": "2026-02-02 03:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:10", + "echoMap": {}, + "alarmNo": "1593542958", + "alarmDate": "1769975529445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132317806286956", + "createdBy": null, + "createdTime": "2026-02-02 04:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:22", + "echoMap": {}, + "alarmNo": "1593542959", + "alarmDate": "1769976080578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132322101254900", + "createdBy": null, + "createdTime": "2026-02-02 04:01:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:58", + "echoMap": {}, + "alarmNo": "1593542960", + "alarmDate": "1769976106073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132326396221704", + "createdBy": null, + "createdTime": "2026-02-02 04:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:04", + "echoMap": {}, + "alarmNo": "1593542961", + "alarmDate": "1769976123073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132326396222063", + "createdBy": null, + "createdTime": "2026-02-02 04:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:34", + "echoMap": {}, + "alarmNo": "1593542962", + "alarmDate": "1769976135334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132334986156790", + "createdBy": null, + "createdTime": "2026-02-02 04:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:51", + "echoMap": {}, + "alarmNo": "1593542963", + "alarmDate": "1769976704919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132334986156855", + "createdBy": null, + "createdTime": "2026-02-02 04:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:47", + "echoMap": {}, + "alarmNo": "1593542964", + "alarmDate": "1769976706894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132334986157049", + "createdBy": null, + "createdTime": "2026-02-02 04:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:00", + "echoMap": {}, + "alarmNo": "1593542965", + "alarmDate": "1769976713063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281123365", + "createdBy": null, + "createdTime": "2026-02-02 04:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:55", + "echoMap": {}, + "alarmNo": "1593542966", + "alarmDate": "1769976714646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281123611", + "createdBy": null, + "createdTime": "2026-02-02 04:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:09", + "echoMap": {}, + "alarmNo": "1593542967", + "alarmDate": "1769976722971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281124026", + "createdBy": null, + "createdTime": "2026-02-02 04:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:18", + "echoMap": {}, + "alarmNo": "1593542968", + "alarmDate": "1769976736663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281124082", + "createdBy": null, + "createdTime": "2026-02-02 04:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:20", + "echoMap": {}, + "alarmNo": "1593542969", + "alarmDate": "1769976738328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058045", + "createdBy": null, + "createdTime": "2026-02-02 04:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:25", + "echoMap": {}, + "alarmNo": "1593542970", + "alarmDate": "1769977284250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058189", + "createdBy": null, + "createdTime": "2026-02-02 04:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:30", + "echoMap": {}, + "alarmNo": "1593542971", + "alarmDate": "1769977288614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058202", + "createdBy": null, + "createdTime": "2026-02-02 04:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:30", + "echoMap": {}, + "alarmNo": "1593542972", + "alarmDate": "1769977288978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058538", + "createdBy": null, + "createdTime": "2026-02-02 04:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:40", + "echoMap": {}, + "alarmNo": "1593542973", + "alarmDate": "1769977298496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058840", + "createdBy": null, + "createdTime": "2026-02-02 04:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:49", + "echoMap": {}, + "alarmNo": "1593542974", + "alarmDate": "1769977307766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058929", + "createdBy": null, + "createdTime": "2026-02-02 04:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:52", + "echoMap": {}, + "alarmNo": "1593542975", + "alarmDate": "1769977310514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132352166025436", + "createdBy": null, + "createdTime": "2026-02-02 04:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:59", + "echoMap": {}, + "alarmNo": "1593542976", + "alarmDate": "1769977317642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132352166025524", + "createdBy": null, + "createdTime": "2026-02-02 04:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:00", + "echoMap": {}, + "alarmNo": "1593542977", + "alarmDate": "1769977320425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132352166025576", + "createdBy": null, + "createdTime": "2026-02-02 04:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:03", + "echoMap": {}, + "alarmNo": "1593542978", + "alarmDate": "1769977322067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132360755960266", + "createdBy": null, + "createdTime": "2026-02-02 04:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:38", + "echoMap": {}, + "alarmNo": "1593542979", + "alarmDate": "1769977892416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132360755960814", + "createdBy": null, + "createdTime": "2026-02-02 04:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:56", + "echoMap": {}, + "alarmNo": "1593542980", + "alarmDate": "1769977910195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132365050927181", + "createdBy": null, + "createdTime": "2026-02-02 04:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:54", + "echoMap": {}, + "alarmNo": "1593542981", + "alarmDate": "1769977913279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132373640862280", + "createdBy": null, + "createdTime": "2026-02-02 04:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:37", + "echoMap": {}, + "alarmNo": "1593542982", + "alarmDate": "1769978496546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829172", + "createdBy": null, + "createdTime": "2026-02-02 04:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:58", + "echoMap": {}, + "alarmNo": "1593542983", + "alarmDate": "1769978516924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829311", + "createdBy": null, + "createdTime": "2026-02-02 04:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:03", + "echoMap": {}, + "alarmNo": "1593542984", + "alarmDate": "1769978521701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829342", + "createdBy": null, + "createdTime": "2026-02-02 04:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:04", + "echoMap": {}, + "alarmNo": "1593542985", + "alarmDate": "1769978522593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829492", + "createdBy": null, + "createdTime": "2026-02-02 04:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:14", + "echoMap": {}, + "alarmNo": "1593542986", + "alarmDate": "1769978527652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829638", + "createdBy": null, + "createdTime": "2026-02-02 04:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:13", + "echoMap": {}, + "alarmNo": "1593542987", + "alarmDate": "1769978532330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829848", + "createdBy": null, + "createdTime": "2026-02-02 04:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:20", + "echoMap": {}, + "alarmNo": "1593542988", + "alarmDate": "1769978539640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525763670", + "createdBy": null, + "createdTime": "2026-02-02 04:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:21", + "echoMap": {}, + "alarmNo": "1593542989", + "alarmDate": "1769979080076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525763699", + "createdBy": null, + "createdTime": "2026-02-02 04:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:26", + "echoMap": {}, + "alarmNo": "1593542990", + "alarmDate": "1769979081607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525763879", + "createdBy": null, + "createdTime": "2026-02-02 04:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:29", + "echoMap": {}, + "alarmNo": "1593542991", + "alarmDate": "1769979087625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764172", + "createdBy": null, + "createdTime": "2026-02-02 04:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:43", + "echoMap": {}, + "alarmNo": "1593542992", + "alarmDate": "1769979096885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764254", + "createdBy": null, + "createdTime": "2026-02-02 04:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:41", + "echoMap": {}, + "alarmNo": "1593542993", + "alarmDate": "1769979099374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764348", + "createdBy": null, + "createdTime": "2026-02-02 04:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:35", + "echoMap": {}, + "alarmNo": "1593542994", + "alarmDate": "1769979102460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764546", + "createdBy": null, + "createdTime": "2026-02-02 04:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:50", + "echoMap": {}, + "alarmNo": "1593542995", + "alarmDate": "1769979108984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132390820731027", + "createdBy": null, + "createdTime": "2026-02-02 04:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:57", + "echoMap": {}, + "alarmNo": "1593542996", + "alarmDate": "1769979115666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132399410666046", + "createdBy": null, + "createdTime": "2026-02-02 05:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:37", + "echoMap": {}, + "alarmNo": "1593542997", + "alarmDate": "1769979696230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705632888", + "createdBy": null, + "createdTime": "2026-02-02 05:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:01", + "echoMap": {}, + "alarmNo": "1593542998", + "alarmDate": "1769979715362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633292", + "createdBy": null, + "createdTime": "2026-02-02 05:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:11", + "echoMap": {}, + "alarmNo": "1593542999", + "alarmDate": "1769979729438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633404", + "createdBy": null, + "createdTime": "2026-02-02 05:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:31", + "echoMap": {}, + "alarmNo": "1593543000", + "alarmDate": "1769979733174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633460", + "createdBy": null, + "createdTime": "2026-02-02 05:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:16", + "echoMap": {}, + "alarmNo": "1593543001", + "alarmDate": "1769979734982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633553", + "createdBy": null, + "createdTime": "2026-02-02 05:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:49", + "echoMap": {}, + "alarmNo": "1593543002", + "alarmDate": "1769979737975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295567475", + "createdBy": null, + "createdTime": "2026-02-02 05:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:28", + "echoMap": {}, + "alarmNo": "1593543003", + "alarmDate": "1769980286536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295567861", + "createdBy": null, + "createdTime": "2026-02-02 05:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:15", + "echoMap": {}, + "alarmNo": "1593543004", + "alarmDate": "1769980298555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568000", + "createdBy": null, + "createdTime": "2026-02-02 05:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:19", + "echoMap": {}, + "alarmNo": "1593543005", + "alarmDate": "1769980302827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568002", + "createdBy": null, + "createdTime": "2026-02-02 05:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:44", + "echoMap": {}, + "alarmNo": "1593543006", + "alarmDate": "1769980302828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568155", + "createdBy": null, + "createdTime": "2026-02-02 05:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:48", + "echoMap": {}, + "alarmNo": "1593543007", + "alarmDate": "1769980307658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568326", + "createdBy": null, + "createdTime": "2026-02-02 05:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:54", + "echoMap": {}, + "alarmNo": "1593543008", + "alarmDate": "1769980313289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132416590534856", + "createdBy": null, + "createdTime": "2026-02-02 05:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:02", + "echoMap": {}, + "alarmNo": "1593543009", + "alarmDate": "1769980321543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132416590534857", + "createdBy": null, + "createdTime": "2026-02-02 05:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:14", + "echoMap": {}, + "alarmNo": "1593543010", + "alarmDate": "1769980321544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132416590535157", + "createdBy": null, + "createdTime": "2026-02-02 05:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:13", + "echoMap": {}, + "alarmNo": "1593543011", + "alarmDate": "1769980331173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132420885502072", + "createdBy": null, + "createdTime": "2026-02-02 05:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:29", + "echoMap": {}, + "alarmNo": "1593543012", + "alarmDate": "1769980880301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469265", + "createdBy": null, + "createdTime": "2026-02-02 05:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:49", + "echoMap": {}, + "alarmNo": "1593543013", + "alarmDate": "1769980881436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469682", + "createdBy": null, + "createdTime": "2026-02-02 05:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:34", + "echoMap": {}, + "alarmNo": "1593543016", + "alarmDate": "1769980893458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469845", + "createdBy": null, + "createdTime": "2026-02-02 05:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:39", + "echoMap": {}, + "alarmNo": "1593543017", + "alarmDate": "1769980898256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469953", + "createdBy": null, + "createdTime": "2026-02-02 05:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:47", + "echoMap": {}, + "alarmNo": "1593543018", + "alarmDate": "1769980901533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132429475436809", + "createdBy": null, + "createdTime": "2026-02-02 05:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:05", + "echoMap": {}, + "alarmNo": "1593543019", + "alarmDate": "1769980919505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132429475437393", + "createdBy": null, + "createdTime": "2026-02-02 05:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:05", + "echoMap": {}, + "alarmNo": "1593543020", + "alarmDate": "1769980937478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132442360339084", + "createdBy": null, + "createdTime": "2026-02-02 05:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:08", + "echoMap": {}, + "alarmNo": "1593543021", + "alarmDate": "1769981526665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132446655305731", + "createdBy": null, + "createdTime": "2026-02-02 05:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:16", + "echoMap": {}, + "alarmNo": "1593543022", + "alarmDate": "1769981534828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132446655305831", + "createdBy": null, + "createdTime": "2026-02-02 05:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:35", + "echoMap": {}, + "alarmNo": "1593543023", + "alarmDate": "1769981537725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273066", + "createdBy": null, + "createdTime": "2026-02-02 05:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:31", + "echoMap": {}, + "alarmNo": "1593543024", + "alarmDate": "1769981539652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273391", + "createdBy": null, + "createdTime": "2026-02-02 05:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:24", + "echoMap": {}, + "alarmNo": "1593543025", + "alarmDate": "1769982083032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273472", + "createdBy": null, + "createdTime": "2026-02-02 05:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:26", + "echoMap": {}, + "alarmNo": "1593543026", + "alarmDate": "1769982085362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273804", + "createdBy": null, + "createdTime": "2026-02-02 05:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:36", + "echoMap": {}, + "alarmNo": "1593543027", + "alarmDate": "1769982094763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273974", + "createdBy": null, + "createdTime": "2026-02-02 05:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:04", + "echoMap": {}, + "alarmNo": "1593543028", + "alarmDate": "1769982100014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950274029", + "createdBy": null, + "createdTime": "2026-02-02 05:41:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:43", + "echoMap": {}, + "alarmNo": "1593543029", + "alarmDate": "1769982101749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132455245240477", + "createdBy": null, + "createdTime": "2026-02-02 05:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:53", + "echoMap": {}, + "alarmNo": "1593543030", + "alarmDate": "1769982107052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132455245240695", + "createdBy": null, + "createdTime": "2026-02-02 05:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:55", + "echoMap": {}, + "alarmNo": "1593543031", + "alarmDate": "1769982113596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132455245241066", + "createdBy": null, + "createdTime": "2026-02-02 05:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:10", + "echoMap": {}, + "alarmNo": "1593543032", + "alarmDate": "1769982125070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835174927", + "createdBy": null, + "createdTime": "2026-02-02 05:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:13", + "echoMap": {}, + "alarmNo": "1593543033", + "alarmDate": "1769982132176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175040", + "createdBy": null, + "createdTime": "2026-02-02 05:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:17", + "echoMap": {}, + "alarmNo": "1593543034", + "alarmDate": "1769982135601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175057", + "createdBy": null, + "createdTime": "2026-02-02 05:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1593543035", + "alarmDate": "1769982136042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175511", + "createdBy": null, + "createdTime": "2026-02-02 05:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:25", + "echoMap": {}, + "alarmNo": "1593543036", + "alarmDate": "1769982684395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175621", + "createdBy": null, + "createdTime": "2026-02-02 05:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:29", + "echoMap": {}, + "alarmNo": "1593543037", + "alarmDate": "1769982687784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132472425109565", + "createdBy": null, + "createdTime": "2026-02-02 05:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:24", + "echoMap": {}, + "alarmNo": "1593543038", + "alarmDate": "1769982728027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132476720077333", + "createdBy": null, + "createdTime": "2026-02-02 06:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:21", + "echoMap": {}, + "alarmNo": "1593543039", + "alarmDate": "1769983280613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132476720077362", + "createdBy": null, + "createdTime": "2026-02-02 06:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:00", + "echoMap": {}, + "alarmNo": "1593543040", + "alarmDate": "1769983281667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132476720077796", + "createdBy": null, + "createdTime": "2026-02-02 06:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:40", + "echoMap": {}, + "alarmNo": "1593543041", + "alarmDate": "1769983293627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044132", + "createdBy": null, + "createdTime": "2026-02-02 06:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:36", + "echoMap": {}, + "alarmNo": "1593543042", + "alarmDate": "1769983295404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044209", + "createdBy": null, + "createdTime": "2026-02-02 06:01:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:56", + "echoMap": {}, + "alarmNo": "1593543043", + "alarmDate": "1769983297532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044695", + "createdBy": null, + "createdTime": "2026-02-02 06:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:58", + "echoMap": {}, + "alarmNo": "1593543044", + "alarmDate": "1769983311614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044877", + "createdBy": null, + "createdTime": "2026-02-02 06:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:58", + "echoMap": {}, + "alarmNo": "1593543045", + "alarmDate": "1769983316663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015045067", + "createdBy": null, + "createdTime": "2026-02-02 06:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:03", + "echoMap": {}, + "alarmNo": "1593543046", + "alarmDate": "1769983322065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978695", + "createdBy": null, + "createdTime": "2026-02-02 06:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:06", + "echoMap": {}, + "alarmNo": "1593543047", + "alarmDate": "1769983324535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978765", + "createdBy": null, + "createdTime": "2026-02-02 06:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:08", + "echoMap": {}, + "alarmNo": "1593543048", + "alarmDate": "1769983326572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978800", + "createdBy": null, + "createdTime": "2026-02-02 06:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:08", + "echoMap": {}, + "alarmNo": "1593543049", + "alarmDate": "1769983327420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978804", + "createdBy": null, + "createdTime": "2026-02-02 06:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:56", + "echoMap": {}, + "alarmNo": "1593543050", + "alarmDate": "1769983327507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978805", + "createdBy": null, + "createdTime": "2026-02-02 06:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:45", + "echoMap": {}, + "alarmNo": "1593543051", + "alarmDate": "1769983327508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946059", + "createdBy": null, + "createdTime": "2026-02-02 06:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:16", + "echoMap": {}, + "alarmNo": "1593543052", + "alarmDate": "1769983329585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946113", + "createdBy": null, + "createdTime": "2026-02-02 06:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:53", + "echoMap": {}, + "alarmNo": "1593543053", + "alarmDate": "1769983330963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946129", + "createdBy": null, + "createdTime": "2026-02-02 06:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:12", + "echoMap": {}, + "alarmNo": "1593543054", + "alarmDate": "1769983331356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060149", + "deviceName": "[131](10)南京东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946330", + "createdBy": null, + "createdTime": "2026-02-02 06:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:17", + "echoMap": {}, + "alarmNo": "1593543055", + "alarmDate": "1769983336558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946693", + "createdBy": null, + "createdTime": "2026-02-02 06:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:23", + "echoMap": {}, + "alarmNo": "1593543056", + "alarmDate": "1769983881658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946762", + "createdBy": null, + "createdTime": "2026-02-02 06:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:24", + "echoMap": {}, + "alarmNo": "1593543057", + "alarmDate": "1769983883535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060149", + "deviceName": "[131](10)南京东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946952", + "createdBy": null, + "createdTime": "2026-02-02 06:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:30", + "echoMap": {}, + "alarmNo": "1593543058", + "alarmDate": "1769983888594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132498194913571", + "createdBy": null, + "createdTime": "2026-02-02 06:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:38", + "echoMap": {}, + "alarmNo": "1593543059", + "alarmDate": "1769983897396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079815188", + "createdBy": null, + "createdTime": "2026-02-02 06:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:03", + "echoMap": {}, + "alarmNo": "1593543060", + "alarmDate": "1769983922160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079815556", + "createdBy": null, + "createdTime": "2026-02-02 06:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:13", + "echoMap": {}, + "alarmNo": "1593543061", + "alarmDate": "1769983932467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079815759", + "createdBy": null, + "createdTime": "2026-02-02 06:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:08", + "echoMap": {}, + "alarmNo": "1593543062", + "alarmDate": "1769983938289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079816053", + "createdBy": null, + "createdTime": "2026-02-02 06:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:46", + "echoMap": {}, + "alarmNo": "1593543063", + "alarmDate": "1769984481050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132515374782486", + "createdBy": null, + "createdTime": "2026-02-02 06:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:27", + "echoMap": {}, + "alarmNo": "1593543064", + "alarmDate": "1769984485689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132515374782853", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:40", + "echoMap": {}, + "alarmNo": "1593543065", + "alarmDate": "1769984495436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132515374783014", + "createdBy": null, + "createdTime": "2026-02-02 06:21:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:15", + "echoMap": {}, + "alarmNo": "1593543066", + "alarmDate": "1769984499804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259684412", + "createdBy": null, + "createdTime": "2026-02-02 06:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:04", + "echoMap": {}, + "alarmNo": "1593543067", + "alarmDate": "1769984518179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259684771", + "createdBy": null, + "createdTime": "2026-02-02 06:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:09", + "echoMap": {}, + "alarmNo": "1593543068", + "alarmDate": "1769984528029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259685058", + "createdBy": null, + "createdTime": "2026-02-02 06:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:33", + "echoMap": {}, + "alarmNo": "1593543069", + "alarmDate": "1769984536160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259685173", + "createdBy": null, + "createdTime": "2026-02-02 06:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:53", + "echoMap": {}, + "alarmNo": "1593543070", + "alarmDate": "1769984539763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132532554651670", + "createdBy": null, + "createdTime": "2026-02-02 06:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:39", + "echoMap": {}, + "alarmNo": "1593543071", + "alarmDate": "1769985079922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132532554652213", + "createdBy": null, + "createdTime": "2026-02-02 06:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:36", + "echoMap": {}, + "alarmNo": "1593543072", + "alarmDate": "1769985094668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132532554652573", + "createdBy": null, + "createdTime": "2026-02-02 06:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:46", + "echoMap": {}, + "alarmNo": "1593543073", + "alarmDate": "1769985104542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132536849618946", + "createdBy": null, + "createdTime": "2026-02-02 06:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:51", + "echoMap": {}, + "alarmNo": "1593543074", + "alarmDate": "1769985105389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586306", + "createdBy": null, + "createdTime": "2026-02-02 06:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:51", + "echoMap": {}, + "alarmNo": "1593543075", + "alarmDate": "1769985110236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586353", + "createdBy": null, + "createdTime": "2026-02-02 06:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:52", + "echoMap": {}, + "alarmNo": "1593543076", + "alarmDate": "1769985111347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586735", + "createdBy": null, + "createdTime": "2026-02-02 06:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:03", + "echoMap": {}, + "alarmNo": "1593543077", + "alarmDate": "1769985121965", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586860", + "createdBy": null, + "createdTime": "2026-02-02 06:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:06", + "echoMap": {}, + "alarmNo": "1593543078", + "alarmDate": "1769985125239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586956", + "createdBy": null, + "createdTime": "2026-02-02 06:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:15", + "echoMap": {}, + "alarmNo": "1593543079", + "alarmDate": "1769985127886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586982", + "createdBy": null, + "createdTime": "2026-02-02 06:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:10", + "echoMap": {}, + "alarmNo": "1593543080", + "alarmDate": "1769985128519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144587023", + "createdBy": null, + "createdTime": "2026-02-02 06:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:34", + "echoMap": {}, + "alarmNo": "1593543081", + "alarmDate": "1769985129514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144587082", + "createdBy": null, + "createdTime": "2026-02-02 06:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:12", + "echoMap": {}, + "alarmNo": "1593543082", + "alarmDate": "1769985131006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132545439553932", + "createdBy": null, + "createdTime": "2026-02-02 06:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:22", + "echoMap": {}, + "alarmNo": "1593543083", + "alarmDate": "1769985681248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132545439554082", + "createdBy": null, + "createdTime": "2026-02-02 06:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:27", + "echoMap": {}, + "alarmNo": "1593543084", + "alarmDate": "1769985685679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132545439554462", + "createdBy": null, + "createdTime": "2026-02-02 06:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:37", + "echoMap": {}, + "alarmNo": "1593543085", + "alarmDate": "1769985695564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132558324456158", + "createdBy": null, + "createdTime": "2026-02-02 06:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:08", + "echoMap": {}, + "alarmNo": "1593543086", + "alarmDate": "1769985727387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132562619423069", + "createdBy": null, + "createdTime": "2026-02-02 06:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:52", + "echoMap": {}, + "alarmNo": "1593543087", + "alarmDate": "1769986280283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132562619423108", + "createdBy": null, + "createdTime": "2026-02-02 06:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:14", + "echoMap": {}, + "alarmNo": "1593543088", + "alarmDate": "1769986281669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132562619423203", + "createdBy": null, + "createdTime": "2026-02-02 06:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:42", + "echoMap": {}, + "alarmNo": "1593543089", + "alarmDate": "1769986284273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132566914390072", + "createdBy": null, + "createdTime": "2026-02-02 06:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:12", + "echoMap": {}, + "alarmNo": "1593543090", + "alarmDate": "1769986299101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132575504325026", + "createdBy": null, + "createdTime": "2026-02-02 06:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:02", + "echoMap": {}, + "alarmNo": "1593543091", + "alarmDate": "1769986316812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132575504325255", + "createdBy": null, + "createdTime": "2026-02-02 06:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:27", + "echoMap": {}, + "alarmNo": "1593543092", + "alarmDate": "1769986322827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132579799292102", + "createdBy": null, + "createdTime": "2026-02-02 06:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:19", + "echoMap": {}, + "alarmNo": "1593543093", + "alarmDate": "1769986337908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060094", + "deviceName": "[212](10)南京东6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132579799292651", + "createdBy": null, + "createdTime": "2026-02-02 07:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:37", + "echoMap": {}, + "alarmNo": "1593543094", + "alarmDate": "1769986889172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132579799292907", + "createdBy": null, + "createdTime": "2026-02-02 07:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:37", + "echoMap": {}, + "alarmNo": "1593543095", + "alarmDate": "1769986896061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132584094259296", + "createdBy": null, + "createdTime": "2026-02-02 07:01:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:40", + "echoMap": {}, + "alarmNo": "1593543096", + "alarmDate": "1769986899276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132584094259367", + "createdBy": null, + "createdTime": "2026-02-02 07:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:42", + "echoMap": {}, + "alarmNo": "1593543097", + "alarmDate": "1769986901385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684193953", + "createdBy": null, + "createdTime": "2026-02-02 07:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:52", + "echoMap": {}, + "alarmNo": "1593543098", + "alarmDate": "1769986911136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194192", + "createdBy": null, + "createdTime": "2026-02-02 07:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:53", + "echoMap": {}, + "alarmNo": "1593543099", + "alarmDate": "1769986918261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194203", + "createdBy": null, + "createdTime": "2026-02-02 07:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:06", + "echoMap": {}, + "alarmNo": "1593543100", + "alarmDate": "1769986918678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194250", + "createdBy": null, + "createdTime": "2026-02-02 07:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:01", + "echoMap": {}, + "alarmNo": "1593543101", + "alarmDate": "1769986919886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194341", + "createdBy": null, + "createdTime": "2026-02-02 07:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:43", + "echoMap": {}, + "alarmNo": "1593543102", + "alarmDate": "1769986922361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194430", + "createdBy": null, + "createdTime": "2026-02-02 07:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:06", + "echoMap": {}, + "alarmNo": "1593543103", + "alarmDate": "1769986924900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194795", + "createdBy": null, + "createdTime": "2026-02-02 07:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:25", + "echoMap": {}, + "alarmNo": "1593543104", + "alarmDate": "1769986935291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194800", + "createdBy": null, + "createdTime": "2026-02-02 07:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:16", + "echoMap": {}, + "alarmNo": "1593543105", + "alarmDate": "1769986935399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161418", + "createdBy": null, + "createdTime": "2026-02-02 07:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:20", + "echoMap": {}, + "alarmNo": "1593543106", + "alarmDate": "1769987479022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161433", + "createdBy": null, + "createdTime": "2026-02-02 07:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:29", + "echoMap": {}, + "alarmNo": "1593543107", + "alarmDate": "1769987479865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161457", + "createdBy": null, + "createdTime": "2026-02-02 07:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:28", + "echoMap": {}, + "alarmNo": "1593543108", + "alarmDate": "1769987480876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161508", + "createdBy": null, + "createdTime": "2026-02-02 07:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:39", + "echoMap": {}, + "alarmNo": "1593543109", + "alarmDate": "1769987482469", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161975", + "createdBy": null, + "createdTime": "2026-02-02 07:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:36", + "echoMap": {}, + "alarmNo": "1593543110", + "alarmDate": "1769987494584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132601274128440", + "createdBy": null, + "createdTime": "2026-02-02 07:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:13", + "echoMap": {}, + "alarmNo": "1593543111", + "alarmDate": "1769987499860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132601274128515", + "createdBy": null, + "createdTime": "2026-02-02 07:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:23", + "echoMap": {}, + "alarmNo": "1593543112", + "alarmDate": "1769987501938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063169", + "createdBy": null, + "createdTime": "2026-02-02 07:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:02", + "echoMap": {}, + "alarmNo": "1593543113", + "alarmDate": "1769987514245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063497", + "createdBy": null, + "createdTime": "2026-02-02 07:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:04", + "echoMap": {}, + "alarmNo": "1593543114", + "alarmDate": "1769987523262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063566", + "createdBy": null, + "createdTime": "2026-02-02 07:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:22", + "echoMap": {}, + "alarmNo": "1593543115", + "alarmDate": "1769987525156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063803", + "createdBy": null, + "createdTime": "2026-02-02 07:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:35", + "echoMap": {}, + "alarmNo": "1593543116", + "alarmDate": "1769987531726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132614159030558", + "createdBy": null, + "createdTime": "2026-02-02 07:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:55", + "echoMap": {}, + "alarmNo": "1593543117", + "alarmDate": "1769988079694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132614159030799", + "createdBy": null, + "createdTime": "2026-02-02 07:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:34", + "echoMap": {}, + "alarmNo": "1593543118", + "alarmDate": "1769988087503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132614159031090", + "createdBy": null, + "createdTime": "2026-02-02 07:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:47", + "echoMap": {}, + "alarmNo": "1593543119", + "alarmDate": "1769988095298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932456", + "createdBy": null, + "createdTime": "2026-02-02 07:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:12", + "echoMap": {}, + "alarmNo": "1593543120", + "alarmDate": "1769988119404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932550", + "createdBy": null, + "createdTime": "2026-02-02 07:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:31", + "echoMap": {}, + "alarmNo": "1593543121", + "alarmDate": "1769988122402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932599", + "createdBy": null, + "createdTime": "2026-02-02 07:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:28", + "echoMap": {}, + "alarmNo": "1593543122", + "alarmDate": "1769988123880", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932622", + "createdBy": null, + "createdTime": "2026-02-02 07:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:30", + "echoMap": {}, + "alarmNo": "1593543123", + "alarmDate": "1769988124539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932882", + "createdBy": null, + "createdTime": "2026-02-02 07:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:37", + "echoMap": {}, + "alarmNo": "1593543124", + "alarmDate": "1769988132194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932945", + "createdBy": null, + "createdTime": "2026-02-02 07:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:15", + "echoMap": {}, + "alarmNo": "1593543125", + "alarmDate": "1769988133876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043933049", + "createdBy": null, + "createdTime": "2026-02-02 07:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:18", + "echoMap": {}, + "alarmNo": "1593543126", + "alarmDate": "1769988136769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043933143", + "createdBy": null, + "createdTime": "2026-02-02 07:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:21", + "echoMap": {}, + "alarmNo": "1593543127", + "alarmDate": "1769988140032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338899658", + "createdBy": null, + "createdTime": "2026-02-02 07:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:26", + "echoMap": {}, + "alarmNo": "1593543128", + "alarmDate": "1769988680725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338899728", + "createdBy": null, + "createdTime": "2026-02-02 07:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:16", + "echoMap": {}, + "alarmNo": "1593543129", + "alarmDate": "1769988683053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060143", + "deviceName": "[116](10)南京东上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338899769", + "createdBy": null, + "createdTime": "2026-02-02 07:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:25", + "echoMap": {}, + "alarmNo": "1593543130", + "alarmDate": "1769988684121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900064", + "createdBy": null, + "createdTime": "2026-02-02 07:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:33", + "echoMap": {}, + "alarmNo": "1593543131", + "alarmDate": "1769988691853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900078", + "createdBy": null, + "createdTime": "2026-02-02 07:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:33", + "echoMap": {}, + "alarmNo": "1593543132", + "alarmDate": "1769988692271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900224", + "createdBy": null, + "createdTime": "2026-02-02 07:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:06", + "echoMap": {}, + "alarmNo": "1593543133", + "alarmDate": "1769988695786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900439", + "createdBy": null, + "createdTime": "2026-02-02 07:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:23", + "echoMap": {}, + "alarmNo": "1593543134", + "alarmDate": "1769988701749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900444", + "createdBy": null, + "createdTime": "2026-02-02 07:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:01", + "echoMap": {}, + "alarmNo": "1593543135", + "alarmDate": "1769988701839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900462", + "createdBy": null, + "createdTime": "2026-02-02 07:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:16", + "echoMap": {}, + "alarmNo": "1593543136", + "alarmDate": "1769988702265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132635633866798", + "createdBy": null, + "createdTime": "2026-02-02 07:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:45", + "echoMap": {}, + "alarmNo": "1593543137", + "alarmDate": "1769988703902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132635633867025", + "createdBy": null, + "createdTime": "2026-02-02 07:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:57", + "echoMap": {}, + "alarmNo": "1593543138", + "alarmDate": "1769988710145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132639928834081", + "createdBy": null, + "createdTime": "2026-02-02 07:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:54", + "echoMap": {}, + "alarmNo": "1593543139", + "alarmDate": "1769988712758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801527", + "createdBy": null, + "createdTime": "2026-02-02 07:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:22", + "echoMap": {}, + "alarmNo": "1593543140", + "alarmDate": "1769988719854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801625", + "createdBy": null, + "createdTime": "2026-02-02 07:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:22", + "echoMap": {}, + "alarmNo": "1593543141", + "alarmDate": "1769988722625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801646", + "createdBy": null, + "createdTime": "2026-02-02 07:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:16", + "echoMap": {}, + "alarmNo": "1593543142", + "alarmDate": "1769988722942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801916", + "createdBy": null, + "createdTime": "2026-02-02 07:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:17", + "echoMap": {}, + "alarmNo": "1593543143", + "alarmDate": "1769988730080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223802237", + "createdBy": null, + "createdTime": "2026-02-02 07:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:20", + "echoMap": {}, + "alarmNo": "1593543144", + "alarmDate": "1769988738920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132648518769146", + "createdBy": null, + "createdTime": "2026-02-02 07:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:50", + "echoMap": {}, + "alarmNo": "1593543145", + "alarmDate": "1769989293137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132648518769172", + "createdBy": null, + "createdTime": "2026-02-02 07:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:41", + "echoMap": {}, + "alarmNo": "1593543146", + "alarmDate": "1769989293797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132648518769189", + "createdBy": null, + "createdTime": "2026-02-02 07:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:34", + "echoMap": {}, + "alarmNo": "1593543147", + "alarmDate": "1769989294189", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132652813736002", + "createdBy": null, + "createdTime": "2026-02-02 07:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:52", + "echoMap": {}, + "alarmNo": "1593543148", + "alarmDate": "1769989310531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132657108703317", + "createdBy": null, + "createdTime": "2026-02-02 07:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:36", + "echoMap": {}, + "alarmNo": "1593543149", + "alarmDate": "1769989314085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670531", + "createdBy": null, + "createdTime": "2026-02-02 07:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:11", + "echoMap": {}, + "alarmNo": "1593543150", + "alarmDate": "1769989314838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670647", + "createdBy": null, + "createdTime": "2026-02-02 07:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:59", + "echoMap": {}, + "alarmNo": "1593543151", + "alarmDate": "1769989318046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670696", + "createdBy": null, + "createdTime": "2026-02-02 07:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:13", + "echoMap": {}, + "alarmNo": "1593543152", + "alarmDate": "1769989319296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670885", + "createdBy": null, + "createdTime": "2026-02-02 07:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:21", + "echoMap": {}, + "alarmNo": "1593543153", + "alarmDate": "1769989324514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403671228", + "createdBy": null, + "createdTime": "2026-02-02 07:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:52", + "echoMap": {}, + "alarmNo": "1593543154", + "alarmDate": "1769989334149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698637891", + "createdBy": null, + "createdTime": "2026-02-02 07:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:33", + "echoMap": {}, + "alarmNo": "1593543155", + "alarmDate": "1769989879156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698637918", + "createdBy": null, + "createdTime": "2026-02-02 07:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:56", + "echoMap": {}, + "alarmNo": "1593543156", + "alarmDate": "1769989880857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698637975", + "createdBy": null, + "createdTime": "2026-02-02 07:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:30", + "echoMap": {}, + "alarmNo": "1593543157", + "alarmDate": "1769989882829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698638120", + "createdBy": null, + "createdTime": "2026-02-02 07:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:28", + "echoMap": {}, + "alarmNo": "1593543158", + "alarmDate": "1769989887170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698638747", + "createdBy": null, + "createdTime": "2026-02-02 07:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:19", + "echoMap": {}, + "alarmNo": "1593543159", + "alarmDate": "1769989905608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132669993605171", + "createdBy": null, + "createdTime": "2026-02-02 07:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:51", + "echoMap": {}, + "alarmNo": "1593543160", + "alarmDate": "1769989910251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132669993605281", + "createdBy": null, + "createdTime": "2026-02-02 07:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:44", + "echoMap": {}, + "alarmNo": "1593543161", + "alarmDate": "1769989913789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132669993605339", + "createdBy": null, + "createdTime": "2026-02-02 07:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:09", + "echoMap": {}, + "alarmNo": "1593543162", + "alarmDate": "1769989915611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132674288572443", + "createdBy": null, + "createdTime": "2026-02-02 07:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:03", + "echoMap": {}, + "alarmNo": "1593543163", + "alarmDate": "1769989917063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132674288572518", + "createdBy": null, + "createdTime": "2026-02-02 07:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:44", + "echoMap": {}, + "alarmNo": "1593543164", + "alarmDate": "1769989919208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583539840", + "createdBy": null, + "createdTime": "2026-02-02 07:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:21", + "echoMap": {}, + "alarmNo": "1593543165", + "alarmDate": "1769989922875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583539974", + "createdBy": null, + "createdTime": "2026-02-02 07:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:08", + "echoMap": {}, + "alarmNo": "1593543166", + "alarmDate": "1769989926794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540051", + "createdBy": null, + "createdTime": "2026-02-02 07:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:04", + "echoMap": {}, + "alarmNo": "1593543167", + "alarmDate": "1769989928869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540109", + "createdBy": null, + "createdTime": "2026-02-02 07:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:17", + "echoMap": {}, + "alarmNo": "1593543168", + "alarmDate": "1769989930526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540193", + "createdBy": null, + "createdTime": "2026-02-02 07:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:14", + "echoMap": {}, + "alarmNo": "1593543169", + "alarmDate": "1769989932838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540444", + "createdBy": null, + "createdTime": "2026-02-02 07:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:10", + "echoMap": {}, + "alarmNo": "1593543170", + "alarmDate": "1769989941671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060143", + "deviceName": "[116](10)南京东上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540634", + "createdBy": null, + "createdTime": "2026-02-02 08:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:22", + "echoMap": {}, + "alarmNo": "1593543171", + "alarmDate": "1769990478799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540638", + "createdBy": null, + "createdTime": "2026-02-02 08:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:07", + "echoMap": {}, + "alarmNo": "1593543172", + "alarmDate": "1769990479038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060007", + "deviceName": "[414](10)南京东7#闸入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540710", + "createdBy": null, + "createdTime": "2026-02-02 08:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:43", + "echoMap": {}, + "alarmNo": "1593543173", + "alarmDate": "1769990482676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507064", + "createdBy": null, + "createdTime": "2026-02-02 08:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:26", + "echoMap": {}, + "alarmNo": "1593543174", + "alarmDate": "1769990485134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507131", + "createdBy": null, + "createdTime": "2026-02-02 08:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:39", + "echoMap": {}, + "alarmNo": "1593543175", + "alarmDate": "1769990487052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507201", + "createdBy": null, + "createdTime": "2026-02-02 08:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:13", + "echoMap": {}, + "alarmNo": "1593543176", + "alarmDate": "1769990488925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507259", + "createdBy": null, + "createdTime": "2026-02-02 08:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:15", + "echoMap": {}, + "alarmNo": "1593543177", + "alarmDate": "1769990490436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507454", + "createdBy": null, + "createdTime": "2026-02-02 08:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:37", + "echoMap": {}, + "alarmNo": "1593543178", + "alarmDate": "1769990495808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507466", + "createdBy": null, + "createdTime": "2026-02-02 08:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:20", + "echoMap": {}, + "alarmNo": "1593543179", + "alarmDate": "1769990495955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507588", + "createdBy": null, + "createdTime": "2026-02-02 08:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:34", + "echoMap": {}, + "alarmNo": "1593543180", + "alarmDate": "1769990499666", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507760", + "createdBy": null, + "createdTime": "2026-02-02 08:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:46", + "echoMap": {}, + "alarmNo": "1593543181", + "alarmDate": "1769990504817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507766", + "createdBy": null, + "createdTime": "2026-02-02 08:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:53", + "echoMap": {}, + "alarmNo": "1593543182", + "alarmDate": "1769990504940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507964", + "createdBy": null, + "createdTime": "2026-02-02 08:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:52", + "echoMap": {}, + "alarmNo": "1593543183", + "alarmDate": "1769990510597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132691468441685", + "createdBy": null, + "createdTime": "2026-02-02 08:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:44", + "echoMap": {}, + "alarmNo": "1593543184", + "alarmDate": "1769990516804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409225", + "createdBy": null, + "createdTime": "2026-02-02 08:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:13", + "echoMap": {}, + "alarmNo": "1593543185", + "alarmDate": "1769990527251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409512", + "createdBy": null, + "createdTime": "2026-02-02 08:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:36", + "echoMap": {}, + "alarmNo": "1593543186", + "alarmDate": "1769990536216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409826", + "createdBy": null, + "createdTime": "2026-02-02 08:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:22", + "echoMap": {}, + "alarmNo": "1593543187", + "alarmDate": "1769991079244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409830", + "createdBy": null, + "createdTime": "2026-02-02 08:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:36", + "echoMap": {}, + "alarmNo": "1593543188", + "alarmDate": "1769991079464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409850", + "createdBy": null, + "createdTime": "2026-02-02 08:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:41", + "echoMap": {}, + "alarmNo": "1593543189", + "alarmDate": "1769991080954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376254", + "createdBy": null, + "createdTime": "2026-02-02 08:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:37", + "echoMap": {}, + "alarmNo": "1593543190", + "alarmDate": "1769991085703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376446", + "createdBy": null, + "createdTime": "2026-02-02 08:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:31", + "echoMap": {}, + "alarmNo": "1593543191", + "alarmDate": "1769991091416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060031", + "deviceName": "[350](10)南京东10-2换乘入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376690", + "createdBy": null, + "createdTime": "2026-02-02 08:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:27", + "echoMap": {}, + "alarmNo": "1593543192", + "alarmDate": "1769991098586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376784", + "createdBy": null, + "createdTime": "2026-02-02 08:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:07", + "echoMap": {}, + "alarmNo": "1593543193", + "alarmDate": "1769991101416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376820", + "createdBy": null, + "createdTime": "2026-02-02 08:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:39", + "echoMap": {}, + "alarmNo": "1593543194", + "alarmDate": "1769991102502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376896", + "createdBy": null, + "createdTime": "2026-02-02 08:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:01", + "echoMap": {}, + "alarmNo": "1593543195", + "alarmDate": "1769991104873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132704353343502", + "createdBy": null, + "createdTime": "2026-02-02 08:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:56", + "echoMap": {}, + "alarmNo": "1593543196", + "alarmDate": "1769991114985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132708648310854", + "createdBy": null, + "createdTime": "2026-02-02 08:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:29", + "echoMap": {}, + "alarmNo": "1593543197", + "alarmDate": "1769991124934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278099", + "createdBy": null, + "createdTime": "2026-02-02 08:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:08", + "echoMap": {}, + "alarmNo": "1593543198", + "alarmDate": "1769991126452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278246", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:49", + "echoMap": {}, + "alarmNo": "1593543199", + "alarmDate": "1769991131154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278371", + "createdBy": null, + "createdTime": "2026-02-02 08:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:28", + "echoMap": {}, + "alarmNo": "1593543200", + "alarmDate": "1769991134966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278411", + "createdBy": null, + "createdTime": "2026-02-02 08:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:04", + "echoMap": {}, + "alarmNo": "1593543201", + "alarmDate": "1769991136152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278806", + "createdBy": null, + "createdTime": "2026-02-02 08:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:26", + "echoMap": {}, + "alarmNo": "1593543202", + "alarmDate": "1769991681320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278984", + "createdBy": null, + "createdTime": "2026-02-02 08:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:28", + "echoMap": {}, + "alarmNo": "1593543203", + "alarmDate": "1769991686780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943279093", + "createdBy": null, + "createdTime": "2026-02-02 08:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:08", + "echoMap": {}, + "alarmNo": "1593543204", + "alarmDate": "1769991689894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238245731", + "createdBy": null, + "createdTime": "2026-02-02 08:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:48", + "echoMap": {}, + "alarmNo": "1593543205", + "alarmDate": "1769991701381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238245999", + "createdBy": null, + "createdTime": "2026-02-02 08:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:58", + "echoMap": {}, + "alarmNo": "1593543206", + "alarmDate": "1769991711173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246088", + "createdBy": null, + "createdTime": "2026-02-02 08:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:02", + "echoMap": {}, + "alarmNo": "1593543207", + "alarmDate": "1769991714578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246123", + "createdBy": null, + "createdTime": "2026-02-02 08:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:20", + "echoMap": {}, + "alarmNo": "1593543208", + "alarmDate": "1769991715688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246215", + "createdBy": null, + "createdTime": "2026-02-02 08:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:00", + "echoMap": {}, + "alarmNo": "1593543209", + "alarmDate": "1769991718741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246228", + "createdBy": null, + "createdTime": "2026-02-02 08:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:00", + "echoMap": {}, + "alarmNo": "1593543210", + "alarmDate": "1769991719094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246265", + "createdBy": null, + "createdTime": "2026-02-02 08:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:36", + "echoMap": {}, + "alarmNo": "1593543211", + "alarmDate": "1769991720335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246320", + "createdBy": null, + "createdTime": "2026-02-02 08:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:19", + "echoMap": {}, + "alarmNo": "1593543212", + "alarmDate": "1769991722071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246333", + "createdBy": null, + "createdTime": "2026-02-02 08:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:34", + "echoMap": {}, + "alarmNo": "1593543213", + "alarmDate": "1769991722535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246357", + "createdBy": null, + "createdTime": "2026-02-02 08:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:50", + "echoMap": {}, + "alarmNo": "1593543214", + "alarmDate": "1769991723198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246378", + "createdBy": null, + "createdTime": "2026-02-02 08:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:41", + "echoMap": {}, + "alarmNo": "1593543215", + "alarmDate": "1769991723771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132721533212710", + "createdBy": null, + "createdTime": "2026-02-02 08:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:35", + "echoMap": {}, + "alarmNo": "1593543216", + "alarmDate": "1769991725693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132725828179990", + "createdBy": null, + "createdTime": "2026-02-02 08:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:15", + "echoMap": {}, + "alarmNo": "1593543217", + "alarmDate": "1769991727230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132725828180044", + "createdBy": null, + "createdTime": "2026-02-02 08:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:10", + "echoMap": {}, + "alarmNo": "1593543218", + "alarmDate": "1769991728816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147481", + "createdBy": null, + "createdTime": "2026-02-02 08:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:48", + "echoMap": {}, + "alarmNo": "1593543219", + "alarmDate": "1769991736696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147780", + "createdBy": null, + "createdTime": "2026-02-02 08:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:25", + "echoMap": {}, + "alarmNo": "1593543220", + "alarmDate": "1769992279289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147787", + "createdBy": null, + "createdTime": "2026-02-02 08:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:24", + "echoMap": {}, + "alarmNo": "1593543221", + "alarmDate": "1769992279696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147977", + "createdBy": null, + "createdTime": "2026-02-02 08:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:36", + "echoMap": {}, + "alarmNo": "1593543222", + "alarmDate": "1769992286793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148005", + "createdBy": null, + "createdTime": "2026-02-02 08:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:40", + "echoMap": {}, + "alarmNo": "1593543223", + "alarmDate": "1769992287619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148141", + "createdBy": null, + "createdTime": "2026-02-02 08:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:37", + "echoMap": {}, + "alarmNo": "1593543224", + "alarmDate": "1769992291185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148182", + "createdBy": null, + "createdTime": "2026-02-02 08:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:57", + "echoMap": {}, + "alarmNo": "1593543225", + "alarmDate": "1769992292262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148265", + "createdBy": null, + "createdTime": "2026-02-02 08:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:40", + "echoMap": {}, + "alarmNo": "1593543226", + "alarmDate": "1769992293877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114604", + "createdBy": null, + "createdTime": "2026-02-02 08:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:13", + "echoMap": {}, + "alarmNo": "1593543227", + "alarmDate": "1769992295702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114643", + "createdBy": null, + "createdTime": "2026-02-02 08:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:51", + "echoMap": {}, + "alarmNo": "1593543228", + "alarmDate": "1769992296729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114806", + "createdBy": null, + "createdTime": "2026-02-02 08:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:09", + "echoMap": {}, + "alarmNo": "1593543229", + "alarmDate": "1769992301379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114886", + "createdBy": null, + "createdTime": "2026-02-02 08:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:45", + "echoMap": {}, + "alarmNo": "1593543230", + "alarmDate": "1769992303652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114924", + "createdBy": null, + "createdTime": "2026-02-02 08:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:13", + "echoMap": {}, + "alarmNo": "1593543231", + "alarmDate": "1769992304637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114992", + "createdBy": null, + "createdTime": "2026-02-02 08:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:48", + "echoMap": {}, + "alarmNo": "1593543232", + "alarmDate": "1769992306573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114993", + "createdBy": null, + "createdTime": "2026-02-02 08:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:11", + "echoMap": {}, + "alarmNo": "1593543233", + "alarmDate": "1769992306574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115162", + "createdBy": null, + "createdTime": "2026-02-02 08:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:58", + "echoMap": {}, + "alarmNo": "1593543234", + "alarmDate": "1769992311332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115164", + "createdBy": null, + "createdTime": "2026-02-02 08:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:00", + "echoMap": {}, + "alarmNo": "1593543235", + "alarmDate": "1769992311363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115168", + "createdBy": null, + "createdTime": "2026-02-02 08:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:03", + "echoMap": {}, + "alarmNo": "1593543236", + "alarmDate": "1769992311455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115209", + "createdBy": null, + "createdTime": "2026-02-02 08:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:53", + "echoMap": {}, + "alarmNo": "1593543237", + "alarmDate": "1769992312482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115380", + "createdBy": null, + "createdTime": "2026-02-02 08:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:57", + "echoMap": {}, + "alarmNo": "1593543238", + "alarmDate": "1769992317109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132738713081872", + "createdBy": null, + "createdTime": "2026-02-02 08:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:09", + "echoMap": {}, + "alarmNo": "1593543239", + "alarmDate": "1769992323276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132743008049252", + "createdBy": null, + "createdTime": "2026-02-02 08:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:35", + "echoMap": {}, + "alarmNo": "1593543240", + "alarmDate": "1769992327467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016514", + "createdBy": null, + "createdTime": "2026-02-02 08:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:39", + "echoMap": {}, + "alarmNo": "1593543241", + "alarmDate": "1769992329378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016519", + "createdBy": null, + "createdTime": "2026-02-02 08:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:43", + "echoMap": {}, + "alarmNo": "1593543242", + "alarmDate": "1769992329478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016538", + "createdBy": null, + "createdTime": "2026-02-02 08:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:36", + "echoMap": {}, + "alarmNo": "1593543243", + "alarmDate": "1769992329887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016550", + "createdBy": null, + "createdTime": "2026-02-02 08:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:24", + "echoMap": {}, + "alarmNo": "1593543244", + "alarmDate": "1769992330121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016556", + "createdBy": null, + "createdTime": "2026-02-02 08:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:56", + "echoMap": {}, + "alarmNo": "1593543245", + "alarmDate": "1769992330335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016712", + "createdBy": null, + "createdTime": "2026-02-02 08:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:31", + "echoMap": {}, + "alarmNo": "1593543246", + "alarmDate": "1769992334387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016873", + "createdBy": null, + "createdTime": "2026-02-02 08:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:14", + "echoMap": {}, + "alarmNo": "1593543247", + "alarmDate": "1769992338952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303017126", + "createdBy": null, + "createdTime": "2026-02-02 08:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:25", + "echoMap": {}, + "alarmNo": "1593543248", + "alarmDate": "1769992880207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303017134", + "createdBy": null, + "createdTime": "2026-02-02 08:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:43", + "echoMap": {}, + "alarmNo": "1593543249", + "alarmDate": "1769992880649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303017135", + "createdBy": null, + "createdTime": "2026-02-02 08:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:23", + "echoMap": {}, + "alarmNo": "1593543250", + "alarmDate": "1769992880651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597983955", + "createdBy": null, + "createdTime": "2026-02-02 08:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:07", + "echoMap": {}, + "alarmNo": "1593543251", + "alarmDate": "1769992897653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597983990", + "createdBy": null, + "createdTime": "2026-02-02 08:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:00", + "echoMap": {}, + "alarmNo": "1593543252", + "alarmDate": "1769992898644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984043", + "createdBy": null, + "createdTime": "2026-02-02 08:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:55", + "echoMap": {}, + "alarmNo": "1593543253", + "alarmDate": "1769992900238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984307", + "createdBy": null, + "createdTime": "2026-02-02 08:41:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:54", + "echoMap": {}, + "alarmNo": "1593543254", + "alarmDate": "1769992908271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984346", + "createdBy": null, + "createdTime": "2026-02-02 08:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:17", + "echoMap": {}, + "alarmNo": "1593543255", + "alarmDate": "1769992909382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984496", + "createdBy": null, + "createdTime": "2026-02-02 08:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:01", + "echoMap": {}, + "alarmNo": "1593543256", + "alarmDate": "1769992913765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984500", + "createdBy": null, + "createdTime": "2026-02-02 08:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:55", + "echoMap": {}, + "alarmNo": "1593543257", + "alarmDate": "1769992913821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984762", + "createdBy": null, + "createdTime": "2026-02-02 08:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:59", + "echoMap": {}, + "alarmNo": "1593543258", + "alarmDate": "1769992921712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132760187918337", + "createdBy": null, + "createdTime": "2026-02-02 08:42:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:54", + "echoMap": {}, + "alarmNo": "1593543259", + "alarmDate": "1769992924032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132760187918397", + "createdBy": null, + "createdTime": "2026-02-02 08:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:46", + "echoMap": {}, + "alarmNo": "1593543260", + "alarmDate": "1769992925776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132760187918417", + "createdBy": null, + "createdTime": "2026-02-02 08:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:02", + "echoMap": {}, + "alarmNo": "1593543261", + "alarmDate": "1769992926269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482885813", + "createdBy": null, + "createdTime": "2026-02-02 08:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:56", + "echoMap": {}, + "alarmNo": "1593543262", + "alarmDate": "1769992932304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482885936", + "createdBy": null, + "createdTime": "2026-02-02 08:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:51", + "echoMap": {}, + "alarmNo": "1593543263", + "alarmDate": "1769992935769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482886317", + "createdBy": null, + "createdTime": "2026-02-02 08:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:52", + "echoMap": {}, + "alarmNo": "1593543264", + "alarmDate": "1769993482382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482886418", + "createdBy": null, + "createdTime": "2026-02-02 08:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:26", + "echoMap": {}, + "alarmNo": "1593543265", + "alarmDate": "1769993485747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853038", + "createdBy": null, + "createdTime": "2026-02-02 08:51:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:53", + "echoMap": {}, + "alarmNo": "1593543266", + "alarmDate": "1769993495179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853196", + "createdBy": null, + "createdTime": "2026-02-02 08:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:07", + "echoMap": {}, + "alarmNo": "1593543267", + "alarmDate": "1769993499428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853425", + "createdBy": null, + "createdTime": "2026-02-02 08:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:47", + "echoMap": {}, + "alarmNo": "1593543268", + "alarmDate": "1769993505646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853606", + "createdBy": null, + "createdTime": "2026-02-02 08:51:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:42", + "echoMap": {}, + "alarmNo": "1593543269", + "alarmDate": "1769993510709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853648", + "createdBy": null, + "createdTime": "2026-02-02 08:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:28", + "echoMap": {}, + "alarmNo": "1593543270", + "alarmDate": "1769993511782", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853730", + "createdBy": null, + "createdTime": "2026-02-02 08:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:55", + "echoMap": {}, + "alarmNo": "1593543271", + "alarmDate": "1769993514036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853796", + "createdBy": null, + "createdTime": "2026-02-02 08:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:57", + "echoMap": {}, + "alarmNo": "1593543272", + "alarmDate": "1769993515673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853908", + "createdBy": null, + "createdTime": "2026-02-02 08:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:14", + "echoMap": {}, + "alarmNo": "1593543273", + "alarmDate": "1769993518847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132773072820328", + "createdBy": null, + "createdTime": "2026-02-02 08:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:44", + "echoMap": {}, + "alarmNo": "1593543274", + "alarmDate": "1769993522673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132773072820365", + "createdBy": null, + "createdTime": "2026-02-02 08:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:05", + "echoMap": {}, + "alarmNo": "1593543275", + "alarmDate": "1769993523729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132773072820381", + "createdBy": null, + "createdTime": "2026-02-02 08:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:40", + "echoMap": {}, + "alarmNo": "1593543276", + "alarmDate": "1769993524221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367787564", + "createdBy": null, + "createdTime": "2026-02-02 08:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:11", + "echoMap": {}, + "alarmNo": "1593543277", + "alarmDate": "1769993525416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367787617", + "createdBy": null, + "createdTime": "2026-02-02 08:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:41", + "echoMap": {}, + "alarmNo": "1593543278", + "alarmDate": "1769993526711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367787804", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:31", + "echoMap": {}, + "alarmNo": "1593543279", + "alarmDate": "1769993532081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788259", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:27", + "echoMap": {}, + "alarmNo": "1593543280", + "alarmDate": "1769994079563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788268", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:32", + "echoMap": {}, + "alarmNo": "1593543281", + "alarmDate": "1769994080094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788272", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:34", + "echoMap": {}, + "alarmNo": "1593543282", + "alarmDate": "1769994080212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788273", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:35", + "echoMap": {}, + "alarmNo": "1593543283", + "alarmDate": "1769994080212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788345", + "createdBy": null, + "createdTime": "2026-02-02 09:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:16", + "echoMap": {}, + "alarmNo": "1593543284", + "alarmDate": "1769994082700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788509", + "createdBy": null, + "createdTime": "2026-02-02 09:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:39", + "echoMap": {}, + "alarmNo": "1593543285", + "alarmDate": "1769994086812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755296", + "createdBy": null, + "createdTime": "2026-02-02 09:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:22", + "echoMap": {}, + "alarmNo": "1593543286", + "alarmDate": "1769994101089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755480", + "createdBy": null, + "createdTime": "2026-02-02 09:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:54", + "echoMap": {}, + "alarmNo": "1593543287", + "alarmDate": "1769994107198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755516", + "createdBy": null, + "createdTime": "2026-02-02 09:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:49", + "echoMap": {}, + "alarmNo": "1593543288", + "alarmDate": "1769994108458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755610", + "createdBy": null, + "createdTime": "2026-02-02 09:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:53", + "echoMap": {}, + "alarmNo": "1593543289", + "alarmDate": "1769994111500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755642", + "createdBy": null, + "createdTime": "2026-02-02 09:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:16", + "echoMap": {}, + "alarmNo": "1593543290", + "alarmDate": "1769994112375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755677", + "createdBy": null, + "createdTime": "2026-02-02 09:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1593543291", + "alarmDate": "1769994113426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132785957722177", + "createdBy": null, + "createdTime": "2026-02-02 09:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:57", + "echoMap": {}, + "alarmNo": "1593543292", + "alarmDate": "1769994116356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132785957722201", + "createdBy": null, + "createdTime": "2026-02-02 09:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:36", + "echoMap": {}, + "alarmNo": "1593543293", + "alarmDate": "1769994117125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689419", + "createdBy": null, + "createdTime": "2026-02-02 09:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:04", + "echoMap": {}, + "alarmNo": "1593543294", + "alarmDate": "1769994118093", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689444", + "createdBy": null, + "createdTime": "2026-02-02 09:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:36", + "echoMap": {}, + "alarmNo": "1593543295", + "alarmDate": "1769994118743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689522", + "createdBy": null, + "createdTime": "2026-02-02 09:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:58", + "echoMap": {}, + "alarmNo": "1593543296", + "alarmDate": "1769994120805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689529", + "createdBy": null, + "createdTime": "2026-02-02 09:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:37", + "echoMap": {}, + "alarmNo": "1593543297", + "alarmDate": "1769994121076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689564", + "createdBy": null, + "createdTime": "2026-02-02 09:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:34", + "echoMap": {}, + "alarmNo": "1593543298", + "alarmDate": "1769994121844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689706", + "createdBy": null, + "createdTime": "2026-02-02 09:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:11", + "echoMap": {}, + "alarmNo": "1593543299", + "alarmDate": "1769994125719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252690402", + "createdBy": null, + "createdTime": "2026-02-02 09:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:22", + "echoMap": {}, + "alarmNo": "1593543300", + "alarmDate": "1769994680220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656704", + "createdBy": null, + "createdTime": "2026-02-02 09:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:35", + "echoMap": {}, + "alarmNo": "1593543301", + "alarmDate": "1769994681614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656719", + "createdBy": null, + "createdTime": "2026-02-02 09:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:50", + "echoMap": {}, + "alarmNo": "1593543302", + "alarmDate": "1769994682048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656803", + "createdBy": null, + "createdTime": "2026-02-02 09:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:43", + "echoMap": {}, + "alarmNo": "1593543303", + "alarmDate": "1769994684511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656858", + "createdBy": null, + "createdTime": "2026-02-02 09:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:33", + "echoMap": {}, + "alarmNo": "1593543304", + "alarmDate": "1769994686029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657185", + "createdBy": null, + "createdTime": "2026-02-02 09:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:59", + "echoMap": {}, + "alarmNo": "1593543305", + "alarmDate": "1769994694137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657354", + "createdBy": null, + "createdTime": "2026-02-02 09:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:58", + "echoMap": {}, + "alarmNo": "1593543306", + "alarmDate": "1769994699173", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657372", + "createdBy": null, + "createdTime": "2026-02-02 09:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:41", + "echoMap": {}, + "alarmNo": "1593543307", + "alarmDate": "1769994699672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657470", + "createdBy": null, + "createdTime": "2026-02-02 09:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:51", + "echoMap": {}, + "alarmNo": "1593543308", + "alarmDate": "1769994702636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657629", + "createdBy": null, + "createdTime": "2026-02-02 09:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:49", + "echoMap": {}, + "alarmNo": "1593543309", + "alarmDate": "1769994707735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657680", + "createdBy": null, + "createdTime": "2026-02-02 09:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:36", + "echoMap": {}, + "alarmNo": "1593543310", + "alarmDate": "1769994709131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657688", + "createdBy": null, + "createdTime": "2026-02-02 09:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:56", + "echoMap": {}, + "alarmNo": "1593543311", + "alarmDate": "1769994709390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624011", + "createdBy": null, + "createdTime": "2026-02-02 09:11:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:57", + "echoMap": {}, + "alarmNo": "1593543312", + "alarmDate": "1769994710843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624054", + "createdBy": null, + "createdTime": "2026-02-02 09:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:58", + "echoMap": {}, + "alarmNo": "1593543313", + "alarmDate": "1769994712037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624063", + "createdBy": null, + "createdTime": "2026-02-02 09:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:59", + "echoMap": {}, + "alarmNo": "1593543314", + "alarmDate": "1769994712237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624113", + "createdBy": null, + "createdTime": "2026-02-02 09:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:25", + "echoMap": {}, + "alarmNo": "1593543315", + "alarmDate": "1769994713681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624143", + "createdBy": null, + "createdTime": "2026-02-02 09:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:54", + "echoMap": {}, + "alarmNo": "1593543316", + "alarmDate": "1769994714365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624157", + "createdBy": null, + "createdTime": "2026-02-02 09:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:08", + "echoMap": {}, + "alarmNo": "1593543317", + "alarmDate": "1769994714724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432558881", + "createdBy": null, + "createdTime": "2026-02-02 09:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:51", + "echoMap": {}, + "alarmNo": "1593543318", + "alarmDate": "1769994727877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559055", + "createdBy": null, + "createdTime": "2026-02-02 09:12:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:24", + "echoMap": {}, + "alarmNo": "1593543319", + "alarmDate": "1769994733207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559276", + "createdBy": null, + "createdTime": "2026-02-02 09:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:39", + "echoMap": {}, + "alarmNo": "1593543320", + "alarmDate": "1769994741336", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559474", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:25", + "echoMap": {}, + "alarmNo": "1593543321", + "alarmDate": "1769995279759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559476", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1593543322", + "alarmDate": "1769995279893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559479", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1593543323", + "alarmDate": "1769995279952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559488", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:23", + "echoMap": {}, + "alarmNo": "1593543324", + "alarmDate": "1769995280169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559490", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:54", + "echoMap": {}, + "alarmNo": "1593543325", + "alarmDate": "1769995280200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559493", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:23", + "echoMap": {}, + "alarmNo": "1593543326", + "alarmDate": "1769995280342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526318", + "createdBy": null, + "createdTime": "2026-02-02 09:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:09", + "echoMap": {}, + "alarmNo": "1593543327", + "alarmDate": "1769995297183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526652", + "createdBy": null, + "createdTime": "2026-02-02 09:21:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:53", + "echoMap": {}, + "alarmNo": "1593543328", + "alarmDate": "1769995307297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526669", + "createdBy": null, + "createdTime": "2026-02-02 09:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:33", + "echoMap": {}, + "alarmNo": "1593543329", + "alarmDate": "1769995307978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526771", + "createdBy": null, + "createdTime": "2026-02-02 09:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:11", + "echoMap": {}, + "alarmNo": "1593543330", + "alarmDate": "1769995310734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526873", + "createdBy": null, + "createdTime": "2026-02-02 09:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:54", + "echoMap": {}, + "alarmNo": "1593543331", + "alarmDate": "1769995313553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132816022493227", + "createdBy": null, + "createdTime": "2026-02-02 09:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:15", + "echoMap": {}, + "alarmNo": "1593543332", + "alarmDate": "1769995316036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132820317460528", + "createdBy": null, + "createdTime": "2026-02-02 09:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:22", + "echoMap": {}, + "alarmNo": "1593543333", + "alarmDate": "1769995317436", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132820317460562", + "createdBy": null, + "createdTime": "2026-02-02 09:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:04", + "echoMap": {}, + "alarmNo": "1593543334", + "alarmDate": "1769995318354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427791", + "createdBy": null, + "createdTime": "2026-02-02 09:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:01", + "echoMap": {}, + "alarmNo": "1593543335", + "alarmDate": "1769995319534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427824", + "createdBy": null, + "createdTime": "2026-02-02 09:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:13", + "echoMap": {}, + "alarmNo": "1593543336", + "alarmDate": "1769995320349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427833", + "createdBy": null, + "createdTime": "2026-02-02 09:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:07", + "echoMap": {}, + "alarmNo": "1593543337", + "alarmDate": "1769995320567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427948", + "createdBy": null, + "createdTime": "2026-02-02 09:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:05", + "echoMap": {}, + "alarmNo": "1593543338", + "alarmDate": "1769995323600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428005", + "createdBy": null, + "createdTime": "2026-02-02 09:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:12", + "echoMap": {}, + "alarmNo": "1593543339", + "alarmDate": "1769995325131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428078", + "createdBy": null, + "createdTime": "2026-02-02 09:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:15", + "echoMap": {}, + "alarmNo": "1593543340", + "alarmDate": "1769995326961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428098", + "createdBy": null, + "createdTime": "2026-02-02 09:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:06", + "echoMap": {}, + "alarmNo": "1593543341", + "alarmDate": "1769995327304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428440", + "createdBy": null, + "createdTime": "2026-02-02 09:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:54", + "echoMap": {}, + "alarmNo": "1593543342", + "alarmDate": "1769995336495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428753", + "createdBy": null, + "createdTime": "2026-02-02 09:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:56", + "echoMap": {}, + "alarmNo": "1593543343", + "alarmDate": "1769995878813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428765", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:59", + "echoMap": {}, + "alarmNo": "1593543344", + "alarmDate": "1769995879839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428767", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:36", + "echoMap": {}, + "alarmNo": "1593543345", + "alarmDate": "1769995879948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428771", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:32", + "echoMap": {}, + "alarmNo": "1593543346", + "alarmDate": "1769995880140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428783", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:54", + "echoMap": {}, + "alarmNo": "1593543347", + "alarmDate": "1769995880448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395116", + "createdBy": null, + "createdTime": "2026-02-02 09:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:28", + "echoMap": {}, + "alarmNo": "1593543348", + "alarmDate": "1769995882612", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395117", + "createdBy": null, + "createdTime": "2026-02-02 09:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:25", + "echoMap": {}, + "alarmNo": "1593543349", + "alarmDate": "1769995882644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395161", + "createdBy": null, + "createdTime": "2026-02-02 09:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:25", + "echoMap": {}, + "alarmNo": "1593543350", + "alarmDate": "1769995883757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395243", + "createdBy": null, + "createdTime": "2026-02-02 09:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:15", + "echoMap": {}, + "alarmNo": "1593543351", + "alarmDate": "1769995885811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395423", + "createdBy": null, + "createdTime": "2026-02-02 09:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543352", + "alarmDate": "1769995890575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395520", + "createdBy": null, + "createdTime": "2026-02-02 09:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543353", + "alarmDate": "1769995892724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395708", + "createdBy": null, + "createdTime": "2026-02-02 09:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:14", + "echoMap": {}, + "alarmNo": "1593543354", + "alarmDate": "1769995897790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395741", + "createdBy": null, + "createdTime": "2026-02-02 09:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:49", + "echoMap": {}, + "alarmNo": "1593543355", + "alarmDate": "1769995898684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395778", + "createdBy": null, + "createdTime": "2026-02-02 09:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:10", + "echoMap": {}, + "alarmNo": "1593543356", + "alarmDate": "1769995899586", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395951", + "createdBy": null, + "createdTime": "2026-02-02 09:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:55", + "echoMap": {}, + "alarmNo": "1593543357", + "alarmDate": "1769995904138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395957", + "createdBy": null, + "createdTime": "2026-02-02 09:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:56", + "echoMap": {}, + "alarmNo": "1593543358", + "alarmDate": "1769995904334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132833202362437", + "createdBy": null, + "createdTime": "2026-02-02 09:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:50", + "echoMap": {}, + "alarmNo": "1593543359", + "alarmDate": "1769995909355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297170", + "createdBy": null, + "createdTime": "2026-02-02 09:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543360", + "alarmDate": "1769995919505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297195", + "createdBy": null, + "createdTime": "2026-02-02 09:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543361", + "alarmDate": "1769995920175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297280", + "createdBy": null, + "createdTime": "2026-02-02 09:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1593543362", + "alarmDate": "1769995922696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297375", + "createdBy": null, + "createdTime": "2026-02-02 09:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:47", + "echoMap": {}, + "alarmNo": "1593543363", + "alarmDate": "1769995925560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297441", + "createdBy": null, + "createdTime": "2026-02-02 09:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:57", + "echoMap": {}, + "alarmNo": "1593543364", + "alarmDate": "1769995927528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297774", + "createdBy": null, + "createdTime": "2026-02-02 09:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:02", + "echoMap": {}, + "alarmNo": "1593543365", + "alarmDate": "1769995938176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297795", + "createdBy": null, + "createdTime": "2026-02-02 09:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:41", + "echoMap": {}, + "alarmNo": "1593543366", + "alarmDate": "1769995938851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264293", + "createdBy": null, + "createdTime": "2026-02-02 09:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:27", + "echoMap": {}, + "alarmNo": "1593543367", + "alarmDate": "1769996479056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264301", + "createdBy": null, + "createdTime": "2026-02-02 09:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:23", + "echoMap": {}, + "alarmNo": "1593543368", + "alarmDate": "1769996479624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264307", + "createdBy": null, + "createdTime": "2026-02-02 09:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:24", + "echoMap": {}, + "alarmNo": "1593543369", + "alarmDate": "1769996479982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264308", + "createdBy": null, + "createdTime": "2026-02-02 09:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:46", + "echoMap": {}, + "alarmNo": "1593543370", + "alarmDate": "1769996479983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264397", + "createdBy": null, + "createdTime": "2026-02-02 09:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:13", + "echoMap": {}, + "alarmNo": "1593543371", + "alarmDate": "1769996483479", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264451", + "createdBy": null, + "createdTime": "2026-02-02 09:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:55", + "echoMap": {}, + "alarmNo": "1593543372", + "alarmDate": "1769996485273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264510", + "createdBy": null, + "createdTime": "2026-02-02 09:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:32", + "echoMap": {}, + "alarmNo": "1593543373", + "alarmDate": "1769996487162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264574", + "createdBy": null, + "createdTime": "2026-02-02 09:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:35", + "echoMap": {}, + "alarmNo": "1593543374", + "alarmDate": "1769996488881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264605", + "createdBy": null, + "createdTime": "2026-02-02 09:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:52", + "echoMap": {}, + "alarmNo": "1593543375", + "alarmDate": "1769996489558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264770", + "createdBy": null, + "createdTime": "2026-02-02 09:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:40", + "echoMap": {}, + "alarmNo": "1593543376", + "alarmDate": "1769996493675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264790", + "createdBy": null, + "createdTime": "2026-02-02 09:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:01", + "echoMap": {}, + "alarmNo": "1593543377", + "alarmDate": "1769996494258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264843", + "createdBy": null, + "createdTime": "2026-02-02 09:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:58", + "echoMap": {}, + "alarmNo": "1593543378", + "alarmDate": "1769996495610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265129", + "createdBy": null, + "createdTime": "2026-02-02 09:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:45", + "echoMap": {}, + "alarmNo": "1593543379", + "alarmDate": "1769996503567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265139", + "createdBy": null, + "createdTime": "2026-02-02 09:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:05", + "echoMap": {}, + "alarmNo": "1593543380", + "alarmDate": "1769996503992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265179", + "createdBy": null, + "createdTime": "2026-02-02 09:41:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:29", + "echoMap": {}, + "alarmNo": "1593543381", + "alarmDate": "1769996504892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265213", + "createdBy": null, + "createdTime": "2026-02-02 09:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:35", + "echoMap": {}, + "alarmNo": "1593543382", + "alarmDate": "1769996505569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265262", + "createdBy": null, + "createdTime": "2026-02-02 09:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:34", + "echoMap": {}, + "alarmNo": "1593543383", + "alarmDate": "1769996506833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166342", + "createdBy": null, + "createdTime": "2026-02-02 09:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:03", + "echoMap": {}, + "alarmNo": "1593543384", + "alarmDate": "1769996517875", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166797", + "createdBy": null, + "createdTime": "2026-02-02 09:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:08", + "echoMap": {}, + "alarmNo": "1593543385", + "alarmDate": "1769996531019", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166851", + "createdBy": null, + "createdTime": "2026-02-02 09:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:20", + "echoMap": {}, + "alarmNo": "1593543386", + "alarmDate": "1769996532465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166864", + "createdBy": null, + "createdTime": "2026-02-02 09:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:33", + "echoMap": {}, + "alarmNo": "1593543387", + "alarmDate": "1769996532758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166923", + "createdBy": null, + "createdTime": "2026-02-02 09:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:02", + "echoMap": {}, + "alarmNo": "1593543388", + "alarmDate": "1769996534411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166969", + "createdBy": null, + "createdTime": "2026-02-02 09:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:03", + "echoMap": {}, + "alarmNo": "1593543389", + "alarmDate": "1769996535613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133565", + "createdBy": null, + "createdTime": "2026-02-02 09:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:04", + "echoMap": {}, + "alarmNo": "1593543390", + "alarmDate": "1769997078949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133581", + "createdBy": null, + "createdTime": "2026-02-02 09:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:27", + "echoMap": {}, + "alarmNo": "1593543391", + "alarmDate": "1769997080326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133587", + "createdBy": null, + "createdTime": "2026-02-02 09:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:37", + "echoMap": {}, + "alarmNo": "1593543392", + "alarmDate": "1769997080467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133588", + "createdBy": null, + "createdTime": "2026-02-02 09:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:50", + "echoMap": {}, + "alarmNo": "1593543393", + "alarmDate": "1769997080553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134018", + "createdBy": null, + "createdTime": "2026-02-02 09:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:08", + "echoMap": {}, + "alarmNo": "1593543394", + "alarmDate": "1769997093199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134055", + "createdBy": null, + "createdTime": "2026-02-02 09:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:40", + "echoMap": {}, + "alarmNo": "1593543395", + "alarmDate": "1769997094093", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134075", + "createdBy": null, + "createdTime": "2026-02-02 09:51:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:50", + "echoMap": {}, + "alarmNo": "1593543396", + "alarmDate": "1769997094652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134213", + "createdBy": null, + "createdTime": "2026-02-02 09:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:05", + "echoMap": {}, + "alarmNo": "1593543397", + "alarmDate": "1769997098859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134219", + "createdBy": null, + "createdTime": "2026-02-02 09:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:47", + "echoMap": {}, + "alarmNo": "1593543398", + "alarmDate": "1769997099001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134289", + "createdBy": null, + "createdTime": "2026-02-02 09:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:42", + "echoMap": {}, + "alarmNo": "1593543399", + "alarmDate": "1769997101004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134333", + "createdBy": null, + "createdTime": "2026-02-02 09:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:58", + "echoMap": {}, + "alarmNo": "1593543400", + "alarmDate": "1769997102465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132867562100796", + "createdBy": null, + "createdTime": "2026-02-02 09:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:49", + "echoMap": {}, + "alarmNo": "1593543401", + "alarmDate": "1769997108383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132871857068116", + "createdBy": null, + "createdTime": "2026-02-02 09:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:53", + "echoMap": {}, + "alarmNo": "1593543402", + "alarmDate": "1769997112440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132871857068123", + "createdBy": null, + "createdTime": "2026-02-02 09:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:54", + "echoMap": {}, + "alarmNo": "1593543403", + "alarmDate": "1769997112606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035552", + "createdBy": null, + "createdTime": "2026-02-02 09:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:12", + "echoMap": {}, + "alarmNo": "1593543404", + "alarmDate": "1769997120621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035582", + "createdBy": null, + "createdTime": "2026-02-02 09:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:14", + "echoMap": {}, + "alarmNo": "1593543405", + "alarmDate": "1769997121439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035811", + "createdBy": null, + "createdTime": "2026-02-02 09:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:04", + "echoMap": {}, + "alarmNo": "1593543406", + "alarmDate": "1769997128337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035868", + "createdBy": null, + "createdTime": "2026-02-02 09:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:51", + "echoMap": {}, + "alarmNo": "1593543407", + "alarmDate": "1769997130113", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035919", + "createdBy": null, + "createdTime": "2026-02-02 09:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:24", + "echoMap": {}, + "alarmNo": "1593543408", + "alarmDate": "1769997131724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036058", + "createdBy": null, + "createdTime": "2026-02-02 09:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:49", + "echoMap": {}, + "alarmNo": "1593543409", + "alarmDate": "1769997136108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036059", + "createdBy": null, + "createdTime": "2026-02-02 09:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:28", + "echoMap": {}, + "alarmNo": "1593543410", + "alarmDate": "1769997136108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036076", + "createdBy": null, + "createdTime": "2026-02-02 09:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:22", + "echoMap": {}, + "alarmNo": "1593543411", + "alarmDate": "1769997136518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036104", + "createdBy": null, + "createdTime": "2026-02-02 09:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:55", + "echoMap": {}, + "alarmNo": "1593543412", + "alarmDate": "1769997137261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036123", + "createdBy": null, + "createdTime": "2026-02-02 09:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:06", + "echoMap": {}, + "alarmNo": "1593543413", + "alarmDate": "1769997137762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036134", + "createdBy": null, + "createdTime": "2026-02-02 09:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:49", + "echoMap": {}, + "alarmNo": "1593543414", + "alarmDate": "1769997137945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036195", + "createdBy": null, + "createdTime": "2026-02-02 09:52:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:40", + "echoMap": {}, + "alarmNo": "1593543415", + "alarmDate": "1769997140534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002668", + "createdBy": null, + "createdTime": "2026-02-02 10:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:10", + "echoMap": {}, + "alarmNo": "1593543416", + "alarmDate": "1769997679722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002693", + "createdBy": null, + "createdTime": "2026-02-02 10:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:13", + "echoMap": {}, + "alarmNo": "1593543417", + "alarmDate": "1769997680883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002857", + "createdBy": null, + "createdTime": "2026-02-02 10:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:51", + "echoMap": {}, + "alarmNo": "1593543418", + "alarmDate": "1769997686324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002975", + "createdBy": null, + "createdTime": "2026-02-02 10:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:39", + "echoMap": {}, + "alarmNo": "1593543419", + "alarmDate": "1769997689782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003227", + "createdBy": null, + "createdTime": "2026-02-02 10:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:57", + "echoMap": {}, + "alarmNo": "1593543420", + "alarmDate": "1769997696179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003560", + "createdBy": null, + "createdTime": "2026-02-02 10:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:38", + "echoMap": {}, + "alarmNo": "1593543421", + "alarmDate": "1769997705162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003601", + "createdBy": null, + "createdTime": "2026-02-02 10:01:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:07", + "echoMap": {}, + "alarmNo": "1593543422", + "alarmDate": "1769997706208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003626", + "createdBy": null, + "createdTime": "2026-02-02 10:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:05", + "echoMap": {}, + "alarmNo": "1593543423", + "alarmDate": "1769997706857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132889036937246", + "createdBy": null, + "createdTime": "2026-02-02 10:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:53", + "echoMap": {}, + "alarmNo": "1593543424", + "alarmDate": "1769997712167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132889036937271", + "createdBy": null, + "createdTime": "2026-02-02 10:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:01", + "echoMap": {}, + "alarmNo": "1593543425", + "alarmDate": "1769997712852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331904679", + "createdBy": null, + "createdTime": "2026-02-02 10:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:18", + "echoMap": {}, + "alarmNo": "1593543426", + "alarmDate": "1769997719092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331904954", + "createdBy": null, + "createdTime": "2026-02-02 10:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:08", + "echoMap": {}, + "alarmNo": "1593543427", + "alarmDate": "1769997727085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331905026", + "createdBy": null, + "createdTime": "2026-02-02 10:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:21", + "echoMap": {}, + "alarmNo": "1593543428", + "alarmDate": "1769997729346", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331905029", + "createdBy": null, + "createdTime": "2026-02-02 10:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1593543429", + "alarmDate": "1769997729440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331905308", + "createdBy": null, + "createdTime": "2026-02-02 10:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:45", + "echoMap": {}, + "alarmNo": "1593543430", + "alarmDate": "1769997738282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871887", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:00", + "echoMap": {}, + "alarmNo": "1593543431", + "alarmDate": "1769998278927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871893", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:38", + "echoMap": {}, + "alarmNo": "1593543432", + "alarmDate": "1769998279471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871895", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:23", + "echoMap": {}, + "alarmNo": "1593543433", + "alarmDate": "1769998279503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871906", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:22", + "echoMap": {}, + "alarmNo": "1593543434", + "alarmDate": "1769998279968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871907", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:43", + "echoMap": {}, + "alarmNo": "1593543435", + "alarmDate": "1769998280112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871908", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:25", + "echoMap": {}, + "alarmNo": "1593543436", + "alarmDate": "1769998280113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871919", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:57", + "echoMap": {}, + "alarmNo": "1593543437", + "alarmDate": "1769998280413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871927", + "createdBy": null, + "createdTime": "2026-02-02 10:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:48", + "echoMap": {}, + "alarmNo": "1593543438", + "alarmDate": "1769998280689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871928", + "createdBy": null, + "createdTime": "2026-02-02 10:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1593543439", + "alarmDate": "1769998280690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871929", + "createdBy": null, + "createdTime": "2026-02-02 10:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:43", + "echoMap": {}, + "alarmNo": "1593543440", + "alarmDate": "1769998280691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871966", + "createdBy": null, + "createdTime": "2026-02-02 10:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:03", + "echoMap": {}, + "alarmNo": "1593543441", + "alarmDate": "1769998282074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871990", + "createdBy": null, + "createdTime": "2026-02-02 10:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:34", + "echoMap": {}, + "alarmNo": "1593543442", + "alarmDate": "1769998282651", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872048", + "createdBy": null, + "createdTime": "2026-02-02 10:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:25", + "echoMap": {}, + "alarmNo": "1593543443", + "alarmDate": "1769998284184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872507", + "createdBy": null, + "createdTime": "2026-02-02 10:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:19", + "echoMap": {}, + "alarmNo": "1593543444", + "alarmDate": "1769998295618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872545", + "createdBy": null, + "createdTime": "2026-02-02 10:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:44", + "echoMap": {}, + "alarmNo": "1593543445", + "alarmDate": "1769998296613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872655", + "createdBy": null, + "createdTime": "2026-02-02 10:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:46", + "echoMap": {}, + "alarmNo": "1593543446", + "alarmDate": "1769998299521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872698", + "createdBy": null, + "createdTime": "2026-02-02 10:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1593543447", + "alarmDate": "1769998300565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773794", + "createdBy": null, + "createdTime": "2026-02-02 10:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:04", + "echoMap": {}, + "alarmNo": "1593543448", + "alarmDate": "1769998317557", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773849", + "createdBy": null, + "createdTime": "2026-02-02 10:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:00", + "echoMap": {}, + "alarmNo": "1593543449", + "alarmDate": "1769998319337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773931", + "createdBy": null, + "createdTime": "2026-02-02 10:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:07", + "echoMap": {}, + "alarmNo": "1593543450", + "alarmDate": "1769998321641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773949", + "createdBy": null, + "createdTime": "2026-02-02 10:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:35", + "echoMap": {}, + "alarmNo": "1593543451", + "alarmDate": "1769998322286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774029", + "createdBy": null, + "createdTime": "2026-02-02 10:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:02", + "echoMap": {}, + "alarmNo": "1593543452", + "alarmDate": "1769998324579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774249", + "createdBy": null, + "createdTime": "2026-02-02 10:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:26", + "echoMap": {}, + "alarmNo": "1593543453", + "alarmDate": "1769998331943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774349", + "createdBy": null, + "createdTime": "2026-02-02 10:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:50", + "echoMap": {}, + "alarmNo": "1593543454", + "alarmDate": "1769998335174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774368", + "createdBy": null, + "createdTime": "2026-02-02 10:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:10", + "echoMap": {}, + "alarmNo": "1593543455", + "alarmDate": "1769998335591", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774386", + "createdBy": null, + "createdTime": "2026-02-02 10:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:55", + "echoMap": {}, + "alarmNo": "1593543456", + "alarmDate": "1769998336235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774494", + "createdBy": null, + "createdTime": "2026-02-02 10:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:26", + "echoMap": {}, + "alarmNo": "1593543457", + "alarmDate": "1769998339824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774710", + "createdBy": null, + "createdTime": "2026-02-02 10:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:57", + "echoMap": {}, + "alarmNo": "1593543458", + "alarmDate": "1769998880749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774715", + "createdBy": null, + "createdTime": "2026-02-02 10:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:43", + "echoMap": {}, + "alarmNo": "1593543459", + "alarmDate": "1769998880966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741026", + "createdBy": null, + "createdTime": "2026-02-02 10:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:57", + "echoMap": {}, + "alarmNo": "1593543460", + "alarmDate": "1769998882478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741111", + "createdBy": null, + "createdTime": "2026-02-02 10:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:31", + "echoMap": {}, + "alarmNo": "1593543461", + "alarmDate": "1769998885143", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741543", + "createdBy": null, + "createdTime": "2026-02-02 10:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:45", + "echoMap": {}, + "alarmNo": "1593543462", + "alarmDate": "1769998897502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741606", + "createdBy": null, + "createdTime": "2026-02-02 10:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:40", + "echoMap": {}, + "alarmNo": "1593543463", + "alarmDate": "1769998899330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741746", + "createdBy": null, + "createdTime": "2026-02-02 10:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:07", + "echoMap": {}, + "alarmNo": "1593543464", + "alarmDate": "1769998903324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741935", + "createdBy": null, + "createdTime": "2026-02-02 10:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:50", + "echoMap": {}, + "alarmNo": "1593543465", + "alarmDate": "1769998908845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132919101708319", + "createdBy": null, + "createdTime": "2026-02-02 10:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:15", + "echoMap": {}, + "alarmNo": "1593543466", + "alarmDate": "1769998912245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132919101708358", + "createdBy": null, + "createdTime": "2026-02-02 10:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:54", + "echoMap": {}, + "alarmNo": "1593543467", + "alarmDate": "1769998913353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132919101708489", + "createdBy": null, + "createdTime": "2026-02-02 10:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:17", + "echoMap": {}, + "alarmNo": "1593543468", + "alarmDate": "1769998917153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132923396675598", + "createdBy": null, + "createdTime": "2026-02-02 10:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:09", + "echoMap": {}, + "alarmNo": "1593543469", + "alarmDate": "1769998917838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132923396675680", + "createdBy": null, + "createdTime": "2026-02-02 10:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:17", + "echoMap": {}, + "alarmNo": "1593543470", + "alarmDate": "1769998920081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691642914", + "createdBy": null, + "createdTime": "2026-02-02 10:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:08", + "echoMap": {}, + "alarmNo": "1593543471", + "alarmDate": "1769998921170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691642987", + "createdBy": null, + "createdTime": "2026-02-02 10:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:50", + "echoMap": {}, + "alarmNo": "1593543472", + "alarmDate": "1769998923190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643328", + "createdBy": null, + "createdTime": "2026-02-02 10:22:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:24", + "echoMap": {}, + "alarmNo": "1593543473", + "alarmDate": "1769998933383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643365", + "createdBy": null, + "createdTime": "2026-02-02 10:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:45", + "echoMap": {}, + "alarmNo": "1593543474", + "alarmDate": "1769998934431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643436", + "createdBy": null, + "createdTime": "2026-02-02 10:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:16", + "echoMap": {}, + "alarmNo": "1593543475", + "alarmDate": "1769998936265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643520", + "createdBy": null, + "createdTime": "2026-02-02 10:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:28", + "echoMap": {}, + "alarmNo": "1593543476", + "alarmDate": "1769998938623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643772", + "createdBy": null, + "createdTime": "2026-02-02 10:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:31", + "echoMap": {}, + "alarmNo": "1593543477", + "alarmDate": "1769999478947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643781", + "createdBy": null, + "createdTime": "2026-02-02 10:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:40", + "echoMap": {}, + "alarmNo": "1593543478", + "alarmDate": "1769999479771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643792", + "createdBy": null, + "createdTime": "2026-02-02 10:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:21", + "echoMap": {}, + "alarmNo": "1593543479", + "alarmDate": "1769999480412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610220", + "createdBy": null, + "createdTime": "2026-02-02 10:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:34", + "echoMap": {}, + "alarmNo": "1593543480", + "alarmDate": "1769999486111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610395", + "createdBy": null, + "createdTime": "2026-02-02 10:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:04", + "echoMap": {}, + "alarmNo": "1593543481", + "alarmDate": "1769999491575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610470", + "createdBy": null, + "createdTime": "2026-02-02 10:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:54", + "echoMap": {}, + "alarmNo": "1593543482", + "alarmDate": "1769999493441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610610", + "createdBy": null, + "createdTime": "2026-02-02 10:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:51", + "echoMap": {}, + "alarmNo": "1593543483", + "alarmDate": "1769999497714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610973", + "createdBy": null, + "createdTime": "2026-02-02 10:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:07", + "echoMap": {}, + "alarmNo": "1593543484", + "alarmDate": "1769999509164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986611179", + "createdBy": null, + "createdTime": "2026-02-02 10:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:56", + "echoMap": {}, + "alarmNo": "1593543485", + "alarmDate": "1769999515085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132936281577473", + "createdBy": null, + "createdTime": "2026-02-02 10:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:57", + "echoMap": {}, + "alarmNo": "1593543486", + "alarmDate": "1769999515710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512154", + "createdBy": null, + "createdTime": "2026-02-02 10:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:18", + "echoMap": {}, + "alarmNo": "1593543487", + "alarmDate": "1769999521929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512215", + "createdBy": null, + "createdTime": "2026-02-02 10:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:42", + "echoMap": {}, + "alarmNo": "1593543488", + "alarmDate": "1769999523506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512400", + "createdBy": null, + "createdTime": "2026-02-02 10:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:15", + "echoMap": {}, + "alarmNo": "1593543489", + "alarmDate": "1769999528605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512451", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:09", + "echoMap": {}, + "alarmNo": "1593543490", + "alarmDate": "1769999529899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512452", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:11", + "echoMap": {}, + "alarmNo": "1593543491", + "alarmDate": "1769999529930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512459", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:34", + "echoMap": {}, + "alarmNo": "1593543492", + "alarmDate": "1769999530023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512466", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:44", + "echoMap": {}, + "alarmNo": "1593543493", + "alarmDate": "1769999530125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512580", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:13", + "echoMap": {}, + "alarmNo": "1593543494", + "alarmDate": "1769999532960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060143", + "deviceName": "[116](10)南京东上行人防门", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512854", + "createdBy": null, + "createdTime": "2026-02-02 10:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:34", + "echoMap": {}, + "alarmNo": "1593543495", + "alarmDate": "1769999541069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513062", + "createdBy": null, + "createdTime": "2026-02-02 10:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:55", + "echoMap": {}, + "alarmNo": "1593543496", + "alarmDate": "1770000080310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513064", + "createdBy": null, + "createdTime": "2026-02-02 10:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:00", + "echoMap": {}, + "alarmNo": "1593543497", + "alarmDate": "1770000080435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513069", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:00", + "echoMap": {}, + "alarmNo": "1593543498", + "alarmDate": "1770000080601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513075", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:33", + "echoMap": {}, + "alarmNo": "1593543499", + "alarmDate": "1770000080810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513085", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:56", + "echoMap": {}, + "alarmNo": "1593543500", + "alarmDate": "1770000081076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479449", + "createdBy": null, + "createdTime": "2026-02-02 10:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:31", + "echoMap": {}, + "alarmNo": "1593543501", + "alarmDate": "1770000084055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479527", + "createdBy": null, + "createdTime": "2026-02-02 10:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:27", + "echoMap": {}, + "alarmNo": "1593543502", + "alarmDate": "1770000086159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479849", + "createdBy": null, + "createdTime": "2026-02-02 10:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:47", + "echoMap": {}, + "alarmNo": "1593543503", + "alarmDate": "1770000094288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479898", + "createdBy": null, + "createdTime": "2026-02-02 10:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:43", + "echoMap": {}, + "alarmNo": "1593543504", + "alarmDate": "1770000095549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166480076", + "createdBy": null, + "createdTime": "2026-02-02 10:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:46", + "echoMap": {}, + "alarmNo": "1593543505", + "alarmDate": "1770000100080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166480182", + "createdBy": null, + "createdTime": "2026-02-02 10:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:50", + "echoMap": {}, + "alarmNo": "1593543506", + "alarmDate": "1770000102805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166480322", + "createdBy": null, + "createdTime": "2026-02-02 10:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1593543507", + "alarmDate": "1770000106232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132953461446792", + "createdBy": null, + "createdTime": "2026-02-02 10:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:56", + "echoMap": {}, + "alarmNo": "1593543508", + "alarmDate": "1770000111225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051381527", + "createdBy": null, + "createdTime": "2026-02-02 10:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:10", + "echoMap": {}, + "alarmNo": "1593543509", + "alarmDate": "1770000123465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051381725", + "createdBy": null, + "createdTime": "2026-02-02 10:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:50", + "echoMap": {}, + "alarmNo": "1593543510", + "alarmDate": "1770000129075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051381851", + "createdBy": null, + "createdTime": "2026-02-02 10:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:38", + "echoMap": {}, + "alarmNo": "1593543511", + "alarmDate": "1770000132597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051382045", + "createdBy": null, + "createdTime": "2026-02-02 10:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:48", + "echoMap": {}, + "alarmNo": "1593543512", + "alarmDate": "1770000138172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051382089", + "createdBy": null, + "createdTime": "2026-02-02 10:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:21", + "echoMap": {}, + "alarmNo": "1593543513", + "alarmDate": "1770000139899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051382108", + "createdBy": null, + "createdTime": "2026-02-02 10:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:28", + "echoMap": {}, + "alarmNo": "1593543514", + "alarmDate": "1770000141484", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348574", + "createdBy": null, + "createdTime": "2026-02-02 10:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:49", + "echoMap": {}, + "alarmNo": "1593543515", + "alarmDate": "1770000679307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348581", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:25", + "echoMap": {}, + "alarmNo": "1593543516", + "alarmDate": "1770000679581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348584", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:35", + "echoMap": {}, + "alarmNo": "1593543517", + "alarmDate": "1770000679690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348589", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:37", + "echoMap": {}, + "alarmNo": "1593543518", + "alarmDate": "1770000679906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348607", + "createdBy": null, + "createdTime": "2026-02-02 10:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:37", + "echoMap": {}, + "alarmNo": "1593543519", + "alarmDate": "1770000680806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348747", + "createdBy": null, + "createdTime": "2026-02-02 10:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:24", + "echoMap": {}, + "alarmNo": "1593543520", + "alarmDate": "1770000685089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348785", + "createdBy": null, + "createdTime": "2026-02-02 10:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:34", + "echoMap": {}, + "alarmNo": "1593543521", + "alarmDate": "1770000686012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348863", + "createdBy": null, + "createdTime": "2026-02-02 10:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:29", + "echoMap": {}, + "alarmNo": "1593543522", + "alarmDate": "1770000688070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348900", + "createdBy": null, + "createdTime": "2026-02-02 10:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:36", + "echoMap": {}, + "alarmNo": "1593543523", + "alarmDate": "1770000688880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346349321", + "createdBy": null, + "createdTime": "2026-02-02 10:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:52", + "echoMap": {}, + "alarmNo": "1593543524", + "alarmDate": "1770000699580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132970641315939", + "createdBy": null, + "createdTime": "2026-02-02 10:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:57", + "echoMap": {}, + "alarmNo": "1593543525", + "alarmDate": "1770000709753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132974936283167", + "createdBy": null, + "createdTime": "2026-02-02 10:51:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:52", + "echoMap": {}, + "alarmNo": "1593543526", + "alarmDate": "1770000711233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132974936283225", + "createdBy": null, + "createdTime": "2026-02-02 10:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:54", + "echoMap": {}, + "alarmNo": "1593543527", + "alarmDate": "1770000712710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250528", + "createdBy": null, + "createdTime": "2026-02-02 10:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:03", + "echoMap": {}, + "alarmNo": "1593543528", + "alarmDate": "1770000715908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250534", + "createdBy": null, + "createdTime": "2026-02-02 10:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:13", + "echoMap": {}, + "alarmNo": "1593543529", + "alarmDate": "1770000716158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250593", + "createdBy": null, + "createdTime": "2026-02-02 10:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:04", + "echoMap": {}, + "alarmNo": "1593543530", + "alarmDate": "1770000717768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250690", + "createdBy": null, + "createdTime": "2026-02-02 10:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:08", + "echoMap": {}, + "alarmNo": "1593543531", + "alarmDate": "1770000720724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250733", + "createdBy": null, + "createdTime": "2026-02-02 10:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:08", + "echoMap": {}, + "alarmNo": "1593543532", + "alarmDate": "1770000722009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250764", + "createdBy": null, + "createdTime": "2026-02-02 10:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:09", + "echoMap": {}, + "alarmNo": "1593543533", + "alarmDate": "1770000722762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250983", + "createdBy": null, + "createdTime": "2026-02-02 10:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:15", + "echoMap": {}, + "alarmNo": "1593543534", + "alarmDate": "1770000729478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250986", + "createdBy": null, + "createdTime": "2026-02-02 10:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543535", + "alarmDate": "1770000729608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231251209", + "createdBy": null, + "createdTime": "2026-02-02 10:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:56", + "echoMap": {}, + "alarmNo": "1593543536", + "alarmDate": "1770000736679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231251214", + "createdBy": null, + "createdTime": "2026-02-02 10:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:47", + "echoMap": {}, + "alarmNo": "1593543537", + "alarmDate": "1770000736770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231251279", + "createdBy": null, + "createdTime": "2026-02-02 10:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:48", + "echoMap": {}, + "alarmNo": "1593543538", + "alarmDate": "1770000738788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217795", + "createdBy": null, + "createdTime": "2026-02-02 11:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:56", + "echoMap": {}, + "alarmNo": "1593543539", + "alarmDate": "1770001279052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217802", + "createdBy": null, + "createdTime": "2026-02-02 11:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:12", + "echoMap": {}, + "alarmNo": "1593543540", + "alarmDate": "1770001279440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217807", + "createdBy": null, + "createdTime": "2026-02-02 11:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:28", + "echoMap": {}, + "alarmNo": "1593543541", + "alarmDate": "1770001279595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217823", + "createdBy": null, + "createdTime": "2026-02-02 11:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:43", + "echoMap": {}, + "alarmNo": "1593543542", + "alarmDate": "1770001280456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217830", + "createdBy": null, + "createdTime": "2026-02-02 11:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:55", + "echoMap": {}, + "alarmNo": "1593543543", + "alarmDate": "1770001280673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217841", + "createdBy": null, + "createdTime": "2026-02-02 11:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:56", + "echoMap": {}, + "alarmNo": "1593543544", + "alarmDate": "1770001281115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217995", + "createdBy": null, + "createdTime": "2026-02-02 11:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:32", + "echoMap": {}, + "alarmNo": "1593543545", + "alarmDate": "1770001285415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526218063", + "createdBy": null, + "createdTime": "2026-02-02 11:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:39", + "echoMap": {}, + "alarmNo": "1593543546", + "alarmDate": "1770001287102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526218573", + "createdBy": null, + "createdTime": "2026-02-02 11:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:46", + "echoMap": {}, + "alarmNo": "1593543547", + "alarmDate": "1770001299730", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526218712", + "createdBy": null, + "createdTime": "2026-02-02 11:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:45", + "echoMap": {}, + "alarmNo": "1593543548", + "alarmDate": "1770001303186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132992116152353", + "createdBy": null, + "createdTime": "2026-02-02 11:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:49", + "echoMap": {}, + "alarmNo": "1593543549", + "alarmDate": "1770001307759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119763", + "createdBy": null, + "createdTime": "2026-02-02 11:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:55", + "echoMap": {}, + "alarmNo": "1593543550", + "alarmDate": "1770001313911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119826", + "createdBy": null, + "createdTime": "2026-02-02 11:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:01", + "echoMap": {}, + "alarmNo": "1593543551", + "alarmDate": "1770001315452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119865", + "createdBy": null, + "createdTime": "2026-02-02 11:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:04", + "echoMap": {}, + "alarmNo": "1593543552", + "alarmDate": "1770001316432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119988", + "createdBy": null, + "createdTime": "2026-02-02 11:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:06", + "echoMap": {}, + "alarmNo": "1593543553", + "alarmDate": "1770001320156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120073", + "createdBy": null, + "createdTime": "2026-02-02 11:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:11", + "echoMap": {}, + "alarmNo": "1593543554", + "alarmDate": "1770001322772", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120105", + "createdBy": null, + "createdTime": "2026-02-02 11:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:40", + "echoMap": {}, + "alarmNo": "1593543555", + "alarmDate": "1770001323516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120262", + "createdBy": null, + "createdTime": "2026-02-02 11:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:22", + "echoMap": {}, + "alarmNo": "1593543556", + "alarmDate": "1770001328744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120281", + "createdBy": null, + "createdTime": "2026-02-02 11:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:04", + "echoMap": {}, + "alarmNo": "1593543557", + "alarmDate": "1770001329087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120285", + "createdBy": null, + "createdTime": "2026-02-02 11:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:50", + "echoMap": {}, + "alarmNo": "1593543558", + "alarmDate": "1770001329128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120334", + "createdBy": null, + "createdTime": "2026-02-02 11:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:12", + "echoMap": {}, + "alarmNo": "1593543559", + "alarmDate": "1770001330687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120465", + "createdBy": null, + "createdTime": "2026-02-02 11:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:06", + "echoMap": {}, + "alarmNo": "1593543560", + "alarmDate": "1770001334487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120506", + "createdBy": null, + "createdTime": "2026-02-02 11:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:04", + "echoMap": {}, + "alarmNo": "1593543561", + "alarmDate": "1770001335803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120526", + "createdBy": null, + "createdTime": "2026-02-02 11:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:33", + "echoMap": {}, + "alarmNo": "1593543562", + "alarmDate": "1770001336173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120539", + "createdBy": null, + "createdTime": "2026-02-02 11:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:30", + "echoMap": {}, + "alarmNo": "1593543563", + "alarmDate": "1770001336548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120547", + "createdBy": null, + "createdTime": "2026-02-02 11:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:18", + "echoMap": {}, + "alarmNo": "1593543564", + "alarmDate": "1770001336804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120601", + "createdBy": null, + "createdTime": "2026-02-02 11:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:06", + "echoMap": {}, + "alarmNo": "1593543565", + "alarmDate": "1770001338151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120612", + "createdBy": null, + "createdTime": "2026-02-02 11:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543566", + "alarmDate": "1770001338452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706086917", + "createdBy": null, + "createdTime": "2026-02-02 11:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:21", + "echoMap": {}, + "alarmNo": "1593543567", + "alarmDate": "1770001339969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087141", + "createdBy": null, + "createdTime": "2026-02-02 11:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:25", + "echoMap": {}, + "alarmNo": "1593543568", + "alarmDate": "1770001879465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087171", + "createdBy": null, + "createdTime": "2026-02-02 11:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:35", + "echoMap": {}, + "alarmNo": "1593543569", + "alarmDate": "1770001881312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087256", + "createdBy": null, + "createdTime": "2026-02-02 11:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:17", + "echoMap": {}, + "alarmNo": "1593543570", + "alarmDate": "1770001883950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087388", + "createdBy": null, + "createdTime": "2026-02-02 11:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:58", + "echoMap": {}, + "alarmNo": "1593543571", + "alarmDate": "1770001887919", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087461", + "createdBy": null, + "createdTime": "2026-02-02 11:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:31", + "echoMap": {}, + "alarmNo": "1593543572", + "alarmDate": "1770001889822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087542", + "createdBy": null, + "createdTime": "2026-02-02 11:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:33", + "echoMap": {}, + "alarmNo": "1593543573", + "alarmDate": "1770001891951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087595", + "createdBy": null, + "createdTime": "2026-02-02 11:11:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:34", + "echoMap": {}, + "alarmNo": "1593543574", + "alarmDate": "1770001893221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133005001054238", + "createdBy": null, + "createdTime": "2026-02-02 11:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:52", + "echoMap": {}, + "alarmNo": "1593543575", + "alarmDate": "1770001904207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133005001054321", + "createdBy": null, + "createdTime": "2026-02-02 11:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:18", + "echoMap": {}, + "alarmNo": "1593543576", + "alarmDate": "1770001906508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133009296021545", + "createdBy": null, + "createdTime": "2026-02-02 11:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543577", + "alarmDate": "1770001907696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590988942", + "createdBy": null, + "createdTime": "2026-02-02 11:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:21", + "echoMap": {}, + "alarmNo": "1593543578", + "alarmDate": "1770001913280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989093", + "createdBy": null, + "createdTime": "2026-02-02 11:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:11", + "echoMap": {}, + "alarmNo": "1593543579", + "alarmDate": "1770001917110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989491", + "createdBy": null, + "createdTime": "2026-02-02 11:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:09", + "echoMap": {}, + "alarmNo": "1593543580", + "alarmDate": "1770001927848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989654", + "createdBy": null, + "createdTime": "2026-02-02 11:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:18", + "echoMap": {}, + "alarmNo": "1593543581", + "alarmDate": "1770001932470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989679", + "createdBy": null, + "createdTime": "2026-02-02 11:12:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:14", + "echoMap": {}, + "alarmNo": "1593543582", + "alarmDate": "1770001933006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989773", + "createdBy": null, + "createdTime": "2026-02-02 11:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:46", + "echoMap": {}, + "alarmNo": "1593543583", + "alarmDate": "1770001935529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956125", + "createdBy": null, + "createdTime": "2026-02-02 11:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:26", + "echoMap": {}, + "alarmNo": "1593543584", + "alarmDate": "1770001937532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956214", + "createdBy": null, + "createdTime": "2026-02-02 11:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:39", + "echoMap": {}, + "alarmNo": "1593543585", + "alarmDate": "1770001941989", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956412", + "createdBy": null, + "createdTime": "2026-02-02 11:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:05", + "echoMap": {}, + "alarmNo": "1593543586", + "alarmDate": "1770002479054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956419", + "createdBy": null, + "createdTime": "2026-02-02 11:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:43", + "echoMap": {}, + "alarmNo": "1593543587", + "alarmDate": "1770002479447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956428", + "createdBy": null, + "createdTime": "2026-02-02 11:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:41", + "echoMap": {}, + "alarmNo": "1593543588", + "alarmDate": "1770002479871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956444", + "createdBy": null, + "createdTime": "2026-02-02 11:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:48", + "echoMap": {}, + "alarmNo": "1593543589", + "alarmDate": "1770002480833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956544", + "createdBy": null, + "createdTime": "2026-02-02 11:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543590", + "alarmDate": "1770002483986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956748", + "createdBy": null, + "createdTime": "2026-02-02 11:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:30", + "echoMap": {}, + "alarmNo": "1593543591", + "alarmDate": "1770002489362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885957119", + "createdBy": null, + "createdTime": "2026-02-02 11:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:06", + "echoMap": {}, + "alarmNo": "1593543592", + "alarmDate": "1770002498431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133022180923519", + "createdBy": null, + "createdTime": "2026-02-02 11:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:55", + "echoMap": {}, + "alarmNo": "1593543593", + "alarmDate": "1770002501524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133022180923626", + "createdBy": null, + "createdTime": "2026-02-02 11:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:45", + "echoMap": {}, + "alarmNo": "1593543594", + "alarmDate": "1770002504005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133022180923627", + "createdBy": null, + "createdTime": "2026-02-02 11:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:07", + "echoMap": {}, + "alarmNo": "1593543595", + "alarmDate": "1770002504006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133026475890787", + "createdBy": null, + "createdTime": "2026-02-02 11:21:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:40", + "echoMap": {}, + "alarmNo": "1593543596", + "alarmDate": "1770002507129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858266", + "createdBy": null, + "createdTime": "2026-02-02 11:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:10", + "echoMap": {}, + "alarmNo": "1593543597", + "alarmDate": "1770002514872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858291", + "createdBy": null, + "createdTime": "2026-02-02 11:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:57", + "echoMap": {}, + "alarmNo": "1593543598", + "alarmDate": "1770002515573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858540", + "createdBy": null, + "createdTime": "2026-02-02 11:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:17", + "echoMap": {}, + "alarmNo": "1593543599", + "alarmDate": "1770002522597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858615", + "createdBy": null, + "createdTime": "2026-02-02 11:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:51", + "echoMap": {}, + "alarmNo": "1593543600", + "alarmDate": "1770002524560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858771", + "createdBy": null, + "createdTime": "2026-02-02 11:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:23", + "echoMap": {}, + "alarmNo": "1593543601", + "alarmDate": "1770002529152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858806", + "createdBy": null, + "createdTime": "2026-02-02 11:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:22", + "echoMap": {}, + "alarmNo": "1593543602", + "alarmDate": "1770002530129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825309", + "createdBy": null, + "createdTime": "2026-02-02 11:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:36", + "echoMap": {}, + "alarmNo": "1593543603", + "alarmDate": "1770002537098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825597", + "createdBy": null, + "createdTime": "2026-02-02 11:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:04", + "echoMap": {}, + "alarmNo": "1593543604", + "alarmDate": "1770003079469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825598", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:36", + "echoMap": {}, + "alarmNo": "1593543605", + "alarmDate": "1770003079519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825605", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:37", + "echoMap": {}, + "alarmNo": "1593543606", + "alarmDate": "1770003079998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825610", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:54", + "echoMap": {}, + "alarmNo": "1593543607", + "alarmDate": "1770003080086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825616", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:11", + "echoMap": {}, + "alarmNo": "1593543608", + "alarmDate": "1770003080278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825619", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:18", + "echoMap": {}, + "alarmNo": "1593543609", + "alarmDate": "1770003080311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825620", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:36", + "echoMap": {}, + "alarmNo": "1593543610", + "alarmDate": "1770003080312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825637", + "createdBy": null, + "createdTime": "2026-02-02 11:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:49", + "echoMap": {}, + "alarmNo": "1593543611", + "alarmDate": "1770003080963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825722", + "createdBy": null, + "createdTime": "2026-02-02 11:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:28", + "echoMap": {}, + "alarmNo": "1593543612", + "alarmDate": "1770003083250", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065826261", + "createdBy": null, + "createdTime": "2026-02-02 11:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:49", + "echoMap": {}, + "alarmNo": "1593543613", + "alarmDate": "1770003096331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133039360792616", + "createdBy": null, + "createdTime": "2026-02-02 11:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:45", + "echoMap": {}, + "alarmNo": "1593543614", + "alarmDate": "1770003098557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133039360792686", + "createdBy": null, + "createdTime": "2026-02-02 11:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:16", + "echoMap": {}, + "alarmNo": "1593543615", + "alarmDate": "1770003100360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133039360792689", + "createdBy": null, + "createdTime": "2026-02-02 11:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:59", + "echoMap": {}, + "alarmNo": "1593543616", + "alarmDate": "1770003100452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133043655759880", + "createdBy": null, + "createdTime": "2026-02-02 11:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:47", + "echoMap": {}, + "alarmNo": "1593543617", + "alarmDate": "1770003101440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133043655759924", + "createdBy": null, + "createdTime": "2026-02-02 11:31:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:49", + "echoMap": {}, + "alarmNo": "1593543618", + "alarmDate": "1770003102551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727346", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:08", + "echoMap": {}, + "alarmNo": "1593543619", + "alarmDate": "1770003109102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727347", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:56", + "echoMap": {}, + "alarmNo": "1593543620", + "alarmDate": "1770003109102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727355", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:55", + "echoMap": {}, + "alarmNo": "1593543621", + "alarmDate": "1770003109236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727361", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:51", + "echoMap": {}, + "alarmNo": "1593543622", + "alarmDate": "1770003109293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727373", + "createdBy": null, + "createdTime": "2026-02-02 11:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:22", + "echoMap": {}, + "alarmNo": "1593543623", + "alarmDate": "1770003109510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727490", + "createdBy": null, + "createdTime": "2026-02-02 11:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:54", + "echoMap": {}, + "alarmNo": "1593543624", + "alarmDate": "1770003112682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727775", + "createdBy": null, + "createdTime": "2026-02-02 11:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:39", + "echoMap": {}, + "alarmNo": "1593543625", + "alarmDate": "1770003120547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727816", + "createdBy": null, + "createdTime": "2026-02-02 11:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:15", + "echoMap": {}, + "alarmNo": "1593543626", + "alarmDate": "1770003121741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727879", + "createdBy": null, + "createdTime": "2026-02-02 11:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:34", + "echoMap": {}, + "alarmNo": "1593543627", + "alarmDate": "1770003123386", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727932", + "createdBy": null, + "createdTime": "2026-02-02 11:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:19", + "echoMap": {}, + "alarmNo": "1593543628", + "alarmDate": "1770003124847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727960", + "createdBy": null, + "createdTime": "2026-02-02 11:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:32", + "echoMap": {}, + "alarmNo": "1593543629", + "alarmDate": "1770003125390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950728079", + "createdBy": null, + "createdTime": "2026-02-02 11:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:43", + "echoMap": {}, + "alarmNo": "1593543630", + "alarmDate": "1770003128455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950728142", + "createdBy": null, + "createdTime": "2026-02-02 11:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:17", + "echoMap": {}, + "alarmNo": "1593543631", + "alarmDate": "1770003130149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245694517", + "createdBy": null, + "createdTime": "2026-02-02 11:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:40", + "echoMap": {}, + "alarmNo": "1593543632", + "alarmDate": "1770003132694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245694682", + "createdBy": null, + "createdTime": "2026-02-02 11:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:18", + "echoMap": {}, + "alarmNo": "1593543633", + "alarmDate": "1770003136844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245694757", + "createdBy": null, + "createdTime": "2026-02-02 11:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:20", + "echoMap": {}, + "alarmNo": "1593543634", + "alarmDate": "1770003138706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695005", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:40", + "echoMap": {}, + "alarmNo": "1593543635", + "alarmDate": "1770003679590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695010", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:33", + "echoMap": {}, + "alarmNo": "1593543636", + "alarmDate": "1770003679790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695014", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:24", + "echoMap": {}, + "alarmNo": "1593543637", + "alarmDate": "1770003680043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695025", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:23", + "echoMap": {}, + "alarmNo": "1593543638", + "alarmDate": "1770003680449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695063", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:28", + "echoMap": {}, + "alarmNo": "1593543639", + "alarmDate": "1770003682027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695141", + "createdBy": null, + "createdTime": "2026-02-02 11:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:44", + "echoMap": {}, + "alarmNo": "1593543640", + "alarmDate": "1770003684113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695391", + "createdBy": null, + "createdTime": "2026-02-02 11:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:32", + "echoMap": {}, + "alarmNo": "1593543641", + "alarmDate": "1770003691060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695430", + "createdBy": null, + "createdTime": "2026-02-02 11:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:39", + "echoMap": {}, + "alarmNo": "1593543642", + "alarmDate": "1770003691963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133056540661827", + "createdBy": null, + "createdTime": "2026-02-02 11:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:36", + "echoMap": {}, + "alarmNo": "1593543643", + "alarmDate": "1770003694836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133056540661942", + "createdBy": null, + "createdTime": "2026-02-02 11:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:45", + "echoMap": {}, + "alarmNo": "1593543644", + "alarmDate": "1770003698086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133060835629137", + "createdBy": null, + "createdTime": "2026-02-02 11:41:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:48", + "echoMap": {}, + "alarmNo": "1593543645", + "alarmDate": "1770003702175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596399", + "createdBy": null, + "createdTime": "2026-02-02 11:41:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:51", + "echoMap": {}, + "alarmNo": "1593543646", + "alarmDate": "1770003704841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596428", + "createdBy": null, + "createdTime": "2026-02-02 11:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "alarmNo": "1593543647", + "alarmDate": "1770003705631", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596470", + "createdBy": null, + "createdTime": "2026-02-02 11:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:48", + "echoMap": {}, + "alarmNo": "1593543648", + "alarmDate": "1770003706875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596684", + "createdBy": null, + "createdTime": "2026-02-02 11:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:06", + "echoMap": {}, + "alarmNo": "1593543649", + "alarmDate": "1770003713613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596724", + "createdBy": null, + "createdTime": "2026-02-02 11:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:17", + "echoMap": {}, + "alarmNo": "1593543650", + "alarmDate": "1770003714880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596800", + "createdBy": null, + "createdTime": "2026-02-02 11:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:04", + "echoMap": {}, + "alarmNo": "1593543651", + "alarmDate": "1770003717198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596810", + "createdBy": null, + "createdTime": "2026-02-02 11:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:52", + "echoMap": {}, + "alarmNo": "1593543652", + "alarmDate": "1770003717399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596861", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:00", + "echoMap": {}, + "alarmNo": "1593543653", + "alarmDate": "1770003718742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596909", + "createdBy": null, + "createdTime": "2026-02-02 11:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:57", + "echoMap": {}, + "alarmNo": "1593543654", + "alarmDate": "1770003720170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596941", + "createdBy": null, + "createdTime": "2026-02-02 11:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:16", + "echoMap": {}, + "alarmNo": "1593543655", + "alarmDate": "1770003721004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596972", + "createdBy": null, + "createdTime": "2026-02-02 11:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1593543656", + "alarmDate": "1770003721707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130597017", + "createdBy": null, + "createdTime": "2026-02-02 11:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:06", + "echoMap": {}, + "alarmNo": "1593543657", + "alarmDate": "1770003722907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130597279", + "createdBy": null, + "createdTime": "2026-02-02 11:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:08", + "echoMap": {}, + "alarmNo": "1593543658", + "alarmDate": "1770003730014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563659", + "createdBy": null, + "createdTime": "2026-02-02 11:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:16", + "echoMap": {}, + "alarmNo": "1593543659", + "alarmDate": "1770003732836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563693", + "createdBy": null, + "createdTime": "2026-02-02 11:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:24", + "echoMap": {}, + "alarmNo": "1593543660", + "alarmDate": "1770003733638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563782", + "createdBy": null, + "createdTime": "2026-02-02 11:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:39", + "echoMap": {}, + "alarmNo": "1593543661", + "alarmDate": "1770003735926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563833", + "createdBy": null, + "createdTime": "2026-02-02 11:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:46", + "echoMap": {}, + "alarmNo": "1593543662", + "alarmDate": "1770003737201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563923", + "createdBy": null, + "createdTime": "2026-02-02 11:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:18", + "echoMap": {}, + "alarmNo": "1593543663", + "alarmDate": "1770003740052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564137", + "createdBy": null, + "createdTime": "2026-02-02 11:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:34", + "echoMap": {}, + "alarmNo": "1593543664", + "alarmDate": "1770004279664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564196", + "createdBy": null, + "createdTime": "2026-02-02 11:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1593543665", + "alarmDate": "1770004282472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564354", + "createdBy": null, + "createdTime": "2026-02-02 11:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:35", + "echoMap": {}, + "alarmNo": "1593543666", + "alarmDate": "1770004286997", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564464", + "createdBy": null, + "createdTime": "2026-02-02 11:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:37", + "echoMap": {}, + "alarmNo": "1593543667", + "alarmDate": "1770004289811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564474", + "createdBy": null, + "createdTime": "2026-02-02 11:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:57", + "echoMap": {}, + "alarmNo": "1593543668", + "alarmDate": "1770004290029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133073720531024", + "createdBy": null, + "createdTime": "2026-02-02 11:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:15", + "echoMap": {}, + "alarmNo": "1593543669", + "alarmDate": "1770004296880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133078015498306", + "createdBy": null, + "createdTime": "2026-02-02 11:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:43", + "echoMap": {}, + "alarmNo": "1593543670", + "alarmDate": "1770004301949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466102", + "createdBy": null, + "createdTime": "2026-02-02 11:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:43", + "echoMap": {}, + "alarmNo": "1593543671", + "alarmDate": "1770004319482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466141", + "createdBy": null, + "createdTime": "2026-02-02 11:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:07", + "echoMap": {}, + "alarmNo": "1593543672", + "alarmDate": "1770004320531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466179", + "createdBy": null, + "createdTime": "2026-02-02 11:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:02", + "echoMap": {}, + "alarmNo": "1593543673", + "alarmDate": "1770004321428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466264", + "createdBy": null, + "createdTime": "2026-02-02 11:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1593543674", + "alarmDate": "1770004323718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466282", + "createdBy": null, + "createdTime": "2026-02-02 11:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:41", + "echoMap": {}, + "alarmNo": "1593543675", + "alarmDate": "1770004324156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466391", + "createdBy": null, + "createdTime": "2026-02-02 11:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:45", + "echoMap": {}, + "alarmNo": "1593543676", + "alarmDate": "1770004326903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605432850", + "createdBy": null, + "createdTime": "2026-02-02 11:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:38", + "echoMap": {}, + "alarmNo": "1593543677", + "alarmDate": "1770004331762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433012", + "createdBy": null, + "createdTime": "2026-02-02 11:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:22", + "echoMap": {}, + "alarmNo": "1593543678", + "alarmDate": "1770004336110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433055", + "createdBy": null, + "createdTime": "2026-02-02 11:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:24", + "echoMap": {}, + "alarmNo": "1593543679", + "alarmDate": "1770004337221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433104", + "createdBy": null, + "createdTime": "2026-02-02 11:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:48", + "echoMap": {}, + "alarmNo": "1593543680", + "alarmDate": "1770004338532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433316", + "createdBy": null, + "createdTime": "2026-02-02 11:59:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "alarmNo": "1593543681", + "alarmDate": "1770004769400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1016060058", + "deviceName": "[358](10)南京东1#轿厢", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433371", + "createdBy": null, + "createdTime": "2026-02-02 12:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:31", + "echoMap": {}, + "alarmNo": "1593543682", + "alarmDate": "1770004879051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433385", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:35", + "echoMap": {}, + "alarmNo": "1593543683", + "alarmDate": "1770004879919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433386", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:07", + "echoMap": {}, + "alarmNo": "1593543684", + "alarmDate": "1770004879943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433390", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:28", + "echoMap": {}, + "alarmNo": "1593543685", + "alarmDate": "1770004880119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433396", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:11", + "echoMap": {}, + "alarmNo": "1593543686", + "alarmDate": "1770004880377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433696", + "createdBy": null, + "createdTime": "2026-02-02 12:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:51", + "echoMap": {}, + "alarmNo": "1593543687", + "alarmDate": "1770004889829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433724", + "createdBy": null, + "createdTime": "2026-02-02 12:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:06", + "echoMap": {}, + "alarmNo": "1593543688", + "alarmDate": "1770004890514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133090900400166", + "createdBy": null, + "createdTime": "2026-02-02 12:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:46", + "echoMap": {}, + "alarmNo": "1593543689", + "alarmDate": "1770004894363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133090900400182", + "createdBy": null, + "createdTime": "2026-02-02 12:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:13", + "echoMap": {}, + "alarmNo": "1593543690", + "alarmDate": "1770004894755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133095195367430", + "createdBy": null, + "createdTime": "2026-02-02 12:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:52", + "echoMap": {}, + "alarmNo": "1593543691", + "alarmDate": "1770004900049", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490334998", + "createdBy": null, + "createdTime": "2026-02-02 12:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:51", + "echoMap": {}, + "alarmNo": "1593543692", + "alarmDate": "1770004909478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335000", + "createdBy": null, + "createdTime": "2026-02-02 12:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:01", + "echoMap": {}, + "alarmNo": "1593543693", + "alarmDate": "1770004909479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335074", + "createdBy": null, + "createdTime": "2026-02-02 12:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1593543694", + "alarmDate": "1770004911272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335172", + "createdBy": null, + "createdTime": "2026-02-02 12:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:27", + "echoMap": {}, + "alarmNo": "1593543695", + "alarmDate": "1770004913858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335394", + "createdBy": null, + "createdTime": "2026-02-02 12:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:46", + "echoMap": {}, + "alarmNo": "1593543696", + "alarmDate": "1770004919408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335444", + "createdBy": null, + "createdTime": "2026-02-02 12:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:54", + "echoMap": {}, + "alarmNo": "1593543697", + "alarmDate": "1770004920871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335516", + "createdBy": null, + "createdTime": "2026-02-02 12:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:04", + "echoMap": {}, + "alarmNo": "1593543698", + "alarmDate": "1770004922548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335588", + "createdBy": null, + "createdTime": "2026-02-02 12:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:11", + "echoMap": {}, + "alarmNo": "1593543699", + "alarmDate": "1770004924341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335615", + "createdBy": null, + "createdTime": "2026-02-02 12:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:12", + "echoMap": {}, + "alarmNo": "1593543700", + "alarmDate": "1770004924956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302264", + "createdBy": null, + "createdTime": "2026-02-02 12:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:16", + "echoMap": {}, + "alarmNo": "1593543701", + "alarmDate": "1770004934727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302267", + "createdBy": null, + "createdTime": "2026-02-02 12:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:29", + "echoMap": {}, + "alarmNo": "1593543702", + "alarmDate": "1770004934760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302321", + "createdBy": null, + "createdTime": "2026-02-02 12:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:35", + "echoMap": {}, + "alarmNo": "1593543703", + "alarmDate": "1770004936047", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302665", + "createdBy": null, + "createdTime": "2026-02-02 12:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:49", + "echoMap": {}, + "alarmNo": "1593543704", + "alarmDate": "1770005479363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302680", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:38", + "echoMap": {}, + "alarmNo": "1593543705", + "alarmDate": "1770005480173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302681", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:02", + "echoMap": {}, + "alarmNo": "1593543706", + "alarmDate": "1770005480175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302691", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:29", + "echoMap": {}, + "alarmNo": "1593543707", + "alarmDate": "1770005480490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302719", + "createdBy": null, + "createdTime": "2026-02-02 12:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:01", + "echoMap": {}, + "alarmNo": "1593543708", + "alarmDate": "1770005481477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302721", + "createdBy": null, + "createdTime": "2026-02-02 12:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:24", + "echoMap": {}, + "alarmNo": "1593543709", + "alarmDate": "1770005481534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785303039", + "createdBy": null, + "createdTime": "2026-02-02 12:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:31", + "echoMap": {}, + "alarmNo": "1593543710", + "alarmDate": "1770005489874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133108080269393", + "createdBy": null, + "createdTime": "2026-02-02 12:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:38", + "echoMap": {}, + "alarmNo": "1593543711", + "alarmDate": "1770005491920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060084", + "deviceName": "[401](10)南京东1#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133108080269683", + "createdBy": null, + "createdTime": "2026-02-02 12:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:06", + "echoMap": {}, + "alarmNo": "1593543712", + "alarmDate": "1770005499341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133112375236666", + "createdBy": null, + "createdTime": "2026-02-02 12:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:47", + "echoMap": {}, + "alarmNo": "1593543713", + "alarmDate": "1770005500978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670203905", + "createdBy": null, + "createdTime": "2026-02-02 12:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:58", + "echoMap": {}, + "alarmNo": "1593543714", + "alarmDate": "1770005502480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670203918", + "createdBy": null, + "createdTime": "2026-02-02 12:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:44", + "echoMap": {}, + "alarmNo": "1593543715", + "alarmDate": "1770005502715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204042", + "createdBy": null, + "createdTime": "2026-02-02 12:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:53", + "echoMap": {}, + "alarmNo": "1593543716", + "alarmDate": "1770005506027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204153", + "createdBy": null, + "createdTime": "2026-02-02 12:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:02", + "echoMap": {}, + "alarmNo": "1593543717", + "alarmDate": "1770005509042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204177", + "createdBy": null, + "createdTime": "2026-02-02 12:11:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:51", + "echoMap": {}, + "alarmNo": "1593543718", + "alarmDate": "1770005509552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204424", + "createdBy": null, + "createdTime": "2026-02-02 12:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:05", + "echoMap": {}, + "alarmNo": "1593543719", + "alarmDate": "1770005516615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204603", + "createdBy": null, + "createdTime": "2026-02-02 12:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:26", + "echoMap": {}, + "alarmNo": "1593543720", + "alarmDate": "1770005521824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204639", + "createdBy": null, + "createdTime": "2026-02-02 12:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:04", + "echoMap": {}, + "alarmNo": "1593543721", + "alarmDate": "1770005522771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204692", + "createdBy": null, + "createdTime": "2026-02-02 12:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:51", + "echoMap": {}, + "alarmNo": "1593543722", + "alarmDate": "1770005524389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204766", + "createdBy": null, + "createdTime": "2026-02-02 12:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:14", + "echoMap": {}, + "alarmNo": "1593543723", + "alarmDate": "1770005526572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204784", + "createdBy": null, + "createdTime": "2026-02-02 12:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1593543724", + "alarmDate": "1770005527125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204824", + "createdBy": null, + "createdTime": "2026-02-02 12:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:09", + "echoMap": {}, + "alarmNo": "1593543725", + "alarmDate": "1770005528180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171372", + "createdBy": null, + "createdTime": "2026-02-02 12:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:34", + "echoMap": {}, + "alarmNo": "1593543726", + "alarmDate": "1770005536226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171471", + "createdBy": null, + "createdTime": "2026-02-02 12:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:22", + "echoMap": {}, + "alarmNo": "1593543727", + "alarmDate": "1770005539680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171692", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:37", + "echoMap": {}, + "alarmNo": "1593543728", + "alarmDate": "1770006079540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171698", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:53", + "echoMap": {}, + "alarmNo": "1593543729", + "alarmDate": "1770006079791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171700", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1593543730", + "alarmDate": "1770006079907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171704", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1593543731", + "alarmDate": "1770006079944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171706", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:46", + "echoMap": {}, + "alarmNo": "1593543732", + "alarmDate": "1770006080034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171709", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1593543733", + "alarmDate": "1770006080174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171720", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:28", + "echoMap": {}, + "alarmNo": "1593543734", + "alarmDate": "1770006080474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171730", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:28", + "echoMap": {}, + "alarmNo": "1593543735", + "alarmDate": "1770006080767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171735", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1593543736", + "alarmDate": "1770006080910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171771", + "createdBy": null, + "createdTime": "2026-02-02 12:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:23", + "echoMap": {}, + "alarmNo": "1593543737", + "alarmDate": "1770006081978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171797", + "createdBy": null, + "createdTime": "2026-02-02 12:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:53", + "echoMap": {}, + "alarmNo": "1593543738", + "alarmDate": "1770006082595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133125260138534", + "createdBy": null, + "createdTime": "2026-02-02 12:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1593543739", + "alarmDate": "1770006094808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133125260138663", + "createdBy": null, + "createdTime": "2026-02-02 12:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:53", + "echoMap": {}, + "alarmNo": "1593543740", + "alarmDate": "1770006098625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133129555105795", + "createdBy": null, + "createdTime": "2026-02-02 12:21:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1593543741", + "alarmDate": "1770006099871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133129555105832", + "createdBy": null, + "createdTime": "2026-02-02 12:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:27", + "echoMap": {}, + "alarmNo": "1593543742", + "alarmDate": "1770006100853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073251", + "createdBy": null, + "createdTime": "2026-02-02 12:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1593543743", + "alarmDate": "1770006107764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073455", + "createdBy": null, + "createdTime": "2026-02-02 12:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:01", + "echoMap": {}, + "alarmNo": "1593543744", + "alarmDate": "1770006113799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073481", + "createdBy": null, + "createdTime": "2026-02-02 12:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:56", + "echoMap": {}, + "alarmNo": "1593543745", + "alarmDate": "1770006114533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073585", + "createdBy": null, + "createdTime": "2026-02-02 12:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:28", + "echoMap": {}, + "alarmNo": "1593543746", + "alarmDate": "1770006117582", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073908", + "createdBy": null, + "createdTime": "2026-02-02 12:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:08", + "echoMap": {}, + "alarmNo": "1593543747", + "alarmDate": "1770006127280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850074044", + "createdBy": null, + "createdTime": "2026-02-02 12:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:29", + "echoMap": {}, + "alarmNo": "1593543748", + "alarmDate": "1770006131286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850074062", + "createdBy": null, + "createdTime": "2026-02-02 12:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:17", + "echoMap": {}, + "alarmNo": "1593543749", + "alarmDate": "1770006131621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040804", + "createdBy": null, + "createdTime": "2026-02-02 12:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:53", + "echoMap": {}, + "alarmNo": "1593543750", + "alarmDate": "1770006678906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040808", + "createdBy": null, + "createdTime": "2026-02-02 12:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:25", + "echoMap": {}, + "alarmNo": "1593543751", + "alarmDate": "1770006679075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040818", + "createdBy": null, + "createdTime": "2026-02-02 12:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:36", + "echoMap": {}, + "alarmNo": "1593543752", + "alarmDate": "1770006679851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040836", + "createdBy": null, + "createdTime": "2026-02-02 12:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:05", + "echoMap": {}, + "alarmNo": "1593543753", + "alarmDate": "1770006680786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040887", + "createdBy": null, + "createdTime": "2026-02-02 12:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:32", + "echoMap": {}, + "alarmNo": "1593543754", + "alarmDate": "1770006682705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040923", + "createdBy": null, + "createdTime": "2026-02-02 12:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:25", + "echoMap": {}, + "alarmNo": "1593543755", + "alarmDate": "1770006683624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007734", + "createdBy": null, + "createdTime": "2026-02-02 12:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:46", + "echoMap": {}, + "alarmNo": "1593543756", + "alarmDate": "1770006699786", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007756", + "createdBy": null, + "createdTime": "2026-02-02 12:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:54", + "echoMap": {}, + "alarmNo": "1593543757", + "alarmDate": "1770006700368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007762", + "createdBy": null, + "createdTime": "2026-02-02 12:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:17", + "echoMap": {}, + "alarmNo": "1593543758", + "alarmDate": "1770006700567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007786", + "createdBy": null, + "createdTime": "2026-02-02 12:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:18", + "echoMap": {}, + "alarmNo": "1593543759", + "alarmDate": "1770006701138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133146734975017", + "createdBy": null, + "createdTime": "2026-02-02 12:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:06", + "echoMap": {}, + "alarmNo": "1593543760", + "alarmDate": "1770006705713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133146734975036", + "createdBy": null, + "createdTime": "2026-02-02 12:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:59", + "echoMap": {}, + "alarmNo": "1593543761", + "alarmDate": "1770006706139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133146734975048", + "createdBy": null, + "createdTime": "2026-02-02 12:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:48", + "echoMap": {}, + "alarmNo": "1593543762", + "alarmDate": "1770006706456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942425", + "createdBy": null, + "createdTime": "2026-02-02 12:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:22", + "echoMap": {}, + "alarmNo": "1593543763", + "alarmDate": "1770006711732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942473", + "createdBy": null, + "createdTime": "2026-02-02 12:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:02", + "echoMap": {}, + "alarmNo": "1593543764", + "alarmDate": "1770006712977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942677", + "createdBy": null, + "createdTime": "2026-02-02 12:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:13", + "echoMap": {}, + "alarmNo": "1593543765", + "alarmDate": "1770006718642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942894", + "createdBy": null, + "createdTime": "2026-02-02 12:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:15", + "echoMap": {}, + "alarmNo": "1593543766", + "alarmDate": "1770006724771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942903", + "createdBy": null, + "createdTime": "2026-02-02 12:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:12", + "echoMap": {}, + "alarmNo": "1593543767", + "alarmDate": "1770006724962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942942", + "createdBy": null, + "createdTime": "2026-02-02 12:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:14", + "echoMap": {}, + "alarmNo": "1593543768", + "alarmDate": "1770006725931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029943078", + "createdBy": null, + "createdTime": "2026-02-02 12:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:22", + "echoMap": {}, + "alarmNo": "1593543769", + "alarmDate": "1770006729746", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029943175", + "createdBy": null, + "createdTime": "2026-02-02 12:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:10", + "echoMap": {}, + "alarmNo": "1593543770", + "alarmDate": "1770006732334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029943289", + "createdBy": null, + "createdTime": "2026-02-02 12:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:17", + "echoMap": {}, + "alarmNo": "1593543771", + "alarmDate": "1770006735548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909647", + "createdBy": null, + "createdTime": "2026-02-02 12:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:21", + "echoMap": {}, + "alarmNo": "1593543772", + "alarmDate": "1770006738052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909662", + "createdBy": null, + "createdTime": "2026-02-02 12:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:35", + "echoMap": {}, + "alarmNo": "1593543773", + "alarmDate": "1770006738386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909664", + "createdBy": null, + "createdTime": "2026-02-02 12:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:38", + "echoMap": {}, + "alarmNo": "1593543774", + "alarmDate": "1770006738419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909678", + "createdBy": null, + "createdTime": "2026-02-02 12:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:59", + "echoMap": {}, + "alarmNo": "1593543775", + "alarmDate": "1770006738829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909910", + "createdBy": null, + "createdTime": "2026-02-02 12:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:11", + "echoMap": {}, + "alarmNo": "1593543776", + "alarmDate": "1770007279058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909916", + "createdBy": null, + "createdTime": "2026-02-02 12:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:52", + "echoMap": {}, + "alarmNo": "1593543777", + "alarmDate": "1770007279535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910017", + "createdBy": null, + "createdTime": "2026-02-02 12:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:05", + "echoMap": {}, + "alarmNo": "1593543778", + "alarmDate": "1770007283666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910219", + "createdBy": null, + "createdTime": "2026-02-02 12:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:00", + "echoMap": {}, + "alarmNo": "1593543779", + "alarmDate": "1770007289702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910220", + "createdBy": null, + "createdTime": "2026-02-02 12:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:31", + "echoMap": {}, + "alarmNo": "1593543780", + "alarmDate": "1770007289735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910269", + "createdBy": null, + "createdTime": "2026-02-02 12:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:50", + "echoMap": {}, + "alarmNo": "1593543781", + "alarmDate": "1770007291021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910426", + "createdBy": null, + "createdTime": "2026-02-02 12:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:43", + "echoMap": {}, + "alarmNo": "1593543782", + "alarmDate": "1770007295004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910442", + "createdBy": null, + "createdTime": "2026-02-02 12:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:03", + "echoMap": {}, + "alarmNo": "1593543783", + "alarmDate": "1770007295371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910539", + "createdBy": null, + "createdTime": "2026-02-02 12:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:39", + "echoMap": {}, + "alarmNo": "1593543784", + "alarmDate": "1770007298028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619876885", + "createdBy": null, + "createdTime": "2026-02-02 12:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:46", + "echoMap": {}, + "alarmNo": "1593543785", + "alarmDate": "1770007299982", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619876906", + "createdBy": null, + "createdTime": "2026-02-02 12:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:41", + "echoMap": {}, + "alarmNo": "1593543786", + "alarmDate": "1770007300415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619876907", + "createdBy": null, + "createdTime": "2026-02-02 12:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:53", + "echoMap": {}, + "alarmNo": "1593543787", + "alarmDate": "1770007300416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619877022", + "createdBy": null, + "createdTime": "2026-02-02 12:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:04", + "echoMap": {}, + "alarmNo": "1593543788", + "alarmDate": "1770007303287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133163914844216", + "createdBy": null, + "createdTime": "2026-02-02 12:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:22", + "echoMap": {}, + "alarmNo": "1593543789", + "alarmDate": "1770007310242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209811479", + "createdBy": null, + "createdTime": "2026-02-02 12:41:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:58", + "echoMap": {}, + "alarmNo": "1593543790", + "alarmDate": "1770007312117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209811499", + "createdBy": null, + "createdTime": "2026-02-02 12:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:54", + "echoMap": {}, + "alarmNo": "1593543791", + "alarmDate": "1770007312546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209811962", + "createdBy": null, + "createdTime": "2026-02-02 12:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:54", + "echoMap": {}, + "alarmNo": "1593543792", + "alarmDate": "1770007325495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209812181", + "createdBy": null, + "createdTime": "2026-02-02 12:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:32", + "echoMap": {}, + "alarmNo": "1593543793", + "alarmDate": "1770007332151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209812309", + "createdBy": null, + "createdTime": "2026-02-02 12:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:28", + "echoMap": {}, + "alarmNo": "1593543794", + "alarmDate": "1770007335983", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209812389", + "createdBy": null, + "createdTime": "2026-02-02 12:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:08", + "echoMap": {}, + "alarmNo": "1593543795", + "alarmDate": "1770007338387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778915", + "createdBy": null, + "createdTime": "2026-02-02 12:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:03", + "echoMap": {}, + "alarmNo": "1593543796", + "alarmDate": "1770007879141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778926", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:41", + "echoMap": {}, + "alarmNo": "1593543797", + "alarmDate": "1770007880041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778929", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:53", + "echoMap": {}, + "alarmNo": "1593543798", + "alarmDate": "1770007880244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778932", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:41", + "echoMap": {}, + "alarmNo": "1593543799", + "alarmDate": "1770007880364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778934", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:07", + "echoMap": {}, + "alarmNo": "1593543800", + "alarmDate": "1770007880461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778947", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:27", + "echoMap": {}, + "alarmNo": "1593543801", + "alarmDate": "1770007880704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778950", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:42", + "echoMap": {}, + "alarmNo": "1593543802", + "alarmDate": "1770007880796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778951", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:30", + "echoMap": {}, + "alarmNo": "1593543803", + "alarmDate": "1770007880866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779521", + "createdBy": null, + "createdTime": "2026-02-02 12:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:38", + "echoMap": {}, + "alarmNo": "1593543804", + "alarmDate": "1770007896722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779671", + "createdBy": null, + "createdTime": "2026-02-02 12:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:42", + "echoMap": {}, + "alarmNo": "1593543805", + "alarmDate": "1770007900946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779734", + "createdBy": null, + "createdTime": "2026-02-02 12:51:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:51", + "echoMap": {}, + "alarmNo": "1593543806", + "alarmDate": "1770007902732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779775", + "createdBy": null, + "createdTime": "2026-02-02 12:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:11", + "echoMap": {}, + "alarmNo": "1593543807", + "alarmDate": "1770007903935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133176799746064", + "createdBy": null, + "createdTime": "2026-02-02 12:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:58", + "echoMap": {}, + "alarmNo": "1593543808", + "alarmDate": "1770007904395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133176799746144", + "createdBy": null, + "createdTime": "2026-02-02 12:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:45", + "echoMap": {}, + "alarmNo": "1593543809", + "alarmDate": "1770007906715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133176799746243", + "createdBy": null, + "createdTime": "2026-02-02 12:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:05", + "echoMap": {}, + "alarmNo": "1593543810", + "alarmDate": "1770007909437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133181094713421", + "createdBy": null, + "createdTime": "2026-02-02 12:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:15", + "echoMap": {}, + "alarmNo": "1593543811", + "alarmDate": "1770007912208", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389680845", + "createdBy": null, + "createdTime": "2026-02-02 12:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:11", + "echoMap": {}, + "alarmNo": "1593543812", + "alarmDate": "1770007919120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389680858", + "createdBy": null, + "createdTime": "2026-02-02 12:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:11", + "echoMap": {}, + "alarmNo": "1593543813", + "alarmDate": "1770007919471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389680900", + "createdBy": null, + "createdTime": "2026-02-02 12:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:06", + "echoMap": {}, + "alarmNo": "1593543814", + "alarmDate": "1770007920782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681038", + "createdBy": null, + "createdTime": "2026-02-02 12:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:06", + "echoMap": {}, + "alarmNo": "1593543815", + "alarmDate": "1770007924583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681043", + "createdBy": null, + "createdTime": "2026-02-02 12:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:06", + "echoMap": {}, + "alarmNo": "1593543816", + "alarmDate": "1770007924699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681120", + "createdBy": null, + "createdTime": "2026-02-02 12:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:14", + "echoMap": {}, + "alarmNo": "1593543817", + "alarmDate": "1770007926790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681336", + "createdBy": null, + "createdTime": "2026-02-02 12:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:14", + "echoMap": {}, + "alarmNo": "1593543818", + "alarmDate": "1770007933168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681346", + "createdBy": null, + "createdTime": "2026-02-02 12:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:54", + "echoMap": {}, + "alarmNo": "1593543819", + "alarmDate": "1770007933552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681380", + "createdBy": null, + "createdTime": "2026-02-02 12:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:53", + "echoMap": {}, + "alarmNo": "1593543820", + "alarmDate": "1770007934405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681442", + "createdBy": null, + "createdTime": "2026-02-02 12:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "1593543821", + "alarmDate": "1770007936302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648028", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "1593543822", + "alarmDate": "1770008479680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648032", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:22", + "echoMap": {}, + "alarmNo": "1593543823", + "alarmDate": "1770008479884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648042", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:23", + "echoMap": {}, + "alarmNo": "1593543824", + "alarmDate": "1770008480359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648067", + "createdBy": null, + "createdTime": "2026-02-02 13:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:34", + "echoMap": {}, + "alarmNo": "1593543825", + "alarmDate": "1770008481444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648082", + "createdBy": null, + "createdTime": "2026-02-02 13:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:08", + "echoMap": {}, + "alarmNo": "1593543826", + "alarmDate": "1770008482054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648110", + "createdBy": null, + "createdTime": "2026-02-02 13:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:42", + "echoMap": {}, + "alarmNo": "1593543827", + "alarmDate": "1770008482704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648305", + "createdBy": null, + "createdTime": "2026-02-02 13:01:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "alarmNo": "1593543828", + "alarmDate": "1770008488457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648528", + "createdBy": null, + "createdTime": "2026-02-02 13:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:46", + "echoMap": {}, + "alarmNo": "1593543829", + "alarmDate": "1770008494403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648610", + "createdBy": null, + "createdTime": "2026-02-02 13:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:45", + "echoMap": {}, + "alarmNo": "1593543830", + "alarmDate": "1770008496918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648838", + "createdBy": null, + "createdTime": "2026-02-02 13:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:57", + "echoMap": {}, + "alarmNo": "1593543831", + "alarmDate": "1770008504328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648855", + "createdBy": null, + "createdTime": "2026-02-02 13:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:05", + "echoMap": {}, + "alarmNo": "1593543832", + "alarmDate": "1770008504701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648934", + "createdBy": null, + "createdTime": "2026-02-02 13:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:48", + "echoMap": {}, + "alarmNo": "1593543833", + "alarmDate": "1770008507240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133193979615329", + "createdBy": null, + "createdTime": "2026-02-02 13:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:43", + "echoMap": {}, + "alarmNo": "1593543834", + "alarmDate": "1770008510891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133198274582620", + "createdBy": null, + "createdTime": "2026-02-02 13:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:02", + "echoMap": {}, + "alarmNo": "1593543835", + "alarmDate": "1770008514747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569549967", + "createdBy": null, + "createdTime": "2026-02-02 13:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:11", + "echoMap": {}, + "alarmNo": "1593543836", + "alarmDate": "1770008519431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550068", + "createdBy": null, + "createdTime": "2026-02-02 13:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:08", + "echoMap": {}, + "alarmNo": "1593543837", + "alarmDate": "1770008522324", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550106", + "createdBy": null, + "createdTime": "2026-02-02 13:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:11", + "echoMap": {}, + "alarmNo": "1593543838", + "alarmDate": "1770008523313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550132", + "createdBy": null, + "createdTime": "2026-02-02 13:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1593543839", + "alarmDate": "1770008524060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550168", + "createdBy": null, + "createdTime": "2026-02-02 13:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:13", + "echoMap": {}, + "alarmNo": "1593543840", + "alarmDate": "1770008524857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550398", + "createdBy": null, + "createdTime": "2026-02-02 13:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:50", + "echoMap": {}, + "alarmNo": "1593543841", + "alarmDate": "1770008531420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550402", + "createdBy": null, + "createdTime": "2026-02-02 13:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:25", + "echoMap": {}, + "alarmNo": "1593543842", + "alarmDate": "1770008531511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550478", + "createdBy": null, + "createdTime": "2026-02-02 13:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1593543843", + "alarmDate": "1770008533615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550486", + "createdBy": null, + "createdTime": "2026-02-02 13:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:46", + "echoMap": {}, + "alarmNo": "1593543844", + "alarmDate": "1770008533790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550512", + "createdBy": null, + "createdTime": "2026-02-02 13:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:15", + "echoMap": {}, + "alarmNo": "1593543845", + "alarmDate": "1770008534424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550602", + "createdBy": null, + "createdTime": "2026-02-02 13:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:30", + "echoMap": {}, + "alarmNo": "1593543846", + "alarmDate": "1770008536924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550643", + "createdBy": null, + "createdTime": "2026-02-02 13:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:42", + "echoMap": {}, + "alarmNo": "1593543847", + "alarmDate": "1770008538048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517173", + "createdBy": null, + "createdTime": "2026-02-02 13:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:23", + "echoMap": {}, + "alarmNo": "1593543848", + "alarmDate": "1770009079125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517192", + "createdBy": null, + "createdTime": "2026-02-02 13:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:27", + "echoMap": {}, + "alarmNo": "1593543849", + "alarmDate": "1770009080358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517266", + "createdBy": null, + "createdTime": "2026-02-02 13:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:31", + "echoMap": {}, + "alarmNo": "1593543850", + "alarmDate": "1770009083090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517355", + "createdBy": null, + "createdTime": "2026-02-02 13:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:27", + "echoMap": {}, + "alarmNo": "1593543851", + "alarmDate": "1770009085636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517416", + "createdBy": null, + "createdTime": "2026-02-02 13:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:33", + "echoMap": {}, + "alarmNo": "1593543852", + "alarmDate": "1770009087514", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517577", + "createdBy": null, + "createdTime": "2026-02-02 13:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:33", + "echoMap": {}, + "alarmNo": "1593543853", + "alarmDate": "1770009092302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517740", + "createdBy": null, + "createdTime": "2026-02-02 13:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:50", + "echoMap": {}, + "alarmNo": "1593543854", + "alarmDate": "1770009097077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517925", + "createdBy": null, + "createdTime": "2026-02-02 13:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:56", + "echoMap": {}, + "alarmNo": "1593543855", + "alarmDate": "1770009103197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517943", + "createdBy": null, + "createdTime": "2026-02-02 13:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:00", + "echoMap": {}, + "alarmNo": "1593543856", + "alarmDate": "1770009103769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517987", + "createdBy": null, + "createdTime": "2026-02-02 13:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:52", + "echoMap": {}, + "alarmNo": "1593543857", + "alarmDate": "1770009105109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864518045", + "createdBy": null, + "createdTime": "2026-02-02 13:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:47", + "echoMap": {}, + "alarmNo": "1593543858", + "alarmDate": "1770009106972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451735", + "createdBy": null, + "createdTime": "2026-02-02 13:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:38", + "echoMap": {}, + "alarmNo": "1593543859", + "alarmDate": "1770009116137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451745", + "createdBy": null, + "createdTime": "2026-02-02 13:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:16", + "echoMap": {}, + "alarmNo": "1593543860", + "alarmDate": "1770009116402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451751", + "createdBy": null, + "createdTime": "2026-02-02 13:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:38", + "echoMap": {}, + "alarmNo": "1593543861", + "alarmDate": "1770009116494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451803", + "createdBy": null, + "createdTime": "2026-02-02 13:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:42", + "echoMap": {}, + "alarmNo": "1593543862", + "alarmDate": "1770009118042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419079", + "createdBy": null, + "createdTime": "2026-02-02 13:12:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:01", + "echoMap": {}, + "alarmNo": "1593543863", + "alarmDate": "1770009120461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419166", + "createdBy": null, + "createdTime": "2026-02-02 13:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543864", + "alarmDate": "1770009123030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419247", + "createdBy": null, + "createdTime": "2026-02-02 13:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:38", + "echoMap": {}, + "alarmNo": "1593543865", + "alarmDate": "1770009125267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419558", + "createdBy": null, + "createdTime": "2026-02-02 13:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:31", + "echoMap": {}, + "alarmNo": "1593543866", + "alarmDate": "1770009133733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419579", + "createdBy": null, + "createdTime": "2026-02-02 13:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:46", + "echoMap": {}, + "alarmNo": "1593543867", + "alarmDate": "1770009134268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419976", + "createdBy": null, + "createdTime": "2026-02-02 13:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:41", + "echoMap": {}, + "alarmNo": "1593543868", + "alarmDate": "1770009679405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749420003", + "createdBy": null, + "createdTime": "2026-02-02 13:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:22", + "echoMap": {}, + "alarmNo": "1593543869", + "alarmDate": "1770009681216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749420006", + "createdBy": null, + "createdTime": "2026-02-02 13:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:30", + "echoMap": {}, + "alarmNo": "1593543870", + "alarmDate": "1770009681274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386324", + "createdBy": null, + "createdTime": "2026-02-02 13:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:40", + "echoMap": {}, + "alarmNo": "1593543871", + "alarmDate": "1770009682818", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386325", + "createdBy": null, + "createdTime": "2026-02-02 13:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:08", + "echoMap": {}, + "alarmNo": "1593543872", + "alarmDate": "1770009682818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386328", + "createdBy": null, + "createdTime": "2026-02-02 13:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:11", + "echoMap": {}, + "alarmNo": "1593543873", + "alarmDate": "1770009682851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386393", + "createdBy": null, + "createdTime": "2026-02-02 13:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:18", + "echoMap": {}, + "alarmNo": "1593543874", + "alarmDate": "1770009684687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386545", + "createdBy": null, + "createdTime": "2026-02-02 13:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:36", + "echoMap": {}, + "alarmNo": "1593543875", + "alarmDate": "1770009688794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387022", + "createdBy": null, + "createdTime": "2026-02-02 13:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:42", + "echoMap": {}, + "alarmNo": "1593543876", + "alarmDate": "1770009700690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387089", + "createdBy": null, + "createdTime": "2026-02-02 13:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:25", + "echoMap": {}, + "alarmNo": "1593543877", + "alarmDate": "1770009702559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387212", + "createdBy": null, + "createdTime": "2026-02-02 13:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:04", + "echoMap": {}, + "alarmNo": "1593543878", + "alarmDate": "1770009705877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387323", + "createdBy": null, + "createdTime": "2026-02-02 13:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:10", + "echoMap": {}, + "alarmNo": "1593543879", + "alarmDate": "1770009709328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133228339353667", + "createdBy": null, + "createdTime": "2026-02-02 13:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:34", + "echoMap": {}, + "alarmNo": "1593543880", + "alarmDate": "1770009711435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133228339353685", + "createdBy": null, + "createdTime": "2026-02-02 13:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:34", + "echoMap": {}, + "alarmNo": "1593543881", + "alarmDate": "1770009711873", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133232634320984", + "createdBy": null, + "createdTime": "2026-02-02 13:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:51", + "echoMap": {}, + "alarmNo": "1593543882", + "alarmDate": "1770009717689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288223", + "createdBy": null, + "createdTime": "2026-02-02 13:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:00", + "echoMap": {}, + "alarmNo": "1593543883", + "alarmDate": "1770009719071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288236", + "createdBy": null, + "createdTime": "2026-02-02 13:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543884", + "alarmDate": "1770009719355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288399", + "createdBy": null, + "createdTime": "2026-02-02 13:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:11", + "echoMap": {}, + "alarmNo": "1593543885", + "alarmDate": "1770009723788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288464", + "createdBy": null, + "createdTime": "2026-02-02 13:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:13", + "echoMap": {}, + "alarmNo": "1593543886", + "alarmDate": "1770009725370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288468", + "createdBy": null, + "createdTime": "2026-02-02 13:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:14", + "echoMap": {}, + "alarmNo": "1593543887", + "alarmDate": "1770009725461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288709", + "createdBy": null, + "createdTime": "2026-02-02 13:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:34", + "echoMap": {}, + "alarmNo": "1593543888", + "alarmDate": "1770009731583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288949", + "createdBy": null, + "createdTime": "2026-02-02 13:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:35", + "echoMap": {}, + "alarmNo": "1593543889", + "alarmDate": "1770009738258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929289206", + "createdBy": null, + "createdTime": "2026-02-02 13:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:24", + "echoMap": {}, + "alarmNo": "1593543890", + "alarmDate": "1770010278882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929289212", + "createdBy": null, + "createdTime": "2026-02-02 13:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:33", + "echoMap": {}, + "alarmNo": "1593543891", + "alarmDate": "1770010279263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255497", + "createdBy": null, + "createdTime": "2026-02-02 13:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543892", + "alarmDate": "1770010279990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255499", + "createdBy": null, + "createdTime": "2026-02-02 13:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:24", + "echoMap": {}, + "alarmNo": "1593543893", + "alarmDate": "1770010280037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255502", + "createdBy": null, + "createdTime": "2026-02-02 13:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:29", + "echoMap": {}, + "alarmNo": "1593543894", + "alarmDate": "1770010280154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255526", + "createdBy": null, + "createdTime": "2026-02-02 13:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543895", + "alarmDate": "1770010280975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255527", + "createdBy": null, + "createdTime": "2026-02-02 13:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:22", + "echoMap": {}, + "alarmNo": "1593543896", + "alarmDate": "1770010280975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255532", + "createdBy": null, + "createdTime": "2026-02-02 13:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:25", + "echoMap": {}, + "alarmNo": "1593543897", + "alarmDate": "1770010281116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255657", + "createdBy": null, + "createdTime": "2026-02-02 13:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:30", + "echoMap": {}, + "alarmNo": "1593543898", + "alarmDate": "1770010284314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256132", + "createdBy": null, + "createdTime": "2026-02-02 13:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:31", + "echoMap": {}, + "alarmNo": "1593543899", + "alarmDate": "1770010296653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256194", + "createdBy": null, + "createdTime": "2026-02-02 13:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:46", + "echoMap": {}, + "alarmNo": "1593543900", + "alarmDate": "1770010298238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256449", + "createdBy": null, + "createdTime": "2026-02-02 13:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:00", + "echoMap": {}, + "alarmNo": "1593543901", + "alarmDate": "1770010306104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256471", + "createdBy": null, + "createdTime": "2026-02-02 13:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:33", + "echoMap": {}, + "alarmNo": "1593543902", + "alarmDate": "1770010306759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133245519222788", + "createdBy": null, + "createdTime": "2026-02-02 13:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:22", + "echoMap": {}, + "alarmNo": "1593543903", + "alarmDate": "1770010308008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133245519222804", + "createdBy": null, + "createdTime": "2026-02-02 13:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:21", + "echoMap": {}, + "alarmNo": "1593543904", + "alarmDate": "1770010308366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133245519222871", + "createdBy": null, + "createdTime": "2026-02-02 13:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:51", + "echoMap": {}, + "alarmNo": "1593543905", + "alarmDate": "1770010310145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133249814190112", + "createdBy": null, + "createdTime": "2026-02-02 13:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:05", + "echoMap": {}, + "alarmNo": "1593543906", + "alarmDate": "1770010312640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157385", + "createdBy": null, + "createdTime": "2026-02-02 13:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:08", + "echoMap": {}, + "alarmNo": "1593543907", + "alarmDate": "1770010315123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157677", + "createdBy": null, + "createdTime": "2026-02-02 13:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:10", + "echoMap": {}, + "alarmNo": "1593543908", + "alarmDate": "1770010323175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157733", + "createdBy": null, + "createdTime": "2026-02-02 13:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:11", + "echoMap": {}, + "alarmNo": "1593543909", + "alarmDate": "1770010324714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157758", + "createdBy": null, + "createdTime": "2026-02-02 13:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:11", + "echoMap": {}, + "alarmNo": "1593543910", + "alarmDate": "1770010325264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157945", + "createdBy": null, + "createdTime": "2026-02-02 13:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:11", + "echoMap": {}, + "alarmNo": "1593543911", + "alarmDate": "1770010330307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109158037", + "createdBy": null, + "createdTime": "2026-02-02 13:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:14", + "echoMap": {}, + "alarmNo": "1593543912", + "alarmDate": "1770010332995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124723", + "createdBy": null, + "createdTime": "2026-02-02 13:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:30", + "echoMap": {}, + "alarmNo": "1593543913", + "alarmDate": "1770010878774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124724", + "createdBy": null, + "createdTime": "2026-02-02 13:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:24", + "echoMap": {}, + "alarmNo": "1593543914", + "alarmDate": "1770010878824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124736", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:31", + "echoMap": {}, + "alarmNo": "1593543915", + "alarmDate": "1770010879702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124741", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:41", + "echoMap": {}, + "alarmNo": "1593543916", + "alarmDate": "1770010879826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124744", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:27", + "echoMap": {}, + "alarmNo": "1593543917", + "alarmDate": "1770010879925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124753", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:23", + "echoMap": {}, + "alarmNo": "1593543918", + "alarmDate": "1770010880317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124757", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:23", + "echoMap": {}, + "alarmNo": "1593543919", + "alarmDate": "1770010880443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124765", + "createdBy": null, + "createdTime": "2026-02-02 13:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:46", + "echoMap": {}, + "alarmNo": "1593543920", + "alarmDate": "1770010880693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124766", + "createdBy": null, + "createdTime": "2026-02-02 13:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:23", + "echoMap": {}, + "alarmNo": "1593543921", + "alarmDate": "1770010880695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124816", + "createdBy": null, + "createdTime": "2026-02-02 13:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:05", + "echoMap": {}, + "alarmNo": "1593543922", + "alarmDate": "1770010882380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124918", + "createdBy": null, + "createdTime": "2026-02-02 13:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:26", + "echoMap": {}, + "alarmNo": "1593543923", + "alarmDate": "1770010885194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125077", + "createdBy": null, + "createdTime": "2026-02-02 13:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:46", + "echoMap": {}, + "alarmNo": "1593543924", + "alarmDate": "1770010889660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125120", + "createdBy": null, + "createdTime": "2026-02-02 13:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:35", + "echoMap": {}, + "alarmNo": "1593543925", + "alarmDate": "1770010890752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125266", + "createdBy": null, + "createdTime": "2026-02-02 13:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:48", + "echoMap": {}, + "alarmNo": "1593543926", + "alarmDate": "1770010894531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125301", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:41", + "echoMap": {}, + "alarmNo": "1593543927", + "alarmDate": "1770010895507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125328", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:43", + "echoMap": {}, + "alarmNo": "1593543928", + "alarmDate": "1770010896305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125355", + "createdBy": null, + "createdTime": "2026-02-02 13:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:16", + "echoMap": {}, + "alarmNo": "1593543929", + "alarmDate": "1770010896903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125583", + "createdBy": null, + "createdTime": "2026-02-02 13:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:58", + "echoMap": {}, + "alarmNo": "1593543930", + "alarmDate": "1770010903082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133262699092060", + "createdBy": null, + "createdTime": "2026-02-02 13:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:12", + "echoMap": {}, + "alarmNo": "1593543931", + "alarmDate": "1770010909070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133266994059367", + "createdBy": null, + "createdTime": "2026-02-02 13:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:59", + "echoMap": {}, + "alarmNo": "1593543932", + "alarmDate": "1770010912885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026690", + "createdBy": null, + "createdTime": "2026-02-02 13:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:04", + "echoMap": {}, + "alarmNo": "1593543933", + "alarmDate": "1770010916822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026757", + "createdBy": null, + "createdTime": "2026-02-02 13:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:05", + "echoMap": {}, + "alarmNo": "1593543934", + "alarmDate": "1770010918709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026822", + "createdBy": null, + "createdTime": "2026-02-02 13:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:42", + "echoMap": {}, + "alarmNo": "1593543935", + "alarmDate": "1770010920562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026900", + "createdBy": null, + "createdTime": "2026-02-02 13:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:18", + "echoMap": {}, + "alarmNo": "1593543936", + "alarmDate": "1770010922749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026955", + "createdBy": null, + "createdTime": "2026-02-02 13:42:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:04", + "echoMap": {}, + "alarmNo": "1593543937", + "alarmDate": "1770010924268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027187", + "createdBy": null, + "createdTime": "2026-02-02 13:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:12", + "echoMap": {}, + "alarmNo": "1593543938", + "alarmDate": "1770010931448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027263", + "createdBy": null, + "createdTime": "2026-02-02 13:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:14", + "echoMap": {}, + "alarmNo": "1593543939", + "alarmDate": "1770010933677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027314", + "createdBy": null, + "createdTime": "2026-02-02 13:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:14", + "echoMap": {}, + "alarmNo": "1593543940", + "alarmDate": "1770010935263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027396", + "createdBy": null, + "createdTime": "2026-02-02 13:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:53", + "echoMap": {}, + "alarmNo": "1593543941", + "alarmDate": "1770010937616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027435", + "createdBy": null, + "createdTime": "2026-02-02 13:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:32", + "echoMap": {}, + "alarmNo": "1593543942", + "alarmDate": "1770010938862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583993950", + "createdBy": null, + "createdTime": "2026-02-02 13:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:24", + "echoMap": {}, + "alarmNo": "1593543943", + "alarmDate": "1770011480099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583993997", + "createdBy": null, + "createdTime": "2026-02-02 13:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:54", + "echoMap": {}, + "alarmNo": "1593543944", + "alarmDate": "1770011482480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994075", + "createdBy": null, + "createdTime": "2026-02-02 13:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:48", + "echoMap": {}, + "alarmNo": "1593543945", + "alarmDate": "1770011485151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994183", + "createdBy": null, + "createdTime": "2026-02-02 13:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:30", + "echoMap": {}, + "alarmNo": "1593543946", + "alarmDate": "1770011488557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994431", + "createdBy": null, + "createdTime": "2026-02-02 13:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:09", + "echoMap": {}, + "alarmNo": "1593543947", + "alarmDate": "1770011495837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994531", + "createdBy": null, + "createdTime": "2026-02-02 13:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:09", + "echoMap": {}, + "alarmNo": "1593543948", + "alarmDate": "1770011499194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994566", + "createdBy": null, + "createdTime": "2026-02-02 13:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:26", + "echoMap": {}, + "alarmNo": "1593543949", + "alarmDate": "1770011500286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994577", + "createdBy": null, + "createdTime": "2026-02-02 13:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:53", + "echoMap": {}, + "alarmNo": "1593543950", + "alarmDate": "1770011500571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994614", + "createdBy": null, + "createdTime": "2026-02-02 13:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:43", + "echoMap": {}, + "alarmNo": "1593543951", + "alarmDate": "1770011501574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994782", + "createdBy": null, + "createdTime": "2026-02-02 13:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:58", + "echoMap": {}, + "alarmNo": "1593543952", + "alarmDate": "1770011506574", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994817", + "createdBy": null, + "createdTime": "2026-02-02 13:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:53", + "echoMap": {}, + "alarmNo": "1593543953", + "alarmDate": "1770011507459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994847", + "createdBy": null, + "createdTime": "2026-02-02 13:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:30", + "echoMap": {}, + "alarmNo": "1593543954", + "alarmDate": "1770011508279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133284173928460", + "createdBy": null, + "createdTime": "2026-02-02 13:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:20", + "echoMap": {}, + "alarmNo": "1593543955", + "alarmDate": "1770011510225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133284173928550", + "createdBy": null, + "createdTime": "2026-02-02 13:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:20", + "echoMap": {}, + "alarmNo": "1593543956", + "alarmDate": "1770011512485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895772", + "createdBy": null, + "createdTime": "2026-02-02 13:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:05", + "echoMap": {}, + "alarmNo": "1593543957", + "alarmDate": "1770011513344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895800", + "createdBy": null, + "createdTime": "2026-02-02 13:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:31", + "echoMap": {}, + "alarmNo": "1593543958", + "alarmDate": "1770011514013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895930", + "createdBy": null, + "createdTime": "2026-02-02 13:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:10", + "echoMap": {}, + "alarmNo": "1593543959", + "alarmDate": "1770011517237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895945", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:49", + "echoMap": {}, + "alarmNo": "1593543960", + "alarmDate": "1770011517539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895980", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:19", + "echoMap": {}, + "alarmNo": "1593543961", + "alarmDate": "1770011518348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896277", + "createdBy": null, + "createdTime": "2026-02-02 13:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:07", + "echoMap": {}, + "alarmNo": "1593543962", + "alarmDate": "1770011525653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896315", + "createdBy": null, + "createdTime": "2026-02-02 13:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:12", + "echoMap": {}, + "alarmNo": "1593543963", + "alarmDate": "1770011526455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896700", + "createdBy": null, + "createdTime": "2026-02-02 13:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:16", + "echoMap": {}, + "alarmNo": "1593543964", + "alarmDate": "1770011535821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896701", + "createdBy": null, + "createdTime": "2026-02-02 13:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:17", + "echoMap": {}, + "alarmNo": "1593543965", + "alarmDate": "1770011535821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863342", + "createdBy": null, + "createdTime": "2026-02-02 14:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:24", + "echoMap": {}, + "alarmNo": "1593543966", + "alarmDate": "1770012079870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863347", + "createdBy": null, + "createdTime": "2026-02-02 14:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:23", + "echoMap": {}, + "alarmNo": "1593543967", + "alarmDate": "1770012080152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863366", + "createdBy": null, + "createdTime": "2026-02-02 14:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:45", + "echoMap": {}, + "alarmNo": "1593543968", + "alarmDate": "1770012080913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863415", + "createdBy": null, + "createdTime": "2026-02-02 14:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:40", + "echoMap": {}, + "alarmNo": "1593543969", + "alarmDate": "1770012082698", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863416", + "createdBy": null, + "createdTime": "2026-02-02 14:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:32", + "echoMap": {}, + "alarmNo": "1593543970", + "alarmDate": "1770012082699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863540", + "createdBy": null, + "createdTime": "2026-02-02 14:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:48", + "echoMap": {}, + "alarmNo": "1593543971", + "alarmDate": "1770012086213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863841", + "createdBy": null, + "createdTime": "2026-02-02 14:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:57", + "echoMap": {}, + "alarmNo": "1593543972", + "alarmDate": "1770012094281", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863869", + "createdBy": null, + "createdTime": "2026-02-02 14:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:36", + "echoMap": {}, + "alarmNo": "1593543973", + "alarmDate": "1770012095056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830355", + "createdBy": null, + "createdTime": "2026-02-02 14:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:42", + "echoMap": {}, + "alarmNo": "1593543974", + "alarmDate": "1770012101215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830405", + "createdBy": null, + "createdTime": "2026-02-02 14:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:44", + "echoMap": {}, + "alarmNo": "1593543975", + "alarmDate": "1770012102561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830511", + "createdBy": null, + "createdTime": "2026-02-02 14:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:05", + "echoMap": {}, + "alarmNo": "1593543976", + "alarmDate": "1770012105367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830579", + "createdBy": null, + "createdTime": "2026-02-02 14:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:47", + "echoMap": {}, + "alarmNo": "1593543977", + "alarmDate": "1770012107141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764931", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:57", + "echoMap": {}, + "alarmNo": "1593543978", + "alarmDate": "1770012110734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764945", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:52", + "echoMap": {}, + "alarmNo": "1593543979", + "alarmDate": "1770012110994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764959", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:04", + "echoMap": {}, + "alarmNo": "1593543980", + "alarmDate": "1770012111373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764985", + "createdBy": null, + "createdTime": "2026-02-02 14:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:59", + "echoMap": {}, + "alarmNo": "1593543981", + "alarmDate": "1770012111966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765183", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:04", + "echoMap": {}, + "alarmNo": "1593543982", + "alarmDate": "1770012117583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765195", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:12", + "echoMap": {}, + "alarmNo": "1593543983", + "alarmDate": "1770012117892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765289", + "createdBy": null, + "createdTime": "2026-02-02 14:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1593543984", + "alarmDate": "1770012120582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765432", + "createdBy": null, + "createdTime": "2026-02-02 14:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1593543985", + "alarmDate": "1770012124781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765449", + "createdBy": null, + "createdTime": "2026-02-02 14:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1593543986", + "alarmDate": "1770012125164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765652", + "createdBy": null, + "createdTime": "2026-02-02 14:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:44", + "echoMap": {}, + "alarmNo": "1593543987", + "alarmDate": "1770012131958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765767", + "createdBy": null, + "createdTime": "2026-02-02 14:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:28", + "echoMap": {}, + "alarmNo": "1593543988", + "alarmDate": "1770012135773", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765791", + "createdBy": null, + "createdTime": "2026-02-02 14:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:03", + "echoMap": {}, + "alarmNo": "1593543989", + "alarmDate": "1770012136542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732373", + "createdBy": null, + "createdTime": "2026-02-02 14:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:14", + "echoMap": {}, + "alarmNo": "1593543990", + "alarmDate": "1770012679240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732381", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:38", + "echoMap": {}, + "alarmNo": "1593543991", + "alarmDate": "1770012679687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732385", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:48", + "echoMap": {}, + "alarmNo": "1593543992", + "alarmDate": "1770012679825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732393", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:48", + "echoMap": {}, + "alarmNo": "1593543993", + "alarmDate": "1770012680207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732394", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:40", + "echoMap": {}, + "alarmNo": "1593543994", + "alarmDate": "1770012680208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732397", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:27", + "echoMap": {}, + "alarmNo": "1593543995", + "alarmDate": "1770012680457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732406", + "createdBy": null, + "createdTime": "2026-02-02 14:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:07", + "echoMap": {}, + "alarmNo": "1593543996", + "alarmDate": "1770012680648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732426", + "createdBy": null, + "createdTime": "2026-02-02 14:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:27", + "echoMap": {}, + "alarmNo": "1593543997", + "alarmDate": "1770012681392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732446", + "createdBy": null, + "createdTime": "2026-02-02 14:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:03", + "echoMap": {}, + "alarmNo": "1593543998", + "alarmDate": "1770012681968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732585", + "createdBy": null, + "createdTime": "2026-02-02 14:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:32", + "echoMap": {}, + "alarmNo": "1593543999", + "alarmDate": "1770012685690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732690", + "createdBy": null, + "createdTime": "2026-02-02 14:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:43", + "echoMap": {}, + "alarmNo": "1593544000", + "alarmDate": "1770012688405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732750", + "createdBy": null, + "createdTime": "2026-02-02 14:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:37", + "echoMap": {}, + "alarmNo": "1593544001", + "alarmDate": "1770012689726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732970", + "createdBy": null, + "createdTime": "2026-02-02 14:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:08", + "echoMap": {}, + "alarmNo": "1593544002", + "alarmDate": "1770012694918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943733196", + "createdBy": null, + "createdTime": "2026-02-02 14:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:47", + "echoMap": {}, + "alarmNo": "1593544003", + "alarmDate": "1770012700870", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699525", + "createdBy": null, + "createdTime": "2026-02-02 14:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:57", + "echoMap": {}, + "alarmNo": "1593544004", + "alarmDate": "1770012702447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699556", + "createdBy": null, + "createdTime": "2026-02-02 14:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:43", + "echoMap": {}, + "alarmNo": "1593544005", + "alarmDate": "1770012703161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699598", + "createdBy": null, + "createdTime": "2026-02-02 14:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:41", + "echoMap": {}, + "alarmNo": "1593544006", + "alarmDate": "1770012704155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699701", + "createdBy": null, + "createdTime": "2026-02-02 14:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:32", + "echoMap": {}, + "alarmNo": "1593544007", + "alarmDate": "1770012706780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828634205", + "createdBy": null, + "createdTime": "2026-02-02 14:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:59", + "echoMap": {}, + "alarmNo": "1593544008", + "alarmDate": "1770012713282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828634406", + "createdBy": null, + "createdTime": "2026-02-02 14:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:59", + "echoMap": {}, + "alarmNo": "1593544009", + "alarmDate": "1770012718970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828634754", + "createdBy": null, + "createdTime": "2026-02-02 14:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:11", + "echoMap": {}, + "alarmNo": "1593544010", + "alarmDate": "1770012730005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828635026", + "createdBy": null, + "createdTime": "2026-02-02 14:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:33", + "echoMap": {}, + "alarmNo": "1593544011", + "alarmDate": "1770012739581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601539", + "createdBy": null, + "createdTime": "2026-02-02 14:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:32", + "echoMap": {}, + "alarmNo": "1593544012", + "alarmDate": "1770013279976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601558", + "createdBy": null, + "createdTime": "2026-02-02 14:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:31", + "echoMap": {}, + "alarmNo": "1593544013", + "alarmDate": "1770013280988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601570", + "createdBy": null, + "createdTime": "2026-02-02 14:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:50", + "echoMap": {}, + "alarmNo": "1593544014", + "alarmDate": "1770013281288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601633", + "createdBy": null, + "createdTime": "2026-02-02 14:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:35", + "echoMap": {}, + "alarmNo": "1593544015", + "alarmDate": "1770013283156", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601634", + "createdBy": null, + "createdTime": "2026-02-02 14:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:29", + "echoMap": {}, + "alarmNo": "1593544016", + "alarmDate": "1770013283157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601979", + "createdBy": null, + "createdTime": "2026-02-02 14:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:53", + "echoMap": {}, + "alarmNo": "1593544017", + "alarmDate": "1770013292349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602182", + "createdBy": null, + "createdTime": "2026-02-02 14:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:23", + "echoMap": {}, + "alarmNo": "1593544018", + "alarmDate": "1770013298084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602192", + "createdBy": null, + "createdTime": "2026-02-02 14:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:10", + "echoMap": {}, + "alarmNo": "1593544019", + "alarmDate": "1770013298370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602200", + "createdBy": null, + "createdTime": "2026-02-02 14:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:39", + "echoMap": {}, + "alarmNo": "1593544020", + "alarmDate": "1770013298504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602335", + "createdBy": null, + "createdTime": "2026-02-02 14:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:43", + "echoMap": {}, + "alarmNo": "1593544021", + "alarmDate": "1770013302474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602383", + "createdBy": null, + "createdTime": "2026-02-02 14:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:51", + "echoMap": {}, + "alarmNo": "1593544022", + "alarmDate": "1770013303972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133331418568749", + "createdBy": null, + "createdTime": "2026-02-02 14:21:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:07", + "echoMap": {}, + "alarmNo": "1593544023", + "alarmDate": "1770013306653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133335713536030", + "createdBy": null, + "createdTime": "2026-02-02 14:21:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:26", + "echoMap": {}, + "alarmNo": "1593544024", + "alarmDate": "1770013310234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503331", + "createdBy": null, + "createdTime": "2026-02-02 14:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:46", + "echoMap": {}, + "alarmNo": "1593544025", + "alarmDate": "1770013313443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503411", + "createdBy": null, + "createdTime": "2026-02-02 14:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:11", + "echoMap": {}, + "alarmNo": "1593544026", + "alarmDate": "1770013315855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503554", + "createdBy": null, + "createdTime": "2026-02-02 14:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:26", + "echoMap": {}, + "alarmNo": "1593544027", + "alarmDate": "1770013320126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503575", + "createdBy": null, + "createdTime": "2026-02-02 14:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:31", + "echoMap": {}, + "alarmNo": "1593544028", + "alarmDate": "1770013320589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503712", + "createdBy": null, + "createdTime": "2026-02-02 14:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:52", + "echoMap": {}, + "alarmNo": "1593544029", + "alarmDate": "1770013324451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503717", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:11", + "echoMap": {}, + "alarmNo": "1593544030", + "alarmDate": "1770013324504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503719", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:14", + "echoMap": {}, + "alarmNo": "1593544031", + "alarmDate": "1770013324562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503737", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:40", + "echoMap": {}, + "alarmNo": "1593544032", + "alarmDate": "1770013324988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503743", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:54", + "echoMap": {}, + "alarmNo": "1593544033", + "alarmDate": "1770013325071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503856", + "createdBy": null, + "createdTime": "2026-02-02 14:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:20", + "echoMap": {}, + "alarmNo": "1593544034", + "alarmDate": "1770013328000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008504029", + "createdBy": null, + "createdTime": "2026-02-02 14:22:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:13", + "echoMap": {}, + "alarmNo": "1593544035", + "alarmDate": "1770013332528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008504092", + "createdBy": null, + "createdTime": "2026-02-02 14:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:39", + "echoMap": {}, + "alarmNo": "1593544036", + "alarmDate": "1770013334289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008504144", + "createdBy": null, + "createdTime": "2026-02-02 14:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:36", + "echoMap": {}, + "alarmNo": "1593544037", + "alarmDate": "1770013335624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470764", + "createdBy": null, + "createdTime": "2026-02-02 14:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:20", + "echoMap": {}, + "alarmNo": "1593544038", + "alarmDate": "1770013879528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470777", + "createdBy": null, + "createdTime": "2026-02-02 14:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:33", + "echoMap": {}, + "alarmNo": "1593544039", + "alarmDate": "1770013880261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470830", + "createdBy": null, + "createdTime": "2026-02-02 14:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:22", + "echoMap": {}, + "alarmNo": "1593544040", + "alarmDate": "1770013882390", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470879", + "createdBy": null, + "createdTime": "2026-02-02 14:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:01", + "echoMap": {}, + "alarmNo": "1593544041", + "alarmDate": "1770013883817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471047", + "createdBy": null, + "createdTime": "2026-02-02 14:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:35", + "echoMap": {}, + "alarmNo": "1593544042", + "alarmDate": "1770013888544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471227", + "createdBy": null, + "createdTime": "2026-02-02 14:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:39", + "echoMap": {}, + "alarmNo": "1593544043", + "alarmDate": "1770013893193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471295", + "createdBy": null, + "createdTime": "2026-02-02 14:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:59", + "echoMap": {}, + "alarmNo": "1593544044", + "alarmDate": "1770013894829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471415", + "createdBy": null, + "createdTime": "2026-02-02 14:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:44", + "echoMap": {}, + "alarmNo": "1593544045", + "alarmDate": "1770013898409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471601", + "createdBy": null, + "createdTime": "2026-02-02 14:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:55", + "echoMap": {}, + "alarmNo": "1593544046", + "alarmDate": "1770013904246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133348598437931", + "createdBy": null, + "createdTime": "2026-02-02 14:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:46", + "echoMap": {}, + "alarmNo": "1593544047", + "alarmDate": "1770013906073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133348598437967", + "createdBy": null, + "createdTime": "2026-02-02 14:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:47", + "echoMap": {}, + "alarmNo": "1593544048", + "alarmDate": "1770013907092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133352893405212", + "createdBy": null, + "createdTime": "2026-02-02 14:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:53", + "echoMap": {}, + "alarmNo": "1593544049", + "alarmDate": "1770013912501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133352893405256", + "createdBy": null, + "createdTime": "2026-02-02 14:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:55", + "echoMap": {}, + "alarmNo": "1593544050", + "alarmDate": "1770013913898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133352893405263", + "createdBy": null, + "createdTime": "2026-02-02 14:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:55", + "echoMap": {}, + "alarmNo": "1593544051", + "alarmDate": "1770013914020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372529", + "createdBy": null, + "createdTime": "2026-02-02 14:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:16", + "echoMap": {}, + "alarmNo": "1593544052", + "alarmDate": "1770013916483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372627", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1593544053", + "alarmDate": "1770013919620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372628", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:01", + "echoMap": {}, + "alarmNo": "1593544054", + "alarmDate": "1770013919670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372637", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:00", + "echoMap": {}, + "alarmNo": "1593544055", + "alarmDate": "1770013919910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372677", + "createdBy": null, + "createdTime": "2026-02-02 14:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1593544056", + "alarmDate": "1770013920998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372742", + "createdBy": null, + "createdTime": "2026-02-02 14:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:09", + "echoMap": {}, + "alarmNo": "1593544057", + "alarmDate": "1770013922876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372761", + "createdBy": null, + "createdTime": "2026-02-02 14:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:03", + "echoMap": {}, + "alarmNo": "1593544058", + "alarmDate": "1770013923367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372770", + "createdBy": null, + "createdTime": "2026-02-02 14:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:04", + "echoMap": {}, + "alarmNo": "1593544059", + "alarmDate": "1770013923551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372821", + "createdBy": null, + "createdTime": "2026-02-02 14:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:05", + "echoMap": {}, + "alarmNo": "1593544060", + "alarmDate": "1770013924879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372828", + "createdBy": null, + "createdTime": "2026-02-02 14:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:06", + "echoMap": {}, + "alarmNo": "1593544061", + "alarmDate": "1770013925062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372914", + "createdBy": null, + "createdTime": "2026-02-02 14:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:07", + "echoMap": {}, + "alarmNo": "1593544062", + "alarmDate": "1770013927350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373125", + "createdBy": null, + "createdTime": "2026-02-02 14:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1593544063", + "alarmDate": "1770013932960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373157", + "createdBy": null, + "createdTime": "2026-02-02 14:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:14", + "echoMap": {}, + "alarmNo": "1593544064", + "alarmDate": "1770013933794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373220", + "createdBy": null, + "createdTime": "2026-02-02 14:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:15", + "echoMap": {}, + "alarmNo": "1593544065", + "alarmDate": "1770013935447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373241", + "createdBy": null, + "createdTime": "2026-02-02 14:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:17", + "echoMap": {}, + "alarmNo": "1593544066", + "alarmDate": "1770013936007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060094", + "deviceName": "[212](10)南京东6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723132425180469488", + "createdBy": null, + "createdTime": "2026-02-02 05:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:28", + "echoMap": {}, + "alarmNo": "1593543014", + "alarmDate": "1769980888316", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1016030015", + "deviceName": "安防箱15", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1016" + }, + { + "id": "723132425180469506", + "createdBy": null, + "createdTime": "2026-02-02 05:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:29", + "echoMap": {}, + "alarmNo": "1593543015", + "alarmDate": "1769980888770", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1016030014", + "deviceName": "安防箱14", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1016" + } + ], + "ndmSwitch": [ + { + "id": "723132017158576475", + "createdBy": null, + "createdTime": "2026-02-02 00:08:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:34", + "echoMap": {}, + "alarmNo": "1593542780", + "alarmDate": "1769962112536", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1016040007", + "deviceName": "H3C前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1016" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723133357188373241", + "createdBy": null, + "createdTime": "2026-02-02 14:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:17", + "echoMap": {}, + "alarmNo": "1593544066", + "alarmDate": "1770013936007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060094", + "deviceName": "[212](10)南京东6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373220", + "createdBy": null, + "createdTime": "2026-02-02 14:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:15", + "echoMap": {}, + "alarmNo": "1593544065", + "alarmDate": "1770013935447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373157", + "createdBy": null, + "createdTime": "2026-02-02 14:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:14", + "echoMap": {}, + "alarmNo": "1593544064", + "alarmDate": "1770013933794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188373125", + "createdBy": null, + "createdTime": "2026-02-02 14:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1593544063", + "alarmDate": "1770013932960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372914", + "createdBy": null, + "createdTime": "2026-02-02 14:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:07", + "echoMap": {}, + "alarmNo": "1593544062", + "alarmDate": "1770013927350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372828", + "createdBy": null, + "createdTime": "2026-02-02 14:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:06", + "echoMap": {}, + "alarmNo": "1593544061", + "alarmDate": "1770013925062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372821", + "createdBy": null, + "createdTime": "2026-02-02 14:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:05", + "echoMap": {}, + "alarmNo": "1593544060", + "alarmDate": "1770013924879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372770", + "createdBy": null, + "createdTime": "2026-02-02 14:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:04", + "echoMap": {}, + "alarmNo": "1593544059", + "alarmDate": "1770013923551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372761", + "createdBy": null, + "createdTime": "2026-02-02 14:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:03", + "echoMap": {}, + "alarmNo": "1593544058", + "alarmDate": "1770013923367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372742", + "createdBy": null, + "createdTime": "2026-02-02 14:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:09", + "echoMap": {}, + "alarmNo": "1593544057", + "alarmDate": "1770013922876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372677", + "createdBy": null, + "createdTime": "2026-02-02 14:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1593544056", + "alarmDate": "1770013920998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372637", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:00", + "echoMap": {}, + "alarmNo": "1593544055", + "alarmDate": "1770013919910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372628", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:01", + "echoMap": {}, + "alarmNo": "1593544054", + "alarmDate": "1770013919670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372627", + "createdBy": null, + "createdTime": "2026-02-02 14:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1593544053", + "alarmDate": "1770013919620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133357188372529", + "createdBy": null, + "createdTime": "2026-02-02 14:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:16", + "echoMap": {}, + "alarmNo": "1593544052", + "alarmDate": "1770013916483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133352893405263", + "createdBy": null, + "createdTime": "2026-02-02 14:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:55", + "echoMap": {}, + "alarmNo": "1593544051", + "alarmDate": "1770013914020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133352893405256", + "createdBy": null, + "createdTime": "2026-02-02 14:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:55", + "echoMap": {}, + "alarmNo": "1593544050", + "alarmDate": "1770013913898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133352893405212", + "createdBy": null, + "createdTime": "2026-02-02 14:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:53", + "echoMap": {}, + "alarmNo": "1593544049", + "alarmDate": "1770013912501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133348598437967", + "createdBy": null, + "createdTime": "2026-02-02 14:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:47", + "echoMap": {}, + "alarmNo": "1593544048", + "alarmDate": "1770013907092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133348598437931", + "createdBy": null, + "createdTime": "2026-02-02 14:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:46", + "echoMap": {}, + "alarmNo": "1593544047", + "alarmDate": "1770013906073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471601", + "createdBy": null, + "createdTime": "2026-02-02 14:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:55", + "echoMap": {}, + "alarmNo": "1593544046", + "alarmDate": "1770013904246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471415", + "createdBy": null, + "createdTime": "2026-02-02 14:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:44", + "echoMap": {}, + "alarmNo": "1593544045", + "alarmDate": "1770013898409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471295", + "createdBy": null, + "createdTime": "2026-02-02 14:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:59", + "echoMap": {}, + "alarmNo": "1593544044", + "alarmDate": "1770013894829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471227", + "createdBy": null, + "createdTime": "2026-02-02 14:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:39", + "echoMap": {}, + "alarmNo": "1593544043", + "alarmDate": "1770013893193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303471047", + "createdBy": null, + "createdTime": "2026-02-02 14:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:35", + "echoMap": {}, + "alarmNo": "1593544042", + "alarmDate": "1770013888544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470879", + "createdBy": null, + "createdTime": "2026-02-02 14:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:01", + "echoMap": {}, + "alarmNo": "1593544041", + "alarmDate": "1770013883817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470830", + "createdBy": null, + "createdTime": "2026-02-02 14:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:22", + "echoMap": {}, + "alarmNo": "1593544040", + "alarmDate": "1770013882390", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470777", + "createdBy": null, + "createdTime": "2026-02-02 14:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:33", + "echoMap": {}, + "alarmNo": "1593544039", + "alarmDate": "1770013880261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133344303470764", + "createdBy": null, + "createdTime": "2026-02-02 14:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:20", + "echoMap": {}, + "alarmNo": "1593544038", + "alarmDate": "1770013879528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008504144", + "createdBy": null, + "createdTime": "2026-02-02 14:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:36", + "echoMap": {}, + "alarmNo": "1593544037", + "alarmDate": "1770013335624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008504092", + "createdBy": null, + "createdTime": "2026-02-02 14:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:39", + "echoMap": {}, + "alarmNo": "1593544036", + "alarmDate": "1770013334289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008504029", + "createdBy": null, + "createdTime": "2026-02-02 14:22:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:13", + "echoMap": {}, + "alarmNo": "1593544035", + "alarmDate": "1770013332528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503856", + "createdBy": null, + "createdTime": "2026-02-02 14:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:20", + "echoMap": {}, + "alarmNo": "1593544034", + "alarmDate": "1770013328000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503743", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:54", + "echoMap": {}, + "alarmNo": "1593544033", + "alarmDate": "1770013325071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503737", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:40", + "echoMap": {}, + "alarmNo": "1593544032", + "alarmDate": "1770013324988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503719", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:14", + "echoMap": {}, + "alarmNo": "1593544031", + "alarmDate": "1770013324562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503717", + "createdBy": null, + "createdTime": "2026-02-02 14:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:11", + "echoMap": {}, + "alarmNo": "1593544030", + "alarmDate": "1770013324504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503712", + "createdBy": null, + "createdTime": "2026-02-02 14:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:52", + "echoMap": {}, + "alarmNo": "1593544029", + "alarmDate": "1770013324451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503575", + "createdBy": null, + "createdTime": "2026-02-02 14:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:31", + "echoMap": {}, + "alarmNo": "1593544028", + "alarmDate": "1770013320589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503554", + "createdBy": null, + "createdTime": "2026-02-02 14:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:26", + "echoMap": {}, + "alarmNo": "1593544027", + "alarmDate": "1770013320126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503411", + "createdBy": null, + "createdTime": "2026-02-02 14:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:11", + "echoMap": {}, + "alarmNo": "1593544026", + "alarmDate": "1770013315855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133340008503331", + "createdBy": null, + "createdTime": "2026-02-02 14:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:46", + "echoMap": {}, + "alarmNo": "1593544025", + "alarmDate": "1770013313443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133335713536030", + "createdBy": null, + "createdTime": "2026-02-02 14:21:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:26", + "echoMap": {}, + "alarmNo": "1593544024", + "alarmDate": "1770013310234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133331418568749", + "createdBy": null, + "createdTime": "2026-02-02 14:21:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:07", + "echoMap": {}, + "alarmNo": "1593544023", + "alarmDate": "1770013306653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602383", + "createdBy": null, + "createdTime": "2026-02-02 14:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:51", + "echoMap": {}, + "alarmNo": "1593544022", + "alarmDate": "1770013303972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602335", + "createdBy": null, + "createdTime": "2026-02-02 14:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:43", + "echoMap": {}, + "alarmNo": "1593544021", + "alarmDate": "1770013302474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602200", + "createdBy": null, + "createdTime": "2026-02-02 14:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:39", + "echoMap": {}, + "alarmNo": "1593544020", + "alarmDate": "1770013298504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602192", + "createdBy": null, + "createdTime": "2026-02-02 14:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:10", + "echoMap": {}, + "alarmNo": "1593544019", + "alarmDate": "1770013298370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123602182", + "createdBy": null, + "createdTime": "2026-02-02 14:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:23", + "echoMap": {}, + "alarmNo": "1593544018", + "alarmDate": "1770013298084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601979", + "createdBy": null, + "createdTime": "2026-02-02 14:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:53", + "echoMap": {}, + "alarmNo": "1593544017", + "alarmDate": "1770013292349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601634", + "createdBy": null, + "createdTime": "2026-02-02 14:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:29", + "echoMap": {}, + "alarmNo": "1593544016", + "alarmDate": "1770013283157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601633", + "createdBy": null, + "createdTime": "2026-02-02 14:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:35", + "echoMap": {}, + "alarmNo": "1593544015", + "alarmDate": "1770013283156", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601570", + "createdBy": null, + "createdTime": "2026-02-02 14:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:50", + "echoMap": {}, + "alarmNo": "1593544014", + "alarmDate": "1770013281288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601558", + "createdBy": null, + "createdTime": "2026-02-02 14:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:31", + "echoMap": {}, + "alarmNo": "1593544013", + "alarmDate": "1770013280988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133327123601539", + "createdBy": null, + "createdTime": "2026-02-02 14:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:32", + "echoMap": {}, + "alarmNo": "1593544012", + "alarmDate": "1770013279976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828635026", + "createdBy": null, + "createdTime": "2026-02-02 14:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:33", + "echoMap": {}, + "alarmNo": "1593544011", + "alarmDate": "1770012739581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828634754", + "createdBy": null, + "createdTime": "2026-02-02 14:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:11", + "echoMap": {}, + "alarmNo": "1593544010", + "alarmDate": "1770012730005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828634406", + "createdBy": null, + "createdTime": "2026-02-02 14:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:59", + "echoMap": {}, + "alarmNo": "1593544009", + "alarmDate": "1770012718970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133322828634205", + "createdBy": null, + "createdTime": "2026-02-02 14:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:59", + "echoMap": {}, + "alarmNo": "1593544008", + "alarmDate": "1770012713282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699701", + "createdBy": null, + "createdTime": "2026-02-02 14:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:32", + "echoMap": {}, + "alarmNo": "1593544007", + "alarmDate": "1770012706780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699598", + "createdBy": null, + "createdTime": "2026-02-02 14:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:41", + "echoMap": {}, + "alarmNo": "1593544006", + "alarmDate": "1770012704155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699556", + "createdBy": null, + "createdTime": "2026-02-02 14:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:43", + "echoMap": {}, + "alarmNo": "1593544005", + "alarmDate": "1770012703161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133314238699525", + "createdBy": null, + "createdTime": "2026-02-02 14:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:57", + "echoMap": {}, + "alarmNo": "1593544004", + "alarmDate": "1770012702447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943733196", + "createdBy": null, + "createdTime": "2026-02-02 14:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:47", + "echoMap": {}, + "alarmNo": "1593544003", + "alarmDate": "1770012700870", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732970", + "createdBy": null, + "createdTime": "2026-02-02 14:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:08", + "echoMap": {}, + "alarmNo": "1593544002", + "alarmDate": "1770012694918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732750", + "createdBy": null, + "createdTime": "2026-02-02 14:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:37", + "echoMap": {}, + "alarmNo": "1593544001", + "alarmDate": "1770012689726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732690", + "createdBy": null, + "createdTime": "2026-02-02 14:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:43", + "echoMap": {}, + "alarmNo": "1593544000", + "alarmDate": "1770012688405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732585", + "createdBy": null, + "createdTime": "2026-02-02 14:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:32", + "echoMap": {}, + "alarmNo": "1593543999", + "alarmDate": "1770012685690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732446", + "createdBy": null, + "createdTime": "2026-02-02 14:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:03", + "echoMap": {}, + "alarmNo": "1593543998", + "alarmDate": "1770012681968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732426", + "createdBy": null, + "createdTime": "2026-02-02 14:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:27", + "echoMap": {}, + "alarmNo": "1593543997", + "alarmDate": "1770012681392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732406", + "createdBy": null, + "createdTime": "2026-02-02 14:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:07", + "echoMap": {}, + "alarmNo": "1593543996", + "alarmDate": "1770012680648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732397", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:27", + "echoMap": {}, + "alarmNo": "1593543995", + "alarmDate": "1770012680457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732394", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:40", + "echoMap": {}, + "alarmNo": "1593543994", + "alarmDate": "1770012680208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732393", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:48", + "echoMap": {}, + "alarmNo": "1593543993", + "alarmDate": "1770012680207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732385", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:48", + "echoMap": {}, + "alarmNo": "1593543992", + "alarmDate": "1770012679825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732381", + "createdBy": null, + "createdTime": "2026-02-02 14:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:38", + "echoMap": {}, + "alarmNo": "1593543991", + "alarmDate": "1770012679687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133309943732373", + "createdBy": null, + "createdTime": "2026-02-02 14:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:14", + "echoMap": {}, + "alarmNo": "1593543990", + "alarmDate": "1770012679240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765791", + "createdBy": null, + "createdTime": "2026-02-02 14:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:03", + "echoMap": {}, + "alarmNo": "1593543989", + "alarmDate": "1770012136542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765767", + "createdBy": null, + "createdTime": "2026-02-02 14:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:28", + "echoMap": {}, + "alarmNo": "1593543988", + "alarmDate": "1770012135773", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765652", + "createdBy": null, + "createdTime": "2026-02-02 14:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:44", + "echoMap": {}, + "alarmNo": "1593543987", + "alarmDate": "1770012131958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765449", + "createdBy": null, + "createdTime": "2026-02-02 14:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1593543986", + "alarmDate": "1770012125164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765432", + "createdBy": null, + "createdTime": "2026-02-02 14:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1593543985", + "alarmDate": "1770012124781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765289", + "createdBy": null, + "createdTime": "2026-02-02 14:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:06", + "echoMap": {}, + "alarmNo": "1593543984", + "alarmDate": "1770012120582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765195", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:12", + "echoMap": {}, + "alarmNo": "1593543983", + "alarmDate": "1770012117892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648765183", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:04", + "echoMap": {}, + "alarmNo": "1593543982", + "alarmDate": "1770012117583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764985", + "createdBy": null, + "createdTime": "2026-02-02 14:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:59", + "echoMap": {}, + "alarmNo": "1593543981", + "alarmDate": "1770012111966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764959", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:04", + "echoMap": {}, + "alarmNo": "1593543980", + "alarmDate": "1770012111373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764945", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:52", + "echoMap": {}, + "alarmNo": "1593543979", + "alarmDate": "1770012110994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133305648764931", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:57", + "echoMap": {}, + "alarmNo": "1593543978", + "alarmDate": "1770012110734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830579", + "createdBy": null, + "createdTime": "2026-02-02 14:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:47", + "echoMap": {}, + "alarmNo": "1593543977", + "alarmDate": "1770012107141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830511", + "createdBy": null, + "createdTime": "2026-02-02 14:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:05", + "echoMap": {}, + "alarmNo": "1593543976", + "alarmDate": "1770012105367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830405", + "createdBy": null, + "createdTime": "2026-02-02 14:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:44", + "echoMap": {}, + "alarmNo": "1593543975", + "alarmDate": "1770012102561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133297058830355", + "createdBy": null, + "createdTime": "2026-02-02 14:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:42", + "echoMap": {}, + "alarmNo": "1593543974", + "alarmDate": "1770012101215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863869", + "createdBy": null, + "createdTime": "2026-02-02 14:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:36", + "echoMap": {}, + "alarmNo": "1593543973", + "alarmDate": "1770012095056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863841", + "createdBy": null, + "createdTime": "2026-02-02 14:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:57", + "echoMap": {}, + "alarmNo": "1593543972", + "alarmDate": "1770012094281", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863540", + "createdBy": null, + "createdTime": "2026-02-02 14:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:48", + "echoMap": {}, + "alarmNo": "1593543971", + "alarmDate": "1770012086213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863416", + "createdBy": null, + "createdTime": "2026-02-02 14:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:32", + "echoMap": {}, + "alarmNo": "1593543970", + "alarmDate": "1770012082699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863415", + "createdBy": null, + "createdTime": "2026-02-02 14:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:40", + "echoMap": {}, + "alarmNo": "1593543969", + "alarmDate": "1770012082698", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863366", + "createdBy": null, + "createdTime": "2026-02-02 14:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:45", + "echoMap": {}, + "alarmNo": "1593543968", + "alarmDate": "1770012080913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863347", + "createdBy": null, + "createdTime": "2026-02-02 14:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:23", + "echoMap": {}, + "alarmNo": "1593543967", + "alarmDate": "1770012080152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133292763863342", + "createdBy": null, + "createdTime": "2026-02-02 14:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:24", + "echoMap": {}, + "alarmNo": "1593543966", + "alarmDate": "1770012079870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896701", + "createdBy": null, + "createdTime": "2026-02-02 13:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:17", + "echoMap": {}, + "alarmNo": "1593543965", + "alarmDate": "1770011535821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896700", + "createdBy": null, + "createdTime": "2026-02-02 13:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:16", + "echoMap": {}, + "alarmNo": "1593543964", + "alarmDate": "1770011535821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896315", + "createdBy": null, + "createdTime": "2026-02-02 13:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:12", + "echoMap": {}, + "alarmNo": "1593543963", + "alarmDate": "1770011526455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468896277", + "createdBy": null, + "createdTime": "2026-02-02 13:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:07", + "echoMap": {}, + "alarmNo": "1593543962", + "alarmDate": "1770011525653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895980", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:19", + "echoMap": {}, + "alarmNo": "1593543961", + "alarmDate": "1770011518348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895945", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:49", + "echoMap": {}, + "alarmNo": "1593543960", + "alarmDate": "1770011517539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895930", + "createdBy": null, + "createdTime": "2026-02-02 13:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:10", + "echoMap": {}, + "alarmNo": "1593543959", + "alarmDate": "1770011517237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895800", + "createdBy": null, + "createdTime": "2026-02-02 13:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:31", + "echoMap": {}, + "alarmNo": "1593543958", + "alarmDate": "1770011514013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133288468895772", + "createdBy": null, + "createdTime": "2026-02-02 13:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:05", + "echoMap": {}, + "alarmNo": "1593543957", + "alarmDate": "1770011513344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133284173928550", + "createdBy": null, + "createdTime": "2026-02-02 13:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:20", + "echoMap": {}, + "alarmNo": "1593543956", + "alarmDate": "1770011512485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133284173928460", + "createdBy": null, + "createdTime": "2026-02-02 13:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:20", + "echoMap": {}, + "alarmNo": "1593543955", + "alarmDate": "1770011510225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994847", + "createdBy": null, + "createdTime": "2026-02-02 13:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:30", + "echoMap": {}, + "alarmNo": "1593543954", + "alarmDate": "1770011508279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994817", + "createdBy": null, + "createdTime": "2026-02-02 13:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:53", + "echoMap": {}, + "alarmNo": "1593543953", + "alarmDate": "1770011507459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994782", + "createdBy": null, + "createdTime": "2026-02-02 13:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:58", + "echoMap": {}, + "alarmNo": "1593543952", + "alarmDate": "1770011506574", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994614", + "createdBy": null, + "createdTime": "2026-02-02 13:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:43", + "echoMap": {}, + "alarmNo": "1593543951", + "alarmDate": "1770011501574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994577", + "createdBy": null, + "createdTime": "2026-02-02 13:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:53", + "echoMap": {}, + "alarmNo": "1593543950", + "alarmDate": "1770011500571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994566", + "createdBy": null, + "createdTime": "2026-02-02 13:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:26", + "echoMap": {}, + "alarmNo": "1593543949", + "alarmDate": "1770011500286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994531", + "createdBy": null, + "createdTime": "2026-02-02 13:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:09", + "echoMap": {}, + "alarmNo": "1593543948", + "alarmDate": "1770011499194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994431", + "createdBy": null, + "createdTime": "2026-02-02 13:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:09", + "echoMap": {}, + "alarmNo": "1593543947", + "alarmDate": "1770011495837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994183", + "createdBy": null, + "createdTime": "2026-02-02 13:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:30", + "echoMap": {}, + "alarmNo": "1593543946", + "alarmDate": "1770011488557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583994075", + "createdBy": null, + "createdTime": "2026-02-02 13:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:48", + "echoMap": {}, + "alarmNo": "1593543945", + "alarmDate": "1770011485151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583993997", + "createdBy": null, + "createdTime": "2026-02-02 13:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:54", + "echoMap": {}, + "alarmNo": "1593543944", + "alarmDate": "1770011482480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133275583993950", + "createdBy": null, + "createdTime": "2026-02-02 13:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:24", + "echoMap": {}, + "alarmNo": "1593543943", + "alarmDate": "1770011480099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027435", + "createdBy": null, + "createdTime": "2026-02-02 13:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:32", + "echoMap": {}, + "alarmNo": "1593543942", + "alarmDate": "1770010938862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027396", + "createdBy": null, + "createdTime": "2026-02-02 13:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:53", + "echoMap": {}, + "alarmNo": "1593543941", + "alarmDate": "1770010937616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027314", + "createdBy": null, + "createdTime": "2026-02-02 13:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:14", + "echoMap": {}, + "alarmNo": "1593543940", + "alarmDate": "1770010935263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027263", + "createdBy": null, + "createdTime": "2026-02-02 13:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:14", + "echoMap": {}, + "alarmNo": "1593543939", + "alarmDate": "1770010933677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289027187", + "createdBy": null, + "createdTime": "2026-02-02 13:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:12", + "echoMap": {}, + "alarmNo": "1593543938", + "alarmDate": "1770010931448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026955", + "createdBy": null, + "createdTime": "2026-02-02 13:42:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:04", + "echoMap": {}, + "alarmNo": "1593543937", + "alarmDate": "1770010924268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026900", + "createdBy": null, + "createdTime": "2026-02-02 13:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:18", + "echoMap": {}, + "alarmNo": "1593543936", + "alarmDate": "1770010922749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026822", + "createdBy": null, + "createdTime": "2026-02-02 13:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:42", + "echoMap": {}, + "alarmNo": "1593543935", + "alarmDate": "1770010920562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026757", + "createdBy": null, + "createdTime": "2026-02-02 13:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:05", + "echoMap": {}, + "alarmNo": "1593543934", + "alarmDate": "1770010918709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133271289026690", + "createdBy": null, + "createdTime": "2026-02-02 13:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:04", + "echoMap": {}, + "alarmNo": "1593543933", + "alarmDate": "1770010916822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133266994059367", + "createdBy": null, + "createdTime": "2026-02-02 13:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:59", + "echoMap": {}, + "alarmNo": "1593543932", + "alarmDate": "1770010912885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133262699092060", + "createdBy": null, + "createdTime": "2026-02-02 13:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:12", + "echoMap": {}, + "alarmNo": "1593543931", + "alarmDate": "1770010909070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125583", + "createdBy": null, + "createdTime": "2026-02-02 13:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:58", + "echoMap": {}, + "alarmNo": "1593543930", + "alarmDate": "1770010903082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125355", + "createdBy": null, + "createdTime": "2026-02-02 13:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:16", + "echoMap": {}, + "alarmNo": "1593543929", + "alarmDate": "1770010896903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125328", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:43", + "echoMap": {}, + "alarmNo": "1593543928", + "alarmDate": "1770010896305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125301", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:41", + "echoMap": {}, + "alarmNo": "1593543927", + "alarmDate": "1770010895507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125266", + "createdBy": null, + "createdTime": "2026-02-02 13:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:48", + "echoMap": {}, + "alarmNo": "1593543926", + "alarmDate": "1770010894531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125120", + "createdBy": null, + "createdTime": "2026-02-02 13:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:35", + "echoMap": {}, + "alarmNo": "1593543925", + "alarmDate": "1770010890752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404125077", + "createdBy": null, + "createdTime": "2026-02-02 13:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:46", + "echoMap": {}, + "alarmNo": "1593543924", + "alarmDate": "1770010889660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124918", + "createdBy": null, + "createdTime": "2026-02-02 13:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:26", + "echoMap": {}, + "alarmNo": "1593543923", + "alarmDate": "1770010885194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124816", + "createdBy": null, + "createdTime": "2026-02-02 13:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:05", + "echoMap": {}, + "alarmNo": "1593543922", + "alarmDate": "1770010882380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124766", + "createdBy": null, + "createdTime": "2026-02-02 13:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:23", + "echoMap": {}, + "alarmNo": "1593543921", + "alarmDate": "1770010880695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124765", + "createdBy": null, + "createdTime": "2026-02-02 13:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:46", + "echoMap": {}, + "alarmNo": "1593543920", + "alarmDate": "1770010880693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124757", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:23", + "echoMap": {}, + "alarmNo": "1593543919", + "alarmDate": "1770010880443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124753", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:23", + "echoMap": {}, + "alarmNo": "1593543918", + "alarmDate": "1770010880317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124744", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:27", + "echoMap": {}, + "alarmNo": "1593543917", + "alarmDate": "1770010879925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124741", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:41", + "echoMap": {}, + "alarmNo": "1593543916", + "alarmDate": "1770010879826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124736", + "createdBy": null, + "createdTime": "2026-02-02 13:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:31", + "echoMap": {}, + "alarmNo": "1593543915", + "alarmDate": "1770010879702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124724", + "createdBy": null, + "createdTime": "2026-02-02 13:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:24", + "echoMap": {}, + "alarmNo": "1593543914", + "alarmDate": "1770010878824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133258404124723", + "createdBy": null, + "createdTime": "2026-02-02 13:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:30", + "echoMap": {}, + "alarmNo": "1593543913", + "alarmDate": "1770010878774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109158037", + "createdBy": null, + "createdTime": "2026-02-02 13:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:14", + "echoMap": {}, + "alarmNo": "1593543912", + "alarmDate": "1770010332995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157945", + "createdBy": null, + "createdTime": "2026-02-02 13:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:11", + "echoMap": {}, + "alarmNo": "1593543911", + "alarmDate": "1770010330307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157758", + "createdBy": null, + "createdTime": "2026-02-02 13:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:11", + "echoMap": {}, + "alarmNo": "1593543910", + "alarmDate": "1770010325264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157733", + "createdBy": null, + "createdTime": "2026-02-02 13:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:11", + "echoMap": {}, + "alarmNo": "1593543909", + "alarmDate": "1770010324714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157677", + "createdBy": null, + "createdTime": "2026-02-02 13:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:10", + "echoMap": {}, + "alarmNo": "1593543908", + "alarmDate": "1770010323175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133254109157385", + "createdBy": null, + "createdTime": "2026-02-02 13:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:08", + "echoMap": {}, + "alarmNo": "1593543907", + "alarmDate": "1770010315123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133249814190112", + "createdBy": null, + "createdTime": "2026-02-02 13:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:05", + "echoMap": {}, + "alarmNo": "1593543906", + "alarmDate": "1770010312640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133245519222871", + "createdBy": null, + "createdTime": "2026-02-02 13:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:51", + "echoMap": {}, + "alarmNo": "1593543905", + "alarmDate": "1770010310145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133245519222804", + "createdBy": null, + "createdTime": "2026-02-02 13:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:21", + "echoMap": {}, + "alarmNo": "1593543904", + "alarmDate": "1770010308366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133245519222788", + "createdBy": null, + "createdTime": "2026-02-02 13:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:22", + "echoMap": {}, + "alarmNo": "1593543903", + "alarmDate": "1770010308008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256471", + "createdBy": null, + "createdTime": "2026-02-02 13:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:33", + "echoMap": {}, + "alarmNo": "1593543902", + "alarmDate": "1770010306759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256449", + "createdBy": null, + "createdTime": "2026-02-02 13:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:00", + "echoMap": {}, + "alarmNo": "1593543901", + "alarmDate": "1770010306104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256194", + "createdBy": null, + "createdTime": "2026-02-02 13:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:46", + "echoMap": {}, + "alarmNo": "1593543900", + "alarmDate": "1770010298238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224256132", + "createdBy": null, + "createdTime": "2026-02-02 13:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:31", + "echoMap": {}, + "alarmNo": "1593543899", + "alarmDate": "1770010296653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255657", + "createdBy": null, + "createdTime": "2026-02-02 13:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:30", + "echoMap": {}, + "alarmNo": "1593543898", + "alarmDate": "1770010284314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255532", + "createdBy": null, + "createdTime": "2026-02-02 13:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:25", + "echoMap": {}, + "alarmNo": "1593543897", + "alarmDate": "1770010281116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255527", + "createdBy": null, + "createdTime": "2026-02-02 13:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:22", + "echoMap": {}, + "alarmNo": "1593543896", + "alarmDate": "1770010280975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255526", + "createdBy": null, + "createdTime": "2026-02-02 13:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543895", + "alarmDate": "1770010280975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255502", + "createdBy": null, + "createdTime": "2026-02-02 13:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:29", + "echoMap": {}, + "alarmNo": "1593543894", + "alarmDate": "1770010280154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255499", + "createdBy": null, + "createdTime": "2026-02-02 13:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:24", + "echoMap": {}, + "alarmNo": "1593543893", + "alarmDate": "1770010280037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133241224255497", + "createdBy": null, + "createdTime": "2026-02-02 13:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543892", + "alarmDate": "1770010279990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929289212", + "createdBy": null, + "createdTime": "2026-02-02 13:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:33", + "echoMap": {}, + "alarmNo": "1593543891", + "alarmDate": "1770010279263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929289206", + "createdBy": null, + "createdTime": "2026-02-02 13:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:24", + "echoMap": {}, + "alarmNo": "1593543890", + "alarmDate": "1770010278882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288949", + "createdBy": null, + "createdTime": "2026-02-02 13:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:35", + "echoMap": {}, + "alarmNo": "1593543889", + "alarmDate": "1770009738258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288709", + "createdBy": null, + "createdTime": "2026-02-02 13:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:34", + "echoMap": {}, + "alarmNo": "1593543888", + "alarmDate": "1770009731583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288468", + "createdBy": null, + "createdTime": "2026-02-02 13:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:14", + "echoMap": {}, + "alarmNo": "1593543887", + "alarmDate": "1770009725461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288464", + "createdBy": null, + "createdTime": "2026-02-02 13:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:13", + "echoMap": {}, + "alarmNo": "1593543886", + "alarmDate": "1770009725370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288399", + "createdBy": null, + "createdTime": "2026-02-02 13:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:11", + "echoMap": {}, + "alarmNo": "1593543885", + "alarmDate": "1770009723788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288236", + "createdBy": null, + "createdTime": "2026-02-02 13:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543884", + "alarmDate": "1770009719355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133236929288223", + "createdBy": null, + "createdTime": "2026-02-02 13:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:00", + "echoMap": {}, + "alarmNo": "1593543883", + "alarmDate": "1770009719071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133232634320984", + "createdBy": null, + "createdTime": "2026-02-02 13:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:51", + "echoMap": {}, + "alarmNo": "1593543882", + "alarmDate": "1770009717689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133228339353685", + "createdBy": null, + "createdTime": "2026-02-02 13:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:34", + "echoMap": {}, + "alarmNo": "1593543881", + "alarmDate": "1770009711873", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133228339353667", + "createdBy": null, + "createdTime": "2026-02-02 13:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:34", + "echoMap": {}, + "alarmNo": "1593543880", + "alarmDate": "1770009711435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387323", + "createdBy": null, + "createdTime": "2026-02-02 13:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:10", + "echoMap": {}, + "alarmNo": "1593543879", + "alarmDate": "1770009709328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387212", + "createdBy": null, + "createdTime": "2026-02-02 13:21:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:04", + "echoMap": {}, + "alarmNo": "1593543878", + "alarmDate": "1770009705877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387089", + "createdBy": null, + "createdTime": "2026-02-02 13:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:25", + "echoMap": {}, + "alarmNo": "1593543877", + "alarmDate": "1770009702559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044387022", + "createdBy": null, + "createdTime": "2026-02-02 13:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:42", + "echoMap": {}, + "alarmNo": "1593543876", + "alarmDate": "1770009700690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386545", + "createdBy": null, + "createdTime": "2026-02-02 13:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:36", + "echoMap": {}, + "alarmNo": "1593543875", + "alarmDate": "1770009688794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386393", + "createdBy": null, + "createdTime": "2026-02-02 13:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:18", + "echoMap": {}, + "alarmNo": "1593543874", + "alarmDate": "1770009684687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386328", + "createdBy": null, + "createdTime": "2026-02-02 13:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:11", + "echoMap": {}, + "alarmNo": "1593543873", + "alarmDate": "1770009682851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386325", + "createdBy": null, + "createdTime": "2026-02-02 13:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:08", + "echoMap": {}, + "alarmNo": "1593543872", + "alarmDate": "1770009682818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133224044386324", + "createdBy": null, + "createdTime": "2026-02-02 13:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:40", + "echoMap": {}, + "alarmNo": "1593543871", + "alarmDate": "1770009682818", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749420006", + "createdBy": null, + "createdTime": "2026-02-02 13:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:30", + "echoMap": {}, + "alarmNo": "1593543870", + "alarmDate": "1770009681274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749420003", + "createdBy": null, + "createdTime": "2026-02-02 13:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:22", + "echoMap": {}, + "alarmNo": "1593543869", + "alarmDate": "1770009681216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419976", + "createdBy": null, + "createdTime": "2026-02-02 13:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:41", + "echoMap": {}, + "alarmNo": "1593543868", + "alarmDate": "1770009679405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419579", + "createdBy": null, + "createdTime": "2026-02-02 13:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:46", + "echoMap": {}, + "alarmNo": "1593543867", + "alarmDate": "1770009134268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419558", + "createdBy": null, + "createdTime": "2026-02-02 13:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:31", + "echoMap": {}, + "alarmNo": "1593543866", + "alarmDate": "1770009133733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419247", + "createdBy": null, + "createdTime": "2026-02-02 13:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:38", + "echoMap": {}, + "alarmNo": "1593543865", + "alarmDate": "1770009125267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419166", + "createdBy": null, + "createdTime": "2026-02-02 13:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:40", + "echoMap": {}, + "alarmNo": "1593543864", + "alarmDate": "1770009123030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133219749419079", + "createdBy": null, + "createdTime": "2026-02-02 13:12:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:01", + "echoMap": {}, + "alarmNo": "1593543863", + "alarmDate": "1770009120461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451803", + "createdBy": null, + "createdTime": "2026-02-02 13:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:42", + "echoMap": {}, + "alarmNo": "1593543862", + "alarmDate": "1770009118042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451751", + "createdBy": null, + "createdTime": "2026-02-02 13:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:38", + "echoMap": {}, + "alarmNo": "1593543861", + "alarmDate": "1770009116494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451745", + "createdBy": null, + "createdTime": "2026-02-02 13:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:16", + "echoMap": {}, + "alarmNo": "1593543860", + "alarmDate": "1770009116402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133215454451735", + "createdBy": null, + "createdTime": "2026-02-02 13:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:38", + "echoMap": {}, + "alarmNo": "1593543859", + "alarmDate": "1770009116137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864518045", + "createdBy": null, + "createdTime": "2026-02-02 13:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:47", + "echoMap": {}, + "alarmNo": "1593543858", + "alarmDate": "1770009106972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517987", + "createdBy": null, + "createdTime": "2026-02-02 13:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:52", + "echoMap": {}, + "alarmNo": "1593543857", + "alarmDate": "1770009105109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517943", + "createdBy": null, + "createdTime": "2026-02-02 13:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:00", + "echoMap": {}, + "alarmNo": "1593543856", + "alarmDate": "1770009103769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517925", + "createdBy": null, + "createdTime": "2026-02-02 13:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:56", + "echoMap": {}, + "alarmNo": "1593543855", + "alarmDate": "1770009103197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517740", + "createdBy": null, + "createdTime": "2026-02-02 13:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:50", + "echoMap": {}, + "alarmNo": "1593543854", + "alarmDate": "1770009097077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517577", + "createdBy": null, + "createdTime": "2026-02-02 13:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:33", + "echoMap": {}, + "alarmNo": "1593543853", + "alarmDate": "1770009092302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517416", + "createdBy": null, + "createdTime": "2026-02-02 13:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:33", + "echoMap": {}, + "alarmNo": "1593543852", + "alarmDate": "1770009087514", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517355", + "createdBy": null, + "createdTime": "2026-02-02 13:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:27", + "echoMap": {}, + "alarmNo": "1593543851", + "alarmDate": "1770009085636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517266", + "createdBy": null, + "createdTime": "2026-02-02 13:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:31", + "echoMap": {}, + "alarmNo": "1593543850", + "alarmDate": "1770009083090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517192", + "createdBy": null, + "createdTime": "2026-02-02 13:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:27", + "echoMap": {}, + "alarmNo": "1593543849", + "alarmDate": "1770009080358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133206864517173", + "createdBy": null, + "createdTime": "2026-02-02 13:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:23", + "echoMap": {}, + "alarmNo": "1593543848", + "alarmDate": "1770009079125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550643", + "createdBy": null, + "createdTime": "2026-02-02 13:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:42", + "echoMap": {}, + "alarmNo": "1593543847", + "alarmDate": "1770008538048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550602", + "createdBy": null, + "createdTime": "2026-02-02 13:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:30", + "echoMap": {}, + "alarmNo": "1593543846", + "alarmDate": "1770008536924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550512", + "createdBy": null, + "createdTime": "2026-02-02 13:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:15", + "echoMap": {}, + "alarmNo": "1593543845", + "alarmDate": "1770008534424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550486", + "createdBy": null, + "createdTime": "2026-02-02 13:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:46", + "echoMap": {}, + "alarmNo": "1593543844", + "alarmDate": "1770008533790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550478", + "createdBy": null, + "createdTime": "2026-02-02 13:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1593543843", + "alarmDate": "1770008533615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550402", + "createdBy": null, + "createdTime": "2026-02-02 13:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:25", + "echoMap": {}, + "alarmNo": "1593543842", + "alarmDate": "1770008531511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550398", + "createdBy": null, + "createdTime": "2026-02-02 13:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:50", + "echoMap": {}, + "alarmNo": "1593543841", + "alarmDate": "1770008531420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550168", + "createdBy": null, + "createdTime": "2026-02-02 13:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:13", + "echoMap": {}, + "alarmNo": "1593543840", + "alarmDate": "1770008524857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550132", + "createdBy": null, + "createdTime": "2026-02-02 13:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:12", + "echoMap": {}, + "alarmNo": "1593543839", + "alarmDate": "1770008524060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550106", + "createdBy": null, + "createdTime": "2026-02-02 13:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:11", + "echoMap": {}, + "alarmNo": "1593543838", + "alarmDate": "1770008523313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569550068", + "createdBy": null, + "createdTime": "2026-02-02 13:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:08", + "echoMap": {}, + "alarmNo": "1593543837", + "alarmDate": "1770008522324", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133202569549967", + "createdBy": null, + "createdTime": "2026-02-02 13:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:11", + "echoMap": {}, + "alarmNo": "1593543836", + "alarmDate": "1770008519431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133198274582620", + "createdBy": null, + "createdTime": "2026-02-02 13:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:02", + "echoMap": {}, + "alarmNo": "1593543835", + "alarmDate": "1770008514747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133193979615329", + "createdBy": null, + "createdTime": "2026-02-02 13:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:43", + "echoMap": {}, + "alarmNo": "1593543834", + "alarmDate": "1770008510891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648934", + "createdBy": null, + "createdTime": "2026-02-02 13:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:48", + "echoMap": {}, + "alarmNo": "1593543833", + "alarmDate": "1770008507240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648855", + "createdBy": null, + "createdTime": "2026-02-02 13:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:05", + "echoMap": {}, + "alarmNo": "1593543832", + "alarmDate": "1770008504701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648838", + "createdBy": null, + "createdTime": "2026-02-02 13:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:57", + "echoMap": {}, + "alarmNo": "1593543831", + "alarmDate": "1770008504328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648610", + "createdBy": null, + "createdTime": "2026-02-02 13:01:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:45", + "echoMap": {}, + "alarmNo": "1593543830", + "alarmDate": "1770008496918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648528", + "createdBy": null, + "createdTime": "2026-02-02 13:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:46", + "echoMap": {}, + "alarmNo": "1593543829", + "alarmDate": "1770008494403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648305", + "createdBy": null, + "createdTime": "2026-02-02 13:01:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "alarmNo": "1593543828", + "alarmDate": "1770008488457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648110", + "createdBy": null, + "createdTime": "2026-02-02 13:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:42", + "echoMap": {}, + "alarmNo": "1593543827", + "alarmDate": "1770008482704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648082", + "createdBy": null, + "createdTime": "2026-02-02 13:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:08", + "echoMap": {}, + "alarmNo": "1593543826", + "alarmDate": "1770008482054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648067", + "createdBy": null, + "createdTime": "2026-02-02 13:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:34", + "echoMap": {}, + "alarmNo": "1593543825", + "alarmDate": "1770008481444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648042", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:23", + "echoMap": {}, + "alarmNo": "1593543824", + "alarmDate": "1770008480359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648032", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:22", + "echoMap": {}, + "alarmNo": "1593543823", + "alarmDate": "1770008479884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133189684648028", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "1593543822", + "alarmDate": "1770008479680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681442", + "createdBy": null, + "createdTime": "2026-02-02 12:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "1593543821", + "alarmDate": "1770007936302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681380", + "createdBy": null, + "createdTime": "2026-02-02 12:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:53", + "echoMap": {}, + "alarmNo": "1593543820", + "alarmDate": "1770007934405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681346", + "createdBy": null, + "createdTime": "2026-02-02 12:52:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:54", + "echoMap": {}, + "alarmNo": "1593543819", + "alarmDate": "1770007933552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681336", + "createdBy": null, + "createdTime": "2026-02-02 12:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:14", + "echoMap": {}, + "alarmNo": "1593543818", + "alarmDate": "1770007933168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681120", + "createdBy": null, + "createdTime": "2026-02-02 12:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:14", + "echoMap": {}, + "alarmNo": "1593543817", + "alarmDate": "1770007926790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681043", + "createdBy": null, + "createdTime": "2026-02-02 12:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:06", + "echoMap": {}, + "alarmNo": "1593543816", + "alarmDate": "1770007924699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389681038", + "createdBy": null, + "createdTime": "2026-02-02 12:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:06", + "echoMap": {}, + "alarmNo": "1593543815", + "alarmDate": "1770007924583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389680900", + "createdBy": null, + "createdTime": "2026-02-02 12:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:06", + "echoMap": {}, + "alarmNo": "1593543814", + "alarmDate": "1770007920782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389680858", + "createdBy": null, + "createdTime": "2026-02-02 12:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:11", + "echoMap": {}, + "alarmNo": "1593543813", + "alarmDate": "1770007919471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133185389680845", + "createdBy": null, + "createdTime": "2026-02-02 12:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:11", + "echoMap": {}, + "alarmNo": "1593543812", + "alarmDate": "1770007919120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133181094713421", + "createdBy": null, + "createdTime": "2026-02-02 12:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:15", + "echoMap": {}, + "alarmNo": "1593543811", + "alarmDate": "1770007912208", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133176799746243", + "createdBy": null, + "createdTime": "2026-02-02 12:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:05", + "echoMap": {}, + "alarmNo": "1593543810", + "alarmDate": "1770007909437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133176799746144", + "createdBy": null, + "createdTime": "2026-02-02 12:51:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:45", + "echoMap": {}, + "alarmNo": "1593543809", + "alarmDate": "1770007906715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133176799746064", + "createdBy": null, + "createdTime": "2026-02-02 12:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:58", + "echoMap": {}, + "alarmNo": "1593543808", + "alarmDate": "1770007904395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779775", + "createdBy": null, + "createdTime": "2026-02-02 12:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:11", + "echoMap": {}, + "alarmNo": "1593543807", + "alarmDate": "1770007903935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779734", + "createdBy": null, + "createdTime": "2026-02-02 12:51:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:51", + "echoMap": {}, + "alarmNo": "1593543806", + "alarmDate": "1770007902732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779671", + "createdBy": null, + "createdTime": "2026-02-02 12:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:42", + "echoMap": {}, + "alarmNo": "1593543805", + "alarmDate": "1770007900946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504779521", + "createdBy": null, + "createdTime": "2026-02-02 12:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:38", + "echoMap": {}, + "alarmNo": "1593543804", + "alarmDate": "1770007896722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778951", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:30", + "echoMap": {}, + "alarmNo": "1593543803", + "alarmDate": "1770007880866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778950", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:42", + "echoMap": {}, + "alarmNo": "1593543802", + "alarmDate": "1770007880796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778947", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:27", + "echoMap": {}, + "alarmNo": "1593543801", + "alarmDate": "1770007880704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778934", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:07", + "echoMap": {}, + "alarmNo": "1593543800", + "alarmDate": "1770007880461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778932", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:41", + "echoMap": {}, + "alarmNo": "1593543799", + "alarmDate": "1770007880364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778929", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:53", + "echoMap": {}, + "alarmNo": "1593543798", + "alarmDate": "1770007880244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778926", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:41", + "echoMap": {}, + "alarmNo": "1593543797", + "alarmDate": "1770007880041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133172504778915", + "createdBy": null, + "createdTime": "2026-02-02 12:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:03", + "echoMap": {}, + "alarmNo": "1593543796", + "alarmDate": "1770007879141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209812389", + "createdBy": null, + "createdTime": "2026-02-02 12:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:08", + "echoMap": {}, + "alarmNo": "1593543795", + "alarmDate": "1770007338387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209812309", + "createdBy": null, + "createdTime": "2026-02-02 12:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:28", + "echoMap": {}, + "alarmNo": "1593543794", + "alarmDate": "1770007335983", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209812181", + "createdBy": null, + "createdTime": "2026-02-02 12:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:32", + "echoMap": {}, + "alarmNo": "1593543793", + "alarmDate": "1770007332151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209811962", + "createdBy": null, + "createdTime": "2026-02-02 12:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:54", + "echoMap": {}, + "alarmNo": "1593543792", + "alarmDate": "1770007325495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209811499", + "createdBy": null, + "createdTime": "2026-02-02 12:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:54", + "echoMap": {}, + "alarmNo": "1593543791", + "alarmDate": "1770007312546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133168209811479", + "createdBy": null, + "createdTime": "2026-02-02 12:41:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:58", + "echoMap": {}, + "alarmNo": "1593543790", + "alarmDate": "1770007312117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133163914844216", + "createdBy": null, + "createdTime": "2026-02-02 12:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:22", + "echoMap": {}, + "alarmNo": "1593543789", + "alarmDate": "1770007310242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619877022", + "createdBy": null, + "createdTime": "2026-02-02 12:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:04", + "echoMap": {}, + "alarmNo": "1593543788", + "alarmDate": "1770007303287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619876907", + "createdBy": null, + "createdTime": "2026-02-02 12:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:53", + "echoMap": {}, + "alarmNo": "1593543787", + "alarmDate": "1770007300416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619876906", + "createdBy": null, + "createdTime": "2026-02-02 12:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:41", + "echoMap": {}, + "alarmNo": "1593543786", + "alarmDate": "1770007300415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133159619876885", + "createdBy": null, + "createdTime": "2026-02-02 12:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:46", + "echoMap": {}, + "alarmNo": "1593543785", + "alarmDate": "1770007299982", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910539", + "createdBy": null, + "createdTime": "2026-02-02 12:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:39", + "echoMap": {}, + "alarmNo": "1593543784", + "alarmDate": "1770007298028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910442", + "createdBy": null, + "createdTime": "2026-02-02 12:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:03", + "echoMap": {}, + "alarmNo": "1593543783", + "alarmDate": "1770007295371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910426", + "createdBy": null, + "createdTime": "2026-02-02 12:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:43", + "echoMap": {}, + "alarmNo": "1593543782", + "alarmDate": "1770007295004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910269", + "createdBy": null, + "createdTime": "2026-02-02 12:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:50", + "echoMap": {}, + "alarmNo": "1593543781", + "alarmDate": "1770007291021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910220", + "createdBy": null, + "createdTime": "2026-02-02 12:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:31", + "echoMap": {}, + "alarmNo": "1593543780", + "alarmDate": "1770007289735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910219", + "createdBy": null, + "createdTime": "2026-02-02 12:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:00", + "echoMap": {}, + "alarmNo": "1593543779", + "alarmDate": "1770007289702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324910017", + "createdBy": null, + "createdTime": "2026-02-02 12:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:05", + "echoMap": {}, + "alarmNo": "1593543778", + "alarmDate": "1770007283666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909916", + "createdBy": null, + "createdTime": "2026-02-02 12:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:52", + "echoMap": {}, + "alarmNo": "1593543777", + "alarmDate": "1770007279535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909910", + "createdBy": null, + "createdTime": "2026-02-02 12:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:11", + "echoMap": {}, + "alarmNo": "1593543776", + "alarmDate": "1770007279058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909678", + "createdBy": null, + "createdTime": "2026-02-02 12:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:59", + "echoMap": {}, + "alarmNo": "1593543775", + "alarmDate": "1770006738829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909664", + "createdBy": null, + "createdTime": "2026-02-02 12:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:38", + "echoMap": {}, + "alarmNo": "1593543774", + "alarmDate": "1770006738419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909662", + "createdBy": null, + "createdTime": "2026-02-02 12:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:35", + "echoMap": {}, + "alarmNo": "1593543773", + "alarmDate": "1770006738386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133155324909647", + "createdBy": null, + "createdTime": "2026-02-02 12:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:21", + "echoMap": {}, + "alarmNo": "1593543772", + "alarmDate": "1770006738052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029943289", + "createdBy": null, + "createdTime": "2026-02-02 12:32:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:17", + "echoMap": {}, + "alarmNo": "1593543771", + "alarmDate": "1770006735548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029943175", + "createdBy": null, + "createdTime": "2026-02-02 12:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:10", + "echoMap": {}, + "alarmNo": "1593543770", + "alarmDate": "1770006732334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029943078", + "createdBy": null, + "createdTime": "2026-02-02 12:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:22", + "echoMap": {}, + "alarmNo": "1593543769", + "alarmDate": "1770006729746", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942942", + "createdBy": null, + "createdTime": "2026-02-02 12:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:14", + "echoMap": {}, + "alarmNo": "1593543768", + "alarmDate": "1770006725931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942903", + "createdBy": null, + "createdTime": "2026-02-02 12:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:12", + "echoMap": {}, + "alarmNo": "1593543767", + "alarmDate": "1770006724962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942894", + "createdBy": null, + "createdTime": "2026-02-02 12:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:15", + "echoMap": {}, + "alarmNo": "1593543766", + "alarmDate": "1770006724771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942677", + "createdBy": null, + "createdTime": "2026-02-02 12:31:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:13", + "echoMap": {}, + "alarmNo": "1593543765", + "alarmDate": "1770006718642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942473", + "createdBy": null, + "createdTime": "2026-02-02 12:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:02", + "echoMap": {}, + "alarmNo": "1593543764", + "alarmDate": "1770006712977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133151029942425", + "createdBy": null, + "createdTime": "2026-02-02 12:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:22", + "echoMap": {}, + "alarmNo": "1593543763", + "alarmDate": "1770006711732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133146734975048", + "createdBy": null, + "createdTime": "2026-02-02 12:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:48", + "echoMap": {}, + "alarmNo": "1593543762", + "alarmDate": "1770006706456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133146734975036", + "createdBy": null, + "createdTime": "2026-02-02 12:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:59", + "echoMap": {}, + "alarmNo": "1593543761", + "alarmDate": "1770006706139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133146734975017", + "createdBy": null, + "createdTime": "2026-02-02 12:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:06", + "echoMap": {}, + "alarmNo": "1593543760", + "alarmDate": "1770006705713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007786", + "createdBy": null, + "createdTime": "2026-02-02 12:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:18", + "echoMap": {}, + "alarmNo": "1593543759", + "alarmDate": "1770006701138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007762", + "createdBy": null, + "createdTime": "2026-02-02 12:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:17", + "echoMap": {}, + "alarmNo": "1593543758", + "alarmDate": "1770006700567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007756", + "createdBy": null, + "createdTime": "2026-02-02 12:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:54", + "echoMap": {}, + "alarmNo": "1593543757", + "alarmDate": "1770006700368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133142440007734", + "createdBy": null, + "createdTime": "2026-02-02 12:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:46", + "echoMap": {}, + "alarmNo": "1593543756", + "alarmDate": "1770006699786", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040923", + "createdBy": null, + "createdTime": "2026-02-02 12:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:25", + "echoMap": {}, + "alarmNo": "1593543755", + "alarmDate": "1770006683624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040887", + "createdBy": null, + "createdTime": "2026-02-02 12:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:32", + "echoMap": {}, + "alarmNo": "1593543754", + "alarmDate": "1770006682705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040836", + "createdBy": null, + "createdTime": "2026-02-02 12:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:05", + "echoMap": {}, + "alarmNo": "1593543753", + "alarmDate": "1770006680786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040818", + "createdBy": null, + "createdTime": "2026-02-02 12:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:36", + "echoMap": {}, + "alarmNo": "1593543752", + "alarmDate": "1770006679851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040808", + "createdBy": null, + "createdTime": "2026-02-02 12:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:25", + "echoMap": {}, + "alarmNo": "1593543751", + "alarmDate": "1770006679075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133138145040804", + "createdBy": null, + "createdTime": "2026-02-02 12:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:53", + "echoMap": {}, + "alarmNo": "1593543750", + "alarmDate": "1770006678906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850074062", + "createdBy": null, + "createdTime": "2026-02-02 12:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:17", + "echoMap": {}, + "alarmNo": "1593543749", + "alarmDate": "1770006131621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850074044", + "createdBy": null, + "createdTime": "2026-02-02 12:22:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:29", + "echoMap": {}, + "alarmNo": "1593543748", + "alarmDate": "1770006131286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073908", + "createdBy": null, + "createdTime": "2026-02-02 12:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:08", + "echoMap": {}, + "alarmNo": "1593543747", + "alarmDate": "1770006127280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073585", + "createdBy": null, + "createdTime": "2026-02-02 12:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:28", + "echoMap": {}, + "alarmNo": "1593543746", + "alarmDate": "1770006117582", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073481", + "createdBy": null, + "createdTime": "2026-02-02 12:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:56", + "echoMap": {}, + "alarmNo": "1593543745", + "alarmDate": "1770006114533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073455", + "createdBy": null, + "createdTime": "2026-02-02 12:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:01", + "echoMap": {}, + "alarmNo": "1593543744", + "alarmDate": "1770006113799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133133850073251", + "createdBy": null, + "createdTime": "2026-02-02 12:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1593543743", + "alarmDate": "1770006107764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133129555105832", + "createdBy": null, + "createdTime": "2026-02-02 12:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:27", + "echoMap": {}, + "alarmNo": "1593543742", + "alarmDate": "1770006100853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133129555105795", + "createdBy": null, + "createdTime": "2026-02-02 12:21:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1593543741", + "alarmDate": "1770006099871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133125260138663", + "createdBy": null, + "createdTime": "2026-02-02 12:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:53", + "echoMap": {}, + "alarmNo": "1593543740", + "alarmDate": "1770006098625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133125260138534", + "createdBy": null, + "createdTime": "2026-02-02 12:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1593543739", + "alarmDate": "1770006094808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171797", + "createdBy": null, + "createdTime": "2026-02-02 12:21:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:53", + "echoMap": {}, + "alarmNo": "1593543738", + "alarmDate": "1770006082595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171771", + "createdBy": null, + "createdTime": "2026-02-02 12:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:23", + "echoMap": {}, + "alarmNo": "1593543737", + "alarmDate": "1770006081978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171735", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1593543736", + "alarmDate": "1770006080910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171730", + "createdBy": null, + "createdTime": "2026-02-02 12:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:28", + "echoMap": {}, + "alarmNo": "1593543735", + "alarmDate": "1770006080767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171720", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:28", + "echoMap": {}, + "alarmNo": "1593543734", + "alarmDate": "1770006080474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171709", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1593543733", + "alarmDate": "1770006080174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171706", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:46", + "echoMap": {}, + "alarmNo": "1593543732", + "alarmDate": "1770006080034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171704", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1593543731", + "alarmDate": "1770006079944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171700", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:22", + "echoMap": {}, + "alarmNo": "1593543730", + "alarmDate": "1770006079907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171698", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:53", + "echoMap": {}, + "alarmNo": "1593543729", + "alarmDate": "1770006079791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171692", + "createdBy": null, + "createdTime": "2026-02-02 12:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:37", + "echoMap": {}, + "alarmNo": "1593543728", + "alarmDate": "1770006079540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171471", + "createdBy": null, + "createdTime": "2026-02-02 12:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:22", + "echoMap": {}, + "alarmNo": "1593543727", + "alarmDate": "1770005539680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133120965171372", + "createdBy": null, + "createdTime": "2026-02-02 12:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:34", + "echoMap": {}, + "alarmNo": "1593543726", + "alarmDate": "1770005536226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204824", + "createdBy": null, + "createdTime": "2026-02-02 12:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:09", + "echoMap": {}, + "alarmNo": "1593543725", + "alarmDate": "1770005528180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204784", + "createdBy": null, + "createdTime": "2026-02-02 12:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1593543724", + "alarmDate": "1770005527125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204766", + "createdBy": null, + "createdTime": "2026-02-02 12:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:14", + "echoMap": {}, + "alarmNo": "1593543723", + "alarmDate": "1770005526572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204692", + "createdBy": null, + "createdTime": "2026-02-02 12:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:51", + "echoMap": {}, + "alarmNo": "1593543722", + "alarmDate": "1770005524389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204639", + "createdBy": null, + "createdTime": "2026-02-02 12:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:04", + "echoMap": {}, + "alarmNo": "1593543721", + "alarmDate": "1770005522771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204603", + "createdBy": null, + "createdTime": "2026-02-02 12:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:26", + "echoMap": {}, + "alarmNo": "1593543720", + "alarmDate": "1770005521824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204424", + "createdBy": null, + "createdTime": "2026-02-02 12:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:05", + "echoMap": {}, + "alarmNo": "1593543719", + "alarmDate": "1770005516615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204177", + "createdBy": null, + "createdTime": "2026-02-02 12:11:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:51", + "echoMap": {}, + "alarmNo": "1593543718", + "alarmDate": "1770005509552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204153", + "createdBy": null, + "createdTime": "2026-02-02 12:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:02", + "echoMap": {}, + "alarmNo": "1593543717", + "alarmDate": "1770005509042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670204042", + "createdBy": null, + "createdTime": "2026-02-02 12:11:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:53", + "echoMap": {}, + "alarmNo": "1593543716", + "alarmDate": "1770005506027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670203918", + "createdBy": null, + "createdTime": "2026-02-02 12:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:44", + "echoMap": {}, + "alarmNo": "1593543715", + "alarmDate": "1770005502715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133116670203905", + "createdBy": null, + "createdTime": "2026-02-02 12:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:58", + "echoMap": {}, + "alarmNo": "1593543714", + "alarmDate": "1770005502480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133112375236666", + "createdBy": null, + "createdTime": "2026-02-02 12:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:47", + "echoMap": {}, + "alarmNo": "1593543713", + "alarmDate": "1770005500978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133108080269683", + "createdBy": null, + "createdTime": "2026-02-02 12:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:06", + "echoMap": {}, + "alarmNo": "1593543712", + "alarmDate": "1770005499341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133108080269393", + "createdBy": null, + "createdTime": "2026-02-02 12:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:38", + "echoMap": {}, + "alarmNo": "1593543711", + "alarmDate": "1770005491920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060084", + "deviceName": "[401](10)南京东1#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785303039", + "createdBy": null, + "createdTime": "2026-02-02 12:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:31", + "echoMap": {}, + "alarmNo": "1593543710", + "alarmDate": "1770005489874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302721", + "createdBy": null, + "createdTime": "2026-02-02 12:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:24", + "echoMap": {}, + "alarmNo": "1593543709", + "alarmDate": "1770005481534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302719", + "createdBy": null, + "createdTime": "2026-02-02 12:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:01", + "echoMap": {}, + "alarmNo": "1593543708", + "alarmDate": "1770005481477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302691", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:29", + "echoMap": {}, + "alarmNo": "1593543707", + "alarmDate": "1770005480490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302681", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:02", + "echoMap": {}, + "alarmNo": "1593543706", + "alarmDate": "1770005480175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302680", + "createdBy": null, + "createdTime": "2026-02-02 12:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:38", + "echoMap": {}, + "alarmNo": "1593543705", + "alarmDate": "1770005480173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302665", + "createdBy": null, + "createdTime": "2026-02-02 12:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:49", + "echoMap": {}, + "alarmNo": "1593543704", + "alarmDate": "1770005479363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302321", + "createdBy": null, + "createdTime": "2026-02-02 12:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:35", + "echoMap": {}, + "alarmNo": "1593543703", + "alarmDate": "1770004936047", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302267", + "createdBy": null, + "createdTime": "2026-02-02 12:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:29", + "echoMap": {}, + "alarmNo": "1593543702", + "alarmDate": "1770004934760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133103785302264", + "createdBy": null, + "createdTime": "2026-02-02 12:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:16", + "echoMap": {}, + "alarmNo": "1593543701", + "alarmDate": "1770004934727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335615", + "createdBy": null, + "createdTime": "2026-02-02 12:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:12", + "echoMap": {}, + "alarmNo": "1593543700", + "alarmDate": "1770004924956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335588", + "createdBy": null, + "createdTime": "2026-02-02 12:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:11", + "echoMap": {}, + "alarmNo": "1593543699", + "alarmDate": "1770004924341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335516", + "createdBy": null, + "createdTime": "2026-02-02 12:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:04", + "echoMap": {}, + "alarmNo": "1593543698", + "alarmDate": "1770004922548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335444", + "createdBy": null, + "createdTime": "2026-02-02 12:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:54", + "echoMap": {}, + "alarmNo": "1593543697", + "alarmDate": "1770004920871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335394", + "createdBy": null, + "createdTime": "2026-02-02 12:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:46", + "echoMap": {}, + "alarmNo": "1593543696", + "alarmDate": "1770004919408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335172", + "createdBy": null, + "createdTime": "2026-02-02 12:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:27", + "echoMap": {}, + "alarmNo": "1593543695", + "alarmDate": "1770004913858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335074", + "createdBy": null, + "createdTime": "2026-02-02 12:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1593543694", + "alarmDate": "1770004911272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490335000", + "createdBy": null, + "createdTime": "2026-02-02 12:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:01", + "echoMap": {}, + "alarmNo": "1593543693", + "alarmDate": "1770004909479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133099490334998", + "createdBy": null, + "createdTime": "2026-02-02 12:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:51", + "echoMap": {}, + "alarmNo": "1593543692", + "alarmDate": "1770004909478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133095195367430", + "createdBy": null, + "createdTime": "2026-02-02 12:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:52", + "echoMap": {}, + "alarmNo": "1593543691", + "alarmDate": "1770004900049", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133090900400182", + "createdBy": null, + "createdTime": "2026-02-02 12:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:13", + "echoMap": {}, + "alarmNo": "1593543690", + "alarmDate": "1770004894755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133090900400166", + "createdBy": null, + "createdTime": "2026-02-02 12:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:46", + "echoMap": {}, + "alarmNo": "1593543689", + "alarmDate": "1770004894363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433724", + "createdBy": null, + "createdTime": "2026-02-02 12:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:06", + "echoMap": {}, + "alarmNo": "1593543688", + "alarmDate": "1770004890514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433696", + "createdBy": null, + "createdTime": "2026-02-02 12:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:51", + "echoMap": {}, + "alarmNo": "1593543687", + "alarmDate": "1770004889829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433396", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:11", + "echoMap": {}, + "alarmNo": "1593543686", + "alarmDate": "1770004880377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433390", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:28", + "echoMap": {}, + "alarmNo": "1593543685", + "alarmDate": "1770004880119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433386", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:07", + "echoMap": {}, + "alarmNo": "1593543684", + "alarmDate": "1770004879943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433385", + "createdBy": null, + "createdTime": "2026-02-02 12:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:35", + "echoMap": {}, + "alarmNo": "1593543683", + "alarmDate": "1770004879919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433371", + "createdBy": null, + "createdTime": "2026-02-02 12:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:31", + "echoMap": {}, + "alarmNo": "1593543682", + "alarmDate": "1770004879051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433316", + "createdBy": null, + "createdTime": "2026-02-02 11:59:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "alarmNo": "1593543681", + "alarmDate": "1770004769400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1016060058", + "deviceName": "[358](10)南京东1#轿厢", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433104", + "createdBy": null, + "createdTime": "2026-02-02 11:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:48", + "echoMap": {}, + "alarmNo": "1593543680", + "alarmDate": "1770004338532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433055", + "createdBy": null, + "createdTime": "2026-02-02 11:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:24", + "echoMap": {}, + "alarmNo": "1593543679", + "alarmDate": "1770004337221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605433012", + "createdBy": null, + "createdTime": "2026-02-02 11:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:22", + "echoMap": {}, + "alarmNo": "1593543678", + "alarmDate": "1770004336110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133086605432850", + "createdBy": null, + "createdTime": "2026-02-02 11:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:38", + "echoMap": {}, + "alarmNo": "1593543677", + "alarmDate": "1770004331762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466391", + "createdBy": null, + "createdTime": "2026-02-02 11:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:45", + "echoMap": {}, + "alarmNo": "1593543676", + "alarmDate": "1770004326903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466282", + "createdBy": null, + "createdTime": "2026-02-02 11:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:41", + "echoMap": {}, + "alarmNo": "1593543675", + "alarmDate": "1770004324156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466264", + "createdBy": null, + "createdTime": "2026-02-02 11:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1593543674", + "alarmDate": "1770004323718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466179", + "createdBy": null, + "createdTime": "2026-02-02 11:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:02", + "echoMap": {}, + "alarmNo": "1593543673", + "alarmDate": "1770004321428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466141", + "createdBy": null, + "createdTime": "2026-02-02 11:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:07", + "echoMap": {}, + "alarmNo": "1593543672", + "alarmDate": "1770004320531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133082310466102", + "createdBy": null, + "createdTime": "2026-02-02 11:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:43", + "echoMap": {}, + "alarmNo": "1593543671", + "alarmDate": "1770004319482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133078015498306", + "createdBy": null, + "createdTime": "2026-02-02 11:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:43", + "echoMap": {}, + "alarmNo": "1593543670", + "alarmDate": "1770004301949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133073720531024", + "createdBy": null, + "createdTime": "2026-02-02 11:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:15", + "echoMap": {}, + "alarmNo": "1593543669", + "alarmDate": "1770004296880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564474", + "createdBy": null, + "createdTime": "2026-02-02 11:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:57", + "echoMap": {}, + "alarmNo": "1593543668", + "alarmDate": "1770004290029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564464", + "createdBy": null, + "createdTime": "2026-02-02 11:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:37", + "echoMap": {}, + "alarmNo": "1593543667", + "alarmDate": "1770004289811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564354", + "createdBy": null, + "createdTime": "2026-02-02 11:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:35", + "echoMap": {}, + "alarmNo": "1593543666", + "alarmDate": "1770004286997", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564196", + "createdBy": null, + "createdTime": "2026-02-02 11:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1593543665", + "alarmDate": "1770004282472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425564137", + "createdBy": null, + "createdTime": "2026-02-02 11:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:34", + "echoMap": {}, + "alarmNo": "1593543664", + "alarmDate": "1770004279664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563923", + "createdBy": null, + "createdTime": "2026-02-02 11:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:18", + "echoMap": {}, + "alarmNo": "1593543663", + "alarmDate": "1770003740052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563833", + "createdBy": null, + "createdTime": "2026-02-02 11:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:46", + "echoMap": {}, + "alarmNo": "1593543662", + "alarmDate": "1770003737201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563782", + "createdBy": null, + "createdTime": "2026-02-02 11:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:39", + "echoMap": {}, + "alarmNo": "1593543661", + "alarmDate": "1770003735926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563693", + "createdBy": null, + "createdTime": "2026-02-02 11:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:24", + "echoMap": {}, + "alarmNo": "1593543660", + "alarmDate": "1770003733638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133069425563659", + "createdBy": null, + "createdTime": "2026-02-02 11:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:16", + "echoMap": {}, + "alarmNo": "1593543659", + "alarmDate": "1770003732836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130597279", + "createdBy": null, + "createdTime": "2026-02-02 11:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:08", + "echoMap": {}, + "alarmNo": "1593543658", + "alarmDate": "1770003730014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130597017", + "createdBy": null, + "createdTime": "2026-02-02 11:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:06", + "echoMap": {}, + "alarmNo": "1593543657", + "alarmDate": "1770003722907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596972", + "createdBy": null, + "createdTime": "2026-02-02 11:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:11", + "echoMap": {}, + "alarmNo": "1593543656", + "alarmDate": "1770003721707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596941", + "createdBy": null, + "createdTime": "2026-02-02 11:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:16", + "echoMap": {}, + "alarmNo": "1593543655", + "alarmDate": "1770003721004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596909", + "createdBy": null, + "createdTime": "2026-02-02 11:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:57", + "echoMap": {}, + "alarmNo": "1593543654", + "alarmDate": "1770003720170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596861", + "createdBy": null, + "createdTime": "2026-02-02 11:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:00", + "echoMap": {}, + "alarmNo": "1593543653", + "alarmDate": "1770003718742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596810", + "createdBy": null, + "createdTime": "2026-02-02 11:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:52", + "echoMap": {}, + "alarmNo": "1593543652", + "alarmDate": "1770003717399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596800", + "createdBy": null, + "createdTime": "2026-02-02 11:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:04", + "echoMap": {}, + "alarmNo": "1593543651", + "alarmDate": "1770003717198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596724", + "createdBy": null, + "createdTime": "2026-02-02 11:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:17", + "echoMap": {}, + "alarmNo": "1593543650", + "alarmDate": "1770003714880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596684", + "createdBy": null, + "createdTime": "2026-02-02 11:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:06", + "echoMap": {}, + "alarmNo": "1593543649", + "alarmDate": "1770003713613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596470", + "createdBy": null, + "createdTime": "2026-02-02 11:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:48", + "echoMap": {}, + "alarmNo": "1593543648", + "alarmDate": "1770003706875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596428", + "createdBy": null, + "createdTime": "2026-02-02 11:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "alarmNo": "1593543647", + "alarmDate": "1770003705631", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133065130596399", + "createdBy": null, + "createdTime": "2026-02-02 11:41:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:51", + "echoMap": {}, + "alarmNo": "1593543646", + "alarmDate": "1770003704841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133060835629137", + "createdBy": null, + "createdTime": "2026-02-02 11:41:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:48", + "echoMap": {}, + "alarmNo": "1593543645", + "alarmDate": "1770003702175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133056540661942", + "createdBy": null, + "createdTime": "2026-02-02 11:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:45", + "echoMap": {}, + "alarmNo": "1593543644", + "alarmDate": "1770003698086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133056540661827", + "createdBy": null, + "createdTime": "2026-02-02 11:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:36", + "echoMap": {}, + "alarmNo": "1593543643", + "alarmDate": "1770003694836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695430", + "createdBy": null, + "createdTime": "2026-02-02 11:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:39", + "echoMap": {}, + "alarmNo": "1593543642", + "alarmDate": "1770003691963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695391", + "createdBy": null, + "createdTime": "2026-02-02 11:41:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:32", + "echoMap": {}, + "alarmNo": "1593543641", + "alarmDate": "1770003691060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695141", + "createdBy": null, + "createdTime": "2026-02-02 11:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:44", + "echoMap": {}, + "alarmNo": "1593543640", + "alarmDate": "1770003684113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695063", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:28", + "echoMap": {}, + "alarmNo": "1593543639", + "alarmDate": "1770003682027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695025", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:23", + "echoMap": {}, + "alarmNo": "1593543638", + "alarmDate": "1770003680449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695014", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:24", + "echoMap": {}, + "alarmNo": "1593543637", + "alarmDate": "1770003680043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695010", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:33", + "echoMap": {}, + "alarmNo": "1593543636", + "alarmDate": "1770003679790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245695005", + "createdBy": null, + "createdTime": "2026-02-02 11:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:40", + "echoMap": {}, + "alarmNo": "1593543635", + "alarmDate": "1770003679590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245694757", + "createdBy": null, + "createdTime": "2026-02-02 11:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:20", + "echoMap": {}, + "alarmNo": "1593543634", + "alarmDate": "1770003138706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245694682", + "createdBy": null, + "createdTime": "2026-02-02 11:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:18", + "echoMap": {}, + "alarmNo": "1593543633", + "alarmDate": "1770003136844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133052245694517", + "createdBy": null, + "createdTime": "2026-02-02 11:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:40", + "echoMap": {}, + "alarmNo": "1593543632", + "alarmDate": "1770003132694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950728142", + "createdBy": null, + "createdTime": "2026-02-02 11:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:17", + "echoMap": {}, + "alarmNo": "1593543631", + "alarmDate": "1770003130149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950728079", + "createdBy": null, + "createdTime": "2026-02-02 11:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:43", + "echoMap": {}, + "alarmNo": "1593543630", + "alarmDate": "1770003128455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727960", + "createdBy": null, + "createdTime": "2026-02-02 11:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:32", + "echoMap": {}, + "alarmNo": "1593543629", + "alarmDate": "1770003125390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727932", + "createdBy": null, + "createdTime": "2026-02-02 11:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:19", + "echoMap": {}, + "alarmNo": "1593543628", + "alarmDate": "1770003124847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727879", + "createdBy": null, + "createdTime": "2026-02-02 11:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:34", + "echoMap": {}, + "alarmNo": "1593543627", + "alarmDate": "1770003123386", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727816", + "createdBy": null, + "createdTime": "2026-02-02 11:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:15", + "echoMap": {}, + "alarmNo": "1593543626", + "alarmDate": "1770003121741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727775", + "createdBy": null, + "createdTime": "2026-02-02 11:32:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:39", + "echoMap": {}, + "alarmNo": "1593543625", + "alarmDate": "1770003120547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727490", + "createdBy": null, + "createdTime": "2026-02-02 11:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:54", + "echoMap": {}, + "alarmNo": "1593543624", + "alarmDate": "1770003112682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727373", + "createdBy": null, + "createdTime": "2026-02-02 11:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:22", + "echoMap": {}, + "alarmNo": "1593543623", + "alarmDate": "1770003109510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727361", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:51", + "echoMap": {}, + "alarmNo": "1593543622", + "alarmDate": "1770003109293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727355", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:55", + "echoMap": {}, + "alarmNo": "1593543621", + "alarmDate": "1770003109236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727347", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:56", + "echoMap": {}, + "alarmNo": "1593543620", + "alarmDate": "1770003109102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133047950727346", + "createdBy": null, + "createdTime": "2026-02-02 11:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:08", + "echoMap": {}, + "alarmNo": "1593543619", + "alarmDate": "1770003109102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133043655759924", + "createdBy": null, + "createdTime": "2026-02-02 11:31:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:49", + "echoMap": {}, + "alarmNo": "1593543618", + "alarmDate": "1770003102551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133043655759880", + "createdBy": null, + "createdTime": "2026-02-02 11:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:47", + "echoMap": {}, + "alarmNo": "1593543617", + "alarmDate": "1770003101440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133039360792689", + "createdBy": null, + "createdTime": "2026-02-02 11:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:59", + "echoMap": {}, + "alarmNo": "1593543616", + "alarmDate": "1770003100452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133039360792686", + "createdBy": null, + "createdTime": "2026-02-02 11:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:16", + "echoMap": {}, + "alarmNo": "1593543615", + "alarmDate": "1770003100360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133039360792616", + "createdBy": null, + "createdTime": "2026-02-02 11:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:45", + "echoMap": {}, + "alarmNo": "1593543614", + "alarmDate": "1770003098557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065826261", + "createdBy": null, + "createdTime": "2026-02-02 11:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:49", + "echoMap": {}, + "alarmNo": "1593543613", + "alarmDate": "1770003096331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825722", + "createdBy": null, + "createdTime": "2026-02-02 11:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:28", + "echoMap": {}, + "alarmNo": "1593543612", + "alarmDate": "1770003083250", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825637", + "createdBy": null, + "createdTime": "2026-02-02 11:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:49", + "echoMap": {}, + "alarmNo": "1593543611", + "alarmDate": "1770003080963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825620", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:36", + "echoMap": {}, + "alarmNo": "1593543610", + "alarmDate": "1770003080312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825619", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:18", + "echoMap": {}, + "alarmNo": "1593543609", + "alarmDate": "1770003080311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825616", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:11", + "echoMap": {}, + "alarmNo": "1593543608", + "alarmDate": "1770003080278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825610", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:54", + "echoMap": {}, + "alarmNo": "1593543607", + "alarmDate": "1770003080086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825605", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:37", + "echoMap": {}, + "alarmNo": "1593543606", + "alarmDate": "1770003079998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825598", + "createdBy": null, + "createdTime": "2026-02-02 11:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:36", + "echoMap": {}, + "alarmNo": "1593543605", + "alarmDate": "1770003079519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825597", + "createdBy": null, + "createdTime": "2026-02-02 11:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:04", + "echoMap": {}, + "alarmNo": "1593543604", + "alarmDate": "1770003079469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133035065825309", + "createdBy": null, + "createdTime": "2026-02-02 11:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:36", + "echoMap": {}, + "alarmNo": "1593543603", + "alarmDate": "1770002537098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858806", + "createdBy": null, + "createdTime": "2026-02-02 11:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:22", + "echoMap": {}, + "alarmNo": "1593543602", + "alarmDate": "1770002530129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858771", + "createdBy": null, + "createdTime": "2026-02-02 11:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:23", + "echoMap": {}, + "alarmNo": "1593543601", + "alarmDate": "1770002529152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858615", + "createdBy": null, + "createdTime": "2026-02-02 11:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:51", + "echoMap": {}, + "alarmNo": "1593543600", + "alarmDate": "1770002524560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858540", + "createdBy": null, + "createdTime": "2026-02-02 11:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:17", + "echoMap": {}, + "alarmNo": "1593543599", + "alarmDate": "1770002522597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858291", + "createdBy": null, + "createdTime": "2026-02-02 11:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:57", + "echoMap": {}, + "alarmNo": "1593543598", + "alarmDate": "1770002515573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133030770858266", + "createdBy": null, + "createdTime": "2026-02-02 11:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:10", + "echoMap": {}, + "alarmNo": "1593543597", + "alarmDate": "1770002514872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133026475890787", + "createdBy": null, + "createdTime": "2026-02-02 11:21:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:40", + "echoMap": {}, + "alarmNo": "1593543596", + "alarmDate": "1770002507129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133022180923627", + "createdBy": null, + "createdTime": "2026-02-02 11:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:07", + "echoMap": {}, + "alarmNo": "1593543595", + "alarmDate": "1770002504006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133022180923626", + "createdBy": null, + "createdTime": "2026-02-02 11:21:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:45", + "echoMap": {}, + "alarmNo": "1593543594", + "alarmDate": "1770002504005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133022180923519", + "createdBy": null, + "createdTime": "2026-02-02 11:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:55", + "echoMap": {}, + "alarmNo": "1593543593", + "alarmDate": "1770002501524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885957119", + "createdBy": null, + "createdTime": "2026-02-02 11:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:06", + "echoMap": {}, + "alarmNo": "1593543592", + "alarmDate": "1770002498431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956748", + "createdBy": null, + "createdTime": "2026-02-02 11:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:30", + "echoMap": {}, + "alarmNo": "1593543591", + "alarmDate": "1770002489362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956544", + "createdBy": null, + "createdTime": "2026-02-02 11:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543590", + "alarmDate": "1770002483986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956444", + "createdBy": null, + "createdTime": "2026-02-02 11:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:48", + "echoMap": {}, + "alarmNo": "1593543589", + "alarmDate": "1770002480833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956428", + "createdBy": null, + "createdTime": "2026-02-02 11:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:41", + "echoMap": {}, + "alarmNo": "1593543588", + "alarmDate": "1770002479871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956419", + "createdBy": null, + "createdTime": "2026-02-02 11:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:43", + "echoMap": {}, + "alarmNo": "1593543587", + "alarmDate": "1770002479447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956412", + "createdBy": null, + "createdTime": "2026-02-02 11:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:05", + "echoMap": {}, + "alarmNo": "1593543586", + "alarmDate": "1770002479054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956214", + "createdBy": null, + "createdTime": "2026-02-02 11:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:39", + "echoMap": {}, + "alarmNo": "1593543585", + "alarmDate": "1770001941989", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133017885956125", + "createdBy": null, + "createdTime": "2026-02-02 11:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:26", + "echoMap": {}, + "alarmNo": "1593543584", + "alarmDate": "1770001937532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989773", + "createdBy": null, + "createdTime": "2026-02-02 11:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:46", + "echoMap": {}, + "alarmNo": "1593543583", + "alarmDate": "1770001935529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989679", + "createdBy": null, + "createdTime": "2026-02-02 11:12:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:14", + "echoMap": {}, + "alarmNo": "1593543582", + "alarmDate": "1770001933006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989654", + "createdBy": null, + "createdTime": "2026-02-02 11:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:18", + "echoMap": {}, + "alarmNo": "1593543581", + "alarmDate": "1770001932470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989491", + "createdBy": null, + "createdTime": "2026-02-02 11:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:09", + "echoMap": {}, + "alarmNo": "1593543580", + "alarmDate": "1770001927848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590989093", + "createdBy": null, + "createdTime": "2026-02-02 11:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:11", + "echoMap": {}, + "alarmNo": "1593543579", + "alarmDate": "1770001917110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133013590988942", + "createdBy": null, + "createdTime": "2026-02-02 11:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:21", + "echoMap": {}, + "alarmNo": "1593543578", + "alarmDate": "1770001913280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133009296021545", + "createdBy": null, + "createdTime": "2026-02-02 11:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543577", + "alarmDate": "1770001907696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133005001054321", + "createdBy": null, + "createdTime": "2026-02-02 11:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:18", + "echoMap": {}, + "alarmNo": "1593543576", + "alarmDate": "1770001906508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133005001054238", + "createdBy": null, + "createdTime": "2026-02-02 11:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:52", + "echoMap": {}, + "alarmNo": "1593543575", + "alarmDate": "1770001904207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087595", + "createdBy": null, + "createdTime": "2026-02-02 11:11:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:34", + "echoMap": {}, + "alarmNo": "1593543574", + "alarmDate": "1770001893221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087542", + "createdBy": null, + "createdTime": "2026-02-02 11:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:33", + "echoMap": {}, + "alarmNo": "1593543573", + "alarmDate": "1770001891951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087461", + "createdBy": null, + "createdTime": "2026-02-02 11:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:31", + "echoMap": {}, + "alarmNo": "1593543572", + "alarmDate": "1770001889822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087388", + "createdBy": null, + "createdTime": "2026-02-02 11:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:58", + "echoMap": {}, + "alarmNo": "1593543571", + "alarmDate": "1770001887919", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087256", + "createdBy": null, + "createdTime": "2026-02-02 11:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:17", + "echoMap": {}, + "alarmNo": "1593543570", + "alarmDate": "1770001883950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087171", + "createdBy": null, + "createdTime": "2026-02-02 11:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:35", + "echoMap": {}, + "alarmNo": "1593543569", + "alarmDate": "1770001881312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706087141", + "createdBy": null, + "createdTime": "2026-02-02 11:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:25", + "echoMap": {}, + "alarmNo": "1593543568", + "alarmDate": "1770001879465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723133000706086917", + "createdBy": null, + "createdTime": "2026-02-02 11:02:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:21", + "echoMap": {}, + "alarmNo": "1593543567", + "alarmDate": "1770001339969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120612", + "createdBy": null, + "createdTime": "2026-02-02 11:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543566", + "alarmDate": "1770001338452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120601", + "createdBy": null, + "createdTime": "2026-02-02 11:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:06", + "echoMap": {}, + "alarmNo": "1593543565", + "alarmDate": "1770001338151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120547", + "createdBy": null, + "createdTime": "2026-02-02 11:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:18", + "echoMap": {}, + "alarmNo": "1593543564", + "alarmDate": "1770001336804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120539", + "createdBy": null, + "createdTime": "2026-02-02 11:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:30", + "echoMap": {}, + "alarmNo": "1593543563", + "alarmDate": "1770001336548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120526", + "createdBy": null, + "createdTime": "2026-02-02 11:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:33", + "echoMap": {}, + "alarmNo": "1593543562", + "alarmDate": "1770001336173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120506", + "createdBy": null, + "createdTime": "2026-02-02 11:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:04", + "echoMap": {}, + "alarmNo": "1593543561", + "alarmDate": "1770001335803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120465", + "createdBy": null, + "createdTime": "2026-02-02 11:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:06", + "echoMap": {}, + "alarmNo": "1593543560", + "alarmDate": "1770001334487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120334", + "createdBy": null, + "createdTime": "2026-02-02 11:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:12", + "echoMap": {}, + "alarmNo": "1593543559", + "alarmDate": "1770001330687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120285", + "createdBy": null, + "createdTime": "2026-02-02 11:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:50", + "echoMap": {}, + "alarmNo": "1593543558", + "alarmDate": "1770001329128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120281", + "createdBy": null, + "createdTime": "2026-02-02 11:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:04", + "echoMap": {}, + "alarmNo": "1593543557", + "alarmDate": "1770001329087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120262", + "createdBy": null, + "createdTime": "2026-02-02 11:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:22", + "echoMap": {}, + "alarmNo": "1593543556", + "alarmDate": "1770001328744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120105", + "createdBy": null, + "createdTime": "2026-02-02 11:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:40", + "echoMap": {}, + "alarmNo": "1593543555", + "alarmDate": "1770001323516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411120073", + "createdBy": null, + "createdTime": "2026-02-02 11:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:11", + "echoMap": {}, + "alarmNo": "1593543554", + "alarmDate": "1770001322772", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119988", + "createdBy": null, + "createdTime": "2026-02-02 11:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:06", + "echoMap": {}, + "alarmNo": "1593543553", + "alarmDate": "1770001320156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119865", + "createdBy": null, + "createdTime": "2026-02-02 11:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:04", + "echoMap": {}, + "alarmNo": "1593543552", + "alarmDate": "1770001316432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119826", + "createdBy": null, + "createdTime": "2026-02-02 11:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:01", + "echoMap": {}, + "alarmNo": "1593543551", + "alarmDate": "1770001315452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132996411119763", + "createdBy": null, + "createdTime": "2026-02-02 11:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:55", + "echoMap": {}, + "alarmNo": "1593543550", + "alarmDate": "1770001313911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132992116152353", + "createdBy": null, + "createdTime": "2026-02-02 11:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:49", + "echoMap": {}, + "alarmNo": "1593543549", + "alarmDate": "1770001307759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526218712", + "createdBy": null, + "createdTime": "2026-02-02 11:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:45", + "echoMap": {}, + "alarmNo": "1593543548", + "alarmDate": "1770001303186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526218573", + "createdBy": null, + "createdTime": "2026-02-02 11:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:46", + "echoMap": {}, + "alarmNo": "1593543547", + "alarmDate": "1770001299730", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526218063", + "createdBy": null, + "createdTime": "2026-02-02 11:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:39", + "echoMap": {}, + "alarmNo": "1593543546", + "alarmDate": "1770001287102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217995", + "createdBy": null, + "createdTime": "2026-02-02 11:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:32", + "echoMap": {}, + "alarmNo": "1593543545", + "alarmDate": "1770001285415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217841", + "createdBy": null, + "createdTime": "2026-02-02 11:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:56", + "echoMap": {}, + "alarmNo": "1593543544", + "alarmDate": "1770001281115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217830", + "createdBy": null, + "createdTime": "2026-02-02 11:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:55", + "echoMap": {}, + "alarmNo": "1593543543", + "alarmDate": "1770001280673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217823", + "createdBy": null, + "createdTime": "2026-02-02 11:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:43", + "echoMap": {}, + "alarmNo": "1593543542", + "alarmDate": "1770001280456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217807", + "createdBy": null, + "createdTime": "2026-02-02 11:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:28", + "echoMap": {}, + "alarmNo": "1593543541", + "alarmDate": "1770001279595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217802", + "createdBy": null, + "createdTime": "2026-02-02 11:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:12", + "echoMap": {}, + "alarmNo": "1593543540", + "alarmDate": "1770001279440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132983526217795", + "createdBy": null, + "createdTime": "2026-02-02 11:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:56", + "echoMap": {}, + "alarmNo": "1593543539", + "alarmDate": "1770001279052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231251279", + "createdBy": null, + "createdTime": "2026-02-02 10:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:48", + "echoMap": {}, + "alarmNo": "1593543538", + "alarmDate": "1770000738788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231251214", + "createdBy": null, + "createdTime": "2026-02-02 10:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:47", + "echoMap": {}, + "alarmNo": "1593543537", + "alarmDate": "1770000736770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231251209", + "createdBy": null, + "createdTime": "2026-02-02 10:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:56", + "echoMap": {}, + "alarmNo": "1593543536", + "alarmDate": "1770000736679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250986", + "createdBy": null, + "createdTime": "2026-02-02 10:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:51", + "echoMap": {}, + "alarmNo": "1593543535", + "alarmDate": "1770000729608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250983", + "createdBy": null, + "createdTime": "2026-02-02 10:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:15", + "echoMap": {}, + "alarmNo": "1593543534", + "alarmDate": "1770000729478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250764", + "createdBy": null, + "createdTime": "2026-02-02 10:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:09", + "echoMap": {}, + "alarmNo": "1593543533", + "alarmDate": "1770000722762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250733", + "createdBy": null, + "createdTime": "2026-02-02 10:52:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:08", + "echoMap": {}, + "alarmNo": "1593543532", + "alarmDate": "1770000722009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250690", + "createdBy": null, + "createdTime": "2026-02-02 10:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:08", + "echoMap": {}, + "alarmNo": "1593543531", + "alarmDate": "1770000720724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250593", + "createdBy": null, + "createdTime": "2026-02-02 10:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:04", + "echoMap": {}, + "alarmNo": "1593543530", + "alarmDate": "1770000717768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250534", + "createdBy": null, + "createdTime": "2026-02-02 10:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:13", + "echoMap": {}, + "alarmNo": "1593543529", + "alarmDate": "1770000716158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132979231250528", + "createdBy": null, + "createdTime": "2026-02-02 10:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:03", + "echoMap": {}, + "alarmNo": "1593543528", + "alarmDate": "1770000715908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132974936283225", + "createdBy": null, + "createdTime": "2026-02-02 10:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:54", + "echoMap": {}, + "alarmNo": "1593543527", + "alarmDate": "1770000712710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132974936283167", + "createdBy": null, + "createdTime": "2026-02-02 10:51:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:52", + "echoMap": {}, + "alarmNo": "1593543526", + "alarmDate": "1770000711233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132970641315939", + "createdBy": null, + "createdTime": "2026-02-02 10:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:57", + "echoMap": {}, + "alarmNo": "1593543525", + "alarmDate": "1770000709753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346349321", + "createdBy": null, + "createdTime": "2026-02-02 10:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:52", + "echoMap": {}, + "alarmNo": "1593543524", + "alarmDate": "1770000699580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348900", + "createdBy": null, + "createdTime": "2026-02-02 10:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:36", + "echoMap": {}, + "alarmNo": "1593543523", + "alarmDate": "1770000688880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348863", + "createdBy": null, + "createdTime": "2026-02-02 10:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:29", + "echoMap": {}, + "alarmNo": "1593543522", + "alarmDate": "1770000688070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348785", + "createdBy": null, + "createdTime": "2026-02-02 10:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:34", + "echoMap": {}, + "alarmNo": "1593543521", + "alarmDate": "1770000686012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348747", + "createdBy": null, + "createdTime": "2026-02-02 10:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:24", + "echoMap": {}, + "alarmNo": "1593543520", + "alarmDate": "1770000685089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348607", + "createdBy": null, + "createdTime": "2026-02-02 10:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:37", + "echoMap": {}, + "alarmNo": "1593543519", + "alarmDate": "1770000680806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348589", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:37", + "echoMap": {}, + "alarmNo": "1593543518", + "alarmDate": "1770000679906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348584", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:35", + "echoMap": {}, + "alarmNo": "1593543517", + "alarmDate": "1770000679690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348581", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:25", + "echoMap": {}, + "alarmNo": "1593543516", + "alarmDate": "1770000679581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132966346348574", + "createdBy": null, + "createdTime": "2026-02-02 10:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:49", + "echoMap": {}, + "alarmNo": "1593543515", + "alarmDate": "1770000679307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051382108", + "createdBy": null, + "createdTime": "2026-02-02 10:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:28", + "echoMap": {}, + "alarmNo": "1593543514", + "alarmDate": "1770000141484", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051382089", + "createdBy": null, + "createdTime": "2026-02-02 10:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:21", + "echoMap": {}, + "alarmNo": "1593543513", + "alarmDate": "1770000139899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051382045", + "createdBy": null, + "createdTime": "2026-02-02 10:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:48", + "echoMap": {}, + "alarmNo": "1593543512", + "alarmDate": "1770000138172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051381851", + "createdBy": null, + "createdTime": "2026-02-02 10:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:38", + "echoMap": {}, + "alarmNo": "1593543511", + "alarmDate": "1770000132597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051381725", + "createdBy": null, + "createdTime": "2026-02-02 10:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:50", + "echoMap": {}, + "alarmNo": "1593543510", + "alarmDate": "1770000129075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132962051381527", + "createdBy": null, + "createdTime": "2026-02-02 10:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:10", + "echoMap": {}, + "alarmNo": "1593543509", + "alarmDate": "1770000123465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132953461446792", + "createdBy": null, + "createdTime": "2026-02-02 10:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:56", + "echoMap": {}, + "alarmNo": "1593543508", + "alarmDate": "1770000111225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166480322", + "createdBy": null, + "createdTime": "2026-02-02 10:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1593543507", + "alarmDate": "1770000106232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166480182", + "createdBy": null, + "createdTime": "2026-02-02 10:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:50", + "echoMap": {}, + "alarmNo": "1593543506", + "alarmDate": "1770000102805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166480076", + "createdBy": null, + "createdTime": "2026-02-02 10:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:46", + "echoMap": {}, + "alarmNo": "1593543505", + "alarmDate": "1770000100080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479898", + "createdBy": null, + "createdTime": "2026-02-02 10:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:43", + "echoMap": {}, + "alarmNo": "1593543504", + "alarmDate": "1770000095549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479849", + "createdBy": null, + "createdTime": "2026-02-02 10:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:47", + "echoMap": {}, + "alarmNo": "1593543503", + "alarmDate": "1770000094288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479527", + "createdBy": null, + "createdTime": "2026-02-02 10:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:27", + "echoMap": {}, + "alarmNo": "1593543502", + "alarmDate": "1770000086159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132949166479449", + "createdBy": null, + "createdTime": "2026-02-02 10:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:31", + "echoMap": {}, + "alarmNo": "1593543501", + "alarmDate": "1770000084055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513085", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:56", + "echoMap": {}, + "alarmNo": "1593543500", + "alarmDate": "1770000081076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513075", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:33", + "echoMap": {}, + "alarmNo": "1593543499", + "alarmDate": "1770000080810", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513069", + "createdBy": null, + "createdTime": "2026-02-02 10:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:00", + "echoMap": {}, + "alarmNo": "1593543498", + "alarmDate": "1770000080601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513064", + "createdBy": null, + "createdTime": "2026-02-02 10:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:00", + "echoMap": {}, + "alarmNo": "1593543497", + "alarmDate": "1770000080435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871513062", + "createdBy": null, + "createdTime": "2026-02-02 10:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:55", + "echoMap": {}, + "alarmNo": "1593543496", + "alarmDate": "1770000080310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512854", + "createdBy": null, + "createdTime": "2026-02-02 10:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:34", + "echoMap": {}, + "alarmNo": "1593543495", + "alarmDate": "1769999541069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512580", + "createdBy": null, + "createdTime": "2026-02-02 10:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:13", + "echoMap": {}, + "alarmNo": "1593543494", + "alarmDate": "1769999532960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060143", + "deviceName": "[116](10)南京东上行人防门", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512466", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:44", + "echoMap": {}, + "alarmNo": "1593543493", + "alarmDate": "1769999530125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512459", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:34", + "echoMap": {}, + "alarmNo": "1593543492", + "alarmDate": "1769999530023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512452", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:11", + "echoMap": {}, + "alarmNo": "1593543491", + "alarmDate": "1769999529930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512451", + "createdBy": null, + "createdTime": "2026-02-02 10:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:09", + "echoMap": {}, + "alarmNo": "1593543490", + "alarmDate": "1769999529899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512400", + "createdBy": null, + "createdTime": "2026-02-02 10:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:15", + "echoMap": {}, + "alarmNo": "1593543489", + "alarmDate": "1769999528605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512215", + "createdBy": null, + "createdTime": "2026-02-02 10:32:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:42", + "echoMap": {}, + "alarmNo": "1593543488", + "alarmDate": "1769999523506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132944871512154", + "createdBy": null, + "createdTime": "2026-02-02 10:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:18", + "echoMap": {}, + "alarmNo": "1593543487", + "alarmDate": "1769999521929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132936281577473", + "createdBy": null, + "createdTime": "2026-02-02 10:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:57", + "echoMap": {}, + "alarmNo": "1593543486", + "alarmDate": "1769999515710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986611179", + "createdBy": null, + "createdTime": "2026-02-02 10:31:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:56", + "echoMap": {}, + "alarmNo": "1593543485", + "alarmDate": "1769999515085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610973", + "createdBy": null, + "createdTime": "2026-02-02 10:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:07", + "echoMap": {}, + "alarmNo": "1593543484", + "alarmDate": "1769999509164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610610", + "createdBy": null, + "createdTime": "2026-02-02 10:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:51", + "echoMap": {}, + "alarmNo": "1593543483", + "alarmDate": "1769999497714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610470", + "createdBy": null, + "createdTime": "2026-02-02 10:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:54", + "echoMap": {}, + "alarmNo": "1593543482", + "alarmDate": "1769999493441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610395", + "createdBy": null, + "createdTime": "2026-02-02 10:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:04", + "echoMap": {}, + "alarmNo": "1593543481", + "alarmDate": "1769999491575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132931986610220", + "createdBy": null, + "createdTime": "2026-02-02 10:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:34", + "echoMap": {}, + "alarmNo": "1593543480", + "alarmDate": "1769999486111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643792", + "createdBy": null, + "createdTime": "2026-02-02 10:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:21", + "echoMap": {}, + "alarmNo": "1593543479", + "alarmDate": "1769999480412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643781", + "createdBy": null, + "createdTime": "2026-02-02 10:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:40", + "echoMap": {}, + "alarmNo": "1593543478", + "alarmDate": "1769999479771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643772", + "createdBy": null, + "createdTime": "2026-02-02 10:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:31", + "echoMap": {}, + "alarmNo": "1593543477", + "alarmDate": "1769999478947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060006", + "deviceName": "[413](10)南京东7#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643520", + "createdBy": null, + "createdTime": "2026-02-02 10:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:28", + "echoMap": {}, + "alarmNo": "1593543476", + "alarmDate": "1769998938623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643436", + "createdBy": null, + "createdTime": "2026-02-02 10:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:16", + "echoMap": {}, + "alarmNo": "1593543475", + "alarmDate": "1769998936265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643365", + "createdBy": null, + "createdTime": "2026-02-02 10:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:45", + "echoMap": {}, + "alarmNo": "1593543474", + "alarmDate": "1769998934431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691643328", + "createdBy": null, + "createdTime": "2026-02-02 10:22:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:24", + "echoMap": {}, + "alarmNo": "1593543473", + "alarmDate": "1769998933383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691642987", + "createdBy": null, + "createdTime": "2026-02-02 10:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:50", + "echoMap": {}, + "alarmNo": "1593543472", + "alarmDate": "1769998923190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132927691642914", + "createdBy": null, + "createdTime": "2026-02-02 10:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:08", + "echoMap": {}, + "alarmNo": "1593543471", + "alarmDate": "1769998921170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132923396675680", + "createdBy": null, + "createdTime": "2026-02-02 10:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:17", + "echoMap": {}, + "alarmNo": "1593543470", + "alarmDate": "1769998920081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132923396675598", + "createdBy": null, + "createdTime": "2026-02-02 10:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:09", + "echoMap": {}, + "alarmNo": "1593543469", + "alarmDate": "1769998917838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132919101708489", + "createdBy": null, + "createdTime": "2026-02-02 10:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:17", + "echoMap": {}, + "alarmNo": "1593543468", + "alarmDate": "1769998917153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132919101708358", + "createdBy": null, + "createdTime": "2026-02-02 10:21:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:54", + "echoMap": {}, + "alarmNo": "1593543467", + "alarmDate": "1769998913353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132919101708319", + "createdBy": null, + "createdTime": "2026-02-02 10:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:15", + "echoMap": {}, + "alarmNo": "1593543466", + "alarmDate": "1769998912245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741935", + "createdBy": null, + "createdTime": "2026-02-02 10:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:50", + "echoMap": {}, + "alarmNo": "1593543465", + "alarmDate": "1769998908845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741746", + "createdBy": null, + "createdTime": "2026-02-02 10:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:07", + "echoMap": {}, + "alarmNo": "1593543464", + "alarmDate": "1769998903324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741606", + "createdBy": null, + "createdTime": "2026-02-02 10:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:40", + "echoMap": {}, + "alarmNo": "1593543463", + "alarmDate": "1769998899330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741543", + "createdBy": null, + "createdTime": "2026-02-02 10:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:45", + "echoMap": {}, + "alarmNo": "1593543462", + "alarmDate": "1769998897502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741111", + "createdBy": null, + "createdTime": "2026-02-02 10:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:31", + "echoMap": {}, + "alarmNo": "1593543461", + "alarmDate": "1769998885143", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132914806741026", + "createdBy": null, + "createdTime": "2026-02-02 10:21:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:57", + "echoMap": {}, + "alarmNo": "1593543460", + "alarmDate": "1769998882478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774715", + "createdBy": null, + "createdTime": "2026-02-02 10:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:43", + "echoMap": {}, + "alarmNo": "1593543459", + "alarmDate": "1769998880966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774710", + "createdBy": null, + "createdTime": "2026-02-02 10:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:57", + "echoMap": {}, + "alarmNo": "1593543458", + "alarmDate": "1769998880749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774494", + "createdBy": null, + "createdTime": "2026-02-02 10:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:26", + "echoMap": {}, + "alarmNo": "1593543457", + "alarmDate": "1769998339824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774386", + "createdBy": null, + "createdTime": "2026-02-02 10:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:55", + "echoMap": {}, + "alarmNo": "1593543456", + "alarmDate": "1769998336235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774368", + "createdBy": null, + "createdTime": "2026-02-02 10:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:10", + "echoMap": {}, + "alarmNo": "1593543455", + "alarmDate": "1769998335591", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774349", + "createdBy": null, + "createdTime": "2026-02-02 10:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:50", + "echoMap": {}, + "alarmNo": "1593543454", + "alarmDate": "1769998335174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774249", + "createdBy": null, + "createdTime": "2026-02-02 10:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:26", + "echoMap": {}, + "alarmNo": "1593543453", + "alarmDate": "1769998331943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511774029", + "createdBy": null, + "createdTime": "2026-02-02 10:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:02", + "echoMap": {}, + "alarmNo": "1593543452", + "alarmDate": "1769998324579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773949", + "createdBy": null, + "createdTime": "2026-02-02 10:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:35", + "echoMap": {}, + "alarmNo": "1593543451", + "alarmDate": "1769998322286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773931", + "createdBy": null, + "createdTime": "2026-02-02 10:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:07", + "echoMap": {}, + "alarmNo": "1593543450", + "alarmDate": "1769998321641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773849", + "createdBy": null, + "createdTime": "2026-02-02 10:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:00", + "echoMap": {}, + "alarmNo": "1593543449", + "alarmDate": "1769998319337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132910511773794", + "createdBy": null, + "createdTime": "2026-02-02 10:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:04", + "echoMap": {}, + "alarmNo": "1593543448", + "alarmDate": "1769998317557", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872698", + "createdBy": null, + "createdTime": "2026-02-02 10:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1593543447", + "alarmDate": "1769998300565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872655", + "createdBy": null, + "createdTime": "2026-02-02 10:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:46", + "echoMap": {}, + "alarmNo": "1593543446", + "alarmDate": "1769998299521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872545", + "createdBy": null, + "createdTime": "2026-02-02 10:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:44", + "echoMap": {}, + "alarmNo": "1593543445", + "alarmDate": "1769998296613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872507", + "createdBy": null, + "createdTime": "2026-02-02 10:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:19", + "echoMap": {}, + "alarmNo": "1593543444", + "alarmDate": "1769998295618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626872048", + "createdBy": null, + "createdTime": "2026-02-02 10:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:25", + "echoMap": {}, + "alarmNo": "1593543443", + "alarmDate": "1769998284184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871990", + "createdBy": null, + "createdTime": "2026-02-02 10:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:34", + "echoMap": {}, + "alarmNo": "1593543442", + "alarmDate": "1769998282651", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871966", + "createdBy": null, + "createdTime": "2026-02-02 10:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:03", + "echoMap": {}, + "alarmNo": "1593543441", + "alarmDate": "1769998282074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871929", + "createdBy": null, + "createdTime": "2026-02-02 10:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:43", + "echoMap": {}, + "alarmNo": "1593543440", + "alarmDate": "1769998280691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871928", + "createdBy": null, + "createdTime": "2026-02-02 10:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1593543439", + "alarmDate": "1769998280690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871927", + "createdBy": null, + "createdTime": "2026-02-02 10:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:48", + "echoMap": {}, + "alarmNo": "1593543438", + "alarmDate": "1769998280689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871919", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:57", + "echoMap": {}, + "alarmNo": "1593543437", + "alarmDate": "1769998280413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871908", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:25", + "echoMap": {}, + "alarmNo": "1593543436", + "alarmDate": "1769998280113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871907", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:43", + "echoMap": {}, + "alarmNo": "1593543435", + "alarmDate": "1769998280112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871906", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:22", + "echoMap": {}, + "alarmNo": "1593543434", + "alarmDate": "1769998279968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871895", + "createdBy": null, + "createdTime": "2026-02-02 10:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:23", + "echoMap": {}, + "alarmNo": "1593543433", + "alarmDate": "1769998279503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871893", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:38", + "echoMap": {}, + "alarmNo": "1593543432", + "alarmDate": "1769998279471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132897626871887", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:00", + "echoMap": {}, + "alarmNo": "1593543431", + "alarmDate": "1769998278927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331905308", + "createdBy": null, + "createdTime": "2026-02-02 10:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:45", + "echoMap": {}, + "alarmNo": "1593543430", + "alarmDate": "1769997738282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331905029", + "createdBy": null, + "createdTime": "2026-02-02 10:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:42", + "echoMap": {}, + "alarmNo": "1593543429", + "alarmDate": "1769997729440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331905026", + "createdBy": null, + "createdTime": "2026-02-02 10:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:21", + "echoMap": {}, + "alarmNo": "1593543428", + "alarmDate": "1769997729346", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331904954", + "createdBy": null, + "createdTime": "2026-02-02 10:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:08", + "echoMap": {}, + "alarmNo": "1593543427", + "alarmDate": "1769997727085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132893331904679", + "createdBy": null, + "createdTime": "2026-02-02 10:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:18", + "echoMap": {}, + "alarmNo": "1593543426", + "alarmDate": "1769997719092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132889036937271", + "createdBy": null, + "createdTime": "2026-02-02 10:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:01", + "echoMap": {}, + "alarmNo": "1593543425", + "alarmDate": "1769997712852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132889036937246", + "createdBy": null, + "createdTime": "2026-02-02 10:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:53", + "echoMap": {}, + "alarmNo": "1593543424", + "alarmDate": "1769997712167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003626", + "createdBy": null, + "createdTime": "2026-02-02 10:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:05", + "echoMap": {}, + "alarmNo": "1593543423", + "alarmDate": "1769997706857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003601", + "createdBy": null, + "createdTime": "2026-02-02 10:01:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:07", + "echoMap": {}, + "alarmNo": "1593543422", + "alarmDate": "1769997706208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003560", + "createdBy": null, + "createdTime": "2026-02-02 10:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:38", + "echoMap": {}, + "alarmNo": "1593543421", + "alarmDate": "1769997705162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447003227", + "createdBy": null, + "createdTime": "2026-02-02 10:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:57", + "echoMap": {}, + "alarmNo": "1593543420", + "alarmDate": "1769997696179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002975", + "createdBy": null, + "createdTime": "2026-02-02 10:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:39", + "echoMap": {}, + "alarmNo": "1593543419", + "alarmDate": "1769997689782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002857", + "createdBy": null, + "createdTime": "2026-02-02 10:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:51", + "echoMap": {}, + "alarmNo": "1593543418", + "alarmDate": "1769997686324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002693", + "createdBy": null, + "createdTime": "2026-02-02 10:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:13", + "echoMap": {}, + "alarmNo": "1593543417", + "alarmDate": "1769997680883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132880447002668", + "createdBy": null, + "createdTime": "2026-02-02 10:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:10", + "echoMap": {}, + "alarmNo": "1593543416", + "alarmDate": "1769997679722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036195", + "createdBy": null, + "createdTime": "2026-02-02 09:52:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:40", + "echoMap": {}, + "alarmNo": "1593543415", + "alarmDate": "1769997140534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036134", + "createdBy": null, + "createdTime": "2026-02-02 09:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:49", + "echoMap": {}, + "alarmNo": "1593543414", + "alarmDate": "1769997137945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036123", + "createdBy": null, + "createdTime": "2026-02-02 09:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:06", + "echoMap": {}, + "alarmNo": "1593543413", + "alarmDate": "1769997137762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036104", + "createdBy": null, + "createdTime": "2026-02-02 09:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:55", + "echoMap": {}, + "alarmNo": "1593543412", + "alarmDate": "1769997137261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036076", + "createdBy": null, + "createdTime": "2026-02-02 09:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:22", + "echoMap": {}, + "alarmNo": "1593543411", + "alarmDate": "1769997136518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036059", + "createdBy": null, + "createdTime": "2026-02-02 09:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:28", + "echoMap": {}, + "alarmNo": "1593543410", + "alarmDate": "1769997136108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152036058", + "createdBy": null, + "createdTime": "2026-02-02 09:52:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:49", + "echoMap": {}, + "alarmNo": "1593543409", + "alarmDate": "1769997136108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035919", + "createdBy": null, + "createdTime": "2026-02-02 09:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:24", + "echoMap": {}, + "alarmNo": "1593543408", + "alarmDate": "1769997131724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035868", + "createdBy": null, + "createdTime": "2026-02-02 09:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:51", + "echoMap": {}, + "alarmNo": "1593543407", + "alarmDate": "1769997130113", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035811", + "createdBy": null, + "createdTime": "2026-02-02 09:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:04", + "echoMap": {}, + "alarmNo": "1593543406", + "alarmDate": "1769997128337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035582", + "createdBy": null, + "createdTime": "2026-02-02 09:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:14", + "echoMap": {}, + "alarmNo": "1593543405", + "alarmDate": "1769997121439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132876152035552", + "createdBy": null, + "createdTime": "2026-02-02 09:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:12", + "echoMap": {}, + "alarmNo": "1593543404", + "alarmDate": "1769997120621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132871857068123", + "createdBy": null, + "createdTime": "2026-02-02 09:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:54", + "echoMap": {}, + "alarmNo": "1593543403", + "alarmDate": "1769997112606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132871857068116", + "createdBy": null, + "createdTime": "2026-02-02 09:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:53", + "echoMap": {}, + "alarmNo": "1593543402", + "alarmDate": "1769997112440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132867562100796", + "createdBy": null, + "createdTime": "2026-02-02 09:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:49", + "echoMap": {}, + "alarmNo": "1593543401", + "alarmDate": "1769997108383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134333", + "createdBy": null, + "createdTime": "2026-02-02 09:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:58", + "echoMap": {}, + "alarmNo": "1593543400", + "alarmDate": "1769997102465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134289", + "createdBy": null, + "createdTime": "2026-02-02 09:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:42", + "echoMap": {}, + "alarmNo": "1593543399", + "alarmDate": "1769997101004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134219", + "createdBy": null, + "createdTime": "2026-02-02 09:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:47", + "echoMap": {}, + "alarmNo": "1593543398", + "alarmDate": "1769997099001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134213", + "createdBy": null, + "createdTime": "2026-02-02 09:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:05", + "echoMap": {}, + "alarmNo": "1593543397", + "alarmDate": "1769997098859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134075", + "createdBy": null, + "createdTime": "2026-02-02 09:51:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:50", + "echoMap": {}, + "alarmNo": "1593543396", + "alarmDate": "1769997094652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134055", + "createdBy": null, + "createdTime": "2026-02-02 09:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:40", + "echoMap": {}, + "alarmNo": "1593543395", + "alarmDate": "1769997094093", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267134018", + "createdBy": null, + "createdTime": "2026-02-02 09:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:08", + "echoMap": {}, + "alarmNo": "1593543394", + "alarmDate": "1769997093199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133588", + "createdBy": null, + "createdTime": "2026-02-02 09:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:50", + "echoMap": {}, + "alarmNo": "1593543393", + "alarmDate": "1769997080553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133587", + "createdBy": null, + "createdTime": "2026-02-02 09:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:37", + "echoMap": {}, + "alarmNo": "1593543392", + "alarmDate": "1769997080467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133581", + "createdBy": null, + "createdTime": "2026-02-02 09:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:27", + "echoMap": {}, + "alarmNo": "1593543391", + "alarmDate": "1769997080326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132863267133565", + "createdBy": null, + "createdTime": "2026-02-02 09:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:04", + "echoMap": {}, + "alarmNo": "1593543390", + "alarmDate": "1769997078949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166969", + "createdBy": null, + "createdTime": "2026-02-02 09:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:03", + "echoMap": {}, + "alarmNo": "1593543389", + "alarmDate": "1769996535613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166923", + "createdBy": null, + "createdTime": "2026-02-02 09:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:02", + "echoMap": {}, + "alarmNo": "1593543388", + "alarmDate": "1769996534411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166864", + "createdBy": null, + "createdTime": "2026-02-02 09:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:33", + "echoMap": {}, + "alarmNo": "1593543387", + "alarmDate": "1769996532758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166851", + "createdBy": null, + "createdTime": "2026-02-02 09:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:20", + "echoMap": {}, + "alarmNo": "1593543386", + "alarmDate": "1769996532465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166797", + "createdBy": null, + "createdTime": "2026-02-02 09:42:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:08", + "echoMap": {}, + "alarmNo": "1593543385", + "alarmDate": "1769996531019", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132858972166342", + "createdBy": null, + "createdTime": "2026-02-02 09:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:03", + "echoMap": {}, + "alarmNo": "1593543384", + "alarmDate": "1769996517875", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265262", + "createdBy": null, + "createdTime": "2026-02-02 09:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:34", + "echoMap": {}, + "alarmNo": "1593543383", + "alarmDate": "1769996506833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265213", + "createdBy": null, + "createdTime": "2026-02-02 09:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:35", + "echoMap": {}, + "alarmNo": "1593543382", + "alarmDate": "1769996505569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265179", + "createdBy": null, + "createdTime": "2026-02-02 09:41:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:29", + "echoMap": {}, + "alarmNo": "1593543381", + "alarmDate": "1769996504892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265139", + "createdBy": null, + "createdTime": "2026-02-02 09:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:05", + "echoMap": {}, + "alarmNo": "1593543380", + "alarmDate": "1769996503992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087265129", + "createdBy": null, + "createdTime": "2026-02-02 09:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:45", + "echoMap": {}, + "alarmNo": "1593543379", + "alarmDate": "1769996503567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264843", + "createdBy": null, + "createdTime": "2026-02-02 09:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:58", + "echoMap": {}, + "alarmNo": "1593543378", + "alarmDate": "1769996495610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264790", + "createdBy": null, + "createdTime": "2026-02-02 09:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:01", + "echoMap": {}, + "alarmNo": "1593543377", + "alarmDate": "1769996494258", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264770", + "createdBy": null, + "createdTime": "2026-02-02 09:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:40", + "echoMap": {}, + "alarmNo": "1593543376", + "alarmDate": "1769996493675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264605", + "createdBy": null, + "createdTime": "2026-02-02 09:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:52", + "echoMap": {}, + "alarmNo": "1593543375", + "alarmDate": "1769996489558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264574", + "createdBy": null, + "createdTime": "2026-02-02 09:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:35", + "echoMap": {}, + "alarmNo": "1593543374", + "alarmDate": "1769996488881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264510", + "createdBy": null, + "createdTime": "2026-02-02 09:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:32", + "echoMap": {}, + "alarmNo": "1593543373", + "alarmDate": "1769996487162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264451", + "createdBy": null, + "createdTime": "2026-02-02 09:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:55", + "echoMap": {}, + "alarmNo": "1593543372", + "alarmDate": "1769996485273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264397", + "createdBy": null, + "createdTime": "2026-02-02 09:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:13", + "echoMap": {}, + "alarmNo": "1593543371", + "alarmDate": "1769996483479", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264308", + "createdBy": null, + "createdTime": "2026-02-02 09:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:46", + "echoMap": {}, + "alarmNo": "1593543370", + "alarmDate": "1769996479983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264307", + "createdBy": null, + "createdTime": "2026-02-02 09:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:24", + "echoMap": {}, + "alarmNo": "1593543369", + "alarmDate": "1769996479982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264301", + "createdBy": null, + "createdTime": "2026-02-02 09:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:23", + "echoMap": {}, + "alarmNo": "1593543368", + "alarmDate": "1769996479624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132846087264293", + "createdBy": null, + "createdTime": "2026-02-02 09:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:27", + "echoMap": {}, + "alarmNo": "1593543367", + "alarmDate": "1769996479056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297795", + "createdBy": null, + "createdTime": "2026-02-02 09:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:41", + "echoMap": {}, + "alarmNo": "1593543366", + "alarmDate": "1769995938851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297774", + "createdBy": null, + "createdTime": "2026-02-02 09:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:02", + "echoMap": {}, + "alarmNo": "1593543365", + "alarmDate": "1769995938176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297441", + "createdBy": null, + "createdTime": "2026-02-02 09:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:57", + "echoMap": {}, + "alarmNo": "1593543364", + "alarmDate": "1769995927528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297375", + "createdBy": null, + "createdTime": "2026-02-02 09:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:47", + "echoMap": {}, + "alarmNo": "1593543363", + "alarmDate": "1769995925560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297280", + "createdBy": null, + "createdTime": "2026-02-02 09:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:10", + "echoMap": {}, + "alarmNo": "1593543362", + "alarmDate": "1769995922696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297195", + "createdBy": null, + "createdTime": "2026-02-02 09:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543361", + "alarmDate": "1769995920175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132841792297170", + "createdBy": null, + "createdTime": "2026-02-02 09:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543360", + "alarmDate": "1769995919505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132833202362437", + "createdBy": null, + "createdTime": "2026-02-02 09:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:50", + "echoMap": {}, + "alarmNo": "1593543359", + "alarmDate": "1769995909355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395957", + "createdBy": null, + "createdTime": "2026-02-02 09:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:56", + "echoMap": {}, + "alarmNo": "1593543358", + "alarmDate": "1769995904334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395951", + "createdBy": null, + "createdTime": "2026-02-02 09:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:55", + "echoMap": {}, + "alarmNo": "1593543357", + "alarmDate": "1769995904138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395778", + "createdBy": null, + "createdTime": "2026-02-02 09:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:10", + "echoMap": {}, + "alarmNo": "1593543356", + "alarmDate": "1769995899586", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395741", + "createdBy": null, + "createdTime": "2026-02-02 09:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:49", + "echoMap": {}, + "alarmNo": "1593543355", + "alarmDate": "1769995898684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395708", + "createdBy": null, + "createdTime": "2026-02-02 09:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:14", + "echoMap": {}, + "alarmNo": "1593543354", + "alarmDate": "1769995897790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395520", + "createdBy": null, + "createdTime": "2026-02-02 09:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543353", + "alarmDate": "1769995892724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395423", + "createdBy": null, + "createdTime": "2026-02-02 09:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:01", + "echoMap": {}, + "alarmNo": "1593543352", + "alarmDate": "1769995890575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395243", + "createdBy": null, + "createdTime": "2026-02-02 09:31:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:15", + "echoMap": {}, + "alarmNo": "1593543351", + "alarmDate": "1769995885811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395161", + "createdBy": null, + "createdTime": "2026-02-02 09:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:25", + "echoMap": {}, + "alarmNo": "1593543350", + "alarmDate": "1769995883757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395117", + "createdBy": null, + "createdTime": "2026-02-02 09:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:25", + "echoMap": {}, + "alarmNo": "1593543349", + "alarmDate": "1769995882644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132828907395116", + "createdBy": null, + "createdTime": "2026-02-02 09:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:28", + "echoMap": {}, + "alarmNo": "1593543348", + "alarmDate": "1769995882612", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428783", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:54", + "echoMap": {}, + "alarmNo": "1593543347", + "alarmDate": "1769995880448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428771", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:32", + "echoMap": {}, + "alarmNo": "1593543346", + "alarmDate": "1769995880140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428767", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:36", + "echoMap": {}, + "alarmNo": "1593543345", + "alarmDate": "1769995879948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428765", + "createdBy": null, + "createdTime": "2026-02-02 09:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:59", + "echoMap": {}, + "alarmNo": "1593543344", + "alarmDate": "1769995879839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428753", + "createdBy": null, + "createdTime": "2026-02-02 09:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:56", + "echoMap": {}, + "alarmNo": "1593543343", + "alarmDate": "1769995878813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428440", + "createdBy": null, + "createdTime": "2026-02-02 09:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:54", + "echoMap": {}, + "alarmNo": "1593543342", + "alarmDate": "1769995336495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428098", + "createdBy": null, + "createdTime": "2026-02-02 09:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:06", + "echoMap": {}, + "alarmNo": "1593543341", + "alarmDate": "1769995327304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428078", + "createdBy": null, + "createdTime": "2026-02-02 09:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:15", + "echoMap": {}, + "alarmNo": "1593543340", + "alarmDate": "1769995326961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612428005", + "createdBy": null, + "createdTime": "2026-02-02 09:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:12", + "echoMap": {}, + "alarmNo": "1593543339", + "alarmDate": "1769995325131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427948", + "createdBy": null, + "createdTime": "2026-02-02 09:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:05", + "echoMap": {}, + "alarmNo": "1593543338", + "alarmDate": "1769995323600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427833", + "createdBy": null, + "createdTime": "2026-02-02 09:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:07", + "echoMap": {}, + "alarmNo": "1593543337", + "alarmDate": "1769995320567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427824", + "createdBy": null, + "createdTime": "2026-02-02 09:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:13", + "echoMap": {}, + "alarmNo": "1593543336", + "alarmDate": "1769995320349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132824612427791", + "createdBy": null, + "createdTime": "2026-02-02 09:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:01", + "echoMap": {}, + "alarmNo": "1593543335", + "alarmDate": "1769995319534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132820317460562", + "createdBy": null, + "createdTime": "2026-02-02 09:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:04", + "echoMap": {}, + "alarmNo": "1593543334", + "alarmDate": "1769995318354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132820317460528", + "createdBy": null, + "createdTime": "2026-02-02 09:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:22", + "echoMap": {}, + "alarmNo": "1593543333", + "alarmDate": "1769995317436", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132816022493227", + "createdBy": null, + "createdTime": "2026-02-02 09:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:15", + "echoMap": {}, + "alarmNo": "1593543332", + "alarmDate": "1769995316036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526873", + "createdBy": null, + "createdTime": "2026-02-02 09:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:54", + "echoMap": {}, + "alarmNo": "1593543331", + "alarmDate": "1769995313553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526771", + "createdBy": null, + "createdTime": "2026-02-02 09:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:11", + "echoMap": {}, + "alarmNo": "1593543330", + "alarmDate": "1769995310734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526669", + "createdBy": null, + "createdTime": "2026-02-02 09:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:33", + "echoMap": {}, + "alarmNo": "1593543329", + "alarmDate": "1769995307978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526652", + "createdBy": null, + "createdTime": "2026-02-02 09:21:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:53", + "echoMap": {}, + "alarmNo": "1593543328", + "alarmDate": "1769995307297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132811727526318", + "createdBy": null, + "createdTime": "2026-02-02 09:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:09", + "echoMap": {}, + "alarmNo": "1593543327", + "alarmDate": "1769995297183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559493", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:23", + "echoMap": {}, + "alarmNo": "1593543326", + "alarmDate": "1769995280342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559490", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:54", + "echoMap": {}, + "alarmNo": "1593543325", + "alarmDate": "1769995280200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559488", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:23", + "echoMap": {}, + "alarmNo": "1593543324", + "alarmDate": "1769995280169", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559479", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1593543323", + "alarmDate": "1769995279952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559476", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:24", + "echoMap": {}, + "alarmNo": "1593543322", + "alarmDate": "1769995279893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559474", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:25", + "echoMap": {}, + "alarmNo": "1593543321", + "alarmDate": "1769995279759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559276", + "createdBy": null, + "createdTime": "2026-02-02 09:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:39", + "echoMap": {}, + "alarmNo": "1593543320", + "alarmDate": "1769994741336", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432559055", + "createdBy": null, + "createdTime": "2026-02-02 09:12:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:24", + "echoMap": {}, + "alarmNo": "1593543319", + "alarmDate": "1769994733207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132807432558881", + "createdBy": null, + "createdTime": "2026-02-02 09:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:51", + "echoMap": {}, + "alarmNo": "1593543318", + "alarmDate": "1769994727877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624157", + "createdBy": null, + "createdTime": "2026-02-02 09:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:08", + "echoMap": {}, + "alarmNo": "1593543317", + "alarmDate": "1769994714724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624143", + "createdBy": null, + "createdTime": "2026-02-02 09:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:54", + "echoMap": {}, + "alarmNo": "1593543316", + "alarmDate": "1769994714365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624113", + "createdBy": null, + "createdTime": "2026-02-02 09:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:25", + "echoMap": {}, + "alarmNo": "1593543315", + "alarmDate": "1769994713681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624063", + "createdBy": null, + "createdTime": "2026-02-02 09:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:59", + "echoMap": {}, + "alarmNo": "1593543314", + "alarmDate": "1769994712237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624054", + "createdBy": null, + "createdTime": "2026-02-02 09:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:58", + "echoMap": {}, + "alarmNo": "1593543313", + "alarmDate": "1769994712037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132798842624011", + "createdBy": null, + "createdTime": "2026-02-02 09:11:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:57", + "echoMap": {}, + "alarmNo": "1593543312", + "alarmDate": "1769994710843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657688", + "createdBy": null, + "createdTime": "2026-02-02 09:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:56", + "echoMap": {}, + "alarmNo": "1593543311", + "alarmDate": "1769994709390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657680", + "createdBy": null, + "createdTime": "2026-02-02 09:11:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:36", + "echoMap": {}, + "alarmNo": "1593543310", + "alarmDate": "1769994709131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657629", + "createdBy": null, + "createdTime": "2026-02-02 09:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:49", + "echoMap": {}, + "alarmNo": "1593543309", + "alarmDate": "1769994707735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657470", + "createdBy": null, + "createdTime": "2026-02-02 09:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:51", + "echoMap": {}, + "alarmNo": "1593543308", + "alarmDate": "1769994702636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657372", + "createdBy": null, + "createdTime": "2026-02-02 09:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:41", + "echoMap": {}, + "alarmNo": "1593543307", + "alarmDate": "1769994699672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657354", + "createdBy": null, + "createdTime": "2026-02-02 09:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:58", + "echoMap": {}, + "alarmNo": "1593543306", + "alarmDate": "1769994699173", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547657185", + "createdBy": null, + "createdTime": "2026-02-02 09:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:59", + "echoMap": {}, + "alarmNo": "1593543305", + "alarmDate": "1769994694137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656858", + "createdBy": null, + "createdTime": "2026-02-02 09:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:33", + "echoMap": {}, + "alarmNo": "1593543304", + "alarmDate": "1769994686029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656803", + "createdBy": null, + "createdTime": "2026-02-02 09:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:43", + "echoMap": {}, + "alarmNo": "1593543303", + "alarmDate": "1769994684511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656719", + "createdBy": null, + "createdTime": "2026-02-02 09:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:50", + "echoMap": {}, + "alarmNo": "1593543302", + "alarmDate": "1769994682048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132794547656704", + "createdBy": null, + "createdTime": "2026-02-02 09:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:35", + "echoMap": {}, + "alarmNo": "1593543301", + "alarmDate": "1769994681614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252690402", + "createdBy": null, + "createdTime": "2026-02-02 09:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:22", + "echoMap": {}, + "alarmNo": "1593543300", + "alarmDate": "1769994680220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689706", + "createdBy": null, + "createdTime": "2026-02-02 09:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:11", + "echoMap": {}, + "alarmNo": "1593543299", + "alarmDate": "1769994125719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689564", + "createdBy": null, + "createdTime": "2026-02-02 09:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:34", + "echoMap": {}, + "alarmNo": "1593543298", + "alarmDate": "1769994121844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689529", + "createdBy": null, + "createdTime": "2026-02-02 09:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:37", + "echoMap": {}, + "alarmNo": "1593543297", + "alarmDate": "1769994121076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689522", + "createdBy": null, + "createdTime": "2026-02-02 09:02:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:58", + "echoMap": {}, + "alarmNo": "1593543296", + "alarmDate": "1769994120805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689444", + "createdBy": null, + "createdTime": "2026-02-02 09:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:36", + "echoMap": {}, + "alarmNo": "1593543295", + "alarmDate": "1769994118743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132790252689419", + "createdBy": null, + "createdTime": "2026-02-02 09:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:04", + "echoMap": {}, + "alarmNo": "1593543294", + "alarmDate": "1769994118093", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132785957722201", + "createdBy": null, + "createdTime": "2026-02-02 09:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:36", + "echoMap": {}, + "alarmNo": "1593543293", + "alarmDate": "1769994117125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132785957722177", + "createdBy": null, + "createdTime": "2026-02-02 09:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:57", + "echoMap": {}, + "alarmNo": "1593543292", + "alarmDate": "1769994116356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755677", + "createdBy": null, + "createdTime": "2026-02-02 09:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1593543291", + "alarmDate": "1769994113426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755642", + "createdBy": null, + "createdTime": "2026-02-02 09:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:16", + "echoMap": {}, + "alarmNo": "1593543290", + "alarmDate": "1769994112375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755610", + "createdBy": null, + "createdTime": "2026-02-02 09:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:53", + "echoMap": {}, + "alarmNo": "1593543289", + "alarmDate": "1769994111500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755516", + "createdBy": null, + "createdTime": "2026-02-02 09:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:49", + "echoMap": {}, + "alarmNo": "1593543288", + "alarmDate": "1769994108458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755480", + "createdBy": null, + "createdTime": "2026-02-02 09:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:54", + "echoMap": {}, + "alarmNo": "1593543287", + "alarmDate": "1769994107198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132781662755296", + "createdBy": null, + "createdTime": "2026-02-02 09:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:22", + "echoMap": {}, + "alarmNo": "1593543286", + "alarmDate": "1769994101089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788509", + "createdBy": null, + "createdTime": "2026-02-02 09:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:39", + "echoMap": {}, + "alarmNo": "1593543285", + "alarmDate": "1769994086812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788345", + "createdBy": null, + "createdTime": "2026-02-02 09:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:16", + "echoMap": {}, + "alarmNo": "1593543284", + "alarmDate": "1769994082700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060118", + "deviceName": "[105](10)南京东上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788273", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:35", + "echoMap": {}, + "alarmNo": "1593543283", + "alarmDate": "1769994080212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788272", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:34", + "echoMap": {}, + "alarmNo": "1593543282", + "alarmDate": "1769994080212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788268", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:32", + "echoMap": {}, + "alarmNo": "1593543281", + "alarmDate": "1769994080094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367788259", + "createdBy": null, + "createdTime": "2026-02-02 09:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:27", + "echoMap": {}, + "alarmNo": "1593543280", + "alarmDate": "1769994079563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367787804", + "createdBy": null, + "createdTime": "2026-02-02 08:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:31", + "echoMap": {}, + "alarmNo": "1593543279", + "alarmDate": "1769993532081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367787617", + "createdBy": null, + "createdTime": "2026-02-02 08:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:41", + "echoMap": {}, + "alarmNo": "1593543278", + "alarmDate": "1769993526711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132777367787564", + "createdBy": null, + "createdTime": "2026-02-02 08:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:11", + "echoMap": {}, + "alarmNo": "1593543277", + "alarmDate": "1769993525416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132773072820381", + "createdBy": null, + "createdTime": "2026-02-02 08:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:40", + "echoMap": {}, + "alarmNo": "1593543276", + "alarmDate": "1769993524221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132773072820365", + "createdBy": null, + "createdTime": "2026-02-02 08:52:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:05", + "echoMap": {}, + "alarmNo": "1593543275", + "alarmDate": "1769993523729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132773072820328", + "createdBy": null, + "createdTime": "2026-02-02 08:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:44", + "echoMap": {}, + "alarmNo": "1593543274", + "alarmDate": "1769993522673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853908", + "createdBy": null, + "createdTime": "2026-02-02 08:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:14", + "echoMap": {}, + "alarmNo": "1593543273", + "alarmDate": "1769993518847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853796", + "createdBy": null, + "createdTime": "2026-02-02 08:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:57", + "echoMap": {}, + "alarmNo": "1593543272", + "alarmDate": "1769993515673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853730", + "createdBy": null, + "createdTime": "2026-02-02 08:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:55", + "echoMap": {}, + "alarmNo": "1593543271", + "alarmDate": "1769993514036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853648", + "createdBy": null, + "createdTime": "2026-02-02 08:51:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:28", + "echoMap": {}, + "alarmNo": "1593543270", + "alarmDate": "1769993511782", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853606", + "createdBy": null, + "createdTime": "2026-02-02 08:51:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:42", + "echoMap": {}, + "alarmNo": "1593543269", + "alarmDate": "1769993510709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853425", + "createdBy": null, + "createdTime": "2026-02-02 08:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:47", + "echoMap": {}, + "alarmNo": "1593543268", + "alarmDate": "1769993505646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853196", + "createdBy": null, + "createdTime": "2026-02-02 08:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:07", + "echoMap": {}, + "alarmNo": "1593543267", + "alarmDate": "1769993499428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132768777853038", + "createdBy": null, + "createdTime": "2026-02-02 08:51:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:53", + "echoMap": {}, + "alarmNo": "1593543266", + "alarmDate": "1769993495179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482886418", + "createdBy": null, + "createdTime": "2026-02-02 08:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:26", + "echoMap": {}, + "alarmNo": "1593543265", + "alarmDate": "1769993485747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482886317", + "createdBy": null, + "createdTime": "2026-02-02 08:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:52", + "echoMap": {}, + "alarmNo": "1593543264", + "alarmDate": "1769993482382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482885936", + "createdBy": null, + "createdTime": "2026-02-02 08:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:51", + "echoMap": {}, + "alarmNo": "1593543263", + "alarmDate": "1769992935769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132764482885813", + "createdBy": null, + "createdTime": "2026-02-02 08:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:56", + "echoMap": {}, + "alarmNo": "1593543262", + "alarmDate": "1769992932304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132760187918417", + "createdBy": null, + "createdTime": "2026-02-02 08:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:02", + "echoMap": {}, + "alarmNo": "1593543261", + "alarmDate": "1769992926269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132760187918397", + "createdBy": null, + "createdTime": "2026-02-02 08:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:46", + "echoMap": {}, + "alarmNo": "1593543260", + "alarmDate": "1769992925776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132760187918337", + "createdBy": null, + "createdTime": "2026-02-02 08:42:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:54", + "echoMap": {}, + "alarmNo": "1593543259", + "alarmDate": "1769992924032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984762", + "createdBy": null, + "createdTime": "2026-02-02 08:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:59", + "echoMap": {}, + "alarmNo": "1593543258", + "alarmDate": "1769992921712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984500", + "createdBy": null, + "createdTime": "2026-02-02 08:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:55", + "echoMap": {}, + "alarmNo": "1593543257", + "alarmDate": "1769992913821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984496", + "createdBy": null, + "createdTime": "2026-02-02 08:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:01", + "echoMap": {}, + "alarmNo": "1593543256", + "alarmDate": "1769992913765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984346", + "createdBy": null, + "createdTime": "2026-02-02 08:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:17", + "echoMap": {}, + "alarmNo": "1593543255", + "alarmDate": "1769992909382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984307", + "createdBy": null, + "createdTime": "2026-02-02 08:41:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:54", + "echoMap": {}, + "alarmNo": "1593543254", + "alarmDate": "1769992908271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060051", + "deviceName": "[324](10)南京东7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597984043", + "createdBy": null, + "createdTime": "2026-02-02 08:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:55", + "echoMap": {}, + "alarmNo": "1593543253", + "alarmDate": "1769992900238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597983990", + "createdBy": null, + "createdTime": "2026-02-02 08:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:00", + "echoMap": {}, + "alarmNo": "1593543252", + "alarmDate": "1769992898644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132751597983955", + "createdBy": null, + "createdTime": "2026-02-02 08:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:07", + "echoMap": {}, + "alarmNo": "1593543251", + "alarmDate": "1769992897653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303017135", + "createdBy": null, + "createdTime": "2026-02-02 08:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:23", + "echoMap": {}, + "alarmNo": "1593543250", + "alarmDate": "1769992880651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060046", + "deviceName": "[326](10)南京东7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303017134", + "createdBy": null, + "createdTime": "2026-02-02 08:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:43", + "echoMap": {}, + "alarmNo": "1593543249", + "alarmDate": "1769992880649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303017126", + "createdBy": null, + "createdTime": "2026-02-02 08:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:25", + "echoMap": {}, + "alarmNo": "1593543248", + "alarmDate": "1769992880207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016873", + "createdBy": null, + "createdTime": "2026-02-02 08:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:14", + "echoMap": {}, + "alarmNo": "1593543247", + "alarmDate": "1769992338952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016712", + "createdBy": null, + "createdTime": "2026-02-02 08:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:31", + "echoMap": {}, + "alarmNo": "1593543246", + "alarmDate": "1769992334387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016556", + "createdBy": null, + "createdTime": "2026-02-02 08:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:56", + "echoMap": {}, + "alarmNo": "1593543245", + "alarmDate": "1769992330335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016550", + "createdBy": null, + "createdTime": "2026-02-02 08:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:24", + "echoMap": {}, + "alarmNo": "1593543244", + "alarmDate": "1769992330121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016538", + "createdBy": null, + "createdTime": "2026-02-02 08:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:36", + "echoMap": {}, + "alarmNo": "1593543243", + "alarmDate": "1769992329887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016519", + "createdBy": null, + "createdTime": "2026-02-02 08:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:43", + "echoMap": {}, + "alarmNo": "1593543242", + "alarmDate": "1769992329478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132747303016514", + "createdBy": null, + "createdTime": "2026-02-02 08:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:39", + "echoMap": {}, + "alarmNo": "1593543241", + "alarmDate": "1769992329378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132743008049252", + "createdBy": null, + "createdTime": "2026-02-02 08:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:35", + "echoMap": {}, + "alarmNo": "1593543240", + "alarmDate": "1769992327467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132738713081872", + "createdBy": null, + "createdTime": "2026-02-02 08:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:09", + "echoMap": {}, + "alarmNo": "1593543239", + "alarmDate": "1769992323276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115380", + "createdBy": null, + "createdTime": "2026-02-02 08:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:57", + "echoMap": {}, + "alarmNo": "1593543238", + "alarmDate": "1769992317109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115209", + "createdBy": null, + "createdTime": "2026-02-02 08:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:53", + "echoMap": {}, + "alarmNo": "1593543237", + "alarmDate": "1769992312482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115168", + "createdBy": null, + "createdTime": "2026-02-02 08:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:03", + "echoMap": {}, + "alarmNo": "1593543236", + "alarmDate": "1769992311455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115164", + "createdBy": null, + "createdTime": "2026-02-02 08:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:00", + "echoMap": {}, + "alarmNo": "1593543235", + "alarmDate": "1769992311363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060050", + "deviceName": "[322](10)南京东7#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418115162", + "createdBy": null, + "createdTime": "2026-02-02 08:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:58", + "echoMap": {}, + "alarmNo": "1593543234", + "alarmDate": "1769992311332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114993", + "createdBy": null, + "createdTime": "2026-02-02 08:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:11", + "echoMap": {}, + "alarmNo": "1593543233", + "alarmDate": "1769992306574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114992", + "createdBy": null, + "createdTime": "2026-02-02 08:31:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:48", + "echoMap": {}, + "alarmNo": "1593543232", + "alarmDate": "1769992306573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114924", + "createdBy": null, + "createdTime": "2026-02-02 08:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:13", + "echoMap": {}, + "alarmNo": "1593543231", + "alarmDate": "1769992304637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114886", + "createdBy": null, + "createdTime": "2026-02-02 08:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:45", + "echoMap": {}, + "alarmNo": "1593543230", + "alarmDate": "1769992303652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114806", + "createdBy": null, + "createdTime": "2026-02-02 08:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:09", + "echoMap": {}, + "alarmNo": "1593543229", + "alarmDate": "1769992301379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114643", + "createdBy": null, + "createdTime": "2026-02-02 08:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:51", + "echoMap": {}, + "alarmNo": "1593543228", + "alarmDate": "1769992296729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132734418114604", + "createdBy": null, + "createdTime": "2026-02-02 08:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:13", + "echoMap": {}, + "alarmNo": "1593543227", + "alarmDate": "1769992295702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060052", + "deviceName": "[323](10)南京东7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148265", + "createdBy": null, + "createdTime": "2026-02-02 08:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:40", + "echoMap": {}, + "alarmNo": "1593543226", + "alarmDate": "1769992293877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060016", + "deviceName": "[301](10)南京东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148182", + "createdBy": null, + "createdTime": "2026-02-02 08:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:57", + "echoMap": {}, + "alarmNo": "1593543225", + "alarmDate": "1769992292262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060044", + "deviceName": "[320](10)南京东7#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148141", + "createdBy": null, + "createdTime": "2026-02-02 08:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:37", + "echoMap": {}, + "alarmNo": "1593543224", + "alarmDate": "1769992291185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060012", + "deviceName": "[415](10)南京东7#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123148005", + "createdBy": null, + "createdTime": "2026-02-02 08:31:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:40", + "echoMap": {}, + "alarmNo": "1593543223", + "alarmDate": "1769992287619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147977", + "createdBy": null, + "createdTime": "2026-02-02 08:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:36", + "echoMap": {}, + "alarmNo": "1593543222", + "alarmDate": "1769992286793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147787", + "createdBy": null, + "createdTime": "2026-02-02 08:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:24", + "echoMap": {}, + "alarmNo": "1593543221", + "alarmDate": "1769992279696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147780", + "createdBy": null, + "createdTime": "2026-02-02 08:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:25", + "echoMap": {}, + "alarmNo": "1593543220", + "alarmDate": "1769992279289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132730123147481", + "createdBy": null, + "createdTime": "2026-02-02 08:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:48", + "echoMap": {}, + "alarmNo": "1593543219", + "alarmDate": "1769991736696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132725828180044", + "createdBy": null, + "createdTime": "2026-02-02 08:22:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:10", + "echoMap": {}, + "alarmNo": "1593543218", + "alarmDate": "1769991728816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132725828179990", + "createdBy": null, + "createdTime": "2026-02-02 08:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:15", + "echoMap": {}, + "alarmNo": "1593543217", + "alarmDate": "1769991727230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132721533212710", + "createdBy": null, + "createdTime": "2026-02-02 08:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:35", + "echoMap": {}, + "alarmNo": "1593543216", + "alarmDate": "1769991725693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246378", + "createdBy": null, + "createdTime": "2026-02-02 08:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:41", + "echoMap": {}, + "alarmNo": "1593543215", + "alarmDate": "1769991723771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246357", + "createdBy": null, + "createdTime": "2026-02-02 08:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:50", + "echoMap": {}, + "alarmNo": "1593543214", + "alarmDate": "1769991723198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246333", + "createdBy": null, + "createdTime": "2026-02-02 08:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:34", + "echoMap": {}, + "alarmNo": "1593543213", + "alarmDate": "1769991722535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246320", + "createdBy": null, + "createdTime": "2026-02-02 08:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:19", + "echoMap": {}, + "alarmNo": "1593543212", + "alarmDate": "1769991722071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060049", + "deviceName": "[321](10)南京东7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246265", + "createdBy": null, + "createdTime": "2026-02-02 08:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:36", + "echoMap": {}, + "alarmNo": "1593543211", + "alarmDate": "1769991720335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246228", + "createdBy": null, + "createdTime": "2026-02-02 08:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:00", + "echoMap": {}, + "alarmNo": "1593543210", + "alarmDate": "1769991719094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246215", + "createdBy": null, + "createdTime": "2026-02-02 08:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:00", + "echoMap": {}, + "alarmNo": "1593543209", + "alarmDate": "1769991718741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246123", + "createdBy": null, + "createdTime": "2026-02-02 08:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:20", + "echoMap": {}, + "alarmNo": "1593543208", + "alarmDate": "1769991715688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238246088", + "createdBy": null, + "createdTime": "2026-02-02 08:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:02", + "echoMap": {}, + "alarmNo": "1593543207", + "alarmDate": "1769991714578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238245999", + "createdBy": null, + "createdTime": "2026-02-02 08:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:58", + "echoMap": {}, + "alarmNo": "1593543206", + "alarmDate": "1769991711173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132717238245731", + "createdBy": null, + "createdTime": "2026-02-02 08:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:48", + "echoMap": {}, + "alarmNo": "1593543205", + "alarmDate": "1769991701381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943279093", + "createdBy": null, + "createdTime": "2026-02-02 08:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:08", + "echoMap": {}, + "alarmNo": "1593543204", + "alarmDate": "1769991689894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278984", + "createdBy": null, + "createdTime": "2026-02-02 08:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:28", + "echoMap": {}, + "alarmNo": "1593543203", + "alarmDate": "1769991686780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278806", + "createdBy": null, + "createdTime": "2026-02-02 08:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:26", + "echoMap": {}, + "alarmNo": "1593543202", + "alarmDate": "1769991681320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060098", + "deviceName": "[316](10)南京东6#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278411", + "createdBy": null, + "createdTime": "2026-02-02 08:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:04", + "echoMap": {}, + "alarmNo": "1593543201", + "alarmDate": "1769991136152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278371", + "createdBy": null, + "createdTime": "2026-02-02 08:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:28", + "echoMap": {}, + "alarmNo": "1593543200", + "alarmDate": "1769991134966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278246", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:49", + "echoMap": {}, + "alarmNo": "1593543199", + "alarmDate": "1769991131154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132712943278099", + "createdBy": null, + "createdTime": "2026-02-02 08:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:08", + "echoMap": {}, + "alarmNo": "1593543198", + "alarmDate": "1769991126452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132708648310854", + "createdBy": null, + "createdTime": "2026-02-02 08:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:29", + "echoMap": {}, + "alarmNo": "1593543197", + "alarmDate": "1769991124934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132704353343502", + "createdBy": null, + "createdTime": "2026-02-02 08:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:56", + "echoMap": {}, + "alarmNo": "1593543196", + "alarmDate": "1769991114985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376896", + "createdBy": null, + "createdTime": "2026-02-02 08:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:01", + "echoMap": {}, + "alarmNo": "1593543195", + "alarmDate": "1769991104873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376820", + "createdBy": null, + "createdTime": "2026-02-02 08:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:39", + "echoMap": {}, + "alarmNo": "1593543194", + "alarmDate": "1769991102502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060034", + "deviceName": "[353](10)南京东10-2换乘入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376784", + "createdBy": null, + "createdTime": "2026-02-02 08:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:07", + "echoMap": {}, + "alarmNo": "1593543193", + "alarmDate": "1769991101416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376690", + "createdBy": null, + "createdTime": "2026-02-02 08:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:27", + "echoMap": {}, + "alarmNo": "1593543192", + "alarmDate": "1769991098586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376446", + "createdBy": null, + "createdTime": "2026-02-02 08:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:31", + "echoMap": {}, + "alarmNo": "1593543191", + "alarmDate": "1769991091416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060031", + "deviceName": "[350](10)南京东10-2换乘入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132700058376254", + "createdBy": null, + "createdTime": "2026-02-02 08:11:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:37", + "echoMap": {}, + "alarmNo": "1593543190", + "alarmDate": "1769991085703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409850", + "createdBy": null, + "createdTime": "2026-02-02 08:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:41", + "echoMap": {}, + "alarmNo": "1593543189", + "alarmDate": "1769991080954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409830", + "createdBy": null, + "createdTime": "2026-02-02 08:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:36", + "echoMap": {}, + "alarmNo": "1593543188", + "alarmDate": "1769991079464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409826", + "createdBy": null, + "createdTime": "2026-02-02 08:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:22", + "echoMap": {}, + "alarmNo": "1593543187", + "alarmDate": "1769991079244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409512", + "createdBy": null, + "createdTime": "2026-02-02 08:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:36", + "echoMap": {}, + "alarmNo": "1593543186", + "alarmDate": "1769990536216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132695763409225", + "createdBy": null, + "createdTime": "2026-02-02 08:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:13", + "echoMap": {}, + "alarmNo": "1593543185", + "alarmDate": "1769990527251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132691468441685", + "createdBy": null, + "createdTime": "2026-02-02 08:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:44", + "echoMap": {}, + "alarmNo": "1593543184", + "alarmDate": "1769990516804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507964", + "createdBy": null, + "createdTime": "2026-02-02 08:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:52", + "echoMap": {}, + "alarmNo": "1593543183", + "alarmDate": "1769990510597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507766", + "createdBy": null, + "createdTime": "2026-02-02 08:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:53", + "echoMap": {}, + "alarmNo": "1593543182", + "alarmDate": "1769990504940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507760", + "createdBy": null, + "createdTime": "2026-02-02 08:01:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:46", + "echoMap": {}, + "alarmNo": "1593543181", + "alarmDate": "1769990504817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507588", + "createdBy": null, + "createdTime": "2026-02-02 08:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:34", + "echoMap": {}, + "alarmNo": "1593543180", + "alarmDate": "1769990499666", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507466", + "createdBy": null, + "createdTime": "2026-02-02 08:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:20", + "echoMap": {}, + "alarmNo": "1593543179", + "alarmDate": "1769990495955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507454", + "createdBy": null, + "createdTime": "2026-02-02 08:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:37", + "echoMap": {}, + "alarmNo": "1593543178", + "alarmDate": "1769990495808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507259", + "createdBy": null, + "createdTime": "2026-02-02 08:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:15", + "echoMap": {}, + "alarmNo": "1593543177", + "alarmDate": "1769990490436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507201", + "createdBy": null, + "createdTime": "2026-02-02 08:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:13", + "echoMap": {}, + "alarmNo": "1593543176", + "alarmDate": "1769990488925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507131", + "createdBy": null, + "createdTime": "2026-02-02 08:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:39", + "echoMap": {}, + "alarmNo": "1593543175", + "alarmDate": "1769990487052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132682878507064", + "createdBy": null, + "createdTime": "2026-02-02 08:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:26", + "echoMap": {}, + "alarmNo": "1593543174", + "alarmDate": "1769990485134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540710", + "createdBy": null, + "createdTime": "2026-02-02 08:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:43", + "echoMap": {}, + "alarmNo": "1593543173", + "alarmDate": "1769990482676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540638", + "createdBy": null, + "createdTime": "2026-02-02 08:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:07", + "echoMap": {}, + "alarmNo": "1593543172", + "alarmDate": "1769990479038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060007", + "deviceName": "[414](10)南京东7#闸入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540634", + "createdBy": null, + "createdTime": "2026-02-02 08:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:22", + "echoMap": {}, + "alarmNo": "1593543171", + "alarmDate": "1769990478799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540444", + "createdBy": null, + "createdTime": "2026-02-02 07:52:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:10", + "echoMap": {}, + "alarmNo": "1593543170", + "alarmDate": "1769989941671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060143", + "deviceName": "[116](10)南京东上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540193", + "createdBy": null, + "createdTime": "2026-02-02 07:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:14", + "echoMap": {}, + "alarmNo": "1593543169", + "alarmDate": "1769989932838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540109", + "createdBy": null, + "createdTime": "2026-02-02 07:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:17", + "echoMap": {}, + "alarmNo": "1593543168", + "alarmDate": "1769989930526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583540051", + "createdBy": null, + "createdTime": "2026-02-02 07:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:04", + "echoMap": {}, + "alarmNo": "1593543167", + "alarmDate": "1769989928869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583539974", + "createdBy": null, + "createdTime": "2026-02-02 07:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:08", + "echoMap": {}, + "alarmNo": "1593543166", + "alarmDate": "1769989926794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132678583539840", + "createdBy": null, + "createdTime": "2026-02-02 07:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:21", + "echoMap": {}, + "alarmNo": "1593543165", + "alarmDate": "1769989922875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132674288572518", + "createdBy": null, + "createdTime": "2026-02-02 07:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:44", + "echoMap": {}, + "alarmNo": "1593543164", + "alarmDate": "1769989919208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132674288572443", + "createdBy": null, + "createdTime": "2026-02-02 07:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:03", + "echoMap": {}, + "alarmNo": "1593543163", + "alarmDate": "1769989917063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132669993605339", + "createdBy": null, + "createdTime": "2026-02-02 07:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:09", + "echoMap": {}, + "alarmNo": "1593543162", + "alarmDate": "1769989915611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132669993605281", + "createdBy": null, + "createdTime": "2026-02-02 07:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:44", + "echoMap": {}, + "alarmNo": "1593543161", + "alarmDate": "1769989913789", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132669993605171", + "createdBy": null, + "createdTime": "2026-02-02 07:51:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:51", + "echoMap": {}, + "alarmNo": "1593543160", + "alarmDate": "1769989910251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698638747", + "createdBy": null, + "createdTime": "2026-02-02 07:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:19", + "echoMap": {}, + "alarmNo": "1593543159", + "alarmDate": "1769989905608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698638120", + "createdBy": null, + "createdTime": "2026-02-02 07:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:28", + "echoMap": {}, + "alarmNo": "1593543158", + "alarmDate": "1769989887170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698637975", + "createdBy": null, + "createdTime": "2026-02-02 07:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:30", + "echoMap": {}, + "alarmNo": "1593543157", + "alarmDate": "1769989882829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698637918", + "createdBy": null, + "createdTime": "2026-02-02 07:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:56", + "echoMap": {}, + "alarmNo": "1593543156", + "alarmDate": "1769989880857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132665698637891", + "createdBy": null, + "createdTime": "2026-02-02 07:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:33", + "echoMap": {}, + "alarmNo": "1593543155", + "alarmDate": "1769989879156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403671228", + "createdBy": null, + "createdTime": "2026-02-02 07:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:52", + "echoMap": {}, + "alarmNo": "1593543154", + "alarmDate": "1769989334149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670885", + "createdBy": null, + "createdTime": "2026-02-02 07:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:21", + "echoMap": {}, + "alarmNo": "1593543153", + "alarmDate": "1769989324514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060033", + "deviceName": "[352](10)南京东10-2换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670696", + "createdBy": null, + "createdTime": "2026-02-02 07:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:13", + "echoMap": {}, + "alarmNo": "1593543152", + "alarmDate": "1769989319296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670647", + "createdBy": null, + "createdTime": "2026-02-02 07:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:59", + "echoMap": {}, + "alarmNo": "1593543151", + "alarmDate": "1769989318046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132661403670531", + "createdBy": null, + "createdTime": "2026-02-02 07:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:11", + "echoMap": {}, + "alarmNo": "1593543150", + "alarmDate": "1769989314838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132657108703317", + "createdBy": null, + "createdTime": "2026-02-02 07:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:36", + "echoMap": {}, + "alarmNo": "1593543149", + "alarmDate": "1769989314085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132652813736002", + "createdBy": null, + "createdTime": "2026-02-02 07:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:52", + "echoMap": {}, + "alarmNo": "1593543148", + "alarmDate": "1769989310531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132648518769189", + "createdBy": null, + "createdTime": "2026-02-02 07:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:34", + "echoMap": {}, + "alarmNo": "1593543147", + "alarmDate": "1769989294189", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132648518769172", + "createdBy": null, + "createdTime": "2026-02-02 07:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:41", + "echoMap": {}, + "alarmNo": "1593543146", + "alarmDate": "1769989293797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132648518769146", + "createdBy": null, + "createdTime": "2026-02-02 07:41:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:50", + "echoMap": {}, + "alarmNo": "1593543145", + "alarmDate": "1769989293137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223802237", + "createdBy": null, + "createdTime": "2026-02-02 07:32:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:20", + "echoMap": {}, + "alarmNo": "1593543144", + "alarmDate": "1769988738920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801916", + "createdBy": null, + "createdTime": "2026-02-02 07:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:17", + "echoMap": {}, + "alarmNo": "1593543143", + "alarmDate": "1769988730080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801646", + "createdBy": null, + "createdTime": "2026-02-02 07:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:16", + "echoMap": {}, + "alarmNo": "1593543142", + "alarmDate": "1769988722942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801625", + "createdBy": null, + "createdTime": "2026-02-02 07:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:22", + "echoMap": {}, + "alarmNo": "1593543141", + "alarmDate": "1769988722625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132644223801527", + "createdBy": null, + "createdTime": "2026-02-02 07:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:22", + "echoMap": {}, + "alarmNo": "1593543140", + "alarmDate": "1769988719854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132639928834081", + "createdBy": null, + "createdTime": "2026-02-02 07:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:54", + "echoMap": {}, + "alarmNo": "1593543139", + "alarmDate": "1769988712758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132635633867025", + "createdBy": null, + "createdTime": "2026-02-02 07:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:57", + "echoMap": {}, + "alarmNo": "1593543138", + "alarmDate": "1769988710145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132635633866798", + "createdBy": null, + "createdTime": "2026-02-02 07:31:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:45", + "echoMap": {}, + "alarmNo": "1593543137", + "alarmDate": "1769988703902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900462", + "createdBy": null, + "createdTime": "2026-02-02 07:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:16", + "echoMap": {}, + "alarmNo": "1593543136", + "alarmDate": "1769988702265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900444", + "createdBy": null, + "createdTime": "2026-02-02 07:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:01", + "echoMap": {}, + "alarmNo": "1593543135", + "alarmDate": "1769988701839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900439", + "createdBy": null, + "createdTime": "2026-02-02 07:31:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:23", + "echoMap": {}, + "alarmNo": "1593543134", + "alarmDate": "1769988701749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900224", + "createdBy": null, + "createdTime": "2026-02-02 07:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:06", + "echoMap": {}, + "alarmNo": "1593543133", + "alarmDate": "1769988695786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900078", + "createdBy": null, + "createdTime": "2026-02-02 07:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:33", + "echoMap": {}, + "alarmNo": "1593543132", + "alarmDate": "1769988692271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338900064", + "createdBy": null, + "createdTime": "2026-02-02 07:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:33", + "echoMap": {}, + "alarmNo": "1593543131", + "alarmDate": "1769988691853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338899769", + "createdBy": null, + "createdTime": "2026-02-02 07:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:25", + "echoMap": {}, + "alarmNo": "1593543130", + "alarmDate": "1769988684121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338899728", + "createdBy": null, + "createdTime": "2026-02-02 07:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:16", + "echoMap": {}, + "alarmNo": "1593543129", + "alarmDate": "1769988683053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060143", + "deviceName": "[116](10)南京东上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132631338899658", + "createdBy": null, + "createdTime": "2026-02-02 07:31:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:26", + "echoMap": {}, + "alarmNo": "1593543128", + "alarmDate": "1769988680725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043933143", + "createdBy": null, + "createdTime": "2026-02-02 07:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:21", + "echoMap": {}, + "alarmNo": "1593543127", + "alarmDate": "1769988140032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043933049", + "createdBy": null, + "createdTime": "2026-02-02 07:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:18", + "echoMap": {}, + "alarmNo": "1593543126", + "alarmDate": "1769988136769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932945", + "createdBy": null, + "createdTime": "2026-02-02 07:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:15", + "echoMap": {}, + "alarmNo": "1593543125", + "alarmDate": "1769988133876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932882", + "createdBy": null, + "createdTime": "2026-02-02 07:22:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:37", + "echoMap": {}, + "alarmNo": "1593543124", + "alarmDate": "1769988132194", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932622", + "createdBy": null, + "createdTime": "2026-02-02 07:22:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:30", + "echoMap": {}, + "alarmNo": "1593543123", + "alarmDate": "1769988124539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932599", + "createdBy": null, + "createdTime": "2026-02-02 07:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:28", + "echoMap": {}, + "alarmNo": "1593543122", + "alarmDate": "1769988123880", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932550", + "createdBy": null, + "createdTime": "2026-02-02 07:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:31", + "echoMap": {}, + "alarmNo": "1593543121", + "alarmDate": "1769988122402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132627043932456", + "createdBy": null, + "createdTime": "2026-02-02 07:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:12", + "echoMap": {}, + "alarmNo": "1593543120", + "alarmDate": "1769988119404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132614159031090", + "createdBy": null, + "createdTime": "2026-02-02 07:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:47", + "echoMap": {}, + "alarmNo": "1593543119", + "alarmDate": "1769988095298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132614159030799", + "createdBy": null, + "createdTime": "2026-02-02 07:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:34", + "echoMap": {}, + "alarmNo": "1593543118", + "alarmDate": "1769988087503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132614159030558", + "createdBy": null, + "createdTime": "2026-02-02 07:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:55", + "echoMap": {}, + "alarmNo": "1593543117", + "alarmDate": "1769988079694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063803", + "createdBy": null, + "createdTime": "2026-02-02 07:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:35", + "echoMap": {}, + "alarmNo": "1593543116", + "alarmDate": "1769987531726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063566", + "createdBy": null, + "createdTime": "2026-02-02 07:12:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:22", + "echoMap": {}, + "alarmNo": "1593543115", + "alarmDate": "1769987525156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063497", + "createdBy": null, + "createdTime": "2026-02-02 07:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:04", + "echoMap": {}, + "alarmNo": "1593543114", + "alarmDate": "1769987523262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132609864063169", + "createdBy": null, + "createdTime": "2026-02-02 07:11:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:02", + "echoMap": {}, + "alarmNo": "1593543113", + "alarmDate": "1769987514245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132601274128515", + "createdBy": null, + "createdTime": "2026-02-02 07:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:23", + "echoMap": {}, + "alarmNo": "1593543112", + "alarmDate": "1769987501938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132601274128440", + "createdBy": null, + "createdTime": "2026-02-02 07:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:13", + "echoMap": {}, + "alarmNo": "1593543111", + "alarmDate": "1769987499860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161975", + "createdBy": null, + "createdTime": "2026-02-02 07:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:36", + "echoMap": {}, + "alarmNo": "1593543110", + "alarmDate": "1769987494584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161508", + "createdBy": null, + "createdTime": "2026-02-02 07:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:39", + "echoMap": {}, + "alarmNo": "1593543109", + "alarmDate": "1769987482469", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060142", + "deviceName": "[117](10)南京东2#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161457", + "createdBy": null, + "createdTime": "2026-02-02 07:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:28", + "echoMap": {}, + "alarmNo": "1593543108", + "alarmDate": "1769987480876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161433", + "createdBy": null, + "createdTime": "2026-02-02 07:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:29", + "echoMap": {}, + "alarmNo": "1593543107", + "alarmDate": "1769987479865", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132596979161418", + "createdBy": null, + "createdTime": "2026-02-02 07:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:20", + "echoMap": {}, + "alarmNo": "1593543106", + "alarmDate": "1769987479022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194800", + "createdBy": null, + "createdTime": "2026-02-02 07:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:16", + "echoMap": {}, + "alarmNo": "1593543105", + "alarmDate": "1769986935399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194795", + "createdBy": null, + "createdTime": "2026-02-02 07:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:25", + "echoMap": {}, + "alarmNo": "1593543104", + "alarmDate": "1769986935291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194430", + "createdBy": null, + "createdTime": "2026-02-02 07:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:06", + "echoMap": {}, + "alarmNo": "1593543103", + "alarmDate": "1769986924900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194341", + "createdBy": null, + "createdTime": "2026-02-02 07:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:43", + "echoMap": {}, + "alarmNo": "1593543102", + "alarmDate": "1769986922361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194250", + "createdBy": null, + "createdTime": "2026-02-02 07:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:01", + "echoMap": {}, + "alarmNo": "1593543101", + "alarmDate": "1769986919886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194203", + "createdBy": null, + "createdTime": "2026-02-02 07:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:06", + "echoMap": {}, + "alarmNo": "1593543100", + "alarmDate": "1769986918678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684194192", + "createdBy": null, + "createdTime": "2026-02-02 07:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:53", + "echoMap": {}, + "alarmNo": "1593543099", + "alarmDate": "1769986918261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132592684193953", + "createdBy": null, + "createdTime": "2026-02-02 07:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:52", + "echoMap": {}, + "alarmNo": "1593543098", + "alarmDate": "1769986911136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132584094259367", + "createdBy": null, + "createdTime": "2026-02-02 07:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:42", + "echoMap": {}, + "alarmNo": "1593543097", + "alarmDate": "1769986901385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132584094259296", + "createdBy": null, + "createdTime": "2026-02-02 07:01:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:40", + "echoMap": {}, + "alarmNo": "1593543096", + "alarmDate": "1769986899276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132579799292907", + "createdBy": null, + "createdTime": "2026-02-02 07:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:37", + "echoMap": {}, + "alarmNo": "1593543095", + "alarmDate": "1769986896061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132579799292651", + "createdBy": null, + "createdTime": "2026-02-02 07:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:37", + "echoMap": {}, + "alarmNo": "1593543094", + "alarmDate": "1769986889172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132579799292102", + "createdBy": null, + "createdTime": "2026-02-02 06:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:19", + "echoMap": {}, + "alarmNo": "1593543093", + "alarmDate": "1769986337908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060094", + "deviceName": "[212](10)南京东6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132575504325255", + "createdBy": null, + "createdTime": "2026-02-02 06:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:27", + "echoMap": {}, + "alarmNo": "1593543092", + "alarmDate": "1769986322827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132575504325026", + "createdBy": null, + "createdTime": "2026-02-02 06:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:02", + "echoMap": {}, + "alarmNo": "1593543091", + "alarmDate": "1769986316812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132566914390072", + "createdBy": null, + "createdTime": "2026-02-02 06:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:12", + "echoMap": {}, + "alarmNo": "1593543090", + "alarmDate": "1769986299101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132562619423203", + "createdBy": null, + "createdTime": "2026-02-02 06:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:42", + "echoMap": {}, + "alarmNo": "1593543089", + "alarmDate": "1769986284273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132562619423108", + "createdBy": null, + "createdTime": "2026-02-02 06:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:14", + "echoMap": {}, + "alarmNo": "1593543088", + "alarmDate": "1769986281669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132562619423069", + "createdBy": null, + "createdTime": "2026-02-02 06:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:52", + "echoMap": {}, + "alarmNo": "1593543087", + "alarmDate": "1769986280283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132558324456158", + "createdBy": null, + "createdTime": "2026-02-02 06:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:08", + "echoMap": {}, + "alarmNo": "1593543086", + "alarmDate": "1769985727387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132545439554462", + "createdBy": null, + "createdTime": "2026-02-02 06:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:37", + "echoMap": {}, + "alarmNo": "1593543085", + "alarmDate": "1769985695564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132545439554082", + "createdBy": null, + "createdTime": "2026-02-02 06:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:27", + "echoMap": {}, + "alarmNo": "1593543084", + "alarmDate": "1769985685679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132545439553932", + "createdBy": null, + "createdTime": "2026-02-02 06:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:22", + "echoMap": {}, + "alarmNo": "1593543083", + "alarmDate": "1769985681248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144587082", + "createdBy": null, + "createdTime": "2026-02-02 06:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:12", + "echoMap": {}, + "alarmNo": "1593543082", + "alarmDate": "1769985131006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144587023", + "createdBy": null, + "createdTime": "2026-02-02 06:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:34", + "echoMap": {}, + "alarmNo": "1593543081", + "alarmDate": "1769985129514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586982", + "createdBy": null, + "createdTime": "2026-02-02 06:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:10", + "echoMap": {}, + "alarmNo": "1593543080", + "alarmDate": "1769985128519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586956", + "createdBy": null, + "createdTime": "2026-02-02 06:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:15", + "echoMap": {}, + "alarmNo": "1593543079", + "alarmDate": "1769985127886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586860", + "createdBy": null, + "createdTime": "2026-02-02 06:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:06", + "echoMap": {}, + "alarmNo": "1593543078", + "alarmDate": "1769985125239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586735", + "createdBy": null, + "createdTime": "2026-02-02 06:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:03", + "echoMap": {}, + "alarmNo": "1593543077", + "alarmDate": "1769985121965", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586353", + "createdBy": null, + "createdTime": "2026-02-02 06:31:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:52", + "echoMap": {}, + "alarmNo": "1593543076", + "alarmDate": "1769985111347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132541144586306", + "createdBy": null, + "createdTime": "2026-02-02 06:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:51", + "echoMap": {}, + "alarmNo": "1593543075", + "alarmDate": "1769985110236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132536849618946", + "createdBy": null, + "createdTime": "2026-02-02 06:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:51", + "echoMap": {}, + "alarmNo": "1593543074", + "alarmDate": "1769985105389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132532554652573", + "createdBy": null, + "createdTime": "2026-02-02 06:31:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:46", + "echoMap": {}, + "alarmNo": "1593543073", + "alarmDate": "1769985104542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132532554652213", + "createdBy": null, + "createdTime": "2026-02-02 06:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:36", + "echoMap": {}, + "alarmNo": "1593543072", + "alarmDate": "1769985094668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132532554651670", + "createdBy": null, + "createdTime": "2026-02-02 06:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:39", + "echoMap": {}, + "alarmNo": "1593543071", + "alarmDate": "1769985079922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259685173", + "createdBy": null, + "createdTime": "2026-02-02 06:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:53", + "echoMap": {}, + "alarmNo": "1593543070", + "alarmDate": "1769984539763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259685058", + "createdBy": null, + "createdTime": "2026-02-02 06:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:33", + "echoMap": {}, + "alarmNo": "1593543069", + "alarmDate": "1769984536160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259684771", + "createdBy": null, + "createdTime": "2026-02-02 06:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:09", + "echoMap": {}, + "alarmNo": "1593543068", + "alarmDate": "1769984528029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132528259684412", + "createdBy": null, + "createdTime": "2026-02-02 06:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:04", + "echoMap": {}, + "alarmNo": "1593543067", + "alarmDate": "1769984518179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132515374783014", + "createdBy": null, + "createdTime": "2026-02-02 06:21:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:15", + "echoMap": {}, + "alarmNo": "1593543066", + "alarmDate": "1769984499804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060027", + "deviceName": "[357](10)南京东10-2换乘出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132515374782853", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:40", + "echoMap": {}, + "alarmNo": "1593543065", + "alarmDate": "1769984495436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060130", + "deviceName": "[111](10)南京东下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132515374782486", + "createdBy": null, + "createdTime": "2026-02-02 06:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:27", + "echoMap": {}, + "alarmNo": "1593543064", + "alarmDate": "1769984485689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079816053", + "createdBy": null, + "createdTime": "2026-02-02 06:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:46", + "echoMap": {}, + "alarmNo": "1593543063", + "alarmDate": "1769984481050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079815759", + "createdBy": null, + "createdTime": "2026-02-02 06:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:08", + "echoMap": {}, + "alarmNo": "1593543062", + "alarmDate": "1769983938289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079815556", + "createdBy": null, + "createdTime": "2026-02-02 06:12:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:13", + "echoMap": {}, + "alarmNo": "1593543061", + "alarmDate": "1769983932467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132511079815188", + "createdBy": null, + "createdTime": "2026-02-02 06:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:03", + "echoMap": {}, + "alarmNo": "1593543060", + "alarmDate": "1769983922160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132498194913571", + "createdBy": null, + "createdTime": "2026-02-02 06:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:38", + "echoMap": {}, + "alarmNo": "1593543059", + "alarmDate": "1769983897396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946952", + "createdBy": null, + "createdTime": "2026-02-02 06:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:30", + "echoMap": {}, + "alarmNo": "1593543058", + "alarmDate": "1769983888594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946762", + "createdBy": null, + "createdTime": "2026-02-02 06:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:24", + "echoMap": {}, + "alarmNo": "1593543057", + "alarmDate": "1769983883535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060149", + "deviceName": "[131](10)南京东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946693", + "createdBy": null, + "createdTime": "2026-02-02 06:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:23", + "echoMap": {}, + "alarmNo": "1593543056", + "alarmDate": "1769983881658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946330", + "createdBy": null, + "createdTime": "2026-02-02 06:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:17", + "echoMap": {}, + "alarmNo": "1593543055", + "alarmDate": "1769983336558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946129", + "createdBy": null, + "createdTime": "2026-02-02 06:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:12", + "echoMap": {}, + "alarmNo": "1593543054", + "alarmDate": "1769983331356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060149", + "deviceName": "[131](10)南京东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946113", + "createdBy": null, + "createdTime": "2026-02-02 06:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:53", + "echoMap": {}, + "alarmNo": "1593543053", + "alarmDate": "1769983330963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132493899946059", + "createdBy": null, + "createdTime": "2026-02-02 06:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:16", + "echoMap": {}, + "alarmNo": "1593543052", + "alarmDate": "1769983329585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978805", + "createdBy": null, + "createdTime": "2026-02-02 06:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:45", + "echoMap": {}, + "alarmNo": "1593543051", + "alarmDate": "1769983327508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978804", + "createdBy": null, + "createdTime": "2026-02-02 06:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:56", + "echoMap": {}, + "alarmNo": "1593543050", + "alarmDate": "1769983327507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978800", + "createdBy": null, + "createdTime": "2026-02-02 06:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:08", + "echoMap": {}, + "alarmNo": "1593543049", + "alarmDate": "1769983327420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978765", + "createdBy": null, + "createdTime": "2026-02-02 06:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:08", + "echoMap": {}, + "alarmNo": "1593543048", + "alarmDate": "1769983326572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132489604978695", + "createdBy": null, + "createdTime": "2026-02-02 06:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:06", + "echoMap": {}, + "alarmNo": "1593543047", + "alarmDate": "1769983324535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015045067", + "createdBy": null, + "createdTime": "2026-02-02 06:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:03", + "echoMap": {}, + "alarmNo": "1593543046", + "alarmDate": "1769983322065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044877", + "createdBy": null, + "createdTime": "2026-02-02 06:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:58", + "echoMap": {}, + "alarmNo": "1593543045", + "alarmDate": "1769983316663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044695", + "createdBy": null, + "createdTime": "2026-02-02 06:01:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:58", + "echoMap": {}, + "alarmNo": "1593543044", + "alarmDate": "1769983311614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044209", + "createdBy": null, + "createdTime": "2026-02-02 06:01:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:56", + "echoMap": {}, + "alarmNo": "1593543043", + "alarmDate": "1769983297532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132481015044132", + "createdBy": null, + "createdTime": "2026-02-02 06:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:36", + "echoMap": {}, + "alarmNo": "1593543042", + "alarmDate": "1769983295404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132476720077796", + "createdBy": null, + "createdTime": "2026-02-02 06:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:40", + "echoMap": {}, + "alarmNo": "1593543041", + "alarmDate": "1769983293627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132476720077362", + "createdBy": null, + "createdTime": "2026-02-02 06:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:00", + "echoMap": {}, + "alarmNo": "1593543040", + "alarmDate": "1769983281667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132476720077333", + "createdBy": null, + "createdTime": "2026-02-02 06:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:21", + "echoMap": {}, + "alarmNo": "1593543039", + "alarmDate": "1769983280613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132472425109565", + "createdBy": null, + "createdTime": "2026-02-02 05:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:24", + "echoMap": {}, + "alarmNo": "1593543038", + "alarmDate": "1769982728027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175621", + "createdBy": null, + "createdTime": "2026-02-02 05:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:29", + "echoMap": {}, + "alarmNo": "1593543037", + "alarmDate": "1769982687784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175511", + "createdBy": null, + "createdTime": "2026-02-02 05:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:25", + "echoMap": {}, + "alarmNo": "1593543036", + "alarmDate": "1769982684395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175057", + "createdBy": null, + "createdTime": "2026-02-02 05:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1593543035", + "alarmDate": "1769982136042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835175040", + "createdBy": null, + "createdTime": "2026-02-02 05:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:17", + "echoMap": {}, + "alarmNo": "1593543034", + "alarmDate": "1769982135601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132463835174927", + "createdBy": null, + "createdTime": "2026-02-02 05:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:13", + "echoMap": {}, + "alarmNo": "1593543033", + "alarmDate": "1769982132176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132455245241066", + "createdBy": null, + "createdTime": "2026-02-02 05:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:10", + "echoMap": {}, + "alarmNo": "1593543032", + "alarmDate": "1769982125070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132455245240695", + "createdBy": null, + "createdTime": "2026-02-02 05:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:55", + "echoMap": {}, + "alarmNo": "1593543031", + "alarmDate": "1769982113596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132455245240477", + "createdBy": null, + "createdTime": "2026-02-02 05:41:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:53", + "echoMap": {}, + "alarmNo": "1593543030", + "alarmDate": "1769982107052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950274029", + "createdBy": null, + "createdTime": "2026-02-02 05:41:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:43", + "echoMap": {}, + "alarmNo": "1593543029", + "alarmDate": "1769982101749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273974", + "createdBy": null, + "createdTime": "2026-02-02 05:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:04", + "echoMap": {}, + "alarmNo": "1593543028", + "alarmDate": "1769982100014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273804", + "createdBy": null, + "createdTime": "2026-02-02 05:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:36", + "echoMap": {}, + "alarmNo": "1593543027", + "alarmDate": "1769982094763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273472", + "createdBy": null, + "createdTime": "2026-02-02 05:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:26", + "echoMap": {}, + "alarmNo": "1593543026", + "alarmDate": "1769982085362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273391", + "createdBy": null, + "createdTime": "2026-02-02 05:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:24", + "echoMap": {}, + "alarmNo": "1593543025", + "alarmDate": "1769982083032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132450950273066", + "createdBy": null, + "createdTime": "2026-02-02 05:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:31", + "echoMap": {}, + "alarmNo": "1593543024", + "alarmDate": "1769981539652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132446655305831", + "createdBy": null, + "createdTime": "2026-02-02 05:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:35", + "echoMap": {}, + "alarmNo": "1593543023", + "alarmDate": "1769981537725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132446655305731", + "createdBy": null, + "createdTime": "2026-02-02 05:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:16", + "echoMap": {}, + "alarmNo": "1593543022", + "alarmDate": "1769981534828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132442360339084", + "createdBy": null, + "createdTime": "2026-02-02 05:32:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:08", + "echoMap": {}, + "alarmNo": "1593543021", + "alarmDate": "1769981526665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132429475437393", + "createdBy": null, + "createdTime": "2026-02-02 05:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:05", + "echoMap": {}, + "alarmNo": "1593543020", + "alarmDate": "1769980937478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132429475436809", + "createdBy": null, + "createdTime": "2026-02-02 05:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:05", + "echoMap": {}, + "alarmNo": "1593543019", + "alarmDate": "1769980919505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469953", + "createdBy": null, + "createdTime": "2026-02-02 05:21:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:47", + "echoMap": {}, + "alarmNo": "1593543018", + "alarmDate": "1769980901533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469845", + "createdBy": null, + "createdTime": "2026-02-02 05:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:39", + "echoMap": {}, + "alarmNo": "1593543017", + "alarmDate": "1769980898256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469682", + "createdBy": null, + "createdTime": "2026-02-02 05:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:34", + "echoMap": {}, + "alarmNo": "1593543016", + "alarmDate": "1769980893458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132425180469506", + "createdBy": null, + "createdTime": "2026-02-02 05:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:29", + "echoMap": {}, + "alarmNo": "1593543015", + "alarmDate": "1769980888770", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1016030014", + "deviceName": "安防箱14", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1016" + }, + { + "id": "723132425180469488", + "createdBy": null, + "createdTime": "2026-02-02 05:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:28", + "echoMap": {}, + "alarmNo": "1593543014", + "alarmDate": "1769980888316", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1016030015", + "deviceName": "安防箱15", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1016" + }, + { + "id": "723132425180469265", + "createdBy": null, + "createdTime": "2026-02-02 05:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:49", + "echoMap": {}, + "alarmNo": "1593543013", + "alarmDate": "1769980881436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132420885502072", + "createdBy": null, + "createdTime": "2026-02-02 05:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:29", + "echoMap": {}, + "alarmNo": "1593543012", + "alarmDate": "1769980880301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132416590535157", + "createdBy": null, + "createdTime": "2026-02-02 05:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:13", + "echoMap": {}, + "alarmNo": "1593543011", + "alarmDate": "1769980331173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132416590534857", + "createdBy": null, + "createdTime": "2026-02-02 05:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:14", + "echoMap": {}, + "alarmNo": "1593543010", + "alarmDate": "1769980321544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132416590534856", + "createdBy": null, + "createdTime": "2026-02-02 05:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:02", + "echoMap": {}, + "alarmNo": "1593543009", + "alarmDate": "1769980321543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568326", + "createdBy": null, + "createdTime": "2026-02-02 05:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:54", + "echoMap": {}, + "alarmNo": "1593543008", + "alarmDate": "1769980313289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568155", + "createdBy": null, + "createdTime": "2026-02-02 05:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:48", + "echoMap": {}, + "alarmNo": "1593543007", + "alarmDate": "1769980307658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568002", + "createdBy": null, + "createdTime": "2026-02-02 05:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:44", + "echoMap": {}, + "alarmNo": "1593543006", + "alarmDate": "1769980302828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295568000", + "createdBy": null, + "createdTime": "2026-02-02 05:11:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:19", + "echoMap": {}, + "alarmNo": "1593543005", + "alarmDate": "1769980302827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295567861", + "createdBy": null, + "createdTime": "2026-02-02 05:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:15", + "echoMap": {}, + "alarmNo": "1593543004", + "alarmDate": "1769980298555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132412295567475", + "createdBy": null, + "createdTime": "2026-02-02 05:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:28", + "echoMap": {}, + "alarmNo": "1593543003", + "alarmDate": "1769980286536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633553", + "createdBy": null, + "createdTime": "2026-02-02 05:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:49", + "echoMap": {}, + "alarmNo": "1593543002", + "alarmDate": "1769979737975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633460", + "createdBy": null, + "createdTime": "2026-02-02 05:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:16", + "echoMap": {}, + "alarmNo": "1593543001", + "alarmDate": "1769979734982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633404", + "createdBy": null, + "createdTime": "2026-02-02 05:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:31", + "echoMap": {}, + "alarmNo": "1593543000", + "alarmDate": "1769979733174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705633292", + "createdBy": null, + "createdTime": "2026-02-02 05:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:11", + "echoMap": {}, + "alarmNo": "1593542999", + "alarmDate": "1769979729438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132403705632888", + "createdBy": null, + "createdTime": "2026-02-02 05:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:01", + "echoMap": {}, + "alarmNo": "1593542998", + "alarmDate": "1769979715362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132399410666046", + "createdBy": null, + "createdTime": "2026-02-02 05:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:37", + "echoMap": {}, + "alarmNo": "1593542997", + "alarmDate": "1769979696230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132390820731027", + "createdBy": null, + "createdTime": "2026-02-02 04:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:57", + "echoMap": {}, + "alarmNo": "1593542996", + "alarmDate": "1769979115666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764546", + "createdBy": null, + "createdTime": "2026-02-02 04:51:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:50", + "echoMap": {}, + "alarmNo": "1593542995", + "alarmDate": "1769979108984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764348", + "createdBy": null, + "createdTime": "2026-02-02 04:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:35", + "echoMap": {}, + "alarmNo": "1593542994", + "alarmDate": "1769979102460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764254", + "createdBy": null, + "createdTime": "2026-02-02 04:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:41", + "echoMap": {}, + "alarmNo": "1593542993", + "alarmDate": "1769979099374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525764172", + "createdBy": null, + "createdTime": "2026-02-02 04:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:43", + "echoMap": {}, + "alarmNo": "1593542992", + "alarmDate": "1769979096885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525763879", + "createdBy": null, + "createdTime": "2026-02-02 04:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:29", + "echoMap": {}, + "alarmNo": "1593542991", + "alarmDate": "1769979087625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525763699", + "createdBy": null, + "createdTime": "2026-02-02 04:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:26", + "echoMap": {}, + "alarmNo": "1593542990", + "alarmDate": "1769979081607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132386525763670", + "createdBy": null, + "createdTime": "2026-02-02 04:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:21", + "echoMap": {}, + "alarmNo": "1593542989", + "alarmDate": "1769979080076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829848", + "createdBy": null, + "createdTime": "2026-02-02 04:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:20", + "echoMap": {}, + "alarmNo": "1593542988", + "alarmDate": "1769978539640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829638", + "createdBy": null, + "createdTime": "2026-02-02 04:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:13", + "echoMap": {}, + "alarmNo": "1593542987", + "alarmDate": "1769978532330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829492", + "createdBy": null, + "createdTime": "2026-02-02 04:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:14", + "echoMap": {}, + "alarmNo": "1593542986", + "alarmDate": "1769978527652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829342", + "createdBy": null, + "createdTime": "2026-02-02 04:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:04", + "echoMap": {}, + "alarmNo": "1593542985", + "alarmDate": "1769978522593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829311", + "createdBy": null, + "createdTime": "2026-02-02 04:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:03", + "echoMap": {}, + "alarmNo": "1593542984", + "alarmDate": "1769978521701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132377935829172", + "createdBy": null, + "createdTime": "2026-02-02 04:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:58", + "echoMap": {}, + "alarmNo": "1593542983", + "alarmDate": "1769978516924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132373640862280", + "createdBy": null, + "createdTime": "2026-02-02 04:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:37", + "echoMap": {}, + "alarmNo": "1593542982", + "alarmDate": "1769978496546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132365050927181", + "createdBy": null, + "createdTime": "2026-02-02 04:31:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:54", + "echoMap": {}, + "alarmNo": "1593542981", + "alarmDate": "1769977913279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132360755960814", + "createdBy": null, + "createdTime": "2026-02-02 04:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:56", + "echoMap": {}, + "alarmNo": "1593542980", + "alarmDate": "1769977910195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132360755960266", + "createdBy": null, + "createdTime": "2026-02-02 04:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:38", + "echoMap": {}, + "alarmNo": "1593542979", + "alarmDate": "1769977892416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132352166025576", + "createdBy": null, + "createdTime": "2026-02-02 04:22:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:03", + "echoMap": {}, + "alarmNo": "1593542978", + "alarmDate": "1769977322067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132352166025524", + "createdBy": null, + "createdTime": "2026-02-02 04:22:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:00", + "echoMap": {}, + "alarmNo": "1593542977", + "alarmDate": "1769977320425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132352166025436", + "createdBy": null, + "createdTime": "2026-02-02 04:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:59", + "echoMap": {}, + "alarmNo": "1593542976", + "alarmDate": "1769977317642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058929", + "createdBy": null, + "createdTime": "2026-02-02 04:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:52", + "echoMap": {}, + "alarmNo": "1593542975", + "alarmDate": "1769977310514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058840", + "createdBy": null, + "createdTime": "2026-02-02 04:21:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:49", + "echoMap": {}, + "alarmNo": "1593542974", + "alarmDate": "1769977307766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058538", + "createdBy": null, + "createdTime": "2026-02-02 04:21:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:40", + "echoMap": {}, + "alarmNo": "1593542973", + "alarmDate": "1769977298496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058202", + "createdBy": null, + "createdTime": "2026-02-02 04:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:30", + "echoMap": {}, + "alarmNo": "1593542972", + "alarmDate": "1769977288978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058189", + "createdBy": null, + "createdTime": "2026-02-02 04:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:30", + "echoMap": {}, + "alarmNo": "1593542971", + "alarmDate": "1769977288614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132347871058045", + "createdBy": null, + "createdTime": "2026-02-02 04:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:25", + "echoMap": {}, + "alarmNo": "1593542970", + "alarmDate": "1769977284250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281124082", + "createdBy": null, + "createdTime": "2026-02-02 04:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:20", + "echoMap": {}, + "alarmNo": "1593542969", + "alarmDate": "1769976738328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281124026", + "createdBy": null, + "createdTime": "2026-02-02 04:12:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:18", + "echoMap": {}, + "alarmNo": "1593542968", + "alarmDate": "1769976736663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281123611", + "createdBy": null, + "createdTime": "2026-02-02 04:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:09", + "echoMap": {}, + "alarmNo": "1593542967", + "alarmDate": "1769976722971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132339281123365", + "createdBy": null, + "createdTime": "2026-02-02 04:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:55", + "echoMap": {}, + "alarmNo": "1593542966", + "alarmDate": "1769976714646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132334986157049", + "createdBy": null, + "createdTime": "2026-02-02 04:11:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:00", + "echoMap": {}, + "alarmNo": "1593542965", + "alarmDate": "1769976713063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132334986156855", + "createdBy": null, + "createdTime": "2026-02-02 04:11:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:47", + "echoMap": {}, + "alarmNo": "1593542964", + "alarmDate": "1769976706894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132334986156790", + "createdBy": null, + "createdTime": "2026-02-02 04:11:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:51", + "echoMap": {}, + "alarmNo": "1593542963", + "alarmDate": "1769976704919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132326396222063", + "createdBy": null, + "createdTime": "2026-02-02 04:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:34", + "echoMap": {}, + "alarmNo": "1593542962", + "alarmDate": "1769976135334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132326396221704", + "createdBy": null, + "createdTime": "2026-02-02 04:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:04", + "echoMap": {}, + "alarmNo": "1593542961", + "alarmDate": "1769976123073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132322101254900", + "createdBy": null, + "createdTime": "2026-02-02 04:01:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:58", + "echoMap": {}, + "alarmNo": "1593542960", + "alarmDate": "1769976106073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132317806286956", + "createdBy": null, + "createdTime": "2026-02-02 04:01:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:22", + "echoMap": {}, + "alarmNo": "1593542959", + "alarmDate": "1769976080578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319957", + "createdBy": null, + "createdTime": "2026-02-02 03:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:10", + "echoMap": {}, + "alarmNo": "1593542958", + "alarmDate": "1769975529445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319873", + "createdBy": null, + "createdTime": "2026-02-02 03:52:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:08", + "echoMap": {}, + "alarmNo": "1593542957", + "alarmDate": "1769975526742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319637", + "createdBy": null, + "createdTime": "2026-02-02 03:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:00", + "echoMap": {}, + "alarmNo": "1593542956", + "alarmDate": "1769975519319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319610", + "createdBy": null, + "createdTime": "2026-02-02 03:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:00", + "echoMap": {}, + "alarmNo": "1593542955", + "alarmDate": "1769975518585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132313511319589", + "createdBy": null, + "createdTime": "2026-02-02 03:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:03", + "echoMap": {}, + "alarmNo": "1593542954", + "alarmDate": "1769975517981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216353017", + "createdBy": null, + "createdTime": "2026-02-02 03:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:49", + "echoMap": {}, + "alarmNo": "1593542953", + "alarmDate": "1769975507760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216352879", + "createdBy": null, + "createdTime": "2026-02-02 03:51:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:44", + "echoMap": {}, + "alarmNo": "1593542952", + "alarmDate": "1769975503383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216352877", + "createdBy": null, + "createdTime": "2026-02-02 03:51:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:44", + "echoMap": {}, + "alarmNo": "1593542951", + "alarmDate": "1769975503277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132309216352773", + "createdBy": null, + "createdTime": "2026-02-02 03:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:46", + "echoMap": {}, + "alarmNo": "1593542950", + "alarmDate": "1769975499930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132304921385020", + "createdBy": null, + "createdTime": "2026-02-02 03:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:28", + "echoMap": {}, + "alarmNo": "1593542949", + "alarmDate": "1769975480923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132304921385012", + "createdBy": null, + "createdTime": "2026-02-02 03:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:22", + "echoMap": {}, + "alarmNo": "1593542948", + "alarmDate": "1769975480613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132300626418206", + "createdBy": null, + "createdTime": "2026-02-02 03:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:13", + "echoMap": {}, + "alarmNo": "1593542947", + "alarmDate": "1769974932485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132300626418118", + "createdBy": null, + "createdTime": "2026-02-02 03:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:16", + "echoMap": {}, + "alarmNo": "1593542946", + "alarmDate": "1769974929799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132300626417673", + "createdBy": null, + "createdTime": "2026-02-02 03:41:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:56", + "echoMap": {}, + "alarmNo": "1593542945", + "alarmDate": "1769974915304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132296331450512", + "createdBy": null, + "createdTime": "2026-02-02 03:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:28", + "echoMap": {}, + "alarmNo": "1593542944", + "alarmDate": "1769974887412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741516461", + "createdBy": null, + "createdTime": "2026-02-02 03:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:03", + "echoMap": {}, + "alarmNo": "1593542943", + "alarmDate": "1769974339544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741516401", + "createdBy": null, + "createdTime": "2026-02-02 03:32:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:18", + "echoMap": {}, + "alarmNo": "1593542942", + "alarmDate": "1769974337341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741516193", + "createdBy": null, + "createdTime": "2026-02-02 03:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:59", + "echoMap": {}, + "alarmNo": "1593542941", + "alarmDate": "1769974330529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132287741515864", + "createdBy": null, + "createdTime": "2026-02-02 03:32:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:07", + "echoMap": {}, + "alarmNo": "1593542940", + "alarmDate": "1769974319514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446549377", + "createdBy": null, + "createdTime": "2026-02-02 03:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:58", + "echoMap": {}, + "alarmNo": "1593542939", + "alarmDate": "1769974312391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548854", + "createdBy": null, + "createdTime": "2026-02-02 03:31:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:36", + "echoMap": {}, + "alarmNo": "1593542938", + "alarmDate": "1769974295003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548832", + "createdBy": null, + "createdTime": "2026-02-02 03:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:40", + "echoMap": {}, + "alarmNo": "1593542937", + "alarmDate": "1769974294411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548577", + "createdBy": null, + "createdTime": "2026-02-02 03:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:28", + "echoMap": {}, + "alarmNo": "1593542936", + "alarmDate": "1769974286687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548499", + "createdBy": null, + "createdTime": "2026-02-02 03:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1593542935", + "alarmDate": "1769974284083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132283446548496", + "createdBy": null, + "createdTime": "2026-02-02 03:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:25", + "echoMap": {}, + "alarmNo": "1593542934", + "alarmDate": "1769974283958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132279151581218", + "createdBy": null, + "createdTime": "2026-02-02 03:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:22", + "echoMap": {}, + "alarmNo": "1593542933", + "alarmDate": "1769974280352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614484", + "createdBy": null, + "createdTime": "2026-02-02 03:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:18", + "echoMap": {}, + "alarmNo": "1593542932", + "alarmDate": "1769973736856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614188", + "createdBy": null, + "createdTime": "2026-02-02 03:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:08", + "echoMap": {}, + "alarmNo": "1593542931", + "alarmDate": "1769973727040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614073", + "createdBy": null, + "createdTime": "2026-02-02 03:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:04", + "echoMap": {}, + "alarmNo": "1593542930", + "alarmDate": "1769973723432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132274856614066", + "createdBy": null, + "createdTime": "2026-02-02 03:22:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:04", + "echoMap": {}, + "alarmNo": "1593542929", + "alarmDate": "1769973723290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132270561647444", + "createdBy": null, + "createdTime": "2026-02-02 03:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:53", + "echoMap": {}, + "alarmNo": "1593542928", + "alarmDate": "1769973711646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132270561646942", + "createdBy": null, + "createdTime": "2026-02-02 03:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:11", + "echoMap": {}, + "alarmNo": "1593542927", + "alarmDate": "1769973695093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132266266679347", + "createdBy": null, + "createdTime": "2026-02-02 03:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:23", + "echoMap": {}, + "alarmNo": "1593542926", + "alarmDate": "1769973681061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132261971712287", + "createdBy": null, + "createdTime": "2026-02-02 03:12:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:12", + "echoMap": {}, + "alarmNo": "1593542925", + "alarmDate": "1769973125962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132261971712239", + "createdBy": null, + "createdTime": "2026-02-02 03:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:05", + "echoMap": {}, + "alarmNo": "1593542924", + "alarmDate": "1769973124340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132261971712030", + "createdBy": null, + "createdTime": "2026-02-02 03:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:58", + "echoMap": {}, + "alarmNo": "1593542923", + "alarmDate": "1769973117201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132257676745471", + "createdBy": null, + "createdTime": "2026-02-02 03:11:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:54", + "echoMap": {}, + "alarmNo": "1593542922", + "alarmDate": "1769973107800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132257676745256", + "createdBy": null, + "createdTime": "2026-02-02 03:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:42", + "echoMap": {}, + "alarmNo": "1593542921", + "alarmDate": "1769973100511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132249086810518", + "createdBy": null, + "createdTime": "2026-02-02 03:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:11", + "echoMap": {}, + "alarmNo": "1593542920", + "alarmDate": "1769972530369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843740", + "createdBy": null, + "createdTime": "2026-02-02 03:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:55", + "echoMap": {}, + "alarmNo": "1593542919", + "alarmDate": "1769972514236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843539", + "createdBy": null, + "createdTime": "2026-02-02 03:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:36", + "echoMap": {}, + "alarmNo": "1593542918", + "alarmDate": "1769972507571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843405", + "createdBy": null, + "createdTime": "2026-02-02 03:01:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:44", + "echoMap": {}, + "alarmNo": "1593542917", + "alarmDate": "1769972503126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791843104", + "createdBy": null, + "createdTime": "2026-02-02 03:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:34", + "echoMap": {}, + "alarmNo": "1593542916", + "alarmDate": "1769972493278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132244791842981", + "createdBy": null, + "createdTime": "2026-02-02 03:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:31", + "echoMap": {}, + "alarmNo": "1593542915", + "alarmDate": "1769972489763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908895", + "createdBy": null, + "createdTime": "2026-02-02 02:52:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:36", + "echoMap": {}, + "alarmNo": "1593542914", + "alarmDate": "1769971938372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908667", + "createdBy": null, + "createdTime": "2026-02-02 02:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:12", + "echoMap": {}, + "alarmNo": "1593542913", + "alarmDate": "1769971930615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908363", + "createdBy": null, + "createdTime": "2026-02-02 02:52:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:06", + "echoMap": {}, + "alarmNo": "1593542912", + "alarmDate": "1769971920256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132236201908256", + "createdBy": null, + "createdTime": "2026-02-02 02:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:58", + "echoMap": {}, + "alarmNo": "1593542911", + "alarmDate": "1769971916759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132231906941930", + "createdBy": null, + "createdTime": "2026-02-02 02:51:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:56", + "echoMap": {}, + "alarmNo": "1593542910", + "alarmDate": "1769971915006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132231906940935", + "createdBy": null, + "createdTime": "2026-02-02 02:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:24", + "echoMap": {}, + "alarmNo": "1593542909", + "alarmDate": "1769971882669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132223317006814", + "createdBy": null, + "createdTime": "2026-02-02 02:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:13", + "echoMap": {}, + "alarmNo": "1593542908", + "alarmDate": "1769971331498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132223317006690", + "createdBy": null, + "createdTime": "2026-02-02 02:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:08", + "echoMap": {}, + "alarmNo": "1593542907", + "alarmDate": "1769971327366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132219022040063", + "createdBy": null, + "createdTime": "2026-02-02 02:41:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:57", + "echoMap": {}, + "alarmNo": "1593542906", + "alarmDate": "1769971315662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132219022039680", + "createdBy": null, + "createdTime": "2026-02-02 02:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:48", + "echoMap": {}, + "alarmNo": "1593542905", + "alarmDate": "1769971303034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132219022039122", + "createdBy": null, + "createdTime": "2026-02-02 02:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:31", + "echoMap": {}, + "alarmNo": "1593542904", + "alarmDate": "1769971284963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104990", + "createdBy": null, + "createdTime": "2026-02-02 02:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:15", + "echoMap": {}, + "alarmNo": "1593542903", + "alarmDate": "1769970734353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104970", + "createdBy": null, + "createdTime": "2026-02-02 02:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:20", + "echoMap": {}, + "alarmNo": "1593542902", + "alarmDate": "1769970733861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104938", + "createdBy": null, + "createdTime": "2026-02-02 02:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:27", + "echoMap": {}, + "alarmNo": "1593542901", + "alarmDate": "1769970732828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132210432104640", + "createdBy": null, + "createdTime": "2026-02-02 02:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:03", + "echoMap": {}, + "alarmNo": "1593542900", + "alarmDate": "1769970722245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137138043", + "createdBy": null, + "createdTime": "2026-02-02 02:31:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:53", + "echoMap": {}, + "alarmNo": "1593542899", + "alarmDate": "1769970711541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137137958", + "createdBy": null, + "createdTime": "2026-02-02 02:31:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:50", + "echoMap": {}, + "alarmNo": "1593542898", + "alarmDate": "1769970708829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137137483", + "createdBy": null, + "createdTime": "2026-02-02 02:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:34", + "echoMap": {}, + "alarmNo": "1593542897", + "alarmDate": "1769970693291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132206137137334", + "createdBy": null, + "createdTime": "2026-02-02 02:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:30", + "echoMap": {}, + "alarmNo": "1593542896", + "alarmDate": "1769970688966", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132197547203135", + "createdBy": null, + "createdTime": "2026-02-02 02:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:18", + "echoMap": {}, + "alarmNo": "1593542895", + "alarmDate": "1769970136717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132197547202936", + "createdBy": null, + "createdTime": "2026-02-02 02:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:11", + "echoMap": {}, + "alarmNo": "1593542894", + "alarmDate": "1769970130166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252236221", + "createdBy": null, + "createdTime": "2026-02-02 02:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:01", + "echoMap": {}, + "alarmNo": "1593542893", + "alarmDate": "1769970115600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252236168", + "createdBy": null, + "createdTime": "2026-02-02 02:21:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:55", + "echoMap": {}, + "alarmNo": "1593542892", + "alarmDate": "1769970113832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252235680", + "createdBy": null, + "createdTime": "2026-02-02 02:21:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:43", + "echoMap": {}, + "alarmNo": "1593542891", + "alarmDate": "1769970097448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132193252235430", + "createdBy": null, + "createdTime": "2026-02-02 02:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:31", + "echoMap": {}, + "alarmNo": "1593542890", + "alarmDate": "1769970089609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132188957268006", + "createdBy": null, + "createdTime": "2026-02-02 02:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:47", + "echoMap": {}, + "alarmNo": "1593542889", + "alarmDate": "1769970080920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132188957267997", + "createdBy": null, + "createdTime": "2026-02-02 02:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:25", + "echoMap": {}, + "alarmNo": "1593542888", + "alarmDate": "1769970080540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132188957267989", + "createdBy": null, + "createdTime": "2026-02-02 02:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:01", + "echoMap": {}, + "alarmNo": "1593542887", + "alarmDate": "1769970080350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132184662301458", + "createdBy": null, + "createdTime": "2026-02-02 02:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:33", + "echoMap": {}, + "alarmNo": "1593542886", + "alarmDate": "1769969540552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132184662301115", + "createdBy": null, + "createdTime": "2026-02-02 02:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:14", + "echoMap": {}, + "alarmNo": "1593542885", + "alarmDate": "1769969528325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132180367334028", + "createdBy": null, + "createdTime": "2026-02-02 02:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:43", + "echoMap": {}, + "alarmNo": "1593542884", + "alarmDate": "1769969501840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132180367333624", + "createdBy": null, + "createdTime": "2026-02-02 02:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:31", + "echoMap": {}, + "alarmNo": "1593542883", + "alarmDate": "1769969489606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777399464", + "createdBy": null, + "createdTime": "2026-02-02 02:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:12", + "echoMap": {}, + "alarmNo": "1593542882", + "alarmDate": "1769968930637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777399416", + "createdBy": null, + "createdTime": "2026-02-02 02:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:56", + "echoMap": {}, + "alarmNo": "1593542881", + "alarmDate": "1769968929043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777399411", + "createdBy": null, + "createdTime": "2026-02-02 02:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:10", + "echoMap": {}, + "alarmNo": "1593542880", + "alarmDate": "1769968928986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132171777398879", + "createdBy": null, + "createdTime": "2026-02-02 02:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:57", + "echoMap": {}, + "alarmNo": "1593542879", + "alarmDate": "1769968910949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432386", + "createdBy": null, + "createdTime": "2026-02-02 02:01:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:44", + "echoMap": {}, + "alarmNo": "1593542878", + "alarmDate": "1769968903509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432145", + "createdBy": null, + "createdTime": "2026-02-02 02:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:37", + "echoMap": {}, + "alarmNo": "1593542877", + "alarmDate": "1769968895513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432133", + "createdBy": null, + "createdTime": "2026-02-02 02:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:36", + "echoMap": {}, + "alarmNo": "1593542876", + "alarmDate": "1769968895137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132167482432058", + "createdBy": null, + "createdTime": "2026-02-02 02:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:39", + "echoMap": {}, + "alarmNo": "1593542875", + "alarmDate": "1769968892920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132158892496914", + "createdBy": null, + "createdTime": "2026-02-02 01:51:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:47", + "echoMap": {}, + "alarmNo": "1593542874", + "alarmDate": "1769968305924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597530513", + "createdBy": null, + "createdTime": "2026-02-02 01:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:43", + "echoMap": {}, + "alarmNo": "1593542873", + "alarmDate": "1769968301811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597530486", + "createdBy": null, + "createdTime": "2026-02-02 01:51:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:42", + "echoMap": {}, + "alarmNo": "1593542872", + "alarmDate": "1769968300985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597530261", + "createdBy": null, + "createdTime": "2026-02-02 01:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:09", + "echoMap": {}, + "alarmNo": "1593542871", + "alarmDate": "1769968293677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597529869", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:18", + "echoMap": {}, + "alarmNo": "1593542870", + "alarmDate": "1769968280623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132154597529868", + "createdBy": null, + "createdTime": "2026-02-02 01:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:22", + "echoMap": {}, + "alarmNo": "1593542869", + "alarmDate": "1769968280581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595647", + "createdBy": null, + "createdTime": "2026-02-02 01:42:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:09", + "echoMap": {}, + "alarmNo": "1593542868", + "alarmDate": "1769967723496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595571", + "createdBy": null, + "createdTime": "2026-02-02 01:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:02", + "echoMap": {}, + "alarmNo": "1593542867", + "alarmDate": "1769967720958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595207", + "createdBy": null, + "createdTime": "2026-02-02 01:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:50", + "echoMap": {}, + "alarmNo": "1593542866", + "alarmDate": "1769967708728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132146007595105", + "createdBy": null, + "createdTime": "2026-02-02 01:41:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:51", + "echoMap": {}, + "alarmNo": "1593542865", + "alarmDate": "1769967705299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132141712628552", + "createdBy": null, + "createdTime": "2026-02-02 01:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:36", + "echoMap": {}, + "alarmNo": "1593542864", + "alarmDate": "1769967695362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132141712628541", + "createdBy": null, + "createdTime": "2026-02-02 01:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:36", + "echoMap": {}, + "alarmNo": "1593542863", + "alarmDate": "1769967695073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693781", + "createdBy": null, + "createdTime": "2026-02-02 01:32:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:52", + "echoMap": {}, + "alarmNo": "1593542862", + "alarmDate": "1769967123091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693734", + "createdBy": null, + "createdTime": "2026-02-02 01:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:03", + "echoMap": {}, + "alarmNo": "1593542861", + "alarmDate": "1769967121628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693232", + "createdBy": null, + "createdTime": "2026-02-02 01:31:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:33", + "echoMap": {}, + "alarmNo": "1593542860", + "alarmDate": "1769967106120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132133122693138", + "createdBy": null, + "createdTime": "2026-02-02 01:31:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:44", + "echoMap": {}, + "alarmNo": "1593542859", + "alarmDate": "1769967103213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132128827726308", + "createdBy": null, + "createdTime": "2026-02-02 01:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:41", + "echoMap": {}, + "alarmNo": "1593542858", + "alarmDate": "1769967086801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237792095", + "createdBy": null, + "createdTime": "2026-02-02 01:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:34", + "echoMap": {}, + "alarmNo": "1593542857", + "alarmDate": "1769966536914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791549", + "createdBy": null, + "createdTime": "2026-02-02 01:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:05", + "echoMap": {}, + "alarmNo": "1593542856", + "alarmDate": "1769966518967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791513", + "createdBy": null, + "createdTime": "2026-02-02 01:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:59", + "echoMap": {}, + "alarmNo": "1593542855", + "alarmDate": "1769966517935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791274", + "createdBy": null, + "createdTime": "2026-02-02 01:21:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:51", + "echoMap": {}, + "alarmNo": "1593542854", + "alarmDate": "1769966510049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132120237791237", + "createdBy": null, + "createdTime": "2026-02-02 01:21:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:50", + "echoMap": {}, + "alarmNo": "1593542853", + "alarmDate": "1769966508990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132115942824571", + "createdBy": null, + "createdTime": "2026-02-02 01:21:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:37", + "echoMap": {}, + "alarmNo": "1593542852", + "alarmDate": "1769966496350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132115942824291", + "createdBy": null, + "createdTime": "2026-02-02 01:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:29", + "echoMap": {}, + "alarmNo": "1593542851", + "alarmDate": "1769966488266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132111647856652", + "createdBy": null, + "createdTime": "2026-02-02 01:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:20", + "echoMap": {}, + "alarmNo": "1593542850", + "alarmDate": "1769965939151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889866", + "createdBy": null, + "createdTime": "2026-02-02 01:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:08", + "echoMap": {}, + "alarmNo": "1593542849", + "alarmDate": "1769965927048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889612", + "createdBy": null, + "createdTime": "2026-02-02 01:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:47", + "echoMap": {}, + "alarmNo": "1593542848", + "alarmDate": "1769965918613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889534", + "createdBy": null, + "createdTime": "2026-02-02 01:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:57", + "echoMap": {}, + "alarmNo": "1593542847", + "alarmDate": "1769965916218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889511", + "createdBy": null, + "createdTime": "2026-02-02 01:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:57", + "echoMap": {}, + "alarmNo": "1593542846", + "alarmDate": "1769965915469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132107352889497", + "createdBy": null, + "createdTime": "2026-02-02 01:11:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:08", + "echoMap": {}, + "alarmNo": "1593542845", + "alarmDate": "1769965915135", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922786", + "createdBy": null, + "createdTime": "2026-02-02 01:11:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:47", + "echoMap": {}, + "alarmNo": "1593542844", + "alarmDate": "1769965900629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922405", + "createdBy": null, + "createdTime": "2026-02-02 01:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:30", + "echoMap": {}, + "alarmNo": "1593542843", + "alarmDate": "1769965888874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922289", + "createdBy": null, + "createdTime": "2026-02-02 01:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:03", + "echoMap": {}, + "alarmNo": "1593542842", + "alarmDate": "1769965885468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132103057922226", + "createdBy": null, + "createdTime": "2026-02-02 01:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:29", + "echoMap": {}, + "alarmNo": "1593542841", + "alarmDate": "1769965883491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988397", + "createdBy": null, + "createdTime": "2026-02-02 01:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:25", + "echoMap": {}, + "alarmNo": "1593542840", + "alarmDate": "1769965338365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988149", + "createdBy": null, + "createdTime": "2026-02-02 01:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:14", + "echoMap": {}, + "alarmNo": "1593542839", + "alarmDate": "1769965331825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988110", + "createdBy": null, + "createdTime": "2026-02-02 01:02:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:49", + "echoMap": {}, + "alarmNo": "1593542838", + "alarmDate": "1769965330888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988032", + "createdBy": null, + "createdTime": "2026-02-02 01:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:09", + "echoMap": {}, + "alarmNo": "1593542837", + "alarmDate": "1769965328667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060091", + "deviceName": "[312](10)南京东6#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988008", + "createdBy": null, + "createdTime": "2026-02-02 01:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:08", + "echoMap": {}, + "alarmNo": "1593542836", + "alarmDate": "1769965328149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060042", + "deviceName": "[406](10)南京东3#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467988006", + "createdBy": null, + "createdTime": "2026-02-02 01:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:08", + "echoMap": {}, + "alarmNo": "1593542835", + "alarmDate": "1769965328119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060032", + "deviceName": "[351](10)南京东10-2换乘入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987965", + "createdBy": null, + "createdTime": "2026-02-02 01:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:07", + "echoMap": {}, + "alarmNo": "1593542834", + "alarmDate": "1769965326867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060119", + "deviceName": "[106](10)南京东上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987958", + "createdBy": null, + "createdTime": "2026-02-02 01:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:19", + "echoMap": {}, + "alarmNo": "1593542833", + "alarmDate": "1769965326555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060031", + "deviceName": "[350](10)南京东10-2换乘入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987903", + "createdBy": null, + "createdTime": "2026-02-02 01:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:29", + "echoMap": {}, + "alarmNo": "1593542832", + "alarmDate": "1769965324889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987897", + "createdBy": null, + "createdTime": "2026-02-02 01:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:41", + "echoMap": {}, + "alarmNo": "1593542831", + "alarmDate": "1769965324621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987894", + "createdBy": null, + "createdTime": "2026-02-02 01:02:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:03", + "echoMap": {}, + "alarmNo": "1593542830", + "alarmDate": "1769965324461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987847", + "createdBy": null, + "createdTime": "2026-02-02 01:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:03", + "echoMap": {}, + "alarmNo": "1593542829", + "alarmDate": "1769965322841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060128", + "deviceName": "[104](10)南京东上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987737", + "createdBy": null, + "createdTime": "2026-02-02 01:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:28", + "echoMap": {}, + "alarmNo": "1593542828", + "alarmDate": "1769965318110", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987716", + "createdBy": null, + "createdTime": "2026-02-02 01:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:08", + "echoMap": {}, + "alarmNo": "1593542827", + "alarmDate": "1769965317182", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987681", + "createdBy": null, + "createdTime": "2026-02-02 01:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542826", + "alarmDate": "1769965315934", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060071", + "deviceName": "[308](10)南京东5#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987643", + "createdBy": null, + "createdTime": "2026-02-02 01:01:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:54", + "echoMap": {}, + "alarmNo": "1593542825", + "alarmDate": "1769965314536", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987634", + "createdBy": null, + "createdTime": "2026-02-02 01:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542824", + "alarmDate": "1769965314268", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060077", + "deviceName": "[402](10)南京东2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987529", + "createdBy": null, + "createdTime": "2026-02-02 01:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:18", + "echoMap": {}, + "alarmNo": "1593542823", + "alarmDate": "1769965311239", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132094467987492", + "createdBy": null, + "createdTime": "2026-02-02 01:01:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:51", + "echoMap": {}, + "alarmNo": "1593542822", + "alarmDate": "1769965310356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132090173021137", + "createdBy": null, + "createdTime": "2026-02-02 01:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542821", + "alarmDate": "1769965308185", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132090173020876", + "createdBy": null, + "createdTime": "2026-02-02 01:01:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:41", + "echoMap": {}, + "alarmNo": "1593542820", + "alarmDate": "1769965299559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132090173020341", + "createdBy": null, + "createdTime": "2026-02-02 01:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:23", + "echoMap": {}, + "alarmNo": "1593542819", + "alarmDate": "1769965282306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583086187", + "createdBy": null, + "createdTime": "2026-02-02 00:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:12", + "echoMap": {}, + "alarmNo": "1593542818", + "alarmDate": "1769964731047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085794", + "createdBy": null, + "createdTime": "2026-02-02 00:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:59", + "echoMap": {}, + "alarmNo": "1593542817", + "alarmDate": "1769964718157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085726", + "createdBy": null, + "createdTime": "2026-02-02 00:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:50", + "echoMap": {}, + "alarmNo": "1593542816", + "alarmDate": "1769964716087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085724", + "createdBy": null, + "createdTime": "2026-02-02 00:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:57", + "echoMap": {}, + "alarmNo": "1593542815", + "alarmDate": "1769964716054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085659", + "createdBy": null, + "createdTime": "2026-02-02 00:51:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:11", + "echoMap": {}, + "alarmNo": "1593542814", + "alarmDate": "1769964714067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132081583085616", + "createdBy": null, + "createdTime": "2026-02-02 00:51:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:54", + "echoMap": {}, + "alarmNo": "1593542813", + "alarmDate": "1769964712634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288119126", + "createdBy": null, + "createdTime": "2026-02-02 00:51:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:47", + "echoMap": {}, + "alarmNo": "1593542812", + "alarmDate": "1769964705477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118843", + "createdBy": null, + "createdTime": "2026-02-02 00:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:42", + "echoMap": {}, + "alarmNo": "1593542811", + "alarmDate": "1769964695949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118757", + "createdBy": null, + "createdTime": "2026-02-02 00:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:34", + "echoMap": {}, + "alarmNo": "1593542810", + "alarmDate": "1769964693319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118450", + "createdBy": null, + "createdTime": "2026-02-02 00:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1593542809", + "alarmDate": "1769964683554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118424", + "createdBy": null, + "createdTime": "2026-02-02 00:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1593542808", + "alarmDate": "1769964682827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132077288118373", + "createdBy": null, + "createdTime": "2026-02-02 00:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:24", + "echoMap": {}, + "alarmNo": "1593542807", + "alarmDate": "1769964680899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403217376", + "createdBy": null, + "createdTime": "2026-02-02 00:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:16", + "echoMap": {}, + "alarmNo": "1593542806", + "alarmDate": "1769964135285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403217349", + "createdBy": null, + "createdTime": "2026-02-02 00:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:16", + "echoMap": {}, + "alarmNo": "1593542805", + "alarmDate": "1769964134718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403217113", + "createdBy": null, + "createdTime": "2026-02-02 00:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:12", + "echoMap": {}, + "alarmNo": "1593542804", + "alarmDate": "1769964126771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403216612", + "createdBy": null, + "createdTime": "2026-02-02 00:41:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:56", + "echoMap": {}, + "alarmNo": "1593542803", + "alarmDate": "1769964109838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132064403216492", + "createdBy": null, + "createdTime": "2026-02-02 00:41:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:47", + "echoMap": {}, + "alarmNo": "1593542802", + "alarmDate": "1769964106023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132060108249849", + "createdBy": null, + "createdTime": "2026-02-02 00:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:35", + "echoMap": {}, + "alarmNo": "1593542801", + "alarmDate": "1769964094179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060068", + "deviceName": "[211](10)南京东5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518315129", + "createdBy": null, + "createdTime": "2026-02-02 00:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:55", + "echoMap": {}, + "alarmNo": "1593542800", + "alarmDate": "1769963526419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518314869", + "createdBy": null, + "createdTime": "2026-02-02 00:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:29", + "echoMap": {}, + "alarmNo": "1593542799", + "alarmDate": "1769963517737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518314854", + "createdBy": null, + "createdTime": "2026-02-02 00:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:58", + "echoMap": {}, + "alarmNo": "1593542798", + "alarmDate": "1769963517450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132051518314585", + "createdBy": null, + "createdTime": "2026-02-02 00:31:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:54", + "echoMap": {}, + "alarmNo": "1593542797", + "alarmDate": "1769963508482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132047223347824", + "createdBy": null, + "createdTime": "2026-02-02 00:31:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:33", + "echoMap": {}, + "alarmNo": "1593542796", + "alarmDate": "1769963492412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132042928379921", + "createdBy": null, + "createdTime": "2026-02-02 00:22:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:36", + "echoMap": {}, + "alarmNo": "1593542795", + "alarmDate": "1769962939167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445999", + "createdBy": null, + "createdTime": "2026-02-02 00:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:08", + "echoMap": {}, + "alarmNo": "1593542794", + "alarmDate": "1769962926661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445922", + "createdBy": null, + "createdTime": "2026-02-02 00:22:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:05", + "echoMap": {}, + "alarmNo": "1593542793", + "alarmDate": "1769962924174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445533", + "createdBy": null, + "createdTime": "2026-02-02 00:21:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:53", + "echoMap": {}, + "alarmNo": "1593542792", + "alarmDate": "1769962911542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132034338445524", + "createdBy": null, + "createdTime": "2026-02-02 00:21:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:52", + "echoMap": {}, + "alarmNo": "1593542791", + "alarmDate": "1769962911256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060089", + "deviceName": "[201](10)南京东厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478987", + "createdBy": null, + "createdTime": "2026-02-02 00:21:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:44", + "echoMap": {}, + "alarmNo": "1593542790", + "alarmDate": "1769962902705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060125", + "deviceName": "[207](10)南京东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478929", + "createdBy": null, + "createdTime": "2026-02-02 00:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:42", + "echoMap": {}, + "alarmNo": "1593542789", + "alarmDate": "1769962900936", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060025", + "deviceName": "[205](10)南京东厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478412", + "createdBy": null, + "createdTime": "2026-02-02 00:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:25", + "echoMap": {}, + "alarmNo": "1593542788", + "alarmDate": "1769962884237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060038", + "deviceName": "[204](10)南京东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132030043478307", + "createdBy": null, + "createdTime": "2026-02-02 00:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542787", + "alarmDate": "1769962879871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060035", + "deviceName": "[405](10)南京东3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132025748510820", + "createdBy": null, + "createdTime": "2026-02-02 00:12:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:39", + "echoMap": {}, + "alarmNo": "1593542786", + "alarmDate": "1769962335879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132025748510789", + "createdBy": null, + "createdTime": "2026-02-02 00:12:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:52", + "echoMap": {}, + "alarmNo": "1593542785", + "alarmDate": "1769962334927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132021453544067", + "createdBy": null, + "createdTime": "2026-02-02 00:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:07", + "echoMap": {}, + "alarmNo": "1593542784", + "alarmDate": "1769962322016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132021453544039", + "createdBy": null, + "createdTime": "2026-02-02 00:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:02", + "echoMap": {}, + "alarmNo": "1593542783", + "alarmDate": "1769962321170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060074", + "deviceName": "[601](10)南京东车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132021453543532", + "createdBy": null, + "createdTime": "2026-02-02 00:11:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:50", + "echoMap": {}, + "alarmNo": "1593542782", + "alarmDate": "1769962303994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132017158576557", + "createdBy": null, + "createdTime": "2026-02-02 00:11:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:32", + "echoMap": {}, + "alarmNo": "1593542781", + "alarmDate": "1769962280804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060069", + "deviceName": "[309](10)南京东5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132017158576475", + "createdBy": null, + "createdTime": "2026-02-02 00:08:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:34", + "echoMap": {}, + "alarmNo": "1593542780", + "alarmDate": "1769962112536", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1016040007", + "deviceName": "H3C前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1016" + }, + { + "id": "723132008568642415", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:53", + "echoMap": {}, + "alarmNo": "1593542779", + "alarmDate": "1769961729425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060029", + "deviceName": "[355](10)南京东10-2换乘出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642407", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:52", + "echoMap": {}, + "alarmNo": "1593542778", + "alarmDate": "1769961729252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060101", + "deviceName": "[313](10)南京东6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642387", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542777", + "alarmDate": "1769961728950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060119", + "deviceName": "[106](10)南京东上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642382", + "createdBy": null, + "createdTime": "2026-02-02 00:02:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:27", + "echoMap": {}, + "alarmNo": "1593542776", + "alarmDate": "1769961728799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060015", + "deviceName": "[303](10)南京东2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642336", + "createdBy": null, + "createdTime": "2026-02-02 00:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542775", + "alarmDate": "1769961727523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060042", + "deviceName": "[406](10)南京东3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642335", + "createdBy": null, + "createdTime": "2026-02-02 00:02:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:53", + "echoMap": {}, + "alarmNo": "1593542774", + "alarmDate": "1769961727522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060129", + "deviceName": "[112](10)南京东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642317", + "createdBy": null, + "createdTime": "2026-02-02 00:02:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:51", + "echoMap": {}, + "alarmNo": "1593542773", + "alarmDate": "1769961727088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060091", + "deviceName": "[312](10)南京东6#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642290", + "createdBy": null, + "createdTime": "2026-02-02 00:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542772", + "alarmDate": "1769961726320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642267", + "createdBy": null, + "createdTime": "2026-02-02 00:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:54", + "echoMap": {}, + "alarmNo": "1593542771", + "alarmDate": "1769961725769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060031", + "deviceName": "[350](10)南京东10-2换乘入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642254", + "createdBy": null, + "createdTime": "2026-02-02 00:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:57", + "echoMap": {}, + "alarmNo": "1593542770", + "alarmDate": "1769961725351", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642250", + "createdBy": null, + "createdTime": "2026-02-02 00:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:56", + "echoMap": {}, + "alarmNo": "1593542769", + "alarmDate": "1769961725217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060032", + "deviceName": "[351](10)南京东10-2换乘入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642231", + "createdBy": null, + "createdTime": "2026-02-02 00:02:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:06", + "echoMap": {}, + "alarmNo": "1593542768", + "alarmDate": "1769961724846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060123", + "deviceName": "[210](10)南京东下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642173", + "createdBy": null, + "createdTime": "2026-02-02 00:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:50", + "echoMap": {}, + "alarmNo": "1593542767", + "alarmDate": "1769961723014", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060070", + "deviceName": "[311](10)南京东5#口楼梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642026", + "createdBy": null, + "createdTime": "2026-02-02 00:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:05", + "echoMap": {}, + "alarmNo": "1593542766", + "alarmDate": "1769961718910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060095", + "deviceName": "[317](10)南京东6#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568642020", + "createdBy": null, + "createdTime": "2026-02-02 00:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:55", + "echoMap": {}, + "alarmNo": "1593542765", + "alarmDate": "1769961718773", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060071", + "deviceName": "[308](10)南京东5#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641996", + "createdBy": null, + "createdTime": "2026-02-02 00:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:04", + "echoMap": {}, + "alarmNo": "1593542764", + "alarmDate": "1769961718036", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060086", + "deviceName": "[410](10)南京东5#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641974", + "createdBy": null, + "createdTime": "2026-02-02 00:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:02", + "echoMap": {}, + "alarmNo": "1593542763", + "alarmDate": "1769961717393", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060075", + "deviceName": "[404](10)南京东2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641934", + "createdBy": null, + "createdTime": "2026-02-02 00:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:53", + "echoMap": {}, + "alarmNo": "1593542762", + "alarmDate": "1769961716192", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060077", + "deviceName": "[402](10)南京东2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641908", + "createdBy": null, + "createdTime": "2026-02-02 00:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:15", + "echoMap": {}, + "alarmNo": "1593542761", + "alarmDate": "1769961715503", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060152", + "deviceName": "[123](10)南京东5#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641855", + "createdBy": null, + "createdTime": "2026-02-02 00:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:29", + "echoMap": {}, + "alarmNo": "1593542760", + "alarmDate": "1769961714142", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060014", + "deviceName": "[417](10)南京东7#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641840", + "createdBy": null, + "createdTime": "2026-02-02 00:01:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:54", + "echoMap": {}, + "alarmNo": "1593542759", + "alarmDate": "1769961713920", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060001", + "deviceName": "[411](10)南京东5#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641812", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:04", + "echoMap": {}, + "alarmNo": "1593542758", + "alarmDate": "1769961713228", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060054", + "deviceName": "[409](10)南京东5#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641807", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:06", + "echoMap": {}, + "alarmNo": "1593542757", + "alarmDate": "1769961713101", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060154", + "deviceName": "[125](10)南京东6#闸入", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641804", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:25", + "echoMap": {}, + "alarmNo": "1593542756", + "alarmDate": "1769961713076", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060026", + "deviceName": "[408](10)南京东4#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641799", + "createdBy": null, + "createdTime": "2026-02-02 00:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:38", + "echoMap": {}, + "alarmNo": "1593542755", + "alarmDate": "1769961713047", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060013", + "deviceName": "[416](10)南京东7#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641646", + "createdBy": null, + "createdTime": "2026-02-02 00:01:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:49", + "echoMap": {}, + "alarmNo": "1593542754", + "alarmDate": "1769961709068", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060079", + "deviceName": "[403](10)南京东2#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641623", + "createdBy": null, + "createdTime": "2026-02-02 00:01:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:54", + "echoMap": {}, + "alarmNo": "1593542753", + "alarmDate": "1769961708485", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060043", + "deviceName": "[407](10)南京东3#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132008568641562", + "createdBy": null, + "createdTime": "2026-02-02 00:01:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:48", + "echoMap": {}, + "alarmNo": "1593542752", + "alarmDate": "1769961706668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060065", + "deviceName": "[203](10)南京东厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132004273674882", + "createdBy": null, + "createdTime": "2026-02-02 00:01:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:34", + "echoMap": {}, + "alarmNo": "1593542751", + "alarmDate": "1769961693064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060124", + "deviceName": "[208](10)南京东上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132004273674570", + "createdBy": null, + "createdTime": "2026-02-02 00:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:24", + "echoMap": {}, + "alarmNo": "1593542750", + "alarmDate": "1769961682627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060115", + "deviceName": "[209](10)南京东下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + }, + { + "id": "723132004273674510", + "createdBy": null, + "createdTime": "2026-02-02 00:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:20", + "echoMap": {}, + "alarmNo": "1593542749", + "alarmDate": "1769961678819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1016060002", + "deviceName": "[206](10)南京东厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1016" + } + ] + }, + "1017": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112715575393426", + "createdBy": null, + "createdTime": "2026-02-02 00:15:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:49", + "echoMap": {}, + "alarmNo": "1610080223", + "alarmDate": "1769962542895", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112724165327895", + "createdBy": null, + "createdTime": "2026-02-02 00:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:32", + "echoMap": {}, + "alarmNo": "1610080224", + "alarmDate": "1769962572965", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112741345197078", + "createdBy": null, + "createdTime": "2026-02-02 00:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:50", + "echoMap": {}, + "alarmNo": "1610080225", + "alarmDate": "1769963144285", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112741345197159", + "createdBy": null, + "createdTime": "2026-02-02 00:26:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:02", + "echoMap": {}, + "alarmNo": "1610080226", + "alarmDate": "1769963162394", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112831539510275", + "createdBy": null, + "createdTime": "2026-02-02 01:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:18", + "echoMap": {}, + "alarmNo": "1610080227", + "alarmDate": "1769965758504", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112990453300303", + "createdBy": null, + "createdTime": "2026-02-02 02:27:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:18", + "echoMap": {}, + "alarmNo": "1610080229", + "alarmDate": "1769970438489", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113106417417230", + "createdBy": null, + "createdTime": "2026-02-02 03:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:13:18", + "echoMap": {}, + "alarmNo": "1610080230", + "alarmDate": "1769973138491", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113119302319172", + "createdBy": null, + "createdTime": "2026-02-02 03:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:45", + "echoMap": {}, + "alarmNo": "1610080231", + "alarmDate": "1769973916706", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060070", + "deviceName": "[335](10)天潼6#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113205201665370", + "createdBy": null, + "createdTime": "2026-02-02 05:25:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:02", + "echoMap": {}, + "alarmNo": "1610080232", + "alarmDate": "1769981137126", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113213791599815", + "createdBy": null, + "createdTime": "2026-02-02 05:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:28", + "echoMap": {}, + "alarmNo": "1610080233", + "alarmDate": "1769982327228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060015", + "deviceName": "[208](10)天潼5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113213791599922", + "createdBy": null, + "createdTime": "2026-02-02 05:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:40", + "echoMap": {}, + "alarmNo": "1610080234", + "alarmDate": "1769982916718", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113218086566945", + "createdBy": null, + "createdTime": "2026-02-02 05:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:53", + "echoMap": {}, + "alarmNo": "1610080235", + "alarmDate": "1769982946750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060105", + "deviceName": "[347](10)天潼10-12换乘楼梯1-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113222381534361", + "createdBy": null, + "createdTime": "2026-02-02 06:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:04", + "echoMap": {}, + "alarmNo": "1610080236", + "alarmDate": "1769983562829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060015", + "deviceName": "[208](10)天潼5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113222381534479", + "createdBy": null, + "createdTime": "2026-02-02 06:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:17", + "echoMap": {}, + "alarmNo": "1610080237", + "alarmDate": "1769984115981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060015", + "deviceName": "[208](10)天潼5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113226676501552", + "createdBy": null, + "createdTime": "2026-02-02 06:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:03", + "echoMap": {}, + "alarmNo": "1610080238", + "alarmDate": "1769984714820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113230971468862", + "createdBy": null, + "createdTime": "2026-02-02 06:25:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:20", + "echoMap": {}, + "alarmNo": "1610080239", + "alarmDate": "1769984749288", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113239561403568", + "createdBy": null, + "createdTime": "2026-02-02 06:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:03", + "echoMap": {}, + "alarmNo": "1610080240", + "alarmDate": "1769985969793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113239561403578", + "createdBy": null, + "createdTime": "2026-02-02 06:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:26", + "echoMap": {}, + "alarmNo": "1610080241", + "alarmDate": "1769985973661", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113248151338111", + "createdBy": null, + "createdTime": "2026-02-02 07:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:31", + "echoMap": {}, + "alarmNo": "1610080242", + "alarmDate": "1769987116477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113248151338162", + "createdBy": null, + "createdTime": "2026-02-02 07:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:02", + "echoMap": {}, + "alarmNo": "1610080243", + "alarmDate": "1769987143637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113256741272758", + "createdBy": null, + "createdTime": "2026-02-02 07:25:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:19", + "echoMap": {}, + "alarmNo": "1610080244", + "alarmDate": "1769988316014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113265331207215", + "createdBy": null, + "createdTime": "2026-02-02 07:35:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:00", + "echoMap": {}, + "alarmNo": "1610080245", + "alarmDate": "1769988930160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113273921141761", + "createdBy": null, + "createdTime": "2026-02-02 07:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:05", + "echoMap": {}, + "alarmNo": "1610080246", + "alarmDate": "1769989566573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113273921142045", + "createdBy": null, + "createdTime": "2026-02-02 07:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:58", + "echoMap": {}, + "alarmNo": "1610080247", + "alarmDate": "1769990163293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113282511076629", + "createdBy": null, + "createdTime": "2026-02-02 08:15:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:44", + "echoMap": {}, + "alarmNo": "1610080248", + "alarmDate": "1769991317279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113299690945710", + "createdBy": null, + "createdTime": "2026-02-02 08:36:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:32", + "echoMap": {}, + "alarmNo": "1610080249", + "alarmDate": "1769992561785", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113299690945900", + "createdBy": null, + "createdTime": "2026-02-02 08:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:33", + "echoMap": {}, + "alarmNo": "1610080250", + "alarmDate": "1769993126233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060105", + "deviceName": "[347](10)天潼10-12换乘楼梯1-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880134", + "createdBy": null, + "createdTime": "2026-02-02 08:45:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:11", + "echoMap": {}, + "alarmNo": "1610080251", + "alarmDate": "1769993158731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880290", + "createdBy": null, + "createdTime": "2026-02-02 08:55:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:43", + "echoMap": {}, + "alarmNo": "1610080252", + "alarmDate": "1769993715396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880406", + "createdBy": null, + "createdTime": "2026-02-02 08:55:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:29", + "echoMap": {}, + "alarmNo": "1610080253", + "alarmDate": "1769993755525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880463", + "createdBy": null, + "createdTime": "2026-02-02 08:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:26", + "echoMap": {}, + "alarmNo": "1610080254", + "alarmDate": "1769993774148", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113316870814810", + "createdBy": null, + "createdTime": "2026-02-02 09:05:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:36", + "echoMap": {}, + "alarmNo": "1610080255", + "alarmDate": "1769994330477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113316870814926", + "createdBy": null, + "createdTime": "2026-02-02 09:05:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:52", + "echoMap": {}, + "alarmNo": "1610080256", + "alarmDate": "1769994357684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113321165782048", + "createdBy": null, + "createdTime": "2026-02-02 09:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:51", + "echoMap": {}, + "alarmNo": "1610080257", + "alarmDate": "1769994915678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113321165782075", + "createdBy": null, + "createdTime": "2026-02-02 09:15:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:28", + "echoMap": {}, + "alarmNo": "1610080258", + "alarmDate": "1769994922335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113325460749419", + "createdBy": null, + "createdTime": "2026-02-02 09:15:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:01", + "echoMap": {}, + "alarmNo": "1610080259", + "alarmDate": "1769994954716", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060017", + "deviceName": "[319](10)天潼5#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113325460749464", + "createdBy": null, + "createdTime": "2026-02-02 09:16:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:15", + "echoMap": {}, + "alarmNo": "1610080260", + "alarmDate": "1769994968777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113325460749474", + "createdBy": null, + "createdTime": "2026-02-02 09:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:34", + "echoMap": {}, + "alarmNo": "1610080261", + "alarmDate": "1769994969932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113334050683947", + "createdBy": null, + "createdTime": "2026-02-02 09:25:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:30", + "echoMap": {}, + "alarmNo": "1610080262", + "alarmDate": "1769995545930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113334050683965", + "createdBy": null, + "createdTime": "2026-02-02 09:25:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:57", + "echoMap": {}, + "alarmNo": "1610080263", + "alarmDate": "1769995550931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113338345651254", + "createdBy": null, + "createdTime": "2026-02-02 09:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:52", + "echoMap": {}, + "alarmNo": "1610080264", + "alarmDate": "1769996146006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113342640618503", + "createdBy": null, + "createdTime": "2026-02-02 09:35:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:36", + "echoMap": {}, + "alarmNo": "1610080265", + "alarmDate": "1769996148282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113342640618751", + "createdBy": null, + "createdTime": "2026-02-02 09:45:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:18", + "echoMap": {}, + "alarmNo": "1610080266", + "alarmDate": "1769996714954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113342640618761", + "createdBy": null, + "createdTime": "2026-02-02 09:45:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:41", + "echoMap": {}, + "alarmNo": "1610080267", + "alarmDate": "1769996717165", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113351230553221", + "createdBy": null, + "createdTime": "2026-02-02 09:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:06", + "echoMap": {}, + "alarmNo": "1610080268", + "alarmDate": "1769996760307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113351230553225", + "createdBy": null, + "createdTime": "2026-02-02 09:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:07", + "echoMap": {}, + "alarmNo": "1610080269", + "alarmDate": "1769996760632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487693", + "createdBy": null, + "createdTime": "2026-02-02 09:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1610080270", + "alarmDate": "1769997354378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487705", + "createdBy": null, + "createdTime": "2026-02-02 09:55:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1610080271", + "alarmDate": "1769997359046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487722", + "createdBy": null, + "createdTime": "2026-02-02 09:56:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:52", + "echoMap": {}, + "alarmNo": "1610080272", + "alarmDate": "1769997363718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487751", + "createdBy": null, + "createdTime": "2026-02-02 09:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:32", + "echoMap": {}, + "alarmNo": "1610080273", + "alarmDate": "1769997373782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487871", + "createdBy": null, + "createdTime": "2026-02-02 10:04:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:18", + "echoMap": {}, + "alarmNo": "1610080274", + "alarmDate": "1769997858560", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487964", + "createdBy": null, + "createdTime": "2026-02-02 10:05:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:55", + "echoMap": {}, + "alarmNo": "1610080275", + "alarmDate": "1769997948213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487989", + "createdBy": null, + "createdTime": "2026-02-02 10:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:05", + "echoMap": {}, + "alarmNo": "1610080276", + "alarmDate": "1769997958783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113364115454979", + "createdBy": null, + "createdTime": "2026-02-02 10:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:10", + "echoMap": {}, + "alarmNo": "1610080277", + "alarmDate": "1769997963901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422350", + "createdBy": null, + "createdTime": "2026-02-02 10:15:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:19", + "echoMap": {}, + "alarmNo": "1610080278", + "alarmDate": "1769998516901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422386", + "createdBy": null, + "createdTime": "2026-02-02 10:15:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:37", + "echoMap": {}, + "alarmNo": "1610080279", + "alarmDate": "1769998529894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422395", + "createdBy": null, + "createdTime": "2026-02-02 10:15:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:45", + "echoMap": {}, + "alarmNo": "1610080280", + "alarmDate": "1769998531904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422449", + "createdBy": null, + "createdTime": "2026-02-02 10:15:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:56", + "echoMap": {}, + "alarmNo": "1610080281", + "alarmDate": "1769998548916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356864", + "createdBy": null, + "createdTime": "2026-02-02 10:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:21", + "echoMap": {}, + "alarmNo": "1610080282", + "alarmDate": "1769999115021", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356870", + "createdBy": null, + "createdTime": "2026-02-02 10:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:59", + "echoMap": {}, + "alarmNo": "1610080283", + "alarmDate": "1769999117264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356934", + "createdBy": null, + "createdTime": "2026-02-02 10:25:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:52", + "echoMap": {}, + "alarmNo": "1610080284", + "alarmDate": "1769999140297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356951", + "createdBy": null, + "createdTime": "2026-02-02 10:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:38", + "echoMap": {}, + "alarmNo": "1610080285", + "alarmDate": "1769999143725", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356978", + "createdBy": null, + "createdTime": "2026-02-02 10:25:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:54", + "echoMap": {}, + "alarmNo": "1610080286", + "alarmDate": "1769999148446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000357083", + "createdBy": null, + "createdTime": "2026-02-02 10:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:16", + "echoMap": {}, + "alarmNo": "1610080287", + "alarmDate": "1769999171298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000357092", + "createdBy": null, + "createdTime": "2026-02-02 10:26:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:31", + "echoMap": {}, + "alarmNo": "1610080288", + "alarmDate": "1769999172516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113385590291514", + "createdBy": null, + "createdTime": "2026-02-02 10:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:36", + "echoMap": {}, + "alarmNo": "1610080289", + "alarmDate": "1769999728948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113407065127940", + "createdBy": null, + "createdTime": "2026-02-02 10:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:18", + "echoMap": {}, + "alarmNo": "1610080290", + "alarmDate": "1770000365981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113407065127946", + "createdBy": null, + "createdTime": "2026-02-02 10:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:22", + "echoMap": {}, + "alarmNo": "1610080291", + "alarmDate": "1770000369747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113419950029933", + "createdBy": null, + "createdTime": "2026-02-02 11:05:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:52", + "echoMap": {}, + "alarmNo": "1610080292", + "alarmDate": "1770001517105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113441424866325", + "createdBy": null, + "createdTime": "2026-02-02 11:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:11", + "echoMap": {}, + "alarmNo": "1610080293", + "alarmDate": "1770002716804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113441424866328", + "createdBy": null, + "createdTime": "2026-02-02 11:25:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:22", + "echoMap": {}, + "alarmNo": "1610080294", + "alarmDate": "1770002717558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113445719833779", + "createdBy": null, + "createdTime": "2026-02-02 11:35:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:19", + "echoMap": {}, + "alarmNo": "1610080295", + "alarmDate": "1770003314799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113445719833783", + "createdBy": null, + "createdTime": "2026-02-02 11:35:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:28", + "echoMap": {}, + "alarmNo": "1610080296", + "alarmDate": "1770003316041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113450014800918", + "createdBy": null, + "createdTime": "2026-02-02 11:35:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:53", + "echoMap": {}, + "alarmNo": "1610080297", + "alarmDate": "1770003340050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113454309768301", + "createdBy": null, + "createdTime": "2026-02-02 11:45:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:21", + "echoMap": {}, + "alarmNo": "1610080298", + "alarmDate": "1770003915450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113454309768306", + "createdBy": null, + "createdTime": "2026-02-02 11:45:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:23", + "echoMap": {}, + "alarmNo": "1610080299", + "alarmDate": "1770003917380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060017", + "deviceName": "[319](10)天潼5#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113454309768323", + "createdBy": null, + "createdTime": "2026-02-02 11:45:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:59", + "echoMap": {}, + "alarmNo": "1610080300", + "alarmDate": "1770003922314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113458604735550", + "createdBy": null, + "createdTime": "2026-02-02 11:45:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:02", + "echoMap": {}, + "alarmNo": "1610080301", + "alarmDate": "1770003956179", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113462899702805", + "createdBy": null, + "createdTime": "2026-02-02 11:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:00", + "echoMap": {}, + "alarmNo": "1610080302", + "alarmDate": "1770003971473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113467194670082", + "createdBy": null, + "createdTime": "2026-02-02 11:55:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:38", + "echoMap": {}, + "alarmNo": "1610080303", + "alarmDate": "1770004532435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113467194670128", + "createdBy": null, + "createdTime": "2026-02-02 11:55:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:55", + "echoMap": {}, + "alarmNo": "1610080304", + "alarmDate": "1770004544433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113471489637392", + "createdBy": null, + "createdTime": "2026-02-02 11:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:08", + "echoMap": {}, + "alarmNo": "1610080305", + "alarmDate": "1770004550381", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113471489637448", + "createdBy": null, + "createdTime": "2026-02-02 11:56:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:53", + "echoMap": {}, + "alarmNo": "1610080306", + "alarmDate": "1770004570792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113471489637475", + "createdBy": null, + "createdTime": "2026-02-02 11:57:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:18", + "echoMap": {}, + "alarmNo": "1610080307", + "alarmDate": "1770004638523", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113475784604696", + "createdBy": null, + "createdTime": "2026-02-02 12:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:20", + "echoMap": {}, + "alarmNo": "1610080308", + "alarmDate": "1770005115533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113475784604712", + "createdBy": null, + "createdTime": "2026-02-02 12:05:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:25", + "echoMap": {}, + "alarmNo": "1610080309", + "alarmDate": "1770005119235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079571968", + "createdBy": null, + "createdTime": "2026-02-02 12:05:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:28", + "echoMap": {}, + "alarmNo": "1610080310", + "alarmDate": "1770005122379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079571982", + "createdBy": null, + "createdTime": "2026-02-02 12:05:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:52", + "echoMap": {}, + "alarmNo": "1610080311", + "alarmDate": "1770005140287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572004", + "createdBy": null, + "createdTime": "2026-02-02 12:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:02", + "echoMap": {}, + "alarmNo": "1610080312", + "alarmDate": "1770005156200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572013", + "createdBy": null, + "createdTime": "2026-02-02 12:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:29", + "echoMap": {}, + "alarmNo": "1610080313", + "alarmDate": "1770005164436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572016", + "createdBy": null, + "createdTime": "2026-02-02 12:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:41", + "echoMap": {}, + "alarmNo": "1610080314", + "alarmDate": "1770005164935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572027", + "createdBy": null, + "createdTime": "2026-02-02 12:06:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:15", + "echoMap": {}, + "alarmNo": "1610080315", + "alarmDate": "1770005168671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113488669506566", + "createdBy": null, + "createdTime": "2026-02-02 12:15:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:34", + "echoMap": {}, + "alarmNo": "1610080316", + "alarmDate": "1770005738840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113488669506585", + "createdBy": null, + "createdTime": "2026-02-02 12:15:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:59", + "echoMap": {}, + "alarmNo": "1610080317", + "alarmDate": "1770005752047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113488669506600", + "createdBy": null, + "createdTime": "2026-02-02 12:15:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:47", + "echoMap": {}, + "alarmNo": "1610080318", + "alarmDate": "1770005758633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113492964473882", + "createdBy": null, + "createdTime": "2026-02-02 12:25:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:28", + "echoMap": {}, + "alarmNo": "1610080319", + "alarmDate": "1770006322323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113497259441164", + "createdBy": null, + "createdTime": "2026-02-02 12:25:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:34", + "echoMap": {}, + "alarmNo": "1610080320", + "alarmDate": "1770006358848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113497259441167", + "createdBy": null, + "createdTime": "2026-02-02 12:25:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:11", + "echoMap": {}, + "alarmNo": "1610080321", + "alarmDate": "1770006359490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375854", + "createdBy": null, + "createdTime": "2026-02-02 12:45:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:27", + "echoMap": {}, + "alarmNo": "1610080322", + "alarmDate": "1770007520513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375871", + "createdBy": null, + "createdTime": "2026-02-02 12:45:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:48", + "echoMap": {}, + "alarmNo": "1610080323", + "alarmDate": "1770007528809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375893", + "createdBy": null, + "createdTime": "2026-02-02 12:45:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:48", + "echoMap": {}, + "alarmNo": "1610080324", + "alarmDate": "1770007542069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375905", + "createdBy": null, + "createdTime": "2026-02-02 12:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:52", + "echoMap": {}, + "alarmNo": "1610080325", + "alarmDate": "1770007546202", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375923", + "createdBy": null, + "createdTime": "2026-02-02 12:45:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:46", + "echoMap": {}, + "alarmNo": "1610080326", + "alarmDate": "1770007552358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375929", + "createdBy": null, + "createdTime": "2026-02-02 12:45:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:03", + "echoMap": {}, + "alarmNo": "1610080327", + "alarmDate": "1770007556655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113514439310395", + "createdBy": null, + "createdTime": "2026-02-02 12:55:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:35", + "echoMap": {}, + "alarmNo": "1610080328", + "alarmDate": "1770008123033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113514439310423", + "createdBy": null, + "createdTime": "2026-02-02 12:55:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:29", + "echoMap": {}, + "alarmNo": "1610080329", + "alarmDate": "1770008158537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113518734277670", + "createdBy": null, + "createdTime": "2026-02-02 13:05:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:17", + "echoMap": {}, + "alarmNo": "1610080330", + "alarmDate": "1770008715440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113518734277673", + "createdBy": null, + "createdTime": "2026-02-02 13:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:29", + "echoMap": {}, + "alarmNo": "1610080331", + "alarmDate": "1770008716299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113518734277684", + "createdBy": null, + "createdTime": "2026-02-02 13:05:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:24", + "echoMap": {}, + "alarmNo": "1610080332", + "alarmDate": "1770008718068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060008", + "deviceName": "[312](10)天潼5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029244947", + "createdBy": null, + "createdTime": "2026-02-02 13:05:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:45", + "echoMap": {}, + "alarmNo": "1610080333", + "alarmDate": "1770008732767", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029244972", + "createdBy": null, + "createdTime": "2026-02-02 13:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:09", + "echoMap": {}, + "alarmNo": "1610080334", + "alarmDate": "1770008744107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029244981", + "createdBy": null, + "createdTime": "2026-02-02 13:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:29", + "echoMap": {}, + "alarmNo": "1610080335", + "alarmDate": "1770008746659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029245005", + "createdBy": null, + "createdTime": "2026-02-02 13:05:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:00", + "echoMap": {}, + "alarmNo": "1610080336", + "alarmDate": "1770008753573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113527324212268", + "createdBy": null, + "createdTime": "2026-02-02 13:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:33", + "echoMap": {}, + "alarmNo": "1610080337", + "alarmDate": "1770009315300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113531619179556", + "createdBy": null, + "createdTime": "2026-02-02 13:15:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:43", + "echoMap": {}, + "alarmNo": "1610080338", + "alarmDate": "1770009335757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113531619179566", + "createdBy": null, + "createdTime": "2026-02-02 13:15:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:23", + "echoMap": {}, + "alarmNo": "1610080339", + "alarmDate": "1770009345368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113535914146818", + "createdBy": null, + "createdTime": "2026-02-02 13:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:23", + "echoMap": {}, + "alarmNo": "1610080340", + "alarmDate": "1770009916817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113535914146822", + "createdBy": null, + "createdTime": "2026-02-02 13:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:47", + "echoMap": {}, + "alarmNo": "1610080341", + "alarmDate": "1770009917067", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114139", + "createdBy": null, + "createdTime": "2026-02-02 13:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:53", + "echoMap": {}, + "alarmNo": "1610080342", + "alarmDate": "1770009946593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114143", + "createdBy": null, + "createdTime": "2026-02-02 13:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:05", + "echoMap": {}, + "alarmNo": "1610080343", + "alarmDate": "1770009947092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114158", + "createdBy": null, + "createdTime": "2026-02-02 13:25:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:00", + "echoMap": {}, + "alarmNo": "1610080344", + "alarmDate": "1770009953873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114187", + "createdBy": null, + "createdTime": "2026-02-02 13:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:22", + "echoMap": {}, + "alarmNo": "1610080345", + "alarmDate": "1770009965223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114189", + "createdBy": null, + "createdTime": "2026-02-02 13:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:24", + "echoMap": {}, + "alarmNo": "1610080346", + "alarmDate": "1770009965632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113544504081416", + "createdBy": null, + "createdTime": "2026-02-02 13:35:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:58", + "echoMap": {}, + "alarmNo": "1610080347", + "alarmDate": "1770010534210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113544504081458", + "createdBy": null, + "createdTime": "2026-02-02 13:36:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:28", + "echoMap": {}, + "alarmNo": "1610080348", + "alarmDate": "1770010570325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048816", + "createdBy": null, + "createdTime": "2026-02-02 13:45:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:36", + "echoMap": {}, + "alarmNo": "1610080349", + "alarmDate": "1770011115030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048820", + "createdBy": null, + "createdTime": "2026-02-02 13:45:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:22", + "echoMap": {}, + "alarmNo": "1610080350", + "alarmDate": "1770011116316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048866", + "createdBy": null, + "createdTime": "2026-02-02 13:45:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:04", + "echoMap": {}, + "alarmNo": "1610080351", + "alarmDate": "1770011140409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048875", + "createdBy": null, + "createdTime": "2026-02-02 13:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:23", + "echoMap": {}, + "alarmNo": "1610080352", + "alarmDate": "1770011146479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048880", + "createdBy": null, + "createdTime": "2026-02-02 13:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:19", + "echoMap": {}, + "alarmNo": "1610080353", + "alarmDate": "1770011148137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048915", + "createdBy": null, + "createdTime": "2026-02-02 13:45:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:05", + "echoMap": {}, + "alarmNo": "1610080354", + "alarmDate": "1770011158508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048920", + "createdBy": null, + "createdTime": "2026-02-02 13:45:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:05", + "echoMap": {}, + "alarmNo": "1610080355", + "alarmDate": "1770011159335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983369", + "createdBy": null, + "createdTime": "2026-02-02 13:55:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:17", + "echoMap": {}, + "alarmNo": "1610080356", + "alarmDate": "1770011715627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983375", + "createdBy": null, + "createdTime": "2026-02-02 13:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:35", + "echoMap": {}, + "alarmNo": "1610080357", + "alarmDate": "1770011716579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983435", + "createdBy": null, + "createdTime": "2026-02-02 13:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:05", + "echoMap": {}, + "alarmNo": "1610080358", + "alarmDate": "1770011746657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983436", + "createdBy": null, + "createdTime": "2026-02-02 13:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:29", + "echoMap": {}, + "alarmNo": "1610080359", + "alarmDate": "1770011746773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983461", + "createdBy": null, + "createdTime": "2026-02-02 13:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:00", + "echoMap": {}, + "alarmNo": "1610080360", + "alarmDate": "1770011753557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978917988", + "createdBy": null, + "createdTime": "2026-02-02 14:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:19", + "echoMap": {}, + "alarmNo": "1610080361", + "alarmDate": "1770012315525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978917995", + "createdBy": null, + "createdTime": "2026-02-02 14:05:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:21", + "echoMap": {}, + "alarmNo": "1610080362", + "alarmDate": "1770012316802", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918023", + "createdBy": null, + "createdTime": "2026-02-02 14:05:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:31", + "echoMap": {}, + "alarmNo": "1610080363", + "alarmDate": "1770012324717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918037", + "createdBy": null, + "createdTime": "2026-02-02 14:05:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:45", + "echoMap": {}, + "alarmNo": "1610080364", + "alarmDate": "1770012331494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918043", + "createdBy": null, + "createdTime": "2026-02-02 14:05:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:52", + "echoMap": {}, + "alarmNo": "1610080365", + "alarmDate": "1770012333896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918070", + "createdBy": null, + "createdTime": "2026-02-02 14:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:53", + "echoMap": {}, + "alarmNo": "1610080366", + "alarmDate": "1770012346853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918088", + "createdBy": null, + "createdTime": "2026-02-02 14:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:02", + "echoMap": {}, + "alarmNo": "1610080367", + "alarmDate": "1770012355869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918105", + "createdBy": null, + "createdTime": "2026-02-02 14:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:10", + "echoMap": {}, + "alarmNo": "1610080368", + "alarmDate": "1770012363905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113570273885188", + "createdBy": null, + "createdTime": "2026-02-02 14:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:11", + "echoMap": {}, + "alarmNo": "1610080369", + "alarmDate": "1770012365022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852558", + "createdBy": null, + "createdTime": "2026-02-02 14:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:16", + "echoMap": {}, + "alarmNo": "1610080370", + "alarmDate": "1770012914733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852592", + "createdBy": null, + "createdTime": "2026-02-02 14:15:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:40", + "echoMap": {}, + "alarmNo": "1610080371", + "alarmDate": "1770012927743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852651", + "createdBy": null, + "createdTime": "2026-02-02 14:15:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:14", + "echoMap": {}, + "alarmNo": "1610080372", + "alarmDate": "1770012950088", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852658", + "createdBy": null, + "createdTime": "2026-02-02 14:15:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:18", + "echoMap": {}, + "alarmNo": "1610080373", + "alarmDate": "1770012951854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852703", + "createdBy": null, + "createdTime": "2026-02-02 14:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:17", + "echoMap": {}, + "alarmNo": "1610080374", + "alarmDate": "1770012965168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113578863819793", + "createdBy": null, + "createdTime": "2026-02-02 14:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:30", + "echoMap": {}, + "alarmNo": "1610080375", + "alarmDate": "1770012970236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113583158787170", + "createdBy": null, + "createdTime": "2026-02-02 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "alarmNo": "1610080376", + "alarmDate": "1770013529237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113583158787181", + "createdBy": null, + "createdTime": "2026-02-02 14:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:00", + "echoMap": {}, + "alarmNo": "1610080377", + "alarmDate": "1770013536064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113583158787249", + "createdBy": null, + "createdTime": "2026-02-02 14:25:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "alarmNo": "1610080378", + "alarmDate": "1770013558449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113587453754440", + "createdBy": null, + "createdTime": "2026-02-02 14:35:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:16", + "echoMap": {}, + "alarmNo": "1610080379", + "alarmDate": "1770014115698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721673", + "createdBy": null, + "createdTime": "2026-02-02 14:35:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:25", + "echoMap": {}, + "alarmNo": "1610080380", + "alarmDate": "1770014118524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721681", + "createdBy": null, + "createdTime": "2026-02-02 14:35:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:27", + "echoMap": {}, + "alarmNo": "1610080381", + "alarmDate": "1770014120552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060017", + "deviceName": "[319](10)天潼5#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721705", + "createdBy": null, + "createdTime": "2026-02-02 14:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:35", + "echoMap": {}, + "alarmNo": "1610080382", + "alarmDate": "1770014128621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721708", + "createdBy": null, + "createdTime": "2026-02-02 14:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:29", + "echoMap": {}, + "alarmNo": "1610080383", + "alarmDate": "1770014129482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721716", + "createdBy": null, + "createdTime": "2026-02-02 14:35:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:42", + "echoMap": {}, + "alarmNo": "1610080384", + "alarmDate": "1770014130333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721780", + "createdBy": null, + "createdTime": "2026-02-02 14:35:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:54", + "echoMap": {}, + "alarmNo": "1610080385", + "alarmDate": "1770014146716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721829", + "createdBy": null, + "createdTime": "2026-02-02 14:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:13", + "echoMap": {}, + "alarmNo": "1610080386", + "alarmDate": "1770014166616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721845", + "createdBy": null, + "createdTime": "2026-02-02 14:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:11", + "echoMap": {}, + "alarmNo": "1610080387", + "alarmDate": "1770014171435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [ + { + "id": "723112853014346804", + "createdBy": null, + "createdTime": "2026-02-02 01:23:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:53", + "echoMap": {}, + "alarmNo": "1610080228", + "alarmDate": "1769966635216", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1017040016", + "deviceName": "华为前端交换机15", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1017" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113591748721845", + "createdBy": null, + "createdTime": "2026-02-02 14:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:11", + "echoMap": {}, + "alarmNo": "1610080387", + "alarmDate": "1770014171435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721829", + "createdBy": null, + "createdTime": "2026-02-02 14:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:13", + "echoMap": {}, + "alarmNo": "1610080386", + "alarmDate": "1770014166616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721780", + "createdBy": null, + "createdTime": "2026-02-02 14:35:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:54", + "echoMap": {}, + "alarmNo": "1610080385", + "alarmDate": "1770014146716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721716", + "createdBy": null, + "createdTime": "2026-02-02 14:35:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:42", + "echoMap": {}, + "alarmNo": "1610080384", + "alarmDate": "1770014130333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721708", + "createdBy": null, + "createdTime": "2026-02-02 14:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:29", + "echoMap": {}, + "alarmNo": "1610080383", + "alarmDate": "1770014129482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721705", + "createdBy": null, + "createdTime": "2026-02-02 14:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:35", + "echoMap": {}, + "alarmNo": "1610080382", + "alarmDate": "1770014128621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721681", + "createdBy": null, + "createdTime": "2026-02-02 14:35:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:27", + "echoMap": {}, + "alarmNo": "1610080381", + "alarmDate": "1770014120552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060017", + "deviceName": "[319](10)天潼5#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113591748721673", + "createdBy": null, + "createdTime": "2026-02-02 14:35:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:25", + "echoMap": {}, + "alarmNo": "1610080380", + "alarmDate": "1770014118524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113587453754440", + "createdBy": null, + "createdTime": "2026-02-02 14:35:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:16", + "echoMap": {}, + "alarmNo": "1610080379", + "alarmDate": "1770014115698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113583158787249", + "createdBy": null, + "createdTime": "2026-02-02 14:25:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "alarmNo": "1610080378", + "alarmDate": "1770013558449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113583158787181", + "createdBy": null, + "createdTime": "2026-02-02 14:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:00", + "echoMap": {}, + "alarmNo": "1610080377", + "alarmDate": "1770013536064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113583158787170", + "createdBy": null, + "createdTime": "2026-02-02 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "alarmNo": "1610080376", + "alarmDate": "1770013529237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113578863819793", + "createdBy": null, + "createdTime": "2026-02-02 14:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:30", + "echoMap": {}, + "alarmNo": "1610080375", + "alarmDate": "1770012970236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852703", + "createdBy": null, + "createdTime": "2026-02-02 14:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:17", + "echoMap": {}, + "alarmNo": "1610080374", + "alarmDate": "1770012965168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852658", + "createdBy": null, + "createdTime": "2026-02-02 14:15:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:18", + "echoMap": {}, + "alarmNo": "1610080373", + "alarmDate": "1770012951854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852651", + "createdBy": null, + "createdTime": "2026-02-02 14:15:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:14", + "echoMap": {}, + "alarmNo": "1610080372", + "alarmDate": "1770012950088", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852592", + "createdBy": null, + "createdTime": "2026-02-02 14:15:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:40", + "echoMap": {}, + "alarmNo": "1610080371", + "alarmDate": "1770012927743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113574568852558", + "createdBy": null, + "createdTime": "2026-02-02 14:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:16", + "echoMap": {}, + "alarmNo": "1610080370", + "alarmDate": "1770012914733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113570273885188", + "createdBy": null, + "createdTime": "2026-02-02 14:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:11", + "echoMap": {}, + "alarmNo": "1610080369", + "alarmDate": "1770012365022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918105", + "createdBy": null, + "createdTime": "2026-02-02 14:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:10", + "echoMap": {}, + "alarmNo": "1610080368", + "alarmDate": "1770012363905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918088", + "createdBy": null, + "createdTime": "2026-02-02 14:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:02", + "echoMap": {}, + "alarmNo": "1610080367", + "alarmDate": "1770012355869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918070", + "createdBy": null, + "createdTime": "2026-02-02 14:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:53", + "echoMap": {}, + "alarmNo": "1610080366", + "alarmDate": "1770012346853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918043", + "createdBy": null, + "createdTime": "2026-02-02 14:05:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:52", + "echoMap": {}, + "alarmNo": "1610080365", + "alarmDate": "1770012333896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918037", + "createdBy": null, + "createdTime": "2026-02-02 14:05:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:45", + "echoMap": {}, + "alarmNo": "1610080364", + "alarmDate": "1770012331494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978918023", + "createdBy": null, + "createdTime": "2026-02-02 14:05:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:31", + "echoMap": {}, + "alarmNo": "1610080363", + "alarmDate": "1770012324717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978917995", + "createdBy": null, + "createdTime": "2026-02-02 14:05:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:21", + "echoMap": {}, + "alarmNo": "1610080362", + "alarmDate": "1770012316802", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113565978917988", + "createdBy": null, + "createdTime": "2026-02-02 14:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:19", + "echoMap": {}, + "alarmNo": "1610080361", + "alarmDate": "1770012315525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983461", + "createdBy": null, + "createdTime": "2026-02-02 13:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:00", + "echoMap": {}, + "alarmNo": "1610080360", + "alarmDate": "1770011753557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983436", + "createdBy": null, + "createdTime": "2026-02-02 13:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:29", + "echoMap": {}, + "alarmNo": "1610080359", + "alarmDate": "1770011746773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983435", + "createdBy": null, + "createdTime": "2026-02-02 13:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:05", + "echoMap": {}, + "alarmNo": "1610080358", + "alarmDate": "1770011746657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983375", + "createdBy": null, + "createdTime": "2026-02-02 13:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:35", + "echoMap": {}, + "alarmNo": "1610080357", + "alarmDate": "1770011716579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113557388983369", + "createdBy": null, + "createdTime": "2026-02-02 13:55:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:17", + "echoMap": {}, + "alarmNo": "1610080356", + "alarmDate": "1770011715627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048920", + "createdBy": null, + "createdTime": "2026-02-02 13:45:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:05", + "echoMap": {}, + "alarmNo": "1610080355", + "alarmDate": "1770011159335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048915", + "createdBy": null, + "createdTime": "2026-02-02 13:45:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:05", + "echoMap": {}, + "alarmNo": "1610080354", + "alarmDate": "1770011158508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048880", + "createdBy": null, + "createdTime": "2026-02-02 13:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:19", + "echoMap": {}, + "alarmNo": "1610080353", + "alarmDate": "1770011148137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048875", + "createdBy": null, + "createdTime": "2026-02-02 13:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:23", + "echoMap": {}, + "alarmNo": "1610080352", + "alarmDate": "1770011146479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048866", + "createdBy": null, + "createdTime": "2026-02-02 13:45:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:04", + "echoMap": {}, + "alarmNo": "1610080351", + "alarmDate": "1770011140409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048820", + "createdBy": null, + "createdTime": "2026-02-02 13:45:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:22", + "echoMap": {}, + "alarmNo": "1610080350", + "alarmDate": "1770011116316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113548799048816", + "createdBy": null, + "createdTime": "2026-02-02 13:45:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:36", + "echoMap": {}, + "alarmNo": "1610080349", + "alarmDate": "1770011115030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113544504081458", + "createdBy": null, + "createdTime": "2026-02-02 13:36:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:28", + "echoMap": {}, + "alarmNo": "1610080348", + "alarmDate": "1770010570325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113544504081416", + "createdBy": null, + "createdTime": "2026-02-02 13:35:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:58", + "echoMap": {}, + "alarmNo": "1610080347", + "alarmDate": "1770010534210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114189", + "createdBy": null, + "createdTime": "2026-02-02 13:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:24", + "echoMap": {}, + "alarmNo": "1610080346", + "alarmDate": "1770009965632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114187", + "createdBy": null, + "createdTime": "2026-02-02 13:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:22", + "echoMap": {}, + "alarmNo": "1610080345", + "alarmDate": "1770009965223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114158", + "createdBy": null, + "createdTime": "2026-02-02 13:25:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:00", + "echoMap": {}, + "alarmNo": "1610080344", + "alarmDate": "1770009953873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114143", + "createdBy": null, + "createdTime": "2026-02-02 13:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:05", + "echoMap": {}, + "alarmNo": "1610080343", + "alarmDate": "1770009947092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113540209114139", + "createdBy": null, + "createdTime": "2026-02-02 13:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:53", + "echoMap": {}, + "alarmNo": "1610080342", + "alarmDate": "1770009946593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113535914146822", + "createdBy": null, + "createdTime": "2026-02-02 13:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:47", + "echoMap": {}, + "alarmNo": "1610080341", + "alarmDate": "1770009917067", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113535914146818", + "createdBy": null, + "createdTime": "2026-02-02 13:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:23", + "echoMap": {}, + "alarmNo": "1610080340", + "alarmDate": "1770009916817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113531619179566", + "createdBy": null, + "createdTime": "2026-02-02 13:15:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:23", + "echoMap": {}, + "alarmNo": "1610080339", + "alarmDate": "1770009345368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113531619179556", + "createdBy": null, + "createdTime": "2026-02-02 13:15:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:43", + "echoMap": {}, + "alarmNo": "1610080338", + "alarmDate": "1770009335757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113527324212268", + "createdBy": null, + "createdTime": "2026-02-02 13:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:33", + "echoMap": {}, + "alarmNo": "1610080337", + "alarmDate": "1770009315300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029245005", + "createdBy": null, + "createdTime": "2026-02-02 13:05:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:00", + "echoMap": {}, + "alarmNo": "1610080336", + "alarmDate": "1770008753573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029244981", + "createdBy": null, + "createdTime": "2026-02-02 13:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:29", + "echoMap": {}, + "alarmNo": "1610080335", + "alarmDate": "1770008746659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029244972", + "createdBy": null, + "createdTime": "2026-02-02 13:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:09", + "echoMap": {}, + "alarmNo": "1610080334", + "alarmDate": "1770008744107", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113523029244947", + "createdBy": null, + "createdTime": "2026-02-02 13:05:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:45", + "echoMap": {}, + "alarmNo": "1610080333", + "alarmDate": "1770008732767", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113518734277684", + "createdBy": null, + "createdTime": "2026-02-02 13:05:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:24", + "echoMap": {}, + "alarmNo": "1610080332", + "alarmDate": "1770008718068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060008", + "deviceName": "[312](10)天潼5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113518734277673", + "createdBy": null, + "createdTime": "2026-02-02 13:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:29", + "echoMap": {}, + "alarmNo": "1610080331", + "alarmDate": "1770008716299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113518734277670", + "createdBy": null, + "createdTime": "2026-02-02 13:05:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:17", + "echoMap": {}, + "alarmNo": "1610080330", + "alarmDate": "1770008715440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113514439310423", + "createdBy": null, + "createdTime": "2026-02-02 12:55:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:29", + "echoMap": {}, + "alarmNo": "1610080329", + "alarmDate": "1770008158537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113514439310395", + "createdBy": null, + "createdTime": "2026-02-02 12:55:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:35", + "echoMap": {}, + "alarmNo": "1610080328", + "alarmDate": "1770008123033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375929", + "createdBy": null, + "createdTime": "2026-02-02 12:45:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:03", + "echoMap": {}, + "alarmNo": "1610080327", + "alarmDate": "1770007556655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375923", + "createdBy": null, + "createdTime": "2026-02-02 12:45:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:46", + "echoMap": {}, + "alarmNo": "1610080326", + "alarmDate": "1770007552358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375905", + "createdBy": null, + "createdTime": "2026-02-02 12:45:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:52", + "echoMap": {}, + "alarmNo": "1610080325", + "alarmDate": "1770007546202", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375893", + "createdBy": null, + "createdTime": "2026-02-02 12:45:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:48", + "echoMap": {}, + "alarmNo": "1610080324", + "alarmDate": "1770007542069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375871", + "createdBy": null, + "createdTime": "2026-02-02 12:45:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:48", + "echoMap": {}, + "alarmNo": "1610080323", + "alarmDate": "1770007528809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113505849375854", + "createdBy": null, + "createdTime": "2026-02-02 12:45:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:27", + "echoMap": {}, + "alarmNo": "1610080322", + "alarmDate": "1770007520513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113497259441167", + "createdBy": null, + "createdTime": "2026-02-02 12:25:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:11", + "echoMap": {}, + "alarmNo": "1610080321", + "alarmDate": "1770006359490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113497259441164", + "createdBy": null, + "createdTime": "2026-02-02 12:25:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:34", + "echoMap": {}, + "alarmNo": "1610080320", + "alarmDate": "1770006358848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113492964473882", + "createdBy": null, + "createdTime": "2026-02-02 12:25:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:28", + "echoMap": {}, + "alarmNo": "1610080319", + "alarmDate": "1770006322323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113488669506600", + "createdBy": null, + "createdTime": "2026-02-02 12:15:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:47", + "echoMap": {}, + "alarmNo": "1610080318", + "alarmDate": "1770005758633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113488669506585", + "createdBy": null, + "createdTime": "2026-02-02 12:15:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:59", + "echoMap": {}, + "alarmNo": "1610080317", + "alarmDate": "1770005752047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113488669506566", + "createdBy": null, + "createdTime": "2026-02-02 12:15:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:34", + "echoMap": {}, + "alarmNo": "1610080316", + "alarmDate": "1770005738840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572027", + "createdBy": null, + "createdTime": "2026-02-02 12:06:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:15", + "echoMap": {}, + "alarmNo": "1610080315", + "alarmDate": "1770005168671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572016", + "createdBy": null, + "createdTime": "2026-02-02 12:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:41", + "echoMap": {}, + "alarmNo": "1610080314", + "alarmDate": "1770005164935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572013", + "createdBy": null, + "createdTime": "2026-02-02 12:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:29", + "echoMap": {}, + "alarmNo": "1610080313", + "alarmDate": "1770005164436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079572004", + "createdBy": null, + "createdTime": "2026-02-02 12:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:02", + "echoMap": {}, + "alarmNo": "1610080312", + "alarmDate": "1770005156200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079571982", + "createdBy": null, + "createdTime": "2026-02-02 12:05:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:52", + "echoMap": {}, + "alarmNo": "1610080311", + "alarmDate": "1770005140287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113480079571968", + "createdBy": null, + "createdTime": "2026-02-02 12:05:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:28", + "echoMap": {}, + "alarmNo": "1610080310", + "alarmDate": "1770005122379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113475784604712", + "createdBy": null, + "createdTime": "2026-02-02 12:05:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:25", + "echoMap": {}, + "alarmNo": "1610080309", + "alarmDate": "1770005119235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113475784604696", + "createdBy": null, + "createdTime": "2026-02-02 12:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:20", + "echoMap": {}, + "alarmNo": "1610080308", + "alarmDate": "1770005115533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113471489637475", + "createdBy": null, + "createdTime": "2026-02-02 11:57:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:18", + "echoMap": {}, + "alarmNo": "1610080307", + "alarmDate": "1770004638523", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113471489637448", + "createdBy": null, + "createdTime": "2026-02-02 11:56:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:53", + "echoMap": {}, + "alarmNo": "1610080306", + "alarmDate": "1770004570792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113471489637392", + "createdBy": null, + "createdTime": "2026-02-02 11:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:08", + "echoMap": {}, + "alarmNo": "1610080305", + "alarmDate": "1770004550381", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113467194670128", + "createdBy": null, + "createdTime": "2026-02-02 11:55:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:55", + "echoMap": {}, + "alarmNo": "1610080304", + "alarmDate": "1770004544433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113467194670082", + "createdBy": null, + "createdTime": "2026-02-02 11:55:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:38", + "echoMap": {}, + "alarmNo": "1610080303", + "alarmDate": "1770004532435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113462899702805", + "createdBy": null, + "createdTime": "2026-02-02 11:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:00", + "echoMap": {}, + "alarmNo": "1610080302", + "alarmDate": "1770003971473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113458604735550", + "createdBy": null, + "createdTime": "2026-02-02 11:45:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:02", + "echoMap": {}, + "alarmNo": "1610080301", + "alarmDate": "1770003956179", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113454309768323", + "createdBy": null, + "createdTime": "2026-02-02 11:45:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:59", + "echoMap": {}, + "alarmNo": "1610080300", + "alarmDate": "1770003922314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113454309768306", + "createdBy": null, + "createdTime": "2026-02-02 11:45:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:23", + "echoMap": {}, + "alarmNo": "1610080299", + "alarmDate": "1770003917380", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060017", + "deviceName": "[319](10)天潼5#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113454309768301", + "createdBy": null, + "createdTime": "2026-02-02 11:45:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:21", + "echoMap": {}, + "alarmNo": "1610080298", + "alarmDate": "1770003915450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113450014800918", + "createdBy": null, + "createdTime": "2026-02-02 11:35:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:53", + "echoMap": {}, + "alarmNo": "1610080297", + "alarmDate": "1770003340050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113445719833783", + "createdBy": null, + "createdTime": "2026-02-02 11:35:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:28", + "echoMap": {}, + "alarmNo": "1610080296", + "alarmDate": "1770003316041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113445719833779", + "createdBy": null, + "createdTime": "2026-02-02 11:35:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:19", + "echoMap": {}, + "alarmNo": "1610080295", + "alarmDate": "1770003314799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113441424866328", + "createdBy": null, + "createdTime": "2026-02-02 11:25:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:22", + "echoMap": {}, + "alarmNo": "1610080294", + "alarmDate": "1770002717558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113441424866325", + "createdBy": null, + "createdTime": "2026-02-02 11:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:11", + "echoMap": {}, + "alarmNo": "1610080293", + "alarmDate": "1770002716804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113419950029933", + "createdBy": null, + "createdTime": "2026-02-02 11:05:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:52", + "echoMap": {}, + "alarmNo": "1610080292", + "alarmDate": "1770001517105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113407065127946", + "createdBy": null, + "createdTime": "2026-02-02 10:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:22", + "echoMap": {}, + "alarmNo": "1610080291", + "alarmDate": "1770000369747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113407065127940", + "createdBy": null, + "createdTime": "2026-02-02 10:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:18", + "echoMap": {}, + "alarmNo": "1610080290", + "alarmDate": "1770000365981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113385590291514", + "createdBy": null, + "createdTime": "2026-02-02 10:35:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:36", + "echoMap": {}, + "alarmNo": "1610080289", + "alarmDate": "1769999728948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000357092", + "createdBy": null, + "createdTime": "2026-02-02 10:26:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:31", + "echoMap": {}, + "alarmNo": "1610080288", + "alarmDate": "1769999172516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000357083", + "createdBy": null, + "createdTime": "2026-02-02 10:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:16", + "echoMap": {}, + "alarmNo": "1610080287", + "alarmDate": "1769999171298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356978", + "createdBy": null, + "createdTime": "2026-02-02 10:25:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:54", + "echoMap": {}, + "alarmNo": "1610080286", + "alarmDate": "1769999148446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356951", + "createdBy": null, + "createdTime": "2026-02-02 10:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:38", + "echoMap": {}, + "alarmNo": "1610080285", + "alarmDate": "1769999143725", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356934", + "createdBy": null, + "createdTime": "2026-02-02 10:25:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:52", + "echoMap": {}, + "alarmNo": "1610080284", + "alarmDate": "1769999140297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356870", + "createdBy": null, + "createdTime": "2026-02-02 10:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:59", + "echoMap": {}, + "alarmNo": "1610080283", + "alarmDate": "1769999117264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113377000356864", + "createdBy": null, + "createdTime": "2026-02-02 10:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:21", + "echoMap": {}, + "alarmNo": "1610080282", + "alarmDate": "1769999115021", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422449", + "createdBy": null, + "createdTime": "2026-02-02 10:15:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:56", + "echoMap": {}, + "alarmNo": "1610080281", + "alarmDate": "1769998548916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422395", + "createdBy": null, + "createdTime": "2026-02-02 10:15:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:45", + "echoMap": {}, + "alarmNo": "1610080280", + "alarmDate": "1769998531904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422386", + "createdBy": null, + "createdTime": "2026-02-02 10:15:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:37", + "echoMap": {}, + "alarmNo": "1610080279", + "alarmDate": "1769998529894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113368410422350", + "createdBy": null, + "createdTime": "2026-02-02 10:15:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:19", + "echoMap": {}, + "alarmNo": "1610080278", + "alarmDate": "1769998516901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113364115454979", + "createdBy": null, + "createdTime": "2026-02-02 10:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:10", + "echoMap": {}, + "alarmNo": "1610080277", + "alarmDate": "1769997963901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487989", + "createdBy": null, + "createdTime": "2026-02-02 10:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:05", + "echoMap": {}, + "alarmNo": "1610080276", + "alarmDate": "1769997958783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487964", + "createdBy": null, + "createdTime": "2026-02-02 10:05:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:55", + "echoMap": {}, + "alarmNo": "1610080275", + "alarmDate": "1769997948213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487871", + "createdBy": null, + "createdTime": "2026-02-02 10:04:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:18", + "echoMap": {}, + "alarmNo": "1610080274", + "alarmDate": "1769997858560", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487751", + "createdBy": null, + "createdTime": "2026-02-02 09:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:32", + "echoMap": {}, + "alarmNo": "1610080273", + "alarmDate": "1769997373782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487722", + "createdBy": null, + "createdTime": "2026-02-02 09:56:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:05:52", + "echoMap": {}, + "alarmNo": "1610080272", + "alarmDate": "1769997363718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487705", + "createdBy": null, + "createdTime": "2026-02-02 09:55:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1610080271", + "alarmDate": "1769997359046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113359820487693", + "createdBy": null, + "createdTime": "2026-02-02 09:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1610080270", + "alarmDate": "1769997354378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113351230553225", + "createdBy": null, + "createdTime": "2026-02-02 09:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:07", + "echoMap": {}, + "alarmNo": "1610080269", + "alarmDate": "1769996760632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113351230553221", + "createdBy": null, + "createdTime": "2026-02-02 09:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:06", + "echoMap": {}, + "alarmNo": "1610080268", + "alarmDate": "1769996760307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113342640618761", + "createdBy": null, + "createdTime": "2026-02-02 09:45:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:41", + "echoMap": {}, + "alarmNo": "1610080267", + "alarmDate": "1769996717165", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113342640618751", + "createdBy": null, + "createdTime": "2026-02-02 09:45:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:18", + "echoMap": {}, + "alarmNo": "1610080266", + "alarmDate": "1769996714954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060018", + "deviceName": "[318](10)天潼5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113342640618503", + "createdBy": null, + "createdTime": "2026-02-02 09:35:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:36", + "echoMap": {}, + "alarmNo": "1610080265", + "alarmDate": "1769996148282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113338345651254", + "createdBy": null, + "createdTime": "2026-02-02 09:35:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:52", + "echoMap": {}, + "alarmNo": "1610080264", + "alarmDate": "1769996146006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113334050683965", + "createdBy": null, + "createdTime": "2026-02-02 09:25:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:57", + "echoMap": {}, + "alarmNo": "1610080263", + "alarmDate": "1769995550931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113334050683947", + "createdBy": null, + "createdTime": "2026-02-02 09:25:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:30", + "echoMap": {}, + "alarmNo": "1610080262", + "alarmDate": "1769995545930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113325460749474", + "createdBy": null, + "createdTime": "2026-02-02 09:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:34", + "echoMap": {}, + "alarmNo": "1610080261", + "alarmDate": "1769994969932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113325460749464", + "createdBy": null, + "createdTime": "2026-02-02 09:16:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:15", + "echoMap": {}, + "alarmNo": "1610080260", + "alarmDate": "1769994968777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113325460749419", + "createdBy": null, + "createdTime": "2026-02-02 09:15:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:01", + "echoMap": {}, + "alarmNo": "1610080259", + "alarmDate": "1769994954716", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060017", + "deviceName": "[319](10)天潼5#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113321165782075", + "createdBy": null, + "createdTime": "2026-02-02 09:15:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:28", + "echoMap": {}, + "alarmNo": "1610080258", + "alarmDate": "1769994922335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113321165782048", + "createdBy": null, + "createdTime": "2026-02-02 09:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:51", + "echoMap": {}, + "alarmNo": "1610080257", + "alarmDate": "1769994915678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113316870814926", + "createdBy": null, + "createdTime": "2026-02-02 09:05:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:52", + "echoMap": {}, + "alarmNo": "1610080256", + "alarmDate": "1769994357684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113316870814810", + "createdBy": null, + "createdTime": "2026-02-02 09:05:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:36", + "echoMap": {}, + "alarmNo": "1610080255", + "alarmDate": "1769994330477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060014", + "deviceName": "[315](10)天潼5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880463", + "createdBy": null, + "createdTime": "2026-02-02 08:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:26", + "echoMap": {}, + "alarmNo": "1610080254", + "alarmDate": "1769993774148", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880406", + "createdBy": null, + "createdTime": "2026-02-02 08:55:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:29", + "echoMap": {}, + "alarmNo": "1610080253", + "alarmDate": "1769993755525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880290", + "createdBy": null, + "createdTime": "2026-02-02 08:55:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:43", + "echoMap": {}, + "alarmNo": "1610080252", + "alarmDate": "1769993715396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060013", + "deviceName": "[316](10)天潼5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113308280880134", + "createdBy": null, + "createdTime": "2026-02-02 08:45:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:11", + "echoMap": {}, + "alarmNo": "1610080251", + "alarmDate": "1769993158731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060061", + "deviceName": "[302](10)天潼1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113299690945900", + "createdBy": null, + "createdTime": "2026-02-02 08:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:33", + "echoMap": {}, + "alarmNo": "1610080250", + "alarmDate": "1769993126233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060105", + "deviceName": "[347](10)天潼10-12换乘楼梯1-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113299690945710", + "createdBy": null, + "createdTime": "2026-02-02 08:36:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:32", + "echoMap": {}, + "alarmNo": "1610080249", + "alarmDate": "1769992561785", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113282511076629", + "createdBy": null, + "createdTime": "2026-02-02 08:15:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:44", + "echoMap": {}, + "alarmNo": "1610080248", + "alarmDate": "1769991317279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113273921142045", + "createdBy": null, + "createdTime": "2026-02-02 07:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:05:58", + "echoMap": {}, + "alarmNo": "1610080247", + "alarmDate": "1769990163293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113273921141761", + "createdBy": null, + "createdTime": "2026-02-02 07:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:05", + "echoMap": {}, + "alarmNo": "1610080246", + "alarmDate": "1769989566573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113265331207215", + "createdBy": null, + "createdTime": "2026-02-02 07:35:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:00", + "echoMap": {}, + "alarmNo": "1610080245", + "alarmDate": "1769988930160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113256741272758", + "createdBy": null, + "createdTime": "2026-02-02 07:25:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:19", + "echoMap": {}, + "alarmNo": "1610080244", + "alarmDate": "1769988316014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113248151338162", + "createdBy": null, + "createdTime": "2026-02-02 07:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:02", + "echoMap": {}, + "alarmNo": "1610080243", + "alarmDate": "1769987143637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113248151338111", + "createdBy": null, + "createdTime": "2026-02-02 07:05:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:31", + "echoMap": {}, + "alarmNo": "1610080242", + "alarmDate": "1769987116477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060056", + "deviceName": "[303](10)天潼1#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113239561403578", + "createdBy": null, + "createdTime": "2026-02-02 06:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:26", + "echoMap": {}, + "alarmNo": "1610080241", + "alarmDate": "1769985973661", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113239561403568", + "createdBy": null, + "createdTime": "2026-02-02 06:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:03", + "echoMap": {}, + "alarmNo": "1610080240", + "alarmDate": "1769985969793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113230971468862", + "createdBy": null, + "createdTime": "2026-02-02 06:25:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:20", + "echoMap": {}, + "alarmNo": "1610080239", + "alarmDate": "1769984749288", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113226676501552", + "createdBy": null, + "createdTime": "2026-02-02 06:25:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:03", + "echoMap": {}, + "alarmNo": "1610080238", + "alarmDate": "1769984714820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060011", + "deviceName": "[313](10)天潼5#口入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113222381534479", + "createdBy": null, + "createdTime": "2026-02-02 06:15:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:17", + "echoMap": {}, + "alarmNo": "1610080237", + "alarmDate": "1769984115981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060015", + "deviceName": "[208](10)天潼5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113222381534361", + "createdBy": null, + "createdTime": "2026-02-02 06:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:04", + "echoMap": {}, + "alarmNo": "1610080236", + "alarmDate": "1769983562829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060015", + "deviceName": "[208](10)天潼5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113218086566945", + "createdBy": null, + "createdTime": "2026-02-02 05:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:53", + "echoMap": {}, + "alarmNo": "1610080235", + "alarmDate": "1769982946750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060105", + "deviceName": "[347](10)天潼10-12换乘楼梯1-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113213791599922", + "createdBy": null, + "createdTime": "2026-02-02 05:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:40", + "echoMap": {}, + "alarmNo": "1610080234", + "alarmDate": "1769982916718", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060080", + "deviceName": "[326](10)天潼6#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113213791599815", + "createdBy": null, + "createdTime": "2026-02-02 05:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:28", + "echoMap": {}, + "alarmNo": "1610080233", + "alarmDate": "1769982327228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060015", + "deviceName": "[208](10)天潼5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113205201665370", + "createdBy": null, + "createdTime": "2026-02-02 05:25:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:02", + "echoMap": {}, + "alarmNo": "1610080232", + "alarmDate": "1769981137126", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060082", + "deviceName": "[328](10)天潼6#口入4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113119302319172", + "createdBy": null, + "createdTime": "2026-02-02 03:25:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:45", + "echoMap": {}, + "alarmNo": "1610080231", + "alarmDate": "1769973916706", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060070", + "deviceName": "[335](10)天潼6#口扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723113106417417230", + "createdBy": null, + "createdTime": "2026-02-02 03:12:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:13:18", + "echoMap": {}, + "alarmNo": "1610080230", + "alarmDate": "1769973138491", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112990453300303", + "createdBy": null, + "createdTime": "2026-02-02 02:27:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:18", + "echoMap": {}, + "alarmNo": "1610080229", + "alarmDate": "1769970438489", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112853014346804", + "createdBy": null, + "createdTime": "2026-02-02 01:23:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:53", + "echoMap": {}, + "alarmNo": "1610080228", + "alarmDate": "1769966635216", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1017040016", + "deviceName": "华为前端交换机15", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1017" + }, + { + "id": "723112831539510275", + "createdBy": null, + "createdTime": "2026-02-02 01:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:18", + "echoMap": {}, + "alarmNo": "1610080227", + "alarmDate": "1769965758504", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1017060084", + "deviceName": "[602](10)天潼弱电综合机房1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112741345197159", + "createdBy": null, + "createdTime": "2026-02-02 00:26:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:02", + "echoMap": {}, + "alarmNo": "1610080226", + "alarmDate": "1769963162394", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112741345197078", + "createdBy": null, + "createdTime": "2026-02-02 00:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:50", + "echoMap": {}, + "alarmNo": "1610080225", + "alarmDate": "1769963144285", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112724165327895", + "createdBy": null, + "createdTime": "2026-02-02 00:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:32", + "echoMap": {}, + "alarmNo": "1610080224", + "alarmDate": "1769962572965", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + }, + { + "id": "723112715575393426", + "createdBy": null, + "createdTime": "2026-02-02 00:15:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:49", + "echoMap": {}, + "alarmNo": "1610080223", + "alarmDate": "1769962542895", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1017060032", + "deviceName": "[405](10)天潼3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1017" + } + ] + }, + "1018": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112865899019327", + "createdBy": null, + "createdTime": "2026-02-02 00:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:11", + "echoMap": {}, + "alarmNo": "1630075755", + "alarmDate": "1769961909461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112870193986576", + "createdBy": null, + "createdTime": "2026-02-02 00:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:29", + "echoMap": {}, + "alarmNo": "1630075756", + "alarmDate": "1769961928492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112870193986587", + "createdBy": null, + "createdTime": "2026-02-02 00:05:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:48", + "echoMap": {}, + "alarmNo": "1630075757", + "alarmDate": "1769961935969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112878783921266", + "createdBy": null, + "createdTime": "2026-02-02 00:15:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:36", + "echoMap": {}, + "alarmNo": "1630075758", + "alarmDate": "1769962530242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112878783921309", + "createdBy": null, + "createdTime": "2026-02-02 00:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:00", + "echoMap": {}, + "alarmNo": "1630075759", + "alarmDate": "1769962548273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855817", + "createdBy": null, + "createdTime": "2026-02-02 00:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:17", + "echoMap": {}, + "alarmNo": "1630075760", + "alarmDate": "1769963109441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855836", + "createdBy": null, + "createdTime": "2026-02-02 00:25:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:19", + "echoMap": {}, + "alarmNo": "1630075761", + "alarmDate": "1769963117802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855859", + "createdBy": null, + "createdTime": "2026-02-02 00:25:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:35", + "echoMap": {}, + "alarmNo": "1630075762", + "alarmDate": "1769963123172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855913", + "createdBy": null, + "createdTime": "2026-02-02 00:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:48", + "echoMap": {}, + "alarmNo": "1630075763", + "alarmDate": "1769963141548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855929", + "createdBy": null, + "createdTime": "2026-02-02 00:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:22", + "echoMap": {}, + "alarmNo": "1630075764", + "alarmDate": "1769963147118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855949", + "createdBy": null, + "createdTime": "2026-02-02 00:26:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:29", + "echoMap": {}, + "alarmNo": "1630075765", + "alarmDate": "1769963159766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790411", + "createdBy": null, + "createdTime": "2026-02-02 00:35:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:27", + "echoMap": {}, + "alarmNo": "1630075766", + "alarmDate": "1769963721270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790420", + "createdBy": null, + "createdTime": "2026-02-02 00:35:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:24", + "echoMap": {}, + "alarmNo": "1630075767", + "alarmDate": "1769963723362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790435", + "createdBy": null, + "createdTime": "2026-02-02 00:35:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:47", + "echoMap": {}, + "alarmNo": "1630075768", + "alarmDate": "1769963734452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790451", + "createdBy": null, + "createdTime": "2026-02-02 00:35:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:59", + "echoMap": {}, + "alarmNo": "1630075769", + "alarmDate": "1769963752879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790461", + "createdBy": null, + "createdTime": "2026-02-02 00:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:57", + "echoMap": {}, + "alarmNo": "1630075770", + "alarmDate": "1769963758427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112900258757676", + "createdBy": null, + "createdTime": "2026-02-02 00:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:09", + "echoMap": {}, + "alarmNo": "1630075772", + "alarmDate": "1769964307541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112900258757682", + "createdBy": null, + "createdTime": "2026-02-02 00:45:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:23", + "echoMap": {}, + "alarmNo": "1630075773", + "alarmDate": "1769964311000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112904553724937", + "createdBy": null, + "createdTime": "2026-02-02 00:45:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:41", + "echoMap": {}, + "alarmNo": "1630075774", + "alarmDate": "1769964335046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112904553725138", + "createdBy": null, + "createdTime": "2026-02-02 00:55:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:20", + "echoMap": {}, + "alarmNo": "1630075775", + "alarmDate": "1769964913836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112908848692227", + "createdBy": null, + "createdTime": "2026-02-02 00:55:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:35", + "echoMap": {}, + "alarmNo": "1630075776", + "alarmDate": "1769964922431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112908848692268", + "createdBy": null, + "createdTime": "2026-02-02 00:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:52", + "echoMap": {}, + "alarmNo": "1630075777", + "alarmDate": "1769964947299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112908848692283", + "createdBy": null, + "createdTime": "2026-02-02 00:55:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:56", + "echoMap": {}, + "alarmNo": "1630075778", + "alarmDate": "1769964954603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659522", + "createdBy": null, + "createdTime": "2026-02-02 00:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:07", + "echoMap": {}, + "alarmNo": "1630075779", + "alarmDate": "1769964966000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659678", + "createdBy": null, + "createdTime": "2026-02-02 01:05:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:11", + "echoMap": {}, + "alarmNo": "1630075780", + "alarmDate": "1769965509524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659693", + "createdBy": null, + "createdTime": "2026-02-02 01:05:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:19", + "echoMap": {}, + "alarmNo": "1630075781", + "alarmDate": "1769965518252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659696", + "createdBy": null, + "createdTime": "2026-02-02 01:05:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:20", + "echoMap": {}, + "alarmNo": "1630075782", + "alarmDate": "1769965518858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659710", + "createdBy": null, + "createdTime": "2026-02-02 01:05:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:31", + "echoMap": {}, + "alarmNo": "1630075783", + "alarmDate": "1769965525072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659732", + "createdBy": null, + "createdTime": "2026-02-02 01:05:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:47", + "echoMap": {}, + "alarmNo": "1630075784", + "alarmDate": "1769965534553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112917438626853", + "createdBy": null, + "createdTime": "2026-02-02 01:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:22", + "echoMap": {}, + "alarmNo": "1630075785", + "alarmDate": "1769965558708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112921733594258", + "createdBy": null, + "createdTime": "2026-02-02 01:15:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:13", + "echoMap": {}, + "alarmNo": "1630075786", + "alarmDate": "1769966108387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112921733594310", + "createdBy": null, + "createdTime": "2026-02-02 01:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:58", + "echoMap": {}, + "alarmNo": "1630075787", + "alarmDate": "1769966145859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528761", + "createdBy": null, + "createdTime": "2026-02-02 01:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:15", + "echoMap": {}, + "alarmNo": "1630075788", + "alarmDate": "1769966709070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528780", + "createdBy": null, + "createdTime": "2026-02-02 01:25:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:26", + "echoMap": {}, + "alarmNo": "1630075789", + "alarmDate": "1769966718621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528798", + "createdBy": null, + "createdTime": "2026-02-02 01:25:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:33", + "echoMap": {}, + "alarmNo": "1630075790", + "alarmDate": "1769966727044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528818", + "createdBy": null, + "createdTime": "2026-02-02 01:25:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:40", + "echoMap": {}, + "alarmNo": "1630075791", + "alarmDate": "1769966739430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528839", + "createdBy": null, + "createdTime": "2026-02-02 01:25:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:53", + "echoMap": {}, + "alarmNo": "1630075792", + "alarmDate": "1769966751519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528855", + "createdBy": null, + "createdTime": "2026-02-02 01:26:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:01", + "echoMap": {}, + "alarmNo": "1630075793", + "alarmDate": "1769966759906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528860", + "createdBy": null, + "createdTime": "2026-02-02 01:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:26", + "echoMap": {}, + "alarmNo": "1630075794", + "alarmDate": "1769966763166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463323", + "createdBy": null, + "createdTime": "2026-02-02 01:35:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:31", + "echoMap": {}, + "alarmNo": "1630075795", + "alarmDate": "1769967309897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463327", + "createdBy": null, + "createdTime": "2026-02-02 01:35:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:12", + "echoMap": {}, + "alarmNo": "1630075796", + "alarmDate": "1769967311090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463368", + "createdBy": null, + "createdTime": "2026-02-02 01:35:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:37", + "echoMap": {}, + "alarmNo": "1630075797", + "alarmDate": "1769967330885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463395", + "createdBy": null, + "createdTime": "2026-02-02 01:35:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:45", + "echoMap": {}, + "alarmNo": "1630075798", + "alarmDate": "1769967338439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430626", + "createdBy": null, + "createdTime": "2026-02-02 01:45:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:21", + "echoMap": {}, + "alarmNo": "1630075799", + "alarmDate": "1769967919952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430640", + "createdBy": null, + "createdTime": "2026-02-02 01:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:39", + "echoMap": {}, + "alarmNo": "1630075800", + "alarmDate": "1769967926627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430662", + "createdBy": null, + "createdTime": "2026-02-02 01:45:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:48", + "echoMap": {}, + "alarmNo": "1630075801", + "alarmDate": "1769967942452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430666", + "createdBy": null, + "createdTime": "2026-02-02 01:45:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:44", + "echoMap": {}, + "alarmNo": "1630075802", + "alarmDate": "1769967943372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112947503397901", + "createdBy": null, + "createdTime": "2026-02-02 01:45:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:03", + "echoMap": {}, + "alarmNo": "1630075803", + "alarmDate": "1769967950665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112947503398082", + "createdBy": null, + "createdTime": "2026-02-02 01:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:14", + "echoMap": {}, + "alarmNo": "1630075804", + "alarmDate": "1769968509893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365217", + "createdBy": null, + "createdTime": "2026-02-02 01:55:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:50", + "echoMap": {}, + "alarmNo": "1630075805", + "alarmDate": "1769968543921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365242", + "createdBy": null, + "createdTime": "2026-02-02 01:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:00", + "echoMap": {}, + "alarmNo": "1630075806", + "alarmDate": "1769968553608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365243", + "createdBy": null, + "createdTime": "2026-02-02 01:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:55", + "echoMap": {}, + "alarmNo": "1630075807", + "alarmDate": "1769968553786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365250", + "createdBy": null, + "createdTime": "2026-02-02 01:55:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:46", + "echoMap": {}, + "alarmNo": "1630075808", + "alarmDate": "1769968555736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112956093332491", + "createdBy": null, + "createdTime": "2026-02-02 01:56:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:25", + "echoMap": {}, + "alarmNo": "1630075809", + "alarmDate": "1769968561888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112956093332684", + "createdBy": null, + "createdTime": "2026-02-02 02:05:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:01", + "echoMap": {}, + "alarmNo": "1630075810", + "alarmDate": "1769969149186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112960388299799", + "createdBy": null, + "createdTime": "2026-02-02 02:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:16", + "echoMap": {}, + "alarmNo": "1630075811", + "alarmDate": "1769969164793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112964683267141", + "createdBy": null, + "createdTime": "2026-02-02 02:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:19", + "echoMap": {}, + "alarmNo": "1630075812", + "alarmDate": "1769969709447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112964683267180", + "createdBy": null, + "createdTime": "2026-02-02 02:15:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:37", + "echoMap": {}, + "alarmNo": "1630075813", + "alarmDate": "1769969731426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112964683267248", + "createdBy": null, + "createdTime": "2026-02-02 02:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:31", + "echoMap": {}, + "alarmNo": "1630075814", + "alarmDate": "1769969767615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112973273201667", + "createdBy": null, + "createdTime": "2026-02-02 02:25:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:21", + "echoMap": {}, + "alarmNo": "1630075815", + "alarmDate": "1769970320111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112973273201710", + "createdBy": null, + "createdTime": "2026-02-02 02:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:55", + "echoMap": {}, + "alarmNo": "1630075816", + "alarmDate": "1769970342751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112973273201724", + "createdBy": null, + "createdTime": "2026-02-02 02:25:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:50", + "echoMap": {}, + "alarmNo": "1630075817", + "alarmDate": "1769970348564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112977568169001", + "createdBy": null, + "createdTime": "2026-02-02 02:35:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:28", + "echoMap": {}, + "alarmNo": "1630075818", + "alarmDate": "1769970921498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136259", + "createdBy": null, + "createdTime": "2026-02-02 02:35:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:42", + "echoMap": {}, + "alarmNo": "1630075819", + "alarmDate": "1769970936020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136287", + "createdBy": null, + "createdTime": "2026-02-02 02:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:06", + "echoMap": {}, + "alarmNo": "1630075820", + "alarmDate": "1769970954024", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136470", + "createdBy": null, + "createdTime": "2026-02-02 02:45:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:18", + "echoMap": {}, + "alarmNo": "1630075821", + "alarmDate": "1769971511267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136502", + "createdBy": null, + "createdTime": "2026-02-02 02:45:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:40", + "echoMap": {}, + "alarmNo": "1630075822", + "alarmDate": "1769971533690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112986158103574", + "createdBy": null, + "createdTime": "2026-02-02 02:45:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:54", + "echoMap": {}, + "alarmNo": "1630075823", + "alarmDate": "1769971547370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112986158103589", + "createdBy": null, + "createdTime": "2026-02-02 02:45:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:55", + "echoMap": {}, + "alarmNo": "1630075824", + "alarmDate": "1769971553689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112986158103611", + "createdBy": null, + "createdTime": "2026-02-02 02:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:11", + "echoMap": {}, + "alarmNo": "1630075825", + "alarmDate": "1769971566312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112990453070999", + "createdBy": null, + "createdTime": "2026-02-02 02:55:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:30", + "echoMap": {}, + "alarmNo": "1630075826", + "alarmDate": "1769972123529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112990453071027", + "createdBy": null, + "createdTime": "2026-02-02 02:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:44", + "echoMap": {}, + "alarmNo": "1630075827", + "alarmDate": "1769972142538", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112990453071052", + "createdBy": null, + "createdTime": "2026-02-02 02:56:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:06", + "echoMap": {}, + "alarmNo": "1630075828", + "alarmDate": "1769972159559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112999043005482", + "createdBy": null, + "createdTime": "2026-02-02 03:05:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:23", + "echoMap": {}, + "alarmNo": "1630075829", + "alarmDate": "1769972710696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112999043005521", + "createdBy": null, + "createdTime": "2026-02-02 03:05:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:47", + "echoMap": {}, + "alarmNo": "1630075830", + "alarmDate": "1769972734779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112999043005564", + "createdBy": null, + "createdTime": "2026-02-02 03:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:02", + "echoMap": {}, + "alarmNo": "1630075831", + "alarmDate": "1769972756323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940075", + "createdBy": null, + "createdTime": "2026-02-02 03:15:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:34", + "echoMap": {}, + "alarmNo": "1630075832", + "alarmDate": "1769973328084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940089", + "createdBy": null, + "createdTime": "2026-02-02 03:15:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:34", + "echoMap": {}, + "alarmNo": "1630075833", + "alarmDate": "1769973333387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940123", + "createdBy": null, + "createdTime": "2026-02-02 03:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:58", + "echoMap": {}, + "alarmNo": "1630075834", + "alarmDate": "1769973346126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940135", + "createdBy": null, + "createdTime": "2026-02-02 03:15:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:07", + "echoMap": {}, + "alarmNo": "1630075835", + "alarmDate": "1769973356798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113011927907360", + "createdBy": null, + "createdTime": "2026-02-02 03:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:11", + "echoMap": {}, + "alarmNo": "1630075836", + "alarmDate": "1769973909249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113011927907397", + "createdBy": null, + "createdTime": "2026-02-02 03:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:37", + "echoMap": {}, + "alarmNo": "1630075837", + "alarmDate": "1769973936423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113016222874627", + "createdBy": null, + "createdTime": "2026-02-02 03:25:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:46", + "echoMap": {}, + "alarmNo": "1630075838", + "alarmDate": "1769973940374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113016222874654", + "createdBy": null, + "createdTime": "2026-02-02 03:25:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:22", + "echoMap": {}, + "alarmNo": "1630075839", + "alarmDate": "1769973957359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113016222874827", + "createdBy": null, + "createdTime": "2026-02-02 03:35:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:19", + "echoMap": {}, + "alarmNo": "1630075840", + "alarmDate": "1769974512938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113020517841925", + "createdBy": null, + "createdTime": "2026-02-02 03:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:58", + "echoMap": {}, + "alarmNo": "1630075841", + "alarmDate": "1769974551579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809345", + "createdBy": null, + "createdTime": "2026-02-02 03:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:15", + "echoMap": {}, + "alarmNo": "1630075843", + "alarmDate": "1769975109730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809360", + "createdBy": null, + "createdTime": "2026-02-02 03:45:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:31", + "echoMap": {}, + "alarmNo": "1630075844", + "alarmDate": "1769975125223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809366", + "createdBy": null, + "createdTime": "2026-02-02 03:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:39", + "echoMap": {}, + "alarmNo": "1630075845", + "alarmDate": "1769975126857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809425", + "createdBy": null, + "createdTime": "2026-02-02 03:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:26", + "echoMap": {}, + "alarmNo": "1630075846", + "alarmDate": "1769975162826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743874", + "createdBy": null, + "createdTime": "2026-02-02 03:55:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:30", + "echoMap": {}, + "alarmNo": "1630075847", + "alarmDate": "1769975728793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743877", + "createdBy": null, + "createdTime": "2026-02-02 03:55:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:30", + "echoMap": {}, + "alarmNo": "1630075848", + "alarmDate": "1769975729127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743884", + "createdBy": null, + "createdTime": "2026-02-02 03:55:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:33", + "echoMap": {}, + "alarmNo": "1630075849", + "alarmDate": "1769975731491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743893", + "createdBy": null, + "createdTime": "2026-02-02 03:55:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:42", + "echoMap": {}, + "alarmNo": "1630075850", + "alarmDate": "1769975736417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743899", + "createdBy": null, + "createdTime": "2026-02-02 03:55:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:51", + "echoMap": {}, + "alarmNo": "1630075851", + "alarmDate": "1769975738096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113041992678439", + "createdBy": null, + "createdTime": "2026-02-02 04:05:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:38", + "echoMap": {}, + "alarmNo": "1630075852", + "alarmDate": "1769976332358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113041992678466", + "createdBy": null, + "createdTime": "2026-02-02 04:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:02", + "echoMap": {}, + "alarmNo": "1630075853", + "alarmDate": "1769976350454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113041992678499", + "createdBy": null, + "createdTime": "2026-02-02 04:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:35", + "echoMap": {}, + "alarmNo": "1630075854", + "alarmDate": "1769976365761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113046287645709", + "createdBy": null, + "createdTime": "2026-02-02 04:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:14", + "echoMap": {}, + "alarmNo": "1630075855", + "alarmDate": "1769976909594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113046287645756", + "createdBy": null, + "createdTime": "2026-02-02 04:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:50", + "echoMap": {}, + "alarmNo": "1630075856", + "alarmDate": "1769976943740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613007", + "createdBy": null, + "createdTime": "2026-02-02 04:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:31", + "echoMap": {}, + "alarmNo": "1630075857", + "alarmDate": "1769976961685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613017", + "createdBy": null, + "createdTime": "2026-02-02 04:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:14", + "echoMap": {}, + "alarmNo": "1630075858", + "alarmDate": "1769976966150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613174", + "createdBy": null, + "createdTime": "2026-02-02 04:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:31", + "echoMap": {}, + "alarmNo": "1630075859", + "alarmDate": "1769977509485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613195", + "createdBy": null, + "createdTime": "2026-02-02 04:25:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:23", + "echoMap": {}, + "alarmNo": "1630075860", + "alarmDate": "1769977522098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613217", + "createdBy": null, + "createdTime": "2026-02-02 04:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:47", + "echoMap": {}, + "alarmNo": "1630075861", + "alarmDate": "1769977541174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613221", + "createdBy": null, + "createdTime": "2026-02-02 04:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:42", + "echoMap": {}, + "alarmNo": "1630075862", + "alarmDate": "1769977542560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113054877580303", + "createdBy": null, + "createdTime": "2026-02-02 04:25:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:01", + "echoMap": {}, + "alarmNo": "1630075863", + "alarmDate": "1769977554970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547701", + "createdBy": null, + "createdTime": "2026-02-02 04:35:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:19", + "echoMap": {}, + "alarmNo": "1630075864", + "alarmDate": "1769978113141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547728", + "createdBy": null, + "createdTime": "2026-02-02 04:35:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:43", + "echoMap": {}, + "alarmNo": "1630075865", + "alarmDate": "1769978131214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547732", + "createdBy": null, + "createdTime": "2026-02-02 04:35:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:34", + "echoMap": {}, + "alarmNo": "1630075866", + "alarmDate": "1769978132598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547757", + "createdBy": null, + "createdTime": "2026-02-02 04:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:58", + "echoMap": {}, + "alarmNo": "1630075867", + "alarmDate": "1769978152453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547761", + "createdBy": null, + "createdTime": "2026-02-02 04:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:01", + "echoMap": {}, + "alarmNo": "1630075868", + "alarmDate": "1769978153870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547786", + "createdBy": null, + "createdTime": "2026-02-02 04:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:30", + "echoMap": {}, + "alarmNo": "1630075869", + "alarmDate": "1769978167275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113067762482215", + "createdBy": null, + "createdTime": "2026-02-02 04:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:12", + "echoMap": {}, + "alarmNo": "1630075870", + "alarmDate": "1769978707688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113067762482262", + "createdBy": null, + "createdTime": "2026-02-02 04:45:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:55", + "echoMap": {}, + "alarmNo": "1630075871", + "alarmDate": "1769978742508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113067762482274", + "createdBy": null, + "createdTime": "2026-02-02 04:45:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:48", + "echoMap": {}, + "alarmNo": "1630075872", + "alarmDate": "1769978747316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113072057449484", + "createdBy": null, + "createdTime": "2026-02-02 04:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:05", + "echoMap": {}, + "alarmNo": "1630075873", + "alarmDate": "1769978763730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113076352416857", + "createdBy": null, + "createdTime": "2026-02-02 04:55:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:09", + "echoMap": {}, + "alarmNo": "1630075874", + "alarmDate": "1769979309278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113076352416865", + "createdBy": null, + "createdTime": "2026-02-02 04:55:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:16", + "echoMap": {}, + "alarmNo": "1630075875", + "alarmDate": "1769979314848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113080647384076", + "createdBy": null, + "createdTime": "2026-02-02 04:55:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:42", + "echoMap": {}, + "alarmNo": "1630075876", + "alarmDate": "1769979335791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113080647384103", + "createdBy": null, + "createdTime": "2026-02-02 04:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:06", + "echoMap": {}, + "alarmNo": "1630075877", + "alarmDate": "1769979353815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113102122220557", + "createdBy": null, + "createdTime": "2026-02-02 05:15:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:15:37", + "echoMap": {}, + "alarmNo": "1630075878", + "alarmDate": "1769980535698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089744", + "createdBy": null, + "createdTime": "2026-02-02 05:35:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:30", + "echoMap": {}, + "alarmNo": "1630075879", + "alarmDate": "1769981711716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089781", + "createdBy": null, + "createdTime": "2026-02-02 05:35:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:55", + "echoMap": {}, + "alarmNo": "1630075880", + "alarmDate": "1769981742836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089801", + "createdBy": null, + "createdTime": "2026-02-02 05:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:26", + "echoMap": {}, + "alarmNo": "1630075881", + "alarmDate": "1769981767800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089961", + "createdBy": null, + "createdTime": "2026-02-02 05:45:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:24", + "echoMap": {}, + "alarmNo": "1630075882", + "alarmDate": "1769982322547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089970", + "createdBy": null, + "createdTime": "2026-02-02 05:45:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:50", + "echoMap": {}, + "alarmNo": "1630075883", + "alarmDate": "1769982338155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089989", + "createdBy": null, + "createdTime": "2026-02-02 05:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:22", + "echoMap": {}, + "alarmNo": "1630075884", + "alarmDate": "1769982363086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113127892024359", + "createdBy": null, + "createdTime": "2026-02-02 05:55:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:46", + "echoMap": {}, + "alarmNo": "1630075885", + "alarmDate": "1769982934253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113127892024376", + "createdBy": null, + "createdTime": "2026-02-02 05:55:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:05:18", + "echoMap": {}, + "alarmNo": "1630075886", + "alarmDate": "1769982958439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991685", + "createdBy": null, + "createdTime": "2026-02-02 06:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:05:41", + "echoMap": {}, + "alarmNo": "1630075887", + "alarmDate": "1769983528526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991700", + "createdBy": null, + "createdTime": "2026-02-02 06:05:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:05:50", + "echoMap": {}, + "alarmNo": "1630075888", + "alarmDate": "1769983548670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991704", + "createdBy": null, + "createdTime": "2026-02-02 06:05:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:06", + "echoMap": {}, + "alarmNo": "1630075889", + "alarmDate": "1769983552669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991723", + "createdBy": null, + "createdTime": "2026-02-02 06:06:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:02", + "echoMap": {}, + "alarmNo": "1630075890", + "alarmDate": "1769983561093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959033", + "createdBy": null, + "createdTime": "2026-02-02 06:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:13", + "echoMap": {}, + "alarmNo": "1630075891", + "alarmDate": "1769984109724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959037", + "createdBy": null, + "createdTime": "2026-02-02 06:15:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:12", + "echoMap": {}, + "alarmNo": "1630075892", + "alarmDate": "1769984111405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959043", + "createdBy": null, + "createdTime": "2026-02-02 06:15:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:37", + "echoMap": {}, + "alarmNo": "1630075893", + "alarmDate": "1769984124751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959057", + "createdBy": null, + "createdTime": "2026-02-02 06:15:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:01", + "echoMap": {}, + "alarmNo": "1630075894", + "alarmDate": "1769984148860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959066", + "createdBy": null, + "createdTime": "2026-02-02 06:15:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:56", + "echoMap": {}, + "alarmNo": "1630075895", + "alarmDate": "1769984155280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060095", + "deviceName": "[210](10)四川北1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893517", + "createdBy": null, + "createdTime": "2026-02-02 06:25:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:24", + "echoMap": {}, + "alarmNo": "1630075896", + "alarmDate": "1769984712081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893521", + "createdBy": null, + "createdTime": "2026-02-02 06:25:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:19", + "echoMap": {}, + "alarmNo": "1630075897", + "alarmDate": "1769984713015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893536", + "createdBy": null, + "createdTime": "2026-02-02 06:25:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:25", + "echoMap": {}, + "alarmNo": "1630075898", + "alarmDate": "1769984718983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060129", + "deviceName": "[704](10)四川北下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893550", + "createdBy": null, + "createdTime": "2026-02-02 06:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:54", + "echoMap": {}, + "alarmNo": "1630075899", + "alarmDate": "1769984736038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893575", + "createdBy": null, + "createdTime": "2026-02-02 06:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:06", + "echoMap": {}, + "alarmNo": "1630075900", + "alarmDate": "1769984766185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113157956795460", + "createdBy": null, + "createdTime": "2026-02-02 06:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:15", + "echoMap": {}, + "alarmNo": "1630075901", + "alarmDate": "1769985909585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113157956795463", + "createdBy": null, + "createdTime": "2026-02-02 06:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:10", + "echoMap": {}, + "alarmNo": "1630075902", + "alarmDate": "1769985909931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060081", + "deviceName": "[333](10)四川北3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113265330977939", + "createdBy": null, + "createdTime": "2026-02-02 08:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:48", + "echoMap": {}, + "alarmNo": "1630075903", + "alarmDate": "1769991365271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113273920912474", + "createdBy": null, + "createdTime": "2026-02-02 08:25:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:33", + "echoMap": {}, + "alarmNo": "1630075904", + "alarmDate": "1769991925620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113273920912481", + "createdBy": null, + "createdTime": "2026-02-02 08:25:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:15", + "echoMap": {}, + "alarmNo": "1630075905", + "alarmDate": "1769991927411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113273920912558", + "createdBy": null, + "createdTime": "2026-02-02 08:25:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:51", + "echoMap": {}, + "alarmNo": "1630075906", + "alarmDate": "1769991944711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113286805814280", + "createdBy": null, + "createdTime": "2026-02-02 08:35:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:33", + "echoMap": {}, + "alarmNo": "1630075907", + "alarmDate": "1769992509956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113286805814336", + "createdBy": null, + "createdTime": "2026-02-02 08:35:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:29", + "echoMap": {}, + "alarmNo": "1630075908", + "alarmDate": "1769992522801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113291100781666", + "createdBy": null, + "createdTime": "2026-02-02 08:35:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:58", + "echoMap": {}, + "alarmNo": "1630075909", + "alarmDate": "1769992544970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113291100781703", + "createdBy": null, + "createdTime": "2026-02-02 08:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:00", + "echoMap": {}, + "alarmNo": "1630075910", + "alarmDate": "1769992553762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113299690716268", + "createdBy": null, + "createdTime": "2026-02-02 08:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:31", + "echoMap": {}, + "alarmNo": "1630075911", + "alarmDate": "1769993109947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113303985683459", + "createdBy": null, + "createdTime": "2026-02-02 08:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:27", + "echoMap": {}, + "alarmNo": "1630075912", + "alarmDate": "1769993126897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113308280650760", + "createdBy": null, + "createdTime": "2026-02-02 08:45:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:04", + "echoMap": {}, + "alarmNo": "1630075913", + "alarmDate": "1769993151178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060119", + "deviceName": "[104](10)四川北上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113308280650827", + "createdBy": null, + "createdTime": "2026-02-02 08:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:48", + "echoMap": {}, + "alarmNo": "1630075914", + "alarmDate": "1769993167086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113321165552643", + "createdBy": null, + "createdTime": "2026-02-02 08:56:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:22", + "echoMap": {}, + "alarmNo": "1630075915", + "alarmDate": "1769993767644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113325460520094", + "createdBy": null, + "createdTime": "2026-02-02 09:05:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:12", + "echoMap": {}, + "alarmNo": "1630075916", + "alarmDate": "1769994335519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113351230323832", + "createdBy": null, + "createdTime": "2026-02-02 09:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:42", + "echoMap": {}, + "alarmNo": "1630075917", + "alarmDate": "1769995536004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113355525291081", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:28", + "echoMap": {}, + "alarmNo": "1630075918", + "alarmDate": "1769995566016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113368410192959", + "createdBy": null, + "createdTime": "2026-02-02 09:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:16", + "echoMap": {}, + "alarmNo": "1630075919", + "alarmDate": "1769996157582", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113415654833170", + "createdBy": null, + "createdTime": "2026-02-02 10:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:04", + "echoMap": {}, + "alarmNo": "1630075920", + "alarmDate": "1769997945511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113424244767805", + "createdBy": null, + "createdTime": "2026-02-02 10:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:22", + "echoMap": {}, + "alarmNo": "1630075921", + "alarmDate": "1769998514676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113428539735147", + "createdBy": null, + "createdTime": "2026-02-02 10:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:51", + "echoMap": {}, + "alarmNo": "1630075922", + "alarmDate": "1769998545792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113441424636936", + "createdBy": null, + "createdTime": "2026-02-02 10:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:16", + "echoMap": {}, + "alarmNo": "1630075923", + "alarmDate": "1769999107757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060012", + "deviceName": "[339](10)四川北4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113441424636944", + "createdBy": null, + "createdTime": "2026-02-02 10:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:23", + "echoMap": {}, + "alarmNo": "1630075924", + "alarmDate": "1769999109954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113441424636953", + "createdBy": null, + "createdTime": "2026-02-02 10:25:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:12", + "echoMap": {}, + "alarmNo": "1630075925", + "alarmDate": "1769999111314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113445719604271", + "createdBy": null, + "createdTime": "2026-02-02 10:25:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:47", + "echoMap": {}, + "alarmNo": "1630075926", + "alarmDate": "1769999135167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113454309538906", + "createdBy": null, + "createdTime": "2026-02-02 10:35:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:24", + "echoMap": {}, + "alarmNo": "1630075927", + "alarmDate": "1769999710197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113458604506184", + "createdBy": null, + "createdTime": "2026-02-02 10:35:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:35", + "echoMap": {}, + "alarmNo": "1630075928", + "alarmDate": "1769999736377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113458604506196", + "createdBy": null, + "createdTime": "2026-02-02 10:35:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:40", + "echoMap": {}, + "alarmNo": "1630075929", + "alarmDate": "1769999738747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113458604506204", + "createdBy": null, + "createdTime": "2026-02-02 10:35:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:46", + "echoMap": {}, + "alarmNo": "1630075930", + "alarmDate": "1769999739748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113471489408119", + "createdBy": null, + "createdTime": "2026-02-02 10:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:54", + "echoMap": {}, + "alarmNo": "1630075931", + "alarmDate": "1770000347593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113471489408181", + "createdBy": null, + "createdTime": "2026-02-02 10:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:35", + "echoMap": {}, + "alarmNo": "1630075932", + "alarmDate": "1770000363957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113480079342638", + "createdBy": null, + "createdTime": "2026-02-02 10:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:30", + "echoMap": {}, + "alarmNo": "1630075933", + "alarmDate": "1770000916717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113480079342748", + "createdBy": null, + "createdTime": "2026-02-02 10:55:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:31", + "echoMap": {}, + "alarmNo": "1630075934", + "alarmDate": "1770000941831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113488669277391", + "createdBy": null, + "createdTime": "2026-02-02 11:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:02", + "echoMap": {}, + "alarmNo": "1630075935", + "alarmDate": "1770001543101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113492964244502", + "createdBy": null, + "createdTime": "2026-02-02 11:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:15", + "echoMap": {}, + "alarmNo": "1630075936", + "alarmDate": "1770001558539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113497259211924", + "createdBy": null, + "createdTime": "2026-02-02 11:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:44", + "echoMap": {}, + "alarmNo": "1630075937", + "alarmDate": "1770002110250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113505849146376", + "createdBy": null, + "createdTime": "2026-02-02 11:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:31", + "echoMap": {}, + "alarmNo": "1630075938", + "alarmDate": "1770002162379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113531618950158", + "createdBy": null, + "createdTime": "2026-02-02 11:45:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:34", + "echoMap": {}, + "alarmNo": "1630075939", + "alarmDate": "1770003915905", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884767", + "createdBy": null, + "createdTime": "2026-02-02 11:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:12", + "echoMap": {}, + "alarmNo": "1630075940", + "alarmDate": "1770004511807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884768", + "createdBy": null, + "createdTime": "2026-02-02 11:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:49", + "echoMap": {}, + "alarmNo": "1630075941", + "alarmDate": "1770004511812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884851", + "createdBy": null, + "createdTime": "2026-02-02 11:55:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:34", + "echoMap": {}, + "alarmNo": "1630075942", + "alarmDate": "1770004528345", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884875", + "createdBy": null, + "createdTime": "2026-02-02 11:55:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:45", + "echoMap": {}, + "alarmNo": "1630075943", + "alarmDate": "1770004532490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113553093786673", + "createdBy": null, + "createdTime": "2026-02-02 12:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:44", + "echoMap": {}, + "alarmNo": "1630075944", + "alarmDate": "1770005166968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113557388754056", + "createdBy": null, + "createdTime": "2026-02-02 12:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:46", + "echoMap": {}, + "alarmNo": "1630075945", + "alarmDate": "1770005710271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113561683721261", + "createdBy": null, + "createdTime": "2026-02-02 12:15:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:23", + "echoMap": {}, + "alarmNo": "1630075946", + "alarmDate": "1770005757458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113570273655857", + "createdBy": null, + "createdTime": "2026-02-02 12:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:43", + "echoMap": {}, + "alarmNo": "1630075947", + "alarmDate": "1770006342544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113570273655858", + "createdBy": null, + "createdTime": "2026-02-02 12:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:43", + "echoMap": {}, + "alarmNo": "1630075948", + "alarmDate": "1770006342552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113570273655859", + "createdBy": null, + "createdTime": "2026-02-02 12:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:52", + "echoMap": {}, + "alarmNo": "1630075949", + "alarmDate": "1770006342557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113583158557924", + "createdBy": null, + "createdTime": "2026-02-02 12:45:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:43", + "echoMap": {}, + "alarmNo": "1630075950", + "alarmDate": "1770007520770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113591748492289", + "createdBy": null, + "createdTime": "2026-02-02 12:45:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:16", + "echoMap": {}, + "alarmNo": "1630075951", + "alarmDate": "1770007552130", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113591748492299", + "createdBy": null, + "createdTime": "2026-02-02 12:45:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:06", + "echoMap": {}, + "alarmNo": "1630075952", + "alarmDate": "1770007553632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113596043459587", + "createdBy": null, + "createdTime": "2026-02-02 12:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:04", + "echoMap": {}, + "alarmNo": "1630075953", + "alarmDate": "1770008116807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113617518296110", + "createdBy": null, + "createdTime": "2026-02-02 13:15:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:57", + "echoMap": {}, + "alarmNo": "1630075954", + "alarmDate": "1770009355504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113617518296309", + "createdBy": null, + "createdTime": "2026-02-02 13:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:27", + "echoMap": {}, + "alarmNo": "1630075955", + "alarmDate": "1770009909543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113621813263411", + "createdBy": null, + "createdTime": "2026-02-02 13:25:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:29", + "echoMap": {}, + "alarmNo": "1630075956", + "alarmDate": "1770009922660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060119", + "deviceName": "[104](10)四川北上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113651878034457", + "createdBy": null, + "createdTime": "2026-02-02 13:55:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:28", + "echoMap": {}, + "alarmNo": "1630075957", + "alarmDate": "1770011716295", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113651878034550", + "createdBy": null, + "createdTime": "2026-02-02 13:55:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:40", + "echoMap": {}, + "alarmNo": "1630075958", + "alarmDate": "1770011740280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113660467969028", + "createdBy": null, + "createdTime": "2026-02-02 14:05:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:26", + "echoMap": {}, + "alarmNo": "1630075959", + "alarmDate": "1770012309555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113660467969151", + "createdBy": null, + "createdTime": "2026-02-02 14:05:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:39", + "echoMap": {}, + "alarmNo": "1630075960", + "alarmDate": "1770012338563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113677647838288", + "createdBy": null, + "createdTime": "2026-02-02 14:25:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:00", + "echoMap": {}, + "alarmNo": "1630075961", + "alarmDate": "1770013554223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723112895963790528", + "createdBy": null, + "createdTime": "2026-02-02 00:39:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:48", + "echoMap": {}, + "alarmNo": "1630075771", + "alarmDate": "1769963989056", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1018030023", + "deviceName": "安防箱23", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1018" + } + ], + "ndmSwitch": [ + { + "id": "723113024812809217", + "createdBy": null, + "createdTime": "2026-02-02 03:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:37", + "echoMap": {}, + "alarmNo": "1630075842", + "alarmDate": "1769974707434", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1018040007", + "deviceName": "华为前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1018" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113677647838288", + "createdBy": null, + "createdTime": "2026-02-02 14:25:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:00", + "echoMap": {}, + "alarmNo": "1630075961", + "alarmDate": "1770013554223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113660467969151", + "createdBy": null, + "createdTime": "2026-02-02 14:05:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:39", + "echoMap": {}, + "alarmNo": "1630075960", + "alarmDate": "1770012338563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113660467969028", + "createdBy": null, + "createdTime": "2026-02-02 14:05:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:26", + "echoMap": {}, + "alarmNo": "1630075959", + "alarmDate": "1770012309555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113651878034550", + "createdBy": null, + "createdTime": "2026-02-02 13:55:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:40", + "echoMap": {}, + "alarmNo": "1630075958", + "alarmDate": "1770011740280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113651878034457", + "createdBy": null, + "createdTime": "2026-02-02 13:55:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:28", + "echoMap": {}, + "alarmNo": "1630075957", + "alarmDate": "1770011716295", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113621813263411", + "createdBy": null, + "createdTime": "2026-02-02 13:25:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:29", + "echoMap": {}, + "alarmNo": "1630075956", + "alarmDate": "1770009922660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060119", + "deviceName": "[104](10)四川北上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113617518296309", + "createdBy": null, + "createdTime": "2026-02-02 13:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:27", + "echoMap": {}, + "alarmNo": "1630075955", + "alarmDate": "1770009909543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113617518296110", + "createdBy": null, + "createdTime": "2026-02-02 13:15:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:57", + "echoMap": {}, + "alarmNo": "1630075954", + "alarmDate": "1770009355504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113596043459587", + "createdBy": null, + "createdTime": "2026-02-02 12:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:04", + "echoMap": {}, + "alarmNo": "1630075953", + "alarmDate": "1770008116807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113591748492299", + "createdBy": null, + "createdTime": "2026-02-02 12:45:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:06", + "echoMap": {}, + "alarmNo": "1630075952", + "alarmDate": "1770007553632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113591748492289", + "createdBy": null, + "createdTime": "2026-02-02 12:45:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:16", + "echoMap": {}, + "alarmNo": "1630075951", + "alarmDate": "1770007552130", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113583158557924", + "createdBy": null, + "createdTime": "2026-02-02 12:45:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:43", + "echoMap": {}, + "alarmNo": "1630075950", + "alarmDate": "1770007520770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113570273655859", + "createdBy": null, + "createdTime": "2026-02-02 12:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:52", + "echoMap": {}, + "alarmNo": "1630075949", + "alarmDate": "1770006342557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113570273655858", + "createdBy": null, + "createdTime": "2026-02-02 12:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:43", + "echoMap": {}, + "alarmNo": "1630075948", + "alarmDate": "1770006342552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113570273655857", + "createdBy": null, + "createdTime": "2026-02-02 12:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:43", + "echoMap": {}, + "alarmNo": "1630075947", + "alarmDate": "1770006342544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113561683721261", + "createdBy": null, + "createdTime": "2026-02-02 12:15:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:23", + "echoMap": {}, + "alarmNo": "1630075946", + "alarmDate": "1770005757458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113557388754056", + "createdBy": null, + "createdTime": "2026-02-02 12:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:15:46", + "echoMap": {}, + "alarmNo": "1630075945", + "alarmDate": "1770005710271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113553093786673", + "createdBy": null, + "createdTime": "2026-02-02 12:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:44", + "echoMap": {}, + "alarmNo": "1630075944", + "alarmDate": "1770005166968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884875", + "createdBy": null, + "createdTime": "2026-02-02 11:55:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:45", + "echoMap": {}, + "alarmNo": "1630075943", + "alarmDate": "1770004532490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884851", + "createdBy": null, + "createdTime": "2026-02-02 11:55:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:45:34", + "echoMap": {}, + "alarmNo": "1630075942", + "alarmDate": "1770004528345", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884768", + "createdBy": null, + "createdTime": "2026-02-02 11:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:49", + "echoMap": {}, + "alarmNo": "1630075941", + "alarmDate": "1770004511812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113540208884767", + "createdBy": null, + "createdTime": "2026-02-02 11:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:12", + "echoMap": {}, + "alarmNo": "1630075940", + "alarmDate": "1770004511807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113531618950158", + "createdBy": null, + "createdTime": "2026-02-02 11:45:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:34", + "echoMap": {}, + "alarmNo": "1630075939", + "alarmDate": "1770003915905", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113505849146376", + "createdBy": null, + "createdTime": "2026-02-02 11:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:45:31", + "echoMap": {}, + "alarmNo": "1630075938", + "alarmDate": "1770002162379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113497259211924", + "createdBy": null, + "createdTime": "2026-02-02 11:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:44", + "echoMap": {}, + "alarmNo": "1630075937", + "alarmDate": "1770002110250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113492964244502", + "createdBy": null, + "createdTime": "2026-02-02 11:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:15", + "echoMap": {}, + "alarmNo": "1630075936", + "alarmDate": "1770001558539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113488669277391", + "createdBy": null, + "createdTime": "2026-02-02 11:05:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:02", + "echoMap": {}, + "alarmNo": "1630075935", + "alarmDate": "1770001543101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113480079342748", + "createdBy": null, + "createdTime": "2026-02-02 10:55:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:31", + "echoMap": {}, + "alarmNo": "1630075934", + "alarmDate": "1770000941831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113480079342638", + "createdBy": null, + "createdTime": "2026-02-02 10:55:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:30", + "echoMap": {}, + "alarmNo": "1630075933", + "alarmDate": "1770000916717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113471489408181", + "createdBy": null, + "createdTime": "2026-02-02 10:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:55:35", + "echoMap": {}, + "alarmNo": "1630075932", + "alarmDate": "1770000363957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113471489408119", + "createdBy": null, + "createdTime": "2026-02-02 10:45:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:54", + "echoMap": {}, + "alarmNo": "1630075931", + "alarmDate": "1770000347593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113458604506204", + "createdBy": null, + "createdTime": "2026-02-02 10:35:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:46", + "echoMap": {}, + "alarmNo": "1630075930", + "alarmDate": "1769999739748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113458604506196", + "createdBy": null, + "createdTime": "2026-02-02 10:35:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:40", + "echoMap": {}, + "alarmNo": "1630075929", + "alarmDate": "1769999738747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113458604506184", + "createdBy": null, + "createdTime": "2026-02-02 10:35:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:45:35", + "echoMap": {}, + "alarmNo": "1630075928", + "alarmDate": "1769999736377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113454309538906", + "createdBy": null, + "createdTime": "2026-02-02 10:35:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:24", + "echoMap": {}, + "alarmNo": "1630075927", + "alarmDate": "1769999710197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113445719604271", + "createdBy": null, + "createdTime": "2026-02-02 10:25:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:47", + "echoMap": {}, + "alarmNo": "1630075926", + "alarmDate": "1769999135167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113441424636953", + "createdBy": null, + "createdTime": "2026-02-02 10:25:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:12", + "echoMap": {}, + "alarmNo": "1630075925", + "alarmDate": "1769999111314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113441424636944", + "createdBy": null, + "createdTime": "2026-02-02 10:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:23", + "echoMap": {}, + "alarmNo": "1630075924", + "alarmDate": "1769999109954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113441424636936", + "createdBy": null, + "createdTime": "2026-02-02 10:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:16", + "echoMap": {}, + "alarmNo": "1630075923", + "alarmDate": "1769999107757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060012", + "deviceName": "[339](10)四川北4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113428539735147", + "createdBy": null, + "createdTime": "2026-02-02 10:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:51", + "echoMap": {}, + "alarmNo": "1630075922", + "alarmDate": "1769998545792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113424244767805", + "createdBy": null, + "createdTime": "2026-02-02 10:15:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:15:22", + "echoMap": {}, + "alarmNo": "1630075921", + "alarmDate": "1769998514676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113415654833170", + "createdBy": null, + "createdTime": "2026-02-02 10:05:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:04", + "echoMap": {}, + "alarmNo": "1630075920", + "alarmDate": "1769997945511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060094", + "deviceName": "[314](10)四川北1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113368410192959", + "createdBy": null, + "createdTime": "2026-02-02 09:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:25:16", + "echoMap": {}, + "alarmNo": "1630075919", + "alarmDate": "1769996157582", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060087", + "deviceName": "[308](10)四川北1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113355525291081", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:35:28", + "echoMap": {}, + "alarmNo": "1630075918", + "alarmDate": "1769995566016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113351230323832", + "createdBy": null, + "createdTime": "2026-02-02 09:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:42", + "echoMap": {}, + "alarmNo": "1630075917", + "alarmDate": "1769995536004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113325460520094", + "createdBy": null, + "createdTime": "2026-02-02 09:05:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:15:12", + "echoMap": {}, + "alarmNo": "1630075916", + "alarmDate": "1769994335519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113321165552643", + "createdBy": null, + "createdTime": "2026-02-02 08:56:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:22", + "echoMap": {}, + "alarmNo": "1630075915", + "alarmDate": "1769993767644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113308280650827", + "createdBy": null, + "createdTime": "2026-02-02 08:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:55:48", + "echoMap": {}, + "alarmNo": "1630075914", + "alarmDate": "1769993167086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113308280650760", + "createdBy": null, + "createdTime": "2026-02-02 08:45:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:04", + "echoMap": {}, + "alarmNo": "1630075913", + "alarmDate": "1769993151178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060119", + "deviceName": "[104](10)四川北上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113303985683459", + "createdBy": null, + "createdTime": "2026-02-02 08:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:27", + "echoMap": {}, + "alarmNo": "1630075912", + "alarmDate": "1769993126897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113299690716268", + "createdBy": null, + "createdTime": "2026-02-02 08:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:31", + "echoMap": {}, + "alarmNo": "1630075911", + "alarmDate": "1769993109947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113291100781703", + "createdBy": null, + "createdTime": "2026-02-02 08:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:00", + "echoMap": {}, + "alarmNo": "1630075910", + "alarmDate": "1769992553762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113291100781666", + "createdBy": null, + "createdTime": "2026-02-02 08:35:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:58", + "echoMap": {}, + "alarmNo": "1630075909", + "alarmDate": "1769992544970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113286805814336", + "createdBy": null, + "createdTime": "2026-02-02 08:35:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:29", + "echoMap": {}, + "alarmNo": "1630075908", + "alarmDate": "1769992522801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113286805814280", + "createdBy": null, + "createdTime": "2026-02-02 08:35:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:33", + "echoMap": {}, + "alarmNo": "1630075907", + "alarmDate": "1769992509956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113273920912558", + "createdBy": null, + "createdTime": "2026-02-02 08:25:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:51", + "echoMap": {}, + "alarmNo": "1630075906", + "alarmDate": "1769991944711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113273920912481", + "createdBy": null, + "createdTime": "2026-02-02 08:25:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:15", + "echoMap": {}, + "alarmNo": "1630075905", + "alarmDate": "1769991927411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113273920912474", + "createdBy": null, + "createdTime": "2026-02-02 08:25:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:33", + "echoMap": {}, + "alarmNo": "1630075904", + "alarmDate": "1769991925620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060109", + "deviceName": "[109](10)四川北下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113265330977939", + "createdBy": null, + "createdTime": "2026-02-02 08:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:48", + "echoMap": {}, + "alarmNo": "1630075903", + "alarmDate": "1769991365271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060092", + "deviceName": "[310](10)四川北1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113157956795463", + "createdBy": null, + "createdTime": "2026-02-02 06:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:10", + "echoMap": {}, + "alarmNo": "1630075902", + "alarmDate": "1769985909931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060081", + "deviceName": "[333](10)四川北3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113157956795460", + "createdBy": null, + "createdTime": "2026-02-02 06:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:15", + "echoMap": {}, + "alarmNo": "1630075901", + "alarmDate": "1769985909585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893575", + "createdBy": null, + "createdTime": "2026-02-02 06:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:06", + "echoMap": {}, + "alarmNo": "1630075900", + "alarmDate": "1769984766185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893550", + "createdBy": null, + "createdTime": "2026-02-02 06:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:54", + "echoMap": {}, + "alarmNo": "1630075899", + "alarmDate": "1769984736038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893536", + "createdBy": null, + "createdTime": "2026-02-02 06:25:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:25", + "echoMap": {}, + "alarmNo": "1630075898", + "alarmDate": "1769984718983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060129", + "deviceName": "[704](10)四川北下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893521", + "createdBy": null, + "createdTime": "2026-02-02 06:25:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:19", + "echoMap": {}, + "alarmNo": "1630075897", + "alarmDate": "1769984713015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113145071893517", + "createdBy": null, + "createdTime": "2026-02-02 06:25:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:24", + "echoMap": {}, + "alarmNo": "1630075896", + "alarmDate": "1769984712081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959066", + "createdBy": null, + "createdTime": "2026-02-02 06:15:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:56", + "echoMap": {}, + "alarmNo": "1630075895", + "alarmDate": "1769984155280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060095", + "deviceName": "[210](10)四川北1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959057", + "createdBy": null, + "createdTime": "2026-02-02 06:15:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:01", + "echoMap": {}, + "alarmNo": "1630075894", + "alarmDate": "1769984148860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959043", + "createdBy": null, + "createdTime": "2026-02-02 06:15:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:37", + "echoMap": {}, + "alarmNo": "1630075893", + "alarmDate": "1769984124751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959037", + "createdBy": null, + "createdTime": "2026-02-02 06:15:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:12", + "echoMap": {}, + "alarmNo": "1630075892", + "alarmDate": "1769984111405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113136481959033", + "createdBy": null, + "createdTime": "2026-02-02 06:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:13", + "echoMap": {}, + "alarmNo": "1630075891", + "alarmDate": "1769984109724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991723", + "createdBy": null, + "createdTime": "2026-02-02 06:06:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:02", + "echoMap": {}, + "alarmNo": "1630075890", + "alarmDate": "1769983561093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991704", + "createdBy": null, + "createdTime": "2026-02-02 06:05:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:06", + "echoMap": {}, + "alarmNo": "1630075889", + "alarmDate": "1769983552669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991700", + "createdBy": null, + "createdTime": "2026-02-02 06:05:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:05:50", + "echoMap": {}, + "alarmNo": "1630075888", + "alarmDate": "1769983548670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113132186991685", + "createdBy": null, + "createdTime": "2026-02-02 06:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:05:41", + "echoMap": {}, + "alarmNo": "1630075887", + "alarmDate": "1769983528526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113127892024376", + "createdBy": null, + "createdTime": "2026-02-02 05:55:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:05:18", + "echoMap": {}, + "alarmNo": "1630075886", + "alarmDate": "1769982958439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113127892024359", + "createdBy": null, + "createdTime": "2026-02-02 05:55:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:46", + "echoMap": {}, + "alarmNo": "1630075885", + "alarmDate": "1769982934253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089989", + "createdBy": null, + "createdTime": "2026-02-02 05:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:22", + "echoMap": {}, + "alarmNo": "1630075884", + "alarmDate": "1769982363086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089970", + "createdBy": null, + "createdTime": "2026-02-02 05:45:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:50", + "echoMap": {}, + "alarmNo": "1630075883", + "alarmDate": "1769982338155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089961", + "createdBy": null, + "createdTime": "2026-02-02 05:45:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:24", + "echoMap": {}, + "alarmNo": "1630075882", + "alarmDate": "1769982322547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089801", + "createdBy": null, + "createdTime": "2026-02-02 05:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:26", + "echoMap": {}, + "alarmNo": "1630075881", + "alarmDate": "1769981767800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089781", + "createdBy": null, + "createdTime": "2026-02-02 05:35:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:55", + "echoMap": {}, + "alarmNo": "1630075880", + "alarmDate": "1769981742836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113119302089744", + "createdBy": null, + "createdTime": "2026-02-02 05:35:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:30", + "echoMap": {}, + "alarmNo": "1630075879", + "alarmDate": "1769981711716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113102122220557", + "createdBy": null, + "createdTime": "2026-02-02 05:15:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:15:37", + "echoMap": {}, + "alarmNo": "1630075878", + "alarmDate": "1769980535698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113080647384103", + "createdBy": null, + "createdTime": "2026-02-02 04:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:06", + "echoMap": {}, + "alarmNo": "1630075877", + "alarmDate": "1769979353815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113080647384076", + "createdBy": null, + "createdTime": "2026-02-02 04:55:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:42", + "echoMap": {}, + "alarmNo": "1630075876", + "alarmDate": "1769979335791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113076352416865", + "createdBy": null, + "createdTime": "2026-02-02 04:55:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:16", + "echoMap": {}, + "alarmNo": "1630075875", + "alarmDate": "1769979314848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113076352416857", + "createdBy": null, + "createdTime": "2026-02-02 04:55:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:09", + "echoMap": {}, + "alarmNo": "1630075874", + "alarmDate": "1769979309278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113072057449484", + "createdBy": null, + "createdTime": "2026-02-02 04:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:05", + "echoMap": {}, + "alarmNo": "1630075873", + "alarmDate": "1769978763730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113067762482274", + "createdBy": null, + "createdTime": "2026-02-02 04:45:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:48", + "echoMap": {}, + "alarmNo": "1630075872", + "alarmDate": "1769978747316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113067762482262", + "createdBy": null, + "createdTime": "2026-02-02 04:45:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:55", + "echoMap": {}, + "alarmNo": "1630075871", + "alarmDate": "1769978742508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113067762482215", + "createdBy": null, + "createdTime": "2026-02-02 04:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:12", + "echoMap": {}, + "alarmNo": "1630075870", + "alarmDate": "1769978707688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547786", + "createdBy": null, + "createdTime": "2026-02-02 04:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:45:30", + "echoMap": {}, + "alarmNo": "1630075869", + "alarmDate": "1769978167275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547761", + "createdBy": null, + "createdTime": "2026-02-02 04:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:01", + "echoMap": {}, + "alarmNo": "1630075868", + "alarmDate": "1769978153870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547757", + "createdBy": null, + "createdTime": "2026-02-02 04:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:58", + "echoMap": {}, + "alarmNo": "1630075867", + "alarmDate": "1769978152453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547732", + "createdBy": null, + "createdTime": "2026-02-02 04:35:33", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:34", + "echoMap": {}, + "alarmNo": "1630075866", + "alarmDate": "1769978132598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547728", + "createdBy": null, + "createdTime": "2026-02-02 04:35:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:43", + "echoMap": {}, + "alarmNo": "1630075865", + "alarmDate": "1769978131214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113059172547701", + "createdBy": null, + "createdTime": "2026-02-02 04:35:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:19", + "echoMap": {}, + "alarmNo": "1630075864", + "alarmDate": "1769978113141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113054877580303", + "createdBy": null, + "createdTime": "2026-02-02 04:25:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:01", + "echoMap": {}, + "alarmNo": "1630075863", + "alarmDate": "1769977554970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613221", + "createdBy": null, + "createdTime": "2026-02-02 04:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:42", + "echoMap": {}, + "alarmNo": "1630075862", + "alarmDate": "1769977542560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613217", + "createdBy": null, + "createdTime": "2026-02-02 04:25:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:47", + "echoMap": {}, + "alarmNo": "1630075861", + "alarmDate": "1769977541174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613195", + "createdBy": null, + "createdTime": "2026-02-02 04:25:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:23", + "echoMap": {}, + "alarmNo": "1630075860", + "alarmDate": "1769977522098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613174", + "createdBy": null, + "createdTime": "2026-02-02 04:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:31", + "echoMap": {}, + "alarmNo": "1630075859", + "alarmDate": "1769977509485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613017", + "createdBy": null, + "createdTime": "2026-02-02 04:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:14", + "echoMap": {}, + "alarmNo": "1630075858", + "alarmDate": "1769976966150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113050582613007", + "createdBy": null, + "createdTime": "2026-02-02 04:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:25:31", + "echoMap": {}, + "alarmNo": "1630075857", + "alarmDate": "1769976961685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113046287645756", + "createdBy": null, + "createdTime": "2026-02-02 04:15:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:50", + "echoMap": {}, + "alarmNo": "1630075856", + "alarmDate": "1769976943740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113046287645709", + "createdBy": null, + "createdTime": "2026-02-02 04:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:14", + "echoMap": {}, + "alarmNo": "1630075855", + "alarmDate": "1769976909594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113041992678499", + "createdBy": null, + "createdTime": "2026-02-02 04:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:35", + "echoMap": {}, + "alarmNo": "1630075854", + "alarmDate": "1769976365761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113041992678466", + "createdBy": null, + "createdTime": "2026-02-02 04:05:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:02", + "echoMap": {}, + "alarmNo": "1630075853", + "alarmDate": "1769976350454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113041992678439", + "createdBy": null, + "createdTime": "2026-02-02 04:05:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:05:38", + "echoMap": {}, + "alarmNo": "1630075852", + "alarmDate": "1769976332358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743899", + "createdBy": null, + "createdTime": "2026-02-02 03:55:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:51", + "echoMap": {}, + "alarmNo": "1630075851", + "alarmDate": "1769975738096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743893", + "createdBy": null, + "createdTime": "2026-02-02 03:55:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:42", + "echoMap": {}, + "alarmNo": "1630075850", + "alarmDate": "1769975736417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743884", + "createdBy": null, + "createdTime": "2026-02-02 03:55:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:33", + "echoMap": {}, + "alarmNo": "1630075849", + "alarmDate": "1769975731491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743877", + "createdBy": null, + "createdTime": "2026-02-02 03:55:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:30", + "echoMap": {}, + "alarmNo": "1630075848", + "alarmDate": "1769975729127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113033402743874", + "createdBy": null, + "createdTime": "2026-02-02 03:55:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:30", + "echoMap": {}, + "alarmNo": "1630075847", + "alarmDate": "1769975728793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809425", + "createdBy": null, + "createdTime": "2026-02-02 03:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:55:26", + "echoMap": {}, + "alarmNo": "1630075846", + "alarmDate": "1769975162826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809366", + "createdBy": null, + "createdTime": "2026-02-02 03:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:39", + "echoMap": {}, + "alarmNo": "1630075845", + "alarmDate": "1769975126857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809360", + "createdBy": null, + "createdTime": "2026-02-02 03:45:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:31", + "echoMap": {}, + "alarmNo": "1630075844", + "alarmDate": "1769975125223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809345", + "createdBy": null, + "createdTime": "2026-02-02 03:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:45:15", + "echoMap": {}, + "alarmNo": "1630075843", + "alarmDate": "1769975109730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113024812809217", + "createdBy": null, + "createdTime": "2026-02-02 03:38:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:37", + "echoMap": {}, + "alarmNo": "1630075842", + "alarmDate": "1769974707434", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1018040007", + "deviceName": "华为前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1018" + }, + { + "id": "723113020517841925", + "createdBy": null, + "createdTime": "2026-02-02 03:35:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:58", + "echoMap": {}, + "alarmNo": "1630075841", + "alarmDate": "1769974551579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113016222874827", + "createdBy": null, + "createdTime": "2026-02-02 03:35:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:19", + "echoMap": {}, + "alarmNo": "1630075840", + "alarmDate": "1769974512938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113016222874654", + "createdBy": null, + "createdTime": "2026-02-02 03:25:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:22", + "echoMap": {}, + "alarmNo": "1630075839", + "alarmDate": "1769973957359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113016222874627", + "createdBy": null, + "createdTime": "2026-02-02 03:25:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:46", + "echoMap": {}, + "alarmNo": "1630075838", + "alarmDate": "1769973940374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113011927907397", + "createdBy": null, + "createdTime": "2026-02-02 03:25:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:37", + "echoMap": {}, + "alarmNo": "1630075837", + "alarmDate": "1769973936423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113011927907360", + "createdBy": null, + "createdTime": "2026-02-02 03:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:11", + "echoMap": {}, + "alarmNo": "1630075836", + "alarmDate": "1769973909249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940135", + "createdBy": null, + "createdTime": "2026-02-02 03:15:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:07", + "echoMap": {}, + "alarmNo": "1630075835", + "alarmDate": "1769973356798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940123", + "createdBy": null, + "createdTime": "2026-02-02 03:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:58", + "echoMap": {}, + "alarmNo": "1630075834", + "alarmDate": "1769973346126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940089", + "createdBy": null, + "createdTime": "2026-02-02 03:15:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:34", + "echoMap": {}, + "alarmNo": "1630075833", + "alarmDate": "1769973333387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723113007632940075", + "createdBy": null, + "createdTime": "2026-02-02 03:15:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:34", + "echoMap": {}, + "alarmNo": "1630075832", + "alarmDate": "1769973328084", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112999043005564", + "createdBy": null, + "createdTime": "2026-02-02 03:05:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:02", + "echoMap": {}, + "alarmNo": "1630075831", + "alarmDate": "1769972756323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112999043005521", + "createdBy": null, + "createdTime": "2026-02-02 03:05:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:47", + "echoMap": {}, + "alarmNo": "1630075830", + "alarmDate": "1769972734779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112999043005482", + "createdBy": null, + "createdTime": "2026-02-02 03:05:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:23", + "echoMap": {}, + "alarmNo": "1630075829", + "alarmDate": "1769972710696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112990453071052", + "createdBy": null, + "createdTime": "2026-02-02 02:56:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:06", + "echoMap": {}, + "alarmNo": "1630075828", + "alarmDate": "1769972159559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112990453071027", + "createdBy": null, + "createdTime": "2026-02-02 02:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:44", + "echoMap": {}, + "alarmNo": "1630075827", + "alarmDate": "1769972142538", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112990453070999", + "createdBy": null, + "createdTime": "2026-02-02 02:55:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:30", + "echoMap": {}, + "alarmNo": "1630075826", + "alarmDate": "1769972123529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112986158103611", + "createdBy": null, + "createdTime": "2026-02-02 02:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:11", + "echoMap": {}, + "alarmNo": "1630075825", + "alarmDate": "1769971566312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112986158103589", + "createdBy": null, + "createdTime": "2026-02-02 02:45:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:55", + "echoMap": {}, + "alarmNo": "1630075824", + "alarmDate": "1769971553689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112986158103574", + "createdBy": null, + "createdTime": "2026-02-02 02:45:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:54", + "echoMap": {}, + "alarmNo": "1630075823", + "alarmDate": "1769971547370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136502", + "createdBy": null, + "createdTime": "2026-02-02 02:45:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:40", + "echoMap": {}, + "alarmNo": "1630075822", + "alarmDate": "1769971533690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136470", + "createdBy": null, + "createdTime": "2026-02-02 02:45:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:18", + "echoMap": {}, + "alarmNo": "1630075821", + "alarmDate": "1769971511267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136287", + "createdBy": null, + "createdTime": "2026-02-02 02:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:06", + "echoMap": {}, + "alarmNo": "1630075820", + "alarmDate": "1769970954024", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112981863136259", + "createdBy": null, + "createdTime": "2026-02-02 02:35:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:42", + "echoMap": {}, + "alarmNo": "1630075819", + "alarmDate": "1769970936020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112977568169001", + "createdBy": null, + "createdTime": "2026-02-02 02:35:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:28", + "echoMap": {}, + "alarmNo": "1630075818", + "alarmDate": "1769970921498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112973273201724", + "createdBy": null, + "createdTime": "2026-02-02 02:25:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:50", + "echoMap": {}, + "alarmNo": "1630075817", + "alarmDate": "1769970348564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112973273201710", + "createdBy": null, + "createdTime": "2026-02-02 02:25:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:55", + "echoMap": {}, + "alarmNo": "1630075816", + "alarmDate": "1769970342751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112973273201667", + "createdBy": null, + "createdTime": "2026-02-02 02:25:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:21", + "echoMap": {}, + "alarmNo": "1630075815", + "alarmDate": "1769970320111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112964683267248", + "createdBy": null, + "createdTime": "2026-02-02 02:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:31", + "echoMap": {}, + "alarmNo": "1630075814", + "alarmDate": "1769969767615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112964683267180", + "createdBy": null, + "createdTime": "2026-02-02 02:15:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:37", + "echoMap": {}, + "alarmNo": "1630075813", + "alarmDate": "1769969731426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112964683267141", + "createdBy": null, + "createdTime": "2026-02-02 02:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:19", + "echoMap": {}, + "alarmNo": "1630075812", + "alarmDate": "1769969709447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112960388299799", + "createdBy": null, + "createdTime": "2026-02-02 02:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:25:16", + "echoMap": {}, + "alarmNo": "1630075811", + "alarmDate": "1769969164793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112956093332684", + "createdBy": null, + "createdTime": "2026-02-02 02:05:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:01", + "echoMap": {}, + "alarmNo": "1630075810", + "alarmDate": "1769969149186", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112956093332491", + "createdBy": null, + "createdTime": "2026-02-02 01:56:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:25", + "echoMap": {}, + "alarmNo": "1630075809", + "alarmDate": "1769968561888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365250", + "createdBy": null, + "createdTime": "2026-02-02 01:55:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:15:46", + "echoMap": {}, + "alarmNo": "1630075808", + "alarmDate": "1769968555736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365243", + "createdBy": null, + "createdTime": "2026-02-02 01:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:55", + "echoMap": {}, + "alarmNo": "1630075807", + "alarmDate": "1769968553786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365242", + "createdBy": null, + "createdTime": "2026-02-02 01:55:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:00", + "echoMap": {}, + "alarmNo": "1630075806", + "alarmDate": "1769968553608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112951798365217", + "createdBy": null, + "createdTime": "2026-02-02 01:55:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:50", + "echoMap": {}, + "alarmNo": "1630075805", + "alarmDate": "1769968543921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112947503398082", + "createdBy": null, + "createdTime": "2026-02-02 01:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:14", + "echoMap": {}, + "alarmNo": "1630075804", + "alarmDate": "1769968509893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112947503397901", + "createdBy": null, + "createdTime": "2026-02-02 01:45:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:03", + "echoMap": {}, + "alarmNo": "1630075803", + "alarmDate": "1769967950665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430666", + "createdBy": null, + "createdTime": "2026-02-02 01:45:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:44", + "echoMap": {}, + "alarmNo": "1630075802", + "alarmDate": "1769967943372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430662", + "createdBy": null, + "createdTime": "2026-02-02 01:45:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:48", + "echoMap": {}, + "alarmNo": "1630075801", + "alarmDate": "1769967942452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430640", + "createdBy": null, + "createdTime": "2026-02-02 01:45:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:39", + "echoMap": {}, + "alarmNo": "1630075800", + "alarmDate": "1769967926627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112943208430626", + "createdBy": null, + "createdTime": "2026-02-02 01:45:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:21", + "echoMap": {}, + "alarmNo": "1630075799", + "alarmDate": "1769967919952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463395", + "createdBy": null, + "createdTime": "2026-02-02 01:35:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:45", + "echoMap": {}, + "alarmNo": "1630075798", + "alarmDate": "1769967338439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463368", + "createdBy": null, + "createdTime": "2026-02-02 01:35:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:37", + "echoMap": {}, + "alarmNo": "1630075797", + "alarmDate": "1769967330885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463327", + "createdBy": null, + "createdTime": "2026-02-02 01:35:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:12", + "echoMap": {}, + "alarmNo": "1630075796", + "alarmDate": "1769967311090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112938913463323", + "createdBy": null, + "createdTime": "2026-02-02 01:35:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:31", + "echoMap": {}, + "alarmNo": "1630075795", + "alarmDate": "1769967309897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528860", + "createdBy": null, + "createdTime": "2026-02-02 01:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:26", + "echoMap": {}, + "alarmNo": "1630075794", + "alarmDate": "1769966763166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528855", + "createdBy": null, + "createdTime": "2026-02-02 01:26:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:01", + "echoMap": {}, + "alarmNo": "1630075793", + "alarmDate": "1769966759906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528839", + "createdBy": null, + "createdTime": "2026-02-02 01:25:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:53", + "echoMap": {}, + "alarmNo": "1630075792", + "alarmDate": "1769966751519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528818", + "createdBy": null, + "createdTime": "2026-02-02 01:25:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:40", + "echoMap": {}, + "alarmNo": "1630075791", + "alarmDate": "1769966739430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528798", + "createdBy": null, + "createdTime": "2026-02-02 01:25:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:33", + "echoMap": {}, + "alarmNo": "1630075790", + "alarmDate": "1769966727044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528780", + "createdBy": null, + "createdTime": "2026-02-02 01:25:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:26", + "echoMap": {}, + "alarmNo": "1630075789", + "alarmDate": "1769966718621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112930323528761", + "createdBy": null, + "createdTime": "2026-02-02 01:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:15", + "echoMap": {}, + "alarmNo": "1630075788", + "alarmDate": "1769966709070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112921733594310", + "createdBy": null, + "createdTime": "2026-02-02 01:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:58", + "echoMap": {}, + "alarmNo": "1630075787", + "alarmDate": "1769966145859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112921733594258", + "createdBy": null, + "createdTime": "2026-02-02 01:15:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:13", + "echoMap": {}, + "alarmNo": "1630075786", + "alarmDate": "1769966108387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112917438626853", + "createdBy": null, + "createdTime": "2026-02-02 01:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:22", + "echoMap": {}, + "alarmNo": "1630075785", + "alarmDate": "1769965558708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659732", + "createdBy": null, + "createdTime": "2026-02-02 01:05:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:47", + "echoMap": {}, + "alarmNo": "1630075784", + "alarmDate": "1769965534553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659710", + "createdBy": null, + "createdTime": "2026-02-02 01:05:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:31", + "echoMap": {}, + "alarmNo": "1630075783", + "alarmDate": "1769965525072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659696", + "createdBy": null, + "createdTime": "2026-02-02 01:05:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:20", + "echoMap": {}, + "alarmNo": "1630075782", + "alarmDate": "1769965518858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659693", + "createdBy": null, + "createdTime": "2026-02-02 01:05:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:19", + "echoMap": {}, + "alarmNo": "1630075781", + "alarmDate": "1769965518252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659678", + "createdBy": null, + "createdTime": "2026-02-02 01:05:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:11", + "echoMap": {}, + "alarmNo": "1630075780", + "alarmDate": "1769965509524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112913143659522", + "createdBy": null, + "createdTime": "2026-02-02 00:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:07", + "echoMap": {}, + "alarmNo": "1630075779", + "alarmDate": "1769964966000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112908848692283", + "createdBy": null, + "createdTime": "2026-02-02 00:55:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:56", + "echoMap": {}, + "alarmNo": "1630075778", + "alarmDate": "1769964954603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060058", + "deviceName": "[213](10)四川北2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112908848692268", + "createdBy": null, + "createdTime": "2026-02-02 00:55:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:52", + "echoMap": {}, + "alarmNo": "1630075777", + "alarmDate": "1769964947299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112908848692227", + "createdBy": null, + "createdTime": "2026-02-02 00:55:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:35", + "echoMap": {}, + "alarmNo": "1630075776", + "alarmDate": "1769964922431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112904553725138", + "createdBy": null, + "createdTime": "2026-02-02 00:55:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:20", + "echoMap": {}, + "alarmNo": "1630075775", + "alarmDate": "1769964913836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112904553724937", + "createdBy": null, + "createdTime": "2026-02-02 00:45:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:41", + "echoMap": {}, + "alarmNo": "1630075774", + "alarmDate": "1769964335046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112900258757682", + "createdBy": null, + "createdTime": "2026-02-02 00:45:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:23", + "echoMap": {}, + "alarmNo": "1630075773", + "alarmDate": "1769964311000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112900258757676", + "createdBy": null, + "createdTime": "2026-02-02 00:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:09", + "echoMap": {}, + "alarmNo": "1630075772", + "alarmDate": "1769964307541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790528", + "createdBy": null, + "createdTime": "2026-02-02 00:39:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:48", + "echoMap": {}, + "alarmNo": "1630075771", + "alarmDate": "1769963989056", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1018030023", + "deviceName": "安防箱23", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1018" + }, + { + "id": "723112895963790461", + "createdBy": null, + "createdTime": "2026-02-02 00:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:57", + "echoMap": {}, + "alarmNo": "1630075770", + "alarmDate": "1769963758427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790451", + "createdBy": null, + "createdTime": "2026-02-02 00:35:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:59", + "echoMap": {}, + "alarmNo": "1630075769", + "alarmDate": "1769963752879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790435", + "createdBy": null, + "createdTime": "2026-02-02 00:35:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:47", + "echoMap": {}, + "alarmNo": "1630075768", + "alarmDate": "1769963734452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790420", + "createdBy": null, + "createdTime": "2026-02-02 00:35:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:24", + "echoMap": {}, + "alarmNo": "1630075767", + "alarmDate": "1769963723362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112895963790411", + "createdBy": null, + "createdTime": "2026-02-02 00:35:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:27", + "echoMap": {}, + "alarmNo": "1630075766", + "alarmDate": "1769963721270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060018", + "deviceName": "[341](10)四川北4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855949", + "createdBy": null, + "createdTime": "2026-02-02 00:26:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:29", + "echoMap": {}, + "alarmNo": "1630075765", + "alarmDate": "1769963159766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855929", + "createdBy": null, + "createdTime": "2026-02-02 00:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:22", + "echoMap": {}, + "alarmNo": "1630075764", + "alarmDate": "1769963147118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855913", + "createdBy": null, + "createdTime": "2026-02-02 00:25:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:48", + "echoMap": {}, + "alarmNo": "1630075763", + "alarmDate": "1769963141548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855859", + "createdBy": null, + "createdTime": "2026-02-02 00:25:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:35", + "echoMap": {}, + "alarmNo": "1630075762", + "alarmDate": "1769963123172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855836", + "createdBy": null, + "createdTime": "2026-02-02 00:25:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:19", + "echoMap": {}, + "alarmNo": "1630075761", + "alarmDate": "1769963117802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060016", + "deviceName": "[214](10)四川北4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112887373855817", + "createdBy": null, + "createdTime": "2026-02-02 00:25:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:17", + "echoMap": {}, + "alarmNo": "1630075760", + "alarmDate": "1769963109441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112878783921309", + "createdBy": null, + "createdTime": "2026-02-02 00:15:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:00", + "echoMap": {}, + "alarmNo": "1630075759", + "alarmDate": "1769962548273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112878783921266", + "createdBy": null, + "createdTime": "2026-02-02 00:15:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:36", + "echoMap": {}, + "alarmNo": "1630075758", + "alarmDate": "1769962530242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112870193986587", + "createdBy": null, + "createdTime": "2026-02-02 00:05:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:48", + "echoMap": {}, + "alarmNo": "1630075757", + "alarmDate": "1769961935969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060078", + "deviceName": "[331](10)四川北3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112870193986576", + "createdBy": null, + "createdTime": "2026-02-02 00:05:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:29", + "echoMap": {}, + "alarmNo": "1630075756", + "alarmDate": "1769961928492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060079", + "deviceName": "[212](10)四川北3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + }, + { + "id": "723112865899019327", + "createdBy": null, + "createdTime": "2026-02-02 00:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:11", + "echoMap": {}, + "alarmNo": "1630075755", + "alarmDate": "1769961909461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1018060080", + "deviceName": "[332](10)四川北3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1018" + } + ] + }, + "1019": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113488668462459", + "createdBy": null, + "createdTime": "2026-02-02 00:07:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:50", + "echoMap": {}, + "alarmNo": "1650390304", + "alarmDate": "1769962068828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113505848331445", + "createdBy": null, + "createdTime": "2026-02-02 00:17:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:35", + "echoMap": {}, + "alarmNo": "1650390305", + "alarmDate": "1769962654121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113514438266217", + "createdBy": null, + "createdTime": "2026-02-02 00:27:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:11", + "echoMap": {}, + "alarmNo": "1650390306", + "alarmDate": "1769963229836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113531618135119", + "createdBy": null, + "createdTime": "2026-02-02 00:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:39", + "echoMap": {}, + "alarmNo": "1650390307", + "alarmDate": "1769963499639", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113535913102383", + "createdBy": null, + "createdTime": "2026-02-02 00:37:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:29", + "echoMap": {}, + "alarmNo": "1650390308", + "alarmDate": "1769963847547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113548798004721", + "createdBy": null, + "createdTime": "2026-02-02 00:47:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:28", + "echoMap": {}, + "alarmNo": "1650390309", + "alarmDate": "1769964447018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113557387938942", + "createdBy": null, + "createdTime": "2026-02-02 00:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:43", + "echoMap": {}, + "alarmNo": "1650390310", + "alarmDate": "1769964462355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113574567808329", + "createdBy": null, + "createdTime": "2026-02-02 00:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:01", + "echoMap": {}, + "alarmNo": "1650390311", + "alarmDate": "1769965080246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113574567808371", + "createdBy": null, + "createdTime": "2026-02-02 01:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:39", + "echoMap": {}, + "alarmNo": "1650390312", + "alarmDate": "1769965239751", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113583157742677", + "createdBy": null, + "createdTime": "2026-02-02 01:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:09", + "echoMap": {}, + "alarmNo": "1650390313", + "alarmDate": "1769965628361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113596042644771", + "createdBy": null, + "createdTime": "2026-02-02 01:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:21", + "echoMap": {}, + "alarmNo": "1650390314", + "alarmDate": "1769966240073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113596042644830", + "createdBy": null, + "createdTime": "2026-02-02 01:17:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:24", + "echoMap": {}, + "alarmNo": "1650390315", + "alarmDate": "1769966243282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113608927546901", + "createdBy": null, + "createdTime": "2026-02-02 01:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:41", + "echoMap": {}, + "alarmNo": "1650390316", + "alarmDate": "1769966860178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113621812449096", + "createdBy": null, + "createdTime": "2026-02-02 01:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:58", + "echoMap": {}, + "alarmNo": "1650390317", + "alarmDate": "1769967476811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113621812449173", + "createdBy": null, + "createdTime": "2026-02-02 01:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:02", + "echoMap": {}, + "alarmNo": "1650390318", + "alarmDate": "1769967481001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113626107415608", + "createdBy": null, + "createdTime": "2026-02-02 01:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:05", + "echoMap": {}, + "alarmNo": "1650390319", + "alarmDate": "1769968023948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113630402382887", + "createdBy": null, + "createdTime": "2026-02-02 01:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:13", + "echoMap": {}, + "alarmNo": "1650390320", + "alarmDate": "1769968032178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113647582252151", + "createdBy": null, + "createdTime": "2026-02-02 01:57:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:21", + "echoMap": {}, + "alarmNo": "1650390321", + "alarmDate": "1769968639743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154325", + "createdBy": null, + "createdTime": "2026-02-02 02:07:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:37", + "echoMap": {}, + "alarmNo": "1650390322", + "alarmDate": "1769969255656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154622", + "createdBy": null, + "createdTime": "2026-02-02 02:07:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:54", + "echoMap": {}, + "alarmNo": "1650390323", + "alarmDate": "1769969272945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154819", + "createdBy": null, + "createdTime": "2026-02-02 02:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:13:39", + "echoMap": {}, + "alarmNo": "1650390324", + "alarmDate": "1769969559640", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154923", + "createdBy": null, + "createdTime": "2026-02-02 02:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:05", + "echoMap": {}, + "alarmNo": "1650390325", + "alarmDate": "1769969824280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113673352056508", + "createdBy": null, + "createdTime": "2026-02-02 02:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:52", + "echoMap": {}, + "alarmNo": "1650390326", + "alarmDate": "1769969871477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113699121859675", + "createdBy": null, + "createdTime": "2026-02-02 02:37:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:18", + "echoMap": {}, + "alarmNo": "1650390327", + "alarmDate": "1769971036522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113699121860182", + "createdBy": null, + "createdTime": "2026-02-02 02:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:47", + "echoMap": {}, + "alarmNo": "1650390328", + "alarmDate": "1769971066062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113712006761783", + "createdBy": null, + "createdTime": "2026-02-02 02:47:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:31", + "echoMap": {}, + "alarmNo": "1650390329", + "alarmDate": "1769971650101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113724891663988", + "createdBy": null, + "createdTime": "2026-02-02 02:57:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:50", + "echoMap": {}, + "alarmNo": "1650390330", + "alarmDate": "1769972269052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113737776565663", + "createdBy": null, + "createdTime": "2026-02-02 03:07:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:38", + "echoMap": {}, + "alarmNo": "1650390331", + "alarmDate": "1769972857157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113737776566076", + "createdBy": null, + "createdTime": "2026-02-02 03:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:02", + "echoMap": {}, + "alarmNo": "1650390332", + "alarmDate": "1769972880760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113742071532561", + "createdBy": null, + "createdTime": "2026-02-02 03:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:09", + "echoMap": {}, + "alarmNo": "1650390333", + "alarmDate": "1769973427901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113750661467961", + "createdBy": null, + "createdTime": "2026-02-02 03:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:39", + "echoMap": {}, + "alarmNo": "1650390334", + "alarmDate": "1769973519621", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113763546369278", + "createdBy": null, + "createdTime": "2026-02-02 03:27:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:31", + "echoMap": {}, + "alarmNo": "1650390335", + "alarmDate": "1769974049888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113776431271154", + "createdBy": null, + "createdTime": "2026-02-02 03:37:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:31", + "echoMap": {}, + "alarmNo": "1650390336", + "alarmDate": "1769974650257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113776431271314", + "createdBy": null, + "createdTime": "2026-02-02 03:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:40", + "echoMap": {}, + "alarmNo": "1650390337", + "alarmDate": "1769974659473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113789316173735", + "createdBy": null, + "createdTime": "2026-02-02 03:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:06", + "echoMap": {}, + "alarmNo": "1650390339", + "alarmDate": "1769975825008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113789316173819", + "createdBy": null, + "createdTime": "2026-02-02 03:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:11", + "echoMap": {}, + "alarmNo": "1650390340", + "alarmDate": "1769975829592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113802201075277", + "createdBy": null, + "createdTime": "2026-02-02 03:57:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:49", + "echoMap": {}, + "alarmNo": "1650390341", + "alarmDate": "1769975869432", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060035", + "deviceName": "[406](10)海伦3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113815085976687", + "createdBy": null, + "createdTime": "2026-02-02 04:07:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:24", + "echoMap": {}, + "alarmNo": "1650390343", + "alarmDate": "1769976443382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113827970878642", + "createdBy": null, + "createdTime": "2026-02-02 04:17:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:37", + "echoMap": {}, + "alarmNo": "1650390344", + "alarmDate": "1769977055565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113827970878730", + "createdBy": null, + "createdTime": "2026-02-02 04:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:42", + "echoMap": {}, + "alarmNo": "1650390345", + "alarmDate": "1769977061289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113840855781157", + "createdBy": null, + "createdTime": "2026-02-02 04:37:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:16", + "echoMap": {}, + "alarmNo": "1650390346", + "alarmDate": "1769978235367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113853740683029", + "createdBy": null, + "createdTime": "2026-02-02 04:47:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:23", + "echoMap": {}, + "alarmNo": "1650390347", + "alarmDate": "1769978841991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113866625584931", + "createdBy": null, + "createdTime": "2026-02-02 04:57:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:32", + "echoMap": {}, + "alarmNo": "1650390348", + "alarmDate": "1769979450673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113879510486093", + "createdBy": null, + "createdTime": "2026-02-02 04:57:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:57", + "echoMap": {}, + "alarmNo": "1650390349", + "alarmDate": "1769979476249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113879510486316", + "createdBy": null, + "createdTime": "2026-02-02 05:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:08", + "echoMap": {}, + "alarmNo": "1650390350", + "alarmDate": "1769980027485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113879510486670", + "createdBy": null, + "createdTime": "2026-02-02 05:08:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:39", + "echoMap": {}, + "alarmNo": "1650390351", + "alarmDate": "1769980119683", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113892395388469", + "createdBy": null, + "createdTime": "2026-02-02 05:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:44", + "echoMap": {}, + "alarmNo": "1650390352", + "alarmDate": "1769981263188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113892395388521", + "createdBy": null, + "createdTime": "2026-02-02 05:27:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:50", + "echoMap": {}, + "alarmNo": "1650390353", + "alarmDate": "1769981269328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113905280290046", + "createdBy": null, + "createdTime": "2026-02-02 05:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:22", + "echoMap": {}, + "alarmNo": "1650390354", + "alarmDate": "1769982423675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113913870224626", + "createdBy": null, + "createdTime": "2026-02-02 05:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:45", + "echoMap": {}, + "alarmNo": "1650390355", + "alarmDate": "1769983064095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113913870224644", + "createdBy": null, + "createdTime": "2026-02-02 05:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:46", + "echoMap": {}, + "alarmNo": "1650390356", + "alarmDate": "1769983065437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113922460159728", + "createdBy": null, + "createdTime": "2026-02-02 06:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:07", + "echoMap": {}, + "alarmNo": "1650390357", + "alarmDate": "1769984823674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060117", + "deviceName": "[632](10)海伦围墙3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050093647", + "createdBy": null, + "createdTime": "2026-02-02 06:27:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:39", + "echoMap": {}, + "alarmNo": "1650390358", + "alarmDate": "1769984857989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050093729", + "createdBy": null, + "createdTime": "2026-02-02 06:27:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:46", + "echoMap": {}, + "alarmNo": "1650390359", + "alarmDate": "1769984864535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050093998", + "createdBy": null, + "createdTime": "2026-02-02 06:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:39", + "echoMap": {}, + "alarmNo": "1650390360", + "alarmDate": "1769985399631", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050094392", + "createdBy": null, + "createdTime": "2026-02-02 06:37:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:39", + "echoMap": {}, + "alarmNo": "1650390361", + "alarmDate": "1769985470074", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028210", + "createdBy": null, + "createdTime": "2026-02-02 06:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:08", + "echoMap": {}, + "alarmNo": "1650390362", + "alarmDate": "1769986024299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028328", + "createdBy": null, + "createdTime": "2026-02-02 06:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:19", + "echoMap": {}, + "alarmNo": "1650390363", + "alarmDate": "1769986037540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028356", + "createdBy": null, + "createdTime": "2026-02-02 06:47:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:32", + "echoMap": {}, + "alarmNo": "1650390364", + "alarmDate": "1769986040311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028357", + "createdBy": null, + "createdTime": "2026-02-02 06:47:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:21", + "echoMap": {}, + "alarmNo": "1650390365", + "alarmDate": "1769986040342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028452", + "createdBy": null, + "createdTime": "2026-02-02 06:47:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:38", + "echoMap": {}, + "alarmNo": "1650390366", + "alarmDate": "1769986050615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060066", + "deviceName": "[311](10)海伦7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028578", + "createdBy": null, + "createdTime": "2026-02-02 06:47:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:33", + "echoMap": {}, + "alarmNo": "1650390367", + "alarmDate": "1769986064353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028707", + "createdBy": null, + "createdTime": "2026-02-02 06:47:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:29", + "echoMap": {}, + "alarmNo": "1650390368", + "alarmDate": "1769986076718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060066", + "deviceName": "[311](10)海伦7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028809", + "createdBy": null, + "createdTime": "2026-02-02 06:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:39", + "echoMap": {}, + "alarmNo": "1650390369", + "alarmDate": "1769986359650", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113943934995510", + "createdBy": null, + "createdTime": "2026-02-02 06:57:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:39", + "echoMap": {}, + "alarmNo": "1650390370", + "alarmDate": "1769986657613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113948229962793", + "createdBy": null, + "createdTime": "2026-02-02 06:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:44", + "echoMap": {}, + "alarmNo": "1650390371", + "alarmDate": "1769986662619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113948229962812", + "createdBy": null, + "createdTime": "2026-02-02 06:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:56", + "echoMap": {}, + "alarmNo": "1650390372", + "alarmDate": "1769986664536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113948229963359", + "createdBy": null, + "createdTime": "2026-02-02 07:07:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:37", + "echoMap": {}, + "alarmNo": "1650390373", + "alarmDate": "1769987256737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060065", + "deviceName": "[312](10)海伦7#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113952524930104", + "createdBy": null, + "createdTime": "2026-02-02 07:17:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:12", + "echoMap": {}, + "alarmNo": "1650390374", + "alarmDate": "1769987831287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897405", + "createdBy": null, + "createdTime": "2026-02-02 07:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:21", + "echoMap": {}, + "alarmNo": "1650390375", + "alarmDate": "1769987839518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897503", + "createdBy": null, + "createdTime": "2026-02-02 07:17:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:42", + "echoMap": {}, + "alarmNo": "1650390376", + "alarmDate": "1769987850346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060055", + "deviceName": "[338](10)海伦10-4换乘扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897608", + "createdBy": null, + "createdTime": "2026-02-02 07:17:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:43", + "echoMap": {}, + "alarmNo": "1650390377", + "alarmDate": "1769987861949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897690", + "createdBy": null, + "createdTime": "2026-02-02 07:17:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:24", + "echoMap": {}, + "alarmNo": "1650390378", + "alarmDate": "1769987871871", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832006", + "createdBy": null, + "createdTime": "2026-02-02 07:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:39", + "echoMap": {}, + "alarmNo": "1650390379", + "alarmDate": "1769988399645", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060005", + "deviceName": "[604](10)海伦弱电设备集中室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832056", + "createdBy": null, + "createdTime": "2026-02-02 07:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:14", + "echoMap": {}, + "alarmNo": "1650390380", + "alarmDate": "1769988427632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832354", + "createdBy": null, + "createdTime": "2026-02-02 07:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:43", + "echoMap": {}, + "alarmNo": "1650390381", + "alarmDate": "1769988461791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832366", + "createdBy": null, + "createdTime": "2026-02-02 07:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:44", + "echoMap": {}, + "alarmNo": "1650390382", + "alarmDate": "1769988462757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113973999766647", + "createdBy": null, + "createdTime": "2026-02-02 07:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:06", + "echoMap": {}, + "alarmNo": "1650390384", + "alarmDate": "1769989024333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113973999767039", + "createdBy": null, + "createdTime": "2026-02-02 07:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:00", + "echoMap": {}, + "alarmNo": "1650390385", + "alarmDate": "1769989068315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113978294733831", + "createdBy": null, + "createdTime": "2026-02-02 07:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:53", + "echoMap": {}, + "alarmNo": "1650390386", + "alarmDate": "1769989071897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113982589701122", + "createdBy": null, + "createdTime": "2026-02-02 07:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:59", + "echoMap": {}, + "alarmNo": "1650390387", + "alarmDate": "1769989078096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113982589701299", + "createdBy": null, + "createdTime": "2026-02-02 07:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:08", + "echoMap": {}, + "alarmNo": "1650390388", + "alarmDate": "1769989627032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113982589701408", + "createdBy": null, + "createdTime": "2026-02-02 07:47:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:21", + "echoMap": {}, + "alarmNo": "1650390389", + "alarmDate": "1769989640337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636039", + "createdBy": null, + "createdTime": "2026-02-02 07:57:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:31", + "echoMap": {}, + "alarmNo": "1650390390", + "alarmDate": "1769990243755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060063", + "deviceName": "[314](10)海伦7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636053", + "createdBy": null, + "createdTime": "2026-02-02 07:57:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:31", + "echoMap": {}, + "alarmNo": "1650390391", + "alarmDate": "1769990245391", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636091", + "createdBy": null, + "createdTime": "2026-02-02 07:57:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:30", + "echoMap": {}, + "alarmNo": "1650390392", + "alarmDate": "1769990249293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636213", + "createdBy": null, + "createdTime": "2026-02-02 07:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:45", + "echoMap": {}, + "alarmNo": "1650390393", + "alarmDate": "1769990263700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636226", + "createdBy": null, + "createdTime": "2026-02-02 07:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:46", + "echoMap": {}, + "alarmNo": "1650390394", + "alarmDate": "1769990264751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113999769570304", + "createdBy": null, + "createdTime": "2026-02-02 07:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:19", + "echoMap": {}, + "alarmNo": "1650390395", + "alarmDate": "1769990279585", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113999769570873", + "createdBy": null, + "createdTime": "2026-02-02 08:07:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:56", + "echoMap": {}, + "alarmNo": "1650390396", + "alarmDate": "1769990874906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114008359505032", + "createdBy": null, + "createdTime": "2026-02-02 08:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:09", + "echoMap": {}, + "alarmNo": "1650390397", + "alarmDate": "1769991428045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114008359505157", + "createdBy": null, + "createdTime": "2026-02-02 08:17:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:22", + "echoMap": {}, + "alarmNo": "1650390398", + "alarmDate": "1769991441299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949439591", + "createdBy": null, + "createdTime": "2026-02-02 08:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:15", + "echoMap": {}, + "alarmNo": "1650390399", + "alarmDate": "1769992024017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949439854", + "createdBy": null, + "createdTime": "2026-02-02 08:27:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:37", + "echoMap": {}, + "alarmNo": "1650390400", + "alarmDate": "1769992050552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060117", + "deviceName": "[632](10)海伦围墙3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949439998", + "createdBy": null, + "createdTime": "2026-02-02 08:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:47", + "echoMap": {}, + "alarmNo": "1650390401", + "alarmDate": "1769992065554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949440000", + "createdBy": null, + "createdTime": "2026-02-02 08:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:58", + "echoMap": {}, + "alarmNo": "1650390402", + "alarmDate": "1769992065588", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114021244406794", + "createdBy": null, + "createdTime": "2026-02-02 08:27:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:51", + "echoMap": {}, + "alarmNo": "1650390403", + "alarmDate": "1769992069984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374265", + "createdBy": null, + "createdTime": "2026-02-02 08:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:03", + "echoMap": {}, + "alarmNo": "1650390404", + "alarmDate": "1769992621711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374307", + "createdBy": null, + "createdTime": "2026-02-02 08:37:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:13", + "echoMap": {}, + "alarmNo": "1650390405", + "alarmDate": "1769992626734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060117", + "deviceName": "[632](10)海伦围墙3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374479", + "createdBy": null, + "createdTime": "2026-02-02 08:37:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:28", + "echoMap": {}, + "alarmNo": "1650390406", + "alarmDate": "1769992647393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374734", + "createdBy": null, + "createdTime": "2026-02-02 08:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:58", + "echoMap": {}, + "alarmNo": "1650390407", + "alarmDate": "1769992676754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114029834341391", + "createdBy": null, + "createdTime": "2026-02-02 08:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:34", + "echoMap": {}, + "alarmNo": "1650390408", + "alarmDate": "1769992677806", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114029834341400", + "createdBy": null, + "createdTime": "2026-02-02 08:37:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:59", + "echoMap": {}, + "alarmNo": "1650390409", + "alarmDate": "1769992678519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129308854", + "createdBy": null, + "createdTime": "2026-02-02 08:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:13", + "echoMap": {}, + "alarmNo": "1650390410", + "alarmDate": "1769993232001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129308898", + "createdBy": null, + "createdTime": "2026-02-02 08:47:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:51", + "echoMap": {}, + "alarmNo": "1650390411", + "alarmDate": "1769993235547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129309051", + "createdBy": null, + "createdTime": "2026-02-02 08:47:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:33", + "echoMap": {}, + "alarmNo": "1650390412", + "alarmDate": "1769993252905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060023", + "deviceName": "[301](10)海伦5#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129309137", + "createdBy": null, + "createdTime": "2026-02-02 08:47:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:43", + "echoMap": {}, + "alarmNo": "1650390413", + "alarmDate": "1769993263176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060063", + "deviceName": "[314](10)海伦7#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114038424275983", + "createdBy": null, + "createdTime": "2026-02-02 08:47:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:00", + "echoMap": {}, + "alarmNo": "1650390414", + "alarmDate": "1769993274077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060114", + "deviceName": "[637](10)海伦出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114042719243411", + "createdBy": null, + "createdTime": "2026-02-02 08:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:04", + "echoMap": {}, + "alarmNo": "1650390415", + "alarmDate": "1769993824145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060114", + "deviceName": "[637](10)海伦出入口", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114042719243745", + "createdBy": null, + "createdTime": "2026-02-02 08:57:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:38", + "echoMap": {}, + "alarmNo": "1650390416", + "alarmDate": "1769993856967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114042719243844", + "createdBy": null, + "createdTime": "2026-02-02 08:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:47", + "echoMap": {}, + "alarmNo": "1650390417", + "alarmDate": "1769993865505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114047014210591", + "createdBy": null, + "createdTime": "2026-02-02 08:57:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:51", + "echoMap": {}, + "alarmNo": "1650390418", + "alarmDate": "1769993869979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114051309177945", + "createdBy": null, + "createdTime": "2026-02-02 08:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:48", + "echoMap": {}, + "alarmNo": "1650390419", + "alarmDate": "1769993882740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114051309178066", + "createdBy": null, + "createdTime": "2026-02-02 09:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:05", + "echoMap": {}, + "alarmNo": "1650390421", + "alarmDate": "1769994424367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114059899112565", + "createdBy": null, + "createdTime": "2026-02-02 09:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:00", + "echoMap": {}, + "alarmNo": "1650390422", + "alarmDate": "1769994478644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114059899112819", + "createdBy": null, + "createdTime": "2026-02-02 09:17:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:15", + "echoMap": {}, + "alarmNo": "1650390423", + "alarmDate": "1769995033795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114068489047506", + "createdBy": null, + "createdTime": "2026-02-02 09:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:13", + "echoMap": {}, + "alarmNo": "1650390424", + "alarmDate": "1769995631772", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114072784014383", + "createdBy": null, + "createdTime": "2026-02-02 09:27:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:40", + "echoMap": {}, + "alarmNo": "1650390425", + "alarmDate": "1769995648027", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078981684", + "createdBy": null, + "createdTime": "2026-02-02 09:27:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:34", + "echoMap": {}, + "alarmNo": "1650390426", + "alarmDate": "1769995653270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078981792", + "createdBy": null, + "createdTime": "2026-02-02 09:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:44", + "echoMap": {}, + "alarmNo": "1650390427", + "alarmDate": "1769995662929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078981876", + "createdBy": null, + "createdTime": "2026-02-02 09:27:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:52", + "echoMap": {}, + "alarmNo": "1650390428", + "alarmDate": "1769995671131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078982123", + "createdBy": null, + "createdTime": "2026-02-02 09:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:10", + "echoMap": {}, + "alarmNo": "1650390429", + "alarmDate": "1769996222954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060073", + "deviceName": "[105](10)海伦上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078982162", + "createdBy": null, + "createdTime": "2026-02-02 09:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:07", + "echoMap": {}, + "alarmNo": "1650390430", + "alarmDate": "1769996226385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114085668916765", + "createdBy": null, + "createdTime": "2026-02-02 09:42:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:39", + "echoMap": {}, + "alarmNo": "1650390431", + "alarmDate": "1769996559640", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114094258850922", + "createdBy": null, + "createdTime": "2026-02-02 09:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:19", + "echoMap": {}, + "alarmNo": "1650390432", + "alarmDate": "1769996837804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114094258850981", + "createdBy": null, + "createdTime": "2026-02-02 09:47:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:24", + "echoMap": {}, + "alarmNo": "1650390433", + "alarmDate": "1769996843403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114102848785881", + "createdBy": null, + "createdTime": "2026-02-02 09:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:43", + "echoMap": {}, + "alarmNo": "1650390434", + "alarmDate": "1769997462308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114107143752734", + "createdBy": null, + "createdTime": "2026-02-02 09:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:52", + "echoMap": {}, + "alarmNo": "1650390435", + "alarmDate": "1769997471253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114111438720178", + "createdBy": null, + "createdTime": "2026-02-02 10:05:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:39", + "echoMap": {}, + "alarmNo": "1650390436", + "alarmDate": "1769997939694", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060005", + "deviceName": "[604](10)海伦弱电设备集中室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114111438720219", + "createdBy": null, + "createdTime": "2026-02-02 10:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:08", + "echoMap": {}, + "alarmNo": "1650390437", + "alarmDate": "1769998024301", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114111438720245", + "createdBy": null, + "createdTime": "2026-02-02 10:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:08", + "echoMap": {}, + "alarmNo": "1650390438", + "alarmDate": "1769998026535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114115733687364", + "createdBy": null, + "createdTime": "2026-02-02 10:07:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:56", + "echoMap": {}, + "alarmNo": "1650390439", + "alarmDate": "1769998062330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028654927", + "createdBy": null, + "createdTime": "2026-02-02 10:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:16", + "echoMap": {}, + "alarmNo": "1650390440", + "alarmDate": "1769998624089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028655056", + "createdBy": null, + "createdTime": "2026-02-02 10:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:18", + "echoMap": {}, + "alarmNo": "1650390441", + "alarmDate": "1769998636706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028655095", + "createdBy": null, + "createdTime": "2026-02-02 10:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:25", + "echoMap": {}, + "alarmNo": "1650390442", + "alarmDate": "1769998640228", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028655154", + "createdBy": null, + "createdTime": "2026-02-02 10:17:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:26", + "echoMap": {}, + "alarmNo": "1650390443", + "alarmDate": "1769998645276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114124323621893", + "createdBy": null, + "createdTime": "2026-02-02 10:17:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:51", + "echoMap": {}, + "alarmNo": "1650390444", + "alarmDate": "1769998648783", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524055", + "createdBy": null, + "createdTime": "2026-02-02 10:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:56", + "echoMap": {}, + "alarmNo": "1650390446", + "alarmDate": "1769999275263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524266", + "createdBy": null, + "createdTime": "2026-02-02 10:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:10", + "echoMap": {}, + "alarmNo": "1650390447", + "alarmDate": "1769999823660", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524319", + "createdBy": null, + "createdTime": "2026-02-02 10:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:10", + "echoMap": {}, + "alarmNo": "1650390448", + "alarmDate": "1769999828627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524363", + "createdBy": null, + "createdTime": "2026-02-02 10:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:20", + "echoMap": {}, + "alarmNo": "1650390449", + "alarmDate": "1769999832624", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114145798458686", + "createdBy": null, + "createdTime": "2026-02-02 10:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:16", + "echoMap": {}, + "alarmNo": "1650390450", + "alarmDate": "1769999871771", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114145798458697", + "createdBy": null, + "createdTime": "2026-02-02 10:37:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:59", + "echoMap": {}, + "alarmNo": "1650390451", + "alarmDate": "1769999872562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114150093425684", + "createdBy": null, + "createdTime": "2026-02-02 10:47:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:40", + "echoMap": {}, + "alarmNo": "1650390452", + "alarmDate": "1770000429616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114154388393040", + "createdBy": null, + "createdTime": "2026-02-02 10:47:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:22", + "echoMap": {}, + "alarmNo": "1650390453", + "alarmDate": "1770000441086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114154388393080", + "createdBy": null, + "createdTime": "2026-02-02 10:47:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:32", + "echoMap": {}, + "alarmNo": "1650390454", + "alarmDate": "1770000444765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114162978327795", + "createdBy": null, + "createdTime": "2026-02-02 10:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:46", + "echoMap": {}, + "alarmNo": "1650390455", + "alarmDate": "1770001065075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114162978327894", + "createdBy": null, + "createdTime": "2026-02-02 10:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:56", + "echoMap": {}, + "alarmNo": "1650390456", + "alarmDate": "1770001075410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114162978328135", + "createdBy": null, + "createdTime": "2026-02-02 11:07:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:10", + "echoMap": {}, + "alarmNo": "1650390457", + "alarmDate": "1770001628582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114171568262230", + "createdBy": null, + "createdTime": "2026-02-02 11:07:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:52", + "echoMap": {}, + "alarmNo": "1650390458", + "alarmDate": "1770001650966", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114171568262649", + "createdBy": null, + "createdTime": "2026-02-02 11:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:33", + "echoMap": {}, + "alarmNo": "1650390459", + "alarmDate": "1770002223364", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114180158197034", + "createdBy": null, + "createdTime": "2026-02-02 11:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:02", + "echoMap": {}, + "alarmNo": "1650390460", + "alarmDate": "1770002276292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114180158197116", + "createdBy": null, + "createdTime": "2026-02-02 11:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:39", + "echoMap": {}, + "alarmNo": "1650390461", + "alarmDate": "1770002319630", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060005", + "deviceName": "[604](10)海伦弱电设备集中室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131380", + "createdBy": null, + "createdTime": "2026-02-02 11:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:42", + "echoMap": {}, + "alarmNo": "1650390462", + "alarmDate": "1770002861153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131402", + "createdBy": null, + "createdTime": "2026-02-02 11:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:44", + "echoMap": {}, + "alarmNo": "1650390463", + "alarmDate": "1770002862979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131533", + "createdBy": null, + "createdTime": "2026-02-02 11:27:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:57", + "echoMap": {}, + "alarmNo": "1650390464", + "alarmDate": "1770002876539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131748", + "createdBy": null, + "createdTime": "2026-02-02 11:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:10", + "echoMap": {}, + "alarmNo": "1650390465", + "alarmDate": "1770003428812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114197338066357", + "createdBy": null, + "createdTime": "2026-02-02 11:47:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:20", + "echoMap": {}, + "alarmNo": "1650390466", + "alarmDate": "1770004038876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928000572", + "createdBy": null, + "createdTime": "2026-02-02 11:47:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:32", + "echoMap": {}, + "alarmNo": "1650390467", + "alarmDate": "1770004076052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928000645", + "createdBy": null, + "createdTime": "2026-02-02 11:48:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:41", + "echoMap": {}, + "alarmNo": "1650390468", + "alarmDate": "1770004120298", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928001056", + "createdBy": null, + "createdTime": "2026-02-02 11:57:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:40", + "echoMap": {}, + "alarmNo": "1650390469", + "alarmDate": "1770004658231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928001060", + "createdBy": null, + "createdTime": "2026-02-02 11:57:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:52", + "echoMap": {}, + "alarmNo": "1650390470", + "alarmDate": "1770004658307", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928001092", + "createdBy": null, + "createdTime": "2026-02-02 11:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:42", + "echoMap": {}, + "alarmNo": "1650390471", + "alarmDate": "1770004661205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114214517935127", + "createdBy": null, + "createdTime": "2026-02-02 11:57:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:10", + "echoMap": {}, + "alarmNo": "1650390472", + "alarmDate": "1770004676657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114214517935149", + "createdBy": null, + "createdTime": "2026-02-02 11:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:00", + "echoMap": {}, + "alarmNo": "1650390473", + "alarmDate": "1770004678417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107869983", + "createdBy": null, + "createdTime": "2026-02-02 12:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:48", + "echoMap": {}, + "alarmNo": "1650390474", + "alarmDate": "1770005840249", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107870031", + "createdBy": null, + "createdTime": "2026-02-02 12:17:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:37", + "echoMap": {}, + "alarmNo": "1650390475", + "alarmDate": "1770005844523", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107870361", + "createdBy": null, + "createdTime": "2026-02-02 12:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:55", + "echoMap": {}, + "alarmNo": "1650390476", + "alarmDate": "1770005874692", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107870362", + "createdBy": null, + "createdTime": "2026-02-02 12:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:00", + "echoMap": {}, + "alarmNo": "1650390477", + "alarmDate": "1770005874699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804691", + "createdBy": null, + "createdTime": "2026-02-02 12:27:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:35", + "echoMap": {}, + "alarmNo": "1650390478", + "alarmDate": "1770006454646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804746", + "createdBy": null, + "createdTime": "2026-02-02 12:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:42", + "echoMap": {}, + "alarmNo": "1650390479", + "alarmDate": "1770006460175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804875", + "createdBy": null, + "createdTime": "2026-02-02 12:27:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:54", + "echoMap": {}, + "alarmNo": "1650390480", + "alarmDate": "1770006473337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804940", + "createdBy": null, + "createdTime": "2026-02-02 12:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:36", + "echoMap": {}, + "alarmNo": "1650390481", + "alarmDate": "1770006479747", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114240287739006", + "createdBy": null, + "createdTime": "2026-02-02 12:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:07", + "echoMap": {}, + "alarmNo": "1650390482", + "alarmDate": "1770007026293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114240287739182", + "createdBy": null, + "createdTime": "2026-02-02 12:37:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:29", + "echoMap": {}, + "alarmNo": "1650390483", + "alarmDate": "1770007043521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114240287739472", + "createdBy": null, + "createdTime": "2026-02-02 12:37:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:00", + "echoMap": {}, + "alarmNo": "1650390484", + "alarmDate": "1770007073352", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114244582706223", + "createdBy": null, + "createdTime": "2026-02-02 12:39:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:42", + "echoMap": {}, + "alarmNo": "1650390485", + "alarmDate": "1770007181098", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114248877673592", + "createdBy": null, + "createdTime": "2026-02-02 12:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:11", + "echoMap": {}, + "alarmNo": "1650390486", + "alarmDate": "1770007625240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608133", + "createdBy": null, + "createdTime": "2026-02-02 12:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:11", + "echoMap": {}, + "alarmNo": "1650390487", + "alarmDate": "1770008223894", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608395", + "createdBy": null, + "createdTime": "2026-02-02 12:57:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:33", + "echoMap": {}, + "alarmNo": "1650390488", + "alarmDate": "1770008251752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608443", + "createdBy": null, + "createdTime": "2026-02-02 12:57:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:38", + "echoMap": {}, + "alarmNo": "1650390489", + "alarmDate": "1770008256560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608584", + "createdBy": null, + "createdTime": "2026-02-02 12:57:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:58", + "echoMap": {}, + "alarmNo": "1650390490", + "alarmDate": "1770008272088", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608605", + "createdBy": null, + "createdTime": "2026-02-02 12:57:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:55", + "echoMap": {}, + "alarmNo": "1650390491", + "alarmDate": "1770008273774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114266057542752", + "createdBy": null, + "createdTime": "2026-02-02 13:07:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:29", + "echoMap": {}, + "alarmNo": "1650390492", + "alarmDate": "1770008824535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060119", + "deviceName": "[634](10)海伦围墙4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114266057542790", + "createdBy": null, + "createdTime": "2026-02-02 13:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:08", + "echoMap": {}, + "alarmNo": "1650390493", + "alarmDate": "1770008827081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114266057543056", + "createdBy": null, + "createdTime": "2026-02-02 13:07:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:29", + "echoMap": {}, + "alarmNo": "1650390494", + "alarmDate": "1770008849420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060066", + "deviceName": "[311](10)海伦7#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114274647477446", + "createdBy": null, + "createdTime": "2026-02-02 13:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:09", + "echoMap": {}, + "alarmNo": "1650390495", + "alarmDate": "1770009424294", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114274647477558", + "createdBy": null, + "createdTime": "2026-02-02 13:17:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:33", + "echoMap": {}, + "alarmNo": "1650390496", + "alarmDate": "1770009434621", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114283237412045", + "createdBy": null, + "createdTime": "2026-02-02 13:23:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:39", + "echoMap": {}, + "alarmNo": "1650390497", + "alarmDate": "1770009819631", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114283237412268", + "createdBy": null, + "createdTime": "2026-02-02 13:27:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:27", + "echoMap": {}, + "alarmNo": "1650390498", + "alarmDate": "1770010040465", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114283237412377", + "createdBy": null, + "createdTime": "2026-02-02 13:27:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:31", + "echoMap": {}, + "alarmNo": "1650390499", + "alarmDate": "1770010050481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114287532379156", + "createdBy": null, + "createdTime": "2026-02-02 13:27:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:45", + "echoMap": {}, + "alarmNo": "1650390500", + "alarmDate": "1770010058450", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114291827346629", + "createdBy": null, + "createdTime": "2026-02-02 13:27:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:00", + "echoMap": {}, + "alarmNo": "1650390501", + "alarmDate": "1770010078872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114291827346880", + "createdBy": null, + "createdTime": "2026-02-02 13:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:14", + "echoMap": {}, + "alarmNo": "1650390502", + "alarmDate": "1770010633132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114300417281211", + "createdBy": null, + "createdTime": "2026-02-02 13:37:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:55", + "echoMap": {}, + "alarmNo": "1650390503", + "alarmDate": "1770010674507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060055", + "deviceName": "[338](10)海伦10-4换乘扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114300417281486", + "createdBy": null, + "createdTime": "2026-02-02 13:47:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:34", + "echoMap": {}, + "alarmNo": "1650390504", + "alarmDate": "1770011232680", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114300417281537", + "createdBy": null, + "createdTime": "2026-02-02 13:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:19", + "echoMap": {}, + "alarmNo": "1650390505", + "alarmDate": "1770011237545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114309007215911", + "createdBy": null, + "createdTime": "2026-02-02 13:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:39", + "echoMap": {}, + "alarmNo": "1650390506", + "alarmDate": "1770011281866", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114309007215990", + "createdBy": null, + "createdTime": "2026-02-02 13:54:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:39", + "echoMap": {}, + "alarmNo": "1650390507", + "alarmDate": "1770011679644", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114313302182912", + "createdBy": null, + "createdTime": "2026-02-02 13:57:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:26", + "echoMap": {}, + "alarmNo": "1650390508", + "alarmDate": "1770011845318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150254", + "createdBy": null, + "createdTime": "2026-02-02 13:57:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:36", + "echoMap": {}, + "alarmNo": "1650390509", + "alarmDate": "1770011855401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150509", + "createdBy": null, + "createdTime": "2026-02-02 13:58:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:03", + "echoMap": {}, + "alarmNo": "1650390510", + "alarmDate": "1770011881985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150627", + "createdBy": null, + "createdTime": "2026-02-02 14:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:21", + "echoMap": {}, + "alarmNo": "1650390511", + "alarmDate": "1770012423594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150745", + "createdBy": null, + "createdTime": "2026-02-02 14:07:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:16", + "echoMap": {}, + "alarmNo": "1650390512", + "alarmDate": "1770012435260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114321892117526", + "createdBy": null, + "createdTime": "2026-02-02 14:07:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:31", + "echoMap": {}, + "alarmNo": "1650390513", + "alarmDate": "1770012445164", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114326187084933", + "createdBy": null, + "createdTime": "2026-02-02 14:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:50", + "echoMap": {}, + "alarmNo": "1650390514", + "alarmDate": "1770012462753", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114326187084939", + "createdBy": null, + "createdTime": "2026-02-02 14:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:49", + "echoMap": {}, + "alarmNo": "1650390515", + "alarmDate": "1770012463194", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114326187085493", + "createdBy": null, + "createdTime": "2026-02-02 14:17:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:02", + "echoMap": {}, + "alarmNo": "1650390516", + "alarmDate": "1770013051173", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114334777019641", + "createdBy": null, + "createdTime": "2026-02-02 14:18:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:00", + "echoMap": {}, + "alarmNo": "1650390517", + "alarmDate": "1770013080252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114334777019794", + "createdBy": null, + "createdTime": "2026-02-02 14:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:12", + "echoMap": {}, + "alarmNo": "1650390518", + "alarmDate": "1770013626502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114334777019971", + "createdBy": null, + "createdTime": "2026-02-02 14:27:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:27", + "echoMap": {}, + "alarmNo": "1650390519", + "alarmDate": "1770013646206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366953989", + "createdBy": null, + "createdTime": "2026-02-02 14:27:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:39", + "echoMap": {}, + "alarmNo": "1650390520", + "alarmDate": "1770013658302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366954213", + "createdBy": null, + "createdTime": "2026-02-02 14:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:01", + "echoMap": {}, + "alarmNo": "1650390521", + "alarmDate": "1770013680068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366954331", + "createdBy": null, + "createdTime": "2026-02-02 14:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:40", + "echoMap": {}, + "alarmNo": "1650390522", + "alarmDate": "1770014223795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060119", + "deviceName": "[634](10)海伦围墙4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366954431", + "createdBy": null, + "createdTime": "2026-02-02 14:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:14", + "echoMap": {}, + "alarmNo": "1650390523", + "alarmDate": "1770014233339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114347661921291", + "createdBy": null, + "createdTime": "2026-02-02 14:37:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:34", + "echoMap": {}, + "alarmNo": "1650390524", + "alarmDate": "1770014253988", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113776431271679", + "createdBy": null, + "createdTime": "2026-02-02 03:38:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:59", + "echoMap": {}, + "alarmNo": "1650390338", + "alarmDate": "1769974680220", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030004", + "deviceName": "安防箱4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723113802201075537", + "createdBy": null, + "createdTime": "2026-02-02 04:02:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:59", + "echoMap": {}, + "alarmNo": "1650390342", + "alarmDate": "1769976179060", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030006", + "deviceName": "安防箱6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723113969704799250", + "createdBy": null, + "createdTime": "2026-02-02 07:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:58", + "echoMap": {}, + "alarmNo": "1650390383", + "alarmDate": "1769988477694", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723114128618589572", + "createdBy": null, + "createdTime": "2026-02-02 10:23:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:01", + "echoMap": {}, + "alarmNo": "1650390445", + "alarmDate": "1769998979605", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + } + ], + "ndmSwitch": [ + { + "id": "723114051309178009", + "createdBy": null, + "createdTime": "2026-02-02 09:03:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:45", + "echoMap": {}, + "alarmNo": "1650390420", + "alarmDate": "1769994219216", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1019040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1019" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723114347661921291", + "createdBy": null, + "createdTime": "2026-02-02 14:37:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:34", + "echoMap": {}, + "alarmNo": "1650390524", + "alarmDate": "1770014253988", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366954431", + "createdBy": null, + "createdTime": "2026-02-02 14:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:14", + "echoMap": {}, + "alarmNo": "1650390523", + "alarmDate": "1770014233339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366954331", + "createdBy": null, + "createdTime": "2026-02-02 14:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:40", + "echoMap": {}, + "alarmNo": "1650390522", + "alarmDate": "1770014223795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060119", + "deviceName": "[634](10)海伦围墙4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366954213", + "createdBy": null, + "createdTime": "2026-02-02 14:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:01", + "echoMap": {}, + "alarmNo": "1650390521", + "alarmDate": "1770013680068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114343366953989", + "createdBy": null, + "createdTime": "2026-02-02 14:27:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:39", + "echoMap": {}, + "alarmNo": "1650390520", + "alarmDate": "1770013658302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114334777019971", + "createdBy": null, + "createdTime": "2026-02-02 14:27:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:27", + "echoMap": {}, + "alarmNo": "1650390519", + "alarmDate": "1770013646206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114334777019794", + "createdBy": null, + "createdTime": "2026-02-02 14:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:12", + "echoMap": {}, + "alarmNo": "1650390518", + "alarmDate": "1770013626502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114334777019641", + "createdBy": null, + "createdTime": "2026-02-02 14:18:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:00", + "echoMap": {}, + "alarmNo": "1650390517", + "alarmDate": "1770013080252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114326187085493", + "createdBy": null, + "createdTime": "2026-02-02 14:17:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:02", + "echoMap": {}, + "alarmNo": "1650390516", + "alarmDate": "1770013051173", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114326187084939", + "createdBy": null, + "createdTime": "2026-02-02 14:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:49", + "echoMap": {}, + "alarmNo": "1650390515", + "alarmDate": "1770012463194", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114326187084933", + "createdBy": null, + "createdTime": "2026-02-02 14:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:50", + "echoMap": {}, + "alarmNo": "1650390514", + "alarmDate": "1770012462753", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114321892117526", + "createdBy": null, + "createdTime": "2026-02-02 14:07:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:31", + "echoMap": {}, + "alarmNo": "1650390513", + "alarmDate": "1770012445164", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150745", + "createdBy": null, + "createdTime": "2026-02-02 14:07:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:16", + "echoMap": {}, + "alarmNo": "1650390512", + "alarmDate": "1770012435260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150627", + "createdBy": null, + "createdTime": "2026-02-02 14:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:21", + "echoMap": {}, + "alarmNo": "1650390511", + "alarmDate": "1770012423594", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150509", + "createdBy": null, + "createdTime": "2026-02-02 13:58:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:03", + "echoMap": {}, + "alarmNo": "1650390510", + "alarmDate": "1770011881985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114317597150254", + "createdBy": null, + "createdTime": "2026-02-02 13:57:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:36", + "echoMap": {}, + "alarmNo": "1650390509", + "alarmDate": "1770011855401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114313302182912", + "createdBy": null, + "createdTime": "2026-02-02 13:57:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:26", + "echoMap": {}, + "alarmNo": "1650390508", + "alarmDate": "1770011845318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114309007215990", + "createdBy": null, + "createdTime": "2026-02-02 13:54:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:39", + "echoMap": {}, + "alarmNo": "1650390507", + "alarmDate": "1770011679644", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114309007215911", + "createdBy": null, + "createdTime": "2026-02-02 13:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:39", + "echoMap": {}, + "alarmNo": "1650390506", + "alarmDate": "1770011281866", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114300417281537", + "createdBy": null, + "createdTime": "2026-02-02 13:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:19", + "echoMap": {}, + "alarmNo": "1650390505", + "alarmDate": "1770011237545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114300417281486", + "createdBy": null, + "createdTime": "2026-02-02 13:47:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:34", + "echoMap": {}, + "alarmNo": "1650390504", + "alarmDate": "1770011232680", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114300417281211", + "createdBy": null, + "createdTime": "2026-02-02 13:37:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:55", + "echoMap": {}, + "alarmNo": "1650390503", + "alarmDate": "1770010674507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060055", + "deviceName": "[338](10)海伦10-4换乘扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114291827346880", + "createdBy": null, + "createdTime": "2026-02-02 13:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:14", + "echoMap": {}, + "alarmNo": "1650390502", + "alarmDate": "1770010633132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114291827346629", + "createdBy": null, + "createdTime": "2026-02-02 13:27:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:00", + "echoMap": {}, + "alarmNo": "1650390501", + "alarmDate": "1770010078872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114287532379156", + "createdBy": null, + "createdTime": "2026-02-02 13:27:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:45", + "echoMap": {}, + "alarmNo": "1650390500", + "alarmDate": "1770010058450", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114283237412377", + "createdBy": null, + "createdTime": "2026-02-02 13:27:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:31", + "echoMap": {}, + "alarmNo": "1650390499", + "alarmDate": "1770010050481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114283237412268", + "createdBy": null, + "createdTime": "2026-02-02 13:27:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:27", + "echoMap": {}, + "alarmNo": "1650390498", + "alarmDate": "1770010040465", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114283237412045", + "createdBy": null, + "createdTime": "2026-02-02 13:23:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:39", + "echoMap": {}, + "alarmNo": "1650390497", + "alarmDate": "1770009819631", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114274647477558", + "createdBy": null, + "createdTime": "2026-02-02 13:17:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:33", + "echoMap": {}, + "alarmNo": "1650390496", + "alarmDate": "1770009434621", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114274647477446", + "createdBy": null, + "createdTime": "2026-02-02 13:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:09", + "echoMap": {}, + "alarmNo": "1650390495", + "alarmDate": "1770009424294", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114266057543056", + "createdBy": null, + "createdTime": "2026-02-02 13:07:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:29", + "echoMap": {}, + "alarmNo": "1650390494", + "alarmDate": "1770008849420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060066", + "deviceName": "[311](10)海伦7#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114266057542790", + "createdBy": null, + "createdTime": "2026-02-02 13:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:08", + "echoMap": {}, + "alarmNo": "1650390493", + "alarmDate": "1770008827081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114266057542752", + "createdBy": null, + "createdTime": "2026-02-02 13:07:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:29", + "echoMap": {}, + "alarmNo": "1650390492", + "alarmDate": "1770008824535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060119", + "deviceName": "[634](10)海伦围墙4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608605", + "createdBy": null, + "createdTime": "2026-02-02 12:57:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:55", + "echoMap": {}, + "alarmNo": "1650390491", + "alarmDate": "1770008273774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608584", + "createdBy": null, + "createdTime": "2026-02-02 12:57:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:58", + "echoMap": {}, + "alarmNo": "1650390490", + "alarmDate": "1770008272088", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608443", + "createdBy": null, + "createdTime": "2026-02-02 12:57:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:38", + "echoMap": {}, + "alarmNo": "1650390489", + "alarmDate": "1770008256560", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608395", + "createdBy": null, + "createdTime": "2026-02-02 12:57:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:33", + "echoMap": {}, + "alarmNo": "1650390488", + "alarmDate": "1770008251752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114257467608133", + "createdBy": null, + "createdTime": "2026-02-02 12:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:11", + "echoMap": {}, + "alarmNo": "1650390487", + "alarmDate": "1770008223894", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114248877673592", + "createdBy": null, + "createdTime": "2026-02-02 12:47:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:11", + "echoMap": {}, + "alarmNo": "1650390486", + "alarmDate": "1770007625240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114244582706223", + "createdBy": null, + "createdTime": "2026-02-02 12:39:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:42", + "echoMap": {}, + "alarmNo": "1650390485", + "alarmDate": "1770007181098", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114240287739472", + "createdBy": null, + "createdTime": "2026-02-02 12:37:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:00", + "echoMap": {}, + "alarmNo": "1650390484", + "alarmDate": "1770007073352", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114240287739182", + "createdBy": null, + "createdTime": "2026-02-02 12:37:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:29", + "echoMap": {}, + "alarmNo": "1650390483", + "alarmDate": "1770007043521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114240287739006", + "createdBy": null, + "createdTime": "2026-02-02 12:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:07", + "echoMap": {}, + "alarmNo": "1650390482", + "alarmDate": "1770007026293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804940", + "createdBy": null, + "createdTime": "2026-02-02 12:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:36", + "echoMap": {}, + "alarmNo": "1650390481", + "alarmDate": "1770006479747", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804875", + "createdBy": null, + "createdTime": "2026-02-02 12:27:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:54", + "echoMap": {}, + "alarmNo": "1650390480", + "alarmDate": "1770006473337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804746", + "createdBy": null, + "createdTime": "2026-02-02 12:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:42", + "echoMap": {}, + "alarmNo": "1650390479", + "alarmDate": "1770006460175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114231697804691", + "createdBy": null, + "createdTime": "2026-02-02 12:27:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:35", + "echoMap": {}, + "alarmNo": "1650390478", + "alarmDate": "1770006454646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107870362", + "createdBy": null, + "createdTime": "2026-02-02 12:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:00", + "echoMap": {}, + "alarmNo": "1650390477", + "alarmDate": "1770005874699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107870361", + "createdBy": null, + "createdTime": "2026-02-02 12:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:55", + "echoMap": {}, + "alarmNo": "1650390476", + "alarmDate": "1770005874692", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107870031", + "createdBy": null, + "createdTime": "2026-02-02 12:17:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:37", + "echoMap": {}, + "alarmNo": "1650390475", + "alarmDate": "1770005844523", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114223107869983", + "createdBy": null, + "createdTime": "2026-02-02 12:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:48", + "echoMap": {}, + "alarmNo": "1650390474", + "alarmDate": "1770005840249", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114214517935149", + "createdBy": null, + "createdTime": "2026-02-02 11:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:00", + "echoMap": {}, + "alarmNo": "1650390473", + "alarmDate": "1770004678417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114214517935127", + "createdBy": null, + "createdTime": "2026-02-02 11:57:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:10", + "echoMap": {}, + "alarmNo": "1650390472", + "alarmDate": "1770004676657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928001092", + "createdBy": null, + "createdTime": "2026-02-02 11:57:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:42", + "echoMap": {}, + "alarmNo": "1650390471", + "alarmDate": "1770004661205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928001060", + "createdBy": null, + "createdTime": "2026-02-02 11:57:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:52", + "echoMap": {}, + "alarmNo": "1650390470", + "alarmDate": "1770004658307", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928001056", + "createdBy": null, + "createdTime": "2026-02-02 11:57:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:40", + "echoMap": {}, + "alarmNo": "1650390469", + "alarmDate": "1770004658231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928000645", + "createdBy": null, + "createdTime": "2026-02-02 11:48:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:41", + "echoMap": {}, + "alarmNo": "1650390468", + "alarmDate": "1770004120298", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114205928000572", + "createdBy": null, + "createdTime": "2026-02-02 11:47:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:32", + "echoMap": {}, + "alarmNo": "1650390467", + "alarmDate": "1770004076052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114197338066357", + "createdBy": null, + "createdTime": "2026-02-02 11:47:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:20", + "echoMap": {}, + "alarmNo": "1650390466", + "alarmDate": "1770004038876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131748", + "createdBy": null, + "createdTime": "2026-02-02 11:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:10", + "echoMap": {}, + "alarmNo": "1650390465", + "alarmDate": "1770003428812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131533", + "createdBy": null, + "createdTime": "2026-02-02 11:27:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:57", + "echoMap": {}, + "alarmNo": "1650390464", + "alarmDate": "1770002876539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131402", + "createdBy": null, + "createdTime": "2026-02-02 11:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:44", + "echoMap": {}, + "alarmNo": "1650390463", + "alarmDate": "1770002862979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114188748131380", + "createdBy": null, + "createdTime": "2026-02-02 11:27:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:42", + "echoMap": {}, + "alarmNo": "1650390462", + "alarmDate": "1770002861153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114180158197116", + "createdBy": null, + "createdTime": "2026-02-02 11:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:39", + "echoMap": {}, + "alarmNo": "1650390461", + "alarmDate": "1770002319630", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060005", + "deviceName": "[604](10)海伦弱电设备集中室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114180158197034", + "createdBy": null, + "createdTime": "2026-02-02 11:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:02", + "echoMap": {}, + "alarmNo": "1650390460", + "alarmDate": "1770002276292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114171568262649", + "createdBy": null, + "createdTime": "2026-02-02 11:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:33", + "echoMap": {}, + "alarmNo": "1650390459", + "alarmDate": "1770002223364", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114171568262230", + "createdBy": null, + "createdTime": "2026-02-02 11:07:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:52", + "echoMap": {}, + "alarmNo": "1650390458", + "alarmDate": "1770001650966", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114162978328135", + "createdBy": null, + "createdTime": "2026-02-02 11:07:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:10", + "echoMap": {}, + "alarmNo": "1650390457", + "alarmDate": "1770001628582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114162978327894", + "createdBy": null, + "createdTime": "2026-02-02 10:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:56", + "echoMap": {}, + "alarmNo": "1650390456", + "alarmDate": "1770001075410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114162978327795", + "createdBy": null, + "createdTime": "2026-02-02 10:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:46", + "echoMap": {}, + "alarmNo": "1650390455", + "alarmDate": "1770001065075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114154388393080", + "createdBy": null, + "createdTime": "2026-02-02 10:47:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:32", + "echoMap": {}, + "alarmNo": "1650390454", + "alarmDate": "1770000444765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114154388393040", + "createdBy": null, + "createdTime": "2026-02-02 10:47:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:22", + "echoMap": {}, + "alarmNo": "1650390453", + "alarmDate": "1770000441086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114150093425684", + "createdBy": null, + "createdTime": "2026-02-02 10:47:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:40", + "echoMap": {}, + "alarmNo": "1650390452", + "alarmDate": "1770000429616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114145798458697", + "createdBy": null, + "createdTime": "2026-02-02 10:37:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:59", + "echoMap": {}, + "alarmNo": "1650390451", + "alarmDate": "1769999872562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114145798458686", + "createdBy": null, + "createdTime": "2026-02-02 10:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:16", + "echoMap": {}, + "alarmNo": "1650390450", + "alarmDate": "1769999871771", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524363", + "createdBy": null, + "createdTime": "2026-02-02 10:37:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:20", + "echoMap": {}, + "alarmNo": "1650390449", + "alarmDate": "1769999832624", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524319", + "createdBy": null, + "createdTime": "2026-02-02 10:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:10", + "echoMap": {}, + "alarmNo": "1650390448", + "alarmDate": "1769999828627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524266", + "createdBy": null, + "createdTime": "2026-02-02 10:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:10", + "echoMap": {}, + "alarmNo": "1650390447", + "alarmDate": "1769999823660", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114137208524055", + "createdBy": null, + "createdTime": "2026-02-02 10:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:56", + "echoMap": {}, + "alarmNo": "1650390446", + "alarmDate": "1769999275263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114128618589572", + "createdBy": null, + "createdTime": "2026-02-02 10:23:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:01", + "echoMap": {}, + "alarmNo": "1650390445", + "alarmDate": "1769998979605", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723114124323621893", + "createdBy": null, + "createdTime": "2026-02-02 10:17:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:51", + "echoMap": {}, + "alarmNo": "1650390444", + "alarmDate": "1769998648783", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028655154", + "createdBy": null, + "createdTime": "2026-02-02 10:17:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:26", + "echoMap": {}, + "alarmNo": "1650390443", + "alarmDate": "1769998645276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028655095", + "createdBy": null, + "createdTime": "2026-02-02 10:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:25", + "echoMap": {}, + "alarmNo": "1650390442", + "alarmDate": "1769998640228", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028655056", + "createdBy": null, + "createdTime": "2026-02-02 10:17:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:18", + "echoMap": {}, + "alarmNo": "1650390441", + "alarmDate": "1769998636706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114120028654927", + "createdBy": null, + "createdTime": "2026-02-02 10:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:16", + "echoMap": {}, + "alarmNo": "1650390440", + "alarmDate": "1769998624089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114115733687364", + "createdBy": null, + "createdTime": "2026-02-02 10:07:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:56", + "echoMap": {}, + "alarmNo": "1650390439", + "alarmDate": "1769998062330", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114111438720245", + "createdBy": null, + "createdTime": "2026-02-02 10:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:08", + "echoMap": {}, + "alarmNo": "1650390438", + "alarmDate": "1769998026535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114111438720219", + "createdBy": null, + "createdTime": "2026-02-02 10:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:08", + "echoMap": {}, + "alarmNo": "1650390437", + "alarmDate": "1769998024301", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114111438720178", + "createdBy": null, + "createdTime": "2026-02-02 10:05:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:39", + "echoMap": {}, + "alarmNo": "1650390436", + "alarmDate": "1769997939694", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060005", + "deviceName": "[604](10)海伦弱电设备集中室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114107143752734", + "createdBy": null, + "createdTime": "2026-02-02 09:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:52", + "echoMap": {}, + "alarmNo": "1650390435", + "alarmDate": "1769997471253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114102848785881", + "createdBy": null, + "createdTime": "2026-02-02 09:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:43", + "echoMap": {}, + "alarmNo": "1650390434", + "alarmDate": "1769997462308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114094258850981", + "createdBy": null, + "createdTime": "2026-02-02 09:47:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:24", + "echoMap": {}, + "alarmNo": "1650390433", + "alarmDate": "1769996843403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114094258850922", + "createdBy": null, + "createdTime": "2026-02-02 09:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:19", + "echoMap": {}, + "alarmNo": "1650390432", + "alarmDate": "1769996837804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114085668916765", + "createdBy": null, + "createdTime": "2026-02-02 09:42:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:39", + "echoMap": {}, + "alarmNo": "1650390431", + "alarmDate": "1769996559640", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078982162", + "createdBy": null, + "createdTime": "2026-02-02 09:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:07", + "echoMap": {}, + "alarmNo": "1650390430", + "alarmDate": "1769996226385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078982123", + "createdBy": null, + "createdTime": "2026-02-02 09:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:10", + "echoMap": {}, + "alarmNo": "1650390429", + "alarmDate": "1769996222954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060073", + "deviceName": "[105](10)海伦上行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078981876", + "createdBy": null, + "createdTime": "2026-02-02 09:27:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:52", + "echoMap": {}, + "alarmNo": "1650390428", + "alarmDate": "1769995671131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078981792", + "createdBy": null, + "createdTime": "2026-02-02 09:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:44", + "echoMap": {}, + "alarmNo": "1650390427", + "alarmDate": "1769995662929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114077078981684", + "createdBy": null, + "createdTime": "2026-02-02 09:27:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:34", + "echoMap": {}, + "alarmNo": "1650390426", + "alarmDate": "1769995653270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114072784014383", + "createdBy": null, + "createdTime": "2026-02-02 09:27:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:40", + "echoMap": {}, + "alarmNo": "1650390425", + "alarmDate": "1769995648027", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114068489047506", + "createdBy": null, + "createdTime": "2026-02-02 09:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:13", + "echoMap": {}, + "alarmNo": "1650390424", + "alarmDate": "1769995631772", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114059899112819", + "createdBy": null, + "createdTime": "2026-02-02 09:17:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:15", + "echoMap": {}, + "alarmNo": "1650390423", + "alarmDate": "1769995033795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114059899112565", + "createdBy": null, + "createdTime": "2026-02-02 09:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:00", + "echoMap": {}, + "alarmNo": "1650390422", + "alarmDate": "1769994478644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114051309178066", + "createdBy": null, + "createdTime": "2026-02-02 09:07:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:05", + "echoMap": {}, + "alarmNo": "1650390421", + "alarmDate": "1769994424367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114051309178009", + "createdBy": null, + "createdTime": "2026-02-02 09:03:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:45", + "echoMap": {}, + "alarmNo": "1650390420", + "alarmDate": "1769994219216", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1019040001", + "deviceName": "H3C前端交换机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1019" + }, + { + "id": "723114051309177945", + "createdBy": null, + "createdTime": "2026-02-02 08:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:48", + "echoMap": {}, + "alarmNo": "1650390419", + "alarmDate": "1769993882740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114047014210591", + "createdBy": null, + "createdTime": "2026-02-02 08:57:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:51", + "echoMap": {}, + "alarmNo": "1650390418", + "alarmDate": "1769993869979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114042719243844", + "createdBy": null, + "createdTime": "2026-02-02 08:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:47", + "echoMap": {}, + "alarmNo": "1650390417", + "alarmDate": "1769993865505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114042719243745", + "createdBy": null, + "createdTime": "2026-02-02 08:57:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:38", + "echoMap": {}, + "alarmNo": "1650390416", + "alarmDate": "1769993856967", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114042719243411", + "createdBy": null, + "createdTime": "2026-02-02 08:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:04", + "echoMap": {}, + "alarmNo": "1650390415", + "alarmDate": "1769993824145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060114", + "deviceName": "[637](10)海伦出入口", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114038424275983", + "createdBy": null, + "createdTime": "2026-02-02 08:47:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:00", + "echoMap": {}, + "alarmNo": "1650390414", + "alarmDate": "1769993274077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060114", + "deviceName": "[637](10)海伦出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129309137", + "createdBy": null, + "createdTime": "2026-02-02 08:47:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:43", + "echoMap": {}, + "alarmNo": "1650390413", + "alarmDate": "1769993263176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060063", + "deviceName": "[314](10)海伦7#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129309051", + "createdBy": null, + "createdTime": "2026-02-02 08:47:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:33", + "echoMap": {}, + "alarmNo": "1650390412", + "alarmDate": "1769993252905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060023", + "deviceName": "[301](10)海伦5#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129308898", + "createdBy": null, + "createdTime": "2026-02-02 08:47:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:51", + "echoMap": {}, + "alarmNo": "1650390411", + "alarmDate": "1769993235547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114034129308854", + "createdBy": null, + "createdTime": "2026-02-02 08:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:13", + "echoMap": {}, + "alarmNo": "1650390410", + "alarmDate": "1769993232001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114029834341400", + "createdBy": null, + "createdTime": "2026-02-02 08:37:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:59", + "echoMap": {}, + "alarmNo": "1650390409", + "alarmDate": "1769992678519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114029834341391", + "createdBy": null, + "createdTime": "2026-02-02 08:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:34", + "echoMap": {}, + "alarmNo": "1650390408", + "alarmDate": "1769992677806", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374734", + "createdBy": null, + "createdTime": "2026-02-02 08:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:58", + "echoMap": {}, + "alarmNo": "1650390407", + "alarmDate": "1769992676754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374479", + "createdBy": null, + "createdTime": "2026-02-02 08:37:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:28", + "echoMap": {}, + "alarmNo": "1650390406", + "alarmDate": "1769992647393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374307", + "createdBy": null, + "createdTime": "2026-02-02 08:37:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:13", + "echoMap": {}, + "alarmNo": "1650390405", + "alarmDate": "1769992626734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060117", + "deviceName": "[632](10)海伦围墙3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114025539374265", + "createdBy": null, + "createdTime": "2026-02-02 08:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:03", + "echoMap": {}, + "alarmNo": "1650390404", + "alarmDate": "1769992621711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114021244406794", + "createdBy": null, + "createdTime": "2026-02-02 08:27:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:51", + "echoMap": {}, + "alarmNo": "1650390403", + "alarmDate": "1769992069984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949440000", + "createdBy": null, + "createdTime": "2026-02-02 08:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:58", + "echoMap": {}, + "alarmNo": "1650390402", + "alarmDate": "1769992065588", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060096", + "deviceName": "[306](10)海伦5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949439998", + "createdBy": null, + "createdTime": "2026-02-02 08:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:47", + "echoMap": {}, + "alarmNo": "1650390401", + "alarmDate": "1769992065554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949439854", + "createdBy": null, + "createdTime": "2026-02-02 08:27:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:37", + "echoMap": {}, + "alarmNo": "1650390400", + "alarmDate": "1769992050552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060117", + "deviceName": "[632](10)海伦围墙3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114016949439591", + "createdBy": null, + "createdTime": "2026-02-02 08:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:15", + "echoMap": {}, + "alarmNo": "1650390399", + "alarmDate": "1769992024017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114008359505157", + "createdBy": null, + "createdTime": "2026-02-02 08:17:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:22", + "echoMap": {}, + "alarmNo": "1650390398", + "alarmDate": "1769991441299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723114008359505032", + "createdBy": null, + "createdTime": "2026-02-02 08:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:09", + "echoMap": {}, + "alarmNo": "1650390397", + "alarmDate": "1769991428045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113999769570873", + "createdBy": null, + "createdTime": "2026-02-02 08:07:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:56", + "echoMap": {}, + "alarmNo": "1650390396", + "alarmDate": "1769990874906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113999769570304", + "createdBy": null, + "createdTime": "2026-02-02 07:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:19", + "echoMap": {}, + "alarmNo": "1650390395", + "alarmDate": "1769990279585", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636226", + "createdBy": null, + "createdTime": "2026-02-02 07:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:46", + "echoMap": {}, + "alarmNo": "1650390394", + "alarmDate": "1769990264751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636213", + "createdBy": null, + "createdTime": "2026-02-02 07:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:45", + "echoMap": {}, + "alarmNo": "1650390393", + "alarmDate": "1769990263700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636091", + "createdBy": null, + "createdTime": "2026-02-02 07:57:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:30", + "echoMap": {}, + "alarmNo": "1650390392", + "alarmDate": "1769990249293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636053", + "createdBy": null, + "createdTime": "2026-02-02 07:57:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:31", + "echoMap": {}, + "alarmNo": "1650390391", + "alarmDate": "1769990245391", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113991179636039", + "createdBy": null, + "createdTime": "2026-02-02 07:57:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:31", + "echoMap": {}, + "alarmNo": "1650390390", + "alarmDate": "1769990243755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060063", + "deviceName": "[314](10)海伦7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113982589701408", + "createdBy": null, + "createdTime": "2026-02-02 07:47:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:21", + "echoMap": {}, + "alarmNo": "1650390389", + "alarmDate": "1769989640337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113982589701299", + "createdBy": null, + "createdTime": "2026-02-02 07:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:08", + "echoMap": {}, + "alarmNo": "1650390388", + "alarmDate": "1769989627032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113982589701122", + "createdBy": null, + "createdTime": "2026-02-02 07:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:59", + "echoMap": {}, + "alarmNo": "1650390387", + "alarmDate": "1769989078096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060097", + "deviceName": "[210](10)海伦5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113978294733831", + "createdBy": null, + "createdTime": "2026-02-02 07:37:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:53", + "echoMap": {}, + "alarmNo": "1650390386", + "alarmDate": "1769989071897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113973999767039", + "createdBy": null, + "createdTime": "2026-02-02 07:37:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:00", + "echoMap": {}, + "alarmNo": "1650390385", + "alarmDate": "1769989068315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113973999766647", + "createdBy": null, + "createdTime": "2026-02-02 07:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:06", + "echoMap": {}, + "alarmNo": "1650390384", + "alarmDate": "1769989024333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113969704799250", + "createdBy": null, + "createdTime": "2026-02-02 07:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:58", + "echoMap": {}, + "alarmNo": "1650390383", + "alarmDate": "1769988477694", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723113965409832366", + "createdBy": null, + "createdTime": "2026-02-02 07:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:44", + "echoMap": {}, + "alarmNo": "1650390382", + "alarmDate": "1769988462757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832354", + "createdBy": null, + "createdTime": "2026-02-02 07:27:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:43", + "echoMap": {}, + "alarmNo": "1650390381", + "alarmDate": "1769988461791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832056", + "createdBy": null, + "createdTime": "2026-02-02 07:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:14", + "echoMap": {}, + "alarmNo": "1650390380", + "alarmDate": "1769988427632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060046", + "deviceName": "[339](10)海伦10-4换乘扶梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113965409832006", + "createdBy": null, + "createdTime": "2026-02-02 07:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:39", + "echoMap": {}, + "alarmNo": "1650390379", + "alarmDate": "1769988399645", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060005", + "deviceName": "[604](10)海伦弱电设备集中室1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897690", + "createdBy": null, + "createdTime": "2026-02-02 07:17:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:24", + "echoMap": {}, + "alarmNo": "1650390378", + "alarmDate": "1769987871871", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897608", + "createdBy": null, + "createdTime": "2026-02-02 07:17:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:43", + "echoMap": {}, + "alarmNo": "1650390377", + "alarmDate": "1769987861949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060064", + "deviceName": "[211](10)海伦7#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897503", + "createdBy": null, + "createdTime": "2026-02-02 07:17:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:42", + "echoMap": {}, + "alarmNo": "1650390376", + "alarmDate": "1769987850346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060055", + "deviceName": "[338](10)海伦10-4换乘扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113956819897405", + "createdBy": null, + "createdTime": "2026-02-02 07:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:21", + "echoMap": {}, + "alarmNo": "1650390375", + "alarmDate": "1769987839518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113952524930104", + "createdBy": null, + "createdTime": "2026-02-02 07:17:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:12", + "echoMap": {}, + "alarmNo": "1650390374", + "alarmDate": "1769987831287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113948229963359", + "createdBy": null, + "createdTime": "2026-02-02 07:07:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:37", + "echoMap": {}, + "alarmNo": "1650390373", + "alarmDate": "1769987256737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060065", + "deviceName": "[312](10)海伦7#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113948229962812", + "createdBy": null, + "createdTime": "2026-02-02 06:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:56", + "echoMap": {}, + "alarmNo": "1650390372", + "alarmDate": "1769986664536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113948229962793", + "createdBy": null, + "createdTime": "2026-02-02 06:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:44", + "echoMap": {}, + "alarmNo": "1650390371", + "alarmDate": "1769986662619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113943934995510", + "createdBy": null, + "createdTime": "2026-02-02 06:57:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:39", + "echoMap": {}, + "alarmNo": "1650390370", + "alarmDate": "1769986657613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028809", + "createdBy": null, + "createdTime": "2026-02-02 06:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:39", + "echoMap": {}, + "alarmNo": "1650390369", + "alarmDate": "1769986359650", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028707", + "createdBy": null, + "createdTime": "2026-02-02 06:47:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:29", + "echoMap": {}, + "alarmNo": "1650390368", + "alarmDate": "1769986076718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060066", + "deviceName": "[311](10)海伦7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028578", + "createdBy": null, + "createdTime": "2026-02-02 06:47:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:33", + "echoMap": {}, + "alarmNo": "1650390367", + "alarmDate": "1769986064353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028452", + "createdBy": null, + "createdTime": "2026-02-02 06:47:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:38", + "echoMap": {}, + "alarmNo": "1650390366", + "alarmDate": "1769986050615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060066", + "deviceName": "[311](10)海伦7#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028357", + "createdBy": null, + "createdTime": "2026-02-02 06:47:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:21", + "echoMap": {}, + "alarmNo": "1650390365", + "alarmDate": "1769986040342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028356", + "createdBy": null, + "createdTime": "2026-02-02 06:47:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:32", + "echoMap": {}, + "alarmNo": "1650390364", + "alarmDate": "1769986040311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028328", + "createdBy": null, + "createdTime": "2026-02-02 06:47:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:19", + "echoMap": {}, + "alarmNo": "1650390363", + "alarmDate": "1769986037540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113939640028210", + "createdBy": null, + "createdTime": "2026-02-02 06:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:08", + "echoMap": {}, + "alarmNo": "1650390362", + "alarmDate": "1769986024299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060118", + "deviceName": "[635](10)海伦大门3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050094392", + "createdBy": null, + "createdTime": "2026-02-02 06:37:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:39", + "echoMap": {}, + "alarmNo": "1650390361", + "alarmDate": "1769985470074", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050093998", + "createdBy": null, + "createdTime": "2026-02-02 06:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:39", + "echoMap": {}, + "alarmNo": "1650390360", + "alarmDate": "1769985399631", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050093729", + "createdBy": null, + "createdTime": "2026-02-02 06:27:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:46", + "echoMap": {}, + "alarmNo": "1650390359", + "alarmDate": "1769984864535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113931050093647", + "createdBy": null, + "createdTime": "2026-02-02 06:27:38", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:39", + "echoMap": {}, + "alarmNo": "1650390358", + "alarmDate": "1769984857989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113922460159728", + "createdBy": null, + "createdTime": "2026-02-02 06:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:07", + "echoMap": {}, + "alarmNo": "1650390357", + "alarmDate": "1769984823674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060117", + "deviceName": "[632](10)海伦围墙3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113913870224644", + "createdBy": null, + "createdTime": "2026-02-02 05:57:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:46", + "echoMap": {}, + "alarmNo": "1650390356", + "alarmDate": "1769983065437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113913870224626", + "createdBy": null, + "createdTime": "2026-02-02 05:57:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:45", + "echoMap": {}, + "alarmNo": "1650390355", + "alarmDate": "1769983064095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113905280290046", + "createdBy": null, + "createdTime": "2026-02-02 05:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:22", + "echoMap": {}, + "alarmNo": "1650390354", + "alarmDate": "1769982423675", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060104", + "deviceName": "[407](10)海伦2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113892395388521", + "createdBy": null, + "createdTime": "2026-02-02 05:27:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:50", + "echoMap": {}, + "alarmNo": "1650390353", + "alarmDate": "1769981269328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113892395388469", + "createdBy": null, + "createdTime": "2026-02-02 05:27:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:44", + "echoMap": {}, + "alarmNo": "1650390352", + "alarmDate": "1769981263188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060019", + "deviceName": "[601](10)海伦车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113879510486670", + "createdBy": null, + "createdTime": "2026-02-02 05:08:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:39", + "echoMap": {}, + "alarmNo": "1650390351", + "alarmDate": "1769980119683", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113879510486316", + "createdBy": null, + "createdTime": "2026-02-02 05:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:08", + "echoMap": {}, + "alarmNo": "1650390350", + "alarmDate": "1769980027485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113879510486093", + "createdBy": null, + "createdTime": "2026-02-02 04:57:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:57", + "echoMap": {}, + "alarmNo": "1650390349", + "alarmDate": "1769979476249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113866625584931", + "createdBy": null, + "createdTime": "2026-02-02 04:57:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:57:32", + "echoMap": {}, + "alarmNo": "1650390348", + "alarmDate": "1769979450673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113853740683029", + "createdBy": null, + "createdTime": "2026-02-02 04:47:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:23", + "echoMap": {}, + "alarmNo": "1650390347", + "alarmDate": "1769978841991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113840855781157", + "createdBy": null, + "createdTime": "2026-02-02 04:37:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:37:16", + "echoMap": {}, + "alarmNo": "1650390346", + "alarmDate": "1769978235367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113827970878730", + "createdBy": null, + "createdTime": "2026-02-02 04:17:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:42", + "echoMap": {}, + "alarmNo": "1650390345", + "alarmDate": "1769977061289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113827970878642", + "createdBy": null, + "createdTime": "2026-02-02 04:17:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:37", + "echoMap": {}, + "alarmNo": "1650390344", + "alarmDate": "1769977055565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113815085976687", + "createdBy": null, + "createdTime": "2026-02-02 04:07:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:24", + "echoMap": {}, + "alarmNo": "1650390343", + "alarmDate": "1769976443382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113802201075537", + "createdBy": null, + "createdTime": "2026-02-02 04:02:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:59", + "echoMap": {}, + "alarmNo": "1650390342", + "alarmDate": "1769976179060", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030006", + "deviceName": "安防箱6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723113802201075277", + "createdBy": null, + "createdTime": "2026-02-02 03:57:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:49", + "echoMap": {}, + "alarmNo": "1650390341", + "alarmDate": "1769975869432", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060035", + "deviceName": "[406](10)海伦3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113789316173819", + "createdBy": null, + "createdTime": "2026-02-02 03:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:11", + "echoMap": {}, + "alarmNo": "1650390340", + "alarmDate": "1769975829592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113789316173735", + "createdBy": null, + "createdTime": "2026-02-02 03:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:06", + "echoMap": {}, + "alarmNo": "1650390339", + "alarmDate": "1769975825008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113776431271679", + "createdBy": null, + "createdTime": "2026-02-02 03:38:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:59", + "echoMap": {}, + "alarmNo": "1650390338", + "alarmDate": "1769974680220", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019030004", + "deviceName": "安防箱4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1019" + }, + { + "id": "723113776431271314", + "createdBy": null, + "createdTime": "2026-02-02 03:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:40", + "echoMap": {}, + "alarmNo": "1650390337", + "alarmDate": "1769974659473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113776431271154", + "createdBy": null, + "createdTime": "2026-02-02 03:37:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:31", + "echoMap": {}, + "alarmNo": "1650390336", + "alarmDate": "1769974650257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113763546369278", + "createdBy": null, + "createdTime": "2026-02-02 03:27:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:31", + "echoMap": {}, + "alarmNo": "1650390335", + "alarmDate": "1769974049888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113750661467961", + "createdBy": null, + "createdTime": "2026-02-02 03:18:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:39", + "echoMap": {}, + "alarmNo": "1650390334", + "alarmDate": "1769973519621", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113742071532561", + "createdBy": null, + "createdTime": "2026-02-02 03:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:09", + "echoMap": {}, + "alarmNo": "1650390333", + "alarmDate": "1769973427901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113737776566076", + "createdBy": null, + "createdTime": "2026-02-02 03:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:02", + "echoMap": {}, + "alarmNo": "1650390332", + "alarmDate": "1769972880760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113737776565663", + "createdBy": null, + "createdTime": "2026-02-02 03:07:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:38", + "echoMap": {}, + "alarmNo": "1650390331", + "alarmDate": "1769972857157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113724891663988", + "createdBy": null, + "createdTime": "2026-02-02 02:57:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:57:50", + "echoMap": {}, + "alarmNo": "1650390330", + "alarmDate": "1769972269052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113712006761783", + "createdBy": null, + "createdTime": "2026-02-02 02:47:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:31", + "echoMap": {}, + "alarmNo": "1650390329", + "alarmDate": "1769971650101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113699121860182", + "createdBy": null, + "createdTime": "2026-02-02 02:37:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:47", + "echoMap": {}, + "alarmNo": "1650390328", + "alarmDate": "1769971066062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113699121859675", + "createdBy": null, + "createdTime": "2026-02-02 02:37:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:37:18", + "echoMap": {}, + "alarmNo": "1650390327", + "alarmDate": "1769971036522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113673352056508", + "createdBy": null, + "createdTime": "2026-02-02 02:17:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:52", + "echoMap": {}, + "alarmNo": "1650390326", + "alarmDate": "1769969871477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154923", + "createdBy": null, + "createdTime": "2026-02-02 02:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:05", + "echoMap": {}, + "alarmNo": "1650390325", + "alarmDate": "1769969824280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154819", + "createdBy": null, + "createdTime": "2026-02-02 02:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:13:39", + "echoMap": {}, + "alarmNo": "1650390324", + "alarmDate": "1769969559640", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154622", + "createdBy": null, + "createdTime": "2026-02-02 02:07:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:54", + "echoMap": {}, + "alarmNo": "1650390323", + "alarmDate": "1769969272945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113660467154325", + "createdBy": null, + "createdTime": "2026-02-02 02:07:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:37", + "echoMap": {}, + "alarmNo": "1650390322", + "alarmDate": "1769969255656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113647582252151", + "createdBy": null, + "createdTime": "2026-02-02 01:57:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:21", + "echoMap": {}, + "alarmNo": "1650390321", + "alarmDate": "1769968639743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113630402382887", + "createdBy": null, + "createdTime": "2026-02-02 01:47:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:13", + "echoMap": {}, + "alarmNo": "1650390320", + "alarmDate": "1769968032178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113626107415608", + "createdBy": null, + "createdTime": "2026-02-02 01:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:05", + "echoMap": {}, + "alarmNo": "1650390319", + "alarmDate": "1769968023948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113621812449173", + "createdBy": null, + "createdTime": "2026-02-02 01:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:02", + "echoMap": {}, + "alarmNo": "1650390318", + "alarmDate": "1769967481001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113621812449096", + "createdBy": null, + "createdTime": "2026-02-02 01:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:37:58", + "echoMap": {}, + "alarmNo": "1650390317", + "alarmDate": "1769967476811", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113608927546901", + "createdBy": null, + "createdTime": "2026-02-02 01:27:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:41", + "echoMap": {}, + "alarmNo": "1650390316", + "alarmDate": "1769966860178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113596042644830", + "createdBy": null, + "createdTime": "2026-02-02 01:17:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:24", + "echoMap": {}, + "alarmNo": "1650390315", + "alarmDate": "1769966243282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113596042644771", + "createdBy": null, + "createdTime": "2026-02-02 01:17:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:21", + "echoMap": {}, + "alarmNo": "1650390314", + "alarmDate": "1769966240073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113583157742677", + "createdBy": null, + "createdTime": "2026-02-02 01:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:09", + "echoMap": {}, + "alarmNo": "1650390313", + "alarmDate": "1769965628361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113574567808371", + "createdBy": null, + "createdTime": "2026-02-02 01:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:39", + "echoMap": {}, + "alarmNo": "1650390312", + "alarmDate": "1769965239751", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113574567808329", + "createdBy": null, + "createdTime": "2026-02-02 00:58:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:01", + "echoMap": {}, + "alarmNo": "1650390311", + "alarmDate": "1769965080246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113557387938942", + "createdBy": null, + "createdTime": "2026-02-02 00:47:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:43", + "echoMap": {}, + "alarmNo": "1650390310", + "alarmDate": "1769964462355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113548798004721", + "createdBy": null, + "createdTime": "2026-02-02 00:47:27", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:28", + "echoMap": {}, + "alarmNo": "1650390309", + "alarmDate": "1769964447018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113535913102383", + "createdBy": null, + "createdTime": "2026-02-02 00:37:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:37:29", + "echoMap": {}, + "alarmNo": "1650390308", + "alarmDate": "1769963847547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113531618135119", + "createdBy": null, + "createdTime": "2026-02-02 00:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:39", + "echoMap": {}, + "alarmNo": "1650390307", + "alarmDate": "1769963499639", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1019060074", + "deviceName": "[109](10)海伦下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113514438266217", + "createdBy": null, + "createdTime": "2026-02-02 00:27:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:11", + "echoMap": {}, + "alarmNo": "1650390306", + "alarmDate": "1769963229836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060017", + "deviceName": "[201](10)海伦厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113505848331445", + "createdBy": null, + "createdTime": "2026-02-02 00:17:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:35", + "echoMap": {}, + "alarmNo": "1650390305", + "alarmDate": "1769962654121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060112", + "deviceName": "[639](10)海伦厕所门口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + }, + { + "id": "723113488668462459", + "createdBy": null, + "createdTime": "2026-02-02 00:07:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:50", + "echoMap": {}, + "alarmNo": "1650390304", + "alarmDate": "1769962068828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1019060081", + "deviceName": "[206](10)海伦上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1019" + } + ] + }, + "1020": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113458604065807", + "createdBy": null, + "createdTime": "2026-02-02 00:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:24", + "echoMap": {}, + "alarmNo": "1670094567", + "alarmDate": "1769961972332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113458604065875", + "createdBy": null, + "createdTime": "2026-02-02 00:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:56", + "echoMap": {}, + "alarmNo": "1670094568", + "alarmDate": "1769961996441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113458604065878", + "createdBy": null, + "createdTime": "2026-02-02 00:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:05", + "echoMap": {}, + "alarmNo": "1670094569", + "alarmDate": "1769961996644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113467194000481", + "createdBy": null, + "createdTime": "2026-02-02 00:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:20", + "echoMap": {}, + "alarmNo": "1670094570", + "alarmDate": "1769962567637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113467194000529", + "createdBy": null, + "createdTime": "2026-02-02 00:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:37", + "echoMap": {}, + "alarmNo": "1670094571", + "alarmDate": "1769962584008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113467194000555", + "createdBy": null, + "createdTime": "2026-02-02 00:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:44", + "echoMap": {}, + "alarmNo": "1670094572", + "alarmDate": "1769962591753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113471488967691", + "createdBy": null, + "createdTime": "2026-02-02 00:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:18:55", + "echoMap": {}, + "alarmNo": "1670094573", + "alarmDate": "1769962675798", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113471488967708", + "createdBy": null, + "createdTime": "2026-02-02 00:19:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:55", + "echoMap": {}, + "alarmNo": "1670094574", + "alarmDate": "1769962795781", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783934989", + "createdBy": null, + "createdTime": "2026-02-02 00:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:39", + "echoMap": {}, + "alarmNo": "1670094575", + "alarmDate": "1769963146924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783934992", + "createdBy": null, + "createdTime": "2026-02-02 00:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:52", + "echoMap": {}, + "alarmNo": "1670094576", + "alarmDate": "1769963147239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783935088", + "createdBy": null, + "createdTime": "2026-02-02 00:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:24", + "echoMap": {}, + "alarmNo": "1670094577", + "alarmDate": "1769963172306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783935195", + "createdBy": null, + "createdTime": "2026-02-02 00:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:20", + "echoMap": {}, + "alarmNo": "1670094578", + "alarmDate": "1769963204268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869615", + "createdBy": null, + "createdTime": "2026-02-02 00:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:55", + "echoMap": {}, + "alarmNo": "1670094579", + "alarmDate": "1769963275787", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869690", + "createdBy": null, + "createdTime": "2026-02-02 00:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:46", + "echoMap": {}, + "alarmNo": "1670094580", + "alarmDate": "1769963742251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869720", + "createdBy": null, + "createdTime": "2026-02-02 00:35:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:21", + "echoMap": {}, + "alarmNo": "1670094581", + "alarmDate": "1769963750839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869738", + "createdBy": null, + "createdTime": "2026-02-02 00:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:10", + "echoMap": {}, + "alarmNo": "1670094582", + "alarmDate": "1769963758255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113488668836867", + "createdBy": null, + "createdTime": "2026-02-02 00:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:34", + "echoMap": {}, + "alarmNo": "1670094583", + "alarmDate": "1769963782276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113488668836915", + "createdBy": null, + "createdTime": "2026-02-02 00:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:59", + "echoMap": {}, + "alarmNo": "1670094584", + "alarmDate": "1769963798661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113492963804258", + "createdBy": null, + "createdTime": "2026-02-02 00:45:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:30", + "echoMap": {}, + "alarmNo": "1670094585", + "alarmDate": "1769964341546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113492963804387", + "createdBy": null, + "createdTime": "2026-02-02 00:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:32", + "echoMap": {}, + "alarmNo": "1670094586", + "alarmDate": "1769964378928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738835", + "createdBy": null, + "createdTime": "2026-02-02 00:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:55", + "echoMap": {}, + "alarmNo": "1670094587", + "alarmDate": "1769964943146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738857", + "createdBy": null, + "createdTime": "2026-02-02 00:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:02", + "echoMap": {}, + "alarmNo": "1670094588", + "alarmDate": "1769964949807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738926", + "createdBy": null, + "createdTime": "2026-02-02 00:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:26", + "echoMap": {}, + "alarmNo": "1670094589", + "alarmDate": "1769964973909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738929", + "createdBy": null, + "createdTime": "2026-02-02 00:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:26", + "echoMap": {}, + "alarmNo": "1670094590", + "alarmDate": "1769964974232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113505848706061", + "createdBy": null, + "createdTime": "2026-02-02 00:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:09", + "echoMap": {}, + "alarmNo": "1670094591", + "alarmDate": "1769964997930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113510143673395", + "createdBy": null, + "createdTime": "2026-02-02 01:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:59", + "echoMap": {}, + "alarmNo": "1670094592", + "alarmDate": "1769965546556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113510143673507", + "createdBy": null, + "createdTime": "2026-02-02 01:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:33", + "echoMap": {}, + "alarmNo": "1670094593", + "alarmDate": "1769965578366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733607980", + "createdBy": null, + "createdTime": "2026-02-02 01:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:46", + "echoMap": {}, + "alarmNo": "1670094594", + "alarmDate": "1769966146224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733607981", + "createdBy": null, + "createdTime": "2026-02-02 01:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:53", + "echoMap": {}, + "alarmNo": "1670094595", + "alarmDate": "1769966146226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733608070", + "createdBy": null, + "createdTime": "2026-02-02 01:16:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:25", + "echoMap": {}, + "alarmNo": "1670094596", + "alarmDate": "1769966173511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733608091", + "createdBy": null, + "createdTime": "2026-02-02 01:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:34", + "echoMap": {}, + "alarmNo": "1670094597", + "alarmDate": "1769966179762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733608152", + "createdBy": null, + "createdTime": "2026-02-02 01:16:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:58", + "echoMap": {}, + "alarmNo": "1670094598", + "alarmDate": "1769966198205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113523028575270", + "createdBy": null, + "createdTime": "2026-02-02 01:19:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:56", + "echoMap": {}, + "alarmNo": "1670094599", + "alarmDate": "1769966395780", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542534", + "createdBy": null, + "createdTime": "2026-02-02 01:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:56", + "echoMap": {}, + "alarmNo": "1670094600", + "alarmDate": "1769966577480", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542551", + "createdBy": null, + "createdTime": "2026-02-02 01:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:58", + "echoMap": {}, + "alarmNo": "1670094601", + "alarmDate": "1769966744476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542630", + "createdBy": null, + "createdTime": "2026-02-02 01:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:20", + "echoMap": {}, + "alarmNo": "1670094602", + "alarmDate": "1769966768905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542656", + "createdBy": null, + "createdTime": "2026-02-02 01:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:36", + "echoMap": {}, + "alarmNo": "1670094603", + "alarmDate": "1769966776658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542715", + "createdBy": null, + "createdTime": "2026-02-02 01:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:34", + "echoMap": {}, + "alarmNo": "1670094604", + "alarmDate": "1769966793630", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542716", + "createdBy": null, + "createdTime": "2026-02-02 01:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:51", + "echoMap": {}, + "alarmNo": "1670094605", + "alarmDate": "1769966793631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542760", + "createdBy": null, + "createdTime": "2026-02-02 01:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:55", + "echoMap": {}, + "alarmNo": "1670094606", + "alarmDate": "1769966816205", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477158", + "createdBy": null, + "createdTime": "2026-02-02 01:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:17", + "echoMap": {}, + "alarmNo": "1670094607", + "alarmDate": "1769967357796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477179", + "createdBy": null, + "createdTime": "2026-02-02 01:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:16", + "echoMap": {}, + "alarmNo": "1670094608", + "alarmDate": "1769967363575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477262", + "createdBy": null, + "createdTime": "2026-02-02 01:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:30", + "echoMap": {}, + "alarmNo": "1670094609", + "alarmDate": "1769967390099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477263", + "createdBy": null, + "createdTime": "2026-02-02 01:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:48", + "echoMap": {}, + "alarmNo": "1670094610", + "alarmDate": "1769967390100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477283", + "createdBy": null, + "createdTime": "2026-02-02 01:36:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:56", + "echoMap": {}, + "alarmNo": "1670094611", + "alarmDate": "1769967395641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411724", + "createdBy": null, + "createdTime": "2026-02-02 01:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:12", + "echoMap": {}, + "alarmNo": "1670094612", + "alarmDate": "1769967959604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411770", + "createdBy": null, + "createdTime": "2026-02-02 01:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:28", + "echoMap": {}, + "alarmNo": "1670094613", + "alarmDate": "1769967975023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411800", + "createdBy": null, + "createdTime": "2026-02-02 01:46:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:36", + "echoMap": {}, + "alarmNo": "1670094614", + "alarmDate": "1769967983926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411900", + "createdBy": null, + "createdTime": "2026-02-02 01:48:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:56", + "echoMap": {}, + "alarmNo": "1670094615", + "alarmDate": "1769968136093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411917", + "createdBy": null, + "createdTime": "2026-02-02 01:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:55", + "echoMap": {}, + "alarmNo": "1670094616", + "alarmDate": "1769968256518", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411968", + "createdBy": null, + "createdTime": "2026-02-02 01:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:53", + "echoMap": {}, + "alarmNo": "1670094617", + "alarmDate": "1769968543104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113548798379033", + "createdBy": null, + "createdTime": "2026-02-02 01:55:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:08", + "echoMap": {}, + "alarmNo": "1670094618", + "alarmDate": "1769968554570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346305", + "createdBy": null, + "createdTime": "2026-02-02 01:56:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:32", + "echoMap": {}, + "alarmNo": "1670094619", + "alarmDate": "1769968572362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346328", + "createdBy": null, + "createdTime": "2026-02-02 01:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:32", + "echoMap": {}, + "alarmNo": "1670094620", + "alarmDate": "1769968578984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346475", + "createdBy": null, + "createdTime": "2026-02-02 02:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:03:56", + "echoMap": {}, + "alarmNo": "1670094621", + "alarmDate": "1769968916111", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346520", + "createdBy": null, + "createdTime": "2026-02-02 02:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:03", + "echoMap": {}, + "alarmNo": "1670094622", + "alarmDate": "1769969143867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346525", + "createdBy": null, + "createdTime": "2026-02-02 02:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:47", + "echoMap": {}, + "alarmNo": "1670094623", + "alarmDate": "1769969144458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113557388313620", + "createdBy": null, + "createdTime": "2026-02-02 02:06:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:27", + "echoMap": {}, + "alarmNo": "1670094624", + "alarmDate": "1769969167548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113557388313647", + "createdBy": null, + "createdTime": "2026-02-02 02:06:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:26", + "echoMap": {}, + "alarmNo": "1670094625", + "alarmDate": "1769969174605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113561683280953", + "createdBy": null, + "createdTime": "2026-02-02 02:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:04", + "echoMap": {}, + "alarmNo": "1670094626", + "alarmDate": "1769969198715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113561683281013", + "createdBy": null, + "createdTime": "2026-02-02 02:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:56", + "echoMap": {}, + "alarmNo": "1670094627", + "alarmDate": "1769969456249", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113561683281065", + "createdBy": null, + "createdTime": "2026-02-02 02:15:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:51", + "echoMap": {}, + "alarmNo": "1670094628", + "alarmDate": "1769969744841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113565978248218", + "createdBy": null, + "createdTime": "2026-02-02 02:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:23", + "echoMap": {}, + "alarmNo": "1670094629", + "alarmDate": "1769969770240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113570273215565", + "createdBy": null, + "createdTime": "2026-02-02 02:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:11", + "echoMap": {}, + "alarmNo": "1670094630", + "alarmDate": "1769969802983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113578863150093", + "createdBy": null, + "createdTime": "2026-02-02 02:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:57", + "echoMap": {}, + "alarmNo": "1670094631", + "alarmDate": "1769970390461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113587453084672", + "createdBy": null, + "createdTime": "2026-02-02 02:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:30", + "echoMap": {}, + "alarmNo": "1670094632", + "alarmDate": "1769970976739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113587453084702", + "createdBy": null, + "createdTime": "2026-02-02 02:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:33", + "echoMap": {}, + "alarmNo": "1670094633", + "alarmDate": "1769970982339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113587453084857", + "createdBy": null, + "createdTime": "2026-02-02 02:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:57", + "echoMap": {}, + "alarmNo": "1670094634", + "alarmDate": "1769971376115", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113591748051980", + "createdBy": null, + "createdTime": "2026-02-02 02:46:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:18", + "echoMap": {}, + "alarmNo": "1670094635", + "alarmDate": "1769971564903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113596043019329", + "createdBy": null, + "createdTime": "2026-02-02 02:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:21", + "echoMap": {}, + "alarmNo": "1670094636", + "alarmDate": "1769971594426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113596043019342", + "createdBy": null, + "createdTime": "2026-02-02 02:46:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:05", + "echoMap": {}, + "alarmNo": "1670094637", + "alarmDate": "1769971598016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113600337986658", + "createdBy": null, + "createdTime": "2026-02-02 02:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:29", + "echoMap": {}, + "alarmNo": "1670094638", + "alarmDate": "1769972176021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953877", + "createdBy": null, + "createdTime": "2026-02-02 02:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:45", + "echoMap": {}, + "alarmNo": "1670094639", + "alarmDate": "1769972180796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953890", + "createdBy": null, + "createdTime": "2026-02-02 02:56:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:37", + "echoMap": {}, + "alarmNo": "1670094640", + "alarmDate": "1769972184151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953950", + "createdBy": null, + "createdTime": "2026-02-02 02:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:52", + "echoMap": {}, + "alarmNo": "1670094641", + "alarmDate": "1769972200471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953974", + "createdBy": null, + "createdTime": "2026-02-02 02:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:32", + "echoMap": {}, + "alarmNo": "1670094642", + "alarmDate": "1769972205788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632954010", + "createdBy": null, + "createdTime": "2026-02-02 02:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:26", + "echoMap": {}, + "alarmNo": "1670094643", + "alarmDate": "1769972216408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113608927921176", + "createdBy": null, + "createdTime": "2026-02-02 03:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:16", + "echoMap": {}, + "alarmNo": "1670094644", + "alarmDate": "1769972767444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888490", + "createdBy": null, + "createdTime": "2026-02-02 03:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:40", + "echoMap": {}, + "alarmNo": "1670094645", + "alarmDate": "1769972788364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888507", + "createdBy": null, + "createdTime": "2026-02-02 03:06:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:56", + "echoMap": {}, + "alarmNo": "1670094646", + "alarmDate": "1769972792101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888544", + "createdBy": null, + "createdTime": "2026-02-02 03:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:05", + "echoMap": {}, + "alarmNo": "1670094647", + "alarmDate": "1769972804550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888581", + "createdBy": null, + "createdTime": "2026-02-02 03:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:05", + "echoMap": {}, + "alarmNo": "1670094648", + "alarmDate": "1769972812918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888605", + "createdBy": null, + "createdTime": "2026-02-02 03:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:21", + "echoMap": {}, + "alarmNo": "1670094649", + "alarmDate": "1769972816190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888673", + "createdBy": null, + "createdTime": "2026-02-02 03:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:56", + "echoMap": {}, + "alarmNo": "1670094650", + "alarmDate": "1769972937634", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113617517855818", + "createdBy": null, + "createdTime": "2026-02-02 03:15:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:04", + "echoMap": {}, + "alarmNo": "1670094651", + "alarmDate": "1769973358765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823042", + "createdBy": null, + "createdTime": "2026-02-02 03:16:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:29", + "echoMap": {}, + "alarmNo": "1670094652", + "alarmDate": "1769973368745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823080", + "createdBy": null, + "createdTime": "2026-02-02 03:16:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:59", + "echoMap": {}, + "alarmNo": "1670094653", + "alarmDate": "1769973377390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823099", + "createdBy": null, + "createdTime": "2026-02-02 03:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:39", + "echoMap": {}, + "alarmNo": "1670094654", + "alarmDate": "1769973380994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823172", + "createdBy": null, + "createdTime": "2026-02-02 03:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:49", + "echoMap": {}, + "alarmNo": "1670094655", + "alarmDate": "1769973399425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823199", + "createdBy": null, + "createdTime": "2026-02-02 03:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:08", + "echoMap": {}, + "alarmNo": "1670094656", + "alarmDate": "1769973408067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113630402757636", + "createdBy": null, + "createdTime": "2026-02-02 03:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:23", + "echoMap": {}, + "alarmNo": "1670094657", + "alarmDate": "1769973970873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113630402757697", + "createdBy": null, + "createdTime": "2026-02-02 03:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:40", + "echoMap": {}, + "alarmNo": "1670094658", + "alarmDate": "1769973987210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113630402757723", + "createdBy": null, + "createdTime": "2026-02-02 03:26:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:10", + "echoMap": {}, + "alarmNo": "1670094659", + "alarmDate": "1769973994914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113634697724962", + "createdBy": null, + "createdTime": "2026-02-02 03:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:21", + "echoMap": {}, + "alarmNo": "1670094660", + "alarmDate": "1769974567900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113638992692234", + "createdBy": null, + "createdTime": "2026-02-02 03:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:15", + "echoMap": {}, + "alarmNo": "1670094661", + "alarmDate": "1769974583289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113638992692287", + "createdBy": null, + "createdTime": "2026-02-02 03:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:59", + "echoMap": {}, + "alarmNo": "1670094662", + "alarmDate": "1769974600013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113638992692398", + "createdBy": null, + "createdTime": "2026-02-02 03:38:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:56", + "echoMap": {}, + "alarmNo": "1670094663", + "alarmDate": "1769974736475", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113643287659567", + "createdBy": null, + "createdTime": "2026-02-02 03:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:32", + "echoMap": {}, + "alarmNo": "1670094664", + "alarmDate": "1769975178941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113647582626821", + "createdBy": null, + "createdTime": "2026-02-02 03:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:10", + "echoMap": {}, + "alarmNo": "1670094665", + "alarmDate": "1769975186568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113647582626903", + "createdBy": null, + "createdTime": "2026-02-02 03:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:19", + "echoMap": {}, + "alarmNo": "1670094666", + "alarmDate": "1769975210745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113647582627111", + "createdBy": null, + "createdTime": "2026-02-02 03:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:05", + "echoMap": {}, + "alarmNo": "1670094667", + "alarmDate": "1769975782022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113651877594144", + "createdBy": null, + "createdTime": "2026-02-02 03:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:51", + "echoMap": {}, + "alarmNo": "1670094668", + "alarmDate": "1769975798133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561444", + "createdBy": null, + "createdTime": "2026-02-02 03:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:12", + "echoMap": {}, + "alarmNo": "1670094669", + "alarmDate": "1769975809436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561569", + "createdBy": null, + "createdTime": "2026-02-02 04:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:06", + "echoMap": {}, + "alarmNo": "1670094670", + "alarmDate": "1769976359354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561632", + "createdBy": null, + "createdTime": "2026-02-02 04:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:38", + "echoMap": {}, + "alarmNo": "1670094671", + "alarmDate": "1769976371670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561647", + "createdBy": null, + "createdTime": "2026-02-02 04:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:29", + "echoMap": {}, + "alarmNo": "1670094672", + "alarmDate": "1769976377734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113660467528713", + "createdBy": null, + "createdTime": "2026-02-02 04:06:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:46", + "echoMap": {}, + "alarmNo": "1670094673", + "alarmDate": "1769976386252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496003", + "createdBy": null, + "createdTime": "2026-02-02 04:06:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:24", + "echoMap": {}, + "alarmNo": "1670094674", + "alarmDate": "1769976397593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496018", + "createdBy": null, + "createdTime": "2026-02-02 04:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:53", + "echoMap": {}, + "alarmNo": "1670094675", + "alarmDate": "1769976401727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496174", + "createdBy": null, + "createdTime": "2026-02-02 04:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:56", + "echoMap": {}, + "alarmNo": "1670094676", + "alarmDate": "1769976967983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496188", + "createdBy": null, + "createdTime": "2026-02-02 04:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:25", + "echoMap": {}, + "alarmNo": "1670094677", + "alarmDate": "1769976971542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496255", + "createdBy": null, + "createdTime": "2026-02-02 04:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:48", + "echoMap": {}, + "alarmNo": "1670094678", + "alarmDate": "1769976984646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430597", + "createdBy": null, + "createdTime": "2026-02-02 04:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:45", + "echoMap": {}, + "alarmNo": "1670094679", + "alarmDate": "1769977004725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430598", + "createdBy": null, + "createdTime": "2026-02-02 04:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:57", + "echoMap": {}, + "alarmNo": "1670094680", + "alarmDate": "1769977004725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430617", + "createdBy": null, + "createdTime": "2026-02-02 04:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:12", + "echoMap": {}, + "alarmNo": "1670094681", + "alarmDate": "1769977008074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430803", + "createdBy": null, + "createdTime": "2026-02-02 04:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:20", + "echoMap": {}, + "alarmNo": "1670094682", + "alarmDate": "1769977568254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430820", + "createdBy": null, + "createdTime": "2026-02-02 04:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:35", + "echoMap": {}, + "alarmNo": "1670094683", + "alarmDate": "1769977572199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647397903", + "createdBy": null, + "createdTime": "2026-02-02 04:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:36", + "echoMap": {}, + "alarmNo": "1670094684", + "alarmDate": "1769977576821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647397963", + "createdBy": null, + "createdTime": "2026-02-02 04:26:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:45", + "echoMap": {}, + "alarmNo": "1670094685", + "alarmDate": "1769977591851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647397982", + "createdBy": null, + "createdTime": "2026-02-02 04:26:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:59", + "echoMap": {}, + "alarmNo": "1670094686", + "alarmDate": "1769977595402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647398041", + "createdBy": null, + "createdTime": "2026-02-02 04:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:16", + "echoMap": {}, + "alarmNo": "1670094687", + "alarmDate": "1769977616012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647398043", + "createdBy": null, + "createdTime": "2026-02-02 04:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:24", + "echoMap": {}, + "alarmNo": "1670094688", + "alarmDate": "1769977616147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365242", + "createdBy": null, + "createdTime": "2026-02-02 04:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:56", + "echoMap": {}, + "alarmNo": "1670094689", + "alarmDate": "1769978036263", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365265", + "createdBy": null, + "createdTime": "2026-02-02 04:35:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:23", + "echoMap": {}, + "alarmNo": "1670094690", + "alarmDate": "1769978159411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365361", + "createdBy": null, + "createdTime": "2026-02-02 04:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:47", + "echoMap": {}, + "alarmNo": "1670094691", + "alarmDate": "1769978182758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365374", + "createdBy": null, + "createdTime": "2026-02-02 04:36:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:39", + "echoMap": {}, + "alarmNo": "1670094692", + "alarmDate": "1769978186513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332504", + "createdBy": null, + "createdTime": "2026-02-02 04:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:44", + "echoMap": {}, + "alarmNo": "1670094693", + "alarmDate": "1769978204243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332505", + "createdBy": null, + "createdTime": "2026-02-02 04:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:56", + "echoMap": {}, + "alarmNo": "1670094694", + "alarmDate": "1769978204244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332522", + "createdBy": null, + "createdTime": "2026-02-02 04:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:11", + "echoMap": {}, + "alarmNo": "1670094695", + "alarmDate": "1769978207570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332536", + "createdBy": null, + "createdTime": "2026-02-02 04:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:11", + "echoMap": {}, + "alarmNo": "1670094696", + "alarmDate": "1769978211239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299887", + "createdBy": null, + "createdTime": "2026-02-02 04:45:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:55", + "echoMap": {}, + "alarmNo": "1670094697", + "alarmDate": "1769978757216", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299923", + "createdBy": null, + "createdTime": "2026-02-02 04:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:28", + "echoMap": {}, + "alarmNo": "1670094698", + "alarmDate": "1769978767441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299941", + "createdBy": null, + "createdTime": "2026-02-02 04:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:35", + "echoMap": {}, + "alarmNo": "1670094699", + "alarmDate": "1769978770842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299981", + "createdBy": null, + "createdTime": "2026-02-02 04:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:35", + "echoMap": {}, + "alarmNo": "1670094700", + "alarmDate": "1769978783000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267106", + "createdBy": null, + "createdTime": "2026-02-02 04:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:59", + "echoMap": {}, + "alarmNo": "1670094701", + "alarmDate": "1769978794958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267139", + "createdBy": null, + "createdTime": "2026-02-02 04:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:48", + "echoMap": {}, + "alarmNo": "1670094702", + "alarmDate": "1769978807585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267140", + "createdBy": null, + "createdTime": "2026-02-02 04:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:15", + "echoMap": {}, + "alarmNo": "1670094703", + "alarmDate": "1769978807586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267141", + "createdBy": null, + "createdTime": "2026-02-02 04:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:54", + "echoMap": {}, + "alarmNo": "1670094704", + "alarmDate": "1769978807587", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113699122234406", + "createdBy": null, + "createdTime": "2026-02-02 04:55:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:22", + "echoMap": {}, + "alarmNo": "1670094705", + "alarmDate": "1769979359127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113699122234518", + "createdBy": null, + "createdTime": "2026-02-02 04:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:46", + "echoMap": {}, + "alarmNo": "1670094706", + "alarmDate": "1769979382323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113699122234557", + "createdBy": null, + "createdTime": "2026-02-02 04:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:47", + "echoMap": {}, + "alarmNo": "1670094707", + "alarmDate": "1769979393851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113703417201679", + "createdBy": null, + "createdTime": "2026-02-02 04:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:22", + "echoMap": {}, + "alarmNo": "1670094708", + "alarmDate": "1769979406229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113707712168982", + "createdBy": null, + "createdTime": "2026-02-02 04:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:57", + "echoMap": {}, + "alarmNo": "1670094709", + "alarmDate": "1769979596888", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113707712169050", + "createdBy": null, + "createdTime": "2026-02-02 05:06:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:03", + "echoMap": {}, + "alarmNo": "1670094710", + "alarmDate": "1769979959517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113707712169156", + "createdBy": null, + "createdTime": "2026-02-02 05:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:42", + "echoMap": {}, + "alarmNo": "1670094711", + "alarmDate": "1769979983106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113716302103671", + "createdBy": null, + "createdTime": "2026-02-02 05:15:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:07", + "echoMap": {}, + "alarmNo": "1670094712", + "alarmDate": "1769980559433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113716302103672", + "createdBy": null, + "createdTime": "2026-02-02 05:16:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:09", + "echoMap": {}, + "alarmNo": "1670094713", + "alarmDate": "1769980559685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113720597070855", + "createdBy": null, + "createdTime": "2026-02-02 05:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:46", + "echoMap": {}, + "alarmNo": "1670094714", + "alarmDate": "1769980586399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113724892038219", + "createdBy": null, + "createdTime": "2026-02-02 05:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:34", + "echoMap": {}, + "alarmNo": "1670094715", + "alarmDate": "1769980617623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113724892038396", + "createdBy": null, + "createdTime": "2026-02-02 05:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:30", + "echoMap": {}, + "alarmNo": "1670094716", + "alarmDate": "1769981188678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060073", + "deviceName": "[209](10)邮电1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113733481972759", + "createdBy": null, + "createdTime": "2026-02-02 05:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:14", + "echoMap": {}, + "alarmNo": "1670094717", + "alarmDate": "1769981214036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113737776940091", + "createdBy": null, + "createdTime": "2026-02-02 05:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:52", + "echoMap": {}, + "alarmNo": "1670094718", + "alarmDate": "1769981793502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113742071907535", + "createdBy": null, + "createdTime": "2026-02-02 05:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:01", + "echoMap": {}, + "alarmNo": "1670094719", + "alarmDate": "1769982360798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113742071907536", + "createdBy": null, + "createdTime": "2026-02-02 05:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:16", + "echoMap": {}, + "alarmNo": "1670094720", + "alarmDate": "1769982360800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113750661841957", + "createdBy": null, + "createdTime": "2026-02-02 05:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:50", + "echoMap": {}, + "alarmNo": "1670094721", + "alarmDate": "1769982396836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113750661842103", + "createdBy": null, + "createdTime": "2026-02-02 05:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:56", + "echoMap": {}, + "alarmNo": "1670094722", + "alarmDate": "1769982716722", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113754956809243", + "createdBy": null, + "createdTime": "2026-02-02 05:56:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:21", + "echoMap": {}, + "alarmNo": "1670094723", + "alarmDate": "1769982967647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113759251776523", + "createdBy": null, + "createdTime": "2026-02-02 05:56:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:19", + "echoMap": {}, + "alarmNo": "1670094724", + "alarmDate": "1769982977392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060073", + "deviceName": "[209](10)邮电1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113759251776599", + "createdBy": null, + "createdTime": "2026-02-02 05:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:52", + "echoMap": {}, + "alarmNo": "1670094725", + "alarmDate": "1769982999956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113767841711104", + "createdBy": null, + "createdTime": "2026-02-02 06:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:32", + "echoMap": {}, + "alarmNo": "1670094726", + "alarmDate": "1769983579111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113767841711193", + "createdBy": null, + "createdTime": "2026-02-02 06:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:55", + "echoMap": {}, + "alarmNo": "1670094727", + "alarmDate": "1769983603464", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113767841711228", + "createdBy": null, + "createdTime": "2026-02-02 06:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:28", + "echoMap": {}, + "alarmNo": "1670094728", + "alarmDate": "1769983611173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113772136678435", + "createdBy": null, + "createdTime": "2026-02-02 06:12:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:56", + "echoMap": {}, + "alarmNo": "1670094729", + "alarmDate": "1769983977312", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113772136678452", + "createdBy": null, + "createdTime": "2026-02-02 06:14:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:55", + "echoMap": {}, + "alarmNo": "1670094730", + "alarmDate": "1769984097392", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113776431645810", + "createdBy": null, + "createdTime": "2026-02-02 06:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:00", + "echoMap": {}, + "alarmNo": "1670094731", + "alarmDate": "1769984206756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113776431645879", + "createdBy": null, + "createdTime": "2026-02-02 06:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:59", + "echoMap": {}, + "alarmNo": "1670094732", + "alarmDate": "1769984218117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060073", + "deviceName": "[209](10)邮电1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113785021580305", + "createdBy": null, + "createdTime": "2026-02-02 06:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:23", + "echoMap": {}, + "alarmNo": "1670094733", + "alarmDate": "1769984775721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113785021580395", + "createdBy": null, + "createdTime": "2026-02-02 06:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:55", + "echoMap": {}, + "alarmNo": "1670094734", + "alarmDate": "1769984802140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113785021580521", + "createdBy": null, + "createdTime": "2026-02-02 06:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:35", + "echoMap": {}, + "alarmNo": "1670094735", + "alarmDate": "1769984832819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113793611515034", + "createdBy": null, + "createdTime": "2026-02-02 06:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:30", + "echoMap": {}, + "alarmNo": "1670094736", + "alarmDate": "1769985414127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113797906482201", + "createdBy": null, + "createdTime": "2026-02-02 06:40:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:56", + "echoMap": {}, + "alarmNo": "1670094737", + "alarmDate": "1769985656543", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113802201449594", + "createdBy": null, + "createdTime": "2026-02-02 06:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:02", + "echoMap": {}, + "alarmNo": "1670094738", + "alarmDate": "1769986008401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113806496416785", + "createdBy": null, + "createdTime": "2026-02-02 06:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:26", + "echoMap": {}, + "alarmNo": "1670094739", + "alarmDate": "1769986572667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113806496416795", + "createdBy": null, + "createdTime": "2026-02-02 06:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:42", + "echoMap": {}, + "alarmNo": "1670094740", + "alarmDate": "1769986574125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060091", + "deviceName": "[702](10)邮电下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113810791384149", + "createdBy": null, + "createdTime": "2026-02-02 06:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:17", + "echoMap": {}, + "alarmNo": "1670094741", + "alarmDate": "1769986603400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060067", + "deviceName": "[211](10)邮电4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113810791384151", + "createdBy": null, + "createdTime": "2026-02-02 06:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:57", + "echoMap": {}, + "alarmNo": "1670094742", + "alarmDate": "1769986603870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113815086351421", + "createdBy": null, + "createdTime": "2026-02-02 07:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:20", + "echoMap": {}, + "alarmNo": "1670094743", + "alarmDate": "1769987173798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113819381318686", + "createdBy": null, + "createdTime": "2026-02-02 07:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:53", + "echoMap": {}, + "alarmNo": "1670094744", + "alarmDate": "1769987199718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113819381318817", + "createdBy": null, + "createdTime": "2026-02-02 07:07:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:16", + "echoMap": {}, + "alarmNo": "1670094745", + "alarmDate": "1769987231832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113823676286068", + "createdBy": null, + "createdTime": "2026-02-02 07:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:55", + "echoMap": {}, + "alarmNo": "1670094746", + "alarmDate": "1769987795001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113827971253411", + "createdBy": null, + "createdTime": "2026-02-02 07:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:35", + "echoMap": {}, + "alarmNo": "1670094747", + "alarmDate": "1769987828117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113832266220576", + "createdBy": null, + "createdTime": "2026-02-02 07:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:55", + "echoMap": {}, + "alarmNo": "1670094748", + "alarmDate": "1769988055771", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113836561187886", + "createdBy": null, + "createdTime": "2026-02-02 07:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:11", + "echoMap": {}, + "alarmNo": "1670094749", + "alarmDate": "1769988413398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113836561187897", + "createdBy": null, + "createdTime": "2026-02-02 07:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:07", + "echoMap": {}, + "alarmNo": "1670094750", + "alarmDate": "1769988414341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113840856155147", + "createdBy": null, + "createdTime": "2026-02-02 07:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:56", + "echoMap": {}, + "alarmNo": "1670094751", + "alarmDate": "1769988981527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113840856155149", + "createdBy": null, + "createdTime": "2026-02-02 07:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:31", + "echoMap": {}, + "alarmNo": "1670094752", + "alarmDate": "1769988981646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113840856155154", + "createdBy": null, + "createdTime": "2026-02-02 07:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:29", + "echoMap": {}, + "alarmNo": "1670094753", + "alarmDate": "1769988982320", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113845151122434", + "createdBy": null, + "createdTime": "2026-02-02 07:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:33", + "echoMap": {}, + "alarmNo": "1670094754", + "alarmDate": "1769989010101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113845151122438", + "createdBy": null, + "createdTime": "2026-02-02 07:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:10", + "echoMap": {}, + "alarmNo": "1670094755", + "alarmDate": "1769989010610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113849446089741", + "createdBy": null, + "createdTime": "2026-02-02 07:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:55", + "echoMap": {}, + "alarmNo": "1670094757", + "alarmDate": "1769989375806", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113849446089775", + "createdBy": null, + "createdTime": "2026-02-02 07:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:26", + "echoMap": {}, + "alarmNo": "1670094758", + "alarmDate": "1769989576053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057050", + "createdBy": null, + "createdTime": "2026-02-02 07:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:58", + "echoMap": {}, + "alarmNo": "1670094759", + "alarmDate": "1769989605385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057054", + "createdBy": null, + "createdTime": "2026-02-02 07:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:59", + "echoMap": {}, + "alarmNo": "1670094760", + "alarmDate": "1769989605918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057136", + "createdBy": null, + "createdTime": "2026-02-02 07:47:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:21", + "echoMap": {}, + "alarmNo": "1670094761", + "alarmDate": "1769989631363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057144", + "createdBy": null, + "createdTime": "2026-02-02 07:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:34", + "echoMap": {}, + "alarmNo": "1670094762", + "alarmDate": "1769989633945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024365", + "createdBy": null, + "createdTime": "2026-02-02 07:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:29", + "echoMap": {}, + "alarmNo": "1670094763", + "alarmDate": "1769990173192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024441", + "createdBy": null, + "createdTime": "2026-02-02 07:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:46", + "echoMap": {}, + "alarmNo": "1670094764", + "alarmDate": "1769990199599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024455", + "createdBy": null, + "createdTime": "2026-02-02 07:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:04", + "echoMap": {}, + "alarmNo": "1670094765", + "alarmDate": "1769990205176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024465", + "createdBy": null, + "createdTime": "2026-02-02 07:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:01", + "echoMap": {}, + "alarmNo": "1670094766", + "alarmDate": "1769990208244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113862330991643", + "createdBy": null, + "createdTime": "2026-02-02 07:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:09", + "echoMap": {}, + "alarmNo": "1670094767", + "alarmDate": "1769990215538", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113862330991698", + "createdBy": null, + "createdTime": "2026-02-02 07:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:17", + "echoMap": {}, + "alarmNo": "1670094768", + "alarmDate": "1769990225655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113862330991714", + "createdBy": null, + "createdTime": "2026-02-02 07:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:14", + "echoMap": {}, + "alarmNo": "1670094769", + "alarmDate": "1769990229507", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625958940", + "createdBy": null, + "createdTime": "2026-02-02 08:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:17", + "echoMap": {}, + "alarmNo": "1670094770", + "alarmDate": "1769990772377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625958947", + "createdBy": null, + "createdTime": "2026-02-02 08:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:26", + "echoMap": {}, + "alarmNo": "1670094771", + "alarmDate": "1769990773554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625958997", + "createdBy": null, + "createdTime": "2026-02-02 08:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:57", + "echoMap": {}, + "alarmNo": "1670094772", + "alarmDate": "1769990790381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625959007", + "createdBy": null, + "createdTime": "2026-02-02 08:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:53", + "echoMap": {}, + "alarmNo": "1670094773", + "alarmDate": "1769990794928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625959020", + "createdBy": null, + "createdTime": "2026-02-02 08:06:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:08", + "echoMap": {}, + "alarmNo": "1670094774", + "alarmDate": "1769990798301", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060091", + "deviceName": "[702](10)邮电下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113870920926219", + "createdBy": null, + "createdTime": "2026-02-02 08:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:05", + "echoMap": {}, + "alarmNo": "1670094775", + "alarmDate": "1769990805590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113870920926262", + "createdBy": null, + "createdTime": "2026-02-02 08:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:20", + "echoMap": {}, + "alarmNo": "1670094776", + "alarmDate": "1769990813893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893546", + "createdBy": null, + "createdTime": "2026-02-02 08:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:55", + "echoMap": {}, + "alarmNo": "1670094777", + "alarmDate": "1769991175775", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893579", + "createdBy": null, + "createdTime": "2026-02-02 08:16:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:21", + "echoMap": {}, + "alarmNo": "1670094778", + "alarmDate": "1769991375780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893626", + "createdBy": null, + "createdTime": "2026-02-02 08:16:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:44", + "echoMap": {}, + "alarmNo": "1670094779", + "alarmDate": "1769991398184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893634", + "createdBy": null, + "createdTime": "2026-02-02 08:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:53", + "echoMap": {}, + "alarmNo": "1670094780", + "alarmDate": "1769991399833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510860888", + "createdBy": null, + "createdTime": "2026-02-02 08:17:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:48", + "echoMap": {}, + "alarmNo": "1670094781", + "alarmDate": "1769991431954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510860914", + "createdBy": null, + "createdTime": "2026-02-02 08:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:55", + "echoMap": {}, + "alarmNo": "1670094782", + "alarmDate": "1769991475923", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510860994", + "createdBy": null, + "createdTime": "2026-02-02 08:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:31", + "echoMap": {}, + "alarmNo": "1670094783", + "alarmDate": "1769991984432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510861002", + "createdBy": null, + "createdTime": "2026-02-02 08:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:33", + "echoMap": {}, + "alarmNo": "1670094784", + "alarmDate": "1769991987287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113883805828191", + "createdBy": null, + "createdTime": "2026-02-02 08:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:11", + "echoMap": {}, + "alarmNo": "1670094785", + "alarmDate": "1769992018455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113888100795407", + "createdBy": null, + "createdTime": "2026-02-02 08:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:51", + "echoMap": {}, + "alarmNo": "1670094786", + "alarmDate": "1769992028150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113888100795442", + "createdBy": null, + "createdTime": "2026-02-02 08:27:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:29", + "echoMap": {}, + "alarmNo": "1670094787", + "alarmDate": "1769992041939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113892395762701", + "createdBy": null, + "createdTime": "2026-02-02 08:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:57", + "echoMap": {}, + "alarmNo": "1670094788", + "alarmDate": "1769992604686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113892395762779", + "createdBy": null, + "createdTime": "2026-02-02 08:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:52", + "echoMap": {}, + "alarmNo": "1670094789", + "alarmDate": "1769992629271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113892395762784", + "createdBy": null, + "createdTime": "2026-02-02 08:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:24", + "echoMap": {}, + "alarmNo": "1670094790", + "alarmDate": "1769992630450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113896690730002", + "createdBy": null, + "createdTime": "2026-02-02 08:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:55", + "echoMap": {}, + "alarmNo": "1670094791", + "alarmDate": "1769992795786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113896690730067", + "createdBy": null, + "createdTime": "2026-02-02 08:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:47", + "echoMap": {}, + "alarmNo": "1670094792", + "alarmDate": "1769993188769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113896690730091", + "createdBy": null, + "createdTime": "2026-02-02 08:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:42", + "echoMap": {}, + "alarmNo": "1670094793", + "alarmDate": "1769993196320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113900985697284", + "createdBy": null, + "createdTime": "2026-02-02 08:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:19", + "echoMap": {}, + "alarmNo": "1670094794", + "alarmDate": "1769993226790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113900985697327", + "createdBy": null, + "createdTime": "2026-02-02 08:47:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:27", + "echoMap": {}, + "alarmNo": "1670094795", + "alarmDate": "1769993240989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113905280664638", + "createdBy": null, + "createdTime": "2026-02-02 08:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:35", + "echoMap": {}, + "alarmNo": "1670094796", + "alarmDate": "1769993788096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113905280664668", + "createdBy": null, + "createdTime": "2026-02-02 08:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:02", + "echoMap": {}, + "alarmNo": "1670094797", + "alarmDate": "1769993798162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113905280664722", + "createdBy": null, + "createdTime": "2026-02-02 08:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:14", + "echoMap": {}, + "alarmNo": "1670094798", + "alarmDate": "1769993815104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113909575631877", + "createdBy": null, + "createdTime": "2026-02-02 08:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:15", + "echoMap": {}, + "alarmNo": "1670094799", + "alarmDate": "1769993828233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113909575631907", + "createdBy": null, + "createdTime": "2026-02-02 08:57:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:26", + "echoMap": {}, + "alarmNo": "1670094800", + "alarmDate": "1769993835304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599195", + "createdBy": null, + "createdTime": "2026-02-02 09:06:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:31", + "echoMap": {}, + "alarmNo": "1670094801", + "alarmDate": "1769994386441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599250", + "createdBy": null, + "createdTime": "2026-02-02 09:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:50", + "echoMap": {}, + "alarmNo": "1670094802", + "alarmDate": "1769994409247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060067", + "deviceName": "[211](10)邮电4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599256", + "createdBy": null, + "createdTime": "2026-02-02 09:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:10", + "echoMap": {}, + "alarmNo": "1670094803", + "alarmDate": "1769994410414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599279", + "createdBy": null, + "createdTime": "2026-02-02 09:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:55", + "echoMap": {}, + "alarmNo": "1670094804", + "alarmDate": "1769994415784", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113918165566523", + "createdBy": null, + "createdTime": "2026-02-02 09:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:34", + "echoMap": {}, + "alarmNo": "1670094805", + "alarmDate": "1769994986701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113918165566573", + "createdBy": null, + "createdTime": "2026-02-02 09:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:59", + "echoMap": {}, + "alarmNo": "1670094806", + "alarmDate": "1769995006721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533794", + "createdBy": null, + "createdTime": "2026-02-02 09:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:11", + "echoMap": {}, + "alarmNo": "1670094807", + "alarmDate": "1769995024457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533828", + "createdBy": null, + "createdTime": "2026-02-02 09:17:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:54", + "echoMap": {}, + "alarmNo": "1670094808", + "alarmDate": "1769995037737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533862", + "createdBy": null, + "createdTime": "2026-02-02 09:19:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:55", + "echoMap": {}, + "alarmNo": "1670094809", + "alarmDate": "1769995195785", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533897", + "createdBy": null, + "createdTime": "2026-02-02 09:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:55", + "echoMap": {}, + "alarmNo": "1670094810", + "alarmDate": "1769995375783", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533930", + "createdBy": null, + "createdTime": "2026-02-02 09:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:34", + "echoMap": {}, + "alarmNo": "1670094811", + "alarmDate": "1769995586957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533945", + "createdBy": null, + "createdTime": "2026-02-02 09:26:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:00", + "echoMap": {}, + "alarmNo": "1670094812", + "alarmDate": "1769995596600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533956", + "createdBy": null, + "createdTime": "2026-02-02 09:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:54", + "echoMap": {}, + "alarmNo": "1670094813", + "alarmDate": "1769995600718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533974", + "createdBy": null, + "createdTime": "2026-02-02 09:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:59", + "echoMap": {}, + "alarmNo": "1670094814", + "alarmDate": "1769995605932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113926755501116", + "createdBy": null, + "createdTime": "2026-02-02 09:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:15", + "echoMap": {}, + "alarmNo": "1670094815", + "alarmDate": "1769995625744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113926755501129", + "createdBy": null, + "createdTime": "2026-02-02 09:27:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:18", + "echoMap": {}, + "alarmNo": "1670094816", + "alarmDate": "1769995631078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113926755501138", + "createdBy": null, + "createdTime": "2026-02-02 09:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:41", + "echoMap": {}, + "alarmNo": "1670094817", + "alarmDate": "1769995633109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113931050468363", + "createdBy": null, + "createdTime": "2026-02-02 09:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:55", + "echoMap": {}, + "alarmNo": "1670094818", + "alarmDate": "1769995675811", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113931050468546", + "createdBy": null, + "createdTime": "2026-02-02 09:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:13", + "echoMap": {}, + "alarmNo": "1670094820", + "alarmDate": "1769996220343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640402964", + "createdBy": null, + "createdTime": "2026-02-02 09:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:27", + "echoMap": {}, + "alarmNo": "1670094821", + "alarmDate": "1769996787454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640402967", + "createdBy": null, + "createdTime": "2026-02-02 09:46:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:37", + "echoMap": {}, + "alarmNo": "1670094822", + "alarmDate": "1769996787712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640403013", + "createdBy": null, + "createdTime": "2026-02-02 09:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:41", + "echoMap": {}, + "alarmNo": "1670094823", + "alarmDate": "1769996795452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640403097", + "createdBy": null, + "createdTime": "2026-02-02 09:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:16", + "echoMap": {}, + "alarmNo": "1670094824", + "alarmDate": "1769996816696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640403126", + "createdBy": null, + "createdTime": "2026-02-02 09:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:13", + "echoMap": {}, + "alarmNo": "1670094825", + "alarmDate": "1769996820626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113948230337545", + "createdBy": null, + "createdTime": "2026-02-02 09:53:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:55", + "echoMap": {}, + "alarmNo": "1670094826", + "alarmDate": "1769997235889", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113948230337581", + "createdBy": null, + "createdTime": "2026-02-02 09:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:49", + "echoMap": {}, + "alarmNo": "1670094827", + "alarmDate": "1769997396052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113952525304835", + "createdBy": null, + "createdTime": "2026-02-02 09:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:28", + "echoMap": {}, + "alarmNo": "1670094828", + "alarmDate": "1769997428017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113956820272152", + "createdBy": null, + "createdTime": "2026-02-02 10:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:59", + "echoMap": {}, + "alarmNo": "1670094829", + "alarmDate": "1769998006334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113956820272218", + "createdBy": null, + "createdTime": "2026-02-02 10:06:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:35", + "echoMap": {}, + "alarmNo": "1670094830", + "alarmDate": "1769998018977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113956820272304", + "createdBy": null, + "createdTime": "2026-02-02 10:07:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:31", + "echoMap": {}, + "alarmNo": "1670094831", + "alarmDate": "1769998038382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113965410206842", + "createdBy": null, + "createdTime": "2026-02-02 10:17:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:20", + "echoMap": {}, + "alarmNo": "1670094832", + "alarmDate": "1769998626659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113965410206857", + "createdBy": null, + "createdTime": "2026-02-02 10:17:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:40", + "echoMap": {}, + "alarmNo": "1670094833", + "alarmDate": "1769998631063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113969705174046", + "createdBy": null, + "createdTime": "2026-02-02 10:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:08", + "echoMap": {}, + "alarmNo": "1670094834", + "alarmDate": "1769998659778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113974000141499", + "createdBy": null, + "createdTime": "2026-02-02 10:27:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:46", + "echoMap": {}, + "alarmNo": "1670094836", + "alarmDate": "1769999246949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113982590075948", + "createdBy": null, + "createdTime": "2026-02-02 10:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:54", + "echoMap": {}, + "alarmNo": "1670094837", + "alarmDate": "1769999810317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113982590076053", + "createdBy": null, + "createdTime": "2026-02-02 10:37:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:33", + "echoMap": {}, + "alarmNo": "1670094838", + "alarmDate": "1769999834318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113986885043235", + "createdBy": null, + "createdTime": "2026-02-02 10:37:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:34", + "echoMap": {}, + "alarmNo": "1670094839", + "alarmDate": "1769999848132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113986885043289", + "createdBy": null, + "createdTime": "2026-02-02 10:37:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:42", + "echoMap": {}, + "alarmNo": "1670094840", + "alarmDate": "1769999867263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113991180010503", + "createdBy": null, + "createdTime": "2026-02-02 10:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:57", + "echoMap": {}, + "alarmNo": "1670094842", + "alarmDate": "1770000413590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113991180010604", + "createdBy": null, + "createdTime": "2026-02-02 10:47:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:29", + "echoMap": {}, + "alarmNo": "1670094843", + "alarmDate": "1770000436608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113995474977854", + "createdBy": null, + "createdTime": "2026-02-02 10:47:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:08", + "echoMap": {}, + "alarmNo": "1670094844", + "alarmDate": "1770000468732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113995474977863", + "createdBy": null, + "createdTime": "2026-02-02 10:47:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:58", + "echoMap": {}, + "alarmNo": "1670094845", + "alarmDate": "1770000471933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113995474977955", + "createdBy": null, + "createdTime": "2026-02-02 10:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:58", + "echoMap": {}, + "alarmNo": "1670094846", + "alarmDate": "1770001009763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113999769945148", + "createdBy": null, + "createdTime": "2026-02-02 10:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:22", + "echoMap": {}, + "alarmNo": "1670094847", + "alarmDate": "1770001029827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113999769945150", + "createdBy": null, + "createdTime": "2026-02-02 10:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:24", + "echoMap": {}, + "alarmNo": "1670094848", + "alarmDate": "1770001030160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113999769945206", + "createdBy": null, + "createdTime": "2026-02-02 10:57:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:41", + "echoMap": {}, + "alarmNo": "1670094849", + "alarmDate": "1770001047939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114004064912542", + "createdBy": null, + "createdTime": "2026-02-02 11:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:56", + "echoMap": {}, + "alarmNo": "1670094850", + "alarmDate": "1770001611213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114008359879764", + "createdBy": null, + "createdTime": "2026-02-02 11:07:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:29", + "echoMap": {}, + "alarmNo": "1670094851", + "alarmDate": "1770001635188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114008359879826", + "createdBy": null, + "createdTime": "2026-02-02 11:07:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:00", + "echoMap": {}, + "alarmNo": "1670094852", + "alarmDate": "1770001654117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114012654847010", + "createdBy": null, + "createdTime": "2026-02-02 11:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:08", + "echoMap": {}, + "alarmNo": "1670094853", + "alarmDate": "1770001667320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114012654847025", + "createdBy": null, + "createdTime": "2026-02-02 11:07:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:55", + "echoMap": {}, + "alarmNo": "1670094854", + "alarmDate": "1770001675910", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114012654847137", + "createdBy": null, + "createdTime": "2026-02-02 11:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:55", + "echoMap": {}, + "alarmNo": "1670094855", + "alarmDate": "1770002215828", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114016949814383", + "createdBy": null, + "createdTime": "2026-02-02 11:17:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:40", + "echoMap": {}, + "alarmNo": "1670094856", + "alarmDate": "1770002246520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114021244781661", + "createdBy": null, + "createdTime": "2026-02-02 11:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:55", + "echoMap": {}, + "alarmNo": "1670094857", + "alarmDate": "1770002455786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114021244781724", + "createdBy": null, + "createdTime": "2026-02-02 11:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:04", + "echoMap": {}, + "alarmNo": "1670094858", + "alarmDate": "1770002814785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114025539748905", + "createdBy": null, + "createdTime": "2026-02-02 11:27:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:19", + "echoMap": {}, + "alarmNo": "1670094859", + "alarmDate": "1770002821888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114025539748938", + "createdBy": null, + "createdTime": "2026-02-02 11:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:49", + "echoMap": {}, + "alarmNo": "1670094860", + "alarmDate": "1770002831722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114025539748985", + "createdBy": null, + "createdTime": "2026-02-02 11:27:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:36", + "echoMap": {}, + "alarmNo": "1670094861", + "alarmDate": "1770002842806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114034129683471", + "createdBy": null, + "createdTime": "2026-02-02 11:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:59", + "echoMap": {}, + "alarmNo": "1670094862", + "alarmDate": "1770003412099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114034129683572", + "createdBy": null, + "createdTime": "2026-02-02 11:37:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:31", + "echoMap": {}, + "alarmNo": "1670094864", + "alarmDate": "1770003438152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114042719618059", + "createdBy": null, + "createdTime": "2026-02-02 11:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:56", + "echoMap": {}, + "alarmNo": "1670094865", + "alarmDate": "1770004011432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114042719618079", + "createdBy": null, + "createdTime": "2026-02-02 11:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:55", + "echoMap": {}, + "alarmNo": "1670094866", + "alarmDate": "1770004015822", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114042719618134", + "createdBy": null, + "createdTime": "2026-02-02 11:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:27", + "echoMap": {}, + "alarmNo": "1670094867", + "alarmDate": "1770004034473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585393", + "createdBy": null, + "createdTime": "2026-02-02 11:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:51", + "echoMap": {}, + "alarmNo": "1670094868", + "alarmDate": "1770004066584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585451", + "createdBy": null, + "createdTime": "2026-02-02 11:52:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:55", + "echoMap": {}, + "alarmNo": "1670094869", + "alarmDate": "1770004375786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585485", + "createdBy": null, + "createdTime": "2026-02-02 11:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:05", + "echoMap": {}, + "alarmNo": "1670094870", + "alarmDate": "1770004611781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585536", + "createdBy": null, + "createdTime": "2026-02-02 11:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:23", + "echoMap": {}, + "alarmNo": "1670094871", + "alarmDate": "1770004629599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585558", + "createdBy": null, + "createdTime": "2026-02-02 11:57:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:30", + "echoMap": {}, + "alarmNo": "1670094872", + "alarmDate": "1770004636732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114051309552688", + "createdBy": null, + "createdTime": "2026-02-02 11:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:53", + "echoMap": {}, + "alarmNo": "1670094873", + "alarmDate": "1770004661738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114051309552691", + "createdBy": null, + "createdTime": "2026-02-02 11:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:31", + "echoMap": {}, + "alarmNo": "1670094874", + "alarmDate": "1770004661913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114055604520033", + "createdBy": null, + "createdTime": "2026-02-02 12:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:26", + "echoMap": {}, + "alarmNo": "1670094875", + "alarmDate": "1770005226091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114055604520054", + "createdBy": null, + "createdTime": "2026-02-02 12:07:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:25", + "echoMap": {}, + "alarmNo": "1670094876", + "alarmDate": "1770005232353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114059899487263", + "createdBy": null, + "createdTime": "2026-02-02 12:07:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:44", + "echoMap": {}, + "alarmNo": "1670094877", + "alarmDate": "1770005258401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114059899487286", + "createdBy": null, + "createdTime": "2026-02-02 12:07:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:28", + "echoMap": {}, + "alarmNo": "1670094878", + "alarmDate": "1770005265211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114059899487319", + "createdBy": null, + "createdTime": "2026-02-02 12:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:55", + "echoMap": {}, + "alarmNo": "1670094879", + "alarmDate": "1770005455929", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114064194454662", + "createdBy": null, + "createdTime": "2026-02-02 12:17:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:37", + "echoMap": {}, + "alarmNo": "1670094880", + "alarmDate": "1770005850683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114064194454703", + "createdBy": null, + "createdTime": "2026-02-02 12:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:16", + "echoMap": {}, + "alarmNo": "1670094881", + "alarmDate": "1770005860346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114068489421899", + "createdBy": null, + "createdTime": "2026-02-02 12:24:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:55", + "echoMap": {}, + "alarmNo": "1670094882", + "alarmDate": "1770006295906", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114068489421920", + "createdBy": null, + "createdTime": "2026-02-02 12:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:55", + "echoMap": {}, + "alarmNo": "1670094883", + "alarmDate": "1770006415779", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114072784389169", + "createdBy": null, + "createdTime": "2026-02-02 12:27:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:41", + "echoMap": {}, + "alarmNo": "1670094884", + "alarmDate": "1770006447688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114072784389205", + "createdBy": null, + "createdTime": "2026-02-02 12:27:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:32", + "echoMap": {}, + "alarmNo": "1670094885", + "alarmDate": "1770006463802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114077079356469", + "createdBy": null, + "createdTime": "2026-02-02 12:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:12", + "echoMap": {}, + "alarmNo": "1670094886", + "alarmDate": "1770007012007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323745", + "createdBy": null, + "createdTime": "2026-02-02 12:37:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:44", + "echoMap": {}, + "alarmNo": "1670094887", + "alarmDate": "1770007050990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323801", + "createdBy": null, + "createdTime": "2026-02-02 12:37:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:55", + "echoMap": {}, + "alarmNo": "1670094888", + "alarmDate": "1770007075839", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323818", + "createdBy": null, + "createdTime": "2026-02-02 12:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:55", + "echoMap": {}, + "alarmNo": "1670094889", + "alarmDate": "1770007195838", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323853", + "createdBy": null, + "createdTime": "2026-02-02 12:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:55", + "echoMap": {}, + "alarmNo": "1670094890", + "alarmDate": "1770007375802", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323870", + "createdBy": null, + "createdTime": "2026-02-02 12:44:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:55", + "echoMap": {}, + "alarmNo": "1670094891", + "alarmDate": "1770007495804", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114085669291021", + "createdBy": null, + "createdTime": "2026-02-02 12:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:00", + "echoMap": {}, + "alarmNo": "1670094892", + "alarmDate": "1770007610259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114085669291108", + "createdBy": null, + "createdTime": "2026-02-02 12:47:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:23", + "echoMap": {}, + "alarmNo": "1670094893", + "alarmDate": "1770007637473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114085669291115", + "createdBy": null, + "createdTime": "2026-02-02 12:47:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:32", + "echoMap": {}, + "alarmNo": "1670094894", + "alarmDate": "1770007639274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258329", + "createdBy": null, + "createdTime": "2026-02-02 12:47:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:30", + "echoMap": {}, + "alarmNo": "1670094895", + "alarmDate": "1770007665439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258373", + "createdBy": null, + "createdTime": "2026-02-02 12:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:55", + "echoMap": {}, + "alarmNo": "1670094896", + "alarmDate": "1770007915808", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258417", + "createdBy": null, + "createdTime": "2026-02-02 12:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:36", + "echoMap": {}, + "alarmNo": "1670094897", + "alarmDate": "1770008211110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258420", + "createdBy": null, + "createdTime": "2026-02-02 12:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:03", + "echoMap": {}, + "alarmNo": "1670094898", + "alarmDate": "1770008211693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258469", + "createdBy": null, + "createdTime": "2026-02-02 12:57:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:20", + "echoMap": {}, + "alarmNo": "1670094899", + "alarmDate": "1770008219629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225658", + "createdBy": null, + "createdTime": "2026-02-02 12:57:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:28", + "echoMap": {}, + "alarmNo": "1670094900", + "alarmDate": "1770008241724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225693", + "createdBy": null, + "createdTime": "2026-02-02 12:57:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:23", + "echoMap": {}, + "alarmNo": "1670094901", + "alarmDate": "1770008258709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225700", + "createdBy": null, + "createdTime": "2026-02-02 12:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:56", + "echoMap": {}, + "alarmNo": "1670094902", + "alarmDate": "1770008262519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225703", + "createdBy": null, + "createdTime": "2026-02-02 12:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:57", + "echoMap": {}, + "alarmNo": "1670094903", + "alarmDate": "1770008262745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114098554192908", + "createdBy": null, + "createdTime": "2026-02-02 12:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:29", + "echoMap": {}, + "alarmNo": "1670094904", + "alarmDate": "1770008265755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114098554192927", + "createdBy": null, + "createdTime": "2026-02-02 12:57:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:55", + "echoMap": {}, + "alarmNo": "1670094905", + "alarmDate": "1770008275776", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114102849160238", + "createdBy": null, + "createdTime": "2026-02-02 13:07:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:30", + "echoMap": {}, + "alarmNo": "1670094906", + "alarmDate": "1770008843361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127493", + "createdBy": null, + "createdTime": "2026-02-02 13:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:54", + "echoMap": {}, + "alarmNo": "1670094907", + "alarmDate": "1770008860999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127502", + "createdBy": null, + "createdTime": "2026-02-02 13:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:54", + "echoMap": {}, + "alarmNo": "1670094908", + "alarmDate": "1770008862954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127546", + "createdBy": null, + "createdTime": "2026-02-02 13:07:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:23", + "echoMap": {}, + "alarmNo": "1670094909", + "alarmDate": "1770008873458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127599", + "createdBy": null, + "createdTime": "2026-02-02 13:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:55", + "echoMap": {}, + "alarmNo": "1670094910", + "alarmDate": "1770009055776", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127665", + "createdBy": null, + "createdTime": "2026-02-02 13:16:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:51", + "echoMap": {}, + "alarmNo": "1670094911", + "alarmDate": "1770009411313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114115734062089", + "createdBy": null, + "createdTime": "2026-02-02 13:17:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:26", + "echoMap": {}, + "alarmNo": "1670094912", + "alarmDate": "1770009433248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114115734062201", + "createdBy": null, + "createdTime": "2026-02-02 13:17:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:15", + "echoMap": {}, + "alarmNo": "1670094913", + "alarmDate": "1770009465253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114124323996675", + "createdBy": null, + "createdTime": "2026-02-02 13:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:08", + "echoMap": {}, + "alarmNo": "1670094914", + "alarmDate": "1770010028176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114124323996754", + "createdBy": null, + "createdTime": "2026-02-02 13:27:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:45", + "echoMap": {}, + "alarmNo": "1670094915", + "alarmDate": "1770010052531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114124323996761", + "createdBy": null, + "createdTime": "2026-02-02 13:27:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:10", + "echoMap": {}, + "alarmNo": "1670094916", + "alarmDate": "1770010053532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114132913931354", + "createdBy": null, + "createdTime": "2026-02-02 13:37:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:49", + "echoMap": {}, + "alarmNo": "1670094917", + "alarmDate": "1770010648860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114137208898604", + "createdBy": null, + "createdTime": "2026-02-02 13:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:06", + "echoMap": {}, + "alarmNo": "1670094918", + "alarmDate": "1770011211336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114137208898609", + "createdBy": null, + "createdTime": "2026-02-02 13:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:05", + "echoMap": {}, + "alarmNo": "1670094919", + "alarmDate": "1770011211996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114141503865970", + "createdBy": null, + "createdTime": "2026-02-02 13:47:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:29", + "echoMap": {}, + "alarmNo": "1670094920", + "alarmDate": "1770011243070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114141503865978", + "createdBy": null, + "createdTime": "2026-02-02 13:47:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:44", + "echoMap": {}, + "alarmNo": "1670094921", + "alarmDate": "1770011244147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114150093800543", + "createdBy": null, + "createdTime": "2026-02-02 13:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:01", + "echoMap": {}, + "alarmNo": "1670094922", + "alarmDate": "1770011810350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114158683735042", + "createdBy": null, + "createdTime": "2026-02-02 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:40", + "echoMap": {}, + "alarmNo": "1670094923", + "alarmDate": "1770011840554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114162978702347", + "createdBy": null, + "createdTime": "2026-02-02 14:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:55", + "echoMap": {}, + "alarmNo": "1670094924", + "alarmDate": "1770012415907", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114162978702370", + "createdBy": null, + "createdTime": "2026-02-02 14:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:20", + "echoMap": {}, + "alarmNo": "1670094925", + "alarmDate": "1770012419850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114162978702401", + "createdBy": null, + "createdTime": "2026-02-02 14:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:14", + "echoMap": {}, + "alarmNo": "1670094926", + "alarmDate": "1770012426455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114167273669733", + "createdBy": null, + "createdTime": "2026-02-02 14:07:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:52", + "echoMap": {}, + "alarmNo": "1670094927", + "alarmDate": "1770012458625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114167273669735", + "createdBy": null, + "createdTime": "2026-02-02 14:07:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:52", + "echoMap": {}, + "alarmNo": "1670094928", + "alarmDate": "1770012458850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114171568637025", + "createdBy": null, + "createdTime": "2026-02-02 14:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:16", + "echoMap": {}, + "alarmNo": "1670094929", + "alarmDate": "1770013010119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114175863604238", + "createdBy": null, + "createdTime": "2026-02-02 14:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:15", + "echoMap": {}, + "alarmNo": "1670094930", + "alarmDate": "1770013015992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114175863604420", + "createdBy": null, + "createdTime": "2026-02-02 14:17:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:40", + "echoMap": {}, + "alarmNo": "1670094931", + "alarmDate": "1770013052876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114175863604433", + "createdBy": null, + "createdTime": "2026-02-02 14:17:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:47", + "echoMap": {}, + "alarmNo": "1670094932", + "alarmDate": "1770013055130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114184453538920", + "createdBy": null, + "createdTime": "2026-02-02 14:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:18", + "echoMap": {}, + "alarmNo": "1670094933", + "alarmDate": "1770013626010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114184453538930", + "createdBy": null, + "createdTime": "2026-02-02 14:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:26", + "echoMap": {}, + "alarmNo": "1670094934", + "alarmDate": "1770013627461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114184453539035", + "createdBy": null, + "createdTime": "2026-02-02 14:27:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:35", + "echoMap": {}, + "alarmNo": "1670094935", + "alarmDate": "1770013648438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114188748506143", + "createdBy": null, + "createdTime": "2026-02-02 14:27:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:43", + "echoMap": {}, + "alarmNo": "1670094936", + "alarmDate": "1770013657136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473417", + "createdBy": null, + "createdTime": "2026-02-02 14:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:00", + "echoMap": {}, + "alarmNo": "1670094937", + "alarmDate": "1770013666442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473545", + "createdBy": null, + "createdTime": "2026-02-02 14:35:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "alarmNo": "1670094938", + "alarmDate": "1770014155864", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473581", + "createdBy": null, + "createdTime": "2026-02-02 14:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:04", + "echoMap": {}, + "alarmNo": "1670094939", + "alarmDate": "1770014223788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473587", + "createdBy": null, + "createdTime": "2026-02-02 14:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "alarmNo": "1670094940", + "alarmDate": "1770014224379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473618", + "createdBy": null, + "createdTime": "2026-02-02 14:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "alarmNo": "1670094941", + "alarmDate": "1770014230683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473694", + "createdBy": null, + "createdTime": "2026-02-02 14:37:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:38", + "echoMap": {}, + "alarmNo": "1670094942", + "alarmDate": "1770014245431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114197338440738", + "createdBy": null, + "createdTime": "2026-02-02 14:37:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:02", + "echoMap": {}, + "alarmNo": "1670094943", + "alarmDate": "1770014252947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060091", + "deviceName": "[702](10)邮电下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114201633408067", + "createdBy": null, + "createdTime": "2026-02-02 14:37:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "alarmNo": "1670094944", + "alarmDate": "1770014269763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114201633408115", + "createdBy": null, + "createdTime": "2026-02-02 14:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:57", + "echoMap": {}, + "alarmNo": "1670094945", + "alarmDate": "1770014277331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113845151122468", + "createdBy": null, + "createdTime": "2026-02-02 07:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:55", + "echoMap": {}, + "alarmNo": "1670094756", + "alarmDate": "1769989015931", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113931050468401", + "createdBy": null, + "createdTime": "2026-02-02 09:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:55", + "echoMap": {}, + "alarmNo": "1670094819", + "alarmDate": "1769995915989", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113969705174132", + "createdBy": null, + "createdTime": "2026-02-02 10:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:55", + "echoMap": {}, + "alarmNo": "1670094835", + "alarmDate": "1769998915957", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113986885043328", + "createdBy": null, + "createdTime": "2026-02-02 10:41:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:55", + "echoMap": {}, + "alarmNo": "1670094841", + "alarmDate": "1770000115856", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723114034129683491", + "createdBy": null, + "createdTime": "2026-02-02 11:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:55", + "echoMap": {}, + "alarmNo": "1670094863", + "alarmDate": "1770003415893", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723114201633408115", + "createdBy": null, + "createdTime": "2026-02-02 14:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:57", + "echoMap": {}, + "alarmNo": "1670094945", + "alarmDate": "1770014277331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114201633408067", + "createdBy": null, + "createdTime": "2026-02-02 14:37:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "alarmNo": "1670094944", + "alarmDate": "1770014269763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114197338440738", + "createdBy": null, + "createdTime": "2026-02-02 14:37:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:02", + "echoMap": {}, + "alarmNo": "1670094943", + "alarmDate": "1770014252947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060091", + "deviceName": "[702](10)邮电下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473694", + "createdBy": null, + "createdTime": "2026-02-02 14:37:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:38", + "echoMap": {}, + "alarmNo": "1670094942", + "alarmDate": "1770014245431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473618", + "createdBy": null, + "createdTime": "2026-02-02 14:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "alarmNo": "1670094941", + "alarmDate": "1770014230683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473587", + "createdBy": null, + "createdTime": "2026-02-02 14:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "alarmNo": "1670094940", + "alarmDate": "1770014224379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473581", + "createdBy": null, + "createdTime": "2026-02-02 14:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:04", + "echoMap": {}, + "alarmNo": "1670094939", + "alarmDate": "1770014223788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473545", + "createdBy": null, + "createdTime": "2026-02-02 14:35:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "alarmNo": "1670094938", + "alarmDate": "1770014155864", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114193043473417", + "createdBy": null, + "createdTime": "2026-02-02 14:27:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:28:00", + "echoMap": {}, + "alarmNo": "1670094937", + "alarmDate": "1770013666442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114188748506143", + "createdBy": null, + "createdTime": "2026-02-02 14:27:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:43", + "echoMap": {}, + "alarmNo": "1670094936", + "alarmDate": "1770013657136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114184453539035", + "createdBy": null, + "createdTime": "2026-02-02 14:27:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:35", + "echoMap": {}, + "alarmNo": "1670094935", + "alarmDate": "1770013648438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114184453538930", + "createdBy": null, + "createdTime": "2026-02-02 14:27:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:26", + "echoMap": {}, + "alarmNo": "1670094934", + "alarmDate": "1770013627461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114184453538920", + "createdBy": null, + "createdTime": "2026-02-02 14:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:18", + "echoMap": {}, + "alarmNo": "1670094933", + "alarmDate": "1770013626010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114175863604433", + "createdBy": null, + "createdTime": "2026-02-02 14:17:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:47", + "echoMap": {}, + "alarmNo": "1670094932", + "alarmDate": "1770013055130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114175863604420", + "createdBy": null, + "createdTime": "2026-02-02 14:17:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:40", + "echoMap": {}, + "alarmNo": "1670094931", + "alarmDate": "1770013052876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114175863604238", + "createdBy": null, + "createdTime": "2026-02-02 14:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:15", + "echoMap": {}, + "alarmNo": "1670094930", + "alarmDate": "1770013015992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114171568637025", + "createdBy": null, + "createdTime": "2026-02-02 14:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:16", + "echoMap": {}, + "alarmNo": "1670094929", + "alarmDate": "1770013010119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114167273669735", + "createdBy": null, + "createdTime": "2026-02-02 14:07:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:52", + "echoMap": {}, + "alarmNo": "1670094928", + "alarmDate": "1770012458850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114167273669733", + "createdBy": null, + "createdTime": "2026-02-02 14:07:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:52", + "echoMap": {}, + "alarmNo": "1670094927", + "alarmDate": "1770012458625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114162978702401", + "createdBy": null, + "createdTime": "2026-02-02 14:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:14", + "echoMap": {}, + "alarmNo": "1670094926", + "alarmDate": "1770012426455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114162978702370", + "createdBy": null, + "createdTime": "2026-02-02 14:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:20", + "echoMap": {}, + "alarmNo": "1670094925", + "alarmDate": "1770012419850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114162978702347", + "createdBy": null, + "createdTime": "2026-02-02 14:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:55", + "echoMap": {}, + "alarmNo": "1670094924", + "alarmDate": "1770012415907", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114158683735042", + "createdBy": null, + "createdTime": "2026-02-02 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:40", + "echoMap": {}, + "alarmNo": "1670094923", + "alarmDate": "1770011840554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114150093800543", + "createdBy": null, + "createdTime": "2026-02-02 13:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:01", + "echoMap": {}, + "alarmNo": "1670094922", + "alarmDate": "1770011810350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114141503865978", + "createdBy": null, + "createdTime": "2026-02-02 13:47:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:44", + "echoMap": {}, + "alarmNo": "1670094921", + "alarmDate": "1770011244147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114141503865970", + "createdBy": null, + "createdTime": "2026-02-02 13:47:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:29", + "echoMap": {}, + "alarmNo": "1670094920", + "alarmDate": "1770011243070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114137208898609", + "createdBy": null, + "createdTime": "2026-02-02 13:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:05", + "echoMap": {}, + "alarmNo": "1670094919", + "alarmDate": "1770011211996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114137208898604", + "createdBy": null, + "createdTime": "2026-02-02 13:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:06", + "echoMap": {}, + "alarmNo": "1670094918", + "alarmDate": "1770011211336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114132913931354", + "createdBy": null, + "createdTime": "2026-02-02 13:37:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:49", + "echoMap": {}, + "alarmNo": "1670094917", + "alarmDate": "1770010648860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114124323996761", + "createdBy": null, + "createdTime": "2026-02-02 13:27:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:10", + "echoMap": {}, + "alarmNo": "1670094916", + "alarmDate": "1770010053532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114124323996754", + "createdBy": null, + "createdTime": "2026-02-02 13:27:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:45", + "echoMap": {}, + "alarmNo": "1670094915", + "alarmDate": "1770010052531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114124323996675", + "createdBy": null, + "createdTime": "2026-02-02 13:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:08", + "echoMap": {}, + "alarmNo": "1670094914", + "alarmDate": "1770010028176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114115734062201", + "createdBy": null, + "createdTime": "2026-02-02 13:17:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:15", + "echoMap": {}, + "alarmNo": "1670094913", + "alarmDate": "1770009465253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114115734062089", + "createdBy": null, + "createdTime": "2026-02-02 13:17:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:26", + "echoMap": {}, + "alarmNo": "1670094912", + "alarmDate": "1770009433248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127665", + "createdBy": null, + "createdTime": "2026-02-02 13:16:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:51", + "echoMap": {}, + "alarmNo": "1670094911", + "alarmDate": "1770009411313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127599", + "createdBy": null, + "createdTime": "2026-02-02 13:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:55", + "echoMap": {}, + "alarmNo": "1670094910", + "alarmDate": "1770009055776", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127546", + "createdBy": null, + "createdTime": "2026-02-02 13:07:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:23", + "echoMap": {}, + "alarmNo": "1670094909", + "alarmDate": "1770008873458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127502", + "createdBy": null, + "createdTime": "2026-02-02 13:07:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:54", + "echoMap": {}, + "alarmNo": "1670094908", + "alarmDate": "1770008862954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114107144127493", + "createdBy": null, + "createdTime": "2026-02-02 13:07:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:54", + "echoMap": {}, + "alarmNo": "1670094907", + "alarmDate": "1770008860999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114102849160238", + "createdBy": null, + "createdTime": "2026-02-02 13:07:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:30", + "echoMap": {}, + "alarmNo": "1670094906", + "alarmDate": "1770008843361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114098554192927", + "createdBy": null, + "createdTime": "2026-02-02 12:57:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:55", + "echoMap": {}, + "alarmNo": "1670094905", + "alarmDate": "1770008275776", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114098554192908", + "createdBy": null, + "createdTime": "2026-02-02 12:57:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:29", + "echoMap": {}, + "alarmNo": "1670094904", + "alarmDate": "1770008265755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225703", + "createdBy": null, + "createdTime": "2026-02-02 12:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:57", + "echoMap": {}, + "alarmNo": "1670094903", + "alarmDate": "1770008262745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225700", + "createdBy": null, + "createdTime": "2026-02-02 12:57:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:56", + "echoMap": {}, + "alarmNo": "1670094902", + "alarmDate": "1770008262519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225693", + "createdBy": null, + "createdTime": "2026-02-02 12:57:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:07:23", + "echoMap": {}, + "alarmNo": "1670094901", + "alarmDate": "1770008258709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114094259225658", + "createdBy": null, + "createdTime": "2026-02-02 12:57:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:28", + "echoMap": {}, + "alarmNo": "1670094900", + "alarmDate": "1770008241724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258469", + "createdBy": null, + "createdTime": "2026-02-02 12:57:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:20", + "echoMap": {}, + "alarmNo": "1670094899", + "alarmDate": "1770008219629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258420", + "createdBy": null, + "createdTime": "2026-02-02 12:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:03", + "echoMap": {}, + "alarmNo": "1670094898", + "alarmDate": "1770008211693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258417", + "createdBy": null, + "createdTime": "2026-02-02 12:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:36", + "echoMap": {}, + "alarmNo": "1670094897", + "alarmDate": "1770008211110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258373", + "createdBy": null, + "createdTime": "2026-02-02 12:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:55", + "echoMap": {}, + "alarmNo": "1670094896", + "alarmDate": "1770007915808", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114089964258329", + "createdBy": null, + "createdTime": "2026-02-02 12:47:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:30", + "echoMap": {}, + "alarmNo": "1670094895", + "alarmDate": "1770007665439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114085669291115", + "createdBy": null, + "createdTime": "2026-02-02 12:47:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:32", + "echoMap": {}, + "alarmNo": "1670094894", + "alarmDate": "1770007639274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114085669291108", + "createdBy": null, + "createdTime": "2026-02-02 12:47:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:23", + "echoMap": {}, + "alarmNo": "1670094893", + "alarmDate": "1770007637473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114085669291021", + "createdBy": null, + "createdTime": "2026-02-02 12:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:00", + "echoMap": {}, + "alarmNo": "1670094892", + "alarmDate": "1770007610259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323870", + "createdBy": null, + "createdTime": "2026-02-02 12:44:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:55", + "echoMap": {}, + "alarmNo": "1670094891", + "alarmDate": "1770007495804", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323853", + "createdBy": null, + "createdTime": "2026-02-02 12:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:55", + "echoMap": {}, + "alarmNo": "1670094890", + "alarmDate": "1770007375802", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323818", + "createdBy": null, + "createdTime": "2026-02-02 12:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:55", + "echoMap": {}, + "alarmNo": "1670094889", + "alarmDate": "1770007195838", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323801", + "createdBy": null, + "createdTime": "2026-02-02 12:37:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:55", + "echoMap": {}, + "alarmNo": "1670094888", + "alarmDate": "1770007075839", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114081374323745", + "createdBy": null, + "createdTime": "2026-02-02 12:37:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:44", + "echoMap": {}, + "alarmNo": "1670094887", + "alarmDate": "1770007050990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114077079356469", + "createdBy": null, + "createdTime": "2026-02-02 12:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:12", + "echoMap": {}, + "alarmNo": "1670094886", + "alarmDate": "1770007012007", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114072784389205", + "createdBy": null, + "createdTime": "2026-02-02 12:27:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:32", + "echoMap": {}, + "alarmNo": "1670094885", + "alarmDate": "1770006463802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114072784389169", + "createdBy": null, + "createdTime": "2026-02-02 12:27:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:41", + "echoMap": {}, + "alarmNo": "1670094884", + "alarmDate": "1770006447688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114068489421920", + "createdBy": null, + "createdTime": "2026-02-02 12:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:55", + "echoMap": {}, + "alarmNo": "1670094883", + "alarmDate": "1770006415779", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114068489421899", + "createdBy": null, + "createdTime": "2026-02-02 12:24:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:25:55", + "echoMap": {}, + "alarmNo": "1670094882", + "alarmDate": "1770006295906", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114064194454703", + "createdBy": null, + "createdTime": "2026-02-02 12:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:16", + "echoMap": {}, + "alarmNo": "1670094881", + "alarmDate": "1770005860346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114064194454662", + "createdBy": null, + "createdTime": "2026-02-02 12:17:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:37", + "echoMap": {}, + "alarmNo": "1670094880", + "alarmDate": "1770005850683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114059899487319", + "createdBy": null, + "createdTime": "2026-02-02 12:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:55", + "echoMap": {}, + "alarmNo": "1670094879", + "alarmDate": "1770005455929", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114059899487286", + "createdBy": null, + "createdTime": "2026-02-02 12:07:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:28", + "echoMap": {}, + "alarmNo": "1670094878", + "alarmDate": "1770005265211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114059899487263", + "createdBy": null, + "createdTime": "2026-02-02 12:07:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:44", + "echoMap": {}, + "alarmNo": "1670094877", + "alarmDate": "1770005258401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114055604520054", + "createdBy": null, + "createdTime": "2026-02-02 12:07:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:25", + "echoMap": {}, + "alarmNo": "1670094876", + "alarmDate": "1770005232353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114055604520033", + "createdBy": null, + "createdTime": "2026-02-02 12:07:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:07:26", + "echoMap": {}, + "alarmNo": "1670094875", + "alarmDate": "1770005226091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114051309552691", + "createdBy": null, + "createdTime": "2026-02-02 11:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:31", + "echoMap": {}, + "alarmNo": "1670094874", + "alarmDate": "1770004661913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114051309552688", + "createdBy": null, + "createdTime": "2026-02-02 11:57:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:53", + "echoMap": {}, + "alarmNo": "1670094873", + "alarmDate": "1770004661738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585558", + "createdBy": null, + "createdTime": "2026-02-02 11:57:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:30", + "echoMap": {}, + "alarmNo": "1670094872", + "alarmDate": "1770004636732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585536", + "createdBy": null, + "createdTime": "2026-02-02 11:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:23", + "echoMap": {}, + "alarmNo": "1670094871", + "alarmDate": "1770004629599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585485", + "createdBy": null, + "createdTime": "2026-02-02 11:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:05", + "echoMap": {}, + "alarmNo": "1670094870", + "alarmDate": "1770004611781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585451", + "createdBy": null, + "createdTime": "2026-02-02 11:52:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:55", + "echoMap": {}, + "alarmNo": "1670094869", + "alarmDate": "1770004375786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114047014585393", + "createdBy": null, + "createdTime": "2026-02-02 11:47:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:51", + "echoMap": {}, + "alarmNo": "1670094868", + "alarmDate": "1770004066584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114042719618134", + "createdBy": null, + "createdTime": "2026-02-02 11:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:27", + "echoMap": {}, + "alarmNo": "1670094867", + "alarmDate": "1770004034473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114042719618079", + "createdBy": null, + "createdTime": "2026-02-02 11:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:55", + "echoMap": {}, + "alarmNo": "1670094866", + "alarmDate": "1770004015822", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114042719618059", + "createdBy": null, + "createdTime": "2026-02-02 11:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:56", + "echoMap": {}, + "alarmNo": "1670094865", + "alarmDate": "1770004011432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114034129683572", + "createdBy": null, + "createdTime": "2026-02-02 11:37:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:31", + "echoMap": {}, + "alarmNo": "1670094864", + "alarmDate": "1770003438152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114034129683491", + "createdBy": null, + "createdTime": "2026-02-02 11:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:55", + "echoMap": {}, + "alarmNo": "1670094863", + "alarmDate": "1770003415893", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723114034129683471", + "createdBy": null, + "createdTime": "2026-02-02 11:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:59", + "echoMap": {}, + "alarmNo": "1670094862", + "alarmDate": "1770003412099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114025539748985", + "createdBy": null, + "createdTime": "2026-02-02 11:27:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:36", + "echoMap": {}, + "alarmNo": "1670094861", + "alarmDate": "1770002842806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114025539748938", + "createdBy": null, + "createdTime": "2026-02-02 11:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:49", + "echoMap": {}, + "alarmNo": "1670094860", + "alarmDate": "1770002831722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114025539748905", + "createdBy": null, + "createdTime": "2026-02-02 11:27:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:57:19", + "echoMap": {}, + "alarmNo": "1670094859", + "alarmDate": "1770002821888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114021244781724", + "createdBy": null, + "createdTime": "2026-02-02 11:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:04", + "echoMap": {}, + "alarmNo": "1670094858", + "alarmDate": "1770002814785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114021244781661", + "createdBy": null, + "createdTime": "2026-02-02 11:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:55", + "echoMap": {}, + "alarmNo": "1670094857", + "alarmDate": "1770002455786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114016949814383", + "createdBy": null, + "createdTime": "2026-02-02 11:17:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:40", + "echoMap": {}, + "alarmNo": "1670094856", + "alarmDate": "1770002246520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114012654847137", + "createdBy": null, + "createdTime": "2026-02-02 11:16:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:55", + "echoMap": {}, + "alarmNo": "1670094855", + "alarmDate": "1770002215828", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114012654847025", + "createdBy": null, + "createdTime": "2026-02-02 11:07:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:55", + "echoMap": {}, + "alarmNo": "1670094854", + "alarmDate": "1770001675910", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114012654847010", + "createdBy": null, + "createdTime": "2026-02-02 11:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:08", + "echoMap": {}, + "alarmNo": "1670094853", + "alarmDate": "1770001667320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114008359879826", + "createdBy": null, + "createdTime": "2026-02-02 11:07:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:00", + "echoMap": {}, + "alarmNo": "1670094852", + "alarmDate": "1770001654117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114008359879764", + "createdBy": null, + "createdTime": "2026-02-02 11:07:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:29", + "echoMap": {}, + "alarmNo": "1670094851", + "alarmDate": "1770001635188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723114004064912542", + "createdBy": null, + "createdTime": "2026-02-02 11:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:56", + "echoMap": {}, + "alarmNo": "1670094850", + "alarmDate": "1770001611213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113999769945206", + "createdBy": null, + "createdTime": "2026-02-02 10:57:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:41", + "echoMap": {}, + "alarmNo": "1670094849", + "alarmDate": "1770001047939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113999769945150", + "createdBy": null, + "createdTime": "2026-02-02 10:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:24", + "echoMap": {}, + "alarmNo": "1670094848", + "alarmDate": "1770001030160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113999769945148", + "createdBy": null, + "createdTime": "2026-02-02 10:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:22", + "echoMap": {}, + "alarmNo": "1670094847", + "alarmDate": "1770001029827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113995474977955", + "createdBy": null, + "createdTime": "2026-02-02 10:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:58", + "echoMap": {}, + "alarmNo": "1670094846", + "alarmDate": "1770001009763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113995474977863", + "createdBy": null, + "createdTime": "2026-02-02 10:47:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:58", + "echoMap": {}, + "alarmNo": "1670094845", + "alarmDate": "1770000471933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113995474977854", + "createdBy": null, + "createdTime": "2026-02-02 10:47:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:08", + "echoMap": {}, + "alarmNo": "1670094844", + "alarmDate": "1770000468732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113991180010604", + "createdBy": null, + "createdTime": "2026-02-02 10:47:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:29", + "echoMap": {}, + "alarmNo": "1670094843", + "alarmDate": "1770000436608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113991180010503", + "createdBy": null, + "createdTime": "2026-02-02 10:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:57", + "echoMap": {}, + "alarmNo": "1670094842", + "alarmDate": "1770000413590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113986885043328", + "createdBy": null, + "createdTime": "2026-02-02 10:41:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:55", + "echoMap": {}, + "alarmNo": "1670094841", + "alarmDate": "1770000115856", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113986885043289", + "createdBy": null, + "createdTime": "2026-02-02 10:37:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:42", + "echoMap": {}, + "alarmNo": "1670094840", + "alarmDate": "1769999867263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113986885043235", + "createdBy": null, + "createdTime": "2026-02-02 10:37:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:34", + "echoMap": {}, + "alarmNo": "1670094839", + "alarmDate": "1769999848132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113982590076053", + "createdBy": null, + "createdTime": "2026-02-02 10:37:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:33", + "echoMap": {}, + "alarmNo": "1670094838", + "alarmDate": "1769999834318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113982590075948", + "createdBy": null, + "createdTime": "2026-02-02 10:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:54", + "echoMap": {}, + "alarmNo": "1670094837", + "alarmDate": "1769999810317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113974000141499", + "createdBy": null, + "createdTime": "2026-02-02 10:27:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:46", + "echoMap": {}, + "alarmNo": "1670094836", + "alarmDate": "1769999246949", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113969705174132", + "createdBy": null, + "createdTime": "2026-02-02 10:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:55", + "echoMap": {}, + "alarmNo": "1670094835", + "alarmDate": "1769998915957", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113969705174046", + "createdBy": null, + "createdTime": "2026-02-02 10:17:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:27:08", + "echoMap": {}, + "alarmNo": "1670094834", + "alarmDate": "1769998659778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113965410206857", + "createdBy": null, + "createdTime": "2026-02-02 10:17:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:40", + "echoMap": {}, + "alarmNo": "1670094833", + "alarmDate": "1769998631063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113965410206842", + "createdBy": null, + "createdTime": "2026-02-02 10:17:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:20", + "echoMap": {}, + "alarmNo": "1670094832", + "alarmDate": "1769998626659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113956820272304", + "createdBy": null, + "createdTime": "2026-02-02 10:07:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:31", + "echoMap": {}, + "alarmNo": "1670094831", + "alarmDate": "1769998038382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113956820272218", + "createdBy": null, + "createdTime": "2026-02-02 10:06:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:07:35", + "echoMap": {}, + "alarmNo": "1670094830", + "alarmDate": "1769998018977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113956820272152", + "createdBy": null, + "createdTime": "2026-02-02 10:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:59", + "echoMap": {}, + "alarmNo": "1670094829", + "alarmDate": "1769998006334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113952525304835", + "createdBy": null, + "createdTime": "2026-02-02 09:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:28", + "echoMap": {}, + "alarmNo": "1670094828", + "alarmDate": "1769997428017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113948230337581", + "createdBy": null, + "createdTime": "2026-02-02 09:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:49", + "echoMap": {}, + "alarmNo": "1670094827", + "alarmDate": "1769997396052", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113948230337545", + "createdBy": null, + "createdTime": "2026-02-02 09:53:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:55", + "echoMap": {}, + "alarmNo": "1670094826", + "alarmDate": "1769997235889", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640403126", + "createdBy": null, + "createdTime": "2026-02-02 09:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:13", + "echoMap": {}, + "alarmNo": "1670094825", + "alarmDate": "1769996820626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640403097", + "createdBy": null, + "createdTime": "2026-02-02 09:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:16", + "echoMap": {}, + "alarmNo": "1670094824", + "alarmDate": "1769996816696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640403013", + "createdBy": null, + "createdTime": "2026-02-02 09:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:41", + "echoMap": {}, + "alarmNo": "1670094823", + "alarmDate": "1769996795452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640402967", + "createdBy": null, + "createdTime": "2026-02-02 09:46:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:37", + "echoMap": {}, + "alarmNo": "1670094822", + "alarmDate": "1769996787712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113939640402964", + "createdBy": null, + "createdTime": "2026-02-02 09:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:27", + "echoMap": {}, + "alarmNo": "1670094821", + "alarmDate": "1769996787454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113931050468546", + "createdBy": null, + "createdTime": "2026-02-02 09:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:13", + "echoMap": {}, + "alarmNo": "1670094820", + "alarmDate": "1769996220343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113931050468401", + "createdBy": null, + "createdTime": "2026-02-02 09:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:55", + "echoMap": {}, + "alarmNo": "1670094819", + "alarmDate": "1769995915989", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113931050468363", + "createdBy": null, + "createdTime": "2026-02-02 09:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:55", + "echoMap": {}, + "alarmNo": "1670094818", + "alarmDate": "1769995675811", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113926755501138", + "createdBy": null, + "createdTime": "2026-02-02 09:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:41", + "echoMap": {}, + "alarmNo": "1670094817", + "alarmDate": "1769995633109", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113926755501129", + "createdBy": null, + "createdTime": "2026-02-02 09:27:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:18", + "echoMap": {}, + "alarmNo": "1670094816", + "alarmDate": "1769995631078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113926755501116", + "createdBy": null, + "createdTime": "2026-02-02 09:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:15", + "echoMap": {}, + "alarmNo": "1670094815", + "alarmDate": "1769995625744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533974", + "createdBy": null, + "createdTime": "2026-02-02 09:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:59", + "echoMap": {}, + "alarmNo": "1670094814", + "alarmDate": "1769995605932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533956", + "createdBy": null, + "createdTime": "2026-02-02 09:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:54", + "echoMap": {}, + "alarmNo": "1670094813", + "alarmDate": "1769995600718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533945", + "createdBy": null, + "createdTime": "2026-02-02 09:26:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:00", + "echoMap": {}, + "alarmNo": "1670094812", + "alarmDate": "1769995596600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533930", + "createdBy": null, + "createdTime": "2026-02-02 09:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:34", + "echoMap": {}, + "alarmNo": "1670094811", + "alarmDate": "1769995586957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533897", + "createdBy": null, + "createdTime": "2026-02-02 09:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:55", + "echoMap": {}, + "alarmNo": "1670094810", + "alarmDate": "1769995375783", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533862", + "createdBy": null, + "createdTime": "2026-02-02 09:19:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:55", + "echoMap": {}, + "alarmNo": "1670094809", + "alarmDate": "1769995195785", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533828", + "createdBy": null, + "createdTime": "2026-02-02 09:17:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:54", + "echoMap": {}, + "alarmNo": "1670094808", + "alarmDate": "1769995037737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113922460533794", + "createdBy": null, + "createdTime": "2026-02-02 09:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:11", + "echoMap": {}, + "alarmNo": "1670094807", + "alarmDate": "1769995024457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113918165566573", + "createdBy": null, + "createdTime": "2026-02-02 09:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:59", + "echoMap": {}, + "alarmNo": "1670094806", + "alarmDate": "1769995006721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113918165566523", + "createdBy": null, + "createdTime": "2026-02-02 09:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:34", + "echoMap": {}, + "alarmNo": "1670094805", + "alarmDate": "1769994986701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599279", + "createdBy": null, + "createdTime": "2026-02-02 09:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:55", + "echoMap": {}, + "alarmNo": "1670094804", + "alarmDate": "1769994415784", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599256", + "createdBy": null, + "createdTime": "2026-02-02 09:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:10", + "echoMap": {}, + "alarmNo": "1670094803", + "alarmDate": "1769994410414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599250", + "createdBy": null, + "createdTime": "2026-02-02 09:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:50", + "echoMap": {}, + "alarmNo": "1670094802", + "alarmDate": "1769994409247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060067", + "deviceName": "[211](10)邮电4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113913870599195", + "createdBy": null, + "createdTime": "2026-02-02 09:06:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:31", + "echoMap": {}, + "alarmNo": "1670094801", + "alarmDate": "1769994386441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113909575631907", + "createdBy": null, + "createdTime": "2026-02-02 08:57:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:26", + "echoMap": {}, + "alarmNo": "1670094800", + "alarmDate": "1769993835304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113909575631877", + "createdBy": null, + "createdTime": "2026-02-02 08:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:15", + "echoMap": {}, + "alarmNo": "1670094799", + "alarmDate": "1769993828233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113905280664722", + "createdBy": null, + "createdTime": "2026-02-02 08:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:14", + "echoMap": {}, + "alarmNo": "1670094798", + "alarmDate": "1769993815104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113905280664668", + "createdBy": null, + "createdTime": "2026-02-02 08:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:02", + "echoMap": {}, + "alarmNo": "1670094797", + "alarmDate": "1769993798162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113905280664638", + "createdBy": null, + "createdTime": "2026-02-02 08:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:35", + "echoMap": {}, + "alarmNo": "1670094796", + "alarmDate": "1769993788096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113900985697327", + "createdBy": null, + "createdTime": "2026-02-02 08:47:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:27", + "echoMap": {}, + "alarmNo": "1670094795", + "alarmDate": "1769993240989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113900985697284", + "createdBy": null, + "createdTime": "2026-02-02 08:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:47:19", + "echoMap": {}, + "alarmNo": "1670094794", + "alarmDate": "1769993226790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113896690730091", + "createdBy": null, + "createdTime": "2026-02-02 08:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:42", + "echoMap": {}, + "alarmNo": "1670094793", + "alarmDate": "1769993196320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113896690730067", + "createdBy": null, + "createdTime": "2026-02-02 08:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:47", + "echoMap": {}, + "alarmNo": "1670094792", + "alarmDate": "1769993188769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113896690730002", + "createdBy": null, + "createdTime": "2026-02-02 08:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:55", + "echoMap": {}, + "alarmNo": "1670094791", + "alarmDate": "1769992795786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113892395762784", + "createdBy": null, + "createdTime": "2026-02-02 08:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:24", + "echoMap": {}, + "alarmNo": "1670094790", + "alarmDate": "1769992630450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113892395762779", + "createdBy": null, + "createdTime": "2026-02-02 08:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:52", + "echoMap": {}, + "alarmNo": "1670094789", + "alarmDate": "1769992629271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113892395762701", + "createdBy": null, + "createdTime": "2026-02-02 08:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:57", + "echoMap": {}, + "alarmNo": "1670094788", + "alarmDate": "1769992604686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113888100795442", + "createdBy": null, + "createdTime": "2026-02-02 08:27:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:29", + "echoMap": {}, + "alarmNo": "1670094787", + "alarmDate": "1769992041939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113888100795407", + "createdBy": null, + "createdTime": "2026-02-02 08:27:08", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:51", + "echoMap": {}, + "alarmNo": "1670094786", + "alarmDate": "1769992028150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113883805828191", + "createdBy": null, + "createdTime": "2026-02-02 08:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:11", + "echoMap": {}, + "alarmNo": "1670094785", + "alarmDate": "1769992018455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510861002", + "createdBy": null, + "createdTime": "2026-02-02 08:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:33", + "echoMap": {}, + "alarmNo": "1670094784", + "alarmDate": "1769991987287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510860994", + "createdBy": null, + "createdTime": "2026-02-02 08:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:31", + "echoMap": {}, + "alarmNo": "1670094783", + "alarmDate": "1769991984432", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510860914", + "createdBy": null, + "createdTime": "2026-02-02 08:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:55", + "echoMap": {}, + "alarmNo": "1670094782", + "alarmDate": "1769991475923", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113879510860888", + "createdBy": null, + "createdTime": "2026-02-02 08:17:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:48", + "echoMap": {}, + "alarmNo": "1670094781", + "alarmDate": "1769991431954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893634", + "createdBy": null, + "createdTime": "2026-02-02 08:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:53", + "echoMap": {}, + "alarmNo": "1670094780", + "alarmDate": "1769991399833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893626", + "createdBy": null, + "createdTime": "2026-02-02 08:16:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:44", + "echoMap": {}, + "alarmNo": "1670094779", + "alarmDate": "1769991398184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893579", + "createdBy": null, + "createdTime": "2026-02-02 08:16:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:21", + "echoMap": {}, + "alarmNo": "1670094778", + "alarmDate": "1769991375780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113875215893546", + "createdBy": null, + "createdTime": "2026-02-02 08:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:55", + "echoMap": {}, + "alarmNo": "1670094777", + "alarmDate": "1769991175775", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113870920926262", + "createdBy": null, + "createdTime": "2026-02-02 08:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:20", + "echoMap": {}, + "alarmNo": "1670094776", + "alarmDate": "1769990813893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113870920926219", + "createdBy": null, + "createdTime": "2026-02-02 08:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:05", + "echoMap": {}, + "alarmNo": "1670094775", + "alarmDate": "1769990805590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625959020", + "createdBy": null, + "createdTime": "2026-02-02 08:06:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:08", + "echoMap": {}, + "alarmNo": "1670094774", + "alarmDate": "1769990798301", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060091", + "deviceName": "[702](10)邮电下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625959007", + "createdBy": null, + "createdTime": "2026-02-02 08:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:53", + "echoMap": {}, + "alarmNo": "1670094773", + "alarmDate": "1769990794928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625958997", + "createdBy": null, + "createdTime": "2026-02-02 08:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:57", + "echoMap": {}, + "alarmNo": "1670094772", + "alarmDate": "1769990790381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625958947", + "createdBy": null, + "createdTime": "2026-02-02 08:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:26", + "echoMap": {}, + "alarmNo": "1670094771", + "alarmDate": "1769990773554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113866625958940", + "createdBy": null, + "createdTime": "2026-02-02 08:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:17", + "echoMap": {}, + "alarmNo": "1670094770", + "alarmDate": "1769990772377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113862330991714", + "createdBy": null, + "createdTime": "2026-02-02 07:57:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:14", + "echoMap": {}, + "alarmNo": "1670094769", + "alarmDate": "1769990229507", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113862330991698", + "createdBy": null, + "createdTime": "2026-02-02 07:57:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:17", + "echoMap": {}, + "alarmNo": "1670094768", + "alarmDate": "1769990225655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113862330991643", + "createdBy": null, + "createdTime": "2026-02-02 07:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:09", + "echoMap": {}, + "alarmNo": "1670094767", + "alarmDate": "1769990215538", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024465", + "createdBy": null, + "createdTime": "2026-02-02 07:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:01", + "echoMap": {}, + "alarmNo": "1670094766", + "alarmDate": "1769990208244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024455", + "createdBy": null, + "createdTime": "2026-02-02 07:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:04", + "echoMap": {}, + "alarmNo": "1670094765", + "alarmDate": "1769990205176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024441", + "createdBy": null, + "createdTime": "2026-02-02 07:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:46", + "echoMap": {}, + "alarmNo": "1670094764", + "alarmDate": "1769990199599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113858036024365", + "createdBy": null, + "createdTime": "2026-02-02 07:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:29", + "echoMap": {}, + "alarmNo": "1670094763", + "alarmDate": "1769990173192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057144", + "createdBy": null, + "createdTime": "2026-02-02 07:47:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:34", + "echoMap": {}, + "alarmNo": "1670094762", + "alarmDate": "1769989633945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057136", + "createdBy": null, + "createdTime": "2026-02-02 07:47:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:21", + "echoMap": {}, + "alarmNo": "1670094761", + "alarmDate": "1769989631363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057054", + "createdBy": null, + "createdTime": "2026-02-02 07:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:59", + "echoMap": {}, + "alarmNo": "1670094760", + "alarmDate": "1769989605918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113853741057050", + "createdBy": null, + "createdTime": "2026-02-02 07:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:58", + "echoMap": {}, + "alarmNo": "1670094759", + "alarmDate": "1769989605385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113849446089775", + "createdBy": null, + "createdTime": "2026-02-02 07:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:26", + "echoMap": {}, + "alarmNo": "1670094758", + "alarmDate": "1769989576053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113849446089741", + "createdBy": null, + "createdTime": "2026-02-02 07:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:55", + "echoMap": {}, + "alarmNo": "1670094757", + "alarmDate": "1769989375806", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113845151122468", + "createdBy": null, + "createdTime": "2026-02-02 07:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:55", + "echoMap": {}, + "alarmNo": "1670094756", + "alarmDate": "1769989015931", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1020030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1020" + }, + { + "id": "723113845151122438", + "createdBy": null, + "createdTime": "2026-02-02 07:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:10", + "echoMap": {}, + "alarmNo": "1670094755", + "alarmDate": "1769989010610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113845151122434", + "createdBy": null, + "createdTime": "2026-02-02 07:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:33", + "echoMap": {}, + "alarmNo": "1670094754", + "alarmDate": "1769989010101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060078", + "deviceName": "[304](10)邮电1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113840856155154", + "createdBy": null, + "createdTime": "2026-02-02 07:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:29", + "echoMap": {}, + "alarmNo": "1670094753", + "alarmDate": "1769988982320", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113840856155149", + "createdBy": null, + "createdTime": "2026-02-02 07:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:31", + "echoMap": {}, + "alarmNo": "1670094752", + "alarmDate": "1769988981646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113840856155147", + "createdBy": null, + "createdTime": "2026-02-02 07:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:56", + "echoMap": {}, + "alarmNo": "1670094751", + "alarmDate": "1769988981527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113836561187897", + "createdBy": null, + "createdTime": "2026-02-02 07:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:07", + "echoMap": {}, + "alarmNo": "1670094750", + "alarmDate": "1769988414341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113836561187886", + "createdBy": null, + "createdTime": "2026-02-02 07:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:11", + "echoMap": {}, + "alarmNo": "1670094749", + "alarmDate": "1769988413398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060066", + "deviceName": "[327](10)邮电4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113832266220576", + "createdBy": null, + "createdTime": "2026-02-02 07:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:55", + "echoMap": {}, + "alarmNo": "1670094748", + "alarmDate": "1769988055771", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113827971253411", + "createdBy": null, + "createdTime": "2026-02-02 07:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:35", + "echoMap": {}, + "alarmNo": "1670094747", + "alarmDate": "1769987828117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113823676286068", + "createdBy": null, + "createdTime": "2026-02-02 07:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:55", + "echoMap": {}, + "alarmNo": "1670094746", + "alarmDate": "1769987795001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113819381318817", + "createdBy": null, + "createdTime": "2026-02-02 07:07:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:16", + "echoMap": {}, + "alarmNo": "1670094745", + "alarmDate": "1769987231832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113819381318686", + "createdBy": null, + "createdTime": "2026-02-02 07:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:53", + "echoMap": {}, + "alarmNo": "1670094744", + "alarmDate": "1769987199718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113815086351421", + "createdBy": null, + "createdTime": "2026-02-02 07:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:20", + "echoMap": {}, + "alarmNo": "1670094743", + "alarmDate": "1769987173798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113810791384151", + "createdBy": null, + "createdTime": "2026-02-02 06:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:57", + "echoMap": {}, + "alarmNo": "1670094742", + "alarmDate": "1769986603870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113810791384149", + "createdBy": null, + "createdTime": "2026-02-02 06:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:17", + "echoMap": {}, + "alarmNo": "1670094741", + "alarmDate": "1769986603400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060067", + "deviceName": "[211](10)邮电4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113806496416795", + "createdBy": null, + "createdTime": "2026-02-02 06:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:42", + "echoMap": {}, + "alarmNo": "1670094740", + "alarmDate": "1769986574125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060091", + "deviceName": "[702](10)邮电下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113806496416785", + "createdBy": null, + "createdTime": "2026-02-02 06:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:26", + "echoMap": {}, + "alarmNo": "1670094739", + "alarmDate": "1769986572667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113802201449594", + "createdBy": null, + "createdTime": "2026-02-02 06:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:02", + "echoMap": {}, + "alarmNo": "1670094738", + "alarmDate": "1769986008401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113797906482201", + "createdBy": null, + "createdTime": "2026-02-02 06:40:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:56", + "echoMap": {}, + "alarmNo": "1670094737", + "alarmDate": "1769985656543", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113793611515034", + "createdBy": null, + "createdTime": "2026-02-02 06:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:30", + "echoMap": {}, + "alarmNo": "1670094736", + "alarmDate": "1769985414127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113785021580521", + "createdBy": null, + "createdTime": "2026-02-02 06:27:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:35", + "echoMap": {}, + "alarmNo": "1670094735", + "alarmDate": "1769984832819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113785021580395", + "createdBy": null, + "createdTime": "2026-02-02 06:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:55", + "echoMap": {}, + "alarmNo": "1670094734", + "alarmDate": "1769984802140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113785021580305", + "createdBy": null, + "createdTime": "2026-02-02 06:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:23", + "echoMap": {}, + "alarmNo": "1670094733", + "alarmDate": "1769984775721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113776431645879", + "createdBy": null, + "createdTime": "2026-02-02 06:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:59", + "echoMap": {}, + "alarmNo": "1670094732", + "alarmDate": "1769984218117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060073", + "deviceName": "[209](10)邮电1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113776431645810", + "createdBy": null, + "createdTime": "2026-02-02 06:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:00", + "echoMap": {}, + "alarmNo": "1670094731", + "alarmDate": "1769984206756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113772136678452", + "createdBy": null, + "createdTime": "2026-02-02 06:14:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:55", + "echoMap": {}, + "alarmNo": "1670094730", + "alarmDate": "1769984097392", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113772136678435", + "createdBy": null, + "createdTime": "2026-02-02 06:12:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:56", + "echoMap": {}, + "alarmNo": "1670094729", + "alarmDate": "1769983977312", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113767841711228", + "createdBy": null, + "createdTime": "2026-02-02 06:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:28", + "echoMap": {}, + "alarmNo": "1670094728", + "alarmDate": "1769983611173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113767841711193", + "createdBy": null, + "createdTime": "2026-02-02 06:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:55", + "echoMap": {}, + "alarmNo": "1670094727", + "alarmDate": "1769983603464", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060103", + "deviceName": "[701](10)邮电上行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113767841711104", + "createdBy": null, + "createdTime": "2026-02-02 06:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:32", + "echoMap": {}, + "alarmNo": "1670094726", + "alarmDate": "1769983579111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113759251776599", + "createdBy": null, + "createdTime": "2026-02-02 05:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:52", + "echoMap": {}, + "alarmNo": "1670094725", + "alarmDate": "1769982999956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113759251776523", + "createdBy": null, + "createdTime": "2026-02-02 05:56:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:19", + "echoMap": {}, + "alarmNo": "1670094724", + "alarmDate": "1769982977392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060073", + "deviceName": "[209](10)邮电1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113754956809243", + "createdBy": null, + "createdTime": "2026-02-02 05:56:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:21", + "echoMap": {}, + "alarmNo": "1670094723", + "alarmDate": "1769982967647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113750661842103", + "createdBy": null, + "createdTime": "2026-02-02 05:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:56", + "echoMap": {}, + "alarmNo": "1670094722", + "alarmDate": "1769982716722", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113750661841957", + "createdBy": null, + "createdTime": "2026-02-02 05:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:50", + "echoMap": {}, + "alarmNo": "1670094721", + "alarmDate": "1769982396836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113742071907536", + "createdBy": null, + "createdTime": "2026-02-02 05:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:16", + "echoMap": {}, + "alarmNo": "1670094720", + "alarmDate": "1769982360800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113742071907535", + "createdBy": null, + "createdTime": "2026-02-02 05:46:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:01", + "echoMap": {}, + "alarmNo": "1670094719", + "alarmDate": "1769982360798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113737776940091", + "createdBy": null, + "createdTime": "2026-02-02 05:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:52", + "echoMap": {}, + "alarmNo": "1670094718", + "alarmDate": "1769981793502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113733481972759", + "createdBy": null, + "createdTime": "2026-02-02 05:26:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:14", + "echoMap": {}, + "alarmNo": "1670094717", + "alarmDate": "1769981214036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113724892038396", + "createdBy": null, + "createdTime": "2026-02-02 05:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:30", + "echoMap": {}, + "alarmNo": "1670094716", + "alarmDate": "1769981188678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060073", + "deviceName": "[209](10)邮电1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113724892038219", + "createdBy": null, + "createdTime": "2026-02-02 05:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:34", + "echoMap": {}, + "alarmNo": "1670094715", + "alarmDate": "1769980617623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113720597070855", + "createdBy": null, + "createdTime": "2026-02-02 05:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:46", + "echoMap": {}, + "alarmNo": "1670094714", + "alarmDate": "1769980586399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113716302103672", + "createdBy": null, + "createdTime": "2026-02-02 05:16:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:09", + "echoMap": {}, + "alarmNo": "1670094713", + "alarmDate": "1769980559685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060068", + "deviceName": "[324](10)邮电4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113716302103671", + "createdBy": null, + "createdTime": "2026-02-02 05:15:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:07", + "echoMap": {}, + "alarmNo": "1670094712", + "alarmDate": "1769980559433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113707712169156", + "createdBy": null, + "createdTime": "2026-02-02 05:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:42", + "echoMap": {}, + "alarmNo": "1670094711", + "alarmDate": "1769979983106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113707712169050", + "createdBy": null, + "createdTime": "2026-02-02 05:06:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:03", + "echoMap": {}, + "alarmNo": "1670094710", + "alarmDate": "1769979959517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113707712168982", + "createdBy": null, + "createdTime": "2026-02-02 04:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:57", + "echoMap": {}, + "alarmNo": "1670094709", + "alarmDate": "1769979596888", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113703417201679", + "createdBy": null, + "createdTime": "2026-02-02 04:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:22", + "echoMap": {}, + "alarmNo": "1670094708", + "alarmDate": "1769979406229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113699122234557", + "createdBy": null, + "createdTime": "2026-02-02 04:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:47", + "echoMap": {}, + "alarmNo": "1670094707", + "alarmDate": "1769979393851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113699122234518", + "createdBy": null, + "createdTime": "2026-02-02 04:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:46", + "echoMap": {}, + "alarmNo": "1670094706", + "alarmDate": "1769979382323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113699122234406", + "createdBy": null, + "createdTime": "2026-02-02 04:55:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:22", + "echoMap": {}, + "alarmNo": "1670094705", + "alarmDate": "1769979359127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267141", + "createdBy": null, + "createdTime": "2026-02-02 04:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:54", + "echoMap": {}, + "alarmNo": "1670094704", + "alarmDate": "1769978807587", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267140", + "createdBy": null, + "createdTime": "2026-02-02 04:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:15", + "echoMap": {}, + "alarmNo": "1670094703", + "alarmDate": "1769978807586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267139", + "createdBy": null, + "createdTime": "2026-02-02 04:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:48", + "echoMap": {}, + "alarmNo": "1670094702", + "alarmDate": "1769978807585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113694827267106", + "createdBy": null, + "createdTime": "2026-02-02 04:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:59", + "echoMap": {}, + "alarmNo": "1670094701", + "alarmDate": "1769978794958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299981", + "createdBy": null, + "createdTime": "2026-02-02 04:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:35", + "echoMap": {}, + "alarmNo": "1670094700", + "alarmDate": "1769978783000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299941", + "createdBy": null, + "createdTime": "2026-02-02 04:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:35", + "echoMap": {}, + "alarmNo": "1670094699", + "alarmDate": "1769978770842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299923", + "createdBy": null, + "createdTime": "2026-02-02 04:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:28", + "echoMap": {}, + "alarmNo": "1670094698", + "alarmDate": "1769978767441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113690532299887", + "createdBy": null, + "createdTime": "2026-02-02 04:45:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:55", + "echoMap": {}, + "alarmNo": "1670094697", + "alarmDate": "1769978757216", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332536", + "createdBy": null, + "createdTime": "2026-02-02 04:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:11", + "echoMap": {}, + "alarmNo": "1670094696", + "alarmDate": "1769978211239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332522", + "createdBy": null, + "createdTime": "2026-02-02 04:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:11", + "echoMap": {}, + "alarmNo": "1670094695", + "alarmDate": "1769978207570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332505", + "createdBy": null, + "createdTime": "2026-02-02 04:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:56", + "echoMap": {}, + "alarmNo": "1670094694", + "alarmDate": "1769978204244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113686237332504", + "createdBy": null, + "createdTime": "2026-02-02 04:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:44", + "echoMap": {}, + "alarmNo": "1670094693", + "alarmDate": "1769978204243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365374", + "createdBy": null, + "createdTime": "2026-02-02 04:36:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:39", + "echoMap": {}, + "alarmNo": "1670094692", + "alarmDate": "1769978186513", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365361", + "createdBy": null, + "createdTime": "2026-02-02 04:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:47", + "echoMap": {}, + "alarmNo": "1670094691", + "alarmDate": "1769978182758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365265", + "createdBy": null, + "createdTime": "2026-02-02 04:35:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:23", + "echoMap": {}, + "alarmNo": "1670094690", + "alarmDate": "1769978159411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113681942365242", + "createdBy": null, + "createdTime": "2026-02-02 04:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:56", + "echoMap": {}, + "alarmNo": "1670094689", + "alarmDate": "1769978036263", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647398043", + "createdBy": null, + "createdTime": "2026-02-02 04:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:24", + "echoMap": {}, + "alarmNo": "1670094688", + "alarmDate": "1769977616147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647398041", + "createdBy": null, + "createdTime": "2026-02-02 04:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:16", + "echoMap": {}, + "alarmNo": "1670094687", + "alarmDate": "1769977616012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647397982", + "createdBy": null, + "createdTime": "2026-02-02 04:26:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:59", + "echoMap": {}, + "alarmNo": "1670094686", + "alarmDate": "1769977595402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647397963", + "createdBy": null, + "createdTime": "2026-02-02 04:26:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:45", + "echoMap": {}, + "alarmNo": "1670094685", + "alarmDate": "1769977591851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113677647397903", + "createdBy": null, + "createdTime": "2026-02-02 04:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:36", + "echoMap": {}, + "alarmNo": "1670094684", + "alarmDate": "1769977576821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430820", + "createdBy": null, + "createdTime": "2026-02-02 04:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:35", + "echoMap": {}, + "alarmNo": "1670094683", + "alarmDate": "1769977572199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430803", + "createdBy": null, + "createdTime": "2026-02-02 04:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:20", + "echoMap": {}, + "alarmNo": "1670094682", + "alarmDate": "1769977568254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430617", + "createdBy": null, + "createdTime": "2026-02-02 04:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:12", + "echoMap": {}, + "alarmNo": "1670094681", + "alarmDate": "1769977008074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430598", + "createdBy": null, + "createdTime": "2026-02-02 04:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:57", + "echoMap": {}, + "alarmNo": "1670094680", + "alarmDate": "1769977004725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113673352430597", + "createdBy": null, + "createdTime": "2026-02-02 04:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:45", + "echoMap": {}, + "alarmNo": "1670094679", + "alarmDate": "1769977004725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496255", + "createdBy": null, + "createdTime": "2026-02-02 04:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:48", + "echoMap": {}, + "alarmNo": "1670094678", + "alarmDate": "1769976984646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496188", + "createdBy": null, + "createdTime": "2026-02-02 04:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:25", + "echoMap": {}, + "alarmNo": "1670094677", + "alarmDate": "1769976971542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496174", + "createdBy": null, + "createdTime": "2026-02-02 04:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:56", + "echoMap": {}, + "alarmNo": "1670094676", + "alarmDate": "1769976967983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496018", + "createdBy": null, + "createdTime": "2026-02-02 04:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:53", + "echoMap": {}, + "alarmNo": "1670094675", + "alarmDate": "1769976401727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113664762496003", + "createdBy": null, + "createdTime": "2026-02-02 04:06:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:24", + "echoMap": {}, + "alarmNo": "1670094674", + "alarmDate": "1769976397593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113660467528713", + "createdBy": null, + "createdTime": "2026-02-02 04:06:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:46", + "echoMap": {}, + "alarmNo": "1670094673", + "alarmDate": "1769976386252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561647", + "createdBy": null, + "createdTime": "2026-02-02 04:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:29", + "echoMap": {}, + "alarmNo": "1670094672", + "alarmDate": "1769976377734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561632", + "createdBy": null, + "createdTime": "2026-02-02 04:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:38", + "echoMap": {}, + "alarmNo": "1670094671", + "alarmDate": "1769976371670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561569", + "createdBy": null, + "createdTime": "2026-02-02 04:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:06", + "echoMap": {}, + "alarmNo": "1670094670", + "alarmDate": "1769976359354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113656172561444", + "createdBy": null, + "createdTime": "2026-02-02 03:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:12", + "echoMap": {}, + "alarmNo": "1670094669", + "alarmDate": "1769975809436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113651877594144", + "createdBy": null, + "createdTime": "2026-02-02 03:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:51", + "echoMap": {}, + "alarmNo": "1670094668", + "alarmDate": "1769975798133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113647582627111", + "createdBy": null, + "createdTime": "2026-02-02 03:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:05", + "echoMap": {}, + "alarmNo": "1670094667", + "alarmDate": "1769975782022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113647582626903", + "createdBy": null, + "createdTime": "2026-02-02 03:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:19", + "echoMap": {}, + "alarmNo": "1670094666", + "alarmDate": "1769975210745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113647582626821", + "createdBy": null, + "createdTime": "2026-02-02 03:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:10", + "echoMap": {}, + "alarmNo": "1670094665", + "alarmDate": "1769975186568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113643287659567", + "createdBy": null, + "createdTime": "2026-02-02 03:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:32", + "echoMap": {}, + "alarmNo": "1670094664", + "alarmDate": "1769975178941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113638992692398", + "createdBy": null, + "createdTime": "2026-02-02 03:38:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:56", + "echoMap": {}, + "alarmNo": "1670094663", + "alarmDate": "1769974736475", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113638992692287", + "createdBy": null, + "createdTime": "2026-02-02 03:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:59", + "echoMap": {}, + "alarmNo": "1670094662", + "alarmDate": "1769974600013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113638992692234", + "createdBy": null, + "createdTime": "2026-02-02 03:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:15", + "echoMap": {}, + "alarmNo": "1670094661", + "alarmDate": "1769974583289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113634697724962", + "createdBy": null, + "createdTime": "2026-02-02 03:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:21", + "echoMap": {}, + "alarmNo": "1670094660", + "alarmDate": "1769974567900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113630402757723", + "createdBy": null, + "createdTime": "2026-02-02 03:26:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:10", + "echoMap": {}, + "alarmNo": "1670094659", + "alarmDate": "1769973994914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113630402757697", + "createdBy": null, + "createdTime": "2026-02-02 03:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:40", + "echoMap": {}, + "alarmNo": "1670094658", + "alarmDate": "1769973987210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113630402757636", + "createdBy": null, + "createdTime": "2026-02-02 03:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:23", + "echoMap": {}, + "alarmNo": "1670094657", + "alarmDate": "1769973970873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823199", + "createdBy": null, + "createdTime": "2026-02-02 03:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:08", + "echoMap": {}, + "alarmNo": "1670094656", + "alarmDate": "1769973408067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823172", + "createdBy": null, + "createdTime": "2026-02-02 03:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:49", + "echoMap": {}, + "alarmNo": "1670094655", + "alarmDate": "1769973399425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823099", + "createdBy": null, + "createdTime": "2026-02-02 03:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:39", + "echoMap": {}, + "alarmNo": "1670094654", + "alarmDate": "1769973380994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823080", + "createdBy": null, + "createdTime": "2026-02-02 03:16:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:25:59", + "echoMap": {}, + "alarmNo": "1670094653", + "alarmDate": "1769973377390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113621812823042", + "createdBy": null, + "createdTime": "2026-02-02 03:16:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:29", + "echoMap": {}, + "alarmNo": "1670094652", + "alarmDate": "1769973368745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113617517855818", + "createdBy": null, + "createdTime": "2026-02-02 03:15:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:04", + "echoMap": {}, + "alarmNo": "1670094651", + "alarmDate": "1769973358765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888673", + "createdBy": null, + "createdTime": "2026-02-02 03:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:56", + "echoMap": {}, + "alarmNo": "1670094650", + "alarmDate": "1769972937634", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888605", + "createdBy": null, + "createdTime": "2026-02-02 03:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:21", + "echoMap": {}, + "alarmNo": "1670094649", + "alarmDate": "1769972816190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888581", + "createdBy": null, + "createdTime": "2026-02-02 03:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:05", + "echoMap": {}, + "alarmNo": "1670094648", + "alarmDate": "1769972812918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888544", + "createdBy": null, + "createdTime": "2026-02-02 03:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:05", + "echoMap": {}, + "alarmNo": "1670094647", + "alarmDate": "1769972804550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888507", + "createdBy": null, + "createdTime": "2026-02-02 03:06:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:56", + "echoMap": {}, + "alarmNo": "1670094646", + "alarmDate": "1769972792101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113613222888490", + "createdBy": null, + "createdTime": "2026-02-02 03:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:40", + "echoMap": {}, + "alarmNo": "1670094645", + "alarmDate": "1769972788364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113608927921176", + "createdBy": null, + "createdTime": "2026-02-02 03:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:16", + "echoMap": {}, + "alarmNo": "1670094644", + "alarmDate": "1769972767444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632954010", + "createdBy": null, + "createdTime": "2026-02-02 02:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:26", + "echoMap": {}, + "alarmNo": "1670094643", + "alarmDate": "1769972216408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953974", + "createdBy": null, + "createdTime": "2026-02-02 02:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:32", + "echoMap": {}, + "alarmNo": "1670094642", + "alarmDate": "1769972205788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953950", + "createdBy": null, + "createdTime": "2026-02-02 02:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:52", + "echoMap": {}, + "alarmNo": "1670094641", + "alarmDate": "1769972200471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953890", + "createdBy": null, + "createdTime": "2026-02-02 02:56:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:37", + "echoMap": {}, + "alarmNo": "1670094640", + "alarmDate": "1769972184151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113604632953877", + "createdBy": null, + "createdTime": "2026-02-02 02:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:45", + "echoMap": {}, + "alarmNo": "1670094639", + "alarmDate": "1769972180796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113600337986658", + "createdBy": null, + "createdTime": "2026-02-02 02:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:29", + "echoMap": {}, + "alarmNo": "1670094638", + "alarmDate": "1769972176021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113596043019342", + "createdBy": null, + "createdTime": "2026-02-02 02:46:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:05", + "echoMap": {}, + "alarmNo": "1670094637", + "alarmDate": "1769971598016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113596043019329", + "createdBy": null, + "createdTime": "2026-02-02 02:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:21", + "echoMap": {}, + "alarmNo": "1670094636", + "alarmDate": "1769971594426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113591748051980", + "createdBy": null, + "createdTime": "2026-02-02 02:46:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:18", + "echoMap": {}, + "alarmNo": "1670094635", + "alarmDate": "1769971564903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113587453084857", + "createdBy": null, + "createdTime": "2026-02-02 02:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:57", + "echoMap": {}, + "alarmNo": "1670094634", + "alarmDate": "1769971376115", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113587453084702", + "createdBy": null, + "createdTime": "2026-02-02 02:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:33", + "echoMap": {}, + "alarmNo": "1670094633", + "alarmDate": "1769970982339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113587453084672", + "createdBy": null, + "createdTime": "2026-02-02 02:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:30", + "echoMap": {}, + "alarmNo": "1670094632", + "alarmDate": "1769970976739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113578863150093", + "createdBy": null, + "createdTime": "2026-02-02 02:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:35:57", + "echoMap": {}, + "alarmNo": "1670094631", + "alarmDate": "1769970390461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113570273215565", + "createdBy": null, + "createdTime": "2026-02-02 02:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:11", + "echoMap": {}, + "alarmNo": "1670094630", + "alarmDate": "1769969802983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113565978248218", + "createdBy": null, + "createdTime": "2026-02-02 02:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:23", + "echoMap": {}, + "alarmNo": "1670094629", + "alarmDate": "1769969770240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113561683281065", + "createdBy": null, + "createdTime": "2026-02-02 02:15:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:51", + "echoMap": {}, + "alarmNo": "1670094628", + "alarmDate": "1769969744841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113561683281013", + "createdBy": null, + "createdTime": "2026-02-02 02:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:56", + "echoMap": {}, + "alarmNo": "1670094627", + "alarmDate": "1769969456249", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113561683280953", + "createdBy": null, + "createdTime": "2026-02-02 02:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:04", + "echoMap": {}, + "alarmNo": "1670094626", + "alarmDate": "1769969198715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113557388313647", + "createdBy": null, + "createdTime": "2026-02-02 02:06:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:26", + "echoMap": {}, + "alarmNo": "1670094625", + "alarmDate": "1769969174605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113557388313620", + "createdBy": null, + "createdTime": "2026-02-02 02:06:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:27", + "echoMap": {}, + "alarmNo": "1670094624", + "alarmDate": "1769969167548", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346525", + "createdBy": null, + "createdTime": "2026-02-02 02:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:05:47", + "echoMap": {}, + "alarmNo": "1670094623", + "alarmDate": "1769969144458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346520", + "createdBy": null, + "createdTime": "2026-02-02 02:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:03", + "echoMap": {}, + "alarmNo": "1670094622", + "alarmDate": "1769969143867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346475", + "createdBy": null, + "createdTime": "2026-02-02 02:01:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:03:56", + "echoMap": {}, + "alarmNo": "1670094621", + "alarmDate": "1769968916111", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346328", + "createdBy": null, + "createdTime": "2026-02-02 01:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:32", + "echoMap": {}, + "alarmNo": "1670094620", + "alarmDate": "1769968578984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113553093346305", + "createdBy": null, + "createdTime": "2026-02-02 01:56:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:32", + "echoMap": {}, + "alarmNo": "1670094619", + "alarmDate": "1769968572362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113548798379033", + "createdBy": null, + "createdTime": "2026-02-02 01:55:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:08", + "echoMap": {}, + "alarmNo": "1670094618", + "alarmDate": "1769968554570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411968", + "createdBy": null, + "createdTime": "2026-02-02 01:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:53", + "echoMap": {}, + "alarmNo": "1670094617", + "alarmDate": "1769968543104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411917", + "createdBy": null, + "createdTime": "2026-02-02 01:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:55", + "echoMap": {}, + "alarmNo": "1670094616", + "alarmDate": "1769968256518", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411900", + "createdBy": null, + "createdTime": "2026-02-02 01:48:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:56", + "echoMap": {}, + "alarmNo": "1670094615", + "alarmDate": "1769968136093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411800", + "createdBy": null, + "createdTime": "2026-02-02 01:46:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:36", + "echoMap": {}, + "alarmNo": "1670094614", + "alarmDate": "1769967983926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411770", + "createdBy": null, + "createdTime": "2026-02-02 01:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:28", + "echoMap": {}, + "alarmNo": "1670094613", + "alarmDate": "1769967975023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113544503411724", + "createdBy": null, + "createdTime": "2026-02-02 01:46:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:12", + "echoMap": {}, + "alarmNo": "1670094612", + "alarmDate": "1769967959604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477283", + "createdBy": null, + "createdTime": "2026-02-02 01:36:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:56", + "echoMap": {}, + "alarmNo": "1670094611", + "alarmDate": "1769967395641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477263", + "createdBy": null, + "createdTime": "2026-02-02 01:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:45:48", + "echoMap": {}, + "alarmNo": "1670094610", + "alarmDate": "1769967390100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477262", + "createdBy": null, + "createdTime": "2026-02-02 01:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:30", + "echoMap": {}, + "alarmNo": "1670094609", + "alarmDate": "1769967390099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477179", + "createdBy": null, + "createdTime": "2026-02-02 01:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:16", + "echoMap": {}, + "alarmNo": "1670094608", + "alarmDate": "1769967363575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113535913477158", + "createdBy": null, + "createdTime": "2026-02-02 01:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:17", + "echoMap": {}, + "alarmNo": "1670094607", + "alarmDate": "1769967357796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542760", + "createdBy": null, + "createdTime": "2026-02-02 01:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:55", + "echoMap": {}, + "alarmNo": "1670094606", + "alarmDate": "1769966816205", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542716", + "createdBy": null, + "createdTime": "2026-02-02 01:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:51", + "echoMap": {}, + "alarmNo": "1670094605", + "alarmDate": "1769966793631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542715", + "createdBy": null, + "createdTime": "2026-02-02 01:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:34", + "echoMap": {}, + "alarmNo": "1670094604", + "alarmDate": "1769966793630", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542656", + "createdBy": null, + "createdTime": "2026-02-02 01:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:36", + "echoMap": {}, + "alarmNo": "1670094603", + "alarmDate": "1769966776658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542630", + "createdBy": null, + "createdTime": "2026-02-02 01:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:20", + "echoMap": {}, + "alarmNo": "1670094602", + "alarmDate": "1769966768905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542551", + "createdBy": null, + "createdTime": "2026-02-02 01:25:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:58", + "echoMap": {}, + "alarmNo": "1670094601", + "alarmDate": "1769966744476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113527323542534", + "createdBy": null, + "createdTime": "2026-02-02 01:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:56", + "echoMap": {}, + "alarmNo": "1670094600", + "alarmDate": "1769966577480", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113523028575270", + "createdBy": null, + "createdTime": "2026-02-02 01:19:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:56", + "echoMap": {}, + "alarmNo": "1670094599", + "alarmDate": "1769966395780", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733608152", + "createdBy": null, + "createdTime": "2026-02-02 01:16:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:25:58", + "echoMap": {}, + "alarmNo": "1670094598", + "alarmDate": "1769966198205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733608091", + "createdBy": null, + "createdTime": "2026-02-02 01:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:34", + "echoMap": {}, + "alarmNo": "1670094597", + "alarmDate": "1769966179762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733608070", + "createdBy": null, + "createdTime": "2026-02-02 01:16:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:25", + "echoMap": {}, + "alarmNo": "1670094596", + "alarmDate": "1769966173511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733607981", + "createdBy": null, + "createdTime": "2026-02-02 01:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:53", + "echoMap": {}, + "alarmNo": "1670094595", + "alarmDate": "1769966146226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113518733607980", + "createdBy": null, + "createdTime": "2026-02-02 01:15:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:15:46", + "echoMap": {}, + "alarmNo": "1670094594", + "alarmDate": "1769966146224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113510143673507", + "createdBy": null, + "createdTime": "2026-02-02 01:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:33", + "echoMap": {}, + "alarmNo": "1670094593", + "alarmDate": "1769965578366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113510143673395", + "createdBy": null, + "createdTime": "2026-02-02 01:05:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:05:59", + "echoMap": {}, + "alarmNo": "1670094592", + "alarmDate": "1769965546556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113505848706061", + "createdBy": null, + "createdTime": "2026-02-02 00:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:09", + "echoMap": {}, + "alarmNo": "1670094591", + "alarmDate": "1769964997930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738929", + "createdBy": null, + "createdTime": "2026-02-02 00:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:26", + "echoMap": {}, + "alarmNo": "1670094590", + "alarmDate": "1769964974232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738926", + "createdBy": null, + "createdTime": "2026-02-02 00:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:26", + "echoMap": {}, + "alarmNo": "1670094589", + "alarmDate": "1769964973909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738857", + "createdBy": null, + "createdTime": "2026-02-02 00:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:02", + "echoMap": {}, + "alarmNo": "1670094588", + "alarmDate": "1769964949807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113501553738835", + "createdBy": null, + "createdTime": "2026-02-02 00:55:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:55", + "echoMap": {}, + "alarmNo": "1670094587", + "alarmDate": "1769964943146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113492963804387", + "createdBy": null, + "createdTime": "2026-02-02 00:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:32", + "echoMap": {}, + "alarmNo": "1670094586", + "alarmDate": "1769964378928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113492963804258", + "createdBy": null, + "createdTime": "2026-02-02 00:45:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:30", + "echoMap": {}, + "alarmNo": "1670094585", + "alarmDate": "1769964341546", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113488668836915", + "createdBy": null, + "createdTime": "2026-02-02 00:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:45:59", + "echoMap": {}, + "alarmNo": "1670094584", + "alarmDate": "1769963798661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113488668836867", + "createdBy": null, + "createdTime": "2026-02-02 00:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:34", + "echoMap": {}, + "alarmNo": "1670094583", + "alarmDate": "1769963782276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869738", + "createdBy": null, + "createdTime": "2026-02-02 00:35:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:10", + "echoMap": {}, + "alarmNo": "1670094582", + "alarmDate": "1769963758255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869720", + "createdBy": null, + "createdTime": "2026-02-02 00:35:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:21", + "echoMap": {}, + "alarmNo": "1670094581", + "alarmDate": "1769963750839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060069", + "deviceName": "[325](10)邮电4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869690", + "createdBy": null, + "createdTime": "2026-02-02 00:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:35:46", + "echoMap": {}, + "alarmNo": "1670094580", + "alarmDate": "1769963742251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113484373869615", + "createdBy": null, + "createdTime": "2026-02-02 00:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:55", + "echoMap": {}, + "alarmNo": "1670094579", + "alarmDate": "1769963275787", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783935195", + "createdBy": null, + "createdTime": "2026-02-02 00:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:20", + "echoMap": {}, + "alarmNo": "1670094578", + "alarmDate": "1769963204268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783935088", + "createdBy": null, + "createdTime": "2026-02-02 00:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:24", + "echoMap": {}, + "alarmNo": "1670094577", + "alarmDate": "1769963172306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783934992", + "createdBy": null, + "createdTime": "2026-02-02 00:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:25:52", + "echoMap": {}, + "alarmNo": "1670094576", + "alarmDate": "1769963147239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113475783934989", + "createdBy": null, + "createdTime": "2026-02-02 00:25:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:39", + "echoMap": {}, + "alarmNo": "1670094575", + "alarmDate": "1769963146924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113471488967708", + "createdBy": null, + "createdTime": "2026-02-02 00:19:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:55", + "echoMap": {}, + "alarmNo": "1670094574", + "alarmDate": "1769962795781", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113471488967691", + "createdBy": null, + "createdTime": "2026-02-02 00:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 00:18:55", + "echoMap": {}, + "alarmNo": "1670094573", + "alarmDate": "1769962675798", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1020060015", + "deviceName": "[332](10)邮电#2厅扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113467194000555", + "createdBy": null, + "createdTime": "2026-02-02 00:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:44", + "echoMap": {}, + "alarmNo": "1670094572", + "alarmDate": "1769962591753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113467194000529", + "createdBy": null, + "createdTime": "2026-02-02 00:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:37", + "echoMap": {}, + "alarmNo": "1670094571", + "alarmDate": "1769962584008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113467194000481", + "createdBy": null, + "createdTime": "2026-02-02 00:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:20", + "echoMap": {}, + "alarmNo": "1670094570", + "alarmDate": "1769962567637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113458604065878", + "createdBy": null, + "createdTime": "2026-02-02 00:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:05", + "echoMap": {}, + "alarmNo": "1670094569", + "alarmDate": "1769961996644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060077", + "deviceName": "[305](10)邮电1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113458604065875", + "createdBy": null, + "createdTime": "2026-02-02 00:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:15:56", + "echoMap": {}, + "alarmNo": "1670094568", + "alarmDate": "1769961996441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + }, + { + "id": "723113458604065807", + "createdBy": null, + "createdTime": "2026-02-02 00:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:24", + "echoMap": {}, + "alarmNo": "1670094567", + "alarmDate": "1769961972332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1020060038", + "deviceName": "[316](10)邮电2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1020" + } + ] + }, + "1021": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112968971188296", + "createdBy": null, + "createdTime": "2026-02-02 06:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:02", + "echoMap": {}, + "alarmNo": "1690071885", + "alarmDate": "1769986081926", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723112994740992114", + "createdBy": null, + "createdTime": "2026-02-02 07:18:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:31", + "echoMap": {}, + "alarmNo": "1690071886", + "alarmDate": "1769987892524", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113033395697667", + "createdBy": null, + "createdTime": "2026-02-02 07:58:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:43", + "echoMap": {}, + "alarmNo": "1690071887", + "alarmDate": "1769990317521", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113033395697676", + "createdBy": null, + "createdTime": "2026-02-02 07:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:30", + "echoMap": {}, + "alarmNo": "1690071888", + "alarmDate": "1769990335252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113046280599604", + "createdBy": null, + "createdTime": "2026-02-02 08:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:43", + "echoMap": {}, + "alarmNo": "1690071890", + "alarmDate": "1769991534659", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113063460468771", + "createdBy": null, + "createdTime": "2026-02-02 08:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:07", + "echoMap": {}, + "alarmNo": "1690071891", + "alarmDate": "1769992682023", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113063460468779", + "createdBy": null, + "createdTime": "2026-02-02 08:38:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:25", + "echoMap": {}, + "alarmNo": "1690071892", + "alarmDate": "1769992698990", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113067755436079", + "createdBy": null, + "createdTime": "2026-02-02 08:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:37", + "echoMap": {}, + "alarmNo": "1690071893", + "alarmDate": "1769993281128", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113072050403365", + "createdBy": null, + "createdTime": "2026-02-02 08:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:13", + "echoMap": {}, + "alarmNo": "1690071894", + "alarmDate": "1769993335185", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113080640337927", + "createdBy": null, + "createdTime": "2026-02-02 08:58:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:49", + "echoMap": {}, + "alarmNo": "1690071895", + "alarmDate": "1769993905421", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113084935305272", + "createdBy": null, + "createdTime": "2026-02-02 09:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:20", + "echoMap": {}, + "alarmNo": "1690071896", + "alarmDate": "1769994493568", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113093525239813", + "createdBy": null, + "createdTime": "2026-02-02 09:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:19", + "echoMap": {}, + "alarmNo": "1690071897", + "alarmDate": "1769995081678", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113093525239833", + "createdBy": null, + "createdTime": "2026-02-02 09:18:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:37", + "echoMap": {}, + "alarmNo": "1690071898", + "alarmDate": "1769995110802", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113102115174413", + "createdBy": null, + "createdTime": "2026-02-02 09:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:13", + "echoMap": {}, + "alarmNo": "1690071899", + "alarmDate": "1769995681895", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113102115174427", + "createdBy": null, + "createdTime": "2026-02-02 09:28:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:43", + "echoMap": {}, + "alarmNo": "1690071900", + "alarmDate": "1769995704986", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113106410141803", + "createdBy": null, + "createdTime": "2026-02-02 09:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:07", + "echoMap": {}, + "alarmNo": "1690071901", + "alarmDate": "1769996282036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113115000076344", + "createdBy": null, + "createdTime": "2026-02-02 09:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:19", + "echoMap": {}, + "alarmNo": "1690071902", + "alarmDate": "1769996881228", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113115000076373", + "createdBy": null, + "createdTime": "2026-02-02 09:48:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:55", + "echoMap": {}, + "alarmNo": "1690071903", + "alarmDate": "1769996929349", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113123590010907", + "createdBy": null, + "createdTime": "2026-02-02 09:58:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:07", + "echoMap": {}, + "alarmNo": "1690071904", + "alarmDate": "1769997481450", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113123590010917", + "createdBy": null, + "createdTime": "2026-02-02 09:58:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:32", + "echoMap": {}, + "alarmNo": "1690071905", + "alarmDate": "1769997506649", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113123590010933", + "createdBy": null, + "createdTime": "2026-02-02 09:58:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:13", + "echoMap": {}, + "alarmNo": "1690071906", + "alarmDate": "1769997529876", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113136474912789", + "createdBy": null, + "createdTime": "2026-02-02 10:08:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:31", + "echoMap": {}, + "alarmNo": "1690071907", + "alarmDate": "1769998123174", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113162244716548", + "createdBy": null, + "createdTime": "2026-02-02 10:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:37", + "echoMap": {}, + "alarmNo": "1690071908", + "alarmDate": "1769999881172", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113170834651180", + "createdBy": null, + "createdTime": "2026-02-02 10:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:44", + "echoMap": {}, + "alarmNo": "1690071909", + "alarmDate": "1770000499433", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113175129618454", + "createdBy": null, + "createdTime": "2026-02-02 10:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:02", + "echoMap": {}, + "alarmNo": "1690071910", + "alarmDate": "1770000535465", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113183719553046", + "createdBy": null, + "createdTime": "2026-02-02 10:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:20", + "echoMap": {}, + "alarmNo": "1690071911", + "alarmDate": "1770001093546", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113183719553063", + "createdBy": null, + "createdTime": "2026-02-02 10:58:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:44", + "echoMap": {}, + "alarmNo": "1690071912", + "alarmDate": "1770001117732", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113192309487656", + "createdBy": null, + "createdTime": "2026-02-02 11:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:31", + "echoMap": {}, + "alarmNo": "1690071913", + "alarmDate": "1770001699858", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113213784324104", + "createdBy": null, + "createdTime": "2026-02-02 11:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:19", + "echoMap": {}, + "alarmNo": "1690071914", + "alarmDate": "1770002881148", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113226669226016", + "createdBy": null, + "createdTime": "2026-02-02 11:38:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:49", + "echoMap": {}, + "alarmNo": "1690071915", + "alarmDate": "1770003511470", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113235259160628", + "createdBy": null, + "createdTime": "2026-02-02 11:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:50", + "echoMap": {}, + "alarmNo": "1690071916", + "alarmDate": "1770004081466", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113261028964397", + "createdBy": null, + "createdTime": "2026-02-02 12:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:01", + "echoMap": {}, + "alarmNo": "1690071917", + "alarmDate": "1770005281884", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113286798768178", + "createdBy": null, + "createdTime": "2026-02-02 12:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:43", + "echoMap": {}, + "alarmNo": "1690071918", + "alarmDate": "1770006493338", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113291093735457", + "createdBy": null, + "createdTime": "2026-02-02 12:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:56", + "echoMap": {}, + "alarmNo": "1690071919", + "alarmDate": "1770006535370", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113312568571911", + "createdBy": null, + "createdTime": "2026-02-02 12:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:50", + "echoMap": {}, + "alarmNo": "1690071920", + "alarmDate": "1770007681606", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113338338375684", + "createdBy": null, + "createdTime": "2026-02-02 13:08:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:49", + "echoMap": {}, + "alarmNo": "1690071921", + "alarmDate": "1770008935107", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113355518244917", + "createdBy": null, + "createdTime": "2026-02-02 13:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:44", + "echoMap": {}, + "alarmNo": "1690071922", + "alarmDate": "1770010081366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113368403146789", + "createdBy": null, + "createdTime": "2026-02-02 13:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:50", + "echoMap": {}, + "alarmNo": "1690071923", + "alarmDate": "1770010681556", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113381288048670", + "createdBy": null, + "createdTime": "2026-02-02 13:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:50", + "echoMap": {}, + "alarmNo": "1690071924", + "alarmDate": "1770011281746", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113407057852442", + "createdBy": null, + "createdTime": "2026-02-02 14:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:08", + "echoMap": {}, + "alarmNo": "1690071925", + "alarmDate": "1770012481176", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113407057852452", + "createdBy": null, + "createdTime": "2026-02-02 14:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:49", + "echoMap": {}, + "alarmNo": "1690071926", + "alarmDate": "1770012500210", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113419942754313", + "createdBy": null, + "createdTime": "2026-02-02 14:18:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:19", + "echoMap": {}, + "alarmNo": "1690071927", + "alarmDate": "1770013093346", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113419942754330", + "createdBy": null, + "createdTime": "2026-02-02 14:18:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:50", + "echoMap": {}, + "alarmNo": "1690071928", + "alarmDate": "1770013117366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113428532688929", + "createdBy": null, + "createdTime": "2026-02-02 14:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:56", + "echoMap": {}, + "alarmNo": "1690071929", + "alarmDate": "1770013681584", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113033395697695", + "createdBy": null, + "createdTime": "2026-02-02 08:00:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:32", + "echoMap": {}, + "alarmNo": "1690071889", + "alarmDate": "1769990431478", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1021030006", + "deviceName": "安防箱6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1021" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113428532688929", + "createdBy": null, + "createdTime": "2026-02-02 14:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:56", + "echoMap": {}, + "alarmNo": "1690071929", + "alarmDate": "1770013681584", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113419942754330", + "createdBy": null, + "createdTime": "2026-02-02 14:18:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:50", + "echoMap": {}, + "alarmNo": "1690071928", + "alarmDate": "1770013117366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113419942754313", + "createdBy": null, + "createdTime": "2026-02-02 14:18:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:19", + "echoMap": {}, + "alarmNo": "1690071927", + "alarmDate": "1770013093346", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113407057852452", + "createdBy": null, + "createdTime": "2026-02-02 14:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:49", + "echoMap": {}, + "alarmNo": "1690071926", + "alarmDate": "1770012500210", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113407057852442", + "createdBy": null, + "createdTime": "2026-02-02 14:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:08:08", + "echoMap": {}, + "alarmNo": "1690071925", + "alarmDate": "1770012481176", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113381288048670", + "createdBy": null, + "createdTime": "2026-02-02 13:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:58:50", + "echoMap": {}, + "alarmNo": "1690071924", + "alarmDate": "1770011281746", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113368403146789", + "createdBy": null, + "createdTime": "2026-02-02 13:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:50", + "echoMap": {}, + "alarmNo": "1690071923", + "alarmDate": "1770010681556", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113355518244917", + "createdBy": null, + "createdTime": "2026-02-02 13:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:28:44", + "echoMap": {}, + "alarmNo": "1690071922", + "alarmDate": "1770010081366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113338338375684", + "createdBy": null, + "createdTime": "2026-02-02 13:08:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:18:49", + "echoMap": {}, + "alarmNo": "1690071921", + "alarmDate": "1770008935107", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113312568571911", + "createdBy": null, + "createdTime": "2026-02-02 12:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:50", + "echoMap": {}, + "alarmNo": "1690071920", + "alarmDate": "1770007681606", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113291093735457", + "createdBy": null, + "createdTime": "2026-02-02 12:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:38:56", + "echoMap": {}, + "alarmNo": "1690071919", + "alarmDate": "1770006535370", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113286798768178", + "createdBy": null, + "createdTime": "2026-02-02 12:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:43", + "echoMap": {}, + "alarmNo": "1690071918", + "alarmDate": "1770006493338", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113261028964397", + "createdBy": null, + "createdTime": "2026-02-02 12:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:01", + "echoMap": {}, + "alarmNo": "1690071917", + "alarmDate": "1770005281884", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113235259160628", + "createdBy": null, + "createdTime": "2026-02-02 11:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:50", + "echoMap": {}, + "alarmNo": "1690071916", + "alarmDate": "1770004081466", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113226669226016", + "createdBy": null, + "createdTime": "2026-02-02 11:38:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:49", + "echoMap": {}, + "alarmNo": "1690071915", + "alarmDate": "1770003511470", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113213784324104", + "createdBy": null, + "createdTime": "2026-02-02 11:28:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:19", + "echoMap": {}, + "alarmNo": "1690071914", + "alarmDate": "1770002881148", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113192309487656", + "createdBy": null, + "createdTime": "2026-02-02 11:08:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:31", + "echoMap": {}, + "alarmNo": "1690071913", + "alarmDate": "1770001699858", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113183719553063", + "createdBy": null, + "createdTime": "2026-02-02 10:58:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:44", + "echoMap": {}, + "alarmNo": "1690071912", + "alarmDate": "1770001117732", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113183719553046", + "createdBy": null, + "createdTime": "2026-02-02 10:58:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:20", + "echoMap": {}, + "alarmNo": "1690071911", + "alarmDate": "1770001093546", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113175129618454", + "createdBy": null, + "createdTime": "2026-02-02 10:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:02", + "echoMap": {}, + "alarmNo": "1690071910", + "alarmDate": "1770000535465", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113170834651180", + "createdBy": null, + "createdTime": "2026-02-02 10:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:48:44", + "echoMap": {}, + "alarmNo": "1690071909", + "alarmDate": "1770000499433", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113162244716548", + "createdBy": null, + "createdTime": "2026-02-02 10:38:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:37", + "echoMap": {}, + "alarmNo": "1690071908", + "alarmDate": "1769999881172", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113136474912789", + "createdBy": null, + "createdTime": "2026-02-02 10:08:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:31", + "echoMap": {}, + "alarmNo": "1690071907", + "alarmDate": "1769998123174", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113123590010933", + "createdBy": null, + "createdTime": "2026-02-02 09:58:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:13", + "echoMap": {}, + "alarmNo": "1690071906", + "alarmDate": "1769997529876", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113123590010917", + "createdBy": null, + "createdTime": "2026-02-02 09:58:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:32", + "echoMap": {}, + "alarmNo": "1690071905", + "alarmDate": "1769997506649", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113123590010907", + "createdBy": null, + "createdTime": "2026-02-02 09:58:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:07", + "echoMap": {}, + "alarmNo": "1690071904", + "alarmDate": "1769997481450", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113115000076373", + "createdBy": null, + "createdTime": "2026-02-02 09:48:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:55", + "echoMap": {}, + "alarmNo": "1690071903", + "alarmDate": "1769996929349", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113115000076344", + "createdBy": null, + "createdTime": "2026-02-02 09:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:19", + "echoMap": {}, + "alarmNo": "1690071902", + "alarmDate": "1769996881228", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113106410141803", + "createdBy": null, + "createdTime": "2026-02-02 09:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:07", + "echoMap": {}, + "alarmNo": "1690071901", + "alarmDate": "1769996282036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113102115174427", + "createdBy": null, + "createdTime": "2026-02-02 09:28:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:43", + "echoMap": {}, + "alarmNo": "1690071900", + "alarmDate": "1769995704986", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113102115174413", + "createdBy": null, + "createdTime": "2026-02-02 09:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:13", + "echoMap": {}, + "alarmNo": "1690071899", + "alarmDate": "1769995681895", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113093525239833", + "createdBy": null, + "createdTime": "2026-02-02 09:18:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:37", + "echoMap": {}, + "alarmNo": "1690071898", + "alarmDate": "1769995110802", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113093525239813", + "createdBy": null, + "createdTime": "2026-02-02 09:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:19", + "echoMap": {}, + "alarmNo": "1690071897", + "alarmDate": "1769995081678", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113084935305272", + "createdBy": null, + "createdTime": "2026-02-02 09:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:20", + "echoMap": {}, + "alarmNo": "1690071896", + "alarmDate": "1769994493568", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113080640337927", + "createdBy": null, + "createdTime": "2026-02-02 08:58:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:49", + "echoMap": {}, + "alarmNo": "1690071895", + "alarmDate": "1769993905421", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113072050403365", + "createdBy": null, + "createdTime": "2026-02-02 08:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:13", + "echoMap": {}, + "alarmNo": "1690071894", + "alarmDate": "1769993335185", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113067755436079", + "createdBy": null, + "createdTime": "2026-02-02 08:48:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:37", + "echoMap": {}, + "alarmNo": "1690071893", + "alarmDate": "1769993281128", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113063460468779", + "createdBy": null, + "createdTime": "2026-02-02 08:38:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:25", + "echoMap": {}, + "alarmNo": "1690071892", + "alarmDate": "1769992698990", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113063460468771", + "createdBy": null, + "createdTime": "2026-02-02 08:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:07", + "echoMap": {}, + "alarmNo": "1690071891", + "alarmDate": "1769992682023", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113046280599604", + "createdBy": null, + "createdTime": "2026-02-02 08:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:43", + "echoMap": {}, + "alarmNo": "1690071890", + "alarmDate": "1769991534659", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113033395697695", + "createdBy": null, + "createdTime": "2026-02-02 08:00:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:32", + "echoMap": {}, + "alarmNo": "1690071889", + "alarmDate": "1769990431478", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1021030006", + "deviceName": "安防箱6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1021" + }, + { + "id": "723113033395697676", + "createdBy": null, + "createdTime": "2026-02-02 07:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:30", + "echoMap": {}, + "alarmNo": "1690071888", + "alarmDate": "1769990335252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723113033395697667", + "createdBy": null, + "createdTime": "2026-02-02 07:58:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:43", + "echoMap": {}, + "alarmNo": "1690071887", + "alarmDate": "1769990317521", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723112994740992114", + "createdBy": null, + "createdTime": "2026-02-02 07:18:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:38:31", + "echoMap": {}, + "alarmNo": "1690071886", + "alarmDate": "1769987892524", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + }, + { + "id": "723112968971188296", + "createdBy": null, + "createdTime": "2026-02-02 06:48:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:02", + "echoMap": {}, + "alarmNo": "1690071885", + "alarmDate": "1769986081926", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1021060016", + "deviceName": "[326](10)四平10-8换乘楼梯4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1021" + } + ] + }, + "1022": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113093532538017", + "createdBy": null, + "createdTime": "2026-02-02 00:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:19", + "echoMap": {}, + "alarmNo": "1710237632", + "alarmDate": "1769961858338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113093532538128", + "createdBy": null, + "createdTime": "2026-02-02 00:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:48", + "echoMap": {}, + "alarmNo": "1710237633", + "alarmDate": "1769961864808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113097827505239", + "createdBy": null, + "createdTime": "2026-02-02 00:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:39", + "echoMap": {}, + "alarmNo": "1710237634", + "alarmDate": "1769961877498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113097827505438", + "createdBy": null, + "createdTime": "2026-02-02 00:04:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:46", + "echoMap": {}, + "alarmNo": "1710237635", + "alarmDate": "1769961889044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113102122472457", + "createdBy": null, + "createdTime": "2026-02-02 00:04:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:00", + "echoMap": {}, + "alarmNo": "1710237636", + "alarmDate": "1769961899397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113102122472579", + "createdBy": null, + "createdTime": "2026-02-02 00:05:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:07", + "echoMap": {}, + "alarmNo": "1710237637", + "alarmDate": "1769961906189", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113106417439835", + "createdBy": null, + "createdTime": "2026-02-02 00:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:13", + "echoMap": {}, + "alarmNo": "1710237638", + "alarmDate": "1769962452569", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113119302341687", + "createdBy": null, + "createdTime": "2026-02-02 00:24:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:19", + "echoMap": {}, + "alarmNo": "1710237639", + "alarmDate": "1769963058002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113119302341744", + "createdBy": null, + "createdTime": "2026-02-02 00:24:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:22", + "echoMap": {}, + "alarmNo": "1710237640", + "alarmDate": "1769963061476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113123597309206", + "createdBy": null, + "createdTime": "2026-02-02 00:24:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:59", + "echoMap": {}, + "alarmNo": "1710237641", + "alarmDate": "1769963098027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243538", + "createdBy": null, + "createdTime": "2026-02-02 00:34:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:24", + "echoMap": {}, + "alarmNo": "1710237642", + "alarmDate": "1769963663407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243784", + "createdBy": null, + "createdTime": "2026-02-02 00:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:40", + "echoMap": {}, + "alarmNo": "1710237643", + "alarmDate": "1769963679322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243786", + "createdBy": null, + "createdTime": "2026-02-02 00:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:40", + "echoMap": {}, + "alarmNo": "1710237644", + "alarmDate": "1769963679448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243839", + "createdBy": null, + "createdTime": "2026-02-02 00:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:43", + "echoMap": {}, + "alarmNo": "1710237645", + "alarmDate": "1769963682117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113145072145536", + "createdBy": null, + "createdTime": "2026-02-02 00:44:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:48", + "echoMap": {}, + "alarmNo": "1710237646", + "alarmDate": "1769964286472", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113145072145703", + "createdBy": null, + "createdTime": "2026-02-02 00:44:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:58", + "echoMap": {}, + "alarmNo": "1710237647", + "alarmDate": "1769964297195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113153662080317", + "createdBy": null, + "createdTime": "2026-02-02 00:54:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:50", + "echoMap": {}, + "alarmNo": "1710237648", + "alarmDate": "1769964888720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113157957047441", + "createdBy": null, + "createdTime": "2026-02-02 00:55:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:02", + "echoMap": {}, + "alarmNo": "1710237649", + "alarmDate": "1769964901028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113157957047589", + "createdBy": null, + "createdTime": "2026-02-02 00:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:21", + "echoMap": {}, + "alarmNo": "1710237650", + "alarmDate": "1769964911583", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113157957047699", + "createdBy": null, + "createdTime": "2026-02-02 01:04:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:11", + "echoMap": {}, + "alarmNo": "1710237651", + "alarmDate": "1769965450143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113162252014704", + "createdBy": null, + "createdTime": "2026-02-02 01:04:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:21", + "echoMap": {}, + "alarmNo": "1710237652", + "alarmDate": "1769965460095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113170841949330", + "createdBy": null, + "createdTime": "2026-02-02 01:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:20", + "echoMap": {}, + "alarmNo": "1710237653", + "alarmDate": "1769966059349", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113170841949595", + "createdBy": null, + "createdTime": "2026-02-02 01:14:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:38", + "echoMap": {}, + "alarmNo": "1710237654", + "alarmDate": "1769966076590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113170841949661", + "createdBy": null, + "createdTime": "2026-02-02 01:14:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:42", + "echoMap": {}, + "alarmNo": "1710237655", + "alarmDate": "1769966080888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113175136916989", + "createdBy": null, + "createdTime": "2026-02-02 01:24:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:24", + "echoMap": {}, + "alarmNo": "1710237657", + "alarmDate": "1769966651711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060064", + "deviceName": "[309](10)同济1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884107", + "createdBy": null, + "createdTime": "2026-02-02 01:24:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:40", + "echoMap": {}, + "alarmNo": "1710237658", + "alarmDate": "1769966679479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884272", + "createdBy": null, + "createdTime": "2026-02-02 01:24:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:50", + "echoMap": {}, + "alarmNo": "1710237659", + "alarmDate": "1769966688777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884282", + "createdBy": null, + "createdTime": "2026-02-02 01:24:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:50", + "echoMap": {}, + "alarmNo": "1710237660", + "alarmDate": "1769966689478", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884340", + "createdBy": null, + "createdTime": "2026-02-02 01:24:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:54", + "echoMap": {}, + "alarmNo": "1710237661", + "alarmDate": "1769966692706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113188021818675", + "createdBy": null, + "createdTime": "2026-02-02 01:34:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:49", + "echoMap": {}, + "alarmNo": "1710237662", + "alarmDate": "1769967287814", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316785812", + "createdBy": null, + "createdTime": "2026-02-02 01:35:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:09", + "echoMap": {}, + "alarmNo": "1710237663", + "alarmDate": "1769967308162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316786053", + "createdBy": null, + "createdTime": "2026-02-02 01:44:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:18", + "echoMap": {}, + "alarmNo": "1710237664", + "alarmDate": "1769967856770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316786158", + "createdBy": null, + "createdTime": "2026-02-02 01:44:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:24", + "echoMap": {}, + "alarmNo": "1710237665", + "alarmDate": "1769967863521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316786159", + "createdBy": null, + "createdTime": "2026-02-02 01:44:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:20", + "echoMap": {}, + "alarmNo": "1710237666", + "alarmDate": "1769967863525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113200906720695", + "createdBy": null, + "createdTime": "2026-02-02 01:54:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:29", + "echoMap": {}, + "alarmNo": "1710237667", + "alarmDate": "1769968467536", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113200906720740", + "createdBy": null, + "createdTime": "2026-02-02 01:54:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:30", + "echoMap": {}, + "alarmNo": "1710237668", + "alarmDate": "1769968469543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113200906720807", + "createdBy": null, + "createdTime": "2026-02-02 01:54:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:35", + "echoMap": {}, + "alarmNo": "1710237669", + "alarmDate": "1769968474059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113205201687578", + "createdBy": null, + "createdTime": "2026-02-02 01:54:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:39", + "echoMap": {}, + "alarmNo": "1710237670", + "alarmDate": "1769968476871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113209496655200", + "createdBy": null, + "createdTime": "2026-02-02 02:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:23", + "echoMap": {}, + "alarmNo": "1710237671", + "alarmDate": "1769969062436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113213791622387", + "createdBy": null, + "createdTime": "2026-02-02 02:04:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:51", + "echoMap": {}, + "alarmNo": "1710237672", + "alarmDate": "1769969090363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113213791622474", + "createdBy": null, + "createdTime": "2026-02-02 02:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:57", + "echoMap": {}, + "alarmNo": "1710237673", + "alarmDate": "1769969095598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113222381557030", + "createdBy": null, + "createdTime": "2026-02-02 02:14:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:03", + "echoMap": {}, + "alarmNo": "1710237674", + "alarmDate": "1769969691364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060064", + "deviceName": "[309](10)同济1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113222381557145", + "createdBy": null, + "createdTime": "2026-02-02 02:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:59", + "echoMap": {}, + "alarmNo": "1710237675", + "alarmDate": "1769969698404", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524103", + "createdBy": null, + "createdTime": "2026-02-02 02:15:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:08", + "echoMap": {}, + "alarmNo": "1710237676", + "alarmDate": "1769969707296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524152", + "createdBy": null, + "createdTime": "2026-02-02 02:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:12", + "echoMap": {}, + "alarmNo": "1710237677", + "alarmDate": "1769969710346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524345", + "createdBy": null, + "createdTime": "2026-02-02 02:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:16", + "echoMap": {}, + "alarmNo": "1710237678", + "alarmDate": "1769970255048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524428", + "createdBy": null, + "createdTime": "2026-02-02 02:24:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:21", + "echoMap": {}, + "alarmNo": "1710237679", + "alarmDate": "1769970260159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524480", + "createdBy": null, + "createdTime": "2026-02-02 02:24:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:24", + "echoMap": {}, + "alarmNo": "1710237680", + "alarmDate": "1769970263717", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524481", + "createdBy": null, + "createdTime": "2026-02-02 02:24:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:25", + "echoMap": {}, + "alarmNo": "1710237681", + "alarmDate": "1769970263718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113230971491621", + "createdBy": null, + "createdTime": "2026-02-02 02:24:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:51", + "echoMap": {}, + "alarmNo": "1710237682", + "alarmDate": "1769970289768", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113235266459164", + "createdBy": null, + "createdTime": "2026-02-02 02:34:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:31", + "echoMap": {}, + "alarmNo": "1710237683", + "alarmDate": "1769970869934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113239561426002", + "createdBy": null, + "createdTime": "2026-02-02 02:34:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:37", + "echoMap": {}, + "alarmNo": "1710237684", + "alarmDate": "1769970875569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151360538", + "createdBy": null, + "createdTime": "2026-02-02 02:44:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:26", + "echoMap": {}, + "alarmNo": "1710237685", + "alarmDate": "1769971472351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151360597", + "createdBy": null, + "createdTime": "2026-02-02 02:44:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:37", + "echoMap": {}, + "alarmNo": "1710237686", + "alarmDate": "1769971475687", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151360794", + "createdBy": null, + "createdTime": "2026-02-02 02:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:49", + "echoMap": {}, + "alarmNo": "1710237687", + "alarmDate": "1769971487823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151361001", + "createdBy": null, + "createdTime": "2026-02-02 02:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:02", + "echoMap": {}, + "alarmNo": "1710237688", + "alarmDate": "1769971500521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151361011", + "createdBy": null, + "createdTime": "2026-02-02 02:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:02", + "echoMap": {}, + "alarmNo": "1710237689", + "alarmDate": "1769971500986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113252446328100", + "createdBy": null, + "createdTime": "2026-02-02 02:54:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:13", + "echoMap": {}, + "alarmNo": "1710237690", + "alarmDate": "1769972052071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113252446328290", + "createdBy": null, + "createdTime": "2026-02-02 02:54:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:25", + "echoMap": {}, + "alarmNo": "1710237691", + "alarmDate": "1769972063871", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113261036262474", + "createdBy": null, + "createdTime": "2026-02-02 02:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:03", + "echoMap": {}, + "alarmNo": "1710237692", + "alarmDate": "1769972102317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113261036262598", + "createdBy": null, + "createdTime": "2026-02-02 02:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:11", + "echoMap": {}, + "alarmNo": "1710237693", + "alarmDate": "1769972109866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113261036262843", + "createdBy": null, + "createdTime": "2026-02-02 03:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:19", + "echoMap": {}, + "alarmNo": "1710237694", + "alarmDate": "1769972657954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113269626197136", + "createdBy": null, + "createdTime": "2026-02-02 03:05:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:07", + "echoMap": {}, + "alarmNo": "1710237695", + "alarmDate": "1769972706323", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113269626197353", + "createdBy": null, + "createdTime": "2026-02-02 03:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:14", + "echoMap": {}, + "alarmNo": "1710237696", + "alarmDate": "1769973253468", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164302", + "createdBy": null, + "createdTime": "2026-02-02 03:14:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:29", + "echoMap": {}, + "alarmNo": "1710237697", + "alarmDate": "1769973267693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164659", + "createdBy": null, + "createdTime": "2026-02-02 03:14:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:51", + "echoMap": {}, + "alarmNo": "1710237698", + "alarmDate": "1769973289777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164690", + "createdBy": null, + "createdTime": "2026-02-02 03:14:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:52", + "echoMap": {}, + "alarmNo": "1710237699", + "alarmDate": "1769973291278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164692", + "createdBy": null, + "createdTime": "2026-02-02 03:14:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:52", + "echoMap": {}, + "alarmNo": "1710237700", + "alarmDate": "1769973291436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511098891", + "createdBy": null, + "createdTime": "2026-02-02 03:24:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:31", + "echoMap": {}, + "alarmNo": "1710237701", + "alarmDate": "1769973865353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511099182", + "createdBy": null, + "createdTime": "2026-02-02 03:24:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:44", + "echoMap": {}, + "alarmNo": "1710237702", + "alarmDate": "1769973883143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511099193", + "createdBy": null, + "createdTime": "2026-02-02 03:24:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:49", + "echoMap": {}, + "alarmNo": "1710237703", + "alarmDate": "1769973883488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511099324", + "createdBy": null, + "createdTime": "2026-02-02 03:24:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:53", + "echoMap": {}, + "alarmNo": "1710237704", + "alarmDate": "1769973891531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113291101033825", + "createdBy": null, + "createdTime": "2026-02-02 03:34:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:45", + "echoMap": {}, + "alarmNo": "1710237705", + "alarmDate": "1769974484064", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113295396000838", + "createdBy": null, + "createdTime": "2026-02-02 03:34:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:00", + "echoMap": {}, + "alarmNo": "1710237706", + "alarmDate": "1769974499362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113295396000953", + "createdBy": null, + "createdTime": "2026-02-02 03:35:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:22", + "echoMap": {}, + "alarmNo": "1710237707", + "alarmDate": "1769974506756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968073", + "createdBy": null, + "createdTime": "2026-02-02 03:44:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:25", + "echoMap": {}, + "alarmNo": "1710237708", + "alarmDate": "1769975064144", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968245", + "createdBy": null, + "createdTime": "2026-02-02 03:44:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:35", + "echoMap": {}, + "alarmNo": "1710237709", + "alarmDate": "1769975074596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968247", + "createdBy": null, + "createdTime": "2026-02-02 03:44:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:36", + "echoMap": {}, + "alarmNo": "1710237710", + "alarmDate": "1769975074600", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968340", + "createdBy": null, + "createdTime": "2026-02-02 03:44:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:41", + "echoMap": {}, + "alarmNo": "1710237711", + "alarmDate": "1769975080061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113308280902685", + "createdBy": null, + "createdTime": "2026-02-02 03:54:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:24", + "echoMap": {}, + "alarmNo": "1710237712", + "alarmDate": "1769975662973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113308280902872", + "createdBy": null, + "createdTime": "2026-02-02 03:54:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:34", + "echoMap": {}, + "alarmNo": "1710237713", + "alarmDate": "1769975673452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113316870837286", + "createdBy": null, + "createdTime": "2026-02-02 04:04:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:21", + "echoMap": {}, + "alarmNo": "1710237714", + "alarmDate": "1769976259882", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113316870837598", + "createdBy": null, + "createdTime": "2026-02-02 04:04:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:40", + "echoMap": {}, + "alarmNo": "1710237715", + "alarmDate": "1769976279066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113321165804584", + "createdBy": null, + "createdTime": "2026-02-02 04:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:53", + "echoMap": {}, + "alarmNo": "1710237716", + "alarmDate": "1769976291722", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113325460771902", + "createdBy": null, + "createdTime": "2026-02-02 04:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:21", + "echoMap": {}, + "alarmNo": "1710237717", + "alarmDate": "1769976860385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113325460772090", + "createdBy": null, + "createdTime": "2026-02-02 04:14:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:33", + "echoMap": {}, + "alarmNo": "1710237718", + "alarmDate": "1769976871840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113329755739225", + "createdBy": null, + "createdTime": "2026-02-02 04:14:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:56", + "echoMap": {}, + "alarmNo": "1710237719", + "alarmDate": "1769976894521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113329755739410", + "createdBy": null, + "createdTime": "2026-02-02 04:15:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:07", + "echoMap": {}, + "alarmNo": "1710237720", + "alarmDate": "1769976906008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113329755739680", + "createdBy": null, + "createdTime": "2026-02-02 04:24:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:15", + "echoMap": {}, + "alarmNo": "1710237721", + "alarmDate": "1769977454182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113334050706840", + "createdBy": null, + "createdTime": "2026-02-02 04:24:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:41", + "echoMap": {}, + "alarmNo": "1710237722", + "alarmDate": "1769977479676", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113338345673831", + "createdBy": null, + "createdTime": "2026-02-02 04:24:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:52", + "echoMap": {}, + "alarmNo": "1710237723", + "alarmDate": "1769977490483", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113342640641166", + "createdBy": null, + "createdTime": "2026-02-02 04:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:21", + "echoMap": {}, + "alarmNo": "1710237724", + "alarmDate": "1769978059870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113342640641283", + "createdBy": null, + "createdTime": "2026-02-02 04:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:28", + "echoMap": {}, + "alarmNo": "1710237725", + "alarmDate": "1769978067436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608458", + "createdBy": null, + "createdTime": "2026-02-02 04:34:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:04", + "echoMap": {}, + "alarmNo": "1710237726", + "alarmDate": "1769978092366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608552", + "createdBy": null, + "createdTime": "2026-02-02 04:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:59", + "echoMap": {}, + "alarmNo": "1710237727", + "alarmDate": "1769978098021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608759", + "createdBy": null, + "createdTime": "2026-02-02 04:35:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:22", + "echoMap": {}, + "alarmNo": "1710237728", + "alarmDate": "1769978111383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608887", + "createdBy": null, + "createdTime": "2026-02-02 04:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:43:21", + "echoMap": {}, + "alarmNo": "1710237729", + "alarmDate": "1769978541904", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022060057", + "deviceName": "[303](10)同济1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113351230575654", + "createdBy": null, + "createdTime": "2026-02-02 04:44:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:45", + "echoMap": {}, + "alarmNo": "1710237730", + "alarmDate": "1769978652524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113351230576007", + "createdBy": null, + "createdTime": "2026-02-02 04:44:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:35", + "echoMap": {}, + "alarmNo": "1710237731", + "alarmDate": "1769978674356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113355525543013", + "createdBy": null, + "createdTime": "2026-02-02 04:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:49", + "echoMap": {}, + "alarmNo": "1710237732", + "alarmDate": "1769978687767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113359820510422", + "createdBy": null, + "createdTime": "2026-02-02 04:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:28", + "echoMap": {}, + "alarmNo": "1710237733", + "alarmDate": "1769979267351", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113359820510438", + "createdBy": null, + "createdTime": "2026-02-02 04:54:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:35", + "echoMap": {}, + "alarmNo": "1710237734", + "alarmDate": "1769979268536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113359820510439", + "createdBy": null, + "createdTime": "2026-02-02 04:54:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:41", + "echoMap": {}, + "alarmNo": "1710237735", + "alarmDate": "1769979268539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477514", + "createdBy": null, + "createdTime": "2026-02-02 04:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:05", + "echoMap": {}, + "alarmNo": "1710237736", + "alarmDate": "1769979292552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477515", + "createdBy": null, + "createdTime": "2026-02-02 04:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:05", + "echoMap": {}, + "alarmNo": "1710237737", + "alarmDate": "1769979292552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477561", + "createdBy": null, + "createdTime": "2026-02-02 04:54:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:57", + "echoMap": {}, + "alarmNo": "1710237738", + "alarmDate": "1769979296027", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477683", + "createdBy": null, + "createdTime": "2026-02-02 04:55:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:07", + "echoMap": {}, + "alarmNo": "1710237739", + "alarmDate": "1769979306056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477917", + "createdBy": null, + "createdTime": "2026-02-02 05:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:16", + "echoMap": {}, + "alarmNo": "1710237740", + "alarmDate": "1769979855225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477924", + "createdBy": null, + "createdTime": "2026-02-02 05:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:29", + "echoMap": {}, + "alarmNo": "1710237741", + "alarmDate": "1769979855801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115478009", + "createdBy": null, + "createdTime": "2026-02-02 05:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:36", + "echoMap": {}, + "alarmNo": "1710237742", + "alarmDate": "1769979862951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410444917", + "createdBy": null, + "createdTime": "2026-02-02 05:04:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:54", + "echoMap": {}, + "alarmNo": "1710237743", + "alarmDate": "1769979880779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410444990", + "createdBy": null, + "createdTime": "2026-02-02 05:04:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:00", + "echoMap": {}, + "alarmNo": "1710237744", + "alarmDate": "1769979886920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410445166", + "createdBy": null, + "createdTime": "2026-02-02 05:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:03", + "echoMap": {}, + "alarmNo": "1710237745", + "alarmDate": "1769979902166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410445216", + "createdBy": null, + "createdTime": "2026-02-02 05:05:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:08", + "echoMap": {}, + "alarmNo": "1710237746", + "alarmDate": "1769979906932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412203", + "createdBy": null, + "createdTime": "2026-02-02 05:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:24", + "echoMap": {}, + "alarmNo": "1710237747", + "alarmDate": "1769980452037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412222", + "createdBy": null, + "createdTime": "2026-02-02 05:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:14", + "echoMap": {}, + "alarmNo": "1710237748", + "alarmDate": "1769980453270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412258", + "createdBy": null, + "createdTime": "2026-02-02 05:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:17", + "echoMap": {}, + "alarmNo": "1710237749", + "alarmDate": "1769980456126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412297", + "createdBy": null, + "createdTime": "2026-02-02 05:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:15:02", + "echoMap": {}, + "alarmNo": "1710237750", + "alarmDate": "1769980459104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412514", + "createdBy": null, + "createdTime": "2026-02-02 05:14:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:48", + "echoMap": {}, + "alarmNo": "1710237751", + "alarmDate": "1769980477151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412581", + "createdBy": null, + "createdTime": "2026-02-02 05:14:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:44", + "echoMap": {}, + "alarmNo": "1710237752", + "alarmDate": "1769980482449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113377000379564", + "createdBy": null, + "createdTime": "2026-02-02 05:15:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:27", + "echoMap": {}, + "alarmNo": "1710237753", + "alarmDate": "1769980507262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113377000379734", + "createdBy": null, + "createdTime": "2026-02-02 05:24:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:35", + "echoMap": {}, + "alarmNo": "1710237754", + "alarmDate": "1769981050897", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060040", + "deviceName": "[408](10)同济3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113377000379768", + "createdBy": null, + "createdTime": "2026-02-02 05:24:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:27", + "echoMap": {}, + "alarmNo": "1710237755", + "alarmDate": "1769981054434", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295346770", + "createdBy": null, + "createdTime": "2026-02-02 05:24:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:31", + "echoMap": {}, + "alarmNo": "1710237756", + "alarmDate": "1769981069789", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295346864", + "createdBy": null, + "createdTime": "2026-02-02 05:24:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:51", + "echoMap": {}, + "alarmNo": "1710237757", + "alarmDate": "1769981078373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295346881", + "createdBy": null, + "createdTime": "2026-02-02 05:24:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:30", + "echoMap": {}, + "alarmNo": "1710237758", + "alarmDate": "1769981079453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295347010", + "createdBy": null, + "createdTime": "2026-02-02 05:24:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:51", + "echoMap": {}, + "alarmNo": "1710237759", + "alarmDate": "1769981089990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295347163", + "createdBy": null, + "createdTime": "2026-02-02 05:25:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:16", + "echoMap": {}, + "alarmNo": "1710237760", + "alarmDate": "1769981103346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314076", + "createdBy": null, + "createdTime": "2026-02-02 05:34:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:14:15", + "echoMap": {}, + "alarmNo": "1710237761", + "alarmDate": "1769981650429", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060040", + "deviceName": "[408](10)同济3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314183", + "createdBy": null, + "createdTime": "2026-02-02 05:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:21", + "echoMap": {}, + "alarmNo": "1710237762", + "alarmDate": "1769981660481", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314341", + "createdBy": null, + "createdTime": "2026-02-02 05:34:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:46", + "echoMap": {}, + "alarmNo": "1710237763", + "alarmDate": "1769981673612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314440", + "createdBy": null, + "createdTime": "2026-02-02 05:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:54", + "echoMap": {}, + "alarmNo": "1710237764", + "alarmDate": "1769981681624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281329", + "createdBy": null, + "createdTime": "2026-02-02 05:34:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:50", + "echoMap": {}, + "alarmNo": "1710237765", + "alarmDate": "1769981688782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281384", + "createdBy": null, + "createdTime": "2026-02-02 05:34:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:54", + "echoMap": {}, + "alarmNo": "1710237766", + "alarmDate": "1769981692972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281439", + "createdBy": null, + "createdTime": "2026-02-02 05:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:11", + "echoMap": {}, + "alarmNo": "1710237767", + "alarmDate": "1769981697674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281571", + "createdBy": null, + "createdTime": "2026-02-02 05:35:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:33", + "echoMap": {}, + "alarmNo": "1710237768", + "alarmDate": "1769981706802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281838", + "createdBy": null, + "createdTime": "2026-02-02 05:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:21", + "echoMap": {}, + "alarmNo": "1710237769", + "alarmDate": "1769982260213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281863", + "createdBy": null, + "createdTime": "2026-02-02 05:44:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:34", + "echoMap": {}, + "alarmNo": "1710237770", + "alarmDate": "1769982262055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113394180248809", + "createdBy": null, + "createdTime": "2026-02-02 05:44:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:58", + "echoMap": {}, + "alarmNo": "1710237771", + "alarmDate": "1769982284941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113394180248835", + "createdBy": null, + "createdTime": "2026-02-02 05:44:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:06", + "echoMap": {}, + "alarmNo": "1710237772", + "alarmDate": "1769982286974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113394180248975", + "createdBy": null, + "createdTime": "2026-02-02 05:44:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:59", + "echoMap": {}, + "alarmNo": "1710237773", + "alarmDate": "1769982298360", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475215889", + "createdBy": null, + "createdTime": "2026-02-02 05:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:22", + "echoMap": {}, + "alarmNo": "1710237774", + "alarmDate": "1769982310173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216095", + "createdBy": null, + "createdTime": "2026-02-02 05:54:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:30", + "echoMap": {}, + "alarmNo": "1710237775", + "alarmDate": "1769982858066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216253", + "createdBy": null, + "createdTime": "2026-02-02 05:54:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:33", + "echoMap": {}, + "alarmNo": "1710237776", + "alarmDate": "1769982871877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216279", + "createdBy": null, + "createdTime": "2026-02-02 05:54:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:46", + "echoMap": {}, + "alarmNo": "1710237777", + "alarmDate": "1769982874192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216370", + "createdBy": null, + "createdTime": "2026-02-02 05:54:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:54", + "echoMap": {}, + "alarmNo": "1710237778", + "alarmDate": "1769982882173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183193", + "createdBy": null, + "createdTime": "2026-02-02 05:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:53", + "echoMap": {}, + "alarmNo": "1710237779", + "alarmDate": "1769982892061", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183272", + "createdBy": null, + "createdTime": "2026-02-02 05:54:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:10", + "echoMap": {}, + "alarmNo": "1710237780", + "alarmDate": "1769982898193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183542", + "createdBy": null, + "createdTime": "2026-02-02 06:04:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:18", + "echoMap": {}, + "alarmNo": "1710237781", + "alarmDate": "1769983451416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183551", + "createdBy": null, + "createdTime": "2026-02-02 06:04:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:18", + "echoMap": {}, + "alarmNo": "1710237782", + "alarmDate": "1769983452385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150556", + "createdBy": null, + "createdTime": "2026-02-02 06:04:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:34", + "echoMap": {}, + "alarmNo": "1710237783", + "alarmDate": "1769983472658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150606", + "createdBy": null, + "createdTime": "2026-02-02 06:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:49", + "echoMap": {}, + "alarmNo": "1710237784", + "alarmDate": "1769983477454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150607", + "createdBy": null, + "createdTime": "2026-02-02 06:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:56", + "echoMap": {}, + "alarmNo": "1710237785", + "alarmDate": "1769983477480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150699", + "createdBy": null, + "createdTime": "2026-02-02 06:04:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:46", + "echoMap": {}, + "alarmNo": "1710237786", + "alarmDate": "1769983484655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150789", + "createdBy": null, + "createdTime": "2026-02-02 06:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:53", + "echoMap": {}, + "alarmNo": "1710237787", + "alarmDate": "1769983491932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150962", + "createdBy": null, + "createdTime": "2026-02-02 06:05:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:21", + "echoMap": {}, + "alarmNo": "1710237788", + "alarmDate": "1769983508442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150964", + "createdBy": null, + "createdTime": "2026-02-02 06:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:29", + "echoMap": {}, + "alarmNo": "1710237789", + "alarmDate": "1769983508523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360117888", + "createdBy": null, + "createdTime": "2026-02-02 06:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:17", + "echoMap": {}, + "alarmNo": "1710237790", + "alarmDate": "1769984055549", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360118071", + "createdBy": null, + "createdTime": "2026-02-02 06:14:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:45", + "echoMap": {}, + "alarmNo": "1710237791", + "alarmDate": "1769984071623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360118093", + "createdBy": null, + "createdTime": "2026-02-02 06:14:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:34", + "echoMap": {}, + "alarmNo": "1710237792", + "alarmDate": "1769984073089", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360118167", + "createdBy": null, + "createdTime": "2026-02-02 06:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:53", + "echoMap": {}, + "alarmNo": "1710237793", + "alarmDate": "1769984079770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085211", + "createdBy": null, + "createdTime": "2026-02-02 06:15:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:24", + "echoMap": {}, + "alarmNo": "1710237794", + "alarmDate": "1769984104717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085257", + "createdBy": null, + "createdTime": "2026-02-02 06:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:10", + "echoMap": {}, + "alarmNo": "1710237795", + "alarmDate": "1769984108545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085417", + "createdBy": null, + "createdTime": "2026-02-02 06:24:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:16", + "echoMap": {}, + "alarmNo": "1710237796", + "alarmDate": "1769984651914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085529", + "createdBy": null, + "createdTime": "2026-02-02 06:24:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:23", + "echoMap": {}, + "alarmNo": "1710237797", + "alarmDate": "1769984661723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085597", + "createdBy": null, + "createdTime": "2026-02-02 06:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:47", + "echoMap": {}, + "alarmNo": "1710237798", + "alarmDate": "1769984667904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052398", + "createdBy": null, + "createdTime": "2026-02-02 06:24:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:55", + "echoMap": {}, + "alarmNo": "1710237799", + "alarmDate": "1769984676075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052661", + "createdBy": null, + "createdTime": "2026-02-02 06:24:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:11", + "echoMap": {}, + "alarmNo": "1710237800", + "alarmDate": "1769984698895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052738", + "createdBy": null, + "createdTime": "2026-02-02 06:25:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:06", + "echoMap": {}, + "alarmNo": "1710237801", + "alarmDate": "1769984705331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052769", + "createdBy": null, + "createdTime": "2026-02-02 06:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:33", + "echoMap": {}, + "alarmNo": "1710237802", + "alarmDate": "1769984708079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019733", + "createdBy": null, + "createdTime": "2026-02-02 06:34:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:15", + "echoMap": {}, + "alarmNo": "1710237803", + "alarmDate": "1769985254562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019810", + "createdBy": null, + "createdTime": "2026-02-02 06:34:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:35", + "echoMap": {}, + "alarmNo": "1710237804", + "alarmDate": "1769985262069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019909", + "createdBy": null, + "createdTime": "2026-02-02 06:34:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:32", + "echoMap": {}, + "alarmNo": "1710237805", + "alarmDate": "1769985270644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019950", + "createdBy": null, + "createdTime": "2026-02-02 06:34:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:35", + "echoMap": {}, + "alarmNo": "1710237806", + "alarmDate": "1769985274334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539986950", + "createdBy": null, + "createdTime": "2026-02-02 06:34:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:57", + "echoMap": {}, + "alarmNo": "1710237807", + "alarmDate": "1769985285225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539986973", + "createdBy": null, + "createdTime": "2026-02-02 06:34:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:59", + "echoMap": {}, + "alarmNo": "1710237808", + "alarmDate": "1769985287152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539987156", + "createdBy": null, + "createdTime": "2026-02-02 06:35:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:35:05", + "echoMap": {}, + "alarmNo": "1710237809", + "alarmDate": "1769985303653", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539987207", + "createdBy": null, + "createdTime": "2026-02-02 06:35:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:31", + "echoMap": {}, + "alarmNo": "1710237810", + "alarmDate": "1769985309322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113432834954252", + "createdBy": null, + "createdTime": "2026-02-02 06:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:22", + "echoMap": {}, + "alarmNo": "1710237811", + "alarmDate": "1769985851275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113432834954545", + "createdBy": null, + "createdTime": "2026-02-02 06:44:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:54", + "echoMap": {}, + "alarmNo": "1710237812", + "alarmDate": "1769985881543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113432834954557", + "createdBy": null, + "createdTime": "2026-02-02 06:44:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:54", + "echoMap": {}, + "alarmNo": "1710237813", + "alarmDate": "1769985882412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113437129921652", + "createdBy": null, + "createdTime": "2026-02-02 06:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:02", + "echoMap": {}, + "alarmNo": "1710237814", + "alarmDate": "1769985901476", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113437129921891", + "createdBy": null, + "createdTime": "2026-02-02 06:54:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:27", + "echoMap": {}, + "alarmNo": "1710237815", + "alarmDate": "1769986454561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424888865", + "createdBy": null, + "createdTime": "2026-02-02 06:54:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:26", + "echoMap": {}, + "alarmNo": "1710237816", + "alarmDate": "1769986459801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889101", + "createdBy": null, + "createdTime": "2026-02-02 06:54:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:24", + "echoMap": {}, + "alarmNo": "1710237817", + "alarmDate": "1769986483457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060111", + "deviceName": "[336](10)同济4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889123", + "createdBy": null, + "createdTime": "2026-02-02 06:54:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:58", + "echoMap": {}, + "alarmNo": "1710237818", + "alarmDate": "1769986485663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889178", + "createdBy": null, + "createdTime": "2026-02-02 06:54:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:52", + "echoMap": {}, + "alarmNo": "1710237819", + "alarmDate": "1769986491197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889244", + "createdBy": null, + "createdTime": "2026-02-02 06:54:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:41", + "echoMap": {}, + "alarmNo": "1710237820", + "alarmDate": "1769986498048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889276", + "createdBy": null, + "createdTime": "2026-02-02 06:55:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:02", + "echoMap": {}, + "alarmNo": "1710237821", + "alarmDate": "1769986501260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113445719856153", + "createdBy": null, + "createdTime": "2026-02-02 06:55:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:08", + "echoMap": {}, + "alarmNo": "1710237822", + "alarmDate": "1769986507775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113445719856359", + "createdBy": null, + "createdTime": "2026-02-02 07:04:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:29", + "echoMap": {}, + "alarmNo": "1710237823", + "alarmDate": "1769987056959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113445719856447", + "createdBy": null, + "createdTime": "2026-02-02 07:04:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:27", + "echoMap": {}, + "alarmNo": "1710237824", + "alarmDate": "1769987066106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823435", + "createdBy": null, + "createdTime": "2026-02-02 07:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:37", + "echoMap": {}, + "alarmNo": "1710237825", + "alarmDate": "1769987070403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823534", + "createdBy": null, + "createdTime": "2026-02-02 07:04:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:01", + "echoMap": {}, + "alarmNo": "1710237826", + "alarmDate": "1769987081888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823631", + "createdBy": null, + "createdTime": "2026-02-02 07:04:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:30", + "echoMap": {}, + "alarmNo": "1710237827", + "alarmDate": "1769987093219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823748", + "createdBy": null, + "createdTime": "2026-02-02 07:05:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:44", + "echoMap": {}, + "alarmNo": "1710237828", + "alarmDate": "1769987106612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113454309790831", + "createdBy": null, + "createdTime": "2026-02-02 07:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:01", + "echoMap": {}, + "alarmNo": "1710237829", + "alarmDate": "1769987660132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113454309791036", + "createdBy": null, + "createdTime": "2026-02-02 07:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:41", + "echoMap": {}, + "alarmNo": "1710237830", + "alarmDate": "1769987680354", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113458604758091", + "createdBy": null, + "createdTime": "2026-02-02 07:14:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:57", + "echoMap": {}, + "alarmNo": "1710237831", + "alarmDate": "1769987695589", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113458604758162", + "createdBy": null, + "createdTime": "2026-02-02 07:15:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:04", + "echoMap": {}, + "alarmNo": "1710237832", + "alarmDate": "1769987703120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113458604758422", + "createdBy": null, + "createdTime": "2026-02-02 07:24:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:24:17", + "echoMap": {}, + "alarmNo": "1710237833", + "alarmDate": "1769988256352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113462899725495", + "createdBy": null, + "createdTime": "2026-02-02 07:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:24:42", + "echoMap": {}, + "alarmNo": "1710237834", + "alarmDate": "1769988281070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113462899725731", + "createdBy": null, + "createdTime": "2026-02-02 07:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:08", + "echoMap": {}, + "alarmNo": "1710237835", + "alarmDate": "1769988306752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113467194692629", + "createdBy": null, + "createdTime": "2026-02-02 07:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:11", + "echoMap": {}, + "alarmNo": "1710237836", + "alarmDate": "1769988309996", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113467194692849", + "createdBy": null, + "createdTime": "2026-02-02 07:34:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:19", + "echoMap": {}, + "alarmNo": "1710237837", + "alarmDate": "1769988857890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113471489660014", + "createdBy": null, + "createdTime": "2026-02-02 07:34:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:56", + "echoMap": {}, + "alarmNo": "1710237838", + "alarmDate": "1769988885261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113475784627411", + "createdBy": null, + "createdTime": "2026-02-02 07:44:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:52", + "echoMap": {}, + "alarmNo": "1710237840", + "alarmDate": "1769989455535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113475784627588", + "createdBy": null, + "createdTime": "2026-02-02 07:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:31", + "echoMap": {}, + "alarmNo": "1710237841", + "alarmDate": "1769989470364", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113480079594817", + "createdBy": null, + "createdTime": "2026-02-02 07:45:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:53", + "echoMap": {}, + "alarmNo": "1710237842", + "alarmDate": "1769989503613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113480079594869", + "createdBy": null, + "createdTime": "2026-02-02 07:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:51", + "echoMap": {}, + "alarmNo": "1710237843", + "alarmDate": "1769989508176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529110", + "createdBy": null, + "createdTime": "2026-02-02 07:54:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:35", + "echoMap": {}, + "alarmNo": "1710237844", + "alarmDate": "1769990074501", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529203", + "createdBy": null, + "createdTime": "2026-02-02 07:54:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:43", + "echoMap": {}, + "alarmNo": "1710237845", + "alarmDate": "1769990081866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529374", + "createdBy": null, + "createdTime": "2026-02-02 07:54:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:58", + "echoMap": {}, + "alarmNo": "1710237846", + "alarmDate": "1769990096509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529446", + "createdBy": null, + "createdTime": "2026-02-02 07:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:36", + "echoMap": {}, + "alarmNo": "1710237847", + "alarmDate": "1769990103398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529464", + "createdBy": null, + "createdTime": "2026-02-02 07:55:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:37", + "echoMap": {}, + "alarmNo": "1710237848", + "alarmDate": "1769990104942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113492964496574", + "createdBy": null, + "createdTime": "2026-02-02 08:04:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:21", + "echoMap": {}, + "alarmNo": "1710237849", + "alarmDate": "1769990651322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259463875", + "createdBy": null, + "createdTime": "2026-02-02 08:04:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:49", + "echoMap": {}, + "alarmNo": "1710237850", + "alarmDate": "1769990687627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259463883", + "createdBy": null, + "createdTime": "2026-02-02 08:04:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:16", + "echoMap": {}, + "alarmNo": "1710237851", + "alarmDate": "1769990688145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259463950", + "createdBy": null, + "createdTime": "2026-02-02 08:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:06", + "echoMap": {}, + "alarmNo": "1710237852", + "alarmDate": "1769990693632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259464004", + "createdBy": null, + "createdTime": "2026-02-02 08:04:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:59", + "echoMap": {}, + "alarmNo": "1710237853", + "alarmDate": "1769990697888", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113501554431220", + "createdBy": null, + "createdTime": "2026-02-02 08:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:18", + "echoMap": {}, + "alarmNo": "1710237854", + "alarmDate": "1769991251748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398306", + "createdBy": null, + "createdTime": "2026-02-02 08:14:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:45", + "echoMap": {}, + "alarmNo": "1710237855", + "alarmDate": "1769991272767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398356", + "createdBy": null, + "createdTime": "2026-02-02 08:14:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:43", + "echoMap": {}, + "alarmNo": "1710237856", + "alarmDate": "1769991276940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398463", + "createdBy": null, + "createdTime": "2026-02-02 08:14:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:52", + "echoMap": {}, + "alarmNo": "1710237857", + "alarmDate": "1769991285857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398592", + "createdBy": null, + "createdTime": "2026-02-02 08:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:04", + "echoMap": {}, + "alarmNo": "1710237858", + "alarmDate": "1769991297814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398642", + "createdBy": null, + "createdTime": "2026-02-02 08:15:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:34", + "echoMap": {}, + "alarmNo": "1710237859", + "alarmDate": "1769991301911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365600", + "createdBy": null, + "createdTime": "2026-02-02 08:15:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:06", + "echoMap": {}, + "alarmNo": "1710237860", + "alarmDate": "1769991305049", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365814", + "createdBy": null, + "createdTime": "2026-02-02 08:24:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:13", + "echoMap": {}, + "alarmNo": "1710237861", + "alarmDate": "1769991851141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365820", + "createdBy": null, + "createdTime": "2026-02-02 08:24:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:13", + "echoMap": {}, + "alarmNo": "1710237862", + "alarmDate": "1769991851869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365905", + "createdBy": null, + "createdTime": "2026-02-02 08:24:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:20", + "echoMap": {}, + "alarmNo": "1710237863", + "alarmDate": "1769991859369", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439332871", + "createdBy": null, + "createdTime": "2026-02-02 08:24:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:32", + "echoMap": {}, + "alarmNo": "1710237864", + "alarmDate": "1769991865894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439332893", + "createdBy": null, + "createdTime": "2026-02-02 08:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:28", + "echoMap": {}, + "alarmNo": "1710237865", + "alarmDate": "1769991867657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333093", + "createdBy": null, + "createdTime": "2026-02-02 08:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:59", + "echoMap": {}, + "alarmNo": "1710237866", + "alarmDate": "1769991886144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333094", + "createdBy": null, + "createdTime": "2026-02-02 08:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:47", + "echoMap": {}, + "alarmNo": "1710237867", + "alarmDate": "1769991886225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333104", + "createdBy": null, + "createdTime": "2026-02-02 08:24:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:48", + "echoMap": {}, + "alarmNo": "1710237868", + "alarmDate": "1769991886812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333154", + "createdBy": null, + "createdTime": "2026-02-02 08:24:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:03", + "echoMap": {}, + "alarmNo": "1710237869", + "alarmDate": "1769991891023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113518734300448", + "createdBy": null, + "createdTime": "2026-02-02 08:34:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:20", + "echoMap": {}, + "alarmNo": "1710237870", + "alarmDate": "1769992451347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113518734300455", + "createdBy": null, + "createdTime": "2026-02-02 08:34:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:06", + "echoMap": {}, + "alarmNo": "1710237871", + "alarmDate": "1769992452202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113527324234834", + "createdBy": null, + "createdTime": "2026-02-02 08:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:34:55", + "echoMap": {}, + "alarmNo": "1710237872", + "alarmDate": "1769992494485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113527324234971", + "createdBy": null, + "createdTime": "2026-02-02 08:35:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:42", + "echoMap": {}, + "alarmNo": "1710237873", + "alarmDate": "1769992505440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113531619202085", + "createdBy": null, + "createdTime": "2026-02-02 08:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:11", + "echoMap": {}, + "alarmNo": "1710237874", + "alarmDate": "1769993051456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113531619202311", + "createdBy": null, + "createdTime": "2026-02-02 08:44:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:44", + "echoMap": {}, + "alarmNo": "1710237875", + "alarmDate": "1769993071613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169395", + "createdBy": null, + "createdTime": "2026-02-02 08:44:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:45", + "echoMap": {}, + "alarmNo": "1710237876", + "alarmDate": "1769993081968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169421", + "createdBy": null, + "createdTime": "2026-02-02 08:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:45", + "echoMap": {}, + "alarmNo": "1710237877", + "alarmDate": "1769993083866", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169491", + "createdBy": null, + "createdTime": "2026-02-02 08:44:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:51", + "echoMap": {}, + "alarmNo": "1710237878", + "alarmDate": "1769993089893", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169627", + "createdBy": null, + "createdTime": "2026-02-02 08:45:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:43", + "echoMap": {}, + "alarmNo": "1710237879", + "alarmDate": "1769993101681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113540209136795", + "createdBy": null, + "createdTime": "2026-02-02 08:54:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:16", + "echoMap": {}, + "alarmNo": "1710237880", + "alarmDate": "1769993651745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113544504104055", + "createdBy": null, + "createdTime": "2026-02-02 08:54:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:35", + "echoMap": {}, + "alarmNo": "1710237881", + "alarmDate": "1769993673913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113544504104095", + "createdBy": null, + "createdTime": "2026-02-02 08:54:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:38", + "echoMap": {}, + "alarmNo": "1710237882", + "alarmDate": "1769993676935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113544504104292", + "createdBy": null, + "createdTime": "2026-02-02 08:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:55", + "echoMap": {}, + "alarmNo": "1710237883", + "alarmDate": "1769993693712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113548799071240", + "createdBy": null, + "createdTime": "2026-02-02 08:54:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:08", + "echoMap": {}, + "alarmNo": "1710237884", + "alarmDate": "1769993697360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113561683973339", + "createdBy": null, + "createdTime": "2026-02-02 09:14:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:22", + "echoMap": {}, + "alarmNo": "1710237885", + "alarmDate": "1769994860580", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113561683973366", + "createdBy": null, + "createdTime": "2026-02-02 09:14:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:34", + "echoMap": {}, + "alarmNo": "1710237886", + "alarmDate": "1769994862423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113561683973421", + "createdBy": null, + "createdTime": "2026-02-02 09:14:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:28", + "echoMap": {}, + "alarmNo": "1710237887", + "alarmDate": "1769994866744", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113565978940434", + "createdBy": null, + "createdTime": "2026-02-02 09:14:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:36", + "echoMap": {}, + "alarmNo": "1710237888", + "alarmDate": "1769994876367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060111", + "deviceName": "[336](10)同济4#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113570273908097", + "createdBy": null, + "createdTime": "2026-02-02 09:24:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:30", + "echoMap": {}, + "alarmNo": "1710237889", + "alarmDate": "1769995468762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113574568875089", + "createdBy": null, + "createdTime": "2026-02-02 09:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:42", + "echoMap": {}, + "alarmNo": "1710237890", + "alarmDate": "1769995480696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113574568875322", + "createdBy": null, + "createdTime": "2026-02-02 09:25:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:01", + "echoMap": {}, + "alarmNo": "1710237891", + "alarmDate": "1769995499621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113578863842588", + "createdBy": null, + "createdTime": "2026-02-02 09:34:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:17", + "echoMap": {}, + "alarmNo": "1710237892", + "alarmDate": "1769996055870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809874", + "createdBy": null, + "createdTime": "2026-02-02 09:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:07", + "echoMap": {}, + "alarmNo": "1710237893", + "alarmDate": "1769996094944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809880", + "createdBy": null, + "createdTime": "2026-02-02 09:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:56", + "echoMap": {}, + "alarmNo": "1710237894", + "alarmDate": "1769996095278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809896", + "createdBy": null, + "createdTime": "2026-02-02 09:34:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:57", + "echoMap": {}, + "alarmNo": "1710237895", + "alarmDate": "1769996096300", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809958", + "createdBy": null, + "createdTime": "2026-02-02 09:35:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:18", + "echoMap": {}, + "alarmNo": "1710237896", + "alarmDate": "1769996101048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113596043711603", + "createdBy": null, + "createdTime": "2026-02-02 09:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:09", + "echoMap": {}, + "alarmNo": "1710237897", + "alarmDate": "1769996708414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113596043711764", + "createdBy": null, + "createdTime": "2026-02-02 09:54:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:33", + "echoMap": {}, + "alarmNo": "1710237898", + "alarmDate": "1769997250941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113596043711846", + "createdBy": null, + "createdTime": "2026-02-02 09:54:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:20", + "echoMap": {}, + "alarmNo": "1710237899", + "alarmDate": "1769997258521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113600338678838", + "createdBy": null, + "createdTime": "2026-02-02 09:54:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:47", + "echoMap": {}, + "alarmNo": "1710237900", + "alarmDate": "1769997268397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113600338679061", + "createdBy": null, + "createdTime": "2026-02-02 09:54:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:48", + "echoMap": {}, + "alarmNo": "1710237901", + "alarmDate": "1769997286658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113604633646193", + "createdBy": null, + "createdTime": "2026-02-02 09:55:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:05", + "echoMap": {}, + "alarmNo": "1710237902", + "alarmDate": "1769997305473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113604633646195", + "createdBy": null, + "createdTime": "2026-02-02 09:55:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:06", + "echoMap": {}, + "alarmNo": "1710237903", + "alarmDate": "1769997305514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113604633646391", + "createdBy": null, + "createdTime": "2026-02-02 10:03:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:21", + "echoMap": {}, + "alarmNo": "1710237904", + "alarmDate": "1769997801862", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022060057", + "deviceName": "[303](10)同济1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113608928613376", + "createdBy": null, + "createdTime": "2026-02-02 10:04:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:22", + "echoMap": {}, + "alarmNo": "1710237905", + "alarmDate": "1769997860783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113608928613469", + "createdBy": null, + "createdTime": "2026-02-02 10:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:23", + "echoMap": {}, + "alarmNo": "1710237906", + "alarmDate": "1769997869716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113608928613475", + "createdBy": null, + "createdTime": "2026-02-02 10:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:31", + "echoMap": {}, + "alarmNo": "1710237907", + "alarmDate": "1769997870006", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113617518548355", + "createdBy": null, + "createdTime": "2026-02-02 10:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:59", + "echoMap": {}, + "alarmNo": "1710237908", + "alarmDate": "1769998498077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113626108482660", + "createdBy": null, + "createdTime": "2026-02-02 10:24:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:49", + "echoMap": {}, + "alarmNo": "1710237909", + "alarmDate": "1769999076233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113626108482820", + "createdBy": null, + "createdTime": "2026-02-02 10:24:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:52", + "echoMap": {}, + "alarmNo": "1710237910", + "alarmDate": "1769999090534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113626108482924", + "createdBy": null, + "createdTime": "2026-02-02 10:25:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:00", + "echoMap": {}, + "alarmNo": "1710237911", + "alarmDate": "1769999099538", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403449915", + "createdBy": null, + "createdTime": "2026-02-02 10:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:08", + "echoMap": {}, + "alarmNo": "1710237912", + "alarmDate": "1769999106664", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403450007", + "createdBy": null, + "createdTime": "2026-02-02 10:27:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:21", + "echoMap": {}, + "alarmNo": "1710237913", + "alarmDate": "1769999242062", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022060057", + "deviceName": "[303](10)同济1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403450128", + "createdBy": null, + "createdTime": "2026-02-02 10:34:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:16", + "echoMap": {}, + "alarmNo": "1710237914", + "alarmDate": "1769999654857", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403450269", + "createdBy": null, + "createdTime": "2026-02-02 10:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:28", + "echoMap": {}, + "alarmNo": "1710237915", + "alarmDate": "1769999666686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113643288351771", + "createdBy": null, + "createdTime": "2026-02-02 10:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:31", + "echoMap": {}, + "alarmNo": "1710237916", + "alarmDate": "1770000269920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113643288351949", + "createdBy": null, + "createdTime": "2026-02-02 10:44:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:29", + "echoMap": {}, + "alarmNo": "1710237917", + "alarmDate": "1770000285374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113643288351995", + "createdBy": null, + "createdTime": "2026-02-02 10:44:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:50", + "echoMap": {}, + "alarmNo": "1710237918", + "alarmDate": "1770000288788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113647583319051", + "createdBy": null, + "createdTime": "2026-02-02 10:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:25", + "echoMap": {}, + "alarmNo": "1710237919", + "alarmDate": "1770000301002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113651878286551", + "createdBy": null, + "createdTime": "2026-02-02 10:54:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:54:46", + "echoMap": {}, + "alarmNo": "1710237920", + "alarmDate": "1770000885470", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113660468220962", + "createdBy": null, + "createdTime": "2026-02-02 11:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:31", + "echoMap": {}, + "alarmNo": "1710237921", + "alarmDate": "1770001469613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113660468221050", + "createdBy": null, + "createdTime": "2026-02-02 11:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:51", + "echoMap": {}, + "alarmNo": "1710237922", + "alarmDate": "1770001477273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113660468221271", + "createdBy": null, + "createdTime": "2026-02-02 11:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:56", + "echoMap": {}, + "alarmNo": "1710237923", + "alarmDate": "1770001496397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113669058155676", + "createdBy": null, + "createdTime": "2026-02-02 11:14:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:14:42", + "echoMap": {}, + "alarmNo": "1710237924", + "alarmDate": "1770002080576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113669058155915", + "createdBy": null, + "createdTime": "2026-02-02 11:15:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:08", + "echoMap": {}, + "alarmNo": "1710237925", + "alarmDate": "1770002100111", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060040", + "deviceName": "[408](10)同济3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113673353122848", + "createdBy": null, + "createdTime": "2026-02-02 11:15:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:06", + "echoMap": {}, + "alarmNo": "1710237926", + "alarmDate": "1770002104758", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113673353123183", + "createdBy": null, + "createdTime": "2026-02-02 11:24:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:23", + "echoMap": {}, + "alarmNo": "1710237927", + "alarmDate": "1770002662258", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113677648090509", + "createdBy": null, + "createdTime": "2026-02-02 11:25:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:03", + "echoMap": {}, + "alarmNo": "1710237928", + "alarmDate": "1770002701945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113681943057468", + "createdBy": null, + "createdTime": "2026-02-02 11:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:02", + "echoMap": {}, + "alarmNo": "1710237929", + "alarmDate": "1770002708462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113681943057806", + "createdBy": null, + "createdTime": "2026-02-02 11:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:28", + "echoMap": {}, + "alarmNo": "1710237930", + "alarmDate": "1770003266521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113686238024816", + "createdBy": null, + "createdTime": "2026-02-02 11:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:40", + "echoMap": {}, + "alarmNo": "1710237931", + "alarmDate": "1770003278619", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113690532992231", + "createdBy": null, + "createdTime": "2026-02-02 11:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:54:46", + "echoMap": {}, + "alarmNo": "1710237932", + "alarmDate": "1770003851329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959312", + "createdBy": null, + "createdTime": "2026-02-02 11:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:31", + "echoMap": {}, + "alarmNo": "1710237933", + "alarmDate": "1770003870262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959409", + "createdBy": null, + "createdTime": "2026-02-02 11:44:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:40", + "echoMap": {}, + "alarmNo": "1710237934", + "alarmDate": "1770003878517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959410", + "createdBy": null, + "createdTime": "2026-02-02 11:44:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:40", + "echoMap": {}, + "alarmNo": "1710237935", + "alarmDate": "1770003878571", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959442", + "createdBy": null, + "createdTime": "2026-02-02 11:44:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:02", + "echoMap": {}, + "alarmNo": "1710237936", + "alarmDate": "1770003880977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861222", + "createdBy": null, + "createdTime": "2026-02-02 11:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:04", + "echoMap": {}, + "alarmNo": "1710237937", + "alarmDate": "1770004502955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861290", + "createdBy": null, + "createdTime": "2026-02-02 11:55:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:22", + "echoMap": {}, + "alarmNo": "1710237938", + "alarmDate": "1770004508780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861306", + "createdBy": null, + "createdTime": "2026-02-02 11:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:11", + "echoMap": {}, + "alarmNo": "1710237939", + "alarmDate": "1770004510307", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861497", + "createdBy": null, + "createdTime": "2026-02-02 12:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:17", + "echoMap": {}, + "alarmNo": "1710237940", + "alarmDate": "1770005056410", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861523", + "createdBy": null, + "createdTime": "2026-02-02 12:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:19", + "echoMap": {}, + "alarmNo": "1710237941", + "alarmDate": "1770005058129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113712007828488", + "createdBy": null, + "createdTime": "2026-02-02 12:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:26", + "echoMap": {}, + "alarmNo": "1710237942", + "alarmDate": "1770005065404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113712007828786", + "createdBy": null, + "createdTime": "2026-02-02 12:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:04", + "echoMap": {}, + "alarmNo": "1710237943", + "alarmDate": "1770005091894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302795871", + "createdBy": null, + "createdTime": "2026-02-02 12:05:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:07", + "echoMap": {}, + "alarmNo": "1710237944", + "alarmDate": "1770005106160", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302795903", + "createdBy": null, + "createdTime": "2026-02-02 12:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:10", + "echoMap": {}, + "alarmNo": "1710237945", + "alarmDate": "1770005108872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302796059", + "createdBy": null, + "createdTime": "2026-02-02 12:14:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:54:51", + "echoMap": {}, + "alarmNo": "1710237946", + "alarmDate": "1770005651090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302796156", + "createdBy": null, + "createdTime": "2026-02-02 12:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:21", + "echoMap": {}, + "alarmNo": "1710237947", + "alarmDate": "1770005660012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113729187697695", + "createdBy": null, + "createdTime": "2026-02-02 12:24:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:24:28", + "echoMap": {}, + "alarmNo": "1710237948", + "alarmDate": "1770006266611", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113729187697942", + "createdBy": null, + "createdTime": "2026-02-02 12:24:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:24:48", + "echoMap": {}, + "alarmNo": "1710237949", + "alarmDate": "1770006286990", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113737777632310", + "createdBy": null, + "createdTime": "2026-02-02 12:34:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:30", + "echoMap": {}, + "alarmNo": "1710237950", + "alarmDate": "1770006869299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113737777632462", + "createdBy": null, + "createdTime": "2026-02-02 12:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:43", + "echoMap": {}, + "alarmNo": "1710237951", + "alarmDate": "1770006881949", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113742072599572", + "createdBy": null, + "createdTime": "2026-02-02 12:35:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:02", + "echoMap": {}, + "alarmNo": "1710237952", + "alarmDate": "1770006900753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113742072599837", + "createdBy": null, + "createdTime": "2026-02-02 12:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:42", + "echoMap": {}, + "alarmNo": "1710237953", + "alarmDate": "1770007450610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113754957501441", + "createdBy": null, + "createdTime": "2026-02-02 12:54:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:54:26", + "echoMap": {}, + "alarmNo": "1710237954", + "alarmDate": "1770008064858", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252468839", + "createdBy": null, + "createdTime": "2026-02-02 12:55:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:32", + "echoMap": {}, + "alarmNo": "1710237955", + "alarmDate": "1770008109365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252468854", + "createdBy": null, + "createdTime": "2026-02-02 12:55:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:12", + "echoMap": {}, + "alarmNo": "1710237956", + "alarmDate": "1770008110523", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252469071", + "createdBy": null, + "createdTime": "2026-02-02 13:04:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:18", + "echoMap": {}, + "alarmNo": "1710237957", + "alarmDate": "1770008656693", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252469174", + "createdBy": null, + "createdTime": "2026-02-02 13:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:26", + "echoMap": {}, + "alarmNo": "1710237958", + "alarmDate": "1770008665092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113763547436207", + "createdBy": null, + "createdTime": "2026-02-02 13:04:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:41", + "echoMap": {}, + "alarmNo": "1710237959", + "alarmDate": "1770008680139", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113763547436336", + "createdBy": null, + "createdTime": "2026-02-02 13:04:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:52", + "echoMap": {}, + "alarmNo": "1710237960", + "alarmDate": "1770008690467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113772137370695", + "createdBy": null, + "createdTime": "2026-02-02 13:14:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:31", + "echoMap": {}, + "alarmNo": "1710237961", + "alarmDate": "1770009271460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060113", + "deviceName": "[329](10)同济4#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113772137370873", + "createdBy": null, + "createdTime": "2026-02-02 13:14:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:47", + "echoMap": {}, + "alarmNo": "1710237962", + "alarmDate": "1770009286037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113772137371001", + "createdBy": null, + "createdTime": "2026-02-02 13:14:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:57", + "echoMap": {}, + "alarmNo": "1710237963", + "alarmDate": "1770009296437", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113780727305459", + "createdBy": null, + "createdTime": "2026-02-02 13:24:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:44", + "echoMap": {}, + "alarmNo": "1710237964", + "alarmDate": "1770009883201", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113785022272640", + "createdBy": null, + "createdTime": "2026-02-02 13:25:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:07", + "echoMap": {}, + "alarmNo": "1710237965", + "alarmDate": "1770009905900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113785022272674", + "createdBy": null, + "createdTime": "2026-02-02 13:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:09", + "echoMap": {}, + "alarmNo": "1710237966", + "alarmDate": "1770009908346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113789317239812", + "createdBy": null, + "createdTime": "2026-02-02 13:34:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:19", + "echoMap": {}, + "alarmNo": "1710237967", + "alarmDate": "1770010458117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113789317239847", + "createdBy": null, + "createdTime": "2026-02-02 13:34:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:22", + "echoMap": {}, + "alarmNo": "1710237968", + "alarmDate": "1770010460607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113789317240096", + "createdBy": null, + "createdTime": "2026-02-02 13:34:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:42", + "echoMap": {}, + "alarmNo": "1710237969", + "alarmDate": "1770010481201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113797907174642", + "createdBy": null, + "createdTime": "2026-02-02 13:44:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:35", + "echoMap": {}, + "alarmNo": "1710237970", + "alarmDate": "1770011074289", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113797907174756", + "createdBy": null, + "createdTime": "2026-02-02 13:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:51", + "echoMap": {}, + "alarmNo": "1710237971", + "alarmDate": "1770011084286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060115", + "deviceName": "[335](10)同济4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113802202141942", + "createdBy": null, + "createdTime": "2026-02-02 13:45:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:10", + "echoMap": {}, + "alarmNo": "1710237972", + "alarmDate": "1770011108821", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113802202142097", + "createdBy": null, + "createdTime": "2026-02-02 13:54:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:10", + "echoMap": {}, + "alarmNo": "1710237973", + "alarmDate": "1770011650426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060029", + "deviceName": "[318](10)同济2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113806497108999", + "createdBy": null, + "createdTime": "2026-02-02 13:54:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:17", + "echoMap": {}, + "alarmNo": "1710237974", + "alarmDate": "1770011655932", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113806497109342", + "createdBy": null, + "createdTime": "2026-02-02 13:54:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:15", + "echoMap": {}, + "alarmNo": "1710237975", + "alarmDate": "1770011683782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113810792076479", + "createdBy": null, + "createdTime": "2026-02-02 13:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:04", + "echoMap": {}, + "alarmNo": "1710237976", + "alarmDate": "1770011702792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113810792076550", + "createdBy": null, + "createdTime": "2026-02-02 13:55:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:09", + "echoMap": {}, + "alarmNo": "1710237977", + "alarmDate": "1770011708166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113810792076753", + "createdBy": null, + "createdTime": "2026-02-02 14:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:17", + "echoMap": {}, + "alarmNo": "1710237978", + "alarmDate": "1770012255945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113815087043662", + "createdBy": null, + "createdTime": "2026-02-02 14:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:24", + "echoMap": {}, + "alarmNo": "1710237979", + "alarmDate": "1770012263437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113815087043699", + "createdBy": null, + "createdTime": "2026-02-02 14:04:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:17", + "echoMap": {}, + "alarmNo": "1710237980", + "alarmDate": "1770012267062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113815087043743", + "createdBy": null, + "createdTime": "2026-02-02 14:04:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:32", + "echoMap": {}, + "alarmNo": "1710237981", + "alarmDate": "1770012270750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113819382010985", + "createdBy": null, + "createdTime": "2026-02-02 14:05:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:09", + "echoMap": {}, + "alarmNo": "1710237982", + "alarmDate": "1770012303126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113819382011222", + "createdBy": null, + "createdTime": "2026-02-02 14:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:14", + "echoMap": {}, + "alarmNo": "1710237983", + "alarmDate": "1770012852962", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113823676978279", + "createdBy": null, + "createdTime": "2026-02-02 14:14:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:44", + "echoMap": {}, + "alarmNo": "1710237984", + "alarmDate": "1770012869333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113827971945622", + "createdBy": null, + "createdTime": "2026-02-02 14:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:09", + "echoMap": {}, + "alarmNo": "1710237985", + "alarmDate": "1770012909349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113832266912822", + "createdBy": null, + "createdTime": "2026-02-02 14:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:29", + "echoMap": {}, + "alarmNo": "1710237986", + "alarmDate": "1770013468366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113832266913163", + "createdBy": null, + "createdTime": "2026-02-02 14:24:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:59", + "echoMap": {}, + "alarmNo": "1710237987", + "alarmDate": "1770013497627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880089", + "createdBy": null, + "createdTime": "2026-02-02 14:25:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:03", + "echoMap": {}, + "alarmNo": "1710237988", + "alarmDate": "1770013501938", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880174", + "createdBy": null, + "createdTime": "2026-02-02 14:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:11", + "echoMap": {}, + "alarmNo": "1710237989", + "alarmDate": "1770013509540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880185", + "createdBy": null, + "createdTime": "2026-02-02 14:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:10", + "echoMap": {}, + "alarmNo": "1710237990", + "alarmDate": "1770013510016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880418", + "createdBy": null, + "createdTime": "2026-02-02 14:34:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:22", + "echoMap": {}, + "alarmNo": "1710237991", + "alarmDate": "1770014060577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113840856847533", + "createdBy": null, + "createdTime": "2026-02-02 14:34:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "alarmNo": "1710237992", + "alarmDate": "1770014084658", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113840856847619", + "createdBy": null, + "createdTime": "2026-02-02 14:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "alarmNo": "1710237993", + "alarmDate": "1770014093839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113840856847693", + "createdBy": null, + "createdTime": "2026-02-02 14:35:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "alarmNo": "1710237994", + "alarmDate": "1770014100790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113175136916956", + "createdBy": null, + "createdTime": "2026-02-02 01:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:26", + "echoMap": {}, + "alarmNo": "1710237656", + "alarmDate": "1769966486411", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1022" + }, + { + "id": "723113475784627256", + "createdBy": null, + "createdTime": "2026-02-02 07:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:25", + "echoMap": {}, + "alarmNo": "1710237839", + "alarmDate": "1769988984107", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022030007", + "deviceName": "安防箱7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1022" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113840856847693", + "createdBy": null, + "createdTime": "2026-02-02 14:35:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "alarmNo": "1710237994", + "alarmDate": "1770014100790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113840856847619", + "createdBy": null, + "createdTime": "2026-02-02 14:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "alarmNo": "1710237993", + "alarmDate": "1770014093839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113840856847533", + "createdBy": null, + "createdTime": "2026-02-02 14:34:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "alarmNo": "1710237992", + "alarmDate": "1770014084658", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880418", + "createdBy": null, + "createdTime": "2026-02-02 14:34:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:22", + "echoMap": {}, + "alarmNo": "1710237991", + "alarmDate": "1770014060577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880185", + "createdBy": null, + "createdTime": "2026-02-02 14:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:10", + "echoMap": {}, + "alarmNo": "1710237990", + "alarmDate": "1770013510016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880174", + "createdBy": null, + "createdTime": "2026-02-02 14:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:11", + "echoMap": {}, + "alarmNo": "1710237989", + "alarmDate": "1770013509540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113836561880089", + "createdBy": null, + "createdTime": "2026-02-02 14:25:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:25:03", + "echoMap": {}, + "alarmNo": "1710237988", + "alarmDate": "1770013501938", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113832266913163", + "createdBy": null, + "createdTime": "2026-02-02 14:24:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:59", + "echoMap": {}, + "alarmNo": "1710237987", + "alarmDate": "1770013497627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113832266912822", + "createdBy": null, + "createdTime": "2026-02-02 14:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:29", + "echoMap": {}, + "alarmNo": "1710237986", + "alarmDate": "1770013468366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113827971945622", + "createdBy": null, + "createdTime": "2026-02-02 14:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:15:09", + "echoMap": {}, + "alarmNo": "1710237985", + "alarmDate": "1770012909349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113823676978279", + "createdBy": null, + "createdTime": "2026-02-02 14:14:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:44", + "echoMap": {}, + "alarmNo": "1710237984", + "alarmDate": "1770012869333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113819382011222", + "createdBy": null, + "createdTime": "2026-02-02 14:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:14", + "echoMap": {}, + "alarmNo": "1710237983", + "alarmDate": "1770012852962", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113819382010985", + "createdBy": null, + "createdTime": "2026-02-02 14:05:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:09", + "echoMap": {}, + "alarmNo": "1710237982", + "alarmDate": "1770012303126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113815087043743", + "createdBy": null, + "createdTime": "2026-02-02 14:04:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:32", + "echoMap": {}, + "alarmNo": "1710237981", + "alarmDate": "1770012270750", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113815087043699", + "createdBy": null, + "createdTime": "2026-02-02 14:04:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:17", + "echoMap": {}, + "alarmNo": "1710237980", + "alarmDate": "1770012267062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113815087043662", + "createdBy": null, + "createdTime": "2026-02-02 14:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:24", + "echoMap": {}, + "alarmNo": "1710237979", + "alarmDate": "1770012263437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113810792076753", + "createdBy": null, + "createdTime": "2026-02-02 14:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:17", + "echoMap": {}, + "alarmNo": "1710237978", + "alarmDate": "1770012255945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113810792076550", + "createdBy": null, + "createdTime": "2026-02-02 13:55:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:09", + "echoMap": {}, + "alarmNo": "1710237977", + "alarmDate": "1770011708166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113810792076479", + "createdBy": null, + "createdTime": "2026-02-02 13:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:04", + "echoMap": {}, + "alarmNo": "1710237976", + "alarmDate": "1770011702792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113806497109342", + "createdBy": null, + "createdTime": "2026-02-02 13:54:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:15", + "echoMap": {}, + "alarmNo": "1710237975", + "alarmDate": "1770011683782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113806497108999", + "createdBy": null, + "createdTime": "2026-02-02 13:54:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:17", + "echoMap": {}, + "alarmNo": "1710237974", + "alarmDate": "1770011655932", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113802202142097", + "createdBy": null, + "createdTime": "2026-02-02 13:54:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:10", + "echoMap": {}, + "alarmNo": "1710237973", + "alarmDate": "1770011650426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060029", + "deviceName": "[318](10)同济2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113802202141942", + "createdBy": null, + "createdTime": "2026-02-02 13:45:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:45:10", + "echoMap": {}, + "alarmNo": "1710237972", + "alarmDate": "1770011108821", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113797907174756", + "createdBy": null, + "createdTime": "2026-02-02 13:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:51", + "echoMap": {}, + "alarmNo": "1710237971", + "alarmDate": "1770011084286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060115", + "deviceName": "[335](10)同济4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113797907174642", + "createdBy": null, + "createdTime": "2026-02-02 13:44:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:35", + "echoMap": {}, + "alarmNo": "1710237970", + "alarmDate": "1770011074289", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113789317240096", + "createdBy": null, + "createdTime": "2026-02-02 13:34:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:42", + "echoMap": {}, + "alarmNo": "1710237969", + "alarmDate": "1770010481201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113789317239847", + "createdBy": null, + "createdTime": "2026-02-02 13:34:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:22", + "echoMap": {}, + "alarmNo": "1710237968", + "alarmDate": "1770010460607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113789317239812", + "createdBy": null, + "createdTime": "2026-02-02 13:34:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:19", + "echoMap": {}, + "alarmNo": "1710237967", + "alarmDate": "1770010458117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113785022272674", + "createdBy": null, + "createdTime": "2026-02-02 13:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:09", + "echoMap": {}, + "alarmNo": "1710237966", + "alarmDate": "1770009908346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113785022272640", + "createdBy": null, + "createdTime": "2026-02-02 13:25:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:25:07", + "echoMap": {}, + "alarmNo": "1710237965", + "alarmDate": "1770009905900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113780727305459", + "createdBy": null, + "createdTime": "2026-02-02 13:24:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:24:44", + "echoMap": {}, + "alarmNo": "1710237964", + "alarmDate": "1770009883201", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113772137371001", + "createdBy": null, + "createdTime": "2026-02-02 13:14:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:57", + "echoMap": {}, + "alarmNo": "1710237963", + "alarmDate": "1770009296437", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113772137370873", + "createdBy": null, + "createdTime": "2026-02-02 13:14:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:47", + "echoMap": {}, + "alarmNo": "1710237962", + "alarmDate": "1770009286037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113772137370695", + "createdBy": null, + "createdTime": "2026-02-02 13:14:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:31", + "echoMap": {}, + "alarmNo": "1710237961", + "alarmDate": "1770009271460", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060113", + "deviceName": "[329](10)同济4#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113763547436336", + "createdBy": null, + "createdTime": "2026-02-02 13:04:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:52", + "echoMap": {}, + "alarmNo": "1710237960", + "alarmDate": "1770008690467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113763547436207", + "createdBy": null, + "createdTime": "2026-02-02 13:04:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:41", + "echoMap": {}, + "alarmNo": "1710237959", + "alarmDate": "1770008680139", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252469174", + "createdBy": null, + "createdTime": "2026-02-02 13:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:26", + "echoMap": {}, + "alarmNo": "1710237958", + "alarmDate": "1770008665092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252469071", + "createdBy": null, + "createdTime": "2026-02-02 13:04:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:18", + "echoMap": {}, + "alarmNo": "1710237957", + "alarmDate": "1770008656693", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252468854", + "createdBy": null, + "createdTime": "2026-02-02 12:55:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:12", + "echoMap": {}, + "alarmNo": "1710237956", + "alarmDate": "1770008110523", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113759252468839", + "createdBy": null, + "createdTime": "2026-02-02 12:55:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:32", + "echoMap": {}, + "alarmNo": "1710237955", + "alarmDate": "1770008109365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113754957501441", + "createdBy": null, + "createdTime": "2026-02-02 12:54:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:54:26", + "echoMap": {}, + "alarmNo": "1710237954", + "alarmDate": "1770008064858", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113742072599837", + "createdBy": null, + "createdTime": "2026-02-02 12:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:42", + "echoMap": {}, + "alarmNo": "1710237953", + "alarmDate": "1770007450610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113742072599572", + "createdBy": null, + "createdTime": "2026-02-02 12:35:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:02", + "echoMap": {}, + "alarmNo": "1710237952", + "alarmDate": "1770006900753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113737777632462", + "createdBy": null, + "createdTime": "2026-02-02 12:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:43", + "echoMap": {}, + "alarmNo": "1710237951", + "alarmDate": "1770006881949", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113737777632310", + "createdBy": null, + "createdTime": "2026-02-02 12:34:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:30", + "echoMap": {}, + "alarmNo": "1710237950", + "alarmDate": "1770006869299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113729187697942", + "createdBy": null, + "createdTime": "2026-02-02 12:24:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:24:48", + "echoMap": {}, + "alarmNo": "1710237949", + "alarmDate": "1770006286990", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113729187697695", + "createdBy": null, + "createdTime": "2026-02-02 12:24:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:24:28", + "echoMap": {}, + "alarmNo": "1710237948", + "alarmDate": "1770006266611", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302796156", + "createdBy": null, + "createdTime": "2026-02-02 12:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:21", + "echoMap": {}, + "alarmNo": "1710237947", + "alarmDate": "1770005660012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302796059", + "createdBy": null, + "createdTime": "2026-02-02 12:14:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:54:51", + "echoMap": {}, + "alarmNo": "1710237946", + "alarmDate": "1770005651090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302795903", + "createdBy": null, + "createdTime": "2026-02-02 12:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:10", + "echoMap": {}, + "alarmNo": "1710237945", + "alarmDate": "1770005108872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113716302795871", + "createdBy": null, + "createdTime": "2026-02-02 12:05:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:07", + "echoMap": {}, + "alarmNo": "1710237944", + "alarmDate": "1770005106160", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113712007828786", + "createdBy": null, + "createdTime": "2026-02-02 12:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:05:04", + "echoMap": {}, + "alarmNo": "1710237943", + "alarmDate": "1770005091894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113712007828488", + "createdBy": null, + "createdTime": "2026-02-02 12:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:26", + "echoMap": {}, + "alarmNo": "1710237942", + "alarmDate": "1770005065404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861523", + "createdBy": null, + "createdTime": "2026-02-02 12:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:19", + "echoMap": {}, + "alarmNo": "1710237941", + "alarmDate": "1770005058129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861497", + "createdBy": null, + "createdTime": "2026-02-02 12:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:17", + "echoMap": {}, + "alarmNo": "1710237940", + "alarmDate": "1770005056410", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861306", + "createdBy": null, + "createdTime": "2026-02-02 11:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:11", + "echoMap": {}, + "alarmNo": "1710237939", + "alarmDate": "1770004510307", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861290", + "createdBy": null, + "createdTime": "2026-02-02 11:55:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:22", + "echoMap": {}, + "alarmNo": "1710237938", + "alarmDate": "1770004508780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113707712861222", + "createdBy": null, + "createdTime": "2026-02-02 11:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:55:04", + "echoMap": {}, + "alarmNo": "1710237937", + "alarmDate": "1770004502955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959442", + "createdBy": null, + "createdTime": "2026-02-02 11:44:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:35:02", + "echoMap": {}, + "alarmNo": "1710237936", + "alarmDate": "1770003880977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959410", + "createdBy": null, + "createdTime": "2026-02-02 11:44:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:40", + "echoMap": {}, + "alarmNo": "1710237935", + "alarmDate": "1770003878571", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959409", + "createdBy": null, + "createdTime": "2026-02-02 11:44:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:40", + "echoMap": {}, + "alarmNo": "1710237934", + "alarmDate": "1770003878517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113694827959312", + "createdBy": null, + "createdTime": "2026-02-02 11:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:31", + "echoMap": {}, + "alarmNo": "1710237933", + "alarmDate": "1770003870262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113690532992231", + "createdBy": null, + "createdTime": "2026-02-02 11:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:54:46", + "echoMap": {}, + "alarmNo": "1710237932", + "alarmDate": "1770003851329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113686238024816", + "createdBy": null, + "createdTime": "2026-02-02 11:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:40", + "echoMap": {}, + "alarmNo": "1710237931", + "alarmDate": "1770003278619", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113681943057806", + "createdBy": null, + "createdTime": "2026-02-02 11:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:28", + "echoMap": {}, + "alarmNo": "1710237930", + "alarmDate": "1770003266521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113681943057468", + "createdBy": null, + "createdTime": "2026-02-02 11:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:05:02", + "echoMap": {}, + "alarmNo": "1710237929", + "alarmDate": "1770002708462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113677648090509", + "createdBy": null, + "createdTime": "2026-02-02 11:25:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:03", + "echoMap": {}, + "alarmNo": "1710237928", + "alarmDate": "1770002701945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113673353123183", + "createdBy": null, + "createdTime": "2026-02-02 11:24:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:23", + "echoMap": {}, + "alarmNo": "1710237927", + "alarmDate": "1770002662258", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113673353122848", + "createdBy": null, + "createdTime": "2026-02-02 11:15:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:06", + "echoMap": {}, + "alarmNo": "1710237926", + "alarmDate": "1770002104758", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113669058155915", + "createdBy": null, + "createdTime": "2026-02-02 11:15:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:15:08", + "echoMap": {}, + "alarmNo": "1710237925", + "alarmDate": "1770002100111", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060040", + "deviceName": "[408](10)同济3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113669058155676", + "createdBy": null, + "createdTime": "2026-02-02 11:14:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:14:42", + "echoMap": {}, + "alarmNo": "1710237924", + "alarmDate": "1770002080576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113660468221271", + "createdBy": null, + "createdTime": "2026-02-02 11:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:56", + "echoMap": {}, + "alarmNo": "1710237923", + "alarmDate": "1770001496397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113660468221050", + "createdBy": null, + "createdTime": "2026-02-02 11:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:51", + "echoMap": {}, + "alarmNo": "1710237922", + "alarmDate": "1770001477273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113660468220962", + "createdBy": null, + "createdTime": "2026-02-02 11:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:31", + "echoMap": {}, + "alarmNo": "1710237921", + "alarmDate": "1770001469613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113651878286551", + "createdBy": null, + "createdTime": "2026-02-02 10:54:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:54:46", + "echoMap": {}, + "alarmNo": "1710237920", + "alarmDate": "1770000885470", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113647583319051", + "createdBy": null, + "createdTime": "2026-02-02 10:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:25", + "echoMap": {}, + "alarmNo": "1710237919", + "alarmDate": "1770000301002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113643288351995", + "createdBy": null, + "createdTime": "2026-02-02 10:44:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:50", + "echoMap": {}, + "alarmNo": "1710237918", + "alarmDate": "1770000288788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113643288351949", + "createdBy": null, + "createdTime": "2026-02-02 10:44:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:29", + "echoMap": {}, + "alarmNo": "1710237917", + "alarmDate": "1770000285374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113643288351771", + "createdBy": null, + "createdTime": "2026-02-02 10:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:31", + "echoMap": {}, + "alarmNo": "1710237916", + "alarmDate": "1770000269920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403450269", + "createdBy": null, + "createdTime": "2026-02-02 10:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:28", + "echoMap": {}, + "alarmNo": "1710237915", + "alarmDate": "1769999666686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403450128", + "createdBy": null, + "createdTime": "2026-02-02 10:34:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:16", + "echoMap": {}, + "alarmNo": "1710237914", + "alarmDate": "1769999654857", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403450007", + "createdBy": null, + "createdTime": "2026-02-02 10:27:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:21", + "echoMap": {}, + "alarmNo": "1710237913", + "alarmDate": "1769999242062", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022060057", + "deviceName": "[303](10)同济1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113630403449915", + "createdBy": null, + "createdTime": "2026-02-02 10:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:08", + "echoMap": {}, + "alarmNo": "1710237912", + "alarmDate": "1769999106664", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113626108482924", + "createdBy": null, + "createdTime": "2026-02-02 10:25:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:00", + "echoMap": {}, + "alarmNo": "1710237911", + "alarmDate": "1769999099538", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113626108482820", + "createdBy": null, + "createdTime": "2026-02-02 10:24:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:52", + "echoMap": {}, + "alarmNo": "1710237910", + "alarmDate": "1769999090534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113626108482660", + "createdBy": null, + "createdTime": "2026-02-02 10:24:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:49", + "echoMap": {}, + "alarmNo": "1710237909", + "alarmDate": "1769999076233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113617518548355", + "createdBy": null, + "createdTime": "2026-02-02 10:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:59", + "echoMap": {}, + "alarmNo": "1710237908", + "alarmDate": "1769998498077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113608928613475", + "createdBy": null, + "createdTime": "2026-02-02 10:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:31", + "echoMap": {}, + "alarmNo": "1710237907", + "alarmDate": "1769997870006", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113608928613469", + "createdBy": null, + "createdTime": "2026-02-02 10:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:23", + "echoMap": {}, + "alarmNo": "1710237906", + "alarmDate": "1769997869716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113608928613376", + "createdBy": null, + "createdTime": "2026-02-02 10:04:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:22", + "echoMap": {}, + "alarmNo": "1710237905", + "alarmDate": "1769997860783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113604633646391", + "createdBy": null, + "createdTime": "2026-02-02 10:03:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:21", + "echoMap": {}, + "alarmNo": "1710237904", + "alarmDate": "1769997801862", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022060057", + "deviceName": "[303](10)同济1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113604633646195", + "createdBy": null, + "createdTime": "2026-02-02 09:55:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:06", + "echoMap": {}, + "alarmNo": "1710237903", + "alarmDate": "1769997305514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113604633646193", + "createdBy": null, + "createdTime": "2026-02-02 09:55:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:55:05", + "echoMap": {}, + "alarmNo": "1710237902", + "alarmDate": "1769997305473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113600338679061", + "createdBy": null, + "createdTime": "2026-02-02 09:54:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:48", + "echoMap": {}, + "alarmNo": "1710237901", + "alarmDate": "1769997286658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113600338678838", + "createdBy": null, + "createdTime": "2026-02-02 09:54:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:47", + "echoMap": {}, + "alarmNo": "1710237900", + "alarmDate": "1769997268397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113596043711846", + "createdBy": null, + "createdTime": "2026-02-02 09:54:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:20", + "echoMap": {}, + "alarmNo": "1710237899", + "alarmDate": "1769997258521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113596043711764", + "createdBy": null, + "createdTime": "2026-02-02 09:54:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:44:33", + "echoMap": {}, + "alarmNo": "1710237898", + "alarmDate": "1769997250941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113596043711603", + "createdBy": null, + "createdTime": "2026-02-02 09:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:09", + "echoMap": {}, + "alarmNo": "1710237897", + "alarmDate": "1769996708414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809958", + "createdBy": null, + "createdTime": "2026-02-02 09:35:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:18", + "echoMap": {}, + "alarmNo": "1710237896", + "alarmDate": "1769996101048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809896", + "createdBy": null, + "createdTime": "2026-02-02 09:34:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:57", + "echoMap": {}, + "alarmNo": "1710237895", + "alarmDate": "1769996096300", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809880", + "createdBy": null, + "createdTime": "2026-02-02 09:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:56", + "echoMap": {}, + "alarmNo": "1710237894", + "alarmDate": "1769996095278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113583158809874", + "createdBy": null, + "createdTime": "2026-02-02 09:34:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:35:07", + "echoMap": {}, + "alarmNo": "1710237893", + "alarmDate": "1769996094944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113578863842588", + "createdBy": null, + "createdTime": "2026-02-02 09:34:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:17", + "echoMap": {}, + "alarmNo": "1710237892", + "alarmDate": "1769996055870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113574568875322", + "createdBy": null, + "createdTime": "2026-02-02 09:25:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:25:01", + "echoMap": {}, + "alarmNo": "1710237891", + "alarmDate": "1769995499621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113574568875089", + "createdBy": null, + "createdTime": "2026-02-02 09:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:42", + "echoMap": {}, + "alarmNo": "1710237890", + "alarmDate": "1769995480696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113570273908097", + "createdBy": null, + "createdTime": "2026-02-02 09:24:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:30", + "echoMap": {}, + "alarmNo": "1710237889", + "alarmDate": "1769995468762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113565978940434", + "createdBy": null, + "createdTime": "2026-02-02 09:14:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:36", + "echoMap": {}, + "alarmNo": "1710237888", + "alarmDate": "1769994876367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060111", + "deviceName": "[336](10)同济4#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113561683973421", + "createdBy": null, + "createdTime": "2026-02-02 09:14:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:28", + "echoMap": {}, + "alarmNo": "1710237887", + "alarmDate": "1769994866744", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113561683973366", + "createdBy": null, + "createdTime": "2026-02-02 09:14:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:34", + "echoMap": {}, + "alarmNo": "1710237886", + "alarmDate": "1769994862423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113561683973339", + "createdBy": null, + "createdTime": "2026-02-02 09:14:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:22", + "echoMap": {}, + "alarmNo": "1710237885", + "alarmDate": "1769994860580", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113548799071240", + "createdBy": null, + "createdTime": "2026-02-02 08:54:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:45:08", + "echoMap": {}, + "alarmNo": "1710237884", + "alarmDate": "1769993697360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113544504104292", + "createdBy": null, + "createdTime": "2026-02-02 08:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:55", + "echoMap": {}, + "alarmNo": "1710237883", + "alarmDate": "1769993693712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113544504104095", + "createdBy": null, + "createdTime": "2026-02-02 08:54:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:38", + "echoMap": {}, + "alarmNo": "1710237882", + "alarmDate": "1769993676935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113544504104055", + "createdBy": null, + "createdTime": "2026-02-02 08:54:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:35", + "echoMap": {}, + "alarmNo": "1710237881", + "alarmDate": "1769993673913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113540209136795", + "createdBy": null, + "createdTime": "2026-02-02 08:54:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:16", + "echoMap": {}, + "alarmNo": "1710237880", + "alarmDate": "1769993651745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169627", + "createdBy": null, + "createdTime": "2026-02-02 08:45:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:43", + "echoMap": {}, + "alarmNo": "1710237879", + "alarmDate": "1769993101681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169491", + "createdBy": null, + "createdTime": "2026-02-02 08:44:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:51", + "echoMap": {}, + "alarmNo": "1710237878", + "alarmDate": "1769993089893", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169421", + "createdBy": null, + "createdTime": "2026-02-02 08:44:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:45", + "echoMap": {}, + "alarmNo": "1710237877", + "alarmDate": "1769993083866", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113535914169395", + "createdBy": null, + "createdTime": "2026-02-02 08:44:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:45", + "echoMap": {}, + "alarmNo": "1710237876", + "alarmDate": "1769993081968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113531619202311", + "createdBy": null, + "createdTime": "2026-02-02 08:44:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:44", + "echoMap": {}, + "alarmNo": "1710237875", + "alarmDate": "1769993071613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113531619202085", + "createdBy": null, + "createdTime": "2026-02-02 08:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:11", + "echoMap": {}, + "alarmNo": "1710237874", + "alarmDate": "1769993051456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113527324234971", + "createdBy": null, + "createdTime": "2026-02-02 08:35:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:42", + "echoMap": {}, + "alarmNo": "1710237873", + "alarmDate": "1769992505440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113527324234834", + "createdBy": null, + "createdTime": "2026-02-02 08:34:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:34:55", + "echoMap": {}, + "alarmNo": "1710237872", + "alarmDate": "1769992494485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113518734300455", + "createdBy": null, + "createdTime": "2026-02-02 08:34:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:35:06", + "echoMap": {}, + "alarmNo": "1710237871", + "alarmDate": "1769992452202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113518734300448", + "createdBy": null, + "createdTime": "2026-02-02 08:34:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:20", + "echoMap": {}, + "alarmNo": "1710237870", + "alarmDate": "1769992451347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333154", + "createdBy": null, + "createdTime": "2026-02-02 08:24:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:25:03", + "echoMap": {}, + "alarmNo": "1710237869", + "alarmDate": "1769991891023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333104", + "createdBy": null, + "createdTime": "2026-02-02 08:24:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:48", + "echoMap": {}, + "alarmNo": "1710237868", + "alarmDate": "1769991886812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333094", + "createdBy": null, + "createdTime": "2026-02-02 08:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:47", + "echoMap": {}, + "alarmNo": "1710237867", + "alarmDate": "1769991886225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439333093", + "createdBy": null, + "createdTime": "2026-02-02 08:24:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:59", + "echoMap": {}, + "alarmNo": "1710237866", + "alarmDate": "1769991886144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439332893", + "createdBy": null, + "createdTime": "2026-02-02 08:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:28", + "echoMap": {}, + "alarmNo": "1710237865", + "alarmDate": "1769991867657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113514439332871", + "createdBy": null, + "createdTime": "2026-02-02 08:24:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:32", + "echoMap": {}, + "alarmNo": "1710237864", + "alarmDate": "1769991865894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365905", + "createdBy": null, + "createdTime": "2026-02-02 08:24:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:20", + "echoMap": {}, + "alarmNo": "1710237863", + "alarmDate": "1769991859369", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365820", + "createdBy": null, + "createdTime": "2026-02-02 08:24:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:13", + "echoMap": {}, + "alarmNo": "1710237862", + "alarmDate": "1769991851869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365814", + "createdBy": null, + "createdTime": "2026-02-02 08:24:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:13", + "echoMap": {}, + "alarmNo": "1710237861", + "alarmDate": "1769991851141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113510144365600", + "createdBy": null, + "createdTime": "2026-02-02 08:15:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:06", + "echoMap": {}, + "alarmNo": "1710237860", + "alarmDate": "1769991305049", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398642", + "createdBy": null, + "createdTime": "2026-02-02 08:15:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:34", + "echoMap": {}, + "alarmNo": "1710237859", + "alarmDate": "1769991301911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398592", + "createdBy": null, + "createdTime": "2026-02-02 08:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:15:04", + "echoMap": {}, + "alarmNo": "1710237858", + "alarmDate": "1769991297814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398463", + "createdBy": null, + "createdTime": "2026-02-02 08:14:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:52", + "echoMap": {}, + "alarmNo": "1710237857", + "alarmDate": "1769991285857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060054", + "deviceName": "[302](10)同济1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398356", + "createdBy": null, + "createdTime": "2026-02-02 08:14:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:43", + "echoMap": {}, + "alarmNo": "1710237856", + "alarmDate": "1769991276940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113505849398306", + "createdBy": null, + "createdTime": "2026-02-02 08:14:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:45", + "echoMap": {}, + "alarmNo": "1710237855", + "alarmDate": "1769991272767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113501554431220", + "createdBy": null, + "createdTime": "2026-02-02 08:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:18", + "echoMap": {}, + "alarmNo": "1710237854", + "alarmDate": "1769991251748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259464004", + "createdBy": null, + "createdTime": "2026-02-02 08:04:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:59", + "echoMap": {}, + "alarmNo": "1710237853", + "alarmDate": "1769990697888", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259463950", + "createdBy": null, + "createdTime": "2026-02-02 08:04:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:05:06", + "echoMap": {}, + "alarmNo": "1710237852", + "alarmDate": "1769990693632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259463883", + "createdBy": null, + "createdTime": "2026-02-02 08:04:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:24:16", + "echoMap": {}, + "alarmNo": "1710237851", + "alarmDate": "1769990688145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113497259463875", + "createdBy": null, + "createdTime": "2026-02-02 08:04:48", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:49", + "echoMap": {}, + "alarmNo": "1710237850", + "alarmDate": "1769990687627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113492964496574", + "createdBy": null, + "createdTime": "2026-02-02 08:04:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:21", + "echoMap": {}, + "alarmNo": "1710237849", + "alarmDate": "1769990651322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529464", + "createdBy": null, + "createdTime": "2026-02-02 07:55:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:37", + "echoMap": {}, + "alarmNo": "1710237848", + "alarmDate": "1769990104942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529446", + "createdBy": null, + "createdTime": "2026-02-02 07:55:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:36", + "echoMap": {}, + "alarmNo": "1710237847", + "alarmDate": "1769990103398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529374", + "createdBy": null, + "createdTime": "2026-02-02 07:54:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:58", + "echoMap": {}, + "alarmNo": "1710237846", + "alarmDate": "1769990096509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529203", + "createdBy": null, + "createdTime": "2026-02-02 07:54:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:43", + "echoMap": {}, + "alarmNo": "1710237845", + "alarmDate": "1769990081866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113488669529110", + "createdBy": null, + "createdTime": "2026-02-02 07:54:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:35", + "echoMap": {}, + "alarmNo": "1710237844", + "alarmDate": "1769990074501", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113480079594869", + "createdBy": null, + "createdTime": "2026-02-02 07:45:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:51", + "echoMap": {}, + "alarmNo": "1710237843", + "alarmDate": "1769989508176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113480079594817", + "createdBy": null, + "createdTime": "2026-02-02 07:45:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:53", + "echoMap": {}, + "alarmNo": "1710237842", + "alarmDate": "1769989503613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113475784627588", + "createdBy": null, + "createdTime": "2026-02-02 07:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:31", + "echoMap": {}, + "alarmNo": "1710237841", + "alarmDate": "1769989470364", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113475784627411", + "createdBy": null, + "createdTime": "2026-02-02 07:44:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:52", + "echoMap": {}, + "alarmNo": "1710237840", + "alarmDate": "1769989455535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113475784627256", + "createdBy": null, + "createdTime": "2026-02-02 07:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:25", + "echoMap": {}, + "alarmNo": "1710237839", + "alarmDate": "1769988984107", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022030007", + "deviceName": "安防箱7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1022" + }, + { + "id": "723113471489660014", + "createdBy": null, + "createdTime": "2026-02-02 07:34:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:56", + "echoMap": {}, + "alarmNo": "1710237838", + "alarmDate": "1769988885261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113467194692849", + "createdBy": null, + "createdTime": "2026-02-02 07:34:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:19", + "echoMap": {}, + "alarmNo": "1710237837", + "alarmDate": "1769988857890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113467194692629", + "createdBy": null, + "createdTime": "2026-02-02 07:25:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:11", + "echoMap": {}, + "alarmNo": "1710237836", + "alarmDate": "1769988309996", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113462899725731", + "createdBy": null, + "createdTime": "2026-02-02 07:25:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:25:08", + "echoMap": {}, + "alarmNo": "1710237835", + "alarmDate": "1769988306752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113462899725495", + "createdBy": null, + "createdTime": "2026-02-02 07:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:24:42", + "echoMap": {}, + "alarmNo": "1710237834", + "alarmDate": "1769988281070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113458604758422", + "createdBy": null, + "createdTime": "2026-02-02 07:24:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:24:17", + "echoMap": {}, + "alarmNo": "1710237833", + "alarmDate": "1769988256352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113458604758162", + "createdBy": null, + "createdTime": "2026-02-02 07:15:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:15:04", + "echoMap": {}, + "alarmNo": "1710237832", + "alarmDate": "1769987703120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113458604758091", + "createdBy": null, + "createdTime": "2026-02-02 07:14:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:57", + "echoMap": {}, + "alarmNo": "1710237831", + "alarmDate": "1769987695589", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113454309791036", + "createdBy": null, + "createdTime": "2026-02-02 07:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:41", + "echoMap": {}, + "alarmNo": "1710237830", + "alarmDate": "1769987680354", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113454309790831", + "createdBy": null, + "createdTime": "2026-02-02 07:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:01", + "echoMap": {}, + "alarmNo": "1710237829", + "alarmDate": "1769987660132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823748", + "createdBy": null, + "createdTime": "2026-02-02 07:05:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:44", + "echoMap": {}, + "alarmNo": "1710237828", + "alarmDate": "1769987106612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823631", + "createdBy": null, + "createdTime": "2026-02-02 07:04:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:30", + "echoMap": {}, + "alarmNo": "1710237827", + "alarmDate": "1769987093219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823534", + "createdBy": null, + "createdTime": "2026-02-02 07:04:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:05:01", + "echoMap": {}, + "alarmNo": "1710237826", + "alarmDate": "1769987081888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113450014823435", + "createdBy": null, + "createdTime": "2026-02-02 07:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:37", + "echoMap": {}, + "alarmNo": "1710237825", + "alarmDate": "1769987070403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060116", + "deviceName": "[331](10)同济4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113445719856447", + "createdBy": null, + "createdTime": "2026-02-02 07:04:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:27", + "echoMap": {}, + "alarmNo": "1710237824", + "alarmDate": "1769987066106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113445719856359", + "createdBy": null, + "createdTime": "2026-02-02 07:04:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:29", + "echoMap": {}, + "alarmNo": "1710237823", + "alarmDate": "1769987056959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113445719856153", + "createdBy": null, + "createdTime": "2026-02-02 06:55:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:08", + "echoMap": {}, + "alarmNo": "1710237822", + "alarmDate": "1769986507775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889276", + "createdBy": null, + "createdTime": "2026-02-02 06:55:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:55:02", + "echoMap": {}, + "alarmNo": "1710237821", + "alarmDate": "1769986501260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889244", + "createdBy": null, + "createdTime": "2026-02-02 06:54:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:41", + "echoMap": {}, + "alarmNo": "1710237820", + "alarmDate": "1769986498048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889178", + "createdBy": null, + "createdTime": "2026-02-02 06:54:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:52", + "echoMap": {}, + "alarmNo": "1710237819", + "alarmDate": "1769986491197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889123", + "createdBy": null, + "createdTime": "2026-02-02 06:54:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:58", + "echoMap": {}, + "alarmNo": "1710237818", + "alarmDate": "1769986485663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424889101", + "createdBy": null, + "createdTime": "2026-02-02 06:54:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:24", + "echoMap": {}, + "alarmNo": "1710237817", + "alarmDate": "1769986483457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060111", + "deviceName": "[336](10)同济4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113441424888865", + "createdBy": null, + "createdTime": "2026-02-02 06:54:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:26", + "echoMap": {}, + "alarmNo": "1710237816", + "alarmDate": "1769986459801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113437129921891", + "createdBy": null, + "createdTime": "2026-02-02 06:54:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:27", + "echoMap": {}, + "alarmNo": "1710237815", + "alarmDate": "1769986454561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113437129921652", + "createdBy": null, + "createdTime": "2026-02-02 06:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:45:02", + "echoMap": {}, + "alarmNo": "1710237814", + "alarmDate": "1769985901476", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113432834954557", + "createdBy": null, + "createdTime": "2026-02-02 06:44:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:54", + "echoMap": {}, + "alarmNo": "1710237813", + "alarmDate": "1769985882412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113432834954545", + "createdBy": null, + "createdTime": "2026-02-02 06:44:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:54", + "echoMap": {}, + "alarmNo": "1710237812", + "alarmDate": "1769985881543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113432834954252", + "createdBy": null, + "createdTime": "2026-02-02 06:44:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:22", + "echoMap": {}, + "alarmNo": "1710237811", + "alarmDate": "1769985851275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539987207", + "createdBy": null, + "createdTime": "2026-02-02 06:35:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:31", + "echoMap": {}, + "alarmNo": "1710237810", + "alarmDate": "1769985309322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539987156", + "createdBy": null, + "createdTime": "2026-02-02 06:35:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:35:05", + "echoMap": {}, + "alarmNo": "1710237809", + "alarmDate": "1769985303653", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539986973", + "createdBy": null, + "createdTime": "2026-02-02 06:34:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:59", + "echoMap": {}, + "alarmNo": "1710237808", + "alarmDate": "1769985287152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113428539986950", + "createdBy": null, + "createdTime": "2026-02-02 06:34:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:57", + "echoMap": {}, + "alarmNo": "1710237807", + "alarmDate": "1769985285225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019950", + "createdBy": null, + "createdTime": "2026-02-02 06:34:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:35", + "echoMap": {}, + "alarmNo": "1710237806", + "alarmDate": "1769985274334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019909", + "createdBy": null, + "createdTime": "2026-02-02 06:34:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:32", + "echoMap": {}, + "alarmNo": "1710237805", + "alarmDate": "1769985270644", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019810", + "createdBy": null, + "createdTime": "2026-02-02 06:34:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:35", + "echoMap": {}, + "alarmNo": "1710237804", + "alarmDate": "1769985262069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113424245019733", + "createdBy": null, + "createdTime": "2026-02-02 06:34:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:15", + "echoMap": {}, + "alarmNo": "1710237803", + "alarmDate": "1769985254562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052769", + "createdBy": null, + "createdTime": "2026-02-02 06:25:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:33", + "echoMap": {}, + "alarmNo": "1710237802", + "alarmDate": "1769984708079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052738", + "createdBy": null, + "createdTime": "2026-02-02 06:25:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:06", + "echoMap": {}, + "alarmNo": "1710237801", + "alarmDate": "1769984705331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052661", + "createdBy": null, + "createdTime": "2026-02-02 06:24:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:25:11", + "echoMap": {}, + "alarmNo": "1710237800", + "alarmDate": "1769984698895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113419950052398", + "createdBy": null, + "createdTime": "2026-02-02 06:24:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:55", + "echoMap": {}, + "alarmNo": "1710237799", + "alarmDate": "1769984676075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085597", + "createdBy": null, + "createdTime": "2026-02-02 06:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:47", + "echoMap": {}, + "alarmNo": "1710237798", + "alarmDate": "1769984667904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085529", + "createdBy": null, + "createdTime": "2026-02-02 06:24:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:23", + "echoMap": {}, + "alarmNo": "1710237797", + "alarmDate": "1769984661723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085417", + "createdBy": null, + "createdTime": "2026-02-02 06:24:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:16", + "echoMap": {}, + "alarmNo": "1710237796", + "alarmDate": "1769984651914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085257", + "createdBy": null, + "createdTime": "2026-02-02 06:15:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:15:10", + "echoMap": {}, + "alarmNo": "1710237795", + "alarmDate": "1769984108545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113415655085211", + "createdBy": null, + "createdTime": "2026-02-02 06:15:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:24", + "echoMap": {}, + "alarmNo": "1710237794", + "alarmDate": "1769984104717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360118167", + "createdBy": null, + "createdTime": "2026-02-02 06:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:53", + "echoMap": {}, + "alarmNo": "1710237793", + "alarmDate": "1769984079770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360118093", + "createdBy": null, + "createdTime": "2026-02-02 06:14:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:34", + "echoMap": {}, + "alarmNo": "1710237792", + "alarmDate": "1769984073089", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360118071", + "createdBy": null, + "createdTime": "2026-02-02 06:14:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:45", + "echoMap": {}, + "alarmNo": "1710237791", + "alarmDate": "1769984071623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113411360117888", + "createdBy": null, + "createdTime": "2026-02-02 06:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:17", + "echoMap": {}, + "alarmNo": "1710237790", + "alarmDate": "1769984055549", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150964", + "createdBy": null, + "createdTime": "2026-02-02 06:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:29", + "echoMap": {}, + "alarmNo": "1710237789", + "alarmDate": "1769983508523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150962", + "createdBy": null, + "createdTime": "2026-02-02 06:05:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:21", + "echoMap": {}, + "alarmNo": "1710237788", + "alarmDate": "1769983508442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150789", + "createdBy": null, + "createdTime": "2026-02-02 06:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:53", + "echoMap": {}, + "alarmNo": "1710237787", + "alarmDate": "1769983491932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150699", + "createdBy": null, + "createdTime": "2026-02-02 06:04:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:46", + "echoMap": {}, + "alarmNo": "1710237786", + "alarmDate": "1769983484655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150607", + "createdBy": null, + "createdTime": "2026-02-02 06:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:56", + "echoMap": {}, + "alarmNo": "1710237785", + "alarmDate": "1769983477480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150606", + "createdBy": null, + "createdTime": "2026-02-02 06:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:49", + "echoMap": {}, + "alarmNo": "1710237784", + "alarmDate": "1769983477454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113407065150556", + "createdBy": null, + "createdTime": "2026-02-02 06:04:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:34", + "echoMap": {}, + "alarmNo": "1710237783", + "alarmDate": "1769983472658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183551", + "createdBy": null, + "createdTime": "2026-02-02 06:04:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:18", + "echoMap": {}, + "alarmNo": "1710237782", + "alarmDate": "1769983452385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183542", + "createdBy": null, + "createdTime": "2026-02-02 06:04:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:18", + "echoMap": {}, + "alarmNo": "1710237781", + "alarmDate": "1769983451416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183272", + "createdBy": null, + "createdTime": "2026-02-02 05:54:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:10", + "echoMap": {}, + "alarmNo": "1710237780", + "alarmDate": "1769982898193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113402770183193", + "createdBy": null, + "createdTime": "2026-02-02 05:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:53", + "echoMap": {}, + "alarmNo": "1710237779", + "alarmDate": "1769982892061", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216370", + "createdBy": null, + "createdTime": "2026-02-02 05:54:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:54", + "echoMap": {}, + "alarmNo": "1710237778", + "alarmDate": "1769982882173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216279", + "createdBy": null, + "createdTime": "2026-02-02 05:54:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:46", + "echoMap": {}, + "alarmNo": "1710237777", + "alarmDate": "1769982874192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216253", + "createdBy": null, + "createdTime": "2026-02-02 05:54:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:33", + "echoMap": {}, + "alarmNo": "1710237776", + "alarmDate": "1769982871877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475216095", + "createdBy": null, + "createdTime": "2026-02-02 05:54:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:30", + "echoMap": {}, + "alarmNo": "1710237775", + "alarmDate": "1769982858066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113398475215889", + "createdBy": null, + "createdTime": "2026-02-02 05:45:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:22", + "echoMap": {}, + "alarmNo": "1710237774", + "alarmDate": "1769982310173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113394180248975", + "createdBy": null, + "createdTime": "2026-02-02 05:44:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:59", + "echoMap": {}, + "alarmNo": "1710237773", + "alarmDate": "1769982298360", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113394180248835", + "createdBy": null, + "createdTime": "2026-02-02 05:44:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:06", + "echoMap": {}, + "alarmNo": "1710237772", + "alarmDate": "1769982286974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113394180248809", + "createdBy": null, + "createdTime": "2026-02-02 05:44:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:58", + "echoMap": {}, + "alarmNo": "1710237771", + "alarmDate": "1769982284941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281863", + "createdBy": null, + "createdTime": "2026-02-02 05:44:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:34", + "echoMap": {}, + "alarmNo": "1710237770", + "alarmDate": "1769982262055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281838", + "createdBy": null, + "createdTime": "2026-02-02 05:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:21", + "echoMap": {}, + "alarmNo": "1710237769", + "alarmDate": "1769982260213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281571", + "createdBy": null, + "createdTime": "2026-02-02 05:35:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:33", + "echoMap": {}, + "alarmNo": "1710237768", + "alarmDate": "1769981706802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281439", + "createdBy": null, + "createdTime": "2026-02-02 05:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:35:11", + "echoMap": {}, + "alarmNo": "1710237767", + "alarmDate": "1769981697674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281384", + "createdBy": null, + "createdTime": "2026-02-02 05:34:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:54", + "echoMap": {}, + "alarmNo": "1710237766", + "alarmDate": "1769981692972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113389885281329", + "createdBy": null, + "createdTime": "2026-02-02 05:34:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:50", + "echoMap": {}, + "alarmNo": "1710237765", + "alarmDate": "1769981688782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314440", + "createdBy": null, + "createdTime": "2026-02-02 05:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:54", + "echoMap": {}, + "alarmNo": "1710237764", + "alarmDate": "1769981681624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314341", + "createdBy": null, + "createdTime": "2026-02-02 05:34:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:46", + "echoMap": {}, + "alarmNo": "1710237763", + "alarmDate": "1769981673612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314183", + "createdBy": null, + "createdTime": "2026-02-02 05:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:21", + "echoMap": {}, + "alarmNo": "1710237762", + "alarmDate": "1769981660481", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113385590314076", + "createdBy": null, + "createdTime": "2026-02-02 05:34:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:14:15", + "echoMap": {}, + "alarmNo": "1710237761", + "alarmDate": "1769981650429", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060040", + "deviceName": "[408](10)同济3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295347163", + "createdBy": null, + "createdTime": "2026-02-02 05:25:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:16", + "echoMap": {}, + "alarmNo": "1710237760", + "alarmDate": "1769981103346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295347010", + "createdBy": null, + "createdTime": "2026-02-02 05:24:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:51", + "echoMap": {}, + "alarmNo": "1710237759", + "alarmDate": "1769981089990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295346881", + "createdBy": null, + "createdTime": "2026-02-02 05:24:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:30", + "echoMap": {}, + "alarmNo": "1710237758", + "alarmDate": "1769981079453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295346864", + "createdBy": null, + "createdTime": "2026-02-02 05:24:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:51", + "echoMap": {}, + "alarmNo": "1710237757", + "alarmDate": "1769981078373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113381295346770", + "createdBy": null, + "createdTime": "2026-02-02 05:24:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:31", + "echoMap": {}, + "alarmNo": "1710237756", + "alarmDate": "1769981069789", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113377000379768", + "createdBy": null, + "createdTime": "2026-02-02 05:24:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:27", + "echoMap": {}, + "alarmNo": "1710237755", + "alarmDate": "1769981054434", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113377000379734", + "createdBy": null, + "createdTime": "2026-02-02 05:24:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:35", + "echoMap": {}, + "alarmNo": "1710237754", + "alarmDate": "1769981050897", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060040", + "deviceName": "[408](10)同济3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113377000379564", + "createdBy": null, + "createdTime": "2026-02-02 05:15:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:27", + "echoMap": {}, + "alarmNo": "1710237753", + "alarmDate": "1769980507262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412581", + "createdBy": null, + "createdTime": "2026-02-02 05:14:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:44", + "echoMap": {}, + "alarmNo": "1710237752", + "alarmDate": "1769980482449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060126", + "deviceName": "[213](10)同济3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412514", + "createdBy": null, + "createdTime": "2026-02-02 05:14:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:48", + "echoMap": {}, + "alarmNo": "1710237751", + "alarmDate": "1769980477151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412297", + "createdBy": null, + "createdTime": "2026-02-02 05:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:15:02", + "echoMap": {}, + "alarmNo": "1710237750", + "alarmDate": "1769980459104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412258", + "createdBy": null, + "createdTime": "2026-02-02 05:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:17", + "echoMap": {}, + "alarmNo": "1710237749", + "alarmDate": "1769980456126", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412222", + "createdBy": null, + "createdTime": "2026-02-02 05:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:14", + "echoMap": {}, + "alarmNo": "1710237748", + "alarmDate": "1769980453270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113372705412203", + "createdBy": null, + "createdTime": "2026-02-02 05:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:24", + "echoMap": {}, + "alarmNo": "1710237747", + "alarmDate": "1769980452037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410445216", + "createdBy": null, + "createdTime": "2026-02-02 05:05:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:08", + "echoMap": {}, + "alarmNo": "1710237746", + "alarmDate": "1769979906932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410445166", + "createdBy": null, + "createdTime": "2026-02-02 05:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:03", + "echoMap": {}, + "alarmNo": "1710237745", + "alarmDate": "1769979902166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410444990", + "createdBy": null, + "createdTime": "2026-02-02 05:04:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:05:00", + "echoMap": {}, + "alarmNo": "1710237744", + "alarmDate": "1769979886920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113368410444917", + "createdBy": null, + "createdTime": "2026-02-02 05:04:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:54", + "echoMap": {}, + "alarmNo": "1710237743", + "alarmDate": "1769979880779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115478009", + "createdBy": null, + "createdTime": "2026-02-02 05:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:36", + "echoMap": {}, + "alarmNo": "1710237742", + "alarmDate": "1769979862951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477924", + "createdBy": null, + "createdTime": "2026-02-02 05:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:29", + "echoMap": {}, + "alarmNo": "1710237741", + "alarmDate": "1769979855801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477917", + "createdBy": null, + "createdTime": "2026-02-02 05:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:16", + "echoMap": {}, + "alarmNo": "1710237740", + "alarmDate": "1769979855225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477683", + "createdBy": null, + "createdTime": "2026-02-02 04:55:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:07", + "echoMap": {}, + "alarmNo": "1710237739", + "alarmDate": "1769979306056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477561", + "createdBy": null, + "createdTime": "2026-02-02 04:54:56", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:57", + "echoMap": {}, + "alarmNo": "1710237738", + "alarmDate": "1769979296027", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477515", + "createdBy": null, + "createdTime": "2026-02-02 04:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:05", + "echoMap": {}, + "alarmNo": "1710237737", + "alarmDate": "1769979292552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113364115477514", + "createdBy": null, + "createdTime": "2026-02-02 04:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:55:05", + "echoMap": {}, + "alarmNo": "1710237736", + "alarmDate": "1769979292552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113359820510439", + "createdBy": null, + "createdTime": "2026-02-02 04:54:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:41", + "echoMap": {}, + "alarmNo": "1710237735", + "alarmDate": "1769979268539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060073", + "deviceName": "[342](10)同济5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113359820510438", + "createdBy": null, + "createdTime": "2026-02-02 04:54:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:35", + "echoMap": {}, + "alarmNo": "1710237734", + "alarmDate": "1769979268536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060074", + "deviceName": "[341](10)同济5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113359820510422", + "createdBy": null, + "createdTime": "2026-02-02 04:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:28", + "echoMap": {}, + "alarmNo": "1710237733", + "alarmDate": "1769979267351", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113355525543013", + "createdBy": null, + "createdTime": "2026-02-02 04:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:49", + "echoMap": {}, + "alarmNo": "1710237732", + "alarmDate": "1769978687767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113351230576007", + "createdBy": null, + "createdTime": "2026-02-02 04:44:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:35", + "echoMap": {}, + "alarmNo": "1710237731", + "alarmDate": "1769978674356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113351230575654", + "createdBy": null, + "createdTime": "2026-02-02 04:44:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:45", + "echoMap": {}, + "alarmNo": "1710237730", + "alarmDate": "1769978652524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608887", + "createdBy": null, + "createdTime": "2026-02-02 04:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:43:21", + "echoMap": {}, + "alarmNo": "1710237729", + "alarmDate": "1769978541904", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022060057", + "deviceName": "[303](10)同济1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608759", + "createdBy": null, + "createdTime": "2026-02-02 04:35:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:22", + "echoMap": {}, + "alarmNo": "1710237728", + "alarmDate": "1769978111383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608552", + "createdBy": null, + "createdTime": "2026-02-02 04:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:59", + "echoMap": {}, + "alarmNo": "1710237727", + "alarmDate": "1769978098021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113346935608458", + "createdBy": null, + "createdTime": "2026-02-02 04:34:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:35:04", + "echoMap": {}, + "alarmNo": "1710237726", + "alarmDate": "1769978092366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113342640641283", + "createdBy": null, + "createdTime": "2026-02-02 04:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:28", + "echoMap": {}, + "alarmNo": "1710237725", + "alarmDate": "1769978067436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113342640641166", + "createdBy": null, + "createdTime": "2026-02-02 04:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:21", + "echoMap": {}, + "alarmNo": "1710237724", + "alarmDate": "1769978059870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113338345673831", + "createdBy": null, + "createdTime": "2026-02-02 04:24:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:52", + "echoMap": {}, + "alarmNo": "1710237723", + "alarmDate": "1769977490483", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113334050706840", + "createdBy": null, + "createdTime": "2026-02-02 04:24:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:41", + "echoMap": {}, + "alarmNo": "1710237722", + "alarmDate": "1769977479676", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113329755739680", + "createdBy": null, + "createdTime": "2026-02-02 04:24:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:15", + "echoMap": {}, + "alarmNo": "1710237721", + "alarmDate": "1769977454182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113329755739410", + "createdBy": null, + "createdTime": "2026-02-02 04:15:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:15:07", + "echoMap": {}, + "alarmNo": "1710237720", + "alarmDate": "1769976906008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113329755739225", + "createdBy": null, + "createdTime": "2026-02-02 04:14:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:56", + "echoMap": {}, + "alarmNo": "1710237719", + "alarmDate": "1769976894521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113325460772090", + "createdBy": null, + "createdTime": "2026-02-02 04:14:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:33", + "echoMap": {}, + "alarmNo": "1710237718", + "alarmDate": "1769976871840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113325460771902", + "createdBy": null, + "createdTime": "2026-02-02 04:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:21", + "echoMap": {}, + "alarmNo": "1710237717", + "alarmDate": "1769976860385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113321165804584", + "createdBy": null, + "createdTime": "2026-02-02 04:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:53", + "echoMap": {}, + "alarmNo": "1710237716", + "alarmDate": "1769976291722", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113316870837598", + "createdBy": null, + "createdTime": "2026-02-02 04:04:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:40", + "echoMap": {}, + "alarmNo": "1710237715", + "alarmDate": "1769976279066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113316870837286", + "createdBy": null, + "createdTime": "2026-02-02 04:04:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:21", + "echoMap": {}, + "alarmNo": "1710237714", + "alarmDate": "1769976259882", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113308280902872", + "createdBy": null, + "createdTime": "2026-02-02 03:54:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:34", + "echoMap": {}, + "alarmNo": "1710237713", + "alarmDate": "1769975673452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113308280902685", + "createdBy": null, + "createdTime": "2026-02-02 03:54:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:24", + "echoMap": {}, + "alarmNo": "1710237712", + "alarmDate": "1769975662973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968340", + "createdBy": null, + "createdTime": "2026-02-02 03:44:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:41", + "echoMap": {}, + "alarmNo": "1710237711", + "alarmDate": "1769975080061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968247", + "createdBy": null, + "createdTime": "2026-02-02 03:44:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:36", + "echoMap": {}, + "alarmNo": "1710237710", + "alarmDate": "1769975074600", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968245", + "createdBy": null, + "createdTime": "2026-02-02 03:44:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:35", + "echoMap": {}, + "alarmNo": "1710237709", + "alarmDate": "1769975074596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113299690968073", + "createdBy": null, + "createdTime": "2026-02-02 03:44:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:25", + "echoMap": {}, + "alarmNo": "1710237708", + "alarmDate": "1769975064144", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113295396000953", + "createdBy": null, + "createdTime": "2026-02-02 03:35:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:22", + "echoMap": {}, + "alarmNo": "1710237707", + "alarmDate": "1769974506756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113295396000838", + "createdBy": null, + "createdTime": "2026-02-02 03:34:59", + "updatedBy": null, + "updatedTime": "2026-02-02 03:35:00", + "echoMap": {}, + "alarmNo": "1710237706", + "alarmDate": "1769974499362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113291101033825", + "createdBy": null, + "createdTime": "2026-02-02 03:34:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:45", + "echoMap": {}, + "alarmNo": "1710237705", + "alarmDate": "1769974484064", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511099324", + "createdBy": null, + "createdTime": "2026-02-02 03:24:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:53", + "echoMap": {}, + "alarmNo": "1710237704", + "alarmDate": "1769973891531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511099193", + "createdBy": null, + "createdTime": "2026-02-02 03:24:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:49", + "echoMap": {}, + "alarmNo": "1710237703", + "alarmDate": "1769973883488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511099182", + "createdBy": null, + "createdTime": "2026-02-02 03:24:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:44", + "echoMap": {}, + "alarmNo": "1710237702", + "alarmDate": "1769973883143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113282511098891", + "createdBy": null, + "createdTime": "2026-02-02 03:24:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:31", + "echoMap": {}, + "alarmNo": "1710237701", + "alarmDate": "1769973865353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060114", + "deviceName": "[332](10)同济4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164692", + "createdBy": null, + "createdTime": "2026-02-02 03:14:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:52", + "echoMap": {}, + "alarmNo": "1710237700", + "alarmDate": "1769973291436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164690", + "createdBy": null, + "createdTime": "2026-02-02 03:14:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:52", + "echoMap": {}, + "alarmNo": "1710237699", + "alarmDate": "1769973291278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164659", + "createdBy": null, + "createdTime": "2026-02-02 03:14:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:51", + "echoMap": {}, + "alarmNo": "1710237698", + "alarmDate": "1769973289777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113273921164302", + "createdBy": null, + "createdTime": "2026-02-02 03:14:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:29", + "echoMap": {}, + "alarmNo": "1710237697", + "alarmDate": "1769973267693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113269626197353", + "createdBy": null, + "createdTime": "2026-02-02 03:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:14", + "echoMap": {}, + "alarmNo": "1710237696", + "alarmDate": "1769973253468", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113269626197136", + "createdBy": null, + "createdTime": "2026-02-02 03:05:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:05:07", + "echoMap": {}, + "alarmNo": "1710237695", + "alarmDate": "1769972706323", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113261036262843", + "createdBy": null, + "createdTime": "2026-02-02 03:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:19", + "echoMap": {}, + "alarmNo": "1710237694", + "alarmDate": "1769972657954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113261036262598", + "createdBy": null, + "createdTime": "2026-02-02 02:55:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:11", + "echoMap": {}, + "alarmNo": "1710237693", + "alarmDate": "1769972109866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113261036262474", + "createdBy": null, + "createdTime": "2026-02-02 02:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:55:03", + "echoMap": {}, + "alarmNo": "1710237692", + "alarmDate": "1769972102317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113252446328290", + "createdBy": null, + "createdTime": "2026-02-02 02:54:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:25", + "echoMap": {}, + "alarmNo": "1710237691", + "alarmDate": "1769972063871", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113252446328100", + "createdBy": null, + "createdTime": "2026-02-02 02:54:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:13", + "echoMap": {}, + "alarmNo": "1710237690", + "alarmDate": "1769972052071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151361011", + "createdBy": null, + "createdTime": "2026-02-02 02:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:02", + "echoMap": {}, + "alarmNo": "1710237689", + "alarmDate": "1769971500986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151361001", + "createdBy": null, + "createdTime": "2026-02-02 02:45:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:45:02", + "echoMap": {}, + "alarmNo": "1710237688", + "alarmDate": "1769971500521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151360794", + "createdBy": null, + "createdTime": "2026-02-02 02:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:49", + "echoMap": {}, + "alarmNo": "1710237687", + "alarmDate": "1769971487823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151360597", + "createdBy": null, + "createdTime": "2026-02-02 02:44:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:37", + "echoMap": {}, + "alarmNo": "1710237686", + "alarmDate": "1769971475687", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113248151360538", + "createdBy": null, + "createdTime": "2026-02-02 02:44:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:26", + "echoMap": {}, + "alarmNo": "1710237685", + "alarmDate": "1769971472351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113239561426002", + "createdBy": null, + "createdTime": "2026-02-02 02:34:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:37", + "echoMap": {}, + "alarmNo": "1710237684", + "alarmDate": "1769970875569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113235266459164", + "createdBy": null, + "createdTime": "2026-02-02 02:34:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:31", + "echoMap": {}, + "alarmNo": "1710237683", + "alarmDate": "1769970869934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113230971491621", + "createdBy": null, + "createdTime": "2026-02-02 02:24:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:51", + "echoMap": {}, + "alarmNo": "1710237682", + "alarmDate": "1769970289768", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524481", + "createdBy": null, + "createdTime": "2026-02-02 02:24:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:25", + "echoMap": {}, + "alarmNo": "1710237681", + "alarmDate": "1769970263718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524480", + "createdBy": null, + "createdTime": "2026-02-02 02:24:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:24", + "echoMap": {}, + "alarmNo": "1710237680", + "alarmDate": "1769970263717", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524428", + "createdBy": null, + "createdTime": "2026-02-02 02:24:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:21", + "echoMap": {}, + "alarmNo": "1710237679", + "alarmDate": "1769970260159", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524345", + "createdBy": null, + "createdTime": "2026-02-02 02:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:16", + "echoMap": {}, + "alarmNo": "1710237678", + "alarmDate": "1769970255048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524152", + "createdBy": null, + "createdTime": "2026-02-02 02:15:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:12", + "echoMap": {}, + "alarmNo": "1710237677", + "alarmDate": "1769969710346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113226676524103", + "createdBy": null, + "createdTime": "2026-02-02 02:15:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:08", + "echoMap": {}, + "alarmNo": "1710237676", + "alarmDate": "1769969707296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113222381557145", + "createdBy": null, + "createdTime": "2026-02-02 02:14:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:59", + "echoMap": {}, + "alarmNo": "1710237675", + "alarmDate": "1769969698404", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113222381557030", + "createdBy": null, + "createdTime": "2026-02-02 02:14:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:15:03", + "echoMap": {}, + "alarmNo": "1710237674", + "alarmDate": "1769969691364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060064", + "deviceName": "[309](10)同济1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113213791622474", + "createdBy": null, + "createdTime": "2026-02-02 02:04:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:57", + "echoMap": {}, + "alarmNo": "1710237673", + "alarmDate": "1769969095598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113213791622387", + "createdBy": null, + "createdTime": "2026-02-02 02:04:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:51", + "echoMap": {}, + "alarmNo": "1710237672", + "alarmDate": "1769969090363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113209496655200", + "createdBy": null, + "createdTime": "2026-02-02 02:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:23", + "echoMap": {}, + "alarmNo": "1710237671", + "alarmDate": "1769969062436", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113205201687578", + "createdBy": null, + "createdTime": "2026-02-02 01:54:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:39", + "echoMap": {}, + "alarmNo": "1710237670", + "alarmDate": "1769968476871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113200906720807", + "createdBy": null, + "createdTime": "2026-02-02 01:54:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:35", + "echoMap": {}, + "alarmNo": "1710237669", + "alarmDate": "1769968474059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113200906720740", + "createdBy": null, + "createdTime": "2026-02-02 01:54:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:30", + "echoMap": {}, + "alarmNo": "1710237668", + "alarmDate": "1769968469543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113200906720695", + "createdBy": null, + "createdTime": "2026-02-02 01:54:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:29", + "echoMap": {}, + "alarmNo": "1710237667", + "alarmDate": "1769968467536", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316786159", + "createdBy": null, + "createdTime": "2026-02-02 01:44:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:20", + "echoMap": {}, + "alarmNo": "1710237666", + "alarmDate": "1769967863525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060063", + "deviceName": "[306](10)同济1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316786158", + "createdBy": null, + "createdTime": "2026-02-02 01:44:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:24", + "echoMap": {}, + "alarmNo": "1710237665", + "alarmDate": "1769967863521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316786053", + "createdBy": null, + "createdTime": "2026-02-02 01:44:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:18", + "echoMap": {}, + "alarmNo": "1710237664", + "alarmDate": "1769967856770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113192316785812", + "createdBy": null, + "createdTime": "2026-02-02 01:35:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:35:09", + "echoMap": {}, + "alarmNo": "1710237663", + "alarmDate": "1769967308162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113188021818675", + "createdBy": null, + "createdTime": "2026-02-02 01:34:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:49", + "echoMap": {}, + "alarmNo": "1710237662", + "alarmDate": "1769967287814", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884340", + "createdBy": null, + "createdTime": "2026-02-02 01:24:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:54", + "echoMap": {}, + "alarmNo": "1710237661", + "alarmDate": "1769966692706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884282", + "createdBy": null, + "createdTime": "2026-02-02 01:24:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:50", + "echoMap": {}, + "alarmNo": "1710237660", + "alarmDate": "1769966689478", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884272", + "createdBy": null, + "createdTime": "2026-02-02 01:24:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:50", + "echoMap": {}, + "alarmNo": "1710237659", + "alarmDate": "1769966688777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113179431884107", + "createdBy": null, + "createdTime": "2026-02-02 01:24:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:40", + "echoMap": {}, + "alarmNo": "1710237658", + "alarmDate": "1769966679479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113175136916989", + "createdBy": null, + "createdTime": "2026-02-02 01:24:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:24", + "echoMap": {}, + "alarmNo": "1710237657", + "alarmDate": "1769966651711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060064", + "deviceName": "[309](10)同济1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113175136916956", + "createdBy": null, + "createdTime": "2026-02-02 01:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:26", + "echoMap": {}, + "alarmNo": "1710237656", + "alarmDate": "1769966486411", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1022030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1022" + }, + { + "id": "723113170841949661", + "createdBy": null, + "createdTime": "2026-02-02 01:14:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:42", + "echoMap": {}, + "alarmNo": "1710237655", + "alarmDate": "1769966080888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113170841949595", + "createdBy": null, + "createdTime": "2026-02-02 01:14:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:38", + "echoMap": {}, + "alarmNo": "1710237654", + "alarmDate": "1769966076590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113170841949330", + "createdBy": null, + "createdTime": "2026-02-02 01:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:20", + "echoMap": {}, + "alarmNo": "1710237653", + "alarmDate": "1769966059349", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113162252014704", + "createdBy": null, + "createdTime": "2026-02-02 01:04:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:21", + "echoMap": {}, + "alarmNo": "1710237652", + "alarmDate": "1769965460095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113157957047699", + "createdBy": null, + "createdTime": "2026-02-02 01:04:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:11", + "echoMap": {}, + "alarmNo": "1710237651", + "alarmDate": "1769965450143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113157957047589", + "createdBy": null, + "createdTime": "2026-02-02 00:55:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:21", + "echoMap": {}, + "alarmNo": "1710237650", + "alarmDate": "1769964911583", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113157957047441", + "createdBy": null, + "createdTime": "2026-02-02 00:55:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:55:02", + "echoMap": {}, + "alarmNo": "1710237649", + "alarmDate": "1769964901028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113153662080317", + "createdBy": null, + "createdTime": "2026-02-02 00:54:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:50", + "echoMap": {}, + "alarmNo": "1710237648", + "alarmDate": "1769964888720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113145072145703", + "createdBy": null, + "createdTime": "2026-02-02 00:44:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:58", + "echoMap": {}, + "alarmNo": "1710237647", + "alarmDate": "1769964297195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113145072145536", + "createdBy": null, + "createdTime": "2026-02-02 00:44:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:48", + "echoMap": {}, + "alarmNo": "1710237646", + "alarmDate": "1769964286472", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243839", + "createdBy": null, + "createdTime": "2026-02-02 00:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:43", + "echoMap": {}, + "alarmNo": "1710237645", + "alarmDate": "1769963682117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243786", + "createdBy": null, + "createdTime": "2026-02-02 00:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:40", + "echoMap": {}, + "alarmNo": "1710237644", + "alarmDate": "1769963679448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060071", + "deviceName": "[215](10)同济5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243784", + "createdBy": null, + "createdTime": "2026-02-02 00:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:40", + "echoMap": {}, + "alarmNo": "1710237643", + "alarmDate": "1769963679322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113132187243538", + "createdBy": null, + "createdTime": "2026-02-02 00:34:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:24", + "echoMap": {}, + "alarmNo": "1710237642", + "alarmDate": "1769963663407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113123597309206", + "createdBy": null, + "createdTime": "2026-02-02 00:24:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:59", + "echoMap": {}, + "alarmNo": "1710237641", + "alarmDate": "1769963098027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113119302341744", + "createdBy": null, + "createdTime": "2026-02-02 00:24:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:22", + "echoMap": {}, + "alarmNo": "1710237640", + "alarmDate": "1769963061476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060117", + "deviceName": "[214](10)同济4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113119302341687", + "createdBy": null, + "createdTime": "2026-02-02 00:24:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:19", + "echoMap": {}, + "alarmNo": "1710237639", + "alarmDate": "1769963058002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060107", + "deviceName": "[706](10)同济同济国权下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113106417439835", + "createdBy": null, + "createdTime": "2026-02-02 00:14:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:13", + "echoMap": {}, + "alarmNo": "1710237638", + "alarmDate": "1769962452569", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113102122472579", + "createdBy": null, + "createdTime": "2026-02-02 00:05:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:07", + "echoMap": {}, + "alarmNo": "1710237637", + "alarmDate": "1769961906189", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060108", + "deviceName": "[705](10)同济同济国权上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113102122472457", + "createdBy": null, + "createdTime": "2026-02-02 00:04:59", + "updatedBy": null, + "updatedTime": "2026-02-02 00:05:00", + "echoMap": {}, + "alarmNo": "1710237636", + "alarmDate": "1769961899397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060049", + "deviceName": "[202](10)同济厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113097827505438", + "createdBy": null, + "createdTime": "2026-02-02 00:04:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:46", + "echoMap": {}, + "alarmNo": "1710237635", + "alarmDate": "1769961889044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113097827505239", + "createdBy": null, + "createdTime": "2026-02-02 00:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:39", + "echoMap": {}, + "alarmNo": "1710237634", + "alarmDate": "1769961877498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060031", + "deviceName": "[212](10)同济2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113093532538128", + "createdBy": null, + "createdTime": "2026-02-02 00:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:48", + "echoMap": {}, + "alarmNo": "1710237633", + "alarmDate": "1769961864808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060028", + "deviceName": "[317](10)同济2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + }, + { + "id": "723113093532538017", + "createdBy": null, + "createdTime": "2026-02-02 00:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:19", + "echoMap": {}, + "alarmNo": "1710237632", + "alarmDate": "1769961858338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1022060128", + "deviceName": "[623](10)同济消防泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1022" + } + ] + }, + "1023": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723118715644691630", + "createdBy": null, + "createdTime": "2026-02-02 00:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:01", + "echoMap": {}, + "alarmNo": "1730617456", + "alarmDate": "1769961720142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644691675", + "createdBy": null, + "createdTime": "2026-02-02 00:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:09", + "echoMap": {}, + "alarmNo": "1730617457", + "alarmDate": "1769961722479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644691975", + "createdBy": null, + "createdTime": "2026-02-02 00:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:31", + "echoMap": {}, + "alarmNo": "1730617458", + "alarmDate": "1769961739307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644692001", + "createdBy": null, + "createdTime": "2026-02-02 00:02:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:39", + "echoMap": {}, + "alarmNo": "1730617459", + "alarmDate": "1769961740564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644692425", + "createdBy": null, + "createdTime": "2026-02-02 00:02:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:55", + "echoMap": {}, + "alarmNo": "1730617460", + "alarmDate": "1769961763767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118724234626062", + "createdBy": null, + "createdTime": "2026-02-02 00:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:48", + "echoMap": {}, + "alarmNo": "1730617461", + "alarmDate": "1769961767422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529593362", + "createdBy": null, + "createdTime": "2026-02-02 00:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:08", + "echoMap": {}, + "alarmNo": "1730617462", + "alarmDate": "1769961770802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529593864", + "createdBy": null, + "createdTime": "2026-02-02 00:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:19", + "echoMap": {}, + "alarmNo": "1730617463", + "alarmDate": "1769962326532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529594109", + "createdBy": null, + "createdTime": "2026-02-02 00:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:32", + "echoMap": {}, + "alarmNo": "1730617464", + "alarmDate": "1769962339858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529594130", + "createdBy": null, + "createdTime": "2026-02-02 00:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:22", + "echoMap": {}, + "alarmNo": "1730617465", + "alarmDate": "1769962340971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529594302", + "createdBy": null, + "createdTime": "2026-02-02 00:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:43", + "echoMap": {}, + "alarmNo": "1730617466", + "alarmDate": "1769962350521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118737119527941", + "createdBy": null, + "createdTime": "2026-02-02 00:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:08", + "echoMap": {}, + "alarmNo": "1730617467", + "alarmDate": "1769962358530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118737119527977", + "createdBy": null, + "createdTime": "2026-02-02 00:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:41", + "echoMap": {}, + "alarmNo": "1730617468", + "alarmDate": "1769962360375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495263", + "createdBy": null, + "createdTime": "2026-02-02 00:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:40", + "echoMap": {}, + "alarmNo": "1730617469", + "alarmDate": "1769962363839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495317", + "createdBy": null, + "createdTime": "2026-02-02 00:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:47", + "echoMap": {}, + "alarmNo": "1730617471", + "alarmDate": "1769962366346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495368", + "createdBy": null, + "createdTime": "2026-02-02 00:12:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:50", + "echoMap": {}, + "alarmNo": "1730617472", + "alarmDate": "1769962368742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495495", + "createdBy": null, + "createdTime": "2026-02-02 00:12:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:06", + "echoMap": {}, + "alarmNo": "1730617473", + "alarmDate": "1769962374651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495659", + "createdBy": null, + "createdTime": "2026-02-02 00:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:45", + "echoMap": {}, + "alarmNo": "1730617474", + "alarmDate": "1769962917358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495855", + "createdBy": null, + "createdTime": "2026-02-02 00:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:17", + "echoMap": {}, + "alarmNo": "1730617475", + "alarmDate": "1769962935639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495882", + "createdBy": null, + "createdTime": "2026-02-02 00:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:30", + "echoMap": {}, + "alarmNo": "1730617476", + "alarmDate": "1769962937859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414496137", + "createdBy": null, + "createdTime": "2026-02-02 00:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:54", + "echoMap": {}, + "alarmNo": "1730617477", + "alarmDate": "1769962961908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397354", + "createdBy": null, + "createdTime": "2026-02-02 00:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:18", + "echoMap": {}, + "alarmNo": "1730617478", + "alarmDate": "1769963526006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397599", + "createdBy": null, + "createdTime": "2026-02-02 00:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:30", + "echoMap": {}, + "alarmNo": "1730617479", + "alarmDate": "1769963549010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397613", + "createdBy": null, + "createdTime": "2026-02-02 00:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:42", + "echoMap": {}, + "alarmNo": "1730617480", + "alarmDate": "1769963550059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397895", + "createdBy": null, + "createdTime": "2026-02-02 00:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:05", + "echoMap": {}, + "alarmNo": "1730617481", + "alarmDate": "1769963574190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299398058", + "createdBy": null, + "createdTime": "2026-02-02 00:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:45", + "echoMap": {}, + "alarmNo": "1730617483", + "alarmDate": "1769964118017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118762889331743", + "createdBy": null, + "createdTime": "2026-02-02 00:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:29", + "echoMap": {}, + "alarmNo": "1730617484", + "alarmDate": "1769964137371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118762889331778", + "createdBy": null, + "createdTime": "2026-02-02 00:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:21", + "echoMap": {}, + "alarmNo": "1730617485", + "alarmDate": "1769964140243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299223", + "createdBy": null, + "createdTime": "2026-02-02 00:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:53", + "echoMap": {}, + "alarmNo": "1730617486", + "alarmDate": "1769964161440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299331", + "createdBy": null, + "createdTime": "2026-02-02 00:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:50", + "echoMap": {}, + "alarmNo": "1730617487", + "alarmDate": "1769964169296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299618", + "createdBy": null, + "createdTime": "2026-02-02 00:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:18", + "echoMap": {}, + "alarmNo": "1730617488", + "alarmDate": "1769964724651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299884", + "createdBy": null, + "createdTime": "2026-02-02 00:52:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:42", + "echoMap": {}, + "alarmNo": "1730617489", + "alarmDate": "1769964749619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201070", + "createdBy": null, + "createdTime": "2026-02-02 01:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:45", + "echoMap": {}, + "alarmNo": "1730617490", + "alarmDate": "1769965317806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201073", + "createdBy": null, + "createdTime": "2026-02-02 01:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:05", + "echoMap": {}, + "alarmNo": "1730617491", + "alarmDate": "1769965317947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201275", + "createdBy": null, + "createdTime": "2026-02-02 01:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:29", + "echoMap": {}, + "alarmNo": "1730617492", + "alarmDate": "1769965336926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201598", + "createdBy": null, + "createdTime": "2026-02-02 01:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:53", + "echoMap": {}, + "alarmNo": "1730617493", + "alarmDate": "1769965367143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201690", + "createdBy": null, + "createdTime": "2026-02-02 01:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:55", + "echoMap": {}, + "alarmNo": "1730617494", + "alarmDate": "1769965373767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201846", + "createdBy": null, + "createdTime": "2026-02-02 01:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:13", + "echoMap": {}, + "alarmNo": "1730617495", + "alarmDate": "1769965917236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118784364168216", + "createdBy": null, + "createdTime": "2026-02-02 01:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:19", + "echoMap": {}, + "alarmNo": "1730617496", + "alarmDate": "1769965926697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954102843", + "createdBy": null, + "createdTime": "2026-02-02 01:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:51", + "echoMap": {}, + "alarmNo": "1730617497", + "alarmDate": "1769965951783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954103254", + "createdBy": null, + "createdTime": "2026-02-02 01:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:30", + "echoMap": {}, + "alarmNo": "1730617498", + "alarmDate": "1769966516002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954103613", + "createdBy": null, + "createdTime": "2026-02-02 01:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:29", + "echoMap": {}, + "alarmNo": "1730617499", + "alarmDate": "1769966548512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954103762", + "createdBy": null, + "createdTime": "2026-02-02 01:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:05", + "echoMap": {}, + "alarmNo": "1730617500", + "alarmDate": "1769966563110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118805839004852", + "createdBy": null, + "createdTime": "2026-02-02 01:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:11", + "echoMap": {}, + "alarmNo": "1730617501", + "alarmDate": "1769967130080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118805839005550", + "createdBy": null, + "createdTime": "2026-02-02 01:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:05", + "echoMap": {}, + "alarmNo": "1730617502", + "alarmDate": "1769967719441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118810133972010", + "createdBy": null, + "createdTime": "2026-02-02 01:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:01", + "echoMap": {}, + "alarmNo": "1730617503", + "alarmDate": "1769967736731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723906844", + "createdBy": null, + "createdTime": "2026-02-02 01:42:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:48", + "echoMap": {}, + "alarmNo": "1730617504", + "alarmDate": "1769967776593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723906982", + "createdBy": null, + "createdTime": "2026-02-02 01:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:45", + "echoMap": {}, + "alarmNo": "1730617506", + "alarmDate": "1769968317090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907112", + "createdBy": null, + "createdTime": "2026-02-02 01:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:10", + "echoMap": {}, + "alarmNo": "1730617507", + "alarmDate": "1769968329263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907142", + "createdBy": null, + "createdTime": "2026-02-02 01:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:24", + "echoMap": {}, + "alarmNo": "1730617508", + "alarmDate": "1769968331957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907274", + "createdBy": null, + "createdTime": "2026-02-02 01:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:31", + "echoMap": {}, + "alarmNo": "1730617509", + "alarmDate": "1769968343819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907418", + "createdBy": null, + "createdTime": "2026-02-02 01:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:42", + "echoMap": {}, + "alarmNo": "1730617510", + "alarmDate": "1769968357087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907460", + "createdBy": null, + "createdTime": "2026-02-02 01:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:42", + "echoMap": {}, + "alarmNo": "1730617511", + "alarmDate": "1769968360733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118823018874073", + "createdBy": null, + "createdTime": "2026-02-02 02:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:45", + "echoMap": {}, + "alarmNo": "1730617514", + "alarmDate": "1769968917468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118831608809006", + "createdBy": null, + "createdTime": "2026-02-02 02:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:56", + "echoMap": {}, + "alarmNo": "1730617515", + "alarmDate": "1769968974574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118835903775835", + "createdBy": null, + "createdTime": "2026-02-02 02:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:13", + "echoMap": {}, + "alarmNo": "1730617516", + "alarmDate": "1769969526589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118840198743355", + "createdBy": null, + "createdTime": "2026-02-02 02:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:43", + "echoMap": {}, + "alarmNo": "1730617517", + "alarmDate": "1769969561744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788677747", + "createdBy": null, + "createdTime": "2026-02-02 02:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:22", + "echoMap": {}, + "alarmNo": "1730617518", + "alarmDate": "1769970141425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788677975", + "createdBy": null, + "createdTime": "2026-02-02 02:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:54", + "echoMap": {}, + "alarmNo": "1730617519", + "alarmDate": "1769970161847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788678137", + "createdBy": null, + "createdTime": "2026-02-02 02:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:01", + "echoMap": {}, + "alarmNo": "1730617520", + "alarmDate": "1769970173934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788678299", + "createdBy": null, + "createdTime": "2026-02-02 02:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:45", + "echoMap": {}, + "alarmNo": "1730617523", + "alarmDate": "1769970717476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118857378612228", + "createdBy": null, + "createdTime": "2026-02-02 02:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:15", + "echoMap": {}, + "alarmNo": "1730617524", + "alarmDate": "1769970729060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118857378612250", + "createdBy": null, + "createdTime": "2026-02-02 02:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:17", + "echoMap": {}, + "alarmNo": "1730617525", + "alarmDate": "1769970730583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060084", + "deviceName": "[104](10)国权上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118857378612786", + "createdBy": null, + "createdTime": "2026-02-02 02:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:45", + "echoMap": {}, + "alarmNo": "1730617526", + "alarmDate": "1769970776417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118865968547008", + "createdBy": null, + "createdTime": "2026-02-02 02:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:23", + "echoMap": {}, + "alarmNo": "1730617527", + "alarmDate": "1769971341590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118865968547360", + "createdBy": null, + "createdTime": "2026-02-02 02:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:52", + "echoMap": {}, + "alarmNo": "1730617528", + "alarmDate": "1769971371108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118870263514161", + "createdBy": null, + "createdTime": "2026-02-02 02:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:00", + "echoMap": {}, + "alarmNo": "1730617529", + "alarmDate": "1769971919272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416120", + "createdBy": null, + "createdTime": "2026-02-02 03:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:25", + "echoMap": {}, + "alarmNo": "1730617530", + "alarmDate": "1769972532031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416387", + "createdBy": null, + "createdTime": "2026-02-02 03:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:49", + "echoMap": {}, + "alarmNo": "1730617531", + "alarmDate": "1769972557102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416533", + "createdBy": null, + "createdTime": "2026-02-02 03:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:55", + "echoMap": {}, + "alarmNo": "1730617532", + "alarmDate": "1769972569047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416605", + "createdBy": null, + "createdTime": "2026-02-02 03:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:55", + "echoMap": {}, + "alarmNo": "1730617533", + "alarmDate": "1769972574091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118887443383328", + "createdBy": null, + "createdTime": "2026-02-02 03:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:28", + "echoMap": {}, + "alarmNo": "1730617534", + "alarmDate": "1769973116329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118891738350613", + "createdBy": null, + "createdTime": "2026-02-02 03:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:03", + "echoMap": {}, + "alarmNo": "1730617535", + "alarmDate": "1769973122262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118891738350931", + "createdBy": null, + "createdTime": "2026-02-02 03:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:32", + "echoMap": {}, + "alarmNo": "1730617536", + "alarmDate": "1769973150851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118891738351029", + "createdBy": null, + "createdTime": "2026-02-02 03:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:54", + "echoMap": {}, + "alarmNo": "1730617537", + "alarmDate": "1769973160451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118900328285650", + "createdBy": null, + "createdTime": "2026-02-02 03:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:50", + "echoMap": {}, + "alarmNo": "1730617538", + "alarmDate": "1769973763927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118908918219856", + "createdBy": null, + "createdTime": "2026-02-02 03:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:21", + "echoMap": {}, + "alarmNo": "1730617539", + "alarmDate": "1769974328158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118908918220167", + "createdBy": null, + "createdTime": "2026-02-02 03:32:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:36", + "echoMap": {}, + "alarmNo": "1730617540", + "alarmDate": "1769974355006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118917508154463", + "createdBy": null, + "createdTime": "2026-02-02 03:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:10", + "echoMap": {}, + "alarmNo": "1730617542", + "alarmDate": "1769974928639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118921803121698", + "createdBy": null, + "createdTime": "2026-02-02 03:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:50", + "echoMap": {}, + "alarmNo": "1730617543", + "alarmDate": "1769975516477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118926098089481", + "createdBy": null, + "createdTime": "2026-02-02 03:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:53", + "echoMap": {}, + "alarmNo": "1730617544", + "alarmDate": "1769975566728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118934688023858", + "createdBy": null, + "createdTime": "2026-02-02 04:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:36", + "echoMap": {}, + "alarmNo": "1730617545", + "alarmDate": "1769976150452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118934688024024", + "createdBy": null, + "createdTime": "2026-02-02 04:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:47", + "echoMap": {}, + "alarmNo": "1730617546", + "alarmDate": "1769976165682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118934688024137", + "createdBy": null, + "createdTime": "2026-02-02 04:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:01", + "echoMap": {}, + "alarmNo": "1730617547", + "alarmDate": "1769976174526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958236", + "createdBy": null, + "createdTime": "2026-02-02 04:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:15", + "echoMap": {}, + "alarmNo": "1730617548", + "alarmDate": "1769976733976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958287", + "createdBy": null, + "createdTime": "2026-02-02 04:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:25", + "echoMap": {}, + "alarmNo": "1730617549", + "alarmDate": "1769976738648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958293", + "createdBy": null, + "createdTime": "2026-02-02 04:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:20", + "echoMap": {}, + "alarmNo": "1730617550", + "alarmDate": "1769976739004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958541", + "createdBy": null, + "createdTime": "2026-02-02 04:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:55", + "echoMap": {}, + "alarmNo": "1730617551", + "alarmDate": "1769976762709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118947572925467", + "createdBy": null, + "createdTime": "2026-02-02 04:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:12", + "echoMap": {}, + "alarmNo": "1730617552", + "alarmDate": "1769977325906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118947572925516", + "createdBy": null, + "createdTime": "2026-02-02 04:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:11", + "echoMap": {}, + "alarmNo": "1730617553", + "alarmDate": "1769977330170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118951867892940", + "createdBy": null, + "createdTime": "2026-02-02 04:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:43", + "echoMap": {}, + "alarmNo": "1730617554", + "alarmDate": "1769977349985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118951867893222", + "createdBy": null, + "createdTime": "2026-02-02 04:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:06", + "echoMap": {}, + "alarmNo": "1730617555", + "alarmDate": "1769977373998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827380", + "createdBy": null, + "createdTime": "2026-02-02 04:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:30", + "echoMap": {}, + "alarmNo": "1730617556", + "alarmDate": "1769977938274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827635", + "createdBy": null, + "createdTime": "2026-02-02 04:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:54", + "echoMap": {}, + "alarmNo": "1730617557", + "alarmDate": "1769977962286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827679", + "createdBy": null, + "createdTime": "2026-02-02 04:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:47", + "echoMap": {}, + "alarmNo": "1730617558", + "alarmDate": "1769977965642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827758", + "createdBy": null, + "createdTime": "2026-02-02 04:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:52", + "echoMap": {}, + "alarmNo": "1730617559", + "alarmDate": "1769977970713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827969", + "createdBy": null, + "createdTime": "2026-02-02 04:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:59", + "echoMap": {}, + "alarmNo": "1730617560", + "alarmDate": "1769978517797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118964752794679", + "createdBy": null, + "createdTime": "2026-02-02 04:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:07", + "echoMap": {}, + "alarmNo": "1730617561", + "alarmDate": "1769978525717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118964752794698", + "createdBy": null, + "createdTime": "2026-02-02 04:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:19", + "echoMap": {}, + "alarmNo": "1730617562", + "alarmDate": "1769978526484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047761975", + "createdBy": null, + "createdTime": "2026-02-02 04:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:11", + "echoMap": {}, + "alarmNo": "1730617563", + "alarmDate": "1769978529585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762028", + "createdBy": null, + "createdTime": "2026-02-02 04:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:14", + "echoMap": {}, + "alarmNo": "1730617564", + "alarmDate": "1769978532656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762253", + "createdBy": null, + "createdTime": "2026-02-02 04:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:50", + "echoMap": {}, + "alarmNo": "1730617565", + "alarmDate": "1769978546066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762299", + "createdBy": null, + "createdTime": "2026-02-02 04:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:35", + "echoMap": {}, + "alarmNo": "1730617566", + "alarmDate": "1769978548803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762337", + "createdBy": null, + "createdTime": "2026-02-02 04:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:43", + "echoMap": {}, + "alarmNo": "1730617567", + "alarmDate": "1769978550664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762412", + "createdBy": null, + "createdTime": "2026-02-02 04:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:35", + "echoMap": {}, + "alarmNo": "1730617568", + "alarmDate": "1769978554291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762582", + "createdBy": null, + "createdTime": "2026-02-02 04:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:45", + "echoMap": {}, + "alarmNo": "1730617569", + "alarmDate": "1769978563752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637696594", + "createdBy": null, + "createdTime": "2026-02-02 04:42:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1730617570", + "alarmDate": "1769978574674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637696755", + "createdBy": null, + "createdTime": "2026-02-02 04:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:02", + "echoMap": {}, + "alarmNo": "1730617571", + "alarmDate": "1769979117422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637696890", + "createdBy": null, + "createdTime": "2026-02-02 04:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1730617572", + "alarmDate": "1769979125005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060070", + "deviceName": "[207](10)国权下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637697091", + "createdBy": null, + "createdTime": "2026-02-02 04:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:23", + "echoMap": {}, + "alarmNo": "1730617573", + "alarmDate": "1769979137138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637697210", + "createdBy": null, + "createdTime": "2026-02-02 04:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:30", + "echoMap": {}, + "alarmNo": "1730617574", + "alarmDate": "1769979144093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118981932663819", + "createdBy": null, + "createdTime": "2026-02-02 04:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:37", + "echoMap": {}, + "alarmNo": "1730617575", + "alarmDate": "1769979146315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118986227631411", + "createdBy": null, + "createdTime": "2026-02-02 04:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:24", + "echoMap": {}, + "alarmNo": "1730617576", + "alarmDate": "1769979168012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118986227631449", + "createdBy": null, + "createdTime": "2026-02-02 04:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:02", + "echoMap": {}, + "alarmNo": "1730617577", + "alarmDate": "1769979169455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817565759", + "createdBy": null, + "createdTime": "2026-02-02 05:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:20", + "echoMap": {}, + "alarmNo": "1730617578", + "alarmDate": "1769979733650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566016", + "createdBy": null, + "createdTime": "2026-02-02 05:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:29", + "echoMap": {}, + "alarmNo": "1730617579", + "alarmDate": "1769979748646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566046", + "createdBy": null, + "createdTime": "2026-02-02 05:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:32", + "echoMap": {}, + "alarmNo": "1730617580", + "alarmDate": "1769979750536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566137", + "createdBy": null, + "createdTime": "2026-02-02 05:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:48", + "echoMap": {}, + "alarmNo": "1730617581", + "alarmDate": "1769979756277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566164", + "createdBy": null, + "createdTime": "2026-02-02 05:02:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:44", + "echoMap": {}, + "alarmNo": "1730617582", + "alarmDate": "1769979757700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566174", + "createdBy": null, + "createdTime": "2026-02-02 05:02:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:39", + "echoMap": {}, + "alarmNo": "1730617583", + "alarmDate": "1769979758269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566337", + "createdBy": null, + "createdTime": "2026-02-02 05:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:48", + "echoMap": {}, + "alarmNo": "1730617584", + "alarmDate": "1769979767322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566421", + "createdBy": null, + "createdTime": "2026-02-02 05:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:52", + "echoMap": {}, + "alarmNo": "1730617585", + "alarmDate": "1769979771222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118999112533038", + "createdBy": null, + "createdTime": "2026-02-02 05:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:19", + "echoMap": {}, + "alarmNo": "1730617586", + "alarmDate": "1769979775669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500392", + "createdBy": null, + "createdTime": "2026-02-02 05:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:58", + "echoMap": {}, + "alarmNo": "1730617588", + "alarmDate": "1769980316429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500454", + "createdBy": null, + "createdTime": "2026-02-02 05:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:13", + "echoMap": {}, + "alarmNo": "1730617589", + "alarmDate": "1769980320528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500489", + "createdBy": null, + "createdTime": "2026-02-02 05:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:03", + "echoMap": {}, + "alarmNo": "1730617590", + "alarmDate": "1769980322404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500829", + "createdBy": null, + "createdTime": "2026-02-02 05:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:26", + "echoMap": {}, + "alarmNo": "1730617591", + "alarmDate": "1769980344579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500946", + "createdBy": null, + "createdTime": "2026-02-02 05:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:46", + "echoMap": {}, + "alarmNo": "1730617592", + "alarmDate": "1769980352648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435236", + "createdBy": null, + "createdTime": "2026-02-02 05:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:17", + "echoMap": {}, + "alarmNo": "1730617593", + "alarmDate": "1769980917525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435243", + "createdBy": null, + "createdTime": "2026-02-02 05:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:01", + "echoMap": {}, + "alarmNo": "1730617594", + "alarmDate": "1769980917793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435257", + "createdBy": null, + "createdTime": "2026-02-02 05:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:45", + "echoMap": {}, + "alarmNo": "1730617595", + "alarmDate": "1769980918526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435601", + "createdBy": null, + "createdTime": "2026-02-02 05:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:33", + "echoMap": {}, + "alarmNo": "1730617596", + "alarmDate": "1769980939929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119020587369527", + "createdBy": null, + "createdTime": "2026-02-02 05:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:49", + "echoMap": {}, + "alarmNo": "1730617597", + "alarmDate": "1769980948676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119020587369943", + "createdBy": null, + "createdTime": "2026-02-02 05:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:19", + "echoMap": {}, + "alarmNo": "1730617598", + "alarmDate": "1769980972913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119020587370141", + "createdBy": null, + "createdTime": "2026-02-02 05:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:05", + "echoMap": {}, + "alarmNo": "1730617599", + "alarmDate": "1769981517867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304223", + "createdBy": null, + "createdTime": "2026-02-02 05:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:15", + "echoMap": {}, + "alarmNo": "1730617600", + "alarmDate": "1769981534270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304241", + "createdBy": null, + "createdTime": "2026-02-02 05:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:16", + "echoMap": {}, + "alarmNo": "1730617601", + "alarmDate": "1769981535212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304354", + "createdBy": null, + "createdTime": "2026-02-02 05:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:23", + "echoMap": {}, + "alarmNo": "1730617602", + "alarmDate": "1769981542163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304385", + "createdBy": null, + "createdTime": "2026-02-02 05:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:37", + "echoMap": {}, + "alarmNo": "1730617603", + "alarmDate": "1769981543994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304501", + "createdBy": null, + "createdTime": "2026-02-02 05:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:32", + "echoMap": {}, + "alarmNo": "1730617604", + "alarmDate": "1769981551123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304523", + "createdBy": null, + "createdTime": "2026-02-02 05:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:52", + "echoMap": {}, + "alarmNo": "1730617605", + "alarmDate": "1769981552253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238721", + "createdBy": null, + "createdTime": "2026-02-02 05:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:55", + "echoMap": {}, + "alarmNo": "1730617606", + "alarmDate": "1769981574220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238744", + "createdBy": null, + "createdTime": "2026-02-02 05:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:15", + "echoMap": {}, + "alarmNo": "1730617607", + "alarmDate": "1769981575997", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238893", + "createdBy": null, + "createdTime": "2026-02-02 05:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:15", + "echoMap": {}, + "alarmNo": "1730617608", + "alarmDate": "1769982117484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238911", + "createdBy": null, + "createdTime": "2026-02-02 05:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:03", + "echoMap": {}, + "alarmNo": "1730617609", + "alarmDate": "1769982118381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767239068", + "createdBy": null, + "createdTime": "2026-02-02 05:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:09", + "echoMap": {}, + "alarmNo": "1730617610", + "alarmDate": "1769982128272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767239089", + "createdBy": null, + "createdTime": "2026-02-02 05:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:10", + "echoMap": {}, + "alarmNo": "1730617611", + "alarmDate": "1769982129334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767239306", + "createdBy": null, + "createdTime": "2026-02-02 05:42:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:30", + "echoMap": {}, + "alarmNo": "1730617612", + "alarmDate": "1769982143581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119042062205964", + "createdBy": null, + "createdTime": "2026-02-02 05:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:07", + "echoMap": {}, + "alarmNo": "1730617613", + "alarmDate": "1769982147467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173276", + "createdBy": null, + "createdTime": "2026-02-02 05:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:39", + "echoMap": {}, + "alarmNo": "1730617614", + "alarmDate": "1769982153350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173299", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:48", + "echoMap": {}, + "alarmNo": "1730617615", + "alarmDate": "1769982154494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173304", + "createdBy": null, + "createdTime": "2026-02-02 05:42:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:41", + "echoMap": {}, + "alarmNo": "1730617616", + "alarmDate": "1769982154752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173795", + "createdBy": null, + "createdTime": "2026-02-02 05:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:06", + "echoMap": {}, + "alarmNo": "1730617618", + "alarmDate": "1769982716760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173810", + "createdBy": null, + "createdTime": "2026-02-02 05:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:45", + "echoMap": {}, + "alarmNo": "1730617619", + "alarmDate": "1769982717594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173811", + "createdBy": null, + "createdTime": "2026-02-02 05:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:23", + "echoMap": {}, + "alarmNo": "1730617620", + "alarmDate": "1769982717635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173939", + "createdBy": null, + "createdTime": "2026-02-02 05:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:19", + "echoMap": {}, + "alarmNo": "1730617621", + "alarmDate": "1769982726385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947107871", + "createdBy": null, + "createdTime": "2026-02-02 05:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:35", + "echoMap": {}, + "alarmNo": "1730617622", + "alarmDate": "1769982734746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108230", + "createdBy": null, + "createdTime": "2026-02-02 05:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1730617623", + "alarmDate": "1769982758649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108381", + "createdBy": null, + "createdTime": "2026-02-02 05:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:22", + "echoMap": {}, + "alarmNo": "1730617624", + "alarmDate": "1769982767803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108402", + "createdBy": null, + "createdTime": "2026-02-02 05:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:50", + "echoMap": {}, + "alarmNo": "1730617625", + "alarmDate": "1769982768954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108452", + "createdBy": null, + "createdTime": "2026-02-02 05:52:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:52", + "echoMap": {}, + "alarmNo": "1730617626", + "alarmDate": "1769982770975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108682", + "createdBy": null, + "createdTime": "2026-02-02 06:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1730617627", + "alarmDate": "1769983318151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108719", + "createdBy": null, + "createdTime": "2026-02-02 06:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:01", + "echoMap": {}, + "alarmNo": "1730617628", + "alarmDate": "1769983320037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119059242075198", + "createdBy": null, + "createdTime": "2026-02-02 06:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:14", + "echoMap": {}, + "alarmNo": "1730617629", + "alarmDate": "1769983332790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119063537042447", + "createdBy": null, + "createdTime": "2026-02-02 06:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:17", + "echoMap": {}, + "alarmNo": "1730617630", + "alarmDate": "1769983335905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119063537042457", + "createdBy": null, + "createdTime": "2026-02-02 06:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:23", + "echoMap": {}, + "alarmNo": "1730617631", + "alarmDate": "1769983336657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832009760", + "createdBy": null, + "createdTime": "2026-02-02 06:02:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:31", + "echoMap": {}, + "alarmNo": "1730617632", + "alarmDate": "1769983341121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832009993", + "createdBy": null, + "createdTime": "2026-02-02 06:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:41", + "echoMap": {}, + "alarmNo": "1730617633", + "alarmDate": "1769983356208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010075", + "createdBy": null, + "createdTime": "2026-02-02 06:02:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:54", + "echoMap": {}, + "alarmNo": "1730617634", + "alarmDate": "1769983361089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010085", + "createdBy": null, + "createdTime": "2026-02-02 06:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:17", + "echoMap": {}, + "alarmNo": "1730617635", + "alarmDate": "1769983361731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010107", + "createdBy": null, + "createdTime": "2026-02-02 06:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:44", + "echoMap": {}, + "alarmNo": "1730617636", + "alarmDate": "1769983362880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010317", + "createdBy": null, + "createdTime": "2026-02-02 06:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:55", + "echoMap": {}, + "alarmNo": "1730617637", + "alarmDate": "1769983374026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010485", + "createdBy": null, + "createdTime": "2026-02-02 06:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:01", + "echoMap": {}, + "alarmNo": "1730617638", + "alarmDate": "1769983917221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010486", + "createdBy": null, + "createdTime": "2026-02-02 06:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:03", + "echoMap": {}, + "alarmNo": "1730617639", + "alarmDate": "1769983917338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010658", + "createdBy": null, + "createdTime": "2026-02-02 06:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:09", + "echoMap": {}, + "alarmNo": "1730617640", + "alarmDate": "1769983928208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119076421944350", + "createdBy": null, + "createdTime": "2026-02-02 06:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:34", + "echoMap": {}, + "alarmNo": "1730617641", + "alarmDate": "1769983941273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716911695", + "createdBy": null, + "createdTime": "2026-02-02 06:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:35", + "echoMap": {}, + "alarmNo": "1730617642", + "alarmDate": "1769983949326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716911708", + "createdBy": null, + "createdTime": "2026-02-02 06:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:49", + "echoMap": {}, + "alarmNo": "1730617643", + "alarmDate": "1769983950117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912091", + "createdBy": null, + "createdTime": "2026-02-02 06:12:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:21", + "echoMap": {}, + "alarmNo": "1730617644", + "alarmDate": "1769983973390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912266", + "createdBy": null, + "createdTime": "2026-02-02 06:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:05", + "echoMap": {}, + "alarmNo": "1730617645", + "alarmDate": "1769984517324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912271", + "createdBy": null, + "createdTime": "2026-02-02 06:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:45", + "echoMap": {}, + "alarmNo": "1730617646", + "alarmDate": "1769984517624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912554", + "createdBy": null, + "createdTime": "2026-02-02 06:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:08", + "echoMap": {}, + "alarmNo": "1730617647", + "alarmDate": "1769984534490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119085011878934", + "createdBy": null, + "createdTime": "2026-02-02 06:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:01", + "echoMap": {}, + "alarmNo": "1730617648", + "alarmDate": "1769984540689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119089306846263", + "createdBy": null, + "createdTime": "2026-02-02 06:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:44", + "echoMap": {}, + "alarmNo": "1730617649", + "alarmDate": "1769984545332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813633", + "createdBy": null, + "createdTime": "2026-02-02 06:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:35", + "echoMap": {}, + "alarmNo": "1730617650", + "alarmDate": "1769984553627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813635", + "createdBy": null, + "createdTime": "2026-02-02 06:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:53", + "echoMap": {}, + "alarmNo": "1730617651", + "alarmDate": "1769984553677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813696", + "createdBy": null, + "createdTime": "2026-02-02 06:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:38", + "echoMap": {}, + "alarmNo": "1730617652", + "alarmDate": "1769984556667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813795", + "createdBy": null, + "createdTime": "2026-02-02 06:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:53", + "echoMap": {}, + "alarmNo": "1730617653", + "alarmDate": "1769984561541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813879", + "createdBy": null, + "createdTime": "2026-02-02 06:22:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:46", + "echoMap": {}, + "alarmNo": "1730617654", + "alarmDate": "1769984565422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601814241", + "createdBy": null, + "createdTime": "2026-02-02 06:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:01", + "echoMap": {}, + "alarmNo": "1730617655", + "alarmDate": "1769985117584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601814360", + "createdBy": null, + "createdTime": "2026-02-02 06:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:18", + "echoMap": {}, + "alarmNo": "1730617656", + "alarmDate": "1769985124852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119097896780810", + "createdBy": null, + "createdTime": "2026-02-02 06:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:14", + "echoMap": {}, + "alarmNo": "1730617657", + "alarmDate": "1769985132780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119097896780832", + "createdBy": null, + "createdTime": "2026-02-02 06:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:45", + "echoMap": {}, + "alarmNo": "1730617658", + "alarmDate": "1769985134122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748158", + "createdBy": null, + "createdTime": "2026-02-02 06:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:33", + "echoMap": {}, + "alarmNo": "1730617659", + "alarmDate": "1769985140608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748414", + "createdBy": null, + "createdTime": "2026-02-02 06:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:36", + "echoMap": {}, + "alarmNo": "1730617660", + "alarmDate": "1769985156979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748495", + "createdBy": null, + "createdTime": "2026-02-02 06:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:43", + "echoMap": {}, + "alarmNo": "1730617661", + "alarmDate": "1769985161721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748690", + "createdBy": null, + "createdTime": "2026-02-02 06:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:16", + "echoMap": {}, + "alarmNo": "1730617662", + "alarmDate": "1769985172649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748883", + "createdBy": null, + "createdTime": "2026-02-02 06:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:42", + "echoMap": {}, + "alarmNo": "1730617664", + "alarmDate": "1769985717647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119110781682698", + "createdBy": null, + "createdTime": "2026-02-02 06:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:17", + "echoMap": {}, + "alarmNo": "1730617665", + "alarmDate": "1769985736097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650050", + "createdBy": null, + "createdTime": "2026-02-02 06:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:57", + "echoMap": {}, + "alarmNo": "1730617666", + "alarmDate": "1769985745225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650115", + "createdBy": null, + "createdTime": "2026-02-02 06:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:16", + "echoMap": {}, + "alarmNo": "1730617667", + "alarmDate": "1769985749537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650536", + "createdBy": null, + "createdTime": "2026-02-02 06:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:54", + "echoMap": {}, + "alarmNo": "1730617668", + "alarmDate": "1769985774236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650710", + "createdBy": null, + "createdTime": "2026-02-02 06:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:12", + "echoMap": {}, + "alarmNo": "1730617670", + "alarmDate": "1769986317885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650719", + "createdBy": null, + "createdTime": "2026-02-02 06:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:14", + "echoMap": {}, + "alarmNo": "1730617671", + "alarmDate": "1769986318542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119123666584618", + "createdBy": null, + "createdTime": "2026-02-02 06:52:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:24", + "echoMap": {}, + "alarmNo": "1730617672", + "alarmDate": "1769986342520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961551996", + "createdBy": null, + "createdTime": "2026-02-02 06:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:56", + "echoMap": {}, + "alarmNo": "1730617673", + "alarmDate": "1769986353603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552023", + "createdBy": null, + "createdTime": "2026-02-02 06:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:36", + "echoMap": {}, + "alarmNo": "1730617674", + "alarmDate": "1769986355147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552471", + "createdBy": null, + "createdTime": "2026-02-02 06:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:45", + "echoMap": {}, + "alarmNo": "1730617675", + "alarmDate": "1769986785699", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552611", + "createdBy": null, + "createdTime": "2026-02-02 07:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:22", + "echoMap": {}, + "alarmNo": "1730617676", + "alarmDate": "1769986923481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552810", + "createdBy": null, + "createdTime": "2026-02-02 07:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:18", + "echoMap": {}, + "alarmNo": "1730617677", + "alarmDate": "1769986936606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551486595", + "createdBy": null, + "createdTime": "2026-02-02 07:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:49", + "echoMap": {}, + "alarmNo": "1730617678", + "alarmDate": "1769986956905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487055", + "createdBy": null, + "createdTime": "2026-02-02 07:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:28", + "echoMap": {}, + "alarmNo": "1730617679", + "alarmDate": "1769987518118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060091", + "deviceName": "[101](10)国权上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487240", + "createdBy": null, + "createdTime": "2026-02-02 07:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:16", + "echoMap": {}, + "alarmNo": "1730617680", + "alarmDate": "1769987529741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487260", + "createdBy": null, + "createdTime": "2026-02-02 07:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:45", + "echoMap": {}, + "alarmNo": "1730617681", + "alarmDate": "1769987530852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487408", + "createdBy": null, + "createdTime": "2026-02-02 07:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:20", + "echoMap": {}, + "alarmNo": "1730617682", + "alarmDate": "1769987538944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421555", + "createdBy": null, + "createdTime": "2026-02-02 07:12:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:56", + "echoMap": {}, + "alarmNo": "1730617683", + "alarmDate": "1769987574792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421650", + "createdBy": null, + "createdTime": "2026-02-02 07:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:45", + "echoMap": {}, + "alarmNo": "1730617684", + "alarmDate": "1769987925626", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421719", + "createdBy": null, + "createdTime": "2026-02-02 07:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:00", + "echoMap": {}, + "alarmNo": "1730617685", + "alarmDate": "1769988117475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421887", + "createdBy": null, + "createdTime": "2026-02-02 07:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:09", + "echoMap": {}, + "alarmNo": "1730617686", + "alarmDate": "1769988127930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141422029", + "createdBy": null, + "createdTime": "2026-02-02 07:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:17", + "echoMap": {}, + "alarmNo": "1730617687", + "alarmDate": "1769988136357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119149436388378", + "createdBy": null, + "createdTime": "2026-02-02 07:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:46", + "echoMap": {}, + "alarmNo": "1730617688", + "alarmDate": "1769988141043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119158026323004", + "createdBy": null, + "createdTime": "2026-02-02 07:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:30", + "echoMap": {}, + "alarmNo": "1730617689", + "alarmDate": "1769988148894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119158026323617", + "createdBy": null, + "createdTime": "2026-02-02 07:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:44", + "echoMap": {}, + "alarmNo": "1730617690", + "alarmDate": "1769988717979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119158026323896", + "createdBy": null, + "createdTime": "2026-02-02 07:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:22", + "echoMap": {}, + "alarmNo": "1730617691", + "alarmDate": "1769988735315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616257541", + "createdBy": null, + "createdTime": "2026-02-02 07:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:23", + "echoMap": {}, + "alarmNo": "1730617692", + "alarmDate": "1769988742424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616257674", + "createdBy": null, + "createdTime": "2026-02-02 07:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:32", + "echoMap": {}, + "alarmNo": "1730617693", + "alarmDate": "1769988751138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616257996", + "createdBy": null, + "createdTime": "2026-02-02 07:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:12", + "echoMap": {}, + "alarmNo": "1730617694", + "alarmDate": "1769988771122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616258068", + "createdBy": null, + "createdTime": "2026-02-02 07:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:11", + "echoMap": {}, + "alarmNo": "1730617695", + "alarmDate": "1769988776645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616258108", + "createdBy": null, + "createdTime": "2026-02-02 07:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:45", + "echoMap": {}, + "alarmNo": "1730617696", + "alarmDate": "1769989005599", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023060027", + "deviceName": "[503](10)国权票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616258253", + "createdBy": null, + "createdTime": "2026-02-02 07:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:49", + "echoMap": {}, + "alarmNo": "1730617697", + "alarmDate": "1769989320300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119170911224858", + "createdBy": null, + "createdTime": "2026-02-02 07:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:48", + "echoMap": {}, + "alarmNo": "1730617698", + "alarmDate": "1769989341591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119170911224949", + "createdBy": null, + "createdTime": "2026-02-02 07:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:28", + "echoMap": {}, + "alarmNo": "1730617699", + "alarmDate": "1769989346858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501159502", + "createdBy": null, + "createdTime": "2026-02-02 07:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:10", + "echoMap": {}, + "alarmNo": "1730617700", + "alarmDate": "1769989356931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501159750", + "createdBy": null, + "createdTime": "2026-02-02 07:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:57", + "echoMap": {}, + "alarmNo": "1730617701", + "alarmDate": "1769989369954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060076", + "deviceName": "[106](10)国权上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160239", + "createdBy": null, + "createdTime": "2026-02-02 07:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:16", + "echoMap": {}, + "alarmNo": "1730617702", + "alarmDate": "1769989935248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160377", + "createdBy": null, + "createdTime": "2026-02-02 07:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:28", + "echoMap": {}, + "alarmNo": "1730617703", + "alarmDate": "1769989946709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160404", + "createdBy": null, + "createdTime": "2026-02-02 07:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:23", + "echoMap": {}, + "alarmNo": "1730617704", + "alarmDate": "1769989948372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160411", + "createdBy": null, + "createdTime": "2026-02-02 07:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:40", + "echoMap": {}, + "alarmNo": "1730617705", + "alarmDate": "1769989948853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119188091094475", + "createdBy": null, + "createdTime": "2026-02-02 08:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:40", + "echoMap": {}, + "alarmNo": "1730617706", + "alarmDate": "1769990519066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119188091094839", + "createdBy": null, + "createdTime": "2026-02-02 08:02:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:29", + "echoMap": {}, + "alarmNo": "1730617707", + "alarmDate": "1769990543003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119188091094921", + "createdBy": null, + "createdTime": "2026-02-02 08:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:29", + "echoMap": {}, + "alarmNo": "1730617708", + "alarmDate": "1769990548261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119192386061341", + "createdBy": null, + "createdTime": "2026-02-02 08:02:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:47", + "echoMap": {}, + "alarmNo": "1730617709", + "alarmDate": "1769990554830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119192386061378", + "createdBy": null, + "createdTime": "2026-02-02 08:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:38", + "echoMap": {}, + "alarmNo": "1730617710", + "alarmDate": "1769990557093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681028769", + "createdBy": null, + "createdTime": "2026-02-02 08:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:09", + "echoMap": {}, + "alarmNo": "1730617711", + "alarmDate": "1769990568745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029008", + "createdBy": null, + "createdTime": "2026-02-02 08:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:00", + "echoMap": {}, + "alarmNo": "1730617712", + "alarmDate": "1769991116959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029022", + "createdBy": null, + "createdTime": "2026-02-02 08:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:45", + "echoMap": {}, + "alarmNo": "1730617713", + "alarmDate": "1769991117847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029196", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:35", + "echoMap": {}, + "alarmNo": "1730617714", + "alarmDate": "1769991131094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029201", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:29", + "echoMap": {}, + "alarmNo": "1730617715", + "alarmDate": "1769991131327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029355", + "createdBy": null, + "createdTime": "2026-02-02 08:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:03", + "echoMap": {}, + "alarmNo": "1730617716", + "alarmDate": "1769991142087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029560", + "createdBy": null, + "createdTime": "2026-02-02 08:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:37", + "echoMap": {}, + "alarmNo": "1730617717", + "alarmDate": "1769991155921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963252", + "createdBy": null, + "createdTime": "2026-02-02 08:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:29", + "echoMap": {}, + "alarmNo": "1730617718", + "alarmDate": "1769991167060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963326", + "createdBy": null, + "createdTime": "2026-02-02 08:12:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:57", + "echoMap": {}, + "alarmNo": "1730617719", + "alarmDate": "1769991170986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060076", + "deviceName": "[106](10)国权上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963401", + "createdBy": null, + "createdTime": "2026-02-02 08:12:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:24", + "echoMap": {}, + "alarmNo": "1730617720", + "alarmDate": "1769991176676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963544", + "createdBy": null, + "createdTime": "2026-02-02 08:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:12", + "echoMap": {}, + "alarmNo": "1730617721", + "alarmDate": "1769991717402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963843", + "createdBy": null, + "createdTime": "2026-02-02 08:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:18", + "echoMap": {}, + "alarmNo": "1730617722", + "alarmDate": "1769991737083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963953", + "createdBy": null, + "createdTime": "2026-02-02 08:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:30", + "echoMap": {}, + "alarmNo": "1730617723", + "alarmDate": "1769991744543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270964071", + "createdBy": null, + "createdTime": "2026-02-02 08:22:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:34", + "echoMap": {}, + "alarmNo": "1730617724", + "alarmDate": "1769991752537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860897833", + "createdBy": null, + "createdTime": "2026-02-02 08:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:09", + "echoMap": {}, + "alarmNo": "1730617725", + "alarmDate": "1769991767239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898307", + "createdBy": null, + "createdTime": "2026-02-02 08:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:18", + "echoMap": {}, + "alarmNo": "1730617726", + "alarmDate": "1769992331877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898459", + "createdBy": null, + "createdTime": "2026-02-02 08:32:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1730617727", + "alarmDate": "1769992342856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898468", + "createdBy": null, + "createdTime": "2026-02-02 08:32:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:36", + "echoMap": {}, + "alarmNo": "1730617728", + "alarmDate": "1769992343174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898642", + "createdBy": null, + "createdTime": "2026-02-02 08:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:35", + "echoMap": {}, + "alarmNo": "1730617729", + "alarmDate": "1769992354204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745799887", + "createdBy": null, + "createdTime": "2026-02-02 08:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:01", + "echoMap": {}, + "alarmNo": "1730617730", + "alarmDate": "1769992918122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745799903", + "createdBy": null, + "createdTime": "2026-02-02 08:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:24", + "echoMap": {}, + "alarmNo": "1730617731", + "alarmDate": "1769992918956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800085", + "createdBy": null, + "createdTime": "2026-02-02 08:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:23", + "echoMap": {}, + "alarmNo": "1730617732", + "alarmDate": "1769992930289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800254", + "createdBy": null, + "createdTime": "2026-02-02 08:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:22", + "echoMap": {}, + "alarmNo": "1730617733", + "alarmDate": "1769992940621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800652", + "createdBy": null, + "createdTime": "2026-02-02 08:42:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:48", + "echoMap": {}, + "alarmNo": "1730617734", + "alarmDate": "1769992966861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800694", + "createdBy": null, + "createdTime": "2026-02-02 08:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:25", + "echoMap": {}, + "alarmNo": "1730617735", + "alarmDate": "1769992969354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119231040766999", + "createdBy": null, + "createdTime": "2026-02-02 08:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:55", + "echoMap": {}, + "alarmNo": "1730617736", + "alarmDate": "1769992970592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119235335734337", + "createdBy": null, + "createdTime": "2026-02-02 08:42:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:14", + "echoMap": {}, + "alarmNo": "1730617737", + "alarmDate": "1769992975044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630701799", + "createdBy": null, + "createdTime": "2026-02-02 08:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:04", + "echoMap": {}, + "alarmNo": "1730617739", + "alarmDate": "1769993522979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702057", + "createdBy": null, + "createdTime": "2026-02-02 08:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:20", + "echoMap": {}, + "alarmNo": "1730617740", + "alarmDate": "1769993538859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702169", + "createdBy": null, + "createdTime": "2026-02-02 08:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:50", + "echoMap": {}, + "alarmNo": "1730617741", + "alarmDate": "1769993546254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702288", + "createdBy": null, + "createdTime": "2026-02-02 08:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:50", + "echoMap": {}, + "alarmNo": "1730617742", + "alarmDate": "1769993553954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702298", + "createdBy": null, + "createdTime": "2026-02-02 08:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:35", + "echoMap": {}, + "alarmNo": "1730617743", + "alarmDate": "1769993554376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702338", + "createdBy": null, + "createdTime": "2026-02-02 08:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:00", + "echoMap": {}, + "alarmNo": "1730617744", + "alarmDate": "1769993556570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636332", + "createdBy": null, + "createdTime": "2026-02-02 09:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1730617745", + "alarmDate": "1769994117501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636570", + "createdBy": null, + "createdTime": "2026-02-02 09:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:07", + "echoMap": {}, + "alarmNo": "1730617746", + "alarmDate": "1769994132987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636876", + "createdBy": null, + "createdTime": "2026-02-02 09:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:52", + "echoMap": {}, + "alarmNo": "1730617747", + "alarmDate": "1769994154166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636962", + "createdBy": null, + "createdTime": "2026-02-02 09:02:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:41", + "echoMap": {}, + "alarmNo": "1730617748", + "alarmDate": "1769994159863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220637076", + "createdBy": null, + "createdTime": "2026-02-02 09:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:48", + "echoMap": {}, + "alarmNo": "1730617749", + "alarmDate": "1769994166589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538134", + "createdBy": null, + "createdTime": "2026-02-02 09:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:50", + "echoMap": {}, + "alarmNo": "1730617750", + "alarmDate": "1769994717375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538228", + "createdBy": null, + "createdTime": "2026-02-02 09:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:10", + "echoMap": {}, + "alarmNo": "1730617751", + "alarmDate": "1769994723268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538302", + "createdBy": null, + "createdTime": "2026-02-02 09:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:15", + "echoMap": {}, + "alarmNo": "1730617752", + "alarmDate": "1769994727799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538482", + "createdBy": null, + "createdTime": "2026-02-02 09:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:12", + "echoMap": {}, + "alarmNo": "1730617753", + "alarmDate": "1769994739444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538562", + "createdBy": null, + "createdTime": "2026-02-02 09:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:51", + "echoMap": {}, + "alarmNo": "1730617754", + "alarmDate": "1769994744410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538780", + "createdBy": null, + "createdTime": "2026-02-02 09:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:44", + "echoMap": {}, + "alarmNo": "1730617755", + "alarmDate": "1769994757730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538817", + "createdBy": null, + "createdTime": "2026-02-02 09:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:47", + "echoMap": {}, + "alarmNo": "1730617756", + "alarmDate": "1769994759863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695472866", + "createdBy": null, + "createdTime": "2026-02-02 09:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:58", + "echoMap": {}, + "alarmNo": "1730617757", + "alarmDate": "1769995316850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695472878", + "createdBy": null, + "createdTime": "2026-02-02 09:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:05", + "echoMap": {}, + "alarmNo": "1730617758", + "alarmDate": "1769995317501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695472883", + "createdBy": null, + "createdTime": "2026-02-02 09:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:30", + "echoMap": {}, + "alarmNo": "1730617759", + "alarmDate": "1769995317717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473093", + "createdBy": null, + "createdTime": "2026-02-02 09:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:16", + "echoMap": {}, + "alarmNo": "1730617760", + "alarmDate": "1769995330073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473142", + "createdBy": null, + "createdTime": "2026-02-02 09:22:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:38", + "echoMap": {}, + "alarmNo": "1730617761", + "alarmDate": "1769995332885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473364", + "createdBy": null, + "createdTime": "2026-02-02 09:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:27", + "echoMap": {}, + "alarmNo": "1730617762", + "alarmDate": "1769995345684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473409", + "createdBy": null, + "createdTime": "2026-02-02 09:22:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:47", + "echoMap": {}, + "alarmNo": "1730617763", + "alarmDate": "1769995348037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473435", + "createdBy": null, + "createdTime": "2026-02-02 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:37", + "echoMap": {}, + "alarmNo": "1730617764", + "alarmDate": "1769995349564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119273990439941", + "createdBy": null, + "createdTime": "2026-02-02 09:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:39", + "echoMap": {}, + "alarmNo": "1730617765", + "alarmDate": "1769995358292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119278285407641", + "createdBy": null, + "createdTime": "2026-02-02 09:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:40", + "echoMap": {}, + "alarmNo": "1730617766", + "alarmDate": "1769995921623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119278285407774", + "createdBy": null, + "createdTime": "2026-02-02 09:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:28", + "echoMap": {}, + "alarmNo": "1730617767", + "alarmDate": "1769995930302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875341889", + "createdBy": null, + "createdTime": "2026-02-02 09:32:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:44", + "echoMap": {}, + "alarmNo": "1730617768", + "alarmDate": "1769995963290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875341911", + "createdBy": null, + "createdTime": "2026-02-02 09:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:46", + "echoMap": {}, + "alarmNo": "1730617769", + "alarmDate": "1769995964751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342077", + "createdBy": null, + "createdTime": "2026-02-02 09:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:19", + "echoMap": {}, + "alarmNo": "1730617770", + "alarmDate": "1769995974407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342240", + "createdBy": null, + "createdTime": "2026-02-02 09:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:06", + "echoMap": {}, + "alarmNo": "1730617771", + "alarmDate": "1769996517375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342283", + "createdBy": null, + "createdTime": "2026-02-02 09:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:01", + "echoMap": {}, + "alarmNo": "1730617772", + "alarmDate": "1769996519972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342299", + "createdBy": null, + "createdTime": "2026-02-02 09:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:02", + "echoMap": {}, + "alarmNo": "1730617773", + "alarmDate": "1769996520544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342616", + "createdBy": null, + "createdTime": "2026-02-02 09:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:38", + "echoMap": {}, + "alarmNo": "1730617774", + "alarmDate": "1769996541283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465276558", + "createdBy": null, + "createdTime": "2026-02-02 09:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:52", + "echoMap": {}, + "alarmNo": "1730617775", + "alarmDate": "1769996565133", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465276864", + "createdBy": null, + "createdTime": "2026-02-02 09:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:13", + "echoMap": {}, + "alarmNo": "1730617776", + "alarmDate": "1769997116568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465277040", + "createdBy": null, + "createdTime": "2026-02-02 09:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:23", + "echoMap": {}, + "alarmNo": "1730617777", + "alarmDate": "1769997128269", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465277322", + "createdBy": null, + "createdTime": "2026-02-02 09:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:28", + "echoMap": {}, + "alarmNo": "1730617778", + "alarmDate": "1769997146565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465277352", + "createdBy": null, + "createdTime": "2026-02-02 09:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:08", + "echoMap": {}, + "alarmNo": "1730617779", + "alarmDate": "1769997148135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119299760243715", + "createdBy": null, + "createdTime": "2026-02-02 09:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:30", + "echoMap": {}, + "alarmNo": "1730617780", + "alarmDate": "1769997149029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211059", + "createdBy": null, + "createdTime": "2026-02-02 09:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:43", + "echoMap": {}, + "alarmNo": "1730617781", + "alarmDate": "1769997156754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211535", + "createdBy": null, + "createdTime": "2026-02-02 10:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:02", + "echoMap": {}, + "alarmNo": "1730617782", + "alarmDate": "1769997716859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211560", + "createdBy": null, + "createdTime": "2026-02-02 10:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:29", + "echoMap": {}, + "alarmNo": "1730617783", + "alarmDate": "1769997718353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060091", + "deviceName": "[101](10)国权上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211645", + "createdBy": null, + "createdTime": "2026-02-02 10:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:55", + "echoMap": {}, + "alarmNo": "1730617784", + "alarmDate": "1769997723128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645145836", + "createdBy": null, + "createdTime": "2026-02-02 10:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:51", + "echoMap": {}, + "alarmNo": "1730617785", + "alarmDate": "1769997765001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645145955", + "createdBy": null, + "createdTime": "2026-02-02 10:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:52", + "echoMap": {}, + "alarmNo": "1730617786", + "alarmDate": "1769997770632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146007", + "createdBy": null, + "createdTime": "2026-02-02 10:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:54", + "echoMap": {}, + "alarmNo": "1730617787", + "alarmDate": "1769997773330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146027", + "createdBy": null, + "createdTime": "2026-02-02 10:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:27", + "echoMap": {}, + "alarmNo": "1730617788", + "alarmDate": "1769997774397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146195", + "createdBy": null, + "createdTime": "2026-02-02 10:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:32", + "echoMap": {}, + "alarmNo": "1730617789", + "alarmDate": "1769998317434", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146343", + "createdBy": null, + "createdTime": "2026-02-02 10:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:08", + "echoMap": {}, + "alarmNo": "1730617790", + "alarmDate": "1769998326712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146385", + "createdBy": null, + "createdTime": "2026-02-02 10:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:21", + "echoMap": {}, + "alarmNo": "1730617791", + "alarmDate": "1769998329122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146428", + "createdBy": null, + "createdTime": "2026-02-02 10:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:12", + "echoMap": {}, + "alarmNo": "1730617792", + "alarmDate": "1769998331439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119325530047572", + "createdBy": null, + "createdTime": "2026-02-02 10:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:45", + "echoMap": {}, + "alarmNo": "1730617793", + "alarmDate": "1769998353179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119325530048114", + "createdBy": null, + "createdTime": "2026-02-02 10:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:09", + "echoMap": {}, + "alarmNo": "1730617794", + "alarmDate": "1769998917477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119329825014842", + "createdBy": null, + "createdTime": "2026-02-02 10:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:02", + "echoMap": {}, + "alarmNo": "1730617795", + "alarmDate": "1769998944066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982121", + "createdBy": null, + "createdTime": "2026-02-02 10:22:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:29", + "echoMap": {}, + "alarmNo": "1730617796", + "alarmDate": "1769998947712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982184", + "createdBy": null, + "createdTime": "2026-02-02 10:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:32", + "echoMap": {}, + "alarmNo": "1730617797", + "alarmDate": "1769998951532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982268", + "createdBy": null, + "createdTime": "2026-02-02 10:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:38", + "echoMap": {}, + "alarmNo": "1730617798", + "alarmDate": "1769998956730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982737", + "createdBy": null, + "createdTime": "2026-02-02 10:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:04", + "echoMap": {}, + "alarmNo": "1730617800", + "alarmDate": "1769999516689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982745", + "createdBy": null, + "createdTime": "2026-02-02 10:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:45", + "echoMap": {}, + "alarmNo": "1730617801", + "alarmDate": "1769999517156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982764", + "createdBy": null, + "createdTime": "2026-02-02 10:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:59", + "echoMap": {}, + "alarmNo": "1730617802", + "alarmDate": "1769999518140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982765", + "createdBy": null, + "createdTime": "2026-02-02 10:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:58", + "echoMap": {}, + "alarmNo": "1730617803", + "alarmDate": "1769999518188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119347004884025", + "createdBy": null, + "createdTime": "2026-02-02 10:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:42", + "echoMap": {}, + "alarmNo": "1730617804", + "alarmDate": "1769999548796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119347004884872", + "createdBy": null, + "createdTime": "2026-02-02 10:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:14", + "echoMap": {}, + "alarmNo": "1730617805", + "alarmDate": "1770000132580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786147", + "createdBy": null, + "createdTime": "2026-02-02 10:42:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:03", + "echoMap": {}, + "alarmNo": "1730617806", + "alarmDate": "1770000167498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786158", + "createdBy": null, + "createdTime": "2026-02-02 10:42:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:54", + "echoMap": {}, + "alarmNo": "1730617807", + "alarmDate": "1770000168082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786760", + "createdBy": null, + "createdTime": "2026-02-02 10:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:39", + "echoMap": {}, + "alarmNo": "1730617808", + "alarmDate": "1770000737054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786787", + "createdBy": null, + "createdTime": "2026-02-02 10:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:20", + "echoMap": {}, + "alarmNo": "1730617809", + "alarmDate": "1770000738522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720488", + "createdBy": null, + "createdTime": "2026-02-02 10:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:28", + "echoMap": {}, + "alarmNo": "1730617810", + "alarmDate": "1770000747350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720973", + "createdBy": null, + "createdTime": "2026-02-02 10:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:55", + "echoMap": {}, + "alarmNo": "1730617811", + "alarmDate": "1770000773638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720983", + "createdBy": null, + "createdTime": "2026-02-02 10:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:20", + "echoMap": {}, + "alarmNo": "1730617812", + "alarmDate": "1770000774010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720992", + "createdBy": null, + "createdTime": "2026-02-02 10:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:58", + "echoMap": {}, + "alarmNo": "1730617813", + "alarmDate": "1770000774344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479721367", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:11", + "echoMap": {}, + "alarmNo": "1730617814", + "alarmDate": "1770001330028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119372774687773", + "createdBy": null, + "createdTime": "2026-02-02 11:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:16", + "echoMap": {}, + "alarmNo": "1730617815", + "alarmDate": "1770001335076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060070", + "deviceName": "[207](10)国权下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119377069655285", + "createdBy": null, + "createdTime": "2026-02-02 11:02:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:32", + "echoMap": {}, + "alarmNo": "1730617816", + "alarmDate": "1770001354613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659589639", + "createdBy": null, + "createdTime": "2026-02-02 11:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:20", + "echoMap": {}, + "alarmNo": "1730617817", + "alarmDate": "1770001939479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659590216", + "createdBy": null, + "createdTime": "2026-02-02 11:12:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:54", + "echoMap": {}, + "alarmNo": "1730617818", + "alarmDate": "1770001973172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659590407", + "createdBy": null, + "createdTime": "2026-02-02 11:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:58", + "echoMap": {}, + "alarmNo": "1730617819", + "alarmDate": "1770002517986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659590461", + "createdBy": null, + "createdTime": "2026-02-02 11:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:02", + "echoMap": {}, + "alarmNo": "1730617820", + "alarmDate": "1770002521293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119398544491547", + "createdBy": null, + "createdTime": "2026-02-02 11:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:22", + "echoMap": {}, + "alarmNo": "1730617821", + "alarmDate": "1770002541044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119398544492068", + "createdBy": null, + "createdTime": "2026-02-02 11:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:52", + "echoMap": {}, + "alarmNo": "1730617822", + "alarmDate": "1770002572746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119398544492502", + "createdBy": null, + "createdTime": "2026-02-02 11:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:22", + "echoMap": {}, + "alarmNo": "1730617823", + "alarmDate": "1770003132243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119407134426161", + "createdBy": null, + "createdTime": "2026-02-02 11:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:21", + "echoMap": {}, + "alarmNo": "1730617824", + "alarmDate": "1770003139910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119411429393631", + "createdBy": null, + "createdTime": "2026-02-02 11:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:46", + "echoMap": {}, + "alarmNo": "1730617825", + "alarmDate": "1770003154312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119411429394169", + "createdBy": null, + "createdTime": "2026-02-02 11:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:39", + "echoMap": {}, + "alarmNo": "1730617826", + "alarmDate": "1770003717069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328070", + "createdBy": null, + "createdTime": "2026-02-02 11:42:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:24", + "echoMap": {}, + "alarmNo": "1730617827", + "alarmDate": "1770003742896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328111", + "createdBy": null, + "createdTime": "2026-02-02 11:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:26", + "echoMap": {}, + "alarmNo": "1730617828", + "alarmDate": "1770003745320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328287", + "createdBy": null, + "createdTime": "2026-02-02 11:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:38", + "echoMap": {}, + "alarmNo": "1730617829", + "alarmDate": "1770003756870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328746", + "createdBy": null, + "createdTime": "2026-02-02 11:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:45", + "echoMap": {}, + "alarmNo": "1730617831", + "alarmDate": "1770004317547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328917", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:16", + "echoMap": {}, + "alarmNo": "1730617832", + "alarmDate": "1770004329563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119424314295298", + "createdBy": null, + "createdTime": "2026-02-02 11:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:18", + "echoMap": {}, + "alarmNo": "1730617833", + "alarmDate": "1770004336780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119432904230104", + "createdBy": null, + "createdTime": "2026-02-02 11:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:49", + "echoMap": {}, + "alarmNo": "1730617834", + "alarmDate": "1770004357302", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060058", + "deviceName": "[317](10)国权4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119437199197214", + "createdBy": null, + "createdTime": "2026-02-02 12:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:25", + "echoMap": {}, + "alarmNo": "1730617835", + "alarmDate": "1770004937963", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494164503", + "createdBy": null, + "createdTime": "2026-02-02 12:02:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:34", + "echoMap": {}, + "alarmNo": "1730617836", + "alarmDate": "1770004941798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494164607", + "createdBy": null, + "createdTime": "2026-02-02 12:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:29", + "echoMap": {}, + "alarmNo": "1730617837", + "alarmDate": "1770004947769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494164894", + "createdBy": null, + "createdTime": "2026-02-02 12:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:45", + "echoMap": {}, + "alarmNo": "1730617838", + "alarmDate": "1770004964992", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165051", + "createdBy": null, + "createdTime": "2026-02-02 12:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:10", + "echoMap": {}, + "alarmNo": "1730617839", + "alarmDate": "1770004973311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165245", + "createdBy": null, + "createdTime": "2026-02-02 12:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:58", + "echoMap": {}, + "alarmNo": "1730617840", + "alarmDate": "1770005517993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060091", + "deviceName": "[101](10)国权上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165258", + "createdBy": null, + "createdTime": "2026-02-02 12:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:33", + "echoMap": {}, + "alarmNo": "1730617841", + "alarmDate": "1770005518669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165340", + "createdBy": null, + "createdTime": "2026-02-02 12:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:09", + "echoMap": {}, + "alarmNo": "1730617842", + "alarmDate": "1770005522998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066379", + "createdBy": null, + "createdTime": "2026-02-02 12:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:23", + "echoMap": {}, + "alarmNo": "1730617843", + "alarmDate": "1770005541664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066435", + "createdBy": null, + "createdTime": "2026-02-02 12:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:26", + "echoMap": {}, + "alarmNo": "1730617844", + "alarmDate": "1770005544651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066539", + "createdBy": null, + "createdTime": "2026-02-02 12:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:31", + "echoMap": {}, + "alarmNo": "1730617845", + "alarmDate": "1770005550141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066717", + "createdBy": null, + "createdTime": "2026-02-02 12:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1730617846", + "alarmDate": "1770005560216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379067362", + "createdBy": null, + "createdTime": "2026-02-02 12:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1730617847", + "alarmDate": "1770006129658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119462969001568", + "createdBy": null, + "createdTime": "2026-02-02 12:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:26", + "echoMap": {}, + "alarmNo": "1730617848", + "alarmDate": "1770006173408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119471558935558", + "createdBy": null, + "createdTime": "2026-02-02 12:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:12", + "echoMap": {}, + "alarmNo": "1730617849", + "alarmDate": "1770006733990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119475853903306", + "createdBy": null, + "createdTime": "2026-02-02 12:32:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:38", + "echoMap": {}, + "alarmNo": "1730617850", + "alarmDate": "1770006767450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119475853903588", + "createdBy": null, + "createdTime": "2026-02-02 12:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:54", + "echoMap": {}, + "alarmNo": "1730617851", + "alarmDate": "1770007316700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119475853903841", + "createdBy": null, + "createdTime": "2026-02-02 12:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:13", + "echoMap": {}, + "alarmNo": "1730617852", + "alarmDate": "1770007332425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805018", + "createdBy": null, + "createdTime": "2026-02-02 12:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:37", + "echoMap": {}, + "alarmNo": "1730617853", + "alarmDate": "1770007355942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805141", + "createdBy": null, + "createdTime": "2026-02-02 12:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:50", + "echoMap": {}, + "alarmNo": "1730617854", + "alarmDate": "1770007362921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805338", + "createdBy": null, + "createdTime": "2026-02-02 12:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:53", + "echoMap": {}, + "alarmNo": "1730617855", + "alarmDate": "1770007372405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805661", + "createdBy": null, + "createdTime": "2026-02-02 12:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:06", + "echoMap": {}, + "alarmNo": "1730617856", + "alarmDate": "1770007924562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119493033772082", + "createdBy": null, + "createdTime": "2026-02-02 12:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:38", + "echoMap": {}, + "alarmNo": "1730617857", + "alarmDate": "1770007933043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119501623706688", + "createdBy": null, + "createdTime": "2026-02-02 12:52:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:22", + "echoMap": {}, + "alarmNo": "1730617858", + "alarmDate": "1770007941287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119501623707453", + "createdBy": null, + "createdTime": "2026-02-02 13:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:05", + "echoMap": {}, + "alarmNo": "1730617859", + "alarmDate": "1770008517077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119501623707587", + "createdBy": null, + "createdTime": "2026-02-02 13:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:07", + "echoMap": {}, + "alarmNo": "1730617860", + "alarmDate": "1770008525881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119510213641700", + "createdBy": null, + "createdTime": "2026-02-02 13:02:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:50", + "echoMap": {}, + "alarmNo": "1730617861", + "alarmDate": "1770008564407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119510213641770", + "createdBy": null, + "createdTime": "2026-02-02 13:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:49", + "echoMap": {}, + "alarmNo": "1730617862", + "alarmDate": "1770008567987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119510213642039", + "createdBy": null, + "createdTime": "2026-02-02 13:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:57", + "echoMap": {}, + "alarmNo": "1730617863", + "alarmDate": "1770009116908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803575964", + "createdBy": null, + "createdTime": "2026-02-02 13:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:39", + "echoMap": {}, + "alarmNo": "1730617864", + "alarmDate": "1770009139547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803575971", + "createdBy": null, + "createdTime": "2026-02-02 13:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:33", + "echoMap": {}, + "alarmNo": "1730617865", + "alarmDate": "1770009139880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803576331", + "createdBy": null, + "createdTime": "2026-02-02 13:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:41", + "echoMap": {}, + "alarmNo": "1730617866", + "alarmDate": "1770009159790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803576489", + "createdBy": null, + "createdTime": "2026-02-02 13:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:49", + "echoMap": {}, + "alarmNo": "1730617867", + "alarmDate": "1770009168160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803576771", + "createdBy": null, + "createdTime": "2026-02-02 13:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:02", + "echoMap": {}, + "alarmNo": "1730617868", + "alarmDate": "1770009716841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119523098543120", + "createdBy": null, + "createdTime": "2026-02-02 13:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:02", + "echoMap": {}, + "alarmNo": "1730617869", + "alarmDate": "1770009721440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119531688478076", + "createdBy": null, + "createdTime": "2026-02-02 13:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:33", + "echoMap": {}, + "alarmNo": "1730617870", + "alarmDate": "1770009752243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119531688478288", + "createdBy": null, + "createdTime": "2026-02-02 13:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:52", + "echoMap": {}, + "alarmNo": "1730617871", + "alarmDate": "1770009765869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119535983445066", + "createdBy": null, + "createdTime": "2026-02-02 13:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:10", + "echoMap": {}, + "alarmNo": "1730617872", + "alarmDate": "1770010328754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119544573379775", + "createdBy": null, + "createdTime": "2026-02-02 13:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:46", + "echoMap": {}, + "alarmNo": "1730617873", + "alarmDate": "1770010348003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119544573379866", + "createdBy": null, + "createdTime": "2026-02-02 13:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:34", + "echoMap": {}, + "alarmNo": "1730617874", + "alarmDate": "1770010352860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119544573380418", + "createdBy": null, + "createdTime": "2026-02-02 13:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:18", + "echoMap": {}, + "alarmNo": "1730617875", + "alarmDate": "1770010917358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314478", + "createdBy": null, + "createdTime": "2026-02-02 13:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:34", + "echoMap": {}, + "alarmNo": "1730617876", + "alarmDate": "1770010952974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314656", + "createdBy": null, + "createdTime": "2026-02-02 13:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:46", + "echoMap": {}, + "alarmNo": "1730617877", + "alarmDate": "1770010965102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314664", + "createdBy": null, + "createdTime": "2026-02-02 13:42:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:47", + "echoMap": {}, + "alarmNo": "1730617878", + "alarmDate": "1770010965626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314725", + "createdBy": null, + "createdTime": "2026-02-02 13:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:49", + "echoMap": {}, + "alarmNo": "1730617879", + "alarmDate": "1770010969020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314969", + "createdBy": null, + "createdTime": "2026-02-02 13:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:57", + "echoMap": {}, + "alarmNo": "1730617880", + "alarmDate": "1770011516144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314977", + "createdBy": null, + "createdTime": "2026-02-02 13:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:19", + "echoMap": {}, + "alarmNo": "1730617881", + "alarmDate": "1770011516691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314992", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:18", + "echoMap": {}, + "alarmNo": "1730617882", + "alarmDate": "1770011517584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163315003", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:53", + "echoMap": {}, + "alarmNo": "1730617883", + "alarmDate": "1770011517982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163315053", + "createdBy": null, + "createdTime": "2026-02-02 13:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:02", + "echoMap": {}, + "alarmNo": "1730617884", + "alarmDate": "1770011520900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249269", + "createdBy": null, + "createdTime": "2026-02-02 13:52:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:46", + "echoMap": {}, + "alarmNo": "1730617885", + "alarmDate": "1770011565234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249592", + "createdBy": null, + "createdTime": "2026-02-02 14:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1730617887", + "alarmDate": "1770012117267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249598", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:45", + "echoMap": {}, + "alarmNo": "1730617888", + "alarmDate": "1770012117657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249642", + "createdBy": null, + "createdTime": "2026-02-02 14:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:01", + "echoMap": {}, + "alarmNo": "1730617889", + "alarmDate": "1770012120328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119574638150716", + "createdBy": null, + "createdTime": "2026-02-02 14:02:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:25", + "echoMap": {}, + "alarmNo": "1730617890", + "alarmDate": "1770012143481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119574638151095", + "createdBy": null, + "createdTime": "2026-02-02 14:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:29", + "echoMap": {}, + "alarmNo": "1730617891", + "alarmDate": "1770012168000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119574638151388", + "createdBy": null, + "createdTime": "2026-02-02 14:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:58", + "echoMap": {}, + "alarmNo": "1730617892", + "alarmDate": "1770012718018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523052742", + "createdBy": null, + "createdTime": "2026-02-02 14:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:42", + "echoMap": {}, + "alarmNo": "1730617893", + "alarmDate": "1770012760948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523052914", + "createdBy": null, + "createdTime": "2026-02-02 14:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:52", + "echoMap": {}, + "alarmNo": "1730617894", + "alarmDate": "1770012770446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523053137", + "createdBy": null, + "createdTime": "2026-02-02 14:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:05", + "echoMap": {}, + "alarmNo": "1730617895", + "alarmDate": "1770013317274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523053301", + "createdBy": null, + "createdTime": "2026-02-02 14:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:08", + "echoMap": {}, + "alarmNo": "1730617896", + "alarmDate": "1770013326721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119591818019909", + "createdBy": null, + "createdTime": "2026-02-02 14:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:24", + "echoMap": {}, + "alarmNo": "1730617897", + "alarmDate": "1770013344492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112987314", + "createdBy": null, + "createdTime": "2026-02-02 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:00", + "echoMap": {}, + "alarmNo": "1730617898", + "alarmDate": "1770013355348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112987677", + "createdBy": null, + "createdTime": "2026-02-02 14:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:55", + "echoMap": {}, + "alarmNo": "1730617899", + "alarmDate": "1770013374060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112988095", + "createdBy": null, + "createdTime": "2026-02-02 14:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:12", + "echoMap": {}, + "alarmNo": "1730617900", + "alarmDate": "1770013931236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112988136", + "createdBy": null, + "createdTime": "2026-02-02 14:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:14", + "echoMap": {}, + "alarmNo": "1730617901", + "alarmDate": "1770013933264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889116", + "createdBy": null, + "createdTime": "2026-02-02 14:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:36", + "echoMap": {}, + "alarmNo": "1730617902", + "alarmDate": "1770013949145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889124", + "createdBy": null, + "createdTime": "2026-02-02 14:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:36", + "echoMap": {}, + "alarmNo": "1730617903", + "alarmDate": "1770013949527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889475", + "createdBy": null, + "createdTime": "2026-02-02 14:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:49", + "echoMap": {}, + "alarmNo": "1730617904", + "alarmDate": "1770013968666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889522", + "createdBy": null, + "createdTime": "2026-02-02 14:32:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:50", + "echoMap": {}, + "alarmNo": "1730617905", + "alarmDate": "1770013970344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723118741414495306", + "createdBy": null, + "createdTime": "2026-02-02 00:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:45", + "echoMap": {}, + "alarmNo": "1730617470", + "alarmDate": "1769962365752", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1023030011", + "deviceName": "安防箱11", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1023" + }, + { + "id": "723119115076650625", + "createdBy": null, + "createdTime": "2026-02-02 06:47:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:50", + "echoMap": {}, + "alarmNo": "1730617669", + "alarmDate": "1769986069031", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1023" + } + ], + "ndmSwitch": [ + { + "id": "723118754299397975", + "createdBy": null, + "createdTime": "2026-02-02 00:37:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:49", + "echoMap": {}, + "alarmNo": "1730617482", + "alarmDate": "1769963869100", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118818723906884", + "createdBy": null, + "createdTime": "2026-02-02 01:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:50", + "echoMap": {}, + "alarmNo": "1730617505", + "alarmDate": "1769968009038", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118823018873941", + "createdBy": null, + "createdTime": "2026-02-02 01:53:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:49", + "echoMap": {}, + "alarmNo": "1730617512", + "alarmDate": "1769968430210", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118823018874018", + "createdBy": null, + "createdTime": "2026-02-02 01:58:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1730617513", + "alarmDate": "1769968730217", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118848788678248", + "createdBy": null, + "createdTime": "2026-02-02 02:29:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:50", + "echoMap": {}, + "alarmNo": "1730617521", + "alarmDate": "1769970589036", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118848788678278", + "createdBy": null, + "createdTime": "2026-02-02 02:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:49", + "echoMap": {}, + "alarmNo": "1730617522", + "alarmDate": "1769970710128", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118908918220455", + "createdBy": null, + "createdTime": "2026-02-02 03:35:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:49", + "echoMap": {}, + "alarmNo": "1730617541", + "alarmDate": "1769974550131", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119003407500382", + "createdBy": null, + "createdTime": "2026-02-02 05:11:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:13:50", + "echoMap": {}, + "alarmNo": "1730617587", + "alarmDate": "1769980310080", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119046357173662", + "createdBy": null, + "createdTime": "2026-02-02 05:43:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:50", + "echoMap": {}, + "alarmNo": "1730617617", + "alarmDate": "1769982228976", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119102191748827", + "createdBy": null, + "createdTime": "2026-02-02 06:39:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:50", + "echoMap": {}, + "alarmNo": "1730617663", + "alarmDate": "1769985588970", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119239630701586", + "createdBy": null, + "createdTime": "2026-02-02 08:44:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:50", + "echoMap": {}, + "alarmNo": "1730617738", + "alarmDate": "1769993088947", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119334119982681", + "createdBy": null, + "createdTime": "2026-02-02 10:28:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:50", + "echoMap": {}, + "alarmNo": "1730617799", + "alarmDate": "1769999329114", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119420019328670", + "createdBy": null, + "createdTime": "2026-02-02 11:47:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:50", + "echoMap": {}, + "alarmNo": "1730617830", + "alarmDate": "1770004070149", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119561753249478", + "createdBy": null, + "createdTime": "2026-02-02 13:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:50", + "echoMap": {}, + "alarmNo": "1730617886", + "alarmDate": "1770011750078", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723119608997889522", + "createdBy": null, + "createdTime": "2026-02-02 14:32:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:50", + "echoMap": {}, + "alarmNo": "1730617905", + "alarmDate": "1770013970344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889475", + "createdBy": null, + "createdTime": "2026-02-02 14:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:49", + "echoMap": {}, + "alarmNo": "1730617904", + "alarmDate": "1770013968666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889124", + "createdBy": null, + "createdTime": "2026-02-02 14:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:36", + "echoMap": {}, + "alarmNo": "1730617903", + "alarmDate": "1770013949527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119608997889116", + "createdBy": null, + "createdTime": "2026-02-02 14:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:36", + "echoMap": {}, + "alarmNo": "1730617902", + "alarmDate": "1770013949145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112988136", + "createdBy": null, + "createdTime": "2026-02-02 14:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:14", + "echoMap": {}, + "alarmNo": "1730617901", + "alarmDate": "1770013933264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112988095", + "createdBy": null, + "createdTime": "2026-02-02 14:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:12", + "echoMap": {}, + "alarmNo": "1730617900", + "alarmDate": "1770013931236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112987677", + "createdBy": null, + "createdTime": "2026-02-02 14:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:55", + "echoMap": {}, + "alarmNo": "1730617899", + "alarmDate": "1770013374060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119596112987314", + "createdBy": null, + "createdTime": "2026-02-02 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:00", + "echoMap": {}, + "alarmNo": "1730617898", + "alarmDate": "1770013355348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119591818019909", + "createdBy": null, + "createdTime": "2026-02-02 14:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:24", + "echoMap": {}, + "alarmNo": "1730617897", + "alarmDate": "1770013344492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523053301", + "createdBy": null, + "createdTime": "2026-02-02 14:22:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:08", + "echoMap": {}, + "alarmNo": "1730617896", + "alarmDate": "1770013326721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523053137", + "createdBy": null, + "createdTime": "2026-02-02 14:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:05", + "echoMap": {}, + "alarmNo": "1730617895", + "alarmDate": "1770013317274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523052914", + "createdBy": null, + "createdTime": "2026-02-02 14:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:52", + "echoMap": {}, + "alarmNo": "1730617894", + "alarmDate": "1770012770446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119587523052742", + "createdBy": null, + "createdTime": "2026-02-02 14:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:42", + "echoMap": {}, + "alarmNo": "1730617893", + "alarmDate": "1770012760948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119574638151388", + "createdBy": null, + "createdTime": "2026-02-02 14:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:58", + "echoMap": {}, + "alarmNo": "1730617892", + "alarmDate": "1770012718018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119574638151095", + "createdBy": null, + "createdTime": "2026-02-02 14:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:29", + "echoMap": {}, + "alarmNo": "1730617891", + "alarmDate": "1770012168000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119574638150716", + "createdBy": null, + "createdTime": "2026-02-02 14:02:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:25", + "echoMap": {}, + "alarmNo": "1730617890", + "alarmDate": "1770012143481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249642", + "createdBy": null, + "createdTime": "2026-02-02 14:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:01", + "echoMap": {}, + "alarmNo": "1730617889", + "alarmDate": "1770012120328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249598", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:45", + "echoMap": {}, + "alarmNo": "1730617888", + "alarmDate": "1770012117657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249592", + "createdBy": null, + "createdTime": "2026-02-02 14:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:13", + "echoMap": {}, + "alarmNo": "1730617887", + "alarmDate": "1770012117267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119561753249478", + "createdBy": null, + "createdTime": "2026-02-02 13:55:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:50", + "echoMap": {}, + "alarmNo": "1730617886", + "alarmDate": "1770011750078", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119561753249269", + "createdBy": null, + "createdTime": "2026-02-02 13:52:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:46", + "echoMap": {}, + "alarmNo": "1730617885", + "alarmDate": "1770011565234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163315053", + "createdBy": null, + "createdTime": "2026-02-02 13:52:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:02", + "echoMap": {}, + "alarmNo": "1730617884", + "alarmDate": "1770011520900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163315003", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:53", + "echoMap": {}, + "alarmNo": "1730617883", + "alarmDate": "1770011517982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314992", + "createdBy": null, + "createdTime": "2026-02-02 13:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:18", + "echoMap": {}, + "alarmNo": "1730617882", + "alarmDate": "1770011517584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314977", + "createdBy": null, + "createdTime": "2026-02-02 13:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:19", + "echoMap": {}, + "alarmNo": "1730617881", + "alarmDate": "1770011516691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314969", + "createdBy": null, + "createdTime": "2026-02-02 13:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:57", + "echoMap": {}, + "alarmNo": "1730617880", + "alarmDate": "1770011516144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314725", + "createdBy": null, + "createdTime": "2026-02-02 13:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:49", + "echoMap": {}, + "alarmNo": "1730617879", + "alarmDate": "1770010969020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314664", + "createdBy": null, + "createdTime": "2026-02-02 13:42:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:47", + "echoMap": {}, + "alarmNo": "1730617878", + "alarmDate": "1770010965626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314656", + "createdBy": null, + "createdTime": "2026-02-02 13:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:46", + "echoMap": {}, + "alarmNo": "1730617877", + "alarmDate": "1770010965102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119553163314478", + "createdBy": null, + "createdTime": "2026-02-02 13:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:34", + "echoMap": {}, + "alarmNo": "1730617876", + "alarmDate": "1770010952974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119544573380418", + "createdBy": null, + "createdTime": "2026-02-02 13:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:18", + "echoMap": {}, + "alarmNo": "1730617875", + "alarmDate": "1770010917358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119544573379866", + "createdBy": null, + "createdTime": "2026-02-02 13:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:34", + "echoMap": {}, + "alarmNo": "1730617874", + "alarmDate": "1770010352860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119544573379775", + "createdBy": null, + "createdTime": "2026-02-02 13:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:46", + "echoMap": {}, + "alarmNo": "1730617873", + "alarmDate": "1770010348003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119535983445066", + "createdBy": null, + "createdTime": "2026-02-02 13:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:10", + "echoMap": {}, + "alarmNo": "1730617872", + "alarmDate": "1770010328754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119531688478288", + "createdBy": null, + "createdTime": "2026-02-02 13:22:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:52", + "echoMap": {}, + "alarmNo": "1730617871", + "alarmDate": "1770009765869", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119531688478076", + "createdBy": null, + "createdTime": "2026-02-02 13:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:33", + "echoMap": {}, + "alarmNo": "1730617870", + "alarmDate": "1770009752243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119523098543120", + "createdBy": null, + "createdTime": "2026-02-02 13:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:02", + "echoMap": {}, + "alarmNo": "1730617869", + "alarmDate": "1770009721440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803576771", + "createdBy": null, + "createdTime": "2026-02-02 13:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:02", + "echoMap": {}, + "alarmNo": "1730617868", + "alarmDate": "1770009716841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803576489", + "createdBy": null, + "createdTime": "2026-02-02 13:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:49", + "echoMap": {}, + "alarmNo": "1730617867", + "alarmDate": "1770009168160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803576331", + "createdBy": null, + "createdTime": "2026-02-02 13:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:41", + "echoMap": {}, + "alarmNo": "1730617866", + "alarmDate": "1770009159790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803575971", + "createdBy": null, + "createdTime": "2026-02-02 13:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:33", + "echoMap": {}, + "alarmNo": "1730617865", + "alarmDate": "1770009139880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119518803575964", + "createdBy": null, + "createdTime": "2026-02-02 13:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:39", + "echoMap": {}, + "alarmNo": "1730617864", + "alarmDate": "1770009139547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119510213642039", + "createdBy": null, + "createdTime": "2026-02-02 13:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:57", + "echoMap": {}, + "alarmNo": "1730617863", + "alarmDate": "1770009116908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119510213641770", + "createdBy": null, + "createdTime": "2026-02-02 13:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:49", + "echoMap": {}, + "alarmNo": "1730617862", + "alarmDate": "1770008567987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119510213641700", + "createdBy": null, + "createdTime": "2026-02-02 13:02:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:50", + "echoMap": {}, + "alarmNo": "1730617861", + "alarmDate": "1770008564407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119501623707587", + "createdBy": null, + "createdTime": "2026-02-02 13:02:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:07", + "echoMap": {}, + "alarmNo": "1730617860", + "alarmDate": "1770008525881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119501623707453", + "createdBy": null, + "createdTime": "2026-02-02 13:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:05", + "echoMap": {}, + "alarmNo": "1730617859", + "alarmDate": "1770008517077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119501623706688", + "createdBy": null, + "createdTime": "2026-02-02 12:52:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:22", + "echoMap": {}, + "alarmNo": "1730617858", + "alarmDate": "1770007941287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119493033772082", + "createdBy": null, + "createdTime": "2026-02-02 12:52:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:38", + "echoMap": {}, + "alarmNo": "1730617857", + "alarmDate": "1770007933043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805661", + "createdBy": null, + "createdTime": "2026-02-02 12:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:06", + "echoMap": {}, + "alarmNo": "1730617856", + "alarmDate": "1770007924562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805338", + "createdBy": null, + "createdTime": "2026-02-02 12:42:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:53", + "echoMap": {}, + "alarmNo": "1730617855", + "alarmDate": "1770007372405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805141", + "createdBy": null, + "createdTime": "2026-02-02 12:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:50", + "echoMap": {}, + "alarmNo": "1730617854", + "alarmDate": "1770007362921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119488738805018", + "createdBy": null, + "createdTime": "2026-02-02 12:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:37", + "echoMap": {}, + "alarmNo": "1730617853", + "alarmDate": "1770007355942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119475853903841", + "createdBy": null, + "createdTime": "2026-02-02 12:42:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:13", + "echoMap": {}, + "alarmNo": "1730617852", + "alarmDate": "1770007332425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119475853903588", + "createdBy": null, + "createdTime": "2026-02-02 12:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:54", + "echoMap": {}, + "alarmNo": "1730617851", + "alarmDate": "1770007316700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119475853903306", + "createdBy": null, + "createdTime": "2026-02-02 12:32:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:38", + "echoMap": {}, + "alarmNo": "1730617850", + "alarmDate": "1770006767450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119471558935558", + "createdBy": null, + "createdTime": "2026-02-02 12:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:22:12", + "echoMap": {}, + "alarmNo": "1730617849", + "alarmDate": "1770006733990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119462969001568", + "createdBy": null, + "createdTime": "2026-02-02 12:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:26", + "echoMap": {}, + "alarmNo": "1730617848", + "alarmDate": "1770006173408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379067362", + "createdBy": null, + "createdTime": "2026-02-02 12:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1730617847", + "alarmDate": "1770006129658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066717", + "createdBy": null, + "createdTime": "2026-02-02 12:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:11", + "echoMap": {}, + "alarmNo": "1730617846", + "alarmDate": "1770005560216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066539", + "createdBy": null, + "createdTime": "2026-02-02 12:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:31", + "echoMap": {}, + "alarmNo": "1730617845", + "alarmDate": "1770005550141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066435", + "createdBy": null, + "createdTime": "2026-02-02 12:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:26", + "echoMap": {}, + "alarmNo": "1730617844", + "alarmDate": "1770005544651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119454379066379", + "createdBy": null, + "createdTime": "2026-02-02 12:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:23", + "echoMap": {}, + "alarmNo": "1730617843", + "alarmDate": "1770005541664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165340", + "createdBy": null, + "createdTime": "2026-02-02 12:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:09", + "echoMap": {}, + "alarmNo": "1730617842", + "alarmDate": "1770005522998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165258", + "createdBy": null, + "createdTime": "2026-02-02 12:11:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:33", + "echoMap": {}, + "alarmNo": "1730617841", + "alarmDate": "1770005518669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165245", + "createdBy": null, + "createdTime": "2026-02-02 12:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:58", + "echoMap": {}, + "alarmNo": "1730617840", + "alarmDate": "1770005517993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060091", + "deviceName": "[101](10)国权上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494165051", + "createdBy": null, + "createdTime": "2026-02-02 12:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:10", + "echoMap": {}, + "alarmNo": "1730617839", + "alarmDate": "1770004973311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494164894", + "createdBy": null, + "createdTime": "2026-02-02 12:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:45", + "echoMap": {}, + "alarmNo": "1730617838", + "alarmDate": "1770004964992", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494164607", + "createdBy": null, + "createdTime": "2026-02-02 12:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:29", + "echoMap": {}, + "alarmNo": "1730617837", + "alarmDate": "1770004947769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119441494164503", + "createdBy": null, + "createdTime": "2026-02-02 12:02:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:34", + "echoMap": {}, + "alarmNo": "1730617836", + "alarmDate": "1770004941798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119437199197214", + "createdBy": null, + "createdTime": "2026-02-02 12:02:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:25", + "echoMap": {}, + "alarmNo": "1730617835", + "alarmDate": "1770004937963", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119432904230104", + "createdBy": null, + "createdTime": "2026-02-02 11:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:49", + "echoMap": {}, + "alarmNo": "1730617834", + "alarmDate": "1770004357302", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060058", + "deviceName": "[317](10)国权4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119424314295298", + "createdBy": null, + "createdTime": "2026-02-02 11:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:18", + "echoMap": {}, + "alarmNo": "1730617833", + "alarmDate": "1770004336780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328917", + "createdBy": null, + "createdTime": "2026-02-02 11:52:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:16", + "echoMap": {}, + "alarmNo": "1730617832", + "alarmDate": "1770004329563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328746", + "createdBy": null, + "createdTime": "2026-02-02 11:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:45", + "echoMap": {}, + "alarmNo": "1730617831", + "alarmDate": "1770004317547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328670", + "createdBy": null, + "createdTime": "2026-02-02 11:47:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:50", + "echoMap": {}, + "alarmNo": "1730617830", + "alarmDate": "1770004070149", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119420019328287", + "createdBy": null, + "createdTime": "2026-02-02 11:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:38", + "echoMap": {}, + "alarmNo": "1730617829", + "alarmDate": "1770003756870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328111", + "createdBy": null, + "createdTime": "2026-02-02 11:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:26", + "echoMap": {}, + "alarmNo": "1730617828", + "alarmDate": "1770003745320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119420019328070", + "createdBy": null, + "createdTime": "2026-02-02 11:42:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:24", + "echoMap": {}, + "alarmNo": "1730617827", + "alarmDate": "1770003742896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119411429394169", + "createdBy": null, + "createdTime": "2026-02-02 11:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:39", + "echoMap": {}, + "alarmNo": "1730617826", + "alarmDate": "1770003717069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119411429393631", + "createdBy": null, + "createdTime": "2026-02-02 11:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:46", + "echoMap": {}, + "alarmNo": "1730617825", + "alarmDate": "1770003154312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119407134426161", + "createdBy": null, + "createdTime": "2026-02-02 11:32:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:21", + "echoMap": {}, + "alarmNo": "1730617824", + "alarmDate": "1770003139910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119398544492502", + "createdBy": null, + "createdTime": "2026-02-02 11:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:22", + "echoMap": {}, + "alarmNo": "1730617823", + "alarmDate": "1770003132243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119398544492068", + "createdBy": null, + "createdTime": "2026-02-02 11:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:52", + "echoMap": {}, + "alarmNo": "1730617822", + "alarmDate": "1770002572746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119398544491547", + "createdBy": null, + "createdTime": "2026-02-02 11:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:22", + "echoMap": {}, + "alarmNo": "1730617821", + "alarmDate": "1770002541044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659590461", + "createdBy": null, + "createdTime": "2026-02-02 11:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:02", + "echoMap": {}, + "alarmNo": "1730617820", + "alarmDate": "1770002521293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659590407", + "createdBy": null, + "createdTime": "2026-02-02 11:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:58", + "echoMap": {}, + "alarmNo": "1730617819", + "alarmDate": "1770002517986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659590216", + "createdBy": null, + "createdTime": "2026-02-02 11:12:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:54", + "echoMap": {}, + "alarmNo": "1730617818", + "alarmDate": "1770001973172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119385659589639", + "createdBy": null, + "createdTime": "2026-02-02 11:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:20", + "echoMap": {}, + "alarmNo": "1730617817", + "alarmDate": "1770001939479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119377069655285", + "createdBy": null, + "createdTime": "2026-02-02 11:02:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:32", + "echoMap": {}, + "alarmNo": "1730617816", + "alarmDate": "1770001354613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119372774687773", + "createdBy": null, + "createdTime": "2026-02-02 11:02:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:16", + "echoMap": {}, + "alarmNo": "1730617815", + "alarmDate": "1770001335076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060070", + "deviceName": "[207](10)国权下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479721367", + "createdBy": null, + "createdTime": "2026-02-02 11:02:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:11", + "echoMap": {}, + "alarmNo": "1730617814", + "alarmDate": "1770001330028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720992", + "createdBy": null, + "createdTime": "2026-02-02 10:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:58", + "echoMap": {}, + "alarmNo": "1730617813", + "alarmDate": "1770000774344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720983", + "createdBy": null, + "createdTime": "2026-02-02 10:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:20", + "echoMap": {}, + "alarmNo": "1730617812", + "alarmDate": "1770000774010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720973", + "createdBy": null, + "createdTime": "2026-02-02 10:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:55", + "echoMap": {}, + "alarmNo": "1730617811", + "alarmDate": "1770000773638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119368479720488", + "createdBy": null, + "createdTime": "2026-02-02 10:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:28", + "echoMap": {}, + "alarmNo": "1730617810", + "alarmDate": "1770000747350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786787", + "createdBy": null, + "createdTime": "2026-02-02 10:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:20", + "echoMap": {}, + "alarmNo": "1730617809", + "alarmDate": "1770000738522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786760", + "createdBy": null, + "createdTime": "2026-02-02 10:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:39", + "echoMap": {}, + "alarmNo": "1730617808", + "alarmDate": "1770000737054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786158", + "createdBy": null, + "createdTime": "2026-02-02 10:42:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:54", + "echoMap": {}, + "alarmNo": "1730617807", + "alarmDate": "1770000168082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119359889786147", + "createdBy": null, + "createdTime": "2026-02-02 10:42:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:03", + "echoMap": {}, + "alarmNo": "1730617806", + "alarmDate": "1770000167498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119347004884872", + "createdBy": null, + "createdTime": "2026-02-02 10:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:14", + "echoMap": {}, + "alarmNo": "1730617805", + "alarmDate": "1770000132580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119347004884025", + "createdBy": null, + "createdTime": "2026-02-02 10:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:42", + "echoMap": {}, + "alarmNo": "1730617804", + "alarmDate": "1769999548796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982765", + "createdBy": null, + "createdTime": "2026-02-02 10:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:58", + "echoMap": {}, + "alarmNo": "1730617803", + "alarmDate": "1769999518188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982764", + "createdBy": null, + "createdTime": "2026-02-02 10:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:59", + "echoMap": {}, + "alarmNo": "1730617802", + "alarmDate": "1769999518140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982745", + "createdBy": null, + "createdTime": "2026-02-02 10:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:45", + "echoMap": {}, + "alarmNo": "1730617801", + "alarmDate": "1769999517156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982737", + "createdBy": null, + "createdTime": "2026-02-02 10:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:04", + "echoMap": {}, + "alarmNo": "1730617800", + "alarmDate": "1769999516689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982681", + "createdBy": null, + "createdTime": "2026-02-02 10:28:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:50", + "echoMap": {}, + "alarmNo": "1730617799", + "alarmDate": "1769999329114", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119334119982268", + "createdBy": null, + "createdTime": "2026-02-02 10:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:38", + "echoMap": {}, + "alarmNo": "1730617798", + "alarmDate": "1769998956730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982184", + "createdBy": null, + "createdTime": "2026-02-02 10:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:32", + "echoMap": {}, + "alarmNo": "1730617797", + "alarmDate": "1769998951532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119334119982121", + "createdBy": null, + "createdTime": "2026-02-02 10:22:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:29", + "echoMap": {}, + "alarmNo": "1730617796", + "alarmDate": "1769998947712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119329825014842", + "createdBy": null, + "createdTime": "2026-02-02 10:22:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:02", + "echoMap": {}, + "alarmNo": "1730617795", + "alarmDate": "1769998944066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119325530048114", + "createdBy": null, + "createdTime": "2026-02-02 10:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:09", + "echoMap": {}, + "alarmNo": "1730617794", + "alarmDate": "1769998917477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119325530047572", + "createdBy": null, + "createdTime": "2026-02-02 10:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:45", + "echoMap": {}, + "alarmNo": "1730617793", + "alarmDate": "1769998353179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146428", + "createdBy": null, + "createdTime": "2026-02-02 10:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:12", + "echoMap": {}, + "alarmNo": "1730617792", + "alarmDate": "1769998331439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146385", + "createdBy": null, + "createdTime": "2026-02-02 10:12:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:21", + "echoMap": {}, + "alarmNo": "1730617791", + "alarmDate": "1769998329122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146343", + "createdBy": null, + "createdTime": "2026-02-02 10:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:08", + "echoMap": {}, + "alarmNo": "1730617790", + "alarmDate": "1769998326712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146195", + "createdBy": null, + "createdTime": "2026-02-02 10:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:32", + "echoMap": {}, + "alarmNo": "1730617789", + "alarmDate": "1769998317434", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146027", + "createdBy": null, + "createdTime": "2026-02-02 10:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:27", + "echoMap": {}, + "alarmNo": "1730617788", + "alarmDate": "1769997774397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645146007", + "createdBy": null, + "createdTime": "2026-02-02 10:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:54", + "echoMap": {}, + "alarmNo": "1730617787", + "alarmDate": "1769997773330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645145955", + "createdBy": null, + "createdTime": "2026-02-02 10:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:52", + "echoMap": {}, + "alarmNo": "1730617786", + "alarmDate": "1769997770632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119312645145836", + "createdBy": null, + "createdTime": "2026-02-02 10:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:51", + "echoMap": {}, + "alarmNo": "1730617785", + "alarmDate": "1769997765001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211645", + "createdBy": null, + "createdTime": "2026-02-02 10:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:55", + "echoMap": {}, + "alarmNo": "1730617784", + "alarmDate": "1769997723128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211560", + "createdBy": null, + "createdTime": "2026-02-02 10:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:29", + "echoMap": {}, + "alarmNo": "1730617783", + "alarmDate": "1769997718353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060091", + "deviceName": "[101](10)国权上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211535", + "createdBy": null, + "createdTime": "2026-02-02 10:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:02", + "echoMap": {}, + "alarmNo": "1730617782", + "alarmDate": "1769997716859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119304055211059", + "createdBy": null, + "createdTime": "2026-02-02 09:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:43", + "echoMap": {}, + "alarmNo": "1730617781", + "alarmDate": "1769997156754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119299760243715", + "createdBy": null, + "createdTime": "2026-02-02 09:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:30", + "echoMap": {}, + "alarmNo": "1730617780", + "alarmDate": "1769997149029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465277352", + "createdBy": null, + "createdTime": "2026-02-02 09:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:08", + "echoMap": {}, + "alarmNo": "1730617779", + "alarmDate": "1769997148135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465277322", + "createdBy": null, + "createdTime": "2026-02-02 09:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:28", + "echoMap": {}, + "alarmNo": "1730617778", + "alarmDate": "1769997146565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465277040", + "createdBy": null, + "createdTime": "2026-02-02 09:52:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:23", + "echoMap": {}, + "alarmNo": "1730617777", + "alarmDate": "1769997128269", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465276864", + "createdBy": null, + "createdTime": "2026-02-02 09:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:13", + "echoMap": {}, + "alarmNo": "1730617776", + "alarmDate": "1769997116568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119295465276558", + "createdBy": null, + "createdTime": "2026-02-02 09:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:52", + "echoMap": {}, + "alarmNo": "1730617775", + "alarmDate": "1769996565133", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342616", + "createdBy": null, + "createdTime": "2026-02-02 09:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:38", + "echoMap": {}, + "alarmNo": "1730617774", + "alarmDate": "1769996541283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342299", + "createdBy": null, + "createdTime": "2026-02-02 09:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:02", + "echoMap": {}, + "alarmNo": "1730617773", + "alarmDate": "1769996520544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342283", + "createdBy": null, + "createdTime": "2026-02-02 09:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:01", + "echoMap": {}, + "alarmNo": "1730617772", + "alarmDate": "1769996519972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342240", + "createdBy": null, + "createdTime": "2026-02-02 09:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:06", + "echoMap": {}, + "alarmNo": "1730617771", + "alarmDate": "1769996517375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875342077", + "createdBy": null, + "createdTime": "2026-02-02 09:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:19", + "echoMap": {}, + "alarmNo": "1730617770", + "alarmDate": "1769995974407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875341911", + "createdBy": null, + "createdTime": "2026-02-02 09:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:46", + "echoMap": {}, + "alarmNo": "1730617769", + "alarmDate": "1769995964751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119286875341889", + "createdBy": null, + "createdTime": "2026-02-02 09:32:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:44", + "echoMap": {}, + "alarmNo": "1730617768", + "alarmDate": "1769995963290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119278285407774", + "createdBy": null, + "createdTime": "2026-02-02 09:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:28", + "echoMap": {}, + "alarmNo": "1730617767", + "alarmDate": "1769995930302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119278285407641", + "createdBy": null, + "createdTime": "2026-02-02 09:32:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:40", + "echoMap": {}, + "alarmNo": "1730617766", + "alarmDate": "1769995921623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119273990439941", + "createdBy": null, + "createdTime": "2026-02-02 09:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:39", + "echoMap": {}, + "alarmNo": "1730617765", + "alarmDate": "1769995358292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473435", + "createdBy": null, + "createdTime": "2026-02-02 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:37", + "echoMap": {}, + "alarmNo": "1730617764", + "alarmDate": "1769995349564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473409", + "createdBy": null, + "createdTime": "2026-02-02 09:22:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:47", + "echoMap": {}, + "alarmNo": "1730617763", + "alarmDate": "1769995348037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473364", + "createdBy": null, + "createdTime": "2026-02-02 09:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:27", + "echoMap": {}, + "alarmNo": "1730617762", + "alarmDate": "1769995345684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473142", + "createdBy": null, + "createdTime": "2026-02-02 09:22:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:38", + "echoMap": {}, + "alarmNo": "1730617761", + "alarmDate": "1769995332885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695473093", + "createdBy": null, + "createdTime": "2026-02-02 09:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:16", + "echoMap": {}, + "alarmNo": "1730617760", + "alarmDate": "1769995330073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695472883", + "createdBy": null, + "createdTime": "2026-02-02 09:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:30", + "echoMap": {}, + "alarmNo": "1730617759", + "alarmDate": "1769995317717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695472878", + "createdBy": null, + "createdTime": "2026-02-02 09:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:05", + "echoMap": {}, + "alarmNo": "1730617758", + "alarmDate": "1769995317501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119269695472866", + "createdBy": null, + "createdTime": "2026-02-02 09:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:58", + "echoMap": {}, + "alarmNo": "1730617757", + "alarmDate": "1769995316850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538817", + "createdBy": null, + "createdTime": "2026-02-02 09:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:47", + "echoMap": {}, + "alarmNo": "1730617756", + "alarmDate": "1769994759863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538780", + "createdBy": null, + "createdTime": "2026-02-02 09:12:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:44", + "echoMap": {}, + "alarmNo": "1730617755", + "alarmDate": "1769994757730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538562", + "createdBy": null, + "createdTime": "2026-02-02 09:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:51", + "echoMap": {}, + "alarmNo": "1730617754", + "alarmDate": "1769994744410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060090", + "deviceName": "[102](10)国权上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538482", + "createdBy": null, + "createdTime": "2026-02-02 09:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:12", + "echoMap": {}, + "alarmNo": "1730617753", + "alarmDate": "1769994739444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538302", + "createdBy": null, + "createdTime": "2026-02-02 09:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:15", + "echoMap": {}, + "alarmNo": "1730617752", + "alarmDate": "1769994727799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538228", + "createdBy": null, + "createdTime": "2026-02-02 09:12:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:10", + "echoMap": {}, + "alarmNo": "1730617751", + "alarmDate": "1769994723268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119261105538134", + "createdBy": null, + "createdTime": "2026-02-02 09:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:50", + "echoMap": {}, + "alarmNo": "1730617750", + "alarmDate": "1769994717375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220637076", + "createdBy": null, + "createdTime": "2026-02-02 09:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:48", + "echoMap": {}, + "alarmNo": "1730617749", + "alarmDate": "1769994166589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636962", + "createdBy": null, + "createdTime": "2026-02-02 09:02:40", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:41", + "echoMap": {}, + "alarmNo": "1730617748", + "alarmDate": "1769994159863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636876", + "createdBy": null, + "createdTime": "2026-02-02 09:02:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:52", + "echoMap": {}, + "alarmNo": "1730617747", + "alarmDate": "1769994154166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636570", + "createdBy": null, + "createdTime": "2026-02-02 09:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:07", + "echoMap": {}, + "alarmNo": "1730617746", + "alarmDate": "1769994132987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119248220636332", + "createdBy": null, + "createdTime": "2026-02-02 09:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:09", + "echoMap": {}, + "alarmNo": "1730617745", + "alarmDate": "1769994117501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702338", + "createdBy": null, + "createdTime": "2026-02-02 08:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:00", + "echoMap": {}, + "alarmNo": "1730617744", + "alarmDate": "1769993556570", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702298", + "createdBy": null, + "createdTime": "2026-02-02 08:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:35", + "echoMap": {}, + "alarmNo": "1730617743", + "alarmDate": "1769993554376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702288", + "createdBy": null, + "createdTime": "2026-02-02 08:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:50", + "echoMap": {}, + "alarmNo": "1730617742", + "alarmDate": "1769993553954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702169", + "createdBy": null, + "createdTime": "2026-02-02 08:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:50", + "echoMap": {}, + "alarmNo": "1730617741", + "alarmDate": "1769993546254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630702057", + "createdBy": null, + "createdTime": "2026-02-02 08:52:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:20", + "echoMap": {}, + "alarmNo": "1730617740", + "alarmDate": "1769993538859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630701799", + "createdBy": null, + "createdTime": "2026-02-02 08:52:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:04", + "echoMap": {}, + "alarmNo": "1730617739", + "alarmDate": "1769993522979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119239630701586", + "createdBy": null, + "createdTime": "2026-02-02 08:44:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:50", + "echoMap": {}, + "alarmNo": "1730617738", + "alarmDate": "1769993088947", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119235335734337", + "createdBy": null, + "createdTime": "2026-02-02 08:42:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:14", + "echoMap": {}, + "alarmNo": "1730617737", + "alarmDate": "1769992975044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119231040766999", + "createdBy": null, + "createdTime": "2026-02-02 08:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:55", + "echoMap": {}, + "alarmNo": "1730617736", + "alarmDate": "1769992970592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800694", + "createdBy": null, + "createdTime": "2026-02-02 08:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:25", + "echoMap": {}, + "alarmNo": "1730617735", + "alarmDate": "1769992969354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800652", + "createdBy": null, + "createdTime": "2026-02-02 08:42:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:48", + "echoMap": {}, + "alarmNo": "1730617734", + "alarmDate": "1769992966861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800254", + "createdBy": null, + "createdTime": "2026-02-02 08:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:22", + "echoMap": {}, + "alarmNo": "1730617733", + "alarmDate": "1769992940621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745800085", + "createdBy": null, + "createdTime": "2026-02-02 08:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:23", + "echoMap": {}, + "alarmNo": "1730617732", + "alarmDate": "1769992930289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745799903", + "createdBy": null, + "createdTime": "2026-02-02 08:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:24", + "echoMap": {}, + "alarmNo": "1730617731", + "alarmDate": "1769992918956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119226745799887", + "createdBy": null, + "createdTime": "2026-02-02 08:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:01", + "echoMap": {}, + "alarmNo": "1730617730", + "alarmDate": "1769992918122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898642", + "createdBy": null, + "createdTime": "2026-02-02 08:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:35", + "echoMap": {}, + "alarmNo": "1730617729", + "alarmDate": "1769992354204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898468", + "createdBy": null, + "createdTime": "2026-02-02 08:32:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:36", + "echoMap": {}, + "alarmNo": "1730617728", + "alarmDate": "1769992343174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898459", + "createdBy": null, + "createdTime": "2026-02-02 08:32:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1730617727", + "alarmDate": "1769992342856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860898307", + "createdBy": null, + "createdTime": "2026-02-02 08:32:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:18", + "echoMap": {}, + "alarmNo": "1730617726", + "alarmDate": "1769992331877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119213860897833", + "createdBy": null, + "createdTime": "2026-02-02 08:22:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:09", + "echoMap": {}, + "alarmNo": "1730617725", + "alarmDate": "1769991767239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270964071", + "createdBy": null, + "createdTime": "2026-02-02 08:22:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:34", + "echoMap": {}, + "alarmNo": "1730617724", + "alarmDate": "1769991752537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963953", + "createdBy": null, + "createdTime": "2026-02-02 08:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:30", + "echoMap": {}, + "alarmNo": "1730617723", + "alarmDate": "1769991744543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963843", + "createdBy": null, + "createdTime": "2026-02-02 08:22:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:18", + "echoMap": {}, + "alarmNo": "1730617722", + "alarmDate": "1769991737083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963544", + "createdBy": null, + "createdTime": "2026-02-02 08:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:12", + "echoMap": {}, + "alarmNo": "1730617721", + "alarmDate": "1769991717402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963401", + "createdBy": null, + "createdTime": "2026-02-02 08:12:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:24", + "echoMap": {}, + "alarmNo": "1730617720", + "alarmDate": "1769991176676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963326", + "createdBy": null, + "createdTime": "2026-02-02 08:12:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:57", + "echoMap": {}, + "alarmNo": "1730617719", + "alarmDate": "1769991170986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060076", + "deviceName": "[106](10)国权上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119205270963252", + "createdBy": null, + "createdTime": "2026-02-02 08:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:29", + "echoMap": {}, + "alarmNo": "1730617718", + "alarmDate": "1769991167060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029560", + "createdBy": null, + "createdTime": "2026-02-02 08:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:37", + "echoMap": {}, + "alarmNo": "1730617717", + "alarmDate": "1769991155921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029355", + "createdBy": null, + "createdTime": "2026-02-02 08:12:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:03", + "echoMap": {}, + "alarmNo": "1730617716", + "alarmDate": "1769991142087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029201", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:29", + "echoMap": {}, + "alarmNo": "1730617715", + "alarmDate": "1769991131327", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029196", + "createdBy": null, + "createdTime": "2026-02-02 08:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:35", + "echoMap": {}, + "alarmNo": "1730617714", + "alarmDate": "1769991131094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029022", + "createdBy": null, + "createdTime": "2026-02-02 08:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:45", + "echoMap": {}, + "alarmNo": "1730617713", + "alarmDate": "1769991117847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681029008", + "createdBy": null, + "createdTime": "2026-02-02 08:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:00", + "echoMap": {}, + "alarmNo": "1730617712", + "alarmDate": "1769991116959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119196681028769", + "createdBy": null, + "createdTime": "2026-02-02 08:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:09", + "echoMap": {}, + "alarmNo": "1730617711", + "alarmDate": "1769990568745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119192386061378", + "createdBy": null, + "createdTime": "2026-02-02 08:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:38", + "echoMap": {}, + "alarmNo": "1730617710", + "alarmDate": "1769990557093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119192386061341", + "createdBy": null, + "createdTime": "2026-02-02 08:02:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:47", + "echoMap": {}, + "alarmNo": "1730617709", + "alarmDate": "1769990554830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119188091094921", + "createdBy": null, + "createdTime": "2026-02-02 08:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:29", + "echoMap": {}, + "alarmNo": "1730617708", + "alarmDate": "1769990548261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119188091094839", + "createdBy": null, + "createdTime": "2026-02-02 08:02:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:29", + "echoMap": {}, + "alarmNo": "1730617707", + "alarmDate": "1769990543003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119188091094475", + "createdBy": null, + "createdTime": "2026-02-02 08:01:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:40", + "echoMap": {}, + "alarmNo": "1730617706", + "alarmDate": "1769990519066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160411", + "createdBy": null, + "createdTime": "2026-02-02 07:52:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:40", + "echoMap": {}, + "alarmNo": "1730617705", + "alarmDate": "1769989948853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160404", + "createdBy": null, + "createdTime": "2026-02-02 07:52:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:23", + "echoMap": {}, + "alarmNo": "1730617704", + "alarmDate": "1769989948372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060047", + "deviceName": "[313](10)国权4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160377", + "createdBy": null, + "createdTime": "2026-02-02 07:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:28", + "echoMap": {}, + "alarmNo": "1730617703", + "alarmDate": "1769989946709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501160239", + "createdBy": null, + "createdTime": "2026-02-02 07:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:16", + "echoMap": {}, + "alarmNo": "1730617702", + "alarmDate": "1769989935248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501159750", + "createdBy": null, + "createdTime": "2026-02-02 07:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:57", + "echoMap": {}, + "alarmNo": "1730617701", + "alarmDate": "1769989369954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060076", + "deviceName": "[106](10)国权上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119179501159502", + "createdBy": null, + "createdTime": "2026-02-02 07:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:10", + "echoMap": {}, + "alarmNo": "1730617700", + "alarmDate": "1769989356931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119170911224949", + "createdBy": null, + "createdTime": "2026-02-02 07:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:28", + "echoMap": {}, + "alarmNo": "1730617699", + "alarmDate": "1769989346858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119170911224858", + "createdBy": null, + "createdTime": "2026-02-02 07:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:48", + "echoMap": {}, + "alarmNo": "1730617698", + "alarmDate": "1769989341591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616258253", + "createdBy": null, + "createdTime": "2026-02-02 07:42:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:49", + "echoMap": {}, + "alarmNo": "1730617697", + "alarmDate": "1769989320300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616258108", + "createdBy": null, + "createdTime": "2026-02-02 07:36:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:45", + "echoMap": {}, + "alarmNo": "1730617696", + "alarmDate": "1769989005599", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023060027", + "deviceName": "[503](10)国权票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616258068", + "createdBy": null, + "createdTime": "2026-02-02 07:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:11", + "echoMap": {}, + "alarmNo": "1730617695", + "alarmDate": "1769988776645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616257996", + "createdBy": null, + "createdTime": "2026-02-02 07:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:52:12", + "echoMap": {}, + "alarmNo": "1730617694", + "alarmDate": "1769988771122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616257674", + "createdBy": null, + "createdTime": "2026-02-02 07:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:32", + "echoMap": {}, + "alarmNo": "1730617693", + "alarmDate": "1769988751138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119166616257541", + "createdBy": null, + "createdTime": "2026-02-02 07:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:23", + "echoMap": {}, + "alarmNo": "1730617692", + "alarmDate": "1769988742424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119158026323896", + "createdBy": null, + "createdTime": "2026-02-02 07:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:22", + "echoMap": {}, + "alarmNo": "1730617691", + "alarmDate": "1769988735315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119158026323617", + "createdBy": null, + "createdTime": "2026-02-02 07:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:44", + "echoMap": {}, + "alarmNo": "1730617690", + "alarmDate": "1769988717979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119158026323004", + "createdBy": null, + "createdTime": "2026-02-02 07:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:30", + "echoMap": {}, + "alarmNo": "1730617689", + "alarmDate": "1769988148894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119149436388378", + "createdBy": null, + "createdTime": "2026-02-02 07:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:46", + "echoMap": {}, + "alarmNo": "1730617688", + "alarmDate": "1769988141043", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141422029", + "createdBy": null, + "createdTime": "2026-02-02 07:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:17", + "echoMap": {}, + "alarmNo": "1730617687", + "alarmDate": "1769988136357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421887", + "createdBy": null, + "createdTime": "2026-02-02 07:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:09", + "echoMap": {}, + "alarmNo": "1730617686", + "alarmDate": "1769988127930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421719", + "createdBy": null, + "createdTime": "2026-02-02 07:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:00", + "echoMap": {}, + "alarmNo": "1730617685", + "alarmDate": "1769988117475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421650", + "createdBy": null, + "createdTime": "2026-02-02 07:18:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:45", + "echoMap": {}, + "alarmNo": "1730617684", + "alarmDate": "1769987925626", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119145141421555", + "createdBy": null, + "createdTime": "2026-02-02 07:12:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:56", + "echoMap": {}, + "alarmNo": "1730617683", + "alarmDate": "1769987574792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487408", + "createdBy": null, + "createdTime": "2026-02-02 07:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:20", + "echoMap": {}, + "alarmNo": "1730617682", + "alarmDate": "1769987538944", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487260", + "createdBy": null, + "createdTime": "2026-02-02 07:12:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:45", + "echoMap": {}, + "alarmNo": "1730617681", + "alarmDate": "1769987530852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060050", + "deviceName": "[404](10)国权3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487240", + "createdBy": null, + "createdTime": "2026-02-02 07:12:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:16", + "echoMap": {}, + "alarmNo": "1730617680", + "alarmDate": "1769987529741", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551487055", + "createdBy": null, + "createdTime": "2026-02-02 07:11:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:28", + "echoMap": {}, + "alarmNo": "1730617679", + "alarmDate": "1769987518118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060091", + "deviceName": "[101](10)国权上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119136551486595", + "createdBy": null, + "createdTime": "2026-02-02 07:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:49", + "echoMap": {}, + "alarmNo": "1730617678", + "alarmDate": "1769986956905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552810", + "createdBy": null, + "createdTime": "2026-02-02 07:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:18", + "echoMap": {}, + "alarmNo": "1730617677", + "alarmDate": "1769986936606", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552611", + "createdBy": null, + "createdTime": "2026-02-02 07:02:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:22", + "echoMap": {}, + "alarmNo": "1730617676", + "alarmDate": "1769986923481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552471", + "createdBy": null, + "createdTime": "2026-02-02 06:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:45", + "echoMap": {}, + "alarmNo": "1730617675", + "alarmDate": "1769986785699", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961552023", + "createdBy": null, + "createdTime": "2026-02-02 06:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:36", + "echoMap": {}, + "alarmNo": "1730617674", + "alarmDate": "1769986355147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119127961551996", + "createdBy": null, + "createdTime": "2026-02-02 06:52:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:56", + "echoMap": {}, + "alarmNo": "1730617673", + "alarmDate": "1769986353603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119123666584618", + "createdBy": null, + "createdTime": "2026-02-02 06:52:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:24", + "echoMap": {}, + "alarmNo": "1730617672", + "alarmDate": "1769986342520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650719", + "createdBy": null, + "createdTime": "2026-02-02 06:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:14", + "echoMap": {}, + "alarmNo": "1730617671", + "alarmDate": "1769986318542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650710", + "createdBy": null, + "createdTime": "2026-02-02 06:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:12", + "echoMap": {}, + "alarmNo": "1730617670", + "alarmDate": "1769986317885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650625", + "createdBy": null, + "createdTime": "2026-02-02 06:47:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:50", + "echoMap": {}, + "alarmNo": "1730617669", + "alarmDate": "1769986069031", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1023030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1023" + }, + { + "id": "723119115076650536", + "createdBy": null, + "createdTime": "2026-02-02 06:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:54", + "echoMap": {}, + "alarmNo": "1730617668", + "alarmDate": "1769985774236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650115", + "createdBy": null, + "createdTime": "2026-02-02 06:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:16", + "echoMap": {}, + "alarmNo": "1730617667", + "alarmDate": "1769985749537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119115076650050", + "createdBy": null, + "createdTime": "2026-02-02 06:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:57", + "echoMap": {}, + "alarmNo": "1730617666", + "alarmDate": "1769985745225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119110781682698", + "createdBy": null, + "createdTime": "2026-02-02 06:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:17", + "echoMap": {}, + "alarmNo": "1730617665", + "alarmDate": "1769985736097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748883", + "createdBy": null, + "createdTime": "2026-02-02 06:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:42", + "echoMap": {}, + "alarmNo": "1730617664", + "alarmDate": "1769985717647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748827", + "createdBy": null, + "createdTime": "2026-02-02 06:39:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:50", + "echoMap": {}, + "alarmNo": "1730617663", + "alarmDate": "1769985588970", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119102191748690", + "createdBy": null, + "createdTime": "2026-02-02 06:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:16", + "echoMap": {}, + "alarmNo": "1730617662", + "alarmDate": "1769985172649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748495", + "createdBy": null, + "createdTime": "2026-02-02 06:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:43", + "echoMap": {}, + "alarmNo": "1730617661", + "alarmDate": "1769985161721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748414", + "createdBy": null, + "createdTime": "2026-02-02 06:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:36", + "echoMap": {}, + "alarmNo": "1730617660", + "alarmDate": "1769985156979", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119102191748158", + "createdBy": null, + "createdTime": "2026-02-02 06:32:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:33", + "echoMap": {}, + "alarmNo": "1730617659", + "alarmDate": "1769985140608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119097896780832", + "createdBy": null, + "createdTime": "2026-02-02 06:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:45", + "echoMap": {}, + "alarmNo": "1730617658", + "alarmDate": "1769985134122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119097896780810", + "createdBy": null, + "createdTime": "2026-02-02 06:32:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:14", + "echoMap": {}, + "alarmNo": "1730617657", + "alarmDate": "1769985132780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601814360", + "createdBy": null, + "createdTime": "2026-02-02 06:32:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:18", + "echoMap": {}, + "alarmNo": "1730617656", + "alarmDate": "1769985124852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601814241", + "createdBy": null, + "createdTime": "2026-02-02 06:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:01", + "echoMap": {}, + "alarmNo": "1730617655", + "alarmDate": "1769985117584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813879", + "createdBy": null, + "createdTime": "2026-02-02 06:22:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:46", + "echoMap": {}, + "alarmNo": "1730617654", + "alarmDate": "1769984565422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813795", + "createdBy": null, + "createdTime": "2026-02-02 06:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:53", + "echoMap": {}, + "alarmNo": "1730617653", + "alarmDate": "1769984561541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813696", + "createdBy": null, + "createdTime": "2026-02-02 06:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:38", + "echoMap": {}, + "alarmNo": "1730617652", + "alarmDate": "1769984556667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813635", + "createdBy": null, + "createdTime": "2026-02-02 06:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:53", + "echoMap": {}, + "alarmNo": "1730617651", + "alarmDate": "1769984553677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119093601813633", + "createdBy": null, + "createdTime": "2026-02-02 06:22:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:35", + "echoMap": {}, + "alarmNo": "1730617650", + "alarmDate": "1769984553627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119089306846263", + "createdBy": null, + "createdTime": "2026-02-02 06:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:44", + "echoMap": {}, + "alarmNo": "1730617649", + "alarmDate": "1769984545332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119085011878934", + "createdBy": null, + "createdTime": "2026-02-02 06:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:01", + "echoMap": {}, + "alarmNo": "1730617648", + "alarmDate": "1769984540689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912554", + "createdBy": null, + "createdTime": "2026-02-02 06:22:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:08", + "echoMap": {}, + "alarmNo": "1730617647", + "alarmDate": "1769984534490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912271", + "createdBy": null, + "createdTime": "2026-02-02 06:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:45", + "echoMap": {}, + "alarmNo": "1730617646", + "alarmDate": "1769984517624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912266", + "createdBy": null, + "createdTime": "2026-02-02 06:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:05", + "echoMap": {}, + "alarmNo": "1730617645", + "alarmDate": "1769984517324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716912091", + "createdBy": null, + "createdTime": "2026-02-02 06:12:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:21", + "echoMap": {}, + "alarmNo": "1730617644", + "alarmDate": "1769983973390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716911708", + "createdBy": null, + "createdTime": "2026-02-02 06:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:49", + "echoMap": {}, + "alarmNo": "1730617643", + "alarmDate": "1769983950117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119080716911695", + "createdBy": null, + "createdTime": "2026-02-02 06:12:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:35", + "echoMap": {}, + "alarmNo": "1730617642", + "alarmDate": "1769983949326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119076421944350", + "createdBy": null, + "createdTime": "2026-02-02 06:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:34", + "echoMap": {}, + "alarmNo": "1730617641", + "alarmDate": "1769983941273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010658", + "createdBy": null, + "createdTime": "2026-02-02 06:12:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:09", + "echoMap": {}, + "alarmNo": "1730617640", + "alarmDate": "1769983928208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010486", + "createdBy": null, + "createdTime": "2026-02-02 06:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:03", + "echoMap": {}, + "alarmNo": "1730617639", + "alarmDate": "1769983917338", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010485", + "createdBy": null, + "createdTime": "2026-02-02 06:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:01", + "echoMap": {}, + "alarmNo": "1730617638", + "alarmDate": "1769983917221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010317", + "createdBy": null, + "createdTime": "2026-02-02 06:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:55", + "echoMap": {}, + "alarmNo": "1730617637", + "alarmDate": "1769983374026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010107", + "createdBy": null, + "createdTime": "2026-02-02 06:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:44", + "echoMap": {}, + "alarmNo": "1730617636", + "alarmDate": "1769983362880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010085", + "createdBy": null, + "createdTime": "2026-02-02 06:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:12:17", + "echoMap": {}, + "alarmNo": "1730617635", + "alarmDate": "1769983361731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832010075", + "createdBy": null, + "createdTime": "2026-02-02 06:02:41", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:54", + "echoMap": {}, + "alarmNo": "1730617634", + "alarmDate": "1769983361089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832009993", + "createdBy": null, + "createdTime": "2026-02-02 06:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:41", + "echoMap": {}, + "alarmNo": "1730617633", + "alarmDate": "1769983356208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119067832009760", + "createdBy": null, + "createdTime": "2026-02-02 06:02:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:31", + "echoMap": {}, + "alarmNo": "1730617632", + "alarmDate": "1769983341121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119063537042457", + "createdBy": null, + "createdTime": "2026-02-02 06:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:23", + "echoMap": {}, + "alarmNo": "1730617631", + "alarmDate": "1769983336657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119063537042447", + "createdBy": null, + "createdTime": "2026-02-02 06:02:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:17", + "echoMap": {}, + "alarmNo": "1730617630", + "alarmDate": "1769983335905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119059242075198", + "createdBy": null, + "createdTime": "2026-02-02 06:02:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:14", + "echoMap": {}, + "alarmNo": "1730617629", + "alarmDate": "1769983332790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108719", + "createdBy": null, + "createdTime": "2026-02-02 06:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:01", + "echoMap": {}, + "alarmNo": "1730617628", + "alarmDate": "1769983320037", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108682", + "createdBy": null, + "createdTime": "2026-02-02 06:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1730617627", + "alarmDate": "1769983318151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108452", + "createdBy": null, + "createdTime": "2026-02-02 05:52:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:52", + "echoMap": {}, + "alarmNo": "1730617626", + "alarmDate": "1769982770975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108402", + "createdBy": null, + "createdTime": "2026-02-02 05:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:50", + "echoMap": {}, + "alarmNo": "1730617625", + "alarmDate": "1769982768954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108381", + "createdBy": null, + "createdTime": "2026-02-02 05:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:22", + "echoMap": {}, + "alarmNo": "1730617624", + "alarmDate": "1769982767803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947108230", + "createdBy": null, + "createdTime": "2026-02-02 05:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:59", + "echoMap": {}, + "alarmNo": "1730617623", + "alarmDate": "1769982758649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119054947107871", + "createdBy": null, + "createdTime": "2026-02-02 05:52:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:35", + "echoMap": {}, + "alarmNo": "1730617622", + "alarmDate": "1769982734746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173939", + "createdBy": null, + "createdTime": "2026-02-02 05:52:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:19", + "echoMap": {}, + "alarmNo": "1730617621", + "alarmDate": "1769982726385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173811", + "createdBy": null, + "createdTime": "2026-02-02 05:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:23", + "echoMap": {}, + "alarmNo": "1730617620", + "alarmDate": "1769982717635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060068", + "deviceName": "[107](10)国权下行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173810", + "createdBy": null, + "createdTime": "2026-02-02 05:51:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:45", + "echoMap": {}, + "alarmNo": "1730617619", + "alarmDate": "1769982717594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173795", + "createdBy": null, + "createdTime": "2026-02-02 05:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:06", + "echoMap": {}, + "alarmNo": "1730617618", + "alarmDate": "1769982716760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173662", + "createdBy": null, + "createdTime": "2026-02-02 05:43:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:45:50", + "echoMap": {}, + "alarmNo": "1730617617", + "alarmDate": "1769982228976", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723119046357173304", + "createdBy": null, + "createdTime": "2026-02-02 05:42:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:41", + "echoMap": {}, + "alarmNo": "1730617616", + "alarmDate": "1769982154752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173299", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:48", + "echoMap": {}, + "alarmNo": "1730617615", + "alarmDate": "1769982154494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119046357173276", + "createdBy": null, + "createdTime": "2026-02-02 05:42:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:39", + "echoMap": {}, + "alarmNo": "1730617614", + "alarmDate": "1769982153350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119042062205964", + "createdBy": null, + "createdTime": "2026-02-02 05:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:07", + "echoMap": {}, + "alarmNo": "1730617613", + "alarmDate": "1769982147467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767239306", + "createdBy": null, + "createdTime": "2026-02-02 05:42:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:30", + "echoMap": {}, + "alarmNo": "1730617612", + "alarmDate": "1769982143581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767239089", + "createdBy": null, + "createdTime": "2026-02-02 05:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:10", + "echoMap": {}, + "alarmNo": "1730617611", + "alarmDate": "1769982129334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767239068", + "createdBy": null, + "createdTime": "2026-02-02 05:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:09", + "echoMap": {}, + "alarmNo": "1730617610", + "alarmDate": "1769982128272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238911", + "createdBy": null, + "createdTime": "2026-02-02 05:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:03", + "echoMap": {}, + "alarmNo": "1730617609", + "alarmDate": "1769982118381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060086", + "deviceName": "[112](10)国权下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238893", + "createdBy": null, + "createdTime": "2026-02-02 05:41:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:15", + "echoMap": {}, + "alarmNo": "1730617608", + "alarmDate": "1769982117484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238744", + "createdBy": null, + "createdTime": "2026-02-02 05:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:15", + "echoMap": {}, + "alarmNo": "1730617607", + "alarmDate": "1769981575997", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119037767238721", + "createdBy": null, + "createdTime": "2026-02-02 05:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:55", + "echoMap": {}, + "alarmNo": "1730617606", + "alarmDate": "1769981574220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304523", + "createdBy": null, + "createdTime": "2026-02-02 05:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:52", + "echoMap": {}, + "alarmNo": "1730617605", + "alarmDate": "1769981552253", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304501", + "createdBy": null, + "createdTime": "2026-02-02 05:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:32", + "echoMap": {}, + "alarmNo": "1730617604", + "alarmDate": "1769981551123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304385", + "createdBy": null, + "createdTime": "2026-02-02 05:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:37", + "echoMap": {}, + "alarmNo": "1730617603", + "alarmDate": "1769981543994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304354", + "createdBy": null, + "createdTime": "2026-02-02 05:32:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:23", + "echoMap": {}, + "alarmNo": "1730617602", + "alarmDate": "1769981542163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304241", + "createdBy": null, + "createdTime": "2026-02-02 05:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:16", + "echoMap": {}, + "alarmNo": "1730617601", + "alarmDate": "1769981535212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119029177304223", + "createdBy": null, + "createdTime": "2026-02-02 05:32:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:15", + "echoMap": {}, + "alarmNo": "1730617600", + "alarmDate": "1769981534270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119020587370141", + "createdBy": null, + "createdTime": "2026-02-02 05:31:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:05", + "echoMap": {}, + "alarmNo": "1730617599", + "alarmDate": "1769981517867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119020587369943", + "createdBy": null, + "createdTime": "2026-02-02 05:22:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:19", + "echoMap": {}, + "alarmNo": "1730617598", + "alarmDate": "1769980972913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119020587369527", + "createdBy": null, + "createdTime": "2026-02-02 05:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:49", + "echoMap": {}, + "alarmNo": "1730617597", + "alarmDate": "1769980948676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435601", + "createdBy": null, + "createdTime": "2026-02-02 05:22:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:33", + "echoMap": {}, + "alarmNo": "1730617596", + "alarmDate": "1769980939929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435257", + "createdBy": null, + "createdTime": "2026-02-02 05:21:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:45", + "echoMap": {}, + "alarmNo": "1730617595", + "alarmDate": "1769980918526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435243", + "createdBy": null, + "createdTime": "2026-02-02 05:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:01", + "echoMap": {}, + "alarmNo": "1730617594", + "alarmDate": "1769980917793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119011997435236", + "createdBy": null, + "createdTime": "2026-02-02 05:21:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:17", + "echoMap": {}, + "alarmNo": "1730617593", + "alarmDate": "1769980917525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060056", + "deviceName": "[314](10)国权4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500946", + "createdBy": null, + "createdTime": "2026-02-02 05:12:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:46", + "echoMap": {}, + "alarmNo": "1730617592", + "alarmDate": "1769980352648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500829", + "createdBy": null, + "createdTime": "2026-02-02 05:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:26", + "echoMap": {}, + "alarmNo": "1730617591", + "alarmDate": "1769980344579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500489", + "createdBy": null, + "createdTime": "2026-02-02 05:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:03", + "echoMap": {}, + "alarmNo": "1730617590", + "alarmDate": "1769980322404", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500454", + "createdBy": null, + "createdTime": "2026-02-02 05:12:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:13", + "echoMap": {}, + "alarmNo": "1730617589", + "alarmDate": "1769980320528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500392", + "createdBy": null, + "createdTime": "2026-02-02 05:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:58", + "echoMap": {}, + "alarmNo": "1730617588", + "alarmDate": "1769980316429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723119003407500382", + "createdBy": null, + "createdTime": "2026-02-02 05:11:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:13:50", + "echoMap": {}, + "alarmNo": "1730617587", + "alarmDate": "1769980310080", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118999112533038", + "createdBy": null, + "createdTime": "2026-02-02 05:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:19", + "echoMap": {}, + "alarmNo": "1730617586", + "alarmDate": "1769979775669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566421", + "createdBy": null, + "createdTime": "2026-02-02 05:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:52", + "echoMap": {}, + "alarmNo": "1730617585", + "alarmDate": "1769979771222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566337", + "createdBy": null, + "createdTime": "2026-02-02 05:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:48", + "echoMap": {}, + "alarmNo": "1730617584", + "alarmDate": "1769979767322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566174", + "createdBy": null, + "createdTime": "2026-02-02 05:02:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:39", + "echoMap": {}, + "alarmNo": "1730617583", + "alarmDate": "1769979758269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566164", + "createdBy": null, + "createdTime": "2026-02-02 05:02:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:44", + "echoMap": {}, + "alarmNo": "1730617582", + "alarmDate": "1769979757700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566137", + "createdBy": null, + "createdTime": "2026-02-02 05:02:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:48", + "echoMap": {}, + "alarmNo": "1730617581", + "alarmDate": "1769979756277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566046", + "createdBy": null, + "createdTime": "2026-02-02 05:02:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:32", + "echoMap": {}, + "alarmNo": "1730617580", + "alarmDate": "1769979750536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817566016", + "createdBy": null, + "createdTime": "2026-02-02 05:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:29", + "echoMap": {}, + "alarmNo": "1730617579", + "alarmDate": "1769979748646", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118994817565759", + "createdBy": null, + "createdTime": "2026-02-02 05:02:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:20", + "echoMap": {}, + "alarmNo": "1730617578", + "alarmDate": "1769979733650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118986227631449", + "createdBy": null, + "createdTime": "2026-02-02 04:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:02", + "echoMap": {}, + "alarmNo": "1730617577", + "alarmDate": "1769979169455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118986227631411", + "createdBy": null, + "createdTime": "2026-02-02 04:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:24", + "echoMap": {}, + "alarmNo": "1730617576", + "alarmDate": "1769979168012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118981932663819", + "createdBy": null, + "createdTime": "2026-02-02 04:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:37", + "echoMap": {}, + "alarmNo": "1730617575", + "alarmDate": "1769979146315", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637697210", + "createdBy": null, + "createdTime": "2026-02-02 04:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:30", + "echoMap": {}, + "alarmNo": "1730617574", + "alarmDate": "1769979144093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637697091", + "createdBy": null, + "createdTime": "2026-02-02 04:52:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:23", + "echoMap": {}, + "alarmNo": "1730617573", + "alarmDate": "1769979137138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637696890", + "createdBy": null, + "createdTime": "2026-02-02 04:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1730617572", + "alarmDate": "1769979125005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060070", + "deviceName": "[207](10)国权下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637696755", + "createdBy": null, + "createdTime": "2026-02-02 04:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:02", + "echoMap": {}, + "alarmNo": "1730617571", + "alarmDate": "1769979117422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118977637696594", + "createdBy": null, + "createdTime": "2026-02-02 04:42:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:06", + "echoMap": {}, + "alarmNo": "1730617570", + "alarmDate": "1769978574674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762582", + "createdBy": null, + "createdTime": "2026-02-02 04:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:45", + "echoMap": {}, + "alarmNo": "1730617569", + "alarmDate": "1769978563752", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762412", + "createdBy": null, + "createdTime": "2026-02-02 04:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:35", + "echoMap": {}, + "alarmNo": "1730617568", + "alarmDate": "1769978554291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762337", + "createdBy": null, + "createdTime": "2026-02-02 04:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:43", + "echoMap": {}, + "alarmNo": "1730617567", + "alarmDate": "1769978550664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762299", + "createdBy": null, + "createdTime": "2026-02-02 04:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:35", + "echoMap": {}, + "alarmNo": "1730617566", + "alarmDate": "1769978548803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762253", + "createdBy": null, + "createdTime": "2026-02-02 04:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:50", + "echoMap": {}, + "alarmNo": "1730617565", + "alarmDate": "1769978546066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047762028", + "createdBy": null, + "createdTime": "2026-02-02 04:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:14", + "echoMap": {}, + "alarmNo": "1730617564", + "alarmDate": "1769978532656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118969047761975", + "createdBy": null, + "createdTime": "2026-02-02 04:42:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:11", + "echoMap": {}, + "alarmNo": "1730617563", + "alarmDate": "1769978529585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118964752794698", + "createdBy": null, + "createdTime": "2026-02-02 04:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:19", + "echoMap": {}, + "alarmNo": "1730617562", + "alarmDate": "1769978526484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118964752794679", + "createdBy": null, + "createdTime": "2026-02-02 04:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:07", + "echoMap": {}, + "alarmNo": "1730617561", + "alarmDate": "1769978525717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827969", + "createdBy": null, + "createdTime": "2026-02-02 04:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:59", + "echoMap": {}, + "alarmNo": "1730617560", + "alarmDate": "1769978517797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827758", + "createdBy": null, + "createdTime": "2026-02-02 04:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:52", + "echoMap": {}, + "alarmNo": "1730617559", + "alarmDate": "1769977970713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827679", + "createdBy": null, + "createdTime": "2026-02-02 04:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:47", + "echoMap": {}, + "alarmNo": "1730617558", + "alarmDate": "1769977965642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827635", + "createdBy": null, + "createdTime": "2026-02-02 04:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:54", + "echoMap": {}, + "alarmNo": "1730617557", + "alarmDate": "1769977962286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118960457827380", + "createdBy": null, + "createdTime": "2026-02-02 04:32:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:30", + "echoMap": {}, + "alarmNo": "1730617556", + "alarmDate": "1769977938274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118951867893222", + "createdBy": null, + "createdTime": "2026-02-02 04:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:06", + "echoMap": {}, + "alarmNo": "1730617555", + "alarmDate": "1769977373998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118951867892940", + "createdBy": null, + "createdTime": "2026-02-02 04:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:43", + "echoMap": {}, + "alarmNo": "1730617554", + "alarmDate": "1769977349985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118947572925516", + "createdBy": null, + "createdTime": "2026-02-02 04:22:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:11", + "echoMap": {}, + "alarmNo": "1730617553", + "alarmDate": "1769977330170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118947572925467", + "createdBy": null, + "createdTime": "2026-02-02 04:22:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:22:12", + "echoMap": {}, + "alarmNo": "1730617552", + "alarmDate": "1769977325906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958541", + "createdBy": null, + "createdTime": "2026-02-02 04:12:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:55", + "echoMap": {}, + "alarmNo": "1730617551", + "alarmDate": "1769976762709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958293", + "createdBy": null, + "createdTime": "2026-02-02 04:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:20", + "echoMap": {}, + "alarmNo": "1730617550", + "alarmDate": "1769976739004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958287", + "createdBy": null, + "createdTime": "2026-02-02 04:12:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:25", + "echoMap": {}, + "alarmNo": "1730617549", + "alarmDate": "1769976738648", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118943277958236", + "createdBy": null, + "createdTime": "2026-02-02 04:12:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:15", + "echoMap": {}, + "alarmNo": "1730617548", + "alarmDate": "1769976733976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118934688024137", + "createdBy": null, + "createdTime": "2026-02-02 04:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:01", + "echoMap": {}, + "alarmNo": "1730617547", + "alarmDate": "1769976174526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118934688024024", + "createdBy": null, + "createdTime": "2026-02-02 04:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:47", + "echoMap": {}, + "alarmNo": "1730617546", + "alarmDate": "1769976165682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118934688023858", + "createdBy": null, + "createdTime": "2026-02-02 04:02:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:36", + "echoMap": {}, + "alarmNo": "1730617545", + "alarmDate": "1769976150452", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118926098089481", + "createdBy": null, + "createdTime": "2026-02-02 03:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:53", + "echoMap": {}, + "alarmNo": "1730617544", + "alarmDate": "1769975566728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118921803121698", + "createdBy": null, + "createdTime": "2026-02-02 03:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:50", + "echoMap": {}, + "alarmNo": "1730617543", + "alarmDate": "1769975516477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118917508154463", + "createdBy": null, + "createdTime": "2026-02-02 03:42:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:10", + "echoMap": {}, + "alarmNo": "1730617542", + "alarmDate": "1769974928639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118908918220455", + "createdBy": null, + "createdTime": "2026-02-02 03:35:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:37:49", + "echoMap": {}, + "alarmNo": "1730617541", + "alarmDate": "1769974550131", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118908918220167", + "createdBy": null, + "createdTime": "2026-02-02 03:32:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:36", + "echoMap": {}, + "alarmNo": "1730617540", + "alarmDate": "1769974355006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118908918219856", + "createdBy": null, + "createdTime": "2026-02-02 03:32:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:32:21", + "echoMap": {}, + "alarmNo": "1730617539", + "alarmDate": "1769974328158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118900328285650", + "createdBy": null, + "createdTime": "2026-02-02 03:22:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:50", + "echoMap": {}, + "alarmNo": "1730617538", + "alarmDate": "1769973763927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118891738351029", + "createdBy": null, + "createdTime": "2026-02-02 03:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:54", + "echoMap": {}, + "alarmNo": "1730617537", + "alarmDate": "1769973160451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118891738350931", + "createdBy": null, + "createdTime": "2026-02-02 03:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:32", + "echoMap": {}, + "alarmNo": "1730617536", + "alarmDate": "1769973150851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118891738350613", + "createdBy": null, + "createdTime": "2026-02-02 03:12:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:03", + "echoMap": {}, + "alarmNo": "1730617535", + "alarmDate": "1769973122262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118887443383328", + "createdBy": null, + "createdTime": "2026-02-02 03:11:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:28", + "echoMap": {}, + "alarmNo": "1730617534", + "alarmDate": "1769973116329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416605", + "createdBy": null, + "createdTime": "2026-02-02 03:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:55", + "echoMap": {}, + "alarmNo": "1730617533", + "alarmDate": "1769972574091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416533", + "createdBy": null, + "createdTime": "2026-02-02 03:02:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:55", + "echoMap": {}, + "alarmNo": "1730617532", + "alarmDate": "1769972569047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416387", + "createdBy": null, + "createdTime": "2026-02-02 03:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:49", + "echoMap": {}, + "alarmNo": "1730617531", + "alarmDate": "1769972557102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118883148416120", + "createdBy": null, + "createdTime": "2026-02-02 03:02:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:25", + "echoMap": {}, + "alarmNo": "1730617530", + "alarmDate": "1769972532031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118870263514161", + "createdBy": null, + "createdTime": "2026-02-02 02:51:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:00", + "echoMap": {}, + "alarmNo": "1730617529", + "alarmDate": "1769971919272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118865968547360", + "createdBy": null, + "createdTime": "2026-02-02 02:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:52", + "echoMap": {}, + "alarmNo": "1730617528", + "alarmDate": "1769971371108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118865968547008", + "createdBy": null, + "createdTime": "2026-02-02 02:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:42:23", + "echoMap": {}, + "alarmNo": "1730617527", + "alarmDate": "1769971341590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118857378612786", + "createdBy": null, + "createdTime": "2026-02-02 02:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:45", + "echoMap": {}, + "alarmNo": "1730617526", + "alarmDate": "1769970776417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118857378612250", + "createdBy": null, + "createdTime": "2026-02-02 02:32:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:17", + "echoMap": {}, + "alarmNo": "1730617525", + "alarmDate": "1769970730583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060084", + "deviceName": "[104](10)国权上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118857378612228", + "createdBy": null, + "createdTime": "2026-02-02 02:32:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:15", + "echoMap": {}, + "alarmNo": "1730617524", + "alarmDate": "1769970729060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788678299", + "createdBy": null, + "createdTime": "2026-02-02 02:31:57", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:45", + "echoMap": {}, + "alarmNo": "1730617523", + "alarmDate": "1769970717476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788678278", + "createdBy": null, + "createdTime": "2026-02-02 02:31:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:49", + "echoMap": {}, + "alarmNo": "1730617522", + "alarmDate": "1769970710128", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118848788678248", + "createdBy": null, + "createdTime": "2026-02-02 02:29:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:50", + "echoMap": {}, + "alarmNo": "1730617521", + "alarmDate": "1769970589036", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118848788678137", + "createdBy": null, + "createdTime": "2026-02-02 02:22:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:01", + "echoMap": {}, + "alarmNo": "1730617520", + "alarmDate": "1769970173934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788677975", + "createdBy": null, + "createdTime": "2026-02-02 02:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:54", + "echoMap": {}, + "alarmNo": "1730617519", + "alarmDate": "1769970161847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118848788677747", + "createdBy": null, + "createdTime": "2026-02-02 02:22:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:22", + "echoMap": {}, + "alarmNo": "1730617518", + "alarmDate": "1769970141425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118840198743355", + "createdBy": null, + "createdTime": "2026-02-02 02:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:43", + "echoMap": {}, + "alarmNo": "1730617517", + "alarmDate": "1769969561744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118835903775835", + "createdBy": null, + "createdTime": "2026-02-02 02:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:13", + "echoMap": {}, + "alarmNo": "1730617516", + "alarmDate": "1769969526589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060083", + "deviceName": "[103](10)国权上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118831608809006", + "createdBy": null, + "createdTime": "2026-02-02 02:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:56", + "echoMap": {}, + "alarmNo": "1730617515", + "alarmDate": "1769968974574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118823018874073", + "createdBy": null, + "createdTime": "2026-02-02 02:01:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:45", + "echoMap": {}, + "alarmNo": "1730617514", + "alarmDate": "1769968917468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118823018874018", + "createdBy": null, + "createdTime": "2026-02-02 01:58:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:50", + "echoMap": {}, + "alarmNo": "1730617513", + "alarmDate": "1769968730217", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118823018873941", + "createdBy": null, + "createdTime": "2026-02-02 01:53:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:55:49", + "echoMap": {}, + "alarmNo": "1730617512", + "alarmDate": "1769968430210", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118818723907460", + "createdBy": null, + "createdTime": "2026-02-02 01:52:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:42", + "echoMap": {}, + "alarmNo": "1730617511", + "alarmDate": "1769968360733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907418", + "createdBy": null, + "createdTime": "2026-02-02 01:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:42", + "echoMap": {}, + "alarmNo": "1730617510", + "alarmDate": "1769968357087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907274", + "createdBy": null, + "createdTime": "2026-02-02 01:52:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:31", + "echoMap": {}, + "alarmNo": "1730617509", + "alarmDate": "1769968343819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907142", + "createdBy": null, + "createdTime": "2026-02-02 01:52:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:24", + "echoMap": {}, + "alarmNo": "1730617508", + "alarmDate": "1769968331957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723907112", + "createdBy": null, + "createdTime": "2026-02-02 01:52:09", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:10", + "echoMap": {}, + "alarmNo": "1730617507", + "alarmDate": "1769968329263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723906982", + "createdBy": null, + "createdTime": "2026-02-02 01:51:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:45", + "echoMap": {}, + "alarmNo": "1730617506", + "alarmDate": "1769968317090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118818723906884", + "createdBy": null, + "createdTime": "2026-02-02 01:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:50", + "echoMap": {}, + "alarmNo": "1730617505", + "alarmDate": "1769968009038", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118818723906844", + "createdBy": null, + "createdTime": "2026-02-02 01:42:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:48", + "echoMap": {}, + "alarmNo": "1730617504", + "alarmDate": "1769967776593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060077", + "deviceName": "[110](10)国权下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118810133972010", + "createdBy": null, + "createdTime": "2026-02-02 01:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:01", + "echoMap": {}, + "alarmNo": "1730617503", + "alarmDate": "1769967736731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118805839005550", + "createdBy": null, + "createdTime": "2026-02-02 01:41:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:05", + "echoMap": {}, + "alarmNo": "1730617502", + "alarmDate": "1769967719441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060078", + "deviceName": "[109](10)国权下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118805839004852", + "createdBy": null, + "createdTime": "2026-02-02 01:32:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:11", + "echoMap": {}, + "alarmNo": "1730617501", + "alarmDate": "1769967130080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954103762", + "createdBy": null, + "createdTime": "2026-02-02 01:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:05", + "echoMap": {}, + "alarmNo": "1730617500", + "alarmDate": "1769966563110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954103613", + "createdBy": null, + "createdTime": "2026-02-02 01:22:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:29", + "echoMap": {}, + "alarmNo": "1730617499", + "alarmDate": "1769966548512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954103254", + "createdBy": null, + "createdTime": "2026-02-02 01:21:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:22:30", + "echoMap": {}, + "alarmNo": "1730617498", + "alarmDate": "1769966516002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118792954102843", + "createdBy": null, + "createdTime": "2026-02-02 01:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:51", + "echoMap": {}, + "alarmNo": "1730617497", + "alarmDate": "1769965951783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118784364168216", + "createdBy": null, + "createdTime": "2026-02-02 01:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:19", + "echoMap": {}, + "alarmNo": "1730617496", + "alarmDate": "1769965926697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060012", + "deviceName": "[306](10)国权3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201846", + "createdBy": null, + "createdTime": "2026-02-02 01:11:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:02:13", + "echoMap": {}, + "alarmNo": "1730617495", + "alarmDate": "1769965917236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201690", + "createdBy": null, + "createdTime": "2026-02-02 01:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:55", + "echoMap": {}, + "alarmNo": "1730617494", + "alarmDate": "1769965373767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201598", + "createdBy": null, + "createdTime": "2026-02-02 01:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:53", + "echoMap": {}, + "alarmNo": "1730617493", + "alarmDate": "1769965367143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201275", + "createdBy": null, + "createdTime": "2026-02-02 01:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:29", + "echoMap": {}, + "alarmNo": "1730617492", + "alarmDate": "1769965336926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201073", + "createdBy": null, + "createdTime": "2026-02-02 01:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:05", + "echoMap": {}, + "alarmNo": "1730617491", + "alarmDate": "1769965317947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118780069201070", + "createdBy": null, + "createdTime": "2026-02-02 01:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:45", + "echoMap": {}, + "alarmNo": "1730617490", + "alarmDate": "1769965317806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299884", + "createdBy": null, + "createdTime": "2026-02-02 00:52:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:42", + "echoMap": {}, + "alarmNo": "1730617489", + "alarmDate": "1769964749619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299618", + "createdBy": null, + "createdTime": "2026-02-02 00:52:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:52:18", + "echoMap": {}, + "alarmNo": "1730617488", + "alarmDate": "1769964724651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299331", + "createdBy": null, + "createdTime": "2026-02-02 00:42:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:50", + "echoMap": {}, + "alarmNo": "1730617487", + "alarmDate": "1769964169296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118767184299223", + "createdBy": null, + "createdTime": "2026-02-02 00:42:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:53", + "echoMap": {}, + "alarmNo": "1730617486", + "alarmDate": "1769964161440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118762889331778", + "createdBy": null, + "createdTime": "2026-02-02 00:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:21", + "echoMap": {}, + "alarmNo": "1730617485", + "alarmDate": "1769964140243", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118762889331743", + "createdBy": null, + "createdTime": "2026-02-02 00:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:29", + "echoMap": {}, + "alarmNo": "1730617484", + "alarmDate": "1769964137371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299398058", + "createdBy": null, + "createdTime": "2026-02-02 00:41:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:45", + "echoMap": {}, + "alarmNo": "1730617483", + "alarmDate": "1769964118017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397975", + "createdBy": null, + "createdTime": "2026-02-02 00:37:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:49", + "echoMap": {}, + "alarmNo": "1730617482", + "alarmDate": "1769963869100", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1023040008", + "deviceName": "H3C前端交换机7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1023" + }, + { + "id": "723118754299397895", + "createdBy": null, + "createdTime": "2026-02-02 00:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:42:05", + "echoMap": {}, + "alarmNo": "1730617481", + "alarmDate": "1769963574190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397613", + "createdBy": null, + "createdTime": "2026-02-02 00:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:42", + "echoMap": {}, + "alarmNo": "1730617480", + "alarmDate": "1769963550059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397599", + "createdBy": null, + "createdTime": "2026-02-02 00:32:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:30", + "echoMap": {}, + "alarmNo": "1730617479", + "alarmDate": "1769963549010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118754299397354", + "createdBy": null, + "createdTime": "2026-02-02 00:32:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:18", + "echoMap": {}, + "alarmNo": "1730617478", + "alarmDate": "1769963526006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414496137", + "createdBy": null, + "createdTime": "2026-02-02 00:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:54", + "echoMap": {}, + "alarmNo": "1730617477", + "alarmDate": "1769962961908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495882", + "createdBy": null, + "createdTime": "2026-02-02 00:22:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:30", + "echoMap": {}, + "alarmNo": "1730617476", + "alarmDate": "1769962937859", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495855", + "createdBy": null, + "createdTime": "2026-02-02 00:22:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:17", + "echoMap": {}, + "alarmNo": "1730617475", + "alarmDate": "1769962935639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060057", + "deviceName": "[210](10)国权4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495659", + "createdBy": null, + "createdTime": "2026-02-02 00:21:57", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:45", + "echoMap": {}, + "alarmNo": "1730617474", + "alarmDate": "1769962917358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060064", + "deviceName": "[316](10)国权4#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495495", + "createdBy": null, + "createdTime": "2026-02-02 00:12:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:06", + "echoMap": {}, + "alarmNo": "1730617473", + "alarmDate": "1769962374651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495368", + "createdBy": null, + "createdTime": "2026-02-02 00:12:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:50", + "echoMap": {}, + "alarmNo": "1730617472", + "alarmDate": "1769962368742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060033", + "deviceName": "[201](10)国权厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495317", + "createdBy": null, + "createdTime": "2026-02-02 00:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:47", + "echoMap": {}, + "alarmNo": "1730617471", + "alarmDate": "1769962366346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060044", + "deviceName": "[203](10)国权厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118741414495306", + "createdBy": null, + "createdTime": "2026-02-02 00:12:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:45", + "echoMap": {}, + "alarmNo": "1730617470", + "alarmDate": "1769962365752", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1023030011", + "deviceName": "安防箱11", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1023" + }, + { + "id": "723118741414495263", + "createdBy": null, + "createdTime": "2026-02-02 00:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:40", + "echoMap": {}, + "alarmNo": "1730617469", + "alarmDate": "1769962363839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118737119527977", + "createdBy": null, + "createdTime": "2026-02-02 00:12:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:41", + "echoMap": {}, + "alarmNo": "1730617468", + "alarmDate": "1769962360375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060026", + "deviceName": "[202](10)国权厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118737119527941", + "createdBy": null, + "createdTime": "2026-02-02 00:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:08", + "echoMap": {}, + "alarmNo": "1730617467", + "alarmDate": "1769962358530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060041", + "deviceName": "[335](10)国权10-18换乘入3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529594302", + "createdBy": null, + "createdTime": "2026-02-02 00:12:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:43", + "echoMap": {}, + "alarmNo": "1730617466", + "alarmDate": "1769962350521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529594130", + "createdBy": null, + "createdTime": "2026-02-02 00:12:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:22", + "echoMap": {}, + "alarmNo": "1730617465", + "alarmDate": "1769962340971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060052", + "deviceName": "[204](10)国权厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529594109", + "createdBy": null, + "createdTime": "2026-02-02 00:12:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:32", + "echoMap": {}, + "alarmNo": "1730617464", + "alarmDate": "1769962339858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529593864", + "createdBy": null, + "createdTime": "2026-02-02 00:12:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:19", + "echoMap": {}, + "alarmNo": "1730617463", + "alarmDate": "1769962326532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118728529593362", + "createdBy": null, + "createdTime": "2026-02-02 00:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:08", + "echoMap": {}, + "alarmNo": "1730617462", + "alarmDate": "1769961770802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118724234626062", + "createdBy": null, + "createdTime": "2026-02-02 00:02:47", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:48", + "echoMap": {}, + "alarmNo": "1730617461", + "alarmDate": "1769961767422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060082", + "deviceName": "[205](10)国权上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644692425", + "createdBy": null, + "createdTime": "2026-02-02 00:02:44", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:55", + "echoMap": {}, + "alarmNo": "1730617460", + "alarmDate": "1769961763767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644692001", + "createdBy": null, + "createdTime": "2026-02-02 00:02:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:39", + "echoMap": {}, + "alarmNo": "1730617459", + "alarmDate": "1769961740564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644691975", + "createdBy": null, + "createdTime": "2026-02-02 00:02:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:31", + "echoMap": {}, + "alarmNo": "1730617458", + "alarmDate": "1769961739307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060059", + "deviceName": "[315](10)国权4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644691675", + "createdBy": null, + "createdTime": "2026-02-02 00:02:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:09", + "echoMap": {}, + "alarmNo": "1730617457", + "alarmDate": "1769961722479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060085", + "deviceName": "[111](10)国权下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + }, + { + "id": "723118715644691630", + "createdBy": null, + "createdTime": "2026-02-02 00:02:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:02:01", + "echoMap": {}, + "alarmNo": "1730617456", + "alarmDate": "1769961720142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1023060088", + "deviceName": "[208](10)国权下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1023" + } + ] + }, + "1024": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723132571209374085", + "createdBy": null, + "createdTime": "2026-02-02 00:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:11", + "echoMap": {}, + "alarmNo": "1750838463", + "alarmDate": "1769961965972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132571209374533", + "createdBy": null, + "createdTime": "2026-02-02 00:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:22", + "echoMap": {}, + "alarmNo": "1750838464", + "alarmDate": "1769961980896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132575504341038", + "createdBy": null, + "createdTime": "2026-02-02 00:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:30", + "echoMap": {}, + "alarmNo": "1750838465", + "alarmDate": "1769961988536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132575504341113", + "createdBy": null, + "createdTime": "2026-02-02 00:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:32", + "echoMap": {}, + "alarmNo": "1750838466", + "alarmDate": "1769961990878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132588389243158", + "createdBy": null, + "createdTime": "2026-02-02 00:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:46", + "echoMap": {}, + "alarmNo": "1750838467", + "alarmDate": "1769962566333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132588389243452", + "createdBy": null, + "createdTime": "2026-02-02 00:16:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:17", + "echoMap": {}, + "alarmNo": "1750838468", + "alarmDate": "1769962575728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132592684210838", + "createdBy": null, + "createdTime": "2026-02-02 00:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:53", + "echoMap": {}, + "alarmNo": "1750838469", + "alarmDate": "1769962611687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132609864080004", + "createdBy": null, + "createdTime": "2026-02-02 00:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:58", + "echoMap": {}, + "alarmNo": "1750838470", + "alarmDate": "1769963217508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132609864080116", + "createdBy": null, + "createdTime": "2026-02-02 00:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:02", + "echoMap": {}, + "alarmNo": "1750838471", + "alarmDate": "1769963221053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132609864080200", + "createdBy": null, + "createdTime": "2026-02-02 00:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:05", + "echoMap": {}, + "alarmNo": "1750838472", + "alarmDate": "1769963223588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132614159046701", + "createdBy": null, + "createdTime": "2026-02-02 00:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:09", + "echoMap": {}, + "alarmNo": "1750838473", + "alarmDate": "1769963767719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132614159046756", + "createdBy": null, + "createdTime": "2026-02-02 00:36:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:10", + "echoMap": {}, + "alarmNo": "1750838474", + "alarmDate": "1769963769247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132618454013999", + "createdBy": null, + "createdTime": "2026-02-02 00:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:12", + "echoMap": {}, + "alarmNo": "1750838475", + "alarmDate": "1769963770852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132627043948677", + "createdBy": null, + "createdTime": "2026-02-02 00:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:49", + "echoMap": {}, + "alarmNo": "1750838476", + "alarmDate": "1769963808403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132635633883835", + "createdBy": null, + "createdTime": "2026-02-02 00:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:33", + "echoMap": {}, + "alarmNo": "1750838477", + "alarmDate": "1769964392486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132648518785924", + "createdBy": null, + "createdTime": "2026-02-02 00:56:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:42", + "echoMap": {}, + "alarmNo": "1750838478", + "alarmDate": "1769965000968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132648518786001", + "createdBy": null, + "createdTime": "2026-02-02 00:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:45", + "echoMap": {}, + "alarmNo": "1750838479", + "alarmDate": "1769965003415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132652813752338", + "createdBy": null, + "createdTime": "2026-02-02 00:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:46", + "echoMap": {}, + "alarmNo": "1750838480", + "alarmDate": "1769965005342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132661403687489", + "createdBy": null, + "createdTime": "2026-02-02 01:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:31", + "echoMap": {}, + "alarmNo": "1750838481", + "alarmDate": "1769965590220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132669993621551", + "createdBy": null, + "createdTime": "2026-02-02 01:16:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:15", + "echoMap": {}, + "alarmNo": "1750838482", + "alarmDate": "1769966174318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132687173490885", + "createdBy": null, + "createdTime": "2026-02-02 01:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:23", + "echoMap": {}, + "alarmNo": "1750838483", + "alarmDate": "1769966781830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132687173490936", + "createdBy": null, + "createdTime": "2026-02-02 01:26:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:24", + "echoMap": {}, + "alarmNo": "1750838484", + "alarmDate": "1769966783376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132687173491122", + "createdBy": null, + "createdTime": "2026-02-02 01:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:30", + "echoMap": {}, + "alarmNo": "1750838485", + "alarmDate": "1769966789190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132691468458457", + "createdBy": null, + "createdTime": "2026-02-02 01:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:04", + "echoMap": {}, + "alarmNo": "1750838486", + "alarmDate": "1769966822866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132695763425280", + "createdBy": null, + "createdTime": "2026-02-02 01:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:13", + "echoMap": {}, + "alarmNo": "1750838487", + "alarmDate": "1769967372212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132700058393595", + "createdBy": null, + "createdTime": "2026-02-02 01:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:48", + "echoMap": {}, + "alarmNo": "1750838488", + "alarmDate": "1769967407085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132717238261990", + "createdBy": null, + "createdTime": "2026-02-02 01:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:56", + "echoMap": {}, + "alarmNo": "1750838489", + "alarmDate": "1769968014505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132717238262044", + "createdBy": null, + "createdTime": "2026-02-02 01:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:57", + "echoMap": {}, + "alarmNo": "1750838490", + "alarmDate": "1769968016140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132717238262285", + "createdBy": null, + "createdTime": "2026-02-02 01:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:15", + "echoMap": {}, + "alarmNo": "1750838491", + "alarmDate": "1769968023738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132725828197328", + "createdBy": null, + "createdTime": "2026-02-02 01:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:46", + "echoMap": {}, + "alarmNo": "1750838492", + "alarmDate": "1769968605342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060013", + "deviceName": "[210](10)五角场3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132725828197344", + "createdBy": null, + "createdTime": "2026-02-02 01:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:47", + "echoMap": {}, + "alarmNo": "1750838493", + "alarmDate": "1769968605754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132738713098695", + "createdBy": null, + "createdTime": "2026-02-02 02:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:29", + "echoMap": {}, + "alarmNo": "1750838494", + "alarmDate": "1769969187900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132751598000832", + "createdBy": null, + "createdTime": "2026-02-02 02:16:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:37", + "echoMap": {}, + "alarmNo": "1750838495", + "alarmDate": "1769969796347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132751598000846", + "createdBy": null, + "createdTime": "2026-02-02 02:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:38", + "echoMap": {}, + "alarmNo": "1750838496", + "alarmDate": "1769969796938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132755892967516", + "createdBy": null, + "createdTime": "2026-02-02 02:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:51", + "echoMap": {}, + "alarmNo": "1750838497", + "alarmDate": "1769969809525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132764482902525", + "createdBy": null, + "createdTime": "2026-02-02 02:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:32", + "echoMap": {}, + "alarmNo": "1750838498", + "alarmDate": "1769970390596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132768777869727", + "createdBy": null, + "createdTime": "2026-02-02 02:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:02", + "echoMap": {}, + "alarmNo": "1750838499", + "alarmDate": "1769970420506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132768777870099", + "createdBy": null, + "createdTime": "2026-02-02 02:36:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:10", + "echoMap": {}, + "alarmNo": "1750838500", + "alarmDate": "1769970968711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132790252705856", + "createdBy": null, + "createdTime": "2026-02-02 02:46:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:18", + "echoMap": {}, + "alarmNo": "1750838501", + "alarmDate": "1769971577170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132790252705911", + "createdBy": null, + "createdTime": "2026-02-02 02:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:20", + "echoMap": {}, + "alarmNo": "1750838502", + "alarmDate": "1769971578813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132790252706425", + "createdBy": null, + "createdTime": "2026-02-02 02:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:36", + "echoMap": {}, + "alarmNo": "1750838503", + "alarmDate": "1769971595324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132794547673566", + "createdBy": null, + "createdTime": "2026-02-02 02:47:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:04", + "echoMap": {}, + "alarmNo": "1750838504", + "alarmDate": "1769971623232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132794547673890", + "createdBy": null, + "createdTime": "2026-02-02 02:56:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:11", + "echoMap": {}, + "alarmNo": "1750838505", + "alarmDate": "1769972170406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132803137608477", + "createdBy": null, + "createdTime": "2026-02-02 02:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:41", + "echoMap": {}, + "alarmNo": "1750838506", + "alarmDate": "1769972200410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132820317476926", + "createdBy": null, + "createdTime": "2026-02-02 03:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:51", + "echoMap": {}, + "alarmNo": "1750838507", + "alarmDate": "1769972809977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132820317477008", + "createdBy": null, + "createdTime": "2026-02-02 03:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:53", + "echoMap": {}, + "alarmNo": "1750838508", + "alarmDate": "1769972812556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132828907411553", + "createdBy": null, + "createdTime": "2026-02-02 03:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:19", + "echoMap": {}, + "alarmNo": "1750838509", + "alarmDate": "1769973378111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132828907412374", + "createdBy": null, + "createdTime": "2026-02-02 03:16:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:45", + "echoMap": {}, + "alarmNo": "1750838510", + "alarmDate": "1769973404114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132841792313548", + "createdBy": null, + "createdTime": "2026-02-02 03:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:22", + "echoMap": {}, + "alarmNo": "1750838511", + "alarmDate": "1769973981250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132854677215708", + "createdBy": null, + "createdTime": "2026-02-02 03:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:32", + "echoMap": {}, + "alarmNo": "1750838512", + "alarmDate": "1769974590805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132854677215853", + "createdBy": null, + "createdTime": "2026-02-02 03:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:36", + "echoMap": {}, + "alarmNo": "1750838513", + "alarmDate": "1769974595393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132858972182757", + "createdBy": null, + "createdTime": "2026-02-02 03:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:57", + "echoMap": {}, + "alarmNo": "1750838514", + "alarmDate": "1769974615699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132867562117437", + "createdBy": null, + "createdTime": "2026-02-02 03:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:26", + "echoMap": {}, + "alarmNo": "1750838516", + "alarmDate": "1769975184926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132871857084625", + "createdBy": null, + "createdTime": "2026-02-02 03:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:55", + "echoMap": {}, + "alarmNo": "1750838517", + "alarmDate": "1769975213945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132884741986825", + "createdBy": null, + "createdTime": "2026-02-02 03:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:15", + "echoMap": {}, + "alarmNo": "1750838518", + "alarmDate": "1769975825441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132893331920936", + "createdBy": null, + "createdTime": "2026-02-02 04:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:17", + "echoMap": {}, + "alarmNo": "1750838519", + "alarmDate": "1769976376256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132893331921695", + "createdBy": null, + "createdTime": "2026-02-02 04:06:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:42", + "echoMap": {}, + "alarmNo": "1750838520", + "alarmDate": "1769976400641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132897626888501", + "createdBy": null, + "createdTime": "2026-02-02 04:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:59", + "echoMap": {}, + "alarmNo": "1750838521", + "alarmDate": "1769976417647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132906216823404", + "createdBy": null, + "createdTime": "2026-02-02 04:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:36", + "echoMap": {}, + "alarmNo": "1750838522", + "alarmDate": "1769976994829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132919101725645", + "createdBy": null, + "createdTime": "2026-02-02 04:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:47", + "echoMap": {}, + "alarmNo": "1750838523", + "alarmDate": "1769977606249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132923396691999", + "createdBy": null, + "createdTime": "2026-02-02 04:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:50", + "echoMap": {}, + "alarmNo": "1750838524", + "alarmDate": "1769977608848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132931986626987", + "createdBy": null, + "createdTime": "2026-02-02 04:36:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:29", + "echoMap": {}, + "alarmNo": "1750838525", + "alarmDate": "1769978188350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132931986627245", + "createdBy": null, + "createdTime": "2026-02-02 04:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:38", + "echoMap": {}, + "alarmNo": "1750838526", + "alarmDate": "1769978196506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132944871528530", + "createdBy": null, + "createdTime": "2026-02-02 04:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:17", + "echoMap": {}, + "alarmNo": "1750838527", + "alarmDate": "1769978775653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132957756430759", + "createdBy": null, + "createdTime": "2026-02-02 04:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:26", + "echoMap": {}, + "alarmNo": "1750838528", + "alarmDate": "1769979385424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132957756430882", + "createdBy": null, + "createdTime": "2026-02-02 04:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:30", + "echoMap": {}, + "alarmNo": "1750838529", + "alarmDate": "1769979388873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132966346364987", + "createdBy": null, + "createdTime": "2026-02-02 05:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:34", + "echoMap": {}, + "alarmNo": "1750838530", + "alarmDate": "1769979966754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132970641332636", + "createdBy": null, + "createdTime": "2026-02-02 05:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:19", + "echoMap": {}, + "alarmNo": "1750838531", + "alarmDate": "1769979978260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132970641332646", + "createdBy": null, + "createdTime": "2026-02-02 05:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:20", + "echoMap": {}, + "alarmNo": "1750838532", + "alarmDate": "1769979978410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132974936300047", + "createdBy": null, + "createdTime": "2026-02-02 05:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:50", + "echoMap": {}, + "alarmNo": "1750838533", + "alarmDate": "1769980009486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136167", + "createdBy": null, + "createdTime": "2026-02-02 05:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:00", + "echoMap": {}, + "alarmNo": "1750838534", + "alarmDate": "1769980619071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136292", + "createdBy": null, + "createdTime": "2026-02-02 05:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:03", + "echoMap": {}, + "alarmNo": "1750838535", + "alarmDate": "1769980622594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136609", + "createdBy": null, + "createdTime": "2026-02-02 05:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:09", + "echoMap": {}, + "alarmNo": "1750838536", + "alarmDate": "1769981168367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136688", + "createdBy": null, + "createdTime": "2026-02-02 05:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:12", + "echoMap": {}, + "alarmNo": "1750838537", + "alarmDate": "1769981170628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133009296038178", + "createdBy": null, + "createdTime": "2026-02-02 05:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1750838538", + "alarmDate": "1769981214988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133009296038194", + "createdBy": null, + "createdTime": "2026-02-02 05:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1750838539", + "alarmDate": "1769981215311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133009296038707", + "createdBy": null, + "createdTime": "2026-02-02 05:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:08", + "echoMap": {}, + "alarmNo": "1750838540", + "alarmDate": "1769981766902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133013591005861", + "createdBy": null, + "createdTime": "2026-02-02 05:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:32", + "echoMap": {}, + "alarmNo": "1750838541", + "alarmDate": "1769981791244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133035065841783", + "createdBy": null, + "createdTime": "2026-02-02 05:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:43", + "echoMap": {}, + "alarmNo": "1750838542", + "alarmDate": "1769982401681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133043655776345", + "createdBy": null, + "createdTime": "2026-02-02 05:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:47", + "echoMap": {}, + "alarmNo": "1750838543", + "alarmDate": "1769982406414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133047950743979", + "createdBy": null, + "createdTime": "2026-02-02 05:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:23", + "echoMap": {}, + "alarmNo": "1750838544", + "alarmDate": "1769982981822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060104", + "deviceName": "[212](10)五角场厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133047950744538", + "createdBy": null, + "createdTime": "2026-02-02 05:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:38", + "echoMap": {}, + "alarmNo": "1750838545", + "alarmDate": "1769982996841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133060835645688", + "createdBy": null, + "createdTime": "2026-02-02 05:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:52", + "echoMap": {}, + "alarmNo": "1750838546", + "alarmDate": "1769983010561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133065130612976", + "createdBy": null, + "createdTime": "2026-02-02 06:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:17", + "echoMap": {}, + "alarmNo": "1750838547", + "alarmDate": "1769983576100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133082310482542", + "createdBy": null, + "createdTime": "2026-02-02 06:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:29", + "echoMap": {}, + "alarmNo": "1750838548", + "alarmDate": "1769984187590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133082310482606", + "createdBy": null, + "createdTime": "2026-02-02 06:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:30", + "echoMap": {}, + "alarmNo": "1750838549", + "alarmDate": "1769984189245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133090900416513", + "createdBy": null, + "createdTime": "2026-02-02 06:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:44", + "echoMap": {}, + "alarmNo": "1750838550", + "alarmDate": "1769984202729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060038", + "deviceName": "[211](10)五角场4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133099490351463", + "createdBy": null, + "createdTime": "2026-02-02 06:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:21", + "echoMap": {}, + "alarmNo": "1750838551", + "alarmDate": "1769984779761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133112375253147", + "createdBy": null, + "createdTime": "2026-02-02 06:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:49", + "echoMap": {}, + "alarmNo": "1750838552", + "alarmDate": "1769984808416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133112375253312", + "createdBy": null, + "createdTime": "2026-02-02 06:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:54", + "echoMap": {}, + "alarmNo": "1750838553", + "alarmDate": "1769984812842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133129555122858", + "createdBy": null, + "createdTime": "2026-02-02 06:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:04", + "echoMap": {}, + "alarmNo": "1750838554", + "alarmDate": "1769985423214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133133850089561", + "createdBy": null, + "createdTime": "2026-02-02 06:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:13", + "echoMap": {}, + "alarmNo": "1750838555", + "alarmDate": "1769985972332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133133850089983", + "createdBy": null, + "createdTime": "2026-02-02 06:46:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:25", + "echoMap": {}, + "alarmNo": "1750838556", + "alarmDate": "1769985984073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133133850090239", + "createdBy": null, + "createdTime": "2026-02-02 06:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:32", + "echoMap": {}, + "alarmNo": "1750838557", + "alarmDate": "1769985991101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133146734991692", + "createdBy": null, + "createdTime": "2026-02-02 06:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:54", + "echoMap": {}, + "alarmNo": "1750838558", + "alarmDate": "1769986013417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133163914860605", + "createdBy": null, + "createdTime": "2026-02-02 06:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:47", + "echoMap": {}, + "alarmNo": "1750838559", + "alarmDate": "1769986605690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133163914860657", + "createdBy": null, + "createdTime": "2026-02-02 06:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:48", + "echoMap": {}, + "alarmNo": "1750838560", + "alarmDate": "1769986607163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133163914861034", + "createdBy": null, + "createdTime": "2026-02-02 06:56:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:16", + "echoMap": {}, + "alarmNo": "1750838561", + "alarmDate": "1769986617740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133168209828670", + "createdBy": null, + "createdTime": "2026-02-02 07:06:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:32", + "echoMap": {}, + "alarmNo": "1750838562", + "alarmDate": "1769987191947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133181094730072", + "createdBy": null, + "createdTime": "2026-02-02 07:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:53", + "echoMap": {}, + "alarmNo": "1750838563", + "alarmDate": "1769987212161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133181094730472", + "createdBy": null, + "createdTime": "2026-02-02 07:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:04", + "echoMap": {}, + "alarmNo": "1750838564", + "alarmDate": "1769987222881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133185389697141", + "createdBy": null, + "createdTime": "2026-02-02 07:16:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:12", + "echoMap": {}, + "alarmNo": "1750838565", + "alarmDate": "1769987770995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133185389697627", + "createdBy": null, + "createdTime": "2026-02-02 07:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:36", + "echoMap": {}, + "alarmNo": "1750838566", + "alarmDate": "1769987784236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133185389697838", + "createdBy": null, + "createdTime": "2026-02-02 07:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:31", + "echoMap": {}, + "alarmNo": "1750838567", + "alarmDate": "1769987790017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133198274599138", + "createdBy": null, + "createdTime": "2026-02-02 07:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:48", + "echoMap": {}, + "alarmNo": "1750838568", + "alarmDate": "1769987807213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133215454468261", + "createdBy": null, + "createdTime": "2026-02-02 07:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:46", + "echoMap": {}, + "alarmNo": "1750838569", + "alarmDate": "1769988404582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133215454468388", + "createdBy": null, + "createdTime": "2026-02-02 07:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:49", + "echoMap": {}, + "alarmNo": "1750838570", + "alarmDate": "1769988407928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133219749435880", + "createdBy": null, + "createdTime": "2026-02-02 07:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:38", + "echoMap": {}, + "alarmNo": "1750838571", + "alarmDate": "1769988979261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133219749435948", + "createdBy": null, + "createdTime": "2026-02-02 07:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:30", + "echoMap": {}, + "alarmNo": "1750838572", + "alarmDate": "1769988981122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133219749436244", + "createdBy": null, + "createdTime": "2026-02-02 07:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:08", + "echoMap": {}, + "alarmNo": "1750838573", + "alarmDate": "1769988989319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133232634337364", + "createdBy": null, + "createdTime": "2026-02-02 07:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:43", + "echoMap": {}, + "alarmNo": "1750838574", + "alarmDate": "1769989002016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133232634337648", + "createdBy": null, + "createdTime": "2026-02-02 07:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:51", + "echoMap": {}, + "alarmNo": "1750838575", + "alarmDate": "1769989009701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133232634337922", + "createdBy": null, + "createdTime": "2026-02-02 07:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:17", + "echoMap": {}, + "alarmNo": "1750838576", + "alarmDate": "1769989017201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133241224271897", + "createdBy": null, + "createdTime": "2026-02-02 07:46:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:34", + "echoMap": {}, + "alarmNo": "1750838577", + "alarmDate": "1769989592885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133249814206602", + "createdBy": null, + "createdTime": "2026-02-02 07:46:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:44", + "echoMap": {}, + "alarmNo": "1750838578", + "alarmDate": "1769989603130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133249814207020", + "createdBy": null, + "createdTime": "2026-02-02 07:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:44", + "echoMap": {}, + "alarmNo": "1750838579", + "alarmDate": "1769989614711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133266994076159", + "createdBy": null, + "createdTime": "2026-02-02 07:56:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:55", + "echoMap": {}, + "alarmNo": "1750838580", + "alarmDate": "1769990213816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043147", + "createdBy": null, + "createdTime": "2026-02-02 08:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:12", + "echoMap": {}, + "alarmNo": "1750838581", + "alarmDate": "1769990771042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043237", + "createdBy": null, + "createdTime": "2026-02-02 08:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:15", + "echoMap": {}, + "alarmNo": "1750838582", + "alarmDate": "1769990773524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043840", + "createdBy": null, + "createdTime": "2026-02-02 08:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:59", + "echoMap": {}, + "alarmNo": "1750838583", + "alarmDate": "1769990790509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043965", + "createdBy": null, + "createdTime": "2026-02-02 08:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:35", + "echoMap": {}, + "alarmNo": "1750838584", + "alarmDate": "1769990793970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173944869", + "createdBy": null, + "createdTime": "2026-02-02 08:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:44", + "echoMap": {}, + "alarmNo": "1750838585", + "alarmDate": "1769990802556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173944932", + "createdBy": null, + "createdTime": "2026-02-02 08:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:32", + "echoMap": {}, + "alarmNo": "1750838586", + "alarmDate": "1769990804285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173945146", + "createdBy": null, + "createdTime": "2026-02-02 08:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:34", + "echoMap": {}, + "alarmNo": "1750838587", + "alarmDate": "1769990810499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173945410", + "createdBy": null, + "createdTime": "2026-02-02 08:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:51", + "echoMap": {}, + "alarmNo": "1750838588", + "alarmDate": "1769990817971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133288468912594", + "createdBy": null, + "createdTime": "2026-02-02 08:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:30", + "echoMap": {}, + "alarmNo": "1750838589", + "alarmDate": "1769991381207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133288468912761", + "createdBy": null, + "createdTime": "2026-02-02 08:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:37", + "echoMap": {}, + "alarmNo": "1750838590", + "alarmDate": "1769991385244", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133292763879548", + "createdBy": null, + "createdTime": "2026-02-02 08:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:40", + "echoMap": {}, + "alarmNo": "1750838591", + "alarmDate": "1769991398768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133301353814174", + "createdBy": null, + "createdTime": "2026-02-02 08:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:47", + "echoMap": {}, + "alarmNo": "1750838592", + "alarmDate": "1769991406017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133301353814521", + "createdBy": null, + "createdTime": "2026-02-02 08:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:01", + "echoMap": {}, + "alarmNo": "1750838593", + "alarmDate": "1769991415312", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133305648782275", + "createdBy": null, + "createdTime": "2026-02-02 08:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:39", + "echoMap": {}, + "alarmNo": "1750838594", + "alarmDate": "1769991992565", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533683833", + "createdBy": null, + "createdTime": "2026-02-02 08:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:09", + "echoMap": {}, + "alarmNo": "1750838595", + "alarmDate": "1769992018442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533683915", + "createdBy": null, + "createdTime": "2026-02-02 08:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:02", + "echoMap": {}, + "alarmNo": "1750838596", + "alarmDate": "1769992020683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533683990", + "createdBy": null, + "createdTime": "2026-02-02 08:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:19", + "echoMap": {}, + "alarmNo": "1750838597", + "alarmDate": "1769992022601", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533684014", + "createdBy": null, + "createdTime": "2026-02-02 08:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:04", + "echoMap": {}, + "alarmNo": "1750838598", + "alarmDate": "1769992023201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650498", + "createdBy": null, + "createdTime": "2026-02-02 08:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:24", + "echoMap": {}, + "alarmNo": "1750838599", + "alarmDate": "1769992565715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650548", + "createdBy": null, + "createdTime": "2026-02-02 08:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:27", + "echoMap": {}, + "alarmNo": "1750838600", + "alarmDate": "1769992567436", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060107", + "deviceName": "[625](10)五角场下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650672", + "createdBy": null, + "createdTime": "2026-02-02 08:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:12", + "echoMap": {}, + "alarmNo": "1750838601", + "alarmDate": "1769992570672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650902", + "createdBy": null, + "createdTime": "2026-02-02 08:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:18", + "echoMap": {}, + "alarmNo": "1750838602", + "alarmDate": "1769992576928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828651158", + "createdBy": null, + "createdTime": "2026-02-02 08:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:56", + "echoMap": {}, + "alarmNo": "1750838603", + "alarmDate": "1769992583976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828651299", + "createdBy": null, + "createdTime": "2026-02-02 08:36:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:29", + "echoMap": {}, + "alarmNo": "1750838604", + "alarmDate": "1769992587890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552425", + "createdBy": null, + "createdTime": "2026-02-02 08:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:44", + "echoMap": {}, + "alarmNo": "1750838605", + "alarmDate": "1769992603383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552448", + "createdBy": null, + "createdTime": "2026-02-02 08:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:51", + "echoMap": {}, + "alarmNo": "1750838606", + "alarmDate": "1769992603988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552488", + "createdBy": null, + "createdTime": "2026-02-02 08:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:02", + "echoMap": {}, + "alarmNo": "1750838607", + "alarmDate": "1769992605030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552726", + "createdBy": null, + "createdTime": "2026-02-02 08:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1750838608", + "alarmDate": "1769992611856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713553293", + "createdBy": null, + "createdTime": "2026-02-02 08:43:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:06", + "echoMap": {}, + "alarmNo": "1750838609", + "alarmDate": "1769992986858", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1024060078", + "deviceName": "[337](10)五角场#2台楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133340008519793", + "createdBy": null, + "createdTime": "2026-02-02 08:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:05", + "echoMap": {}, + "alarmNo": "1750838610", + "alarmDate": "1769993171543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133340008520660", + "createdBy": null, + "createdTime": "2026-02-02 08:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:54", + "echoMap": {}, + "alarmNo": "1750838611", + "alarmDate": "1769993196343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133348598454327", + "createdBy": null, + "createdTime": "2026-02-02 08:46:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:02", + "echoMap": {}, + "alarmNo": "1750838612", + "alarmDate": "1769993202894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421629", + "createdBy": null, + "createdTime": "2026-02-02 08:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:46", + "echoMap": {}, + "alarmNo": "1750838613", + "alarmDate": "1769993204721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421638", + "createdBy": null, + "createdTime": "2026-02-02 08:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:46", + "echoMap": {}, + "alarmNo": "1750838614", + "alarmDate": "1769993204947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421794", + "createdBy": null, + "createdTime": "2026-02-02 08:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:55", + "echoMap": {}, + "alarmNo": "1750838615", + "alarmDate": "1769993209244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421835", + "createdBy": null, + "createdTime": "2026-02-02 08:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:12", + "echoMap": {}, + "alarmNo": "1750838616", + "alarmDate": "1769993210291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893422258", + "createdBy": null, + "createdTime": "2026-02-02 08:47:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:22", + "echoMap": {}, + "alarmNo": "1750838617", + "alarmDate": "1769993222225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893422331", + "createdBy": null, + "createdTime": "2026-02-02 08:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:25", + "echoMap": {}, + "alarmNo": "1750838618", + "alarmDate": "1769993224234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133357188389876", + "createdBy": null, + "createdTime": "2026-02-02 08:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:50", + "echoMap": {}, + "alarmNo": "1750838619", + "alarmDate": "1769993796547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133361483356188", + "createdBy": null, + "createdTime": "2026-02-02 08:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:45", + "echoMap": {}, + "alarmNo": "1750838620", + "alarmDate": "1769993797569", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060036", + "deviceName": "[318](10)五角场4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133370073291422", + "createdBy": null, + "createdTime": "2026-02-02 08:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:01", + "echoMap": {}, + "alarmNo": "1750838621", + "alarmDate": "1769993822552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258481", + "createdBy": null, + "createdTime": "2026-02-02 09:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:23", + "echoMap": {}, + "alarmNo": "1750838622", + "alarmDate": "1769994381580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258525", + "createdBy": null, + "createdTime": "2026-02-02 09:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:24", + "echoMap": {}, + "alarmNo": "1750838623", + "alarmDate": "1769994382751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258916", + "createdBy": null, + "createdTime": "2026-02-02 09:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:40", + "echoMap": {}, + "alarmNo": "1750838624", + "alarmDate": "1769994393619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258930", + "createdBy": null, + "createdTime": "2026-02-02 09:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:36", + "echoMap": {}, + "alarmNo": "1750838625", + "alarmDate": "1769994393930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258967", + "createdBy": null, + "createdTime": "2026-02-02 09:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:44", + "echoMap": {}, + "alarmNo": "1750838626", + "alarmDate": "1769994394917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368259023", + "createdBy": null, + "createdTime": "2026-02-02 09:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:37", + "echoMap": {}, + "alarmNo": "1750838627", + "alarmDate": "1769994396256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133387253160497", + "createdBy": null, + "createdTime": "2026-02-02 09:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:36", + "echoMap": {}, + "alarmNo": "1750838628", + "alarmDate": "1769994420690", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133387253160795", + "createdBy": null, + "createdTime": "2026-02-02 09:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:00", + "echoMap": {}, + "alarmNo": "1750838629", + "alarmDate": "1769994965934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133391548127556", + "createdBy": null, + "createdTime": "2026-02-02 09:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:30", + "echoMap": {}, + "alarmNo": "1750838630", + "alarmDate": "1769994980456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133391548127703", + "createdBy": null, + "createdTime": "2026-02-02 09:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:32", + "echoMap": {}, + "alarmNo": "1750838631", + "alarmDate": "1769994984567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133400138061862", + "createdBy": null, + "createdTime": "2026-02-02 09:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:04", + "echoMap": {}, + "alarmNo": "1750838632", + "alarmDate": "1769995004723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133400138061867", + "createdBy": null, + "createdTime": "2026-02-02 09:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:46", + "echoMap": {}, + "alarmNo": "1750838633", + "alarmDate": "1769995004844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029348", + "createdBy": null, + "createdTime": "2026-02-02 09:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:52", + "echoMap": {}, + "alarmNo": "1750838634", + "alarmDate": "1769995011840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029946", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:18", + "echoMap": {}, + "alarmNo": "1750838635", + "alarmDate": "1769995566000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029953", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:14", + "echoMap": {}, + "alarmNo": "1750838636", + "alarmDate": "1769995566123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029959", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:35", + "echoMap": {}, + "alarmNo": "1750838637", + "alarmDate": "1769995566326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029967", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:59", + "echoMap": {}, + "alarmNo": "1750838638", + "alarmDate": "1769995566425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433030016", + "createdBy": null, + "createdTime": "2026-02-02 09:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:09", + "echoMap": {}, + "alarmNo": "1750838639", + "alarmDate": "1769995567823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133408727997338", + "createdBy": null, + "createdTime": "2026-02-02 09:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:39", + "echoMap": {}, + "alarmNo": "1750838640", + "alarmDate": "1769995595804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899010", + "createdBy": null, + "createdTime": "2026-02-02 09:27:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:03", + "echoMap": {}, + "alarmNo": "1750838641", + "alarmDate": "1769995622427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899077", + "createdBy": null, + "createdTime": "2026-02-02 09:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:13", + "echoMap": {}, + "alarmNo": "1750838642", + "alarmDate": "1769995624190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899240", + "createdBy": null, + "createdTime": "2026-02-02 09:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:50", + "echoMap": {}, + "alarmNo": "1750838643", + "alarmDate": "1769996165511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899251", + "createdBy": null, + "createdTime": "2026-02-02 09:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:00", + "echoMap": {}, + "alarmNo": "1750838644", + "alarmDate": "1769996165873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133425907865885", + "createdBy": null, + "createdTime": "2026-02-02 09:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:16", + "echoMap": {}, + "alarmNo": "1750838645", + "alarmDate": "1769996175518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133425907866429", + "createdBy": null, + "createdTime": "2026-02-02 09:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:32", + "echoMap": {}, + "alarmNo": "1750838646", + "alarmDate": "1769996190607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133425907866562", + "createdBy": null, + "createdTime": "2026-02-02 09:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:35", + "echoMap": {}, + "alarmNo": "1750838647", + "alarmDate": "1769996194178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133434497800193", + "createdBy": null, + "createdTime": "2026-02-02 09:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:52", + "echoMap": {}, + "alarmNo": "1750838648", + "alarmDate": "1769996200740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133438792767682", + "createdBy": null, + "createdTime": "2026-02-02 09:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:02", + "echoMap": {}, + "alarmNo": "1750838649", + "alarmDate": "1769996207760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133438792768458", + "createdBy": null, + "createdTime": "2026-02-02 09:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:36", + "echoMap": {}, + "alarmNo": "1750838650", + "alarmDate": "1769996766167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133443087735620", + "createdBy": null, + "createdTime": "2026-02-02 09:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:19", + "echoMap": {}, + "alarmNo": "1750838651", + "alarmDate": "1769996791448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133443087735740", + "createdBy": null, + "createdTime": "2026-02-02 09:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:36", + "echoMap": {}, + "alarmNo": "1750838652", + "alarmDate": "1769996794705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133455972637245", + "createdBy": null, + "createdTime": "2026-02-02 09:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:00", + "echoMap": {}, + "alarmNo": "1750838653", + "alarmDate": "1769996818582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133460267604219", + "createdBy": null, + "createdTime": "2026-02-02 09:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:16", + "echoMap": {}, + "alarmNo": "1750838654", + "alarmDate": "1769997374739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133473152506421", + "createdBy": null, + "createdTime": "2026-02-02 09:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:57", + "echoMap": {}, + "alarmNo": "1750838655", + "alarmDate": "1769997416231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133473152506627", + "createdBy": null, + "createdTime": "2026-02-02 09:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:38", + "echoMap": {}, + "alarmNo": "1750838656", + "alarmDate": "1769997422064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473157", + "createdBy": null, + "createdTime": "2026-02-02 10:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:38", + "echoMap": {}, + "alarmNo": "1750838657", + "alarmDate": "1769997965340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473165", + "createdBy": null, + "createdTime": "2026-02-02 10:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:33", + "echoMap": {}, + "alarmNo": "1750838658", + "alarmDate": "1769997965825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473178", + "createdBy": null, + "createdTime": "2026-02-02 10:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:53", + "echoMap": {}, + "alarmNo": "1750838659", + "alarmDate": "1769997966336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473223", + "createdBy": null, + "createdTime": "2026-02-02 10:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:08", + "echoMap": {}, + "alarmNo": "1750838660", + "alarmDate": "1769997967481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447474011", + "createdBy": null, + "createdTime": "2026-02-02 10:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:30", + "echoMap": {}, + "alarmNo": "1750838661", + "alarmDate": "1769997989342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133481742440468", + "createdBy": null, + "createdTime": "2026-02-02 10:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:35", + "echoMap": {}, + "alarmNo": "1750838662", + "alarmDate": "1769997994329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133481742440643", + "createdBy": null, + "createdTime": "2026-02-02 10:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:40", + "echoMap": {}, + "alarmNo": "1750838663", + "alarmDate": "1769997999156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133486037407745", + "createdBy": null, + "createdTime": "2026-02-02 10:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:41", + "echoMap": {}, + "alarmNo": "1750838664", + "alarmDate": "1769998000129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375128", + "createdBy": null, + "createdTime": "2026-02-02 10:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:17", + "echoMap": {}, + "alarmNo": "1750838665", + "alarmDate": "1769998005025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375170", + "createdBy": null, + "createdTime": "2026-02-02 10:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:16", + "echoMap": {}, + "alarmNo": "1750838666", + "alarmDate": "1769998006174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375362", + "createdBy": null, + "createdTime": "2026-02-02 10:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:18", + "echoMap": {}, + "alarmNo": "1750838667", + "alarmDate": "1769998011527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375406", + "createdBy": null, + "createdTime": "2026-02-02 10:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:47", + "echoMap": {}, + "alarmNo": "1750838668", + "alarmDate": "1769998012692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375984", + "createdBy": null, + "createdTime": "2026-02-02 10:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:06", + "echoMap": {}, + "alarmNo": "1750838669", + "alarmDate": "1769998565311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375997", + "createdBy": null, + "createdTime": "2026-02-02 10:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:01", + "echoMap": {}, + "alarmNo": "1750838670", + "alarmDate": "1769998565894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133494627342951", + "createdBy": null, + "createdTime": "2026-02-02 10:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:39", + "echoMap": {}, + "alarmNo": "1750838671", + "alarmDate": "1769998585153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133494627343111", + "createdBy": null, + "createdTime": "2026-02-02 10:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:31", + "echoMap": {}, + "alarmNo": "1750838672", + "alarmDate": "1769998589618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133494627343130", + "createdBy": null, + "createdTime": "2026-02-02 10:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:53", + "echoMap": {}, + "alarmNo": "1750838673", + "alarmDate": "1769998589880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133507512244670", + "createdBy": null, + "createdTime": "2026-02-02 10:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:56", + "echoMap": {}, + "alarmNo": "1750838674", + "alarmDate": "1769998614758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133507512245211", + "createdBy": null, + "createdTime": "2026-02-02 10:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:06", + "echoMap": {}, + "alarmNo": "1750838675", + "alarmDate": "1769999165539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133511807211621", + "createdBy": null, + "createdTime": "2026-02-02 10:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:11", + "echoMap": {}, + "alarmNo": "1750838676", + "alarmDate": "1769999169924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133516102178962", + "createdBy": null, + "createdTime": "2026-02-02 10:26:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:40", + "echoMap": {}, + "alarmNo": "1750838677", + "alarmDate": "1769999199115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133524692113791", + "createdBy": null, + "createdTime": "2026-02-02 10:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:52", + "echoMap": {}, + "alarmNo": "1750838678", + "alarmDate": "1769999211240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133528987080711", + "createdBy": null, + "createdTime": "2026-02-02 10:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:06", + "echoMap": {}, + "alarmNo": "1750838679", + "alarmDate": "1769999764855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133533282048070", + "createdBy": null, + "createdTime": "2026-02-02 10:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:36", + "echoMap": {}, + "alarmNo": "1750838680", + "alarmDate": "1769999795267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133537577015313", + "createdBy": null, + "createdTime": "2026-02-02 10:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:39", + "echoMap": {}, + "alarmNo": "1750838681", + "alarmDate": "1769999798098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133541871982593", + "createdBy": null, + "createdTime": "2026-02-02 10:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:40", + "echoMap": {}, + "alarmNo": "1750838682", + "alarmDate": "1769999799272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133541871982807", + "createdBy": null, + "createdTime": "2026-02-02 10:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:46", + "echoMap": {}, + "alarmNo": "1750838683", + "alarmDate": "1769999805089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133541871982976", + "createdBy": null, + "createdTime": "2026-02-02 10:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:10", + "echoMap": {}, + "alarmNo": "1750838684", + "alarmDate": "1769999809702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133546166949948", + "createdBy": null, + "createdTime": "2026-02-02 10:46:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:40", + "echoMap": {}, + "alarmNo": "1750838685", + "alarmDate": "1770000365360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133546166949950", + "createdBy": null, + "createdTime": "2026-02-02 10:46:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:16", + "echoMap": {}, + "alarmNo": "1750838686", + "alarmDate": "1770000365435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133546166950809", + "createdBy": null, + "createdTime": "2026-02-02 10:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:30", + "echoMap": {}, + "alarmNo": "1750838687", + "alarmDate": "1770000389510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133563346819120", + "createdBy": null, + "createdTime": "2026-02-02 10:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:52", + "echoMap": {}, + "alarmNo": "1750838688", + "alarmDate": "1770000965851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133563346819133", + "createdBy": null, + "createdTime": "2026-02-02 10:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:20", + "echoMap": {}, + "alarmNo": "1750838689", + "alarmDate": "1770000966249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133563346819478", + "createdBy": null, + "createdTime": "2026-02-02 10:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:22", + "echoMap": {}, + "alarmNo": "1750838690", + "alarmDate": "1770000975680", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133576231721086", + "createdBy": null, + "createdTime": "2026-02-02 10:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:44", + "echoMap": {}, + "alarmNo": "1750838691", + "alarmDate": "1770001003045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133580526688334", + "createdBy": null, + "createdTime": "2026-02-02 11:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:40", + "echoMap": {}, + "alarmNo": "1750838692", + "alarmDate": "1770001566556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133580526688365", + "createdBy": null, + "createdTime": "2026-02-02 11:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:14", + "echoMap": {}, + "alarmNo": "1750838693", + "alarmDate": "1770001567472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133584821655597", + "createdBy": null, + "createdTime": "2026-02-02 11:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:35", + "echoMap": {}, + "alarmNo": "1750838694", + "alarmDate": "1770001593904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133589116622869", + "createdBy": null, + "createdTime": "2026-02-02 11:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:09", + "echoMap": {}, + "alarmNo": "1750838695", + "alarmDate": "1770001598657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133593411590260", + "createdBy": null, + "createdTime": "2026-02-02 11:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:44", + "echoMap": {}, + "alarmNo": "1750838696", + "alarmDate": "1770001603030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133593411590338", + "createdBy": null, + "createdTime": "2026-02-02 11:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:52", + "echoMap": {}, + "alarmNo": "1750838697", + "alarmDate": "1770001605086", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133593411590903", + "createdBy": null, + "createdTime": "2026-02-02 11:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:06", + "echoMap": {}, + "alarmNo": "1750838698", + "alarmDate": "1770001620437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706557533", + "createdBy": null, + "createdTime": "2026-02-02 11:16:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:08", + "echoMap": {}, + "alarmNo": "1750838699", + "alarmDate": "1770002167123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706558075", + "createdBy": null, + "createdTime": "2026-02-02 11:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:28", + "echoMap": {}, + "alarmNo": "1750838700", + "alarmDate": "1770002181990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706558302", + "createdBy": null, + "createdTime": "2026-02-02 11:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:29", + "echoMap": {}, + "alarmNo": "1750838701", + "alarmDate": "1770002188398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706558336", + "createdBy": null, + "createdTime": "2026-02-02 11:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:43", + "echoMap": {}, + "alarmNo": "1750838702", + "alarmDate": "1770002189130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133610591459336", + "createdBy": null, + "createdTime": "2026-02-02 11:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:17", + "echoMap": {}, + "alarmNo": "1750838703", + "alarmDate": "1770002200091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133610591459699", + "createdBy": null, + "createdTime": "2026-02-02 11:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:03", + "echoMap": {}, + "alarmNo": "1750838704", + "alarmDate": "1770002210387", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133610591459949", + "createdBy": null, + "createdTime": "2026-02-02 11:16:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:34", + "echoMap": {}, + "alarmNo": "1750838705", + "alarmDate": "1770002217302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886426652", + "createdBy": null, + "createdTime": "2026-02-02 11:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:09", + "echoMap": {}, + "alarmNo": "1750838706", + "alarmDate": "1770002765512", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886426653", + "createdBy": null, + "createdTime": "2026-02-02 11:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:35", + "echoMap": {}, + "alarmNo": "1750838707", + "alarmDate": "1770002765557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427175", + "createdBy": null, + "createdTime": "2026-02-02 11:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:22", + "echoMap": {}, + "alarmNo": "1750838708", + "alarmDate": "1770002780715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427188", + "createdBy": null, + "createdTime": "2026-02-02 11:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:24", + "echoMap": {}, + "alarmNo": "1750838709", + "alarmDate": "1770002781113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427217", + "createdBy": null, + "createdTime": "2026-02-02 11:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:52", + "echoMap": {}, + "alarmNo": "1750838710", + "alarmDate": "1770002781701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427592", + "createdBy": null, + "createdTime": "2026-02-02 11:26:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:33", + "echoMap": {}, + "alarmNo": "1750838711", + "alarmDate": "1770002791861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066295870", + "createdBy": null, + "createdTime": "2026-02-02 11:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:09", + "echoMap": {}, + "alarmNo": "1750838712", + "alarmDate": "1770003364797", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066295996", + "createdBy": null, + "createdTime": "2026-02-02 11:36:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:21", + "echoMap": {}, + "alarmNo": "1750838713", + "alarmDate": "1770003369106", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060107", + "deviceName": "[625](10)五角场下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066296396", + "createdBy": null, + "createdTime": "2026-02-02 11:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:26", + "echoMap": {}, + "alarmNo": "1750838714", + "alarmDate": "1770003379792", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066296790", + "createdBy": null, + "createdTime": "2026-02-02 11:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:31", + "echoMap": {}, + "alarmNo": "1750838715", + "alarmDate": "1770003389893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133640656230440", + "createdBy": null, + "createdTime": "2026-02-02 11:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:44", + "echoMap": {}, + "alarmNo": "1750838716", + "alarmDate": "1770003397838", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133644951198017", + "createdBy": null, + "createdTime": "2026-02-02 11:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:48", + "echoMap": {}, + "alarmNo": "1750838717", + "alarmDate": "1770003407078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133644951198053", + "createdBy": null, + "createdTime": "2026-02-02 11:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:49", + "echoMap": {}, + "alarmNo": "1750838718", + "alarmDate": "1770003407931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133644951198629", + "createdBy": null, + "createdTime": "2026-02-02 11:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:04", + "echoMap": {}, + "alarmNo": "1750838719", + "alarmDate": "1770003423872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133649246165398", + "createdBy": null, + "createdTime": "2026-02-02 11:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:20", + "echoMap": {}, + "alarmNo": "1750838720", + "alarmDate": "1770003974135", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133649246165939", + "createdBy": null, + "createdTime": "2026-02-02 11:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:30", + "echoMap": {}, + "alarmNo": "1750838721", + "alarmDate": "1770003989098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133653541132479", + "createdBy": null, + "createdTime": "2026-02-02 11:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:27", + "echoMap": {}, + "alarmNo": "1750838722", + "alarmDate": "1770003996743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131066941", + "createdBy": null, + "createdTime": "2026-02-02 11:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:08", + "echoMap": {}, + "alarmNo": "1750838723", + "alarmDate": "1770004000853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131067498", + "createdBy": null, + "createdTime": "2026-02-02 11:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:02", + "echoMap": {}, + "alarmNo": "1750838724", + "alarmDate": "1770004016256", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131067691", + "createdBy": null, + "createdTime": "2026-02-02 11:47:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:24", + "echoMap": {}, + "alarmNo": "1750838725", + "alarmDate": "1770004021781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131067783", + "createdBy": null, + "createdTime": "2026-02-02 11:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:16", + "echoMap": {}, + "alarmNo": "1750838726", + "alarmDate": "1770004024280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426034248", + "createdBy": null, + "createdTime": "2026-02-02 11:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:06", + "echoMap": {}, + "alarmNo": "1750838727", + "alarmDate": "1770004565180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426034768", + "createdBy": null, + "createdTime": "2026-02-02 11:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:15", + "echoMap": {}, + "alarmNo": "1750838728", + "alarmDate": "1770004580535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426035030", + "createdBy": null, + "createdTime": "2026-02-02 11:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:29", + "echoMap": {}, + "alarmNo": "1750838729", + "alarmDate": "1770004587809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426035048", + "createdBy": null, + "createdTime": "2026-02-02 11:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:34", + "echoMap": {}, + "alarmNo": "1750838730", + "alarmDate": "1770004588314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133670721001644", + "createdBy": null, + "createdTime": "2026-02-02 11:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:45", + "echoMap": {}, + "alarmNo": "1750838731", + "alarmDate": "1770004597181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133679310936815", + "createdBy": null, + "createdTime": "2026-02-02 11:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:11", + "echoMap": {}, + "alarmNo": "1750838732", + "alarmDate": "1770004619201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605903721", + "createdBy": null, + "createdTime": "2026-02-02 12:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:26", + "echoMap": {}, + "alarmNo": "1750838734", + "alarmDate": "1770005173660", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605903842", + "createdBy": null, + "createdTime": "2026-02-02 12:06:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:35", + "echoMap": {}, + "alarmNo": "1750838735", + "alarmDate": "1770005176849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605904239", + "createdBy": null, + "createdTime": "2026-02-02 12:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:29", + "echoMap": {}, + "alarmNo": "1750838736", + "alarmDate": "1770005187830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133687900870777", + "createdBy": null, + "createdTime": "2026-02-02 12:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:22", + "echoMap": {}, + "alarmNo": "1750838737", + "alarmDate": "1770005195003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133696490805516", + "createdBy": null, + "createdTime": "2026-02-02 12:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:14", + "echoMap": {}, + "alarmNo": "1750838738", + "alarmDate": "1770005206719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133696490805739", + "createdBy": null, + "createdTime": "2026-02-02 12:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:54", + "echoMap": {}, + "alarmNo": "1750838739", + "alarmDate": "1770005212754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133696490805792", + "createdBy": null, + "createdTime": "2026-02-02 12:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:55", + "echoMap": {}, + "alarmNo": "1750838740", + "alarmDate": "1770005214141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785772662", + "createdBy": null, + "createdTime": "2026-02-02 12:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:14", + "echoMap": {}, + "alarmNo": "1750838741", + "alarmDate": "1770005767919", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785772664", + "createdBy": null, + "createdTime": "2026-02-02 12:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:09", + "echoMap": {}, + "alarmNo": "1750838742", + "alarmDate": "1770005767960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785772842", + "createdBy": null, + "createdTime": "2026-02-02 12:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:14", + "echoMap": {}, + "alarmNo": "1750838743", + "alarmDate": "1770005772682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060104", + "deviceName": "[212](10)五角场厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785773370", + "createdBy": null, + "createdTime": "2026-02-02 12:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:28", + "echoMap": {}, + "alarmNo": "1750838744", + "alarmDate": "1770005787892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785773447", + "createdBy": null, + "createdTime": "2026-02-02 12:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:31", + "echoMap": {}, + "alarmNo": "1750838745", + "alarmDate": "1770005789988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785773498", + "createdBy": null, + "createdTime": "2026-02-02 12:16:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:25", + "echoMap": {}, + "alarmNo": "1750838746", + "alarmDate": "1770005791288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133713670675226", + "createdBy": null, + "createdTime": "2026-02-02 12:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:03", + "echoMap": {}, + "alarmNo": "1750838747", + "alarmDate": "1770005823393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060040", + "deviceName": "[315](10)五角场4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642240", + "createdBy": null, + "createdTime": "2026-02-02 12:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:23", + "echoMap": {}, + "alarmNo": "1750838748", + "alarmDate": "1770006381808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642370", + "createdBy": null, + "createdTime": "2026-02-02 12:26:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:07", + "echoMap": {}, + "alarmNo": "1750838749", + "alarmDate": "1770006385567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642552", + "createdBy": null, + "createdTime": "2026-02-02 12:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:19", + "echoMap": {}, + "alarmNo": "1750838750", + "alarmDate": "1770006391153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642637", + "createdBy": null, + "createdTime": "2026-02-02 12:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:54", + "echoMap": {}, + "alarmNo": "1750838751", + "alarmDate": "1770006393640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133722260609066", + "createdBy": null, + "createdTime": "2026-02-02 12:26:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:44", + "echoMap": {}, + "alarmNo": "1750838752", + "alarmDate": "1770006398164", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133722260609135", + "createdBy": null, + "createdTime": "2026-02-02 12:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:58", + "echoMap": {}, + "alarmNo": "1750838753", + "alarmDate": "1770006400083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133730850543816", + "createdBy": null, + "createdTime": "2026-02-02 12:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:20", + "echoMap": {}, + "alarmNo": "1750838754", + "alarmDate": "1770006409683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133730850544057", + "createdBy": null, + "createdTime": "2026-02-02 12:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:02", + "echoMap": {}, + "alarmNo": "1750838755", + "alarmDate": "1770006416306", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133730850544560", + "createdBy": null, + "createdTime": "2026-02-02 12:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:52", + "echoMap": {}, + "alarmNo": "1750838756", + "alarmDate": "1770006967207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133735145511265", + "createdBy": null, + "createdTime": "2026-02-02 12:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:25", + "echoMap": {}, + "alarmNo": "1750838757", + "alarmDate": "1770006979480", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133735145511626", + "createdBy": null, + "createdTime": "2026-02-02 12:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:31", + "echoMap": {}, + "alarmNo": "1750838758", + "alarmDate": "1770006989672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133739440478267", + "createdBy": null, + "createdTime": "2026-02-02 12:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:26", + "echoMap": {}, + "alarmNo": "1750838759", + "alarmDate": "1770007000328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413142", + "createdBy": null, + "createdTime": "2026-02-02 12:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:57", + "echoMap": {}, + "alarmNo": "1750838760", + "alarmDate": "1770007015602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413330", + "createdBy": null, + "createdTime": "2026-02-02 12:37:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:02", + "echoMap": {}, + "alarmNo": "1750838761", + "alarmDate": "1770007021032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413446", + "createdBy": null, + "createdTime": "2026-02-02 12:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:10", + "echoMap": {}, + "alarmNo": "1750838762", + "alarmDate": "1770007024288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413796", + "createdBy": null, + "createdTime": "2026-02-02 12:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:12", + "echoMap": {}, + "alarmNo": "1750838763", + "alarmDate": "1770007570746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380261", + "createdBy": null, + "createdTime": "2026-02-02 12:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:17", + "echoMap": {}, + "alarmNo": "1750838764", + "alarmDate": "1770007576232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380703", + "createdBy": null, + "createdTime": "2026-02-02 12:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:44", + "echoMap": {}, + "alarmNo": "1750838765", + "alarmDate": "1770007588926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380741", + "createdBy": null, + "createdTime": "2026-02-02 12:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:31", + "echoMap": {}, + "alarmNo": "1750838766", + "alarmDate": "1770007589779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380746", + "createdBy": null, + "createdTime": "2026-02-02 12:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:31", + "echoMap": {}, + "alarmNo": "1750838767", + "alarmDate": "1770007589954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133760915314699", + "createdBy": null, + "createdTime": "2026-02-02 12:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:08", + "echoMap": {}, + "alarmNo": "1750838768", + "alarmDate": "1770007606041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282095", + "createdBy": null, + "createdTime": "2026-02-02 12:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:58", + "echoMap": {}, + "alarmNo": "1750838769", + "alarmDate": "1770007610695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282165", + "createdBy": null, + "createdTime": "2026-02-02 12:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:53", + "echoMap": {}, + "alarmNo": "1750838770", + "alarmDate": "1770007612614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282363", + "createdBy": null, + "createdTime": "2026-02-02 12:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:25", + "echoMap": {}, + "alarmNo": "1750838771", + "alarmDate": "1770007618141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282591", + "createdBy": null, + "createdTime": "2026-02-02 12:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:05", + "echoMap": {}, + "alarmNo": "1750838772", + "alarmDate": "1770007624482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282782", + "createdBy": null, + "createdTime": "2026-02-02 12:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:37", + "echoMap": {}, + "alarmNo": "1750838773", + "alarmDate": "1770008165906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282999", + "createdBy": null, + "createdTime": "2026-02-02 12:56:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:25", + "echoMap": {}, + "alarmNo": "1750838774", + "alarmDate": "1770008172012", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133769505249452", + "createdBy": null, + "createdTime": "2026-02-02 12:56:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:18", + "echoMap": {}, + "alarmNo": "1750838775", + "alarmDate": "1770008176751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133773800216610", + "createdBy": null, + "createdTime": "2026-02-02 12:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:11", + "echoMap": {}, + "alarmNo": "1750838776", + "alarmDate": "1770008201555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133782390151304", + "createdBy": null, + "createdTime": "2026-02-02 12:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:12", + "echoMap": {}, + "alarmNo": "1750838777", + "alarmDate": "1770008210105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133782390151492", + "createdBy": null, + "createdTime": "2026-02-02 12:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:56", + "echoMap": {}, + "alarmNo": "1750838778", + "alarmDate": "1770008215414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133782390152001", + "createdBy": null, + "createdTime": "2026-02-02 13:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:05", + "echoMap": {}, + "alarmNo": "1750838779", + "alarmDate": "1770008765388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685118797", + "createdBy": null, + "createdTime": "2026-02-02 13:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:20", + "echoMap": {}, + "alarmNo": "1750838780", + "alarmDate": "1770008780710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685119045", + "createdBy": null, + "createdTime": "2026-02-02 13:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:29", + "echoMap": {}, + "alarmNo": "1750838781", + "alarmDate": "1770008787747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685119164", + "createdBy": null, + "createdTime": "2026-02-02 13:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:55", + "echoMap": {}, + "alarmNo": "1750838782", + "alarmDate": "1770008791012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685119179", + "createdBy": null, + "createdTime": "2026-02-02 13:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:43", + "echoMap": {}, + "alarmNo": "1750838783", + "alarmDate": "1770008791252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133799570020877", + "createdBy": null, + "createdTime": "2026-02-02 13:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:59", + "echoMap": {}, + "alarmNo": "1750838784", + "alarmDate": "1770008818464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133799570021056", + "createdBy": null, + "createdTime": "2026-02-02 13:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:08", + "echoMap": {}, + "alarmNo": "1750838785", + "alarmDate": "1770008823367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864987847", + "createdBy": null, + "createdTime": "2026-02-02 13:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:16", + "echoMap": {}, + "alarmNo": "1750838786", + "alarmDate": "1770009374576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864988107", + "createdBy": null, + "createdTime": "2026-02-02 13:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:18", + "echoMap": {}, + "alarmNo": "1750838787", + "alarmDate": "1770009382059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864988149", + "createdBy": null, + "createdTime": "2026-02-02 13:16:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:24", + "echoMap": {}, + "alarmNo": "1750838788", + "alarmDate": "1770009383171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864988318", + "createdBy": null, + "createdTime": "2026-02-02 13:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:29", + "echoMap": {}, + "alarmNo": "1750838789", + "alarmDate": "1770009387625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133816749889944", + "createdBy": null, + "createdTime": "2026-02-02 13:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:00", + "echoMap": {}, + "alarmNo": "1750838790", + "alarmDate": "1770009413612", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133816749890151", + "createdBy": null, + "createdTime": "2026-02-02 13:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:00", + "echoMap": {}, + "alarmNo": "1750838791", + "alarmDate": "1770009419271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133821044856927", + "createdBy": null, + "createdTime": "2026-02-02 13:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:11", + "echoMap": {}, + "alarmNo": "1750838792", + "alarmDate": "1770009969576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133821044857494", + "createdBy": null, + "createdTime": "2026-02-02 13:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:53", + "echoMap": {}, + "alarmNo": "1750838793", + "alarmDate": "1770009986903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133821044857545", + "createdBy": null, + "createdTime": "2026-02-02 13:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:40", + "echoMap": {}, + "alarmNo": "1750838794", + "alarmDate": "1770009988354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133833929759654", + "createdBy": null, + "createdTime": "2026-02-02 13:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:23", + "echoMap": {}, + "alarmNo": "1750838795", + "alarmDate": "1770010566200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133833929759667", + "createdBy": null, + "createdTime": "2026-02-02 13:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:49", + "echoMap": {}, + "alarmNo": "1750838796", + "alarmDate": "1770010566677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133838224726357", + "createdBy": null, + "createdTime": "2026-02-02 13:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:19", + "echoMap": {}, + "alarmNo": "1750838797", + "alarmDate": "1770010578462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133838224726455", + "createdBy": null, + "createdTime": "2026-02-02 13:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:21", + "echoMap": {}, + "alarmNo": "1750838798", + "alarmDate": "1770010581204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133838224726503", + "createdBy": null, + "createdTime": "2026-02-02 13:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:24", + "echoMap": {}, + "alarmNo": "1750838799", + "alarmDate": "1770010582415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595525", + "createdBy": null, + "createdTime": "2026-02-02 13:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:25", + "echoMap": {}, + "alarmNo": "1750838800", + "alarmDate": "1770011179599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595659", + "createdBy": null, + "createdTime": "2026-02-02 13:46:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:25", + "echoMap": {}, + "alarmNo": "1750838801", + "alarmDate": "1770011183537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595789", + "createdBy": null, + "createdTime": "2026-02-02 13:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:28", + "echoMap": {}, + "alarmNo": "1750838802", + "alarmDate": "1770011187403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595879", + "createdBy": null, + "createdTime": "2026-02-02 13:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:36", + "echoMap": {}, + "alarmNo": "1750838803", + "alarmDate": "1770011189785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404596042", + "createdBy": null, + "createdTime": "2026-02-02 13:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:01", + "echoMap": {}, + "alarmNo": "1750838804", + "alarmDate": "1770011194467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133859699562523", + "createdBy": null, + "createdTime": "2026-02-02 13:46:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:58", + "echoMap": {}, + "alarmNo": "1750838805", + "alarmDate": "1770011200283", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497349", + "createdBy": null, + "createdTime": "2026-02-02 13:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:54", + "echoMap": {}, + "alarmNo": "1750838806", + "alarmDate": "1770011213254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497375", + "createdBy": null, + "createdTime": "2026-02-02 13:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:01", + "echoMap": {}, + "alarmNo": "1750838807", + "alarmDate": "1770011213767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497635", + "createdBy": null, + "createdTime": "2026-02-02 13:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:37", + "echoMap": {}, + "alarmNo": "1750838808", + "alarmDate": "1770011220911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497933", + "createdBy": null, + "createdTime": "2026-02-02 13:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:11", + "echoMap": {}, + "alarmNo": "1750838809", + "alarmDate": "1770011765516", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497964", + "createdBy": null, + "createdTime": "2026-02-02 13:56:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:41", + "echoMap": {}, + "alarmNo": "1750838810", + "alarmDate": "1770011766818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133872584465347", + "createdBy": null, + "createdTime": "2026-02-02 13:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:38", + "echoMap": {}, + "alarmNo": "1750838811", + "alarmDate": "1770011797972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133872584465400", + "createdBy": null, + "createdTime": "2026-02-02 13:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:00", + "echoMap": {}, + "alarmNo": "1750838812", + "alarmDate": "1770011799352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133876879431750", + "createdBy": null, + "createdTime": "2026-02-02 13:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:48", + "echoMap": {}, + "alarmNo": "1750838813", + "alarmDate": "1770011801539", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133885469366477", + "createdBy": null, + "createdTime": "2026-02-02 13:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:59", + "echoMap": {}, + "alarmNo": "1750838814", + "alarmDate": "1770011812813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133885469366794", + "createdBy": null, + "createdTime": "2026-02-02 13:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:56", + "echoMap": {}, + "alarmNo": "1750838815", + "alarmDate": "1770011821269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133889764333911", + "createdBy": null, + "createdTime": "2026-02-02 14:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:23", + "echoMap": {}, + "alarmNo": "1750838816", + "alarmDate": "1770012382311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235537", + "createdBy": null, + "createdTime": "2026-02-02 14:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:00", + "echoMap": {}, + "alarmNo": "1750838817", + "alarmDate": "1770012408328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235575", + "createdBy": null, + "createdTime": "2026-02-02 14:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:38", + "echoMap": {}, + "alarmNo": "1750838818", + "alarmDate": "1770012409306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235779", + "createdBy": null, + "createdTime": "2026-02-02 14:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:10", + "echoMap": {}, + "alarmNo": "1750838819", + "alarmDate": "1770012415033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235809", + "createdBy": null, + "createdTime": "2026-02-02 14:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "alarmNo": "1750838820", + "alarmDate": "1770012415626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649236285", + "createdBy": null, + "createdTime": "2026-02-02 14:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:17", + "echoMap": {}, + "alarmNo": "1750838821", + "alarmDate": "1770012966353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649236286", + "createdBy": null, + "createdTime": "2026-02-02 14:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:30", + "echoMap": {}, + "alarmNo": "1750838822", + "alarmDate": "1770012966357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203233", + "createdBy": null, + "createdTime": "2026-02-02 14:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:26", + "echoMap": {}, + "alarmNo": "1750838823", + "alarmDate": "1770012985225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203254", + "createdBy": null, + "createdTime": "2026-02-02 14:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:32", + "echoMap": {}, + "alarmNo": "1750838824", + "alarmDate": "1770012985689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203492", + "createdBy": null, + "createdTime": "2026-02-02 14:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:33", + "echoMap": {}, + "alarmNo": "1750838825", + "alarmDate": "1770012992354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203591", + "createdBy": null, + "createdTime": "2026-02-02 14:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:36", + "echoMap": {}, + "alarmNo": "1750838826", + "alarmDate": "1770012995003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133911239170132", + "createdBy": null, + "createdTime": "2026-02-02 14:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:43", + "echoMap": {}, + "alarmNo": "1750838827", + "alarmDate": "1770013002547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133915534137412", + "createdBy": null, + "createdTime": "2026-02-02 14:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:47", + "echoMap": {}, + "alarmNo": "1750838828", + "alarmDate": "1770013006224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133919829104789", + "createdBy": null, + "createdTime": "2026-02-02 14:16:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:52", + "echoMap": {}, + "alarmNo": "1750838829", + "alarmDate": "1770013010653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133924124072517", + "createdBy": null, + "createdTime": "2026-02-02 14:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:29", + "echoMap": {}, + "alarmNo": "1750838830", + "alarmDate": "1770013588660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133924124072933", + "createdBy": null, + "createdTime": "2026-02-02 14:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:52", + "echoMap": {}, + "alarmNo": "1750838831", + "alarmDate": "1770013600397", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008973845", + "createdBy": null, + "createdTime": "2026-02-02 14:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:47", + "echoMap": {}, + "alarmNo": "1750838832", + "alarmDate": "1770013607394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008973931", + "createdBy": null, + "createdTime": "2026-02-02 14:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "alarmNo": "1750838833", + "alarmDate": "1770013609737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008974318", + "createdBy": null, + "createdTime": "2026-02-02 14:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:01", + "echoMap": {}, + "alarmNo": "1750838834", + "alarmDate": "1770013620339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008974654", + "createdBy": null, + "createdTime": "2026-02-02 14:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:06", + "echoMap": {}, + "alarmNo": "1750838835", + "alarmDate": "1770014166265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941262", + "createdBy": null, + "createdTime": "2026-02-02 14:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "alarmNo": "1750838836", + "alarmDate": "1770014175551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941377", + "createdBy": null, + "createdTime": "2026-02-02 14:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "alarmNo": "1750838837", + "alarmDate": "1770014178597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941542", + "createdBy": null, + "createdTime": "2026-02-02 14:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:24", + "echoMap": {}, + "alarmNo": "1750838838", + "alarmDate": "1770014183201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941836", + "createdBy": null, + "createdTime": "2026-02-02 14:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:31", + "echoMap": {}, + "alarmNo": "1750838839", + "alarmDate": "1770014191039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723132858972183080", + "createdBy": null, + "createdTime": "2026-02-02 03:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:09", + "echoMap": {}, + "alarmNo": "1750838515", + "alarmDate": "1769974628691", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1024030009", + "deviceName": "安防箱9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1024" + } + ], + "ndmSwitch": [ + { + "id": "723133683605903375", + "createdBy": null, + "createdTime": "2026-02-02 12:01:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:42", + "echoMap": {}, + "alarmNo": "1750838733", + "alarmDate": "1770004902042", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1024040003", + "deviceName": "H3C前端交换机2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1024" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723133941303941836", + "createdBy": null, + "createdTime": "2026-02-02 14:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:31", + "echoMap": {}, + "alarmNo": "1750838839", + "alarmDate": "1770014191039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941542", + "createdBy": null, + "createdTime": "2026-02-02 14:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:24", + "echoMap": {}, + "alarmNo": "1750838838", + "alarmDate": "1770014183201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941377", + "createdBy": null, + "createdTime": "2026-02-02 14:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "alarmNo": "1750838837", + "alarmDate": "1770014178597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133941303941262", + "createdBy": null, + "createdTime": "2026-02-02 14:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "alarmNo": "1750838836", + "alarmDate": "1770014175551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008974654", + "createdBy": null, + "createdTime": "2026-02-02 14:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:06", + "echoMap": {}, + "alarmNo": "1750838835", + "alarmDate": "1770014166265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008974318", + "createdBy": null, + "createdTime": "2026-02-02 14:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:01", + "echoMap": {}, + "alarmNo": "1750838834", + "alarmDate": "1770013620339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008973931", + "createdBy": null, + "createdTime": "2026-02-02 14:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "alarmNo": "1750838833", + "alarmDate": "1770013609737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133937008973845", + "createdBy": null, + "createdTime": "2026-02-02 14:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:47", + "echoMap": {}, + "alarmNo": "1750838832", + "alarmDate": "1770013607394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133924124072933", + "createdBy": null, + "createdTime": "2026-02-02 14:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:52", + "echoMap": {}, + "alarmNo": "1750838831", + "alarmDate": "1770013600397", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133924124072517", + "createdBy": null, + "createdTime": "2026-02-02 14:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:29", + "echoMap": {}, + "alarmNo": "1750838830", + "alarmDate": "1770013588660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133919829104789", + "createdBy": null, + "createdTime": "2026-02-02 14:16:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:52", + "echoMap": {}, + "alarmNo": "1750838829", + "alarmDate": "1770013010653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133915534137412", + "createdBy": null, + "createdTime": "2026-02-02 14:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:47", + "echoMap": {}, + "alarmNo": "1750838828", + "alarmDate": "1770013006224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133911239170132", + "createdBy": null, + "createdTime": "2026-02-02 14:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:43", + "echoMap": {}, + "alarmNo": "1750838827", + "alarmDate": "1770013002547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203591", + "createdBy": null, + "createdTime": "2026-02-02 14:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:36", + "echoMap": {}, + "alarmNo": "1750838826", + "alarmDate": "1770012995003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203492", + "createdBy": null, + "createdTime": "2026-02-02 14:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:33", + "echoMap": {}, + "alarmNo": "1750838825", + "alarmDate": "1770012992354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203254", + "createdBy": null, + "createdTime": "2026-02-02 14:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:32", + "echoMap": {}, + "alarmNo": "1750838824", + "alarmDate": "1770012985689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133906944203233", + "createdBy": null, + "createdTime": "2026-02-02 14:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:26", + "echoMap": {}, + "alarmNo": "1750838823", + "alarmDate": "1770012985225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649236286", + "createdBy": null, + "createdTime": "2026-02-02 14:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:30", + "echoMap": {}, + "alarmNo": "1750838822", + "alarmDate": "1770012966357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649236285", + "createdBy": null, + "createdTime": "2026-02-02 14:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:17", + "echoMap": {}, + "alarmNo": "1750838821", + "alarmDate": "1770012966353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235809", + "createdBy": null, + "createdTime": "2026-02-02 14:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "alarmNo": "1750838820", + "alarmDate": "1770012415626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235779", + "createdBy": null, + "createdTime": "2026-02-02 14:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:10", + "echoMap": {}, + "alarmNo": "1750838819", + "alarmDate": "1770012415033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235575", + "createdBy": null, + "createdTime": "2026-02-02 14:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:38", + "echoMap": {}, + "alarmNo": "1750838818", + "alarmDate": "1770012409306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133902649235537", + "createdBy": null, + "createdTime": "2026-02-02 14:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:00", + "echoMap": {}, + "alarmNo": "1750838817", + "alarmDate": "1770012408328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133889764333911", + "createdBy": null, + "createdTime": "2026-02-02 14:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:23", + "echoMap": {}, + "alarmNo": "1750838816", + "alarmDate": "1770012382311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133885469366794", + "createdBy": null, + "createdTime": "2026-02-02 13:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:56", + "echoMap": {}, + "alarmNo": "1750838815", + "alarmDate": "1770011821269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133885469366477", + "createdBy": null, + "createdTime": "2026-02-02 13:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:59", + "echoMap": {}, + "alarmNo": "1750838814", + "alarmDate": "1770011812813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133876879431750", + "createdBy": null, + "createdTime": "2026-02-02 13:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:48", + "echoMap": {}, + "alarmNo": "1750838813", + "alarmDate": "1770011801539", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133872584465400", + "createdBy": null, + "createdTime": "2026-02-02 13:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:00", + "echoMap": {}, + "alarmNo": "1750838812", + "alarmDate": "1770011799352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133872584465347", + "createdBy": null, + "createdTime": "2026-02-02 13:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:38", + "echoMap": {}, + "alarmNo": "1750838811", + "alarmDate": "1770011797972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497964", + "createdBy": null, + "createdTime": "2026-02-02 13:56:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:41", + "echoMap": {}, + "alarmNo": "1750838810", + "alarmDate": "1770011766818", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497933", + "createdBy": null, + "createdTime": "2026-02-02 13:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:11", + "echoMap": {}, + "alarmNo": "1750838809", + "alarmDate": "1770011765516", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497635", + "createdBy": null, + "createdTime": "2026-02-02 13:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:37", + "echoMap": {}, + "alarmNo": "1750838808", + "alarmDate": "1770011220911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497375", + "createdBy": null, + "createdTime": "2026-02-02 13:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:57:01", + "echoMap": {}, + "alarmNo": "1750838807", + "alarmDate": "1770011213767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133868289497349", + "createdBy": null, + "createdTime": "2026-02-02 13:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:54", + "echoMap": {}, + "alarmNo": "1750838806", + "alarmDate": "1770011213254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133859699562523", + "createdBy": null, + "createdTime": "2026-02-02 13:46:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:58", + "echoMap": {}, + "alarmNo": "1750838805", + "alarmDate": "1770011200283", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404596042", + "createdBy": null, + "createdTime": "2026-02-02 13:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:47:01", + "echoMap": {}, + "alarmNo": "1750838804", + "alarmDate": "1770011194467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595879", + "createdBy": null, + "createdTime": "2026-02-02 13:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:36", + "echoMap": {}, + "alarmNo": "1750838803", + "alarmDate": "1770011189785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595789", + "createdBy": null, + "createdTime": "2026-02-02 13:46:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:28", + "echoMap": {}, + "alarmNo": "1750838802", + "alarmDate": "1770011187403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595659", + "createdBy": null, + "createdTime": "2026-02-02 13:46:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:25", + "echoMap": {}, + "alarmNo": "1750838801", + "alarmDate": "1770011183537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133855404595525", + "createdBy": null, + "createdTime": "2026-02-02 13:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:25", + "echoMap": {}, + "alarmNo": "1750838800", + "alarmDate": "1770011179599", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133838224726503", + "createdBy": null, + "createdTime": "2026-02-02 13:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:24", + "echoMap": {}, + "alarmNo": "1750838799", + "alarmDate": "1770010582415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133838224726455", + "createdBy": null, + "createdTime": "2026-02-02 13:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:21", + "echoMap": {}, + "alarmNo": "1750838798", + "alarmDate": "1770010581204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133838224726357", + "createdBy": null, + "createdTime": "2026-02-02 13:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:19", + "echoMap": {}, + "alarmNo": "1750838797", + "alarmDate": "1770010578462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133833929759667", + "createdBy": null, + "createdTime": "2026-02-02 13:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:49", + "echoMap": {}, + "alarmNo": "1750838796", + "alarmDate": "1770010566677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133833929759654", + "createdBy": null, + "createdTime": "2026-02-02 13:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:23", + "echoMap": {}, + "alarmNo": "1750838795", + "alarmDate": "1770010566200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133821044857545", + "createdBy": null, + "createdTime": "2026-02-02 13:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:40", + "echoMap": {}, + "alarmNo": "1750838794", + "alarmDate": "1770009988354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133821044857494", + "createdBy": null, + "createdTime": "2026-02-02 13:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:53", + "echoMap": {}, + "alarmNo": "1750838793", + "alarmDate": "1770009986903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133821044856927", + "createdBy": null, + "createdTime": "2026-02-02 13:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:11", + "echoMap": {}, + "alarmNo": "1750838792", + "alarmDate": "1770009969576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133816749890151", + "createdBy": null, + "createdTime": "2026-02-02 13:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:00", + "echoMap": {}, + "alarmNo": "1750838791", + "alarmDate": "1770009419271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133816749889944", + "createdBy": null, + "createdTime": "2026-02-02 13:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:00", + "echoMap": {}, + "alarmNo": "1750838790", + "alarmDate": "1770009413612", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864988318", + "createdBy": null, + "createdTime": "2026-02-02 13:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:29", + "echoMap": {}, + "alarmNo": "1750838789", + "alarmDate": "1770009387625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864988149", + "createdBy": null, + "createdTime": "2026-02-02 13:16:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:24", + "echoMap": {}, + "alarmNo": "1750838788", + "alarmDate": "1770009383171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864988107", + "createdBy": null, + "createdTime": "2026-02-02 13:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:18", + "echoMap": {}, + "alarmNo": "1750838787", + "alarmDate": "1770009382059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133803864987847", + "createdBy": null, + "createdTime": "2026-02-02 13:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:16", + "echoMap": {}, + "alarmNo": "1750838786", + "alarmDate": "1770009374576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133799570021056", + "createdBy": null, + "createdTime": "2026-02-02 13:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:08", + "echoMap": {}, + "alarmNo": "1750838785", + "alarmDate": "1770008823367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133799570020877", + "createdBy": null, + "createdTime": "2026-02-02 13:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:59", + "echoMap": {}, + "alarmNo": "1750838784", + "alarmDate": "1770008818464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685119179", + "createdBy": null, + "createdTime": "2026-02-02 13:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:43", + "echoMap": {}, + "alarmNo": "1750838783", + "alarmDate": "1770008791252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685119164", + "createdBy": null, + "createdTime": "2026-02-02 13:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:55", + "echoMap": {}, + "alarmNo": "1750838782", + "alarmDate": "1770008791012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685119045", + "createdBy": null, + "createdTime": "2026-02-02 13:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:29", + "echoMap": {}, + "alarmNo": "1750838781", + "alarmDate": "1770008787747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133786685118797", + "createdBy": null, + "createdTime": "2026-02-02 13:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:20", + "echoMap": {}, + "alarmNo": "1750838780", + "alarmDate": "1770008780710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133782390152001", + "createdBy": null, + "createdTime": "2026-02-02 13:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:05", + "echoMap": {}, + "alarmNo": "1750838779", + "alarmDate": "1770008765388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133782390151492", + "createdBy": null, + "createdTime": "2026-02-02 12:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:56", + "echoMap": {}, + "alarmNo": "1750838778", + "alarmDate": "1770008215414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133782390151304", + "createdBy": null, + "createdTime": "2026-02-02 12:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:12", + "echoMap": {}, + "alarmNo": "1750838777", + "alarmDate": "1770008210105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133773800216610", + "createdBy": null, + "createdTime": "2026-02-02 12:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:11", + "echoMap": {}, + "alarmNo": "1750838776", + "alarmDate": "1770008201555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133769505249452", + "createdBy": null, + "createdTime": "2026-02-02 12:56:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:18", + "echoMap": {}, + "alarmNo": "1750838775", + "alarmDate": "1770008176751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282999", + "createdBy": null, + "createdTime": "2026-02-02 12:56:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:25", + "echoMap": {}, + "alarmNo": "1750838774", + "alarmDate": "1770008172012", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282782", + "createdBy": null, + "createdTime": "2026-02-02 12:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:37", + "echoMap": {}, + "alarmNo": "1750838773", + "alarmDate": "1770008165906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282591", + "createdBy": null, + "createdTime": "2026-02-02 12:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:47:05", + "echoMap": {}, + "alarmNo": "1750838772", + "alarmDate": "1770007624482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282363", + "createdBy": null, + "createdTime": "2026-02-02 12:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:25", + "echoMap": {}, + "alarmNo": "1750838771", + "alarmDate": "1770007618141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282165", + "createdBy": null, + "createdTime": "2026-02-02 12:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:53", + "echoMap": {}, + "alarmNo": "1750838770", + "alarmDate": "1770007612614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133765210282095", + "createdBy": null, + "createdTime": "2026-02-02 12:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:58", + "echoMap": {}, + "alarmNo": "1750838769", + "alarmDate": "1770007610695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133760915314699", + "createdBy": null, + "createdTime": "2026-02-02 12:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:08", + "echoMap": {}, + "alarmNo": "1750838768", + "alarmDate": "1770007606041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380746", + "createdBy": null, + "createdTime": "2026-02-02 12:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:31", + "echoMap": {}, + "alarmNo": "1750838767", + "alarmDate": "1770007589954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380741", + "createdBy": null, + "createdTime": "2026-02-02 12:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:31", + "echoMap": {}, + "alarmNo": "1750838766", + "alarmDate": "1770007589779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380703", + "createdBy": null, + "createdTime": "2026-02-02 12:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:44", + "echoMap": {}, + "alarmNo": "1750838765", + "alarmDate": "1770007588926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133752325380261", + "createdBy": null, + "createdTime": "2026-02-02 12:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:17", + "echoMap": {}, + "alarmNo": "1750838764", + "alarmDate": "1770007576232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413796", + "createdBy": null, + "createdTime": "2026-02-02 12:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:12", + "echoMap": {}, + "alarmNo": "1750838763", + "alarmDate": "1770007570746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413446", + "createdBy": null, + "createdTime": "2026-02-02 12:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:10", + "echoMap": {}, + "alarmNo": "1750838762", + "alarmDate": "1770007024288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413330", + "createdBy": null, + "createdTime": "2026-02-02 12:37:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:37:02", + "echoMap": {}, + "alarmNo": "1750838761", + "alarmDate": "1770007021032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133748030413142", + "createdBy": null, + "createdTime": "2026-02-02 12:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:57", + "echoMap": {}, + "alarmNo": "1750838760", + "alarmDate": "1770007015602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133739440478267", + "createdBy": null, + "createdTime": "2026-02-02 12:36:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:26", + "echoMap": {}, + "alarmNo": "1750838759", + "alarmDate": "1770007000328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133735145511626", + "createdBy": null, + "createdTime": "2026-02-02 12:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:31", + "echoMap": {}, + "alarmNo": "1750838758", + "alarmDate": "1770006989672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133735145511265", + "createdBy": null, + "createdTime": "2026-02-02 12:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:25", + "echoMap": {}, + "alarmNo": "1750838757", + "alarmDate": "1770006979480", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133730850544560", + "createdBy": null, + "createdTime": "2026-02-02 12:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:52", + "echoMap": {}, + "alarmNo": "1750838756", + "alarmDate": "1770006967207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133730850544057", + "createdBy": null, + "createdTime": "2026-02-02 12:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:02", + "echoMap": {}, + "alarmNo": "1750838755", + "alarmDate": "1770006416306", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133730850543816", + "createdBy": null, + "createdTime": "2026-02-02 12:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:20", + "echoMap": {}, + "alarmNo": "1750838754", + "alarmDate": "1770006409683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133722260609135", + "createdBy": null, + "createdTime": "2026-02-02 12:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:58", + "echoMap": {}, + "alarmNo": "1750838753", + "alarmDate": "1770006400083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133722260609066", + "createdBy": null, + "createdTime": "2026-02-02 12:26:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:44", + "echoMap": {}, + "alarmNo": "1750838752", + "alarmDate": "1770006398164", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642637", + "createdBy": null, + "createdTime": "2026-02-02 12:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:54", + "echoMap": {}, + "alarmNo": "1750838751", + "alarmDate": "1770006393640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642552", + "createdBy": null, + "createdTime": "2026-02-02 12:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:19", + "echoMap": {}, + "alarmNo": "1750838750", + "alarmDate": "1770006391153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642370", + "createdBy": null, + "createdTime": "2026-02-02 12:26:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:07", + "echoMap": {}, + "alarmNo": "1750838749", + "alarmDate": "1770006385567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133717965642240", + "createdBy": null, + "createdTime": "2026-02-02 12:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:23", + "echoMap": {}, + "alarmNo": "1750838748", + "alarmDate": "1770006381808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133713670675226", + "createdBy": null, + "createdTime": "2026-02-02 12:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:03", + "echoMap": {}, + "alarmNo": "1750838747", + "alarmDate": "1770005823393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060040", + "deviceName": "[315](10)五角场4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785773498", + "createdBy": null, + "createdTime": "2026-02-02 12:16:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:25", + "echoMap": {}, + "alarmNo": "1750838746", + "alarmDate": "1770005791288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785773447", + "createdBy": null, + "createdTime": "2026-02-02 12:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:31", + "echoMap": {}, + "alarmNo": "1750838745", + "alarmDate": "1770005789988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785773370", + "createdBy": null, + "createdTime": "2026-02-02 12:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:28", + "echoMap": {}, + "alarmNo": "1750838744", + "alarmDate": "1770005787892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785772842", + "createdBy": null, + "createdTime": "2026-02-02 12:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:14", + "echoMap": {}, + "alarmNo": "1750838743", + "alarmDate": "1770005772682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060104", + "deviceName": "[212](10)五角场厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785772664", + "createdBy": null, + "createdTime": "2026-02-02 12:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:09", + "echoMap": {}, + "alarmNo": "1750838742", + "alarmDate": "1770005767960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133700785772662", + "createdBy": null, + "createdTime": "2026-02-02 12:16:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:14", + "echoMap": {}, + "alarmNo": "1750838741", + "alarmDate": "1770005767919", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133696490805792", + "createdBy": null, + "createdTime": "2026-02-02 12:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:55", + "echoMap": {}, + "alarmNo": "1750838740", + "alarmDate": "1770005214141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133696490805739", + "createdBy": null, + "createdTime": "2026-02-02 12:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:54", + "echoMap": {}, + "alarmNo": "1750838739", + "alarmDate": "1770005212754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133696490805516", + "createdBy": null, + "createdTime": "2026-02-02 12:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:14", + "echoMap": {}, + "alarmNo": "1750838738", + "alarmDate": "1770005206719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133687900870777", + "createdBy": null, + "createdTime": "2026-02-02 12:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:22", + "echoMap": {}, + "alarmNo": "1750838737", + "alarmDate": "1770005195003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605904239", + "createdBy": null, + "createdTime": "2026-02-02 12:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:29", + "echoMap": {}, + "alarmNo": "1750838736", + "alarmDate": "1770005187830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605903842", + "createdBy": null, + "createdTime": "2026-02-02 12:06:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:35", + "echoMap": {}, + "alarmNo": "1750838735", + "alarmDate": "1770005176849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605903721", + "createdBy": null, + "createdTime": "2026-02-02 12:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:26", + "echoMap": {}, + "alarmNo": "1750838734", + "alarmDate": "1770005173660", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133683605903375", + "createdBy": null, + "createdTime": "2026-02-02 12:01:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:42", + "echoMap": {}, + "alarmNo": "1750838733", + "alarmDate": "1770004902042", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1024040003", + "deviceName": "H3C前端交换机2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1024" + }, + { + "id": "723133679310936815", + "createdBy": null, + "createdTime": "2026-02-02 11:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:11", + "echoMap": {}, + "alarmNo": "1750838732", + "alarmDate": "1770004619201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133670721001644", + "createdBy": null, + "createdTime": "2026-02-02 11:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:45", + "echoMap": {}, + "alarmNo": "1750838731", + "alarmDate": "1770004597181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426035048", + "createdBy": null, + "createdTime": "2026-02-02 11:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:34", + "echoMap": {}, + "alarmNo": "1750838730", + "alarmDate": "1770004588314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426035030", + "createdBy": null, + "createdTime": "2026-02-02 11:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:29", + "echoMap": {}, + "alarmNo": "1750838729", + "alarmDate": "1770004587809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426034768", + "createdBy": null, + "createdTime": "2026-02-02 11:56:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:15", + "echoMap": {}, + "alarmNo": "1750838728", + "alarmDate": "1770004580535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133666426034248", + "createdBy": null, + "createdTime": "2026-02-02 11:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:06", + "echoMap": {}, + "alarmNo": "1750838727", + "alarmDate": "1770004565180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131067783", + "createdBy": null, + "createdTime": "2026-02-02 11:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:16", + "echoMap": {}, + "alarmNo": "1750838726", + "alarmDate": "1770004024280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131067691", + "createdBy": null, + "createdTime": "2026-02-02 11:47:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:24", + "echoMap": {}, + "alarmNo": "1750838725", + "alarmDate": "1770004021781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131067498", + "createdBy": null, + "createdTime": "2026-02-02 11:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:47:02", + "echoMap": {}, + "alarmNo": "1750838724", + "alarmDate": "1770004016256", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133662131066941", + "createdBy": null, + "createdTime": "2026-02-02 11:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:08", + "echoMap": {}, + "alarmNo": "1750838723", + "alarmDate": "1770004000853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133653541132479", + "createdBy": null, + "createdTime": "2026-02-02 11:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:27", + "echoMap": {}, + "alarmNo": "1750838722", + "alarmDate": "1770003996743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133649246165939", + "createdBy": null, + "createdTime": "2026-02-02 11:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:30", + "echoMap": {}, + "alarmNo": "1750838721", + "alarmDate": "1770003989098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133649246165398", + "createdBy": null, + "createdTime": "2026-02-02 11:46:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:20", + "echoMap": {}, + "alarmNo": "1750838720", + "alarmDate": "1770003974135", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133644951198629", + "createdBy": null, + "createdTime": "2026-02-02 11:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:37:04", + "echoMap": {}, + "alarmNo": "1750838719", + "alarmDate": "1770003423872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133644951198053", + "createdBy": null, + "createdTime": "2026-02-02 11:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:49", + "echoMap": {}, + "alarmNo": "1750838718", + "alarmDate": "1770003407931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133644951198017", + "createdBy": null, + "createdTime": "2026-02-02 11:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:48", + "echoMap": {}, + "alarmNo": "1750838717", + "alarmDate": "1770003407078", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133640656230440", + "createdBy": null, + "createdTime": "2026-02-02 11:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:44", + "echoMap": {}, + "alarmNo": "1750838716", + "alarmDate": "1770003397838", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066296790", + "createdBy": null, + "createdTime": "2026-02-02 11:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:31", + "echoMap": {}, + "alarmNo": "1750838715", + "alarmDate": "1770003389893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066296396", + "createdBy": null, + "createdTime": "2026-02-02 11:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:26", + "echoMap": {}, + "alarmNo": "1750838714", + "alarmDate": "1770003379792", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066295996", + "createdBy": null, + "createdTime": "2026-02-02 11:36:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:21", + "echoMap": {}, + "alarmNo": "1750838713", + "alarmDate": "1770003369106", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060107", + "deviceName": "[625](10)五角场下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133632066295870", + "createdBy": null, + "createdTime": "2026-02-02 11:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:09", + "echoMap": {}, + "alarmNo": "1750838712", + "alarmDate": "1770003364797", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427592", + "createdBy": null, + "createdTime": "2026-02-02 11:26:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:33", + "echoMap": {}, + "alarmNo": "1750838711", + "alarmDate": "1770002791861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427217", + "createdBy": null, + "createdTime": "2026-02-02 11:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:52", + "echoMap": {}, + "alarmNo": "1750838710", + "alarmDate": "1770002781701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427188", + "createdBy": null, + "createdTime": "2026-02-02 11:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:24", + "echoMap": {}, + "alarmNo": "1750838709", + "alarmDate": "1770002781113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886427175", + "createdBy": null, + "createdTime": "2026-02-02 11:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:22", + "echoMap": {}, + "alarmNo": "1750838708", + "alarmDate": "1770002780715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886426653", + "createdBy": null, + "createdTime": "2026-02-02 11:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:35", + "echoMap": {}, + "alarmNo": "1750838707", + "alarmDate": "1770002765557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133614886426652", + "createdBy": null, + "createdTime": "2026-02-02 11:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:09", + "echoMap": {}, + "alarmNo": "1750838706", + "alarmDate": "1770002765512", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133610591459949", + "createdBy": null, + "createdTime": "2026-02-02 11:16:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:34", + "echoMap": {}, + "alarmNo": "1750838705", + "alarmDate": "1770002217302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133610591459699", + "createdBy": null, + "createdTime": "2026-02-02 11:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:17:03", + "echoMap": {}, + "alarmNo": "1750838704", + "alarmDate": "1770002210387", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133610591459336", + "createdBy": null, + "createdTime": "2026-02-02 11:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:17", + "echoMap": {}, + "alarmNo": "1750838703", + "alarmDate": "1770002200091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706558336", + "createdBy": null, + "createdTime": "2026-02-02 11:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:43", + "echoMap": {}, + "alarmNo": "1750838702", + "alarmDate": "1770002189130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706558302", + "createdBy": null, + "createdTime": "2026-02-02 11:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:29", + "echoMap": {}, + "alarmNo": "1750838701", + "alarmDate": "1770002188398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706558075", + "createdBy": null, + "createdTime": "2026-02-02 11:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:28", + "echoMap": {}, + "alarmNo": "1750838700", + "alarmDate": "1770002181990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133597706557533", + "createdBy": null, + "createdTime": "2026-02-02 11:16:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:08", + "echoMap": {}, + "alarmNo": "1750838699", + "alarmDate": "1770002167123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133593411590903", + "createdBy": null, + "createdTime": "2026-02-02 11:07:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:06", + "echoMap": {}, + "alarmNo": "1750838698", + "alarmDate": "1770001620437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133593411590338", + "createdBy": null, + "createdTime": "2026-02-02 11:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:52", + "echoMap": {}, + "alarmNo": "1750838697", + "alarmDate": "1770001605086", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133593411590260", + "createdBy": null, + "createdTime": "2026-02-02 11:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:44", + "echoMap": {}, + "alarmNo": "1750838696", + "alarmDate": "1770001603030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133589116622869", + "createdBy": null, + "createdTime": "2026-02-02 11:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:09", + "echoMap": {}, + "alarmNo": "1750838695", + "alarmDate": "1770001598657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133584821655597", + "createdBy": null, + "createdTime": "2026-02-02 11:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:35", + "echoMap": {}, + "alarmNo": "1750838694", + "alarmDate": "1770001593904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133580526688365", + "createdBy": null, + "createdTime": "2026-02-02 11:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:14", + "echoMap": {}, + "alarmNo": "1750838693", + "alarmDate": "1770001567472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133580526688334", + "createdBy": null, + "createdTime": "2026-02-02 11:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:40", + "echoMap": {}, + "alarmNo": "1750838692", + "alarmDate": "1770001566556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133576231721086", + "createdBy": null, + "createdTime": "2026-02-02 10:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:44", + "echoMap": {}, + "alarmNo": "1750838691", + "alarmDate": "1770001003045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133563346819478", + "createdBy": null, + "createdTime": "2026-02-02 10:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:22", + "echoMap": {}, + "alarmNo": "1750838690", + "alarmDate": "1770000975680", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133563346819133", + "createdBy": null, + "createdTime": "2026-02-02 10:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:20", + "echoMap": {}, + "alarmNo": "1750838689", + "alarmDate": "1770000966249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133563346819120", + "createdBy": null, + "createdTime": "2026-02-02 10:56:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:52", + "echoMap": {}, + "alarmNo": "1750838688", + "alarmDate": "1770000965851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133546166950809", + "createdBy": null, + "createdTime": "2026-02-02 10:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:30", + "echoMap": {}, + "alarmNo": "1750838687", + "alarmDate": "1770000389510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133546166949950", + "createdBy": null, + "createdTime": "2026-02-02 10:46:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:16", + "echoMap": {}, + "alarmNo": "1750838686", + "alarmDate": "1770000365435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133546166949948", + "createdBy": null, + "createdTime": "2026-02-02 10:46:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:40", + "echoMap": {}, + "alarmNo": "1750838685", + "alarmDate": "1770000365360", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133541871982976", + "createdBy": null, + "createdTime": "2026-02-02 10:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:10", + "echoMap": {}, + "alarmNo": "1750838684", + "alarmDate": "1769999809702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133541871982807", + "createdBy": null, + "createdTime": "2026-02-02 10:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:46", + "echoMap": {}, + "alarmNo": "1750838683", + "alarmDate": "1769999805089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133541871982593", + "createdBy": null, + "createdTime": "2026-02-02 10:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:40", + "echoMap": {}, + "alarmNo": "1750838682", + "alarmDate": "1769999799272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133537577015313", + "createdBy": null, + "createdTime": "2026-02-02 10:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:39", + "echoMap": {}, + "alarmNo": "1750838681", + "alarmDate": "1769999798098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133533282048070", + "createdBy": null, + "createdTime": "2026-02-02 10:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:36", + "echoMap": {}, + "alarmNo": "1750838680", + "alarmDate": "1769999795267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133528987080711", + "createdBy": null, + "createdTime": "2026-02-02 10:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:06", + "echoMap": {}, + "alarmNo": "1750838679", + "alarmDate": "1769999764855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133524692113791", + "createdBy": null, + "createdTime": "2026-02-02 10:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:52", + "echoMap": {}, + "alarmNo": "1750838678", + "alarmDate": "1769999211240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133516102178962", + "createdBy": null, + "createdTime": "2026-02-02 10:26:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:40", + "echoMap": {}, + "alarmNo": "1750838677", + "alarmDate": "1769999199115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133511807211621", + "createdBy": null, + "createdTime": "2026-02-02 10:26:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:11", + "echoMap": {}, + "alarmNo": "1750838676", + "alarmDate": "1769999169924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133507512245211", + "createdBy": null, + "createdTime": "2026-02-02 10:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:06", + "echoMap": {}, + "alarmNo": "1750838675", + "alarmDate": "1769999165539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133507512244670", + "createdBy": null, + "createdTime": "2026-02-02 10:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:56", + "echoMap": {}, + "alarmNo": "1750838674", + "alarmDate": "1769998614758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133494627343130", + "createdBy": null, + "createdTime": "2026-02-02 10:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:53", + "echoMap": {}, + "alarmNo": "1750838673", + "alarmDate": "1769998589880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133494627343111", + "createdBy": null, + "createdTime": "2026-02-02 10:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:31", + "echoMap": {}, + "alarmNo": "1750838672", + "alarmDate": "1769998589618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133494627342951", + "createdBy": null, + "createdTime": "2026-02-02 10:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:39", + "echoMap": {}, + "alarmNo": "1750838671", + "alarmDate": "1769998585153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375997", + "createdBy": null, + "createdTime": "2026-02-02 10:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:57:01", + "echoMap": {}, + "alarmNo": "1750838670", + "alarmDate": "1769998565894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375984", + "createdBy": null, + "createdTime": "2026-02-02 10:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:06", + "echoMap": {}, + "alarmNo": "1750838669", + "alarmDate": "1769998565311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060014", + "deviceName": "[310](10)五角场3#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375406", + "createdBy": null, + "createdTime": "2026-02-02 10:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:47", + "echoMap": {}, + "alarmNo": "1750838668", + "alarmDate": "1769998012692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375362", + "createdBy": null, + "createdTime": "2026-02-02 10:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:18", + "echoMap": {}, + "alarmNo": "1750838667", + "alarmDate": "1769998011527", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375170", + "createdBy": null, + "createdTime": "2026-02-02 10:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:16", + "echoMap": {}, + "alarmNo": "1750838666", + "alarmDate": "1769998006174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133490332375128", + "createdBy": null, + "createdTime": "2026-02-02 10:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:17", + "echoMap": {}, + "alarmNo": "1750838665", + "alarmDate": "1769998005025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133486037407745", + "createdBy": null, + "createdTime": "2026-02-02 10:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:41", + "echoMap": {}, + "alarmNo": "1750838664", + "alarmDate": "1769998000129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133481742440643", + "createdBy": null, + "createdTime": "2026-02-02 10:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:40", + "echoMap": {}, + "alarmNo": "1750838663", + "alarmDate": "1769997999156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133481742440468", + "createdBy": null, + "createdTime": "2026-02-02 10:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:35", + "echoMap": {}, + "alarmNo": "1750838662", + "alarmDate": "1769997994329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447474011", + "createdBy": null, + "createdTime": "2026-02-02 10:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:30", + "echoMap": {}, + "alarmNo": "1750838661", + "alarmDate": "1769997989342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473223", + "createdBy": null, + "createdTime": "2026-02-02 10:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:08", + "echoMap": {}, + "alarmNo": "1750838660", + "alarmDate": "1769997967481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473178", + "createdBy": null, + "createdTime": "2026-02-02 10:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:53", + "echoMap": {}, + "alarmNo": "1750838659", + "alarmDate": "1769997966336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473165", + "createdBy": null, + "createdTime": "2026-02-02 10:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:33", + "echoMap": {}, + "alarmNo": "1750838658", + "alarmDate": "1769997965825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133477447473157", + "createdBy": null, + "createdTime": "2026-02-02 10:06:05", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:38", + "echoMap": {}, + "alarmNo": "1750838657", + "alarmDate": "1769997965340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133473152506627", + "createdBy": null, + "createdTime": "2026-02-02 09:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:38", + "echoMap": {}, + "alarmNo": "1750838656", + "alarmDate": "1769997422064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133473152506421", + "createdBy": null, + "createdTime": "2026-02-02 09:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:57", + "echoMap": {}, + "alarmNo": "1750838655", + "alarmDate": "1769997416231", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133460267604219", + "createdBy": null, + "createdTime": "2026-02-02 09:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:16", + "echoMap": {}, + "alarmNo": "1750838654", + "alarmDate": "1769997374739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133455972637245", + "createdBy": null, + "createdTime": "2026-02-02 09:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:00", + "echoMap": {}, + "alarmNo": "1750838653", + "alarmDate": "1769996818582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133443087735740", + "createdBy": null, + "createdTime": "2026-02-02 09:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:36", + "echoMap": {}, + "alarmNo": "1750838652", + "alarmDate": "1769996794705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133443087735620", + "createdBy": null, + "createdTime": "2026-02-02 09:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:19", + "echoMap": {}, + "alarmNo": "1750838651", + "alarmDate": "1769996791448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133438792768458", + "createdBy": null, + "createdTime": "2026-02-02 09:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:36", + "echoMap": {}, + "alarmNo": "1750838650", + "alarmDate": "1769996766167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133438792767682", + "createdBy": null, + "createdTime": "2026-02-02 09:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:02", + "echoMap": {}, + "alarmNo": "1750838649", + "alarmDate": "1769996207760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133434497800193", + "createdBy": null, + "createdTime": "2026-02-02 09:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:52", + "echoMap": {}, + "alarmNo": "1750838648", + "alarmDate": "1769996200740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133425907866562", + "createdBy": null, + "createdTime": "2026-02-02 09:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:35", + "echoMap": {}, + "alarmNo": "1750838647", + "alarmDate": "1769996194178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133425907866429", + "createdBy": null, + "createdTime": "2026-02-02 09:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:32", + "echoMap": {}, + "alarmNo": "1750838646", + "alarmDate": "1769996190607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133425907865885", + "createdBy": null, + "createdTime": "2026-02-02 09:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:16", + "echoMap": {}, + "alarmNo": "1750838645", + "alarmDate": "1769996175518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899251", + "createdBy": null, + "createdTime": "2026-02-02 09:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:00", + "echoMap": {}, + "alarmNo": "1750838644", + "alarmDate": "1769996165873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899240", + "createdBy": null, + "createdTime": "2026-02-02 09:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:50", + "echoMap": {}, + "alarmNo": "1750838643", + "alarmDate": "1769996165511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899077", + "createdBy": null, + "createdTime": "2026-02-02 09:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:13", + "echoMap": {}, + "alarmNo": "1750838642", + "alarmDate": "1769995624190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133421612899010", + "createdBy": null, + "createdTime": "2026-02-02 09:27:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:03", + "echoMap": {}, + "alarmNo": "1750838641", + "alarmDate": "1769995622427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133408727997338", + "createdBy": null, + "createdTime": "2026-02-02 09:26:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:39", + "echoMap": {}, + "alarmNo": "1750838640", + "alarmDate": "1769995595804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433030016", + "createdBy": null, + "createdTime": "2026-02-02 09:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:09", + "echoMap": {}, + "alarmNo": "1750838639", + "alarmDate": "1769995567823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029967", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:59", + "echoMap": {}, + "alarmNo": "1750838638", + "alarmDate": "1769995566425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029959", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:35", + "echoMap": {}, + "alarmNo": "1750838637", + "alarmDate": "1769995566326", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029953", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:14", + "echoMap": {}, + "alarmNo": "1750838636", + "alarmDate": "1769995566123", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029946", + "createdBy": null, + "createdTime": "2026-02-02 09:26:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:18", + "echoMap": {}, + "alarmNo": "1750838635", + "alarmDate": "1769995566000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133404433029348", + "createdBy": null, + "createdTime": "2026-02-02 09:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:52", + "echoMap": {}, + "alarmNo": "1750838634", + "alarmDate": "1769995011840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133400138061867", + "createdBy": null, + "createdTime": "2026-02-02 09:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:46", + "echoMap": {}, + "alarmNo": "1750838633", + "alarmDate": "1769995004844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133400138061862", + "createdBy": null, + "createdTime": "2026-02-02 09:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:04", + "echoMap": {}, + "alarmNo": "1750838632", + "alarmDate": "1769995004723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133391548127703", + "createdBy": null, + "createdTime": "2026-02-02 09:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:32", + "echoMap": {}, + "alarmNo": "1750838631", + "alarmDate": "1769994984567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133391548127556", + "createdBy": null, + "createdTime": "2026-02-02 09:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:30", + "echoMap": {}, + "alarmNo": "1750838630", + "alarmDate": "1769994980456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133387253160795", + "createdBy": null, + "createdTime": "2026-02-02 09:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:00", + "echoMap": {}, + "alarmNo": "1750838629", + "alarmDate": "1769994965934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133387253160497", + "createdBy": null, + "createdTime": "2026-02-02 09:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:36", + "echoMap": {}, + "alarmNo": "1750838628", + "alarmDate": "1769994420690", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368259023", + "createdBy": null, + "createdTime": "2026-02-02 09:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:37", + "echoMap": {}, + "alarmNo": "1750838627", + "alarmDate": "1769994396256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258967", + "createdBy": null, + "createdTime": "2026-02-02 09:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:44", + "echoMap": {}, + "alarmNo": "1750838626", + "alarmDate": "1769994394917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258930", + "createdBy": null, + "createdTime": "2026-02-02 09:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:36", + "echoMap": {}, + "alarmNo": "1750838625", + "alarmDate": "1769994393930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258916", + "createdBy": null, + "createdTime": "2026-02-02 09:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:40", + "echoMap": {}, + "alarmNo": "1750838624", + "alarmDate": "1769994393619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258525", + "createdBy": null, + "createdTime": "2026-02-02 09:06:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:24", + "echoMap": {}, + "alarmNo": "1750838623", + "alarmDate": "1769994382751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133374368258481", + "createdBy": null, + "createdTime": "2026-02-02 09:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:23", + "echoMap": {}, + "alarmNo": "1750838622", + "alarmDate": "1769994381580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133370073291422", + "createdBy": null, + "createdTime": "2026-02-02 08:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:01", + "echoMap": {}, + "alarmNo": "1750838621", + "alarmDate": "1769993822552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133361483356188", + "createdBy": null, + "createdTime": "2026-02-02 08:56:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:45", + "echoMap": {}, + "alarmNo": "1750838620", + "alarmDate": "1769993797569", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060036", + "deviceName": "[318](10)五角场4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133357188389876", + "createdBy": null, + "createdTime": "2026-02-02 08:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:50", + "echoMap": {}, + "alarmNo": "1750838619", + "alarmDate": "1769993796547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893422331", + "createdBy": null, + "createdTime": "2026-02-02 08:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:25", + "echoMap": {}, + "alarmNo": "1750838618", + "alarmDate": "1769993224234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893422258", + "createdBy": null, + "createdTime": "2026-02-02 08:47:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:22", + "echoMap": {}, + "alarmNo": "1750838617", + "alarmDate": "1769993222225", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421835", + "createdBy": null, + "createdTime": "2026-02-02 08:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:12", + "echoMap": {}, + "alarmNo": "1750838616", + "alarmDate": "1769993210291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421794", + "createdBy": null, + "createdTime": "2026-02-02 08:46:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:55", + "echoMap": {}, + "alarmNo": "1750838615", + "alarmDate": "1769993209244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421638", + "createdBy": null, + "createdTime": "2026-02-02 08:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:46", + "echoMap": {}, + "alarmNo": "1750838614", + "alarmDate": "1769993204947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133352893421629", + "createdBy": null, + "createdTime": "2026-02-02 08:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:46", + "echoMap": {}, + "alarmNo": "1750838613", + "alarmDate": "1769993204721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133348598454327", + "createdBy": null, + "createdTime": "2026-02-02 08:46:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:02", + "echoMap": {}, + "alarmNo": "1750838612", + "alarmDate": "1769993202894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133340008520660", + "createdBy": null, + "createdTime": "2026-02-02 08:46:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:54", + "echoMap": {}, + "alarmNo": "1750838611", + "alarmDate": "1769993196343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060056", + "deviceName": "[324](10)五角场5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133340008519793", + "createdBy": null, + "createdTime": "2026-02-02 08:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:05", + "echoMap": {}, + "alarmNo": "1750838610", + "alarmDate": "1769993171543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713553293", + "createdBy": null, + "createdTime": "2026-02-02 08:43:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:06", + "echoMap": {}, + "alarmNo": "1750838609", + "alarmDate": "1769992986858", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1024060078", + "deviceName": "[337](10)五角场#2台楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552726", + "createdBy": null, + "createdTime": "2026-02-02 08:36:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1750838608", + "alarmDate": "1769992611856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552488", + "createdBy": null, + "createdTime": "2026-02-02 08:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:02", + "echoMap": {}, + "alarmNo": "1750838607", + "alarmDate": "1769992605030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552448", + "createdBy": null, + "createdTime": "2026-02-02 08:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:51", + "echoMap": {}, + "alarmNo": "1750838606", + "alarmDate": "1769992603988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133335713552425", + "createdBy": null, + "createdTime": "2026-02-02 08:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:44", + "echoMap": {}, + "alarmNo": "1750838605", + "alarmDate": "1769992603383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828651299", + "createdBy": null, + "createdTime": "2026-02-02 08:36:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:29", + "echoMap": {}, + "alarmNo": "1750838604", + "alarmDate": "1769992587890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828651158", + "createdBy": null, + "createdTime": "2026-02-02 08:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:56", + "echoMap": {}, + "alarmNo": "1750838603", + "alarmDate": "1769992583976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650902", + "createdBy": null, + "createdTime": "2026-02-02 08:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:18", + "echoMap": {}, + "alarmNo": "1750838602", + "alarmDate": "1769992576928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650672", + "createdBy": null, + "createdTime": "2026-02-02 08:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:12", + "echoMap": {}, + "alarmNo": "1750838601", + "alarmDate": "1769992570672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650548", + "createdBy": null, + "createdTime": "2026-02-02 08:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:27", + "echoMap": {}, + "alarmNo": "1750838600", + "alarmDate": "1769992567436", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060107", + "deviceName": "[625](10)五角场下行人防门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133322828650498", + "createdBy": null, + "createdTime": "2026-02-02 08:36:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:24", + "echoMap": {}, + "alarmNo": "1750838599", + "alarmDate": "1769992565715", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533684014", + "createdBy": null, + "createdTime": "2026-02-02 08:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:04", + "echoMap": {}, + "alarmNo": "1750838598", + "alarmDate": "1769992023201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533683990", + "createdBy": null, + "createdTime": "2026-02-02 08:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:19", + "echoMap": {}, + "alarmNo": "1750838597", + "alarmDate": "1769992022601", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533683915", + "createdBy": null, + "createdTime": "2026-02-02 08:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:02", + "echoMap": {}, + "alarmNo": "1750838596", + "alarmDate": "1769992020683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133318533683833", + "createdBy": null, + "createdTime": "2026-02-02 08:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:09", + "echoMap": {}, + "alarmNo": "1750838595", + "alarmDate": "1769992018442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133305648782275", + "createdBy": null, + "createdTime": "2026-02-02 08:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:39", + "echoMap": {}, + "alarmNo": "1750838594", + "alarmDate": "1769991992565", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133301353814521", + "createdBy": null, + "createdTime": "2026-02-02 08:16:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:17:01", + "echoMap": {}, + "alarmNo": "1750838593", + "alarmDate": "1769991415312", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133301353814174", + "createdBy": null, + "createdTime": "2026-02-02 08:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:47", + "echoMap": {}, + "alarmNo": "1750838592", + "alarmDate": "1769991406017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133292763879548", + "createdBy": null, + "createdTime": "2026-02-02 08:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:40", + "echoMap": {}, + "alarmNo": "1750838591", + "alarmDate": "1769991398768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133288468912761", + "createdBy": null, + "createdTime": "2026-02-02 08:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:37", + "echoMap": {}, + "alarmNo": "1750838590", + "alarmDate": "1769991385244", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060012", + "deviceName": "[309](10)五角场3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133288468912594", + "createdBy": null, + "createdTime": "2026-02-02 08:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:30", + "echoMap": {}, + "alarmNo": "1750838589", + "alarmDate": "1769991381207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173945410", + "createdBy": null, + "createdTime": "2026-02-02 08:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:51", + "echoMap": {}, + "alarmNo": "1750838588", + "alarmDate": "1769990817971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173945146", + "createdBy": null, + "createdTime": "2026-02-02 08:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:34", + "echoMap": {}, + "alarmNo": "1750838587", + "alarmDate": "1769990810499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173944932", + "createdBy": null, + "createdTime": "2026-02-02 08:06:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:32", + "echoMap": {}, + "alarmNo": "1750838586", + "alarmDate": "1769990804285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133284173944869", + "createdBy": null, + "createdTime": "2026-02-02 08:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:44", + "echoMap": {}, + "alarmNo": "1750838585", + "alarmDate": "1769990802556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043965", + "createdBy": null, + "createdTime": "2026-02-02 08:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:35", + "echoMap": {}, + "alarmNo": "1750838584", + "alarmDate": "1769990793970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043840", + "createdBy": null, + "createdTime": "2026-02-02 08:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:59", + "echoMap": {}, + "alarmNo": "1750838583", + "alarmDate": "1769990790509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043237", + "createdBy": null, + "createdTime": "2026-02-02 08:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:15", + "echoMap": {}, + "alarmNo": "1750838582", + "alarmDate": "1769990773524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133271289043147", + "createdBy": null, + "createdTime": "2026-02-02 08:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:12", + "echoMap": {}, + "alarmNo": "1750838581", + "alarmDate": "1769990771042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133266994076159", + "createdBy": null, + "createdTime": "2026-02-02 07:56:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:55", + "echoMap": {}, + "alarmNo": "1750838580", + "alarmDate": "1769990213816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133249814207020", + "createdBy": null, + "createdTime": "2026-02-02 07:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:44", + "echoMap": {}, + "alarmNo": "1750838579", + "alarmDate": "1769989614711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060050", + "deviceName": "[404](10)五角场1#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133249814206602", + "createdBy": null, + "createdTime": "2026-02-02 07:46:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:44", + "echoMap": {}, + "alarmNo": "1750838578", + "alarmDate": "1769989603130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133241224271897", + "createdBy": null, + "createdTime": "2026-02-02 07:46:33", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:34", + "echoMap": {}, + "alarmNo": "1750838577", + "alarmDate": "1769989592885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133232634337922", + "createdBy": null, + "createdTime": "2026-02-02 07:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:17", + "echoMap": {}, + "alarmNo": "1750838576", + "alarmDate": "1769989017201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060034", + "deviceName": "[405](10)五角场2#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133232634337648", + "createdBy": null, + "createdTime": "2026-02-02 07:36:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:51", + "echoMap": {}, + "alarmNo": "1750838575", + "alarmDate": "1769989009701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133232634337364", + "createdBy": null, + "createdTime": "2026-02-02 07:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:43", + "echoMap": {}, + "alarmNo": "1750838574", + "alarmDate": "1769989002016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133219749436244", + "createdBy": null, + "createdTime": "2026-02-02 07:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:08", + "echoMap": {}, + "alarmNo": "1750838573", + "alarmDate": "1769988989319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133219749435948", + "createdBy": null, + "createdTime": "2026-02-02 07:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:30", + "echoMap": {}, + "alarmNo": "1750838572", + "alarmDate": "1769988981122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060026", + "deviceName": "[407](10)五角场2#闸出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133219749435880", + "createdBy": null, + "createdTime": "2026-02-02 07:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:38", + "echoMap": {}, + "alarmNo": "1750838571", + "alarmDate": "1769988979261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060063", + "deviceName": "[302](10)五角场2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133215454468388", + "createdBy": null, + "createdTime": "2026-02-02 07:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:49", + "echoMap": {}, + "alarmNo": "1750838570", + "alarmDate": "1769988407928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133215454468261", + "createdBy": null, + "createdTime": "2026-02-02 07:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:46", + "echoMap": {}, + "alarmNo": "1750838569", + "alarmDate": "1769988404582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133198274599138", + "createdBy": null, + "createdTime": "2026-02-02 07:16:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:48", + "echoMap": {}, + "alarmNo": "1750838568", + "alarmDate": "1769987807213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133185389697838", + "createdBy": null, + "createdTime": "2026-02-02 07:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:31", + "echoMap": {}, + "alarmNo": "1750838567", + "alarmDate": "1769987790017", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133185389697627", + "createdBy": null, + "createdTime": "2026-02-02 07:16:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:36", + "echoMap": {}, + "alarmNo": "1750838566", + "alarmDate": "1769987784236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060058", + "deviceName": "[320](10)五角场5#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133185389697141", + "createdBy": null, + "createdTime": "2026-02-02 07:16:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:12", + "echoMap": {}, + "alarmNo": "1750838565", + "alarmDate": "1769987770995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133181094730472", + "createdBy": null, + "createdTime": "2026-02-02 07:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:04", + "echoMap": {}, + "alarmNo": "1750838564", + "alarmDate": "1769987222881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133181094730072", + "createdBy": null, + "createdTime": "2026-02-02 07:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:53", + "echoMap": {}, + "alarmNo": "1750838563", + "alarmDate": "1769987212161", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133168209828670", + "createdBy": null, + "createdTime": "2026-02-02 07:06:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:32", + "echoMap": {}, + "alarmNo": "1750838562", + "alarmDate": "1769987191947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060068", + "deviceName": "[303](10)五角场2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133163914861034", + "createdBy": null, + "createdTime": "2026-02-02 06:56:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:16", + "echoMap": {}, + "alarmNo": "1750838561", + "alarmDate": "1769986617740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060042", + "deviceName": "[402](10)五角场1#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133163914860657", + "createdBy": null, + "createdTime": "2026-02-02 06:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:48", + "echoMap": {}, + "alarmNo": "1750838560", + "alarmDate": "1769986607163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133163914860605", + "createdBy": null, + "createdTime": "2026-02-02 06:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:47", + "echoMap": {}, + "alarmNo": "1750838559", + "alarmDate": "1769986605690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133146734991692", + "createdBy": null, + "createdTime": "2026-02-02 06:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:54", + "echoMap": {}, + "alarmNo": "1750838558", + "alarmDate": "1769986013417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133133850090239", + "createdBy": null, + "createdTime": "2026-02-02 06:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:32", + "echoMap": {}, + "alarmNo": "1750838557", + "alarmDate": "1769985991101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060041", + "deviceName": "[202](10)五角场厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133133850089983", + "createdBy": null, + "createdTime": "2026-02-02 06:46:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:25", + "echoMap": {}, + "alarmNo": "1750838556", + "alarmDate": "1769985984073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133133850089561", + "createdBy": null, + "createdTime": "2026-02-02 06:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:13", + "echoMap": {}, + "alarmNo": "1750838555", + "alarmDate": "1769985972332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133129555122858", + "createdBy": null, + "createdTime": "2026-02-02 06:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:04", + "echoMap": {}, + "alarmNo": "1750838554", + "alarmDate": "1769985423214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133112375253312", + "createdBy": null, + "createdTime": "2026-02-02 06:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:54", + "echoMap": {}, + "alarmNo": "1750838553", + "alarmDate": "1769984812842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133112375253147", + "createdBy": null, + "createdTime": "2026-02-02 06:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:49", + "echoMap": {}, + "alarmNo": "1750838552", + "alarmDate": "1769984808416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133099490351463", + "createdBy": null, + "createdTime": "2026-02-02 06:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:21", + "echoMap": {}, + "alarmNo": "1750838551", + "alarmDate": "1769984779761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133090900416513", + "createdBy": null, + "createdTime": "2026-02-02 06:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:44", + "echoMap": {}, + "alarmNo": "1750838550", + "alarmDate": "1769984202729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060038", + "deviceName": "[211](10)五角场4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133082310482606", + "createdBy": null, + "createdTime": "2026-02-02 06:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:30", + "echoMap": {}, + "alarmNo": "1750838549", + "alarmDate": "1769984189245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133082310482542", + "createdBy": null, + "createdTime": "2026-02-02 06:16:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:29", + "echoMap": {}, + "alarmNo": "1750838548", + "alarmDate": "1769984187590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133065130612976", + "createdBy": null, + "createdTime": "2026-02-02 06:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:17", + "echoMap": {}, + "alarmNo": "1750838547", + "alarmDate": "1769983576100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133060835645688", + "createdBy": null, + "createdTime": "2026-02-02 05:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:52", + "echoMap": {}, + "alarmNo": "1750838546", + "alarmDate": "1769983010561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133047950744538", + "createdBy": null, + "createdTime": "2026-02-02 05:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:38", + "echoMap": {}, + "alarmNo": "1750838545", + "alarmDate": "1769982996841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133047950743979", + "createdBy": null, + "createdTime": "2026-02-02 05:56:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:23", + "echoMap": {}, + "alarmNo": "1750838544", + "alarmDate": "1769982981822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060104", + "deviceName": "[212](10)五角场厅5球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133043655776345", + "createdBy": null, + "createdTime": "2026-02-02 05:46:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:47", + "echoMap": {}, + "alarmNo": "1750838543", + "alarmDate": "1769982406414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133035065841783", + "createdBy": null, + "createdTime": "2026-02-02 05:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:43", + "echoMap": {}, + "alarmNo": "1750838542", + "alarmDate": "1769982401681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133013591005861", + "createdBy": null, + "createdTime": "2026-02-02 05:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:32", + "echoMap": {}, + "alarmNo": "1750838541", + "alarmDate": "1769981791244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133009296038707", + "createdBy": null, + "createdTime": "2026-02-02 05:36:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:08", + "echoMap": {}, + "alarmNo": "1750838540", + "alarmDate": "1769981766902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133009296038194", + "createdBy": null, + "createdTime": "2026-02-02 05:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1750838539", + "alarmDate": "1769981215311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723133009296038178", + "createdBy": null, + "createdTime": "2026-02-02 05:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1750838538", + "alarmDate": "1769981214988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136688", + "createdBy": null, + "createdTime": "2026-02-02 05:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:12", + "echoMap": {}, + "alarmNo": "1750838537", + "alarmDate": "1769981170628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136609", + "createdBy": null, + "createdTime": "2026-02-02 05:26:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:09", + "echoMap": {}, + "alarmNo": "1750838536", + "alarmDate": "1769981168367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136292", + "createdBy": null, + "createdTime": "2026-02-02 05:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:03", + "echoMap": {}, + "alarmNo": "1750838535", + "alarmDate": "1769980622594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132996411136167", + "createdBy": null, + "createdTime": "2026-02-02 05:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:17:00", + "echoMap": {}, + "alarmNo": "1750838534", + "alarmDate": "1769980619071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132974936300047", + "createdBy": null, + "createdTime": "2026-02-02 05:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:50", + "echoMap": {}, + "alarmNo": "1750838533", + "alarmDate": "1769980009486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132970641332646", + "createdBy": null, + "createdTime": "2026-02-02 05:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:20", + "echoMap": {}, + "alarmNo": "1750838532", + "alarmDate": "1769979978410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132970641332636", + "createdBy": null, + "createdTime": "2026-02-02 05:06:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:19", + "echoMap": {}, + "alarmNo": "1750838531", + "alarmDate": "1769979978260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132966346364987", + "createdBy": null, + "createdTime": "2026-02-02 05:06:07", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:34", + "echoMap": {}, + "alarmNo": "1750838530", + "alarmDate": "1769979966754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060070", + "deviceName": "[304](10)五角场2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132957756430882", + "createdBy": null, + "createdTime": "2026-02-02 04:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:30", + "echoMap": {}, + "alarmNo": "1750838529", + "alarmDate": "1769979388873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132957756430759", + "createdBy": null, + "createdTime": "2026-02-02 04:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:26", + "echoMap": {}, + "alarmNo": "1750838528", + "alarmDate": "1769979385424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132944871528530", + "createdBy": null, + "createdTime": "2026-02-02 04:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:17", + "echoMap": {}, + "alarmNo": "1750838527", + "alarmDate": "1769978775653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132931986627245", + "createdBy": null, + "createdTime": "2026-02-02 04:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:38", + "echoMap": {}, + "alarmNo": "1750838526", + "alarmDate": "1769978196506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132931986626987", + "createdBy": null, + "createdTime": "2026-02-02 04:36:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:29", + "echoMap": {}, + "alarmNo": "1750838525", + "alarmDate": "1769978188350", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132923396691999", + "createdBy": null, + "createdTime": "2026-02-02 04:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:50", + "echoMap": {}, + "alarmNo": "1750838524", + "alarmDate": "1769977608848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132919101725645", + "createdBy": null, + "createdTime": "2026-02-02 04:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:47", + "echoMap": {}, + "alarmNo": "1750838523", + "alarmDate": "1769977606249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132906216823404", + "createdBy": null, + "createdTime": "2026-02-02 04:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:36", + "echoMap": {}, + "alarmNo": "1750838522", + "alarmDate": "1769976994829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132897626888501", + "createdBy": null, + "createdTime": "2026-02-02 04:06:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:59", + "echoMap": {}, + "alarmNo": "1750838521", + "alarmDate": "1769976417647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132893331921695", + "createdBy": null, + "createdTime": "2026-02-02 04:06:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:42", + "echoMap": {}, + "alarmNo": "1750838520", + "alarmDate": "1769976400641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132893331920936", + "createdBy": null, + "createdTime": "2026-02-02 04:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:17", + "echoMap": {}, + "alarmNo": "1750838519", + "alarmDate": "1769976376256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132884741986825", + "createdBy": null, + "createdTime": "2026-02-02 03:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:15", + "echoMap": {}, + "alarmNo": "1750838518", + "alarmDate": "1769975825441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132871857084625", + "createdBy": null, + "createdTime": "2026-02-02 03:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:55", + "echoMap": {}, + "alarmNo": "1750838517", + "alarmDate": "1769975213945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132867562117437", + "createdBy": null, + "createdTime": "2026-02-02 03:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:26", + "echoMap": {}, + "alarmNo": "1750838516", + "alarmDate": "1769975184926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132858972183080", + "createdBy": null, + "createdTime": "2026-02-02 03:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:09", + "echoMap": {}, + "alarmNo": "1750838515", + "alarmDate": "1769974628691", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1024030009", + "deviceName": "安防箱9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1024" + }, + { + "id": "723132858972182757", + "createdBy": null, + "createdTime": "2026-02-02 03:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:57", + "echoMap": {}, + "alarmNo": "1750838514", + "alarmDate": "1769974615699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132854677215853", + "createdBy": null, + "createdTime": "2026-02-02 03:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:36", + "echoMap": {}, + "alarmNo": "1750838513", + "alarmDate": "1769974595393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132854677215708", + "createdBy": null, + "createdTime": "2026-02-02 03:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:32", + "echoMap": {}, + "alarmNo": "1750838512", + "alarmDate": "1769974590805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132841792313548", + "createdBy": null, + "createdTime": "2026-02-02 03:26:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:22", + "echoMap": {}, + "alarmNo": "1750838511", + "alarmDate": "1769973981250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132828907412374", + "createdBy": null, + "createdTime": "2026-02-02 03:16:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:45", + "echoMap": {}, + "alarmNo": "1750838510", + "alarmDate": "1769973404114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132828907411553", + "createdBy": null, + "createdTime": "2026-02-02 03:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:19", + "echoMap": {}, + "alarmNo": "1750838509", + "alarmDate": "1769973378111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132820317477008", + "createdBy": null, + "createdTime": "2026-02-02 03:06:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:53", + "echoMap": {}, + "alarmNo": "1750838508", + "alarmDate": "1769972812556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132820317476926", + "createdBy": null, + "createdTime": "2026-02-02 03:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:51", + "echoMap": {}, + "alarmNo": "1750838507", + "alarmDate": "1769972809977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132803137608477", + "createdBy": null, + "createdTime": "2026-02-02 02:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:41", + "echoMap": {}, + "alarmNo": "1750838506", + "alarmDate": "1769972200410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132794547673890", + "createdBy": null, + "createdTime": "2026-02-02 02:56:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:11", + "echoMap": {}, + "alarmNo": "1750838505", + "alarmDate": "1769972170406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132794547673566", + "createdBy": null, + "createdTime": "2026-02-02 02:47:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:04", + "echoMap": {}, + "alarmNo": "1750838504", + "alarmDate": "1769971623232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132790252706425", + "createdBy": null, + "createdTime": "2026-02-02 02:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:36", + "echoMap": {}, + "alarmNo": "1750838503", + "alarmDate": "1769971595324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132790252705911", + "createdBy": null, + "createdTime": "2026-02-02 02:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:20", + "echoMap": {}, + "alarmNo": "1750838502", + "alarmDate": "1769971578813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132790252705856", + "createdBy": null, + "createdTime": "2026-02-02 02:46:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:18", + "echoMap": {}, + "alarmNo": "1750838501", + "alarmDate": "1769971577170", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132768777870099", + "createdBy": null, + "createdTime": "2026-02-02 02:36:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:10", + "echoMap": {}, + "alarmNo": "1750838500", + "alarmDate": "1769970968711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132768777869727", + "createdBy": null, + "createdTime": "2026-02-02 02:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:02", + "echoMap": {}, + "alarmNo": "1750838499", + "alarmDate": "1769970420506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132764482902525", + "createdBy": null, + "createdTime": "2026-02-02 02:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:32", + "echoMap": {}, + "alarmNo": "1750838498", + "alarmDate": "1769970390596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132755892967516", + "createdBy": null, + "createdTime": "2026-02-02 02:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:51", + "echoMap": {}, + "alarmNo": "1750838497", + "alarmDate": "1769969809525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132751598000846", + "createdBy": null, + "createdTime": "2026-02-02 02:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:38", + "echoMap": {}, + "alarmNo": "1750838496", + "alarmDate": "1769969796938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132751598000832", + "createdBy": null, + "createdTime": "2026-02-02 02:16:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:37", + "echoMap": {}, + "alarmNo": "1750838495", + "alarmDate": "1769969796347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132738713098695", + "createdBy": null, + "createdTime": "2026-02-02 02:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:29", + "echoMap": {}, + "alarmNo": "1750838494", + "alarmDate": "1769969187900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132725828197344", + "createdBy": null, + "createdTime": "2026-02-02 01:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:47", + "echoMap": {}, + "alarmNo": "1750838493", + "alarmDate": "1769968605754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132725828197328", + "createdBy": null, + "createdTime": "2026-02-02 01:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:46", + "echoMap": {}, + "alarmNo": "1750838492", + "alarmDate": "1769968605342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060013", + "deviceName": "[210](10)五角场3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132717238262285", + "createdBy": null, + "createdTime": "2026-02-02 01:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:15", + "echoMap": {}, + "alarmNo": "1750838491", + "alarmDate": "1769968023738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132717238262044", + "createdBy": null, + "createdTime": "2026-02-02 01:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:57", + "echoMap": {}, + "alarmNo": "1750838490", + "alarmDate": "1769968016140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132717238261990", + "createdBy": null, + "createdTime": "2026-02-02 01:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:56", + "echoMap": {}, + "alarmNo": "1750838489", + "alarmDate": "1769968014505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132700058393595", + "createdBy": null, + "createdTime": "2026-02-02 01:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:48", + "echoMap": {}, + "alarmNo": "1750838488", + "alarmDate": "1769967407085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132695763425280", + "createdBy": null, + "createdTime": "2026-02-02 01:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:13", + "echoMap": {}, + "alarmNo": "1750838487", + "alarmDate": "1769967372212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132691468458457", + "createdBy": null, + "createdTime": "2026-02-02 01:27:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:04", + "echoMap": {}, + "alarmNo": "1750838486", + "alarmDate": "1769966822866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132687173491122", + "createdBy": null, + "createdTime": "2026-02-02 01:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:30", + "echoMap": {}, + "alarmNo": "1750838485", + "alarmDate": "1769966789190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132687173490936", + "createdBy": null, + "createdTime": "2026-02-02 01:26:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:24", + "echoMap": {}, + "alarmNo": "1750838484", + "alarmDate": "1769966783376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132687173490885", + "createdBy": null, + "createdTime": "2026-02-02 01:26:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:23", + "echoMap": {}, + "alarmNo": "1750838483", + "alarmDate": "1769966781830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132669993621551", + "createdBy": null, + "createdTime": "2026-02-02 01:16:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:15", + "echoMap": {}, + "alarmNo": "1750838482", + "alarmDate": "1769966174318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132661403687489", + "createdBy": null, + "createdTime": "2026-02-02 01:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:31", + "echoMap": {}, + "alarmNo": "1750838481", + "alarmDate": "1769965590220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132652813752338", + "createdBy": null, + "createdTime": "2026-02-02 00:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:46", + "echoMap": {}, + "alarmNo": "1750838480", + "alarmDate": "1769965005342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132648518786001", + "createdBy": null, + "createdTime": "2026-02-02 00:56:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:45", + "echoMap": {}, + "alarmNo": "1750838479", + "alarmDate": "1769965003415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132648518785924", + "createdBy": null, + "createdTime": "2026-02-02 00:56:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:42", + "echoMap": {}, + "alarmNo": "1750838478", + "alarmDate": "1769965000968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132635633883835", + "createdBy": null, + "createdTime": "2026-02-02 00:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:33", + "echoMap": {}, + "alarmNo": "1750838477", + "alarmDate": "1769964392486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132627043948677", + "createdBy": null, + "createdTime": "2026-02-02 00:36:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:49", + "echoMap": {}, + "alarmNo": "1750838476", + "alarmDate": "1769963808403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132618454013999", + "createdBy": null, + "createdTime": "2026-02-02 00:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:12", + "echoMap": {}, + "alarmNo": "1750838475", + "alarmDate": "1769963770852", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132614159046756", + "createdBy": null, + "createdTime": "2026-02-02 00:36:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:10", + "echoMap": {}, + "alarmNo": "1750838474", + "alarmDate": "1769963769247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132614159046701", + "createdBy": null, + "createdTime": "2026-02-02 00:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:09", + "echoMap": {}, + "alarmNo": "1750838473", + "alarmDate": "1769963767719", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132609864080200", + "createdBy": null, + "createdTime": "2026-02-02 00:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:05", + "echoMap": {}, + "alarmNo": "1750838472", + "alarmDate": "1769963223588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132609864080116", + "createdBy": null, + "createdTime": "2026-02-02 00:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:02", + "echoMap": {}, + "alarmNo": "1750838471", + "alarmDate": "1769963221053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132609864080004", + "createdBy": null, + "createdTime": "2026-02-02 00:26:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:58", + "echoMap": {}, + "alarmNo": "1750838470", + "alarmDate": "1769963217508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132592684210838", + "createdBy": null, + "createdTime": "2026-02-02 00:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:53", + "echoMap": {}, + "alarmNo": "1750838469", + "alarmDate": "1769962611687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060060", + "deviceName": "[201](10)五角场厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132588389243452", + "createdBy": null, + "createdTime": "2026-02-02 00:16:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:17", + "echoMap": {}, + "alarmNo": "1750838468", + "alarmDate": "1769962575728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060083", + "deviceName": "[208](10)五角场下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132588389243158", + "createdBy": null, + "createdTime": "2026-02-02 00:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:46", + "echoMap": {}, + "alarmNo": "1750838467", + "alarmDate": "1769962566333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132575504341113", + "createdBy": null, + "createdTime": "2026-02-02 00:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:32", + "echoMap": {}, + "alarmNo": "1750838466", + "alarmDate": "1769961990878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060087", + "deviceName": "[206](10)五角场上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132575504341038", + "createdBy": null, + "createdTime": "2026-02-02 00:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:30", + "echoMap": {}, + "alarmNo": "1750838465", + "alarmDate": "1769961988536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060092", + "deviceName": "[205](10)五角场上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132571209374533", + "createdBy": null, + "createdTime": "2026-02-02 00:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:22", + "echoMap": {}, + "alarmNo": "1750838464", + "alarmDate": "1769961980896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060024", + "deviceName": "[203](10)五角场厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + }, + { + "id": "723132571209374085", + "createdBy": null, + "createdTime": "2026-02-02 00:06:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:11", + "echoMap": {}, + "alarmNo": "1750838463", + "alarmDate": "1769961965972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1024060053", + "deviceName": "[327](10)五角场5#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1024" + } + ] + }, + "1025": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723122508099664070", + "createdBy": null, + "createdTime": "2026-02-02 00:03:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:06", + "echoMap": {}, + "alarmNo": "1770733720", + "alarmDate": "1769961784884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122508099664782", + "createdBy": null, + "createdTime": "2026-02-02 00:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:37", + "echoMap": {}, + "alarmNo": "1770733721", + "alarmDate": "1769962355791", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122508099664843", + "createdBy": null, + "createdTime": "2026-02-02 00:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:40", + "echoMap": {}, + "alarmNo": "1770733722", + "alarmDate": "1769962359271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122516689598474", + "createdBy": null, + "createdTime": "2026-02-02 00:13:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:12", + "echoMap": {}, + "alarmNo": "1770733723", + "alarmDate": "1769962391575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060051", + "deviceName": "[412](10)江体4#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984565901", + "createdBy": null, + "createdTime": "2026-02-02 00:13:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:24", + "echoMap": {}, + "alarmNo": "1770733724", + "alarmDate": "1769962403164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984566179", + "createdBy": null, + "createdTime": "2026-02-02 00:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:23:01", + "echoMap": {}, + "alarmNo": "1770733725", + "alarmDate": "1769962946346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984566340", + "createdBy": null, + "createdTime": "2026-02-02 00:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:37", + "echoMap": {}, + "alarmNo": "1770733726", + "alarmDate": "1769962956148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984566363", + "createdBy": null, + "createdTime": "2026-02-02 00:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:38", + "echoMap": {}, + "alarmNo": "1770733727", + "alarmDate": "1769962957371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122529574500366", + "createdBy": null, + "createdTime": "2026-02-02 00:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:30", + "echoMap": {}, + "alarmNo": "1770733728", + "alarmDate": "1769963545307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122533869468246", + "createdBy": null, + "createdTime": "2026-02-02 00:33:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:09", + "echoMap": {}, + "alarmNo": "1770733729", + "alarmDate": "1769963587474", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122533869468346", + "createdBy": null, + "createdTime": "2026-02-02 00:33:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:15", + "echoMap": {}, + "alarmNo": "1770733730", + "alarmDate": "1769963593951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754369567", + "createdBy": null, + "createdTime": "2026-02-02 00:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:01", + "echoMap": {}, + "alarmNo": "1770733731", + "alarmDate": "1769964162551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754369969", + "createdBy": null, + "createdTime": "2026-02-02 00:43:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:11", + "echoMap": {}, + "alarmNo": "1770733732", + "alarmDate": "1769964189783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754370015", + "createdBy": null, + "createdTime": "2026-02-02 00:43:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:19", + "echoMap": {}, + "alarmNo": "1770733733", + "alarmDate": "1769964192716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754370125", + "createdBy": null, + "createdTime": "2026-02-02 00:43:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:21", + "echoMap": {}, + "alarmNo": "1770733734", + "alarmDate": "1769964200090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122551049336887", + "createdBy": null, + "createdTime": "2026-02-02 00:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:41", + "echoMap": {}, + "alarmNo": "1770733735", + "alarmDate": "1769964767743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122559639272241", + "createdBy": null, + "createdTime": "2026-02-02 01:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:49", + "echoMap": {}, + "alarmNo": "1770733736", + "alarmDate": "1769965368332", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122559639272313", + "createdBy": null, + "createdTime": "2026-02-02 01:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:03:05", + "echoMap": {}, + "alarmNo": "1770733737", + "alarmDate": "1769965373106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122559639272403", + "createdBy": null, + "createdTime": "2026-02-02 01:02:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:03:00", + "echoMap": {}, + "alarmNo": "1770733738", + "alarmDate": "1769965379004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122572524173505", + "createdBy": null, + "createdTime": "2026-02-02 01:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:47", + "echoMap": {}, + "alarmNo": "1770733739", + "alarmDate": "1769965945926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122572524173871", + "createdBy": null, + "createdTime": "2026-02-02 01:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:51", + "echoMap": {}, + "alarmNo": "1770733740", + "alarmDate": "1769965970400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122572524174147", + "createdBy": null, + "createdTime": "2026-02-02 01:13:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:11", + "echoMap": {}, + "alarmNo": "1770733741", + "alarmDate": "1769965989884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122581114108753", + "createdBy": null, + "createdTime": "2026-02-02 01:23:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:33:03", + "echoMap": {}, + "alarmNo": "1770733742", + "alarmDate": "1769966596236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122581114108825", + "createdBy": null, + "createdTime": "2026-02-02 01:23:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:22", + "echoMap": {}, + "alarmNo": "1770733743", + "alarmDate": "1769966600967", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122585409075331", + "createdBy": null, + "createdTime": "2026-02-02 01:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:26", + "echoMap": {}, + "alarmNo": "1770733744", + "alarmDate": "1769967144389", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060020", + "deviceName": "[404](10)江体2#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042520", + "createdBy": null, + "createdTime": "2026-02-02 01:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:29", + "echoMap": {}, + "alarmNo": "1770733745", + "alarmDate": "1769967148162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042552", + "createdBy": null, + "createdTime": "2026-02-02 01:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:43", + "echoMap": {}, + "alarmNo": "1770733746", + "alarmDate": "1769967150156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060076", + "deviceName": "[109](10)江体下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042687", + "createdBy": null, + "createdTime": "2026-02-02 01:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:39", + "echoMap": {}, + "alarmNo": "1770733747", + "alarmDate": "1769967158344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042780", + "createdBy": null, + "createdTime": "2026-02-02 01:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:45", + "echoMap": {}, + "alarmNo": "1770733748", + "alarmDate": "1769967163926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704043327", + "createdBy": null, + "createdTime": "2026-02-02 01:33:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:03", + "echoMap": {}, + "alarmNo": "1770733749", + "alarmDate": "1769967201356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122598293977135", + "createdBy": null, + "createdTime": "2026-02-02 01:42:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:33", + "echoMap": {}, + "alarmNo": "1770733750", + "alarmDate": "1769967752205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122602588944709", + "createdBy": null, + "createdTime": "2026-02-02 01:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:08", + "echoMap": {}, + "alarmNo": "1770733751", + "alarmDate": "1769967775678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060076", + "deviceName": "[109](10)江体下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122615473846495", + "createdBy": null, + "createdTime": "2026-02-02 01:53:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:02", + "echoMap": {}, + "alarmNo": "1770733752", + "alarmDate": "1769968380738", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122615473846754", + "createdBy": null, + "createdTime": "2026-02-02 01:53:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:20", + "echoMap": {}, + "alarmNo": "1770733753", + "alarmDate": "1769968398679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122615473846984", + "createdBy": null, + "createdTime": "2026-02-02 02:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:29", + "echoMap": {}, + "alarmNo": "1770733754", + "alarmDate": "1769968947894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122624063781084", + "createdBy": null, + "createdTime": "2026-02-02 02:03:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:03:06", + "echoMap": {}, + "alarmNo": "1770733755", + "alarmDate": "1769968984745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122624063781689", + "createdBy": null, + "createdTime": "2026-02-02 02:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:42", + "echoMap": {}, + "alarmNo": "1770733756", + "alarmDate": "1769969560645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122632653715588", + "createdBy": null, + "createdTime": "2026-02-02 02:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:13:08", + "echoMap": {}, + "alarmNo": "1770733757", + "alarmDate": "1769969581969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122632653716262", + "createdBy": null, + "createdTime": "2026-02-02 02:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:44", + "echoMap": {}, + "alarmNo": "1770733758", + "alarmDate": "1769970162637", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122641243650190", + "createdBy": null, + "createdTime": "2026-02-02 02:23:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:23:06", + "echoMap": {}, + "alarmNo": "1770733759", + "alarmDate": "1769970184647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122641243650609", + "createdBy": null, + "createdTime": "2026-02-02 02:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:38", + "echoMap": {}, + "alarmNo": "1770733760", + "alarmDate": "1769970746149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122641243650882", + "createdBy": null, + "createdTime": "2026-02-02 02:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:46", + "echoMap": {}, + "alarmNo": "1770733761", + "alarmDate": "1769970764595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122649833584816", + "createdBy": null, + "createdTime": "2026-02-02 02:33:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:33:18", + "echoMap": {}, + "alarmNo": "1770733762", + "alarmDate": "1769970786365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060076", + "deviceName": "[109](10)江体下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122658423519527", + "createdBy": null, + "createdTime": "2026-02-02 02:43:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:15", + "echoMap": {}, + "alarmNo": "1770733763", + "alarmDate": "1769971394270", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122658423520128", + "createdBy": null, + "createdTime": "2026-02-02 02:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:50", + "echoMap": {}, + "alarmNo": "1770733765", + "alarmDate": "1769971968703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122667013454176", + "createdBy": null, + "createdTime": "2026-02-02 02:53:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:53:18", + "echoMap": {}, + "alarmNo": "1770733766", + "alarmDate": "1769971997238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122667013454390", + "createdBy": null, + "createdTime": "2026-02-02 03:02:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:25", + "echoMap": {}, + "alarmNo": "1770733767", + "alarmDate": "1769972544409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122671308421145", + "createdBy": null, + "createdTime": "2026-02-02 03:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:03:01", + "echoMap": {}, + "alarmNo": "1770733768", + "alarmDate": "1769972574647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122675603388663", + "createdBy": null, + "createdTime": "2026-02-02 03:03:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:03:19", + "echoMap": {}, + "alarmNo": "1770733769", + "alarmDate": "1769972592754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122679898355748", + "createdBy": null, + "createdTime": "2026-02-02 03:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:55", + "echoMap": {}, + "alarmNo": "1770733770", + "alarmDate": "1769973174172", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323407", + "createdBy": null, + "createdTime": "2026-02-02 03:13:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:13:25", + "echoMap": {}, + "alarmNo": "1770733771", + "alarmDate": "1769973203626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323424", + "createdBy": null, + "createdTime": "2026-02-02 03:13:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:13:26", + "echoMap": {}, + "alarmNo": "1770733772", + "alarmDate": "1769973205410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323625", + "createdBy": null, + "createdTime": "2026-02-02 03:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:33", + "echoMap": {}, + "alarmNo": "1770733773", + "alarmDate": "1769973751733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323686", + "createdBy": null, + "createdTime": "2026-02-02 03:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:37", + "echoMap": {}, + "alarmNo": "1770733774", + "alarmDate": "1769973755678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122688488290360", + "createdBy": null, + "createdTime": "2026-02-02 03:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:58", + "echoMap": {}, + "alarmNo": "1770733775", + "alarmDate": "1769973777013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122701373192832", + "createdBy": null, + "createdTime": "2026-02-02 03:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:37", + "echoMap": {}, + "alarmNo": "1770733776", + "alarmDate": "1769974956063", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122709963126962", + "createdBy": null, + "createdTime": "2026-02-02 03:43:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:43:12", + "echoMap": {}, + "alarmNo": "1770733777", + "alarmDate": "1769974990488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122709963127446", + "createdBy": null, + "createdTime": "2026-02-02 03:52:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:39", + "echoMap": {}, + "alarmNo": "1770733778", + "alarmDate": "1769975557884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122727142996059", + "createdBy": null, + "createdTime": "2026-02-02 04:03:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:03:10", + "echoMap": {}, + "alarmNo": "1770733779", + "alarmDate": "1769976188704", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122727142996781", + "createdBy": null, + "createdTime": "2026-02-02 04:12:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:54", + "echoMap": {}, + "alarmNo": "1770733780", + "alarmDate": "1769976772502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122735732930653", + "createdBy": null, + "createdTime": "2026-02-02 04:13:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:13:10", + "echoMap": {}, + "alarmNo": "1770733781", + "alarmDate": "1769976789356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122744322865846", + "createdBy": null, + "createdTime": "2026-02-02 04:32:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:48", + "echoMap": {}, + "alarmNo": "1770733782", + "alarmDate": "1769977966535", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122752912800287", + "createdBy": null, + "createdTime": "2026-02-02 04:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:38", + "echoMap": {}, + "alarmNo": "1770733783", + "alarmDate": "1769978557415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122752912800468", + "createdBy": null, + "createdTime": "2026-02-02 04:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:51", + "echoMap": {}, + "alarmNo": "1770733784", + "alarmDate": "1769978570179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122761502735153", + "createdBy": null, + "createdTime": "2026-02-02 04:52:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:59", + "echoMap": {}, + "alarmNo": "1770733785", + "alarmDate": "1769979177529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122770092669109", + "createdBy": null, + "createdTime": "2026-02-02 04:53:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:53:21", + "echoMap": {}, + "alarmNo": "1770733786", + "alarmDate": "1769979200154", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122770092669347", + "createdBy": null, + "createdTime": "2026-02-02 05:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:29", + "echoMap": {}, + "alarmNo": "1770733787", + "alarmDate": "1769979748339", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682603855", + "createdBy": null, + "createdTime": "2026-02-02 05:03:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:14", + "echoMap": {}, + "alarmNo": "1770733788", + "alarmDate": "1769979793223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682603953", + "createdBy": null, + "createdTime": "2026-02-02 05:03:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:19", + "echoMap": {}, + "alarmNo": "1770733789", + "alarmDate": "1769979798216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682604024", + "createdBy": null, + "createdTime": "2026-02-02 05:03:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:23", + "echoMap": {}, + "alarmNo": "1770733790", + "alarmDate": "1769979801759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682604269", + "createdBy": null, + "createdTime": "2026-02-02 05:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:31", + "echoMap": {}, + "alarmNo": "1770733791", + "alarmDate": "1769980349883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538153", + "createdBy": null, + "createdTime": "2026-02-02 05:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:48", + "echoMap": {}, + "alarmNo": "1770733792", + "alarmDate": "1769980361937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538255", + "createdBy": null, + "createdTime": "2026-02-02 05:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:48", + "echoMap": {}, + "alarmNo": "1770733793", + "alarmDate": "1769980366756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538540", + "createdBy": null, + "createdTime": "2026-02-02 05:13:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:13:07", + "echoMap": {}, + "alarmNo": "1770733794", + "alarmDate": "1769980381087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538746", + "createdBy": null, + "createdTime": "2026-02-02 05:13:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:45", + "echoMap": {}, + "alarmNo": "1770733795", + "alarmDate": "1769980391924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122795862472747", + "createdBy": null, + "createdTime": "2026-02-02 05:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:23:01", + "echoMap": {}, + "alarmNo": "1770733796", + "alarmDate": "1769980944765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122795862473307", + "createdBy": null, + "createdTime": "2026-02-02 05:22:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:51", + "echoMap": {}, + "alarmNo": "1770733797", + "alarmDate": "1769980969595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122804452407309", + "createdBy": null, + "createdTime": "2026-02-02 05:23:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:05", + "echoMap": {}, + "alarmNo": "1770733798", + "alarmDate": "1769980984198", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122804452407548", + "createdBy": null, + "createdTime": "2026-02-02 05:23:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:41", + "echoMap": {}, + "alarmNo": "1770733799", + "alarmDate": "1769980994484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122804452407900", + "createdBy": null, + "createdTime": "2026-02-02 05:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:02", + "echoMap": {}, + "alarmNo": "1770733800", + "alarmDate": "1769981544275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342026", + "createdBy": null, + "createdTime": "2026-02-02 05:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:46", + "echoMap": {}, + "alarmNo": "1770733801", + "alarmDate": "1769981564797", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342409", + "createdBy": null, + "createdTime": "2026-02-02 05:33:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:02", + "echoMap": {}, + "alarmNo": "1770733802", + "alarmDate": "1769981581065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342428", + "createdBy": null, + "createdTime": "2026-02-02 05:33:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:03", + "echoMap": {}, + "alarmNo": "1770733803", + "alarmDate": "1769981581627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342431", + "createdBy": null, + "createdTime": "2026-02-02 05:33:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:32", + "echoMap": {}, + "alarmNo": "1770733804", + "alarmDate": "1769981581764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342512", + "createdBy": null, + "createdTime": "2026-02-02 05:33:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:06", + "echoMap": {}, + "alarmNo": "1770733805", + "alarmDate": "1769981585031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632276577", + "createdBy": null, + "createdTime": "2026-02-02 05:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:23", + "echoMap": {}, + "alarmNo": "1770733806", + "alarmDate": "1769981602342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632276743", + "createdBy": null, + "createdTime": "2026-02-02 05:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:34", + "echoMap": {}, + "alarmNo": "1770733807", + "alarmDate": "1769982144524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632276948", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:35", + "echoMap": {}, + "alarmNo": "1770733808", + "alarmDate": "1769982153549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632277347", + "createdBy": null, + "createdTime": "2026-02-02 05:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:15", + "echoMap": {}, + "alarmNo": "1770733809", + "alarmDate": "1769982170714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122830222211743", + "createdBy": null, + "createdTime": "2026-02-02 05:43:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:23", + "echoMap": {}, + "alarmNo": "1770733810", + "alarmDate": "1769982202137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122838812145683", + "createdBy": null, + "createdTime": "2026-02-02 05:52:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:31", + "echoMap": {}, + "alarmNo": "1770733811", + "alarmDate": "1769982750267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122838812146166", + "createdBy": null, + "createdTime": "2026-02-02 05:52:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:53", + "echoMap": {}, + "alarmNo": "1770733812", + "alarmDate": "1769982771987", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402080363", + "createdBy": null, + "createdTime": "2026-02-02 05:53:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:18", + "echoMap": {}, + "alarmNo": "1770733813", + "alarmDate": "1769982797386", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402080638", + "createdBy": null, + "createdTime": "2026-02-02 06:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:27", + "echoMap": {}, + "alarmNo": "1770733814", + "alarmDate": "1769983345537", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402081046", + "createdBy": null, + "createdTime": "2026-02-02 06:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:43", + "echoMap": {}, + "alarmNo": "1770733815", + "alarmDate": "1769983362508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402081251", + "createdBy": null, + "createdTime": "2026-02-02 06:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:52", + "echoMap": {}, + "alarmNo": "1770733816", + "alarmDate": "1769983370935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122851697047607", + "createdBy": null, + "createdTime": "2026-02-02 06:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:55", + "echoMap": {}, + "alarmNo": "1770733817", + "alarmDate": "1769983374234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122860286982379", + "createdBy": null, + "createdTime": "2026-02-02 06:03:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:11", + "echoMap": {}, + "alarmNo": "1770733818", + "alarmDate": "1769983390268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122877466851403", + "createdBy": null, + "createdTime": "2026-02-02 06:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:41", + "echoMap": {}, + "alarmNo": "1770733819", + "alarmDate": "1769984555220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122877466851511", + "createdBy": null, + "createdTime": "2026-02-02 06:22:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:41", + "echoMap": {}, + "alarmNo": "1770733820", + "alarmDate": "1769984559730", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786008", + "createdBy": null, + "createdTime": "2026-02-02 06:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:58", + "echoMap": {}, + "alarmNo": "1770733821", + "alarmDate": "1769984577209", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786178", + "createdBy": null, + "createdTime": "2026-02-02 06:23:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:30", + "echoMap": {}, + "alarmNo": "1770733822", + "alarmDate": "1769984585334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786233", + "createdBy": null, + "createdTime": "2026-02-02 06:23:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:07", + "echoMap": {}, + "alarmNo": "1770733823", + "alarmDate": "1769984587734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786354", + "createdBy": null, + "createdTime": "2026-02-02 06:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:31", + "echoMap": {}, + "alarmNo": "1770733824", + "alarmDate": "1769984593209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786796", + "createdBy": null, + "createdTime": "2026-02-02 06:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:29", + "echoMap": {}, + "alarmNo": "1770733825", + "alarmDate": "1769985148319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753218", + "createdBy": null, + "createdTime": "2026-02-02 06:32:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:36", + "echoMap": {}, + "alarmNo": "1770733826", + "alarmDate": "1769985154910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753370", + "createdBy": null, + "createdTime": "2026-02-02 06:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:43", + "echoMap": {}, + "alarmNo": "1770733827", + "alarmDate": "1769985161660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753435", + "createdBy": null, + "createdTime": "2026-02-02 06:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:45", + "echoMap": {}, + "alarmNo": "1770733828", + "alarmDate": "1769985164171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753439", + "createdBy": null, + "createdTime": "2026-02-02 06:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:44", + "echoMap": {}, + "alarmNo": "1770733829", + "alarmDate": "1769985164317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122898941687874", + "createdBy": null, + "createdTime": "2026-02-02 06:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:00", + "echoMap": {}, + "alarmNo": "1770733830", + "alarmDate": "1769985179188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122898941688573", + "createdBy": null, + "createdTime": "2026-02-02 06:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:26", + "echoMap": {}, + "alarmNo": "1770733831", + "alarmDate": "1769985744600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060013", + "deviceName": "[330](10)江体商场出入口1入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122898941688761", + "createdBy": null, + "createdTime": "2026-02-02 06:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:07", + "echoMap": {}, + "alarmNo": "1770733832", + "alarmDate": "1769985753590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122911826590252", + "createdBy": null, + "createdTime": "2026-02-02 06:43:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:24", + "echoMap": {}, + "alarmNo": "1770733833", + "alarmDate": "1769985802500", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122911826590662", + "createdBy": null, + "createdTime": "2026-02-02 06:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:38", + "echoMap": {}, + "alarmNo": "1770733834", + "alarmDate": "1769986356701", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122916121557013", + "createdBy": null, + "createdTime": "2026-02-02 06:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:41", + "echoMap": {}, + "alarmNo": "1770733835", + "alarmDate": "1769986360060", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711491939", + "createdBy": null, + "createdTime": "2026-02-02 06:53:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:17", + "echoMap": {}, + "alarmNo": "1770733836", + "alarmDate": "1769986395579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492017", + "createdBy": null, + "createdTime": "2026-02-02 06:53:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:31", + "echoMap": {}, + "alarmNo": "1770733837", + "alarmDate": "1769986399235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492243", + "createdBy": null, + "createdTime": "2026-02-02 07:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:43", + "echoMap": {}, + "alarmNo": "1770733838", + "alarmDate": "1769986945622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492273", + "createdBy": null, + "createdTime": "2026-02-02 07:02:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:58", + "echoMap": {}, + "alarmNo": "1770733839", + "alarmDate": "1769986946954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492315", + "createdBy": null, + "createdTime": "2026-02-02 07:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:30", + "echoMap": {}, + "alarmNo": "1770733840", + "alarmDate": "1769986948680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492598", + "createdBy": null, + "createdTime": "2026-02-02 07:02:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:42", + "echoMap": {}, + "alarmNo": "1770733841", + "alarmDate": "1769986961182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122929006459176", + "createdBy": null, + "createdTime": "2026-02-02 07:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:02", + "echoMap": {}, + "alarmNo": "1770733842", + "alarmDate": "1769986976141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122929006459221", + "createdBy": null, + "createdTime": "2026-02-02 07:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:59", + "echoMap": {}, + "alarmNo": "1770733843", + "alarmDate": "1769986978153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393482", + "createdBy": null, + "createdTime": "2026-02-02 07:03:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:13", + "echoMap": {}, + "alarmNo": "1770733844", + "alarmDate": "1769986987374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393737", + "createdBy": null, + "createdTime": "2026-02-02 07:03:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:56", + "echoMap": {}, + "alarmNo": "1770733845", + "alarmDate": "1769986999740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393747", + "createdBy": null, + "createdTime": "2026-02-02 07:03:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:56", + "echoMap": {}, + "alarmNo": "1770733846", + "alarmDate": "1769987000101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393954", + "createdBy": null, + "createdTime": "2026-02-02 07:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:44", + "echoMap": {}, + "alarmNo": "1770733847", + "alarmDate": "1769987544580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122941891360821", + "createdBy": null, + "createdTime": "2026-02-02 07:12:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:58", + "echoMap": {}, + "alarmNo": "1770733848", + "alarmDate": "1769987571500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060094", + "deviceName": "[712](10)江体上行存车线2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122941891360959", + "createdBy": null, + "createdTime": "2026-02-02 07:12:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:58", + "echoMap": {}, + "alarmNo": "1770733849", + "alarmDate": "1769987577624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060070", + "deviceName": "[107](10)江体下行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122941891361035", + "createdBy": null, + "createdTime": "2026-02-02 07:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:14", + "echoMap": {}, + "alarmNo": "1770733850", + "alarmDate": "1769987581557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122946186328072", + "createdBy": null, + "createdTime": "2026-02-02 07:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:26", + "echoMap": {}, + "alarmNo": "1770733851", + "alarmDate": "1769987588302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295485", + "createdBy": null, + "createdTime": "2026-02-02 07:13:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:50", + "echoMap": {}, + "alarmNo": "1770733852", + "alarmDate": "1769987596389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295492", + "createdBy": null, + "createdTime": "2026-02-02 07:13:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:18", + "echoMap": {}, + "alarmNo": "1770733853", + "alarmDate": "1769987596574", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295557", + "createdBy": null, + "createdTime": "2026-02-02 07:13:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:20", + "echoMap": {}, + "alarmNo": "1770733854", + "alarmDate": "1769987599474", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295784", + "createdBy": null, + "createdTime": "2026-02-02 07:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:26", + "echoMap": {}, + "alarmNo": "1770733855", + "alarmDate": "1769988144754", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295890", + "createdBy": null, + "createdTime": "2026-02-02 07:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:38", + "echoMap": {}, + "alarmNo": "1770733856", + "alarmDate": "1769988150402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481296171", + "createdBy": null, + "createdTime": "2026-02-02 07:22:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:15", + "echoMap": {}, + "alarmNo": "1770733857", + "alarmDate": "1769988165175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481296381", + "createdBy": null, + "createdTime": "2026-02-02 07:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:20", + "echoMap": {}, + "alarmNo": "1770733858", + "alarmDate": "1769988175858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122954776262666", + "createdBy": null, + "createdTime": "2026-02-02 07:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:02", + "echoMap": {}, + "alarmNo": "1770733859", + "alarmDate": "1769988176400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122954776262829", + "createdBy": null, + "createdTime": "2026-02-02 07:23:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:04", + "echoMap": {}, + "alarmNo": "1770733860", + "alarmDate": "1769988183933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060118", + "deviceName": "[716](10)江体15#道岔", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122954776262987", + "createdBy": null, + "createdTime": "2026-02-02 07:23:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:12", + "echoMap": {}, + "alarmNo": "1770733861", + "alarmDate": "1769988191371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197291", + "createdBy": null, + "createdTime": "2026-02-02 07:23:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:14", + "echoMap": {}, + "alarmNo": "1770733862", + "alarmDate": "1769988196753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197404", + "createdBy": null, + "createdTime": "2026-02-02 07:23:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:23", + "echoMap": {}, + "alarmNo": "1770733863", + "alarmDate": "1769988202059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197595", + "createdBy": null, + "createdTime": "2026-02-02 07:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:28", + "echoMap": {}, + "alarmNo": "1770733864", + "alarmDate": "1769988746662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197709", + "createdBy": null, + "createdTime": "2026-02-02 07:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:44", + "echoMap": {}, + "alarmNo": "1770733865", + "alarmDate": "1769988752058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197758", + "createdBy": null, + "createdTime": "2026-02-02 07:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:35", + "echoMap": {}, + "alarmNo": "1770733866", + "alarmDate": "1769988754227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198063", + "createdBy": null, + "createdTime": "2026-02-02 07:32:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:56", + "echoMap": {}, + "alarmNo": "1770733867", + "alarmDate": "1769988769621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198084", + "createdBy": null, + "createdTime": "2026-02-02 07:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:45", + "echoMap": {}, + "alarmNo": "1770733868", + "alarmDate": "1769988770523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198098", + "createdBy": null, + "createdTime": "2026-02-02 07:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:10", + "echoMap": {}, + "alarmNo": "1770733869", + "alarmDate": "1769988771214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198162", + "createdBy": null, + "createdTime": "2026-02-02 07:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:00", + "echoMap": {}, + "alarmNo": "1770733870", + "alarmDate": "1769988774097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122967661164625", + "createdBy": null, + "createdTime": "2026-02-02 07:33:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:04", + "echoMap": {}, + "alarmNo": "1770733871", + "alarmDate": "1769988783026", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122967661164670", + "createdBy": null, + "createdTime": "2026-02-02 07:33:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:40", + "echoMap": {}, + "alarmNo": "1770733872", + "alarmDate": "1769988785033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122967661164861", + "createdBy": null, + "createdTime": "2026-02-02 07:33:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:20", + "echoMap": {}, + "alarmNo": "1770733873", + "alarmDate": "1769988794065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099304", + "createdBy": null, + "createdTime": "2026-02-02 07:42:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:26", + "echoMap": {}, + "alarmNo": "1770733874", + "alarmDate": "1769989344206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099394", + "createdBy": null, + "createdTime": "2026-02-02 07:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:46", + "echoMap": {}, + "alarmNo": "1770733875", + "alarmDate": "1769989349295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099432", + "createdBy": null, + "createdTime": "2026-02-02 07:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:16", + "echoMap": {}, + "alarmNo": "1770733876", + "alarmDate": "1769989350904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099615", + "createdBy": null, + "createdTime": "2026-02-02 07:42:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:45", + "echoMap": {}, + "alarmNo": "1770733877", + "alarmDate": "1769989358800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099864", + "createdBy": null, + "createdTime": "2026-02-02 07:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:50", + "echoMap": {}, + "alarmNo": "1770733878", + "alarmDate": "1769989369637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060074", + "deviceName": "[106](10)江体上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122980546066433", + "createdBy": null, + "createdTime": "2026-02-02 07:43:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:03", + "echoMap": {}, + "alarmNo": "1770733879", + "alarmDate": "1769989382425", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122980546066569", + "createdBy": null, + "createdTime": "2026-02-02 07:43:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:14", + "echoMap": {}, + "alarmNo": "1770733880", + "alarmDate": "1769989388240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122989136001424", + "createdBy": null, + "createdTime": "2026-02-02 07:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:38", + "echoMap": {}, + "alarmNo": "1770733881", + "alarmDate": "1769989956580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122989136001836", + "createdBy": null, + "createdTime": "2026-02-02 07:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:53:21", + "echoMap": {}, + "alarmNo": "1770733882", + "alarmDate": "1769989976999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122989136002017", + "createdBy": null, + "createdTime": "2026-02-02 07:53:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:53:13", + "echoMap": {}, + "alarmNo": "1770733883", + "alarmDate": "1769989985892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122993430968360", + "createdBy": null, + "createdTime": "2026-02-02 07:53:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:53:10", + "echoMap": {}, + "alarmNo": "1770733884", + "alarmDate": "1769989989324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020902913", + "createdBy": null, + "createdTime": "2026-02-02 07:53:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:41", + "echoMap": {}, + "alarmNo": "1770733885", + "alarmDate": "1769990007036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903038", + "createdBy": null, + "createdTime": "2026-02-02 08:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:31", + "echoMap": {}, + "alarmNo": "1770733886", + "alarmDate": "1769990545248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903043", + "createdBy": null, + "createdTime": "2026-02-02 08:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:15", + "echoMap": {}, + "alarmNo": "1770733887", + "alarmDate": "1769990545614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903056", + "createdBy": null, + "createdTime": "2026-02-02 08:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:08", + "echoMap": {}, + "alarmNo": "1770733888", + "alarmDate": "1769990546200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903428", + "createdBy": null, + "createdTime": "2026-02-02 08:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:03", + "echoMap": {}, + "alarmNo": "1770733889", + "alarmDate": "1769990565119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903935", + "createdBy": null, + "createdTime": "2026-02-02 08:03:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:12", + "echoMap": {}, + "alarmNo": "1770733890", + "alarmDate": "1769990590925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870281", + "createdBy": null, + "createdTime": "2026-02-02 08:03:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:52", + "echoMap": {}, + "alarmNo": "1770733891", + "alarmDate": "1769990595141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870375", + "createdBy": null, + "createdTime": "2026-02-02 08:03:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:39", + "echoMap": {}, + "alarmNo": "1770733892", + "alarmDate": "1769990600462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870397", + "createdBy": null, + "createdTime": "2026-02-02 08:03:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:43", + "echoMap": {}, + "alarmNo": "1770733893", + "alarmDate": "1769990601482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870398", + "createdBy": null, + "createdTime": "2026-02-02 08:03:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:21", + "echoMap": {}, + "alarmNo": "1770733894", + "alarmDate": "1769990601496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905804821", + "createdBy": null, + "createdTime": "2026-02-02 08:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:23:24", + "echoMap": {}, + "alarmNo": "1770733895", + "alarmDate": "1769991145721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905804828", + "createdBy": null, + "createdTime": "2026-02-02 08:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:48", + "echoMap": {}, + "alarmNo": "1770733896", + "alarmDate": "1769991145864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905805325", + "createdBy": null, + "createdTime": "2026-02-02 08:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:51", + "echoMap": {}, + "alarmNo": "1770733897", + "alarmDate": "1769991170249", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905805404", + "createdBy": null, + "createdTime": "2026-02-02 08:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:13:06", + "echoMap": {}, + "alarmNo": "1770733898", + "alarmDate": "1769991173886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905805816", + "createdBy": null, + "createdTime": "2026-02-02 08:13:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:13:20", + "echoMap": {}, + "alarmNo": "1770733899", + "alarmDate": "1769991193830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790706867", + "createdBy": null, + "createdTime": "2026-02-02 08:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:44", + "echoMap": {}, + "alarmNo": "1770733900", + "alarmDate": "1769991757086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790706978", + "createdBy": null, + "createdTime": "2026-02-02 08:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:49", + "echoMap": {}, + "alarmNo": "1770733901", + "alarmDate": "1769991762263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790707161", + "createdBy": null, + "createdTime": "2026-02-02 08:22:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:27", + "echoMap": {}, + "alarmNo": "1770733902", + "alarmDate": "1769991771213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790707544", + "createdBy": null, + "createdTime": "2026-02-02 08:23:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:23:12", + "echoMap": {}, + "alarmNo": "1770733903", + "alarmDate": "1769991791246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674009", + "createdBy": null, + "createdTime": "2026-02-02 08:23:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:27", + "echoMap": {}, + "alarmNo": "1770733904", + "alarmDate": "1769991801282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674183", + "createdBy": null, + "createdTime": "2026-02-02 08:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:18", + "echoMap": {}, + "alarmNo": "1770733905", + "alarmDate": "1769992345158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674194", + "createdBy": null, + "createdTime": "2026-02-02 08:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:53:05", + "echoMap": {}, + "alarmNo": "1770733906", + "alarmDate": "1769992345712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674215", + "createdBy": null, + "createdTime": "2026-02-02 08:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:33", + "echoMap": {}, + "alarmNo": "1770733907", + "alarmDate": "1769992346575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674231", + "createdBy": null, + "createdTime": "2026-02-02 08:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:29", + "echoMap": {}, + "alarmNo": "1770733908", + "alarmDate": "1769992347423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675608819", + "createdBy": null, + "createdTime": "2026-02-02 08:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1770733909", + "alarmDate": "1769992362205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675608899", + "createdBy": null, + "createdTime": "2026-02-02 08:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:53", + "echoMap": {}, + "alarmNo": "1770733910", + "alarmDate": "1769992365793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609112", + "createdBy": null, + "createdTime": "2026-02-02 08:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:08", + "echoMap": {}, + "alarmNo": "1770733911", + "alarmDate": "1769992375903", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060093", + "deviceName": "[711](10)江体上行存车线1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609127", + "createdBy": null, + "createdTime": "2026-02-02 08:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:39", + "echoMap": {}, + "alarmNo": "1770733912", + "alarmDate": "1769992376522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609175", + "createdBy": null, + "createdTime": "2026-02-02 08:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:05", + "echoMap": {}, + "alarmNo": "1770733913", + "alarmDate": "1769992378591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609568", + "createdBy": null, + "createdTime": "2026-02-02 08:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:17", + "echoMap": {}, + "alarmNo": "1770733914", + "alarmDate": "1769992395882", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560510537", + "createdBy": null, + "createdTime": "2026-02-02 08:42:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:33", + "echoMap": {}, + "alarmNo": "1770733915", + "alarmDate": "1769992952128", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560510702", + "createdBy": null, + "createdTime": "2026-02-02 08:42:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:41", + "echoMap": {}, + "alarmNo": "1770733916", + "alarmDate": "1769992959971", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560511045", + "createdBy": null, + "createdTime": "2026-02-02 08:42:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:03:11", + "echoMap": {}, + "alarmNo": "1770733917", + "alarmDate": "1769992976920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560511227", + "createdBy": null, + "createdTime": "2026-02-02 08:43:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:12", + "echoMap": {}, + "alarmNo": "1770733918", + "alarmDate": "1769992985588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123057855478006", + "createdBy": null, + "createdTime": "2026-02-02 08:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:00", + "echoMap": {}, + "alarmNo": "1770733919", + "alarmDate": "1769993545518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123066445412741", + "createdBy": null, + "createdTime": "2026-02-02 08:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:53:01", + "echoMap": {}, + "alarmNo": "1770733920", + "alarmDate": "1769993574279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123066445413112", + "createdBy": null, + "createdTime": "2026-02-02 08:53:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:53:14", + "echoMap": {}, + "alarmNo": "1770733921", + "alarmDate": "1769993593082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123070740379703", + "createdBy": null, + "createdTime": "2026-02-02 09:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:18", + "echoMap": {}, + "alarmNo": "1770733922", + "alarmDate": "1769994144961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123070740379725", + "createdBy": null, + "createdTime": "2026-02-02 09:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:36", + "echoMap": {}, + "alarmNo": "1770733923", + "alarmDate": "1769994146411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123070740379761", + "createdBy": null, + "createdTime": "2026-02-02 09:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:29", + "echoMap": {}, + "alarmNo": "1770733924", + "alarmDate": "1769994148275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123075035346975", + "createdBy": null, + "createdTime": "2026-02-02 09:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:43", + "echoMap": {}, + "alarmNo": "1770733925", + "alarmDate": "1769994156506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123079330314413", + "createdBy": null, + "createdTime": "2026-02-02 09:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:47", + "echoMap": {}, + "alarmNo": "1770733926", + "alarmDate": "1769994166359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123083625281601", + "createdBy": null, + "createdTime": "2026-02-02 09:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:30", + "echoMap": {}, + "alarmNo": "1770733927", + "alarmDate": "1769994744832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123092215216266", + "createdBy": null, + "createdTime": "2026-02-02 09:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:42", + "echoMap": {}, + "alarmNo": "1770733928", + "alarmDate": "1769994760825", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123092215216875", + "createdBy": null, + "createdTime": "2026-02-02 09:13:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:25", + "echoMap": {}, + "alarmNo": "1770733929", + "alarmDate": "1769994790919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123092215216929", + "createdBy": null, + "createdTime": "2026-02-02 09:13:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:21", + "echoMap": {}, + "alarmNo": "1770733930", + "alarmDate": "1769994793729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118016", + "createdBy": null, + "createdTime": "2026-02-02 09:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:44", + "echoMap": {}, + "alarmNo": "1770733931", + "alarmDate": "1769995358173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118270", + "createdBy": null, + "createdTime": "2026-02-02 09:22:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:59", + "echoMap": {}, + "alarmNo": "1770733932", + "alarmDate": "1769995372311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118461", + "createdBy": null, + "createdTime": "2026-02-02 09:23:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:15", + "echoMap": {}, + "alarmNo": "1770733933", + "alarmDate": "1769995381250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118698", + "createdBy": null, + "createdTime": "2026-02-02 09:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:14", + "echoMap": {}, + "alarmNo": "1770733934", + "alarmDate": "1769995392983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100119022", + "createdBy": null, + "createdTime": "2026-02-02 09:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:37", + "echoMap": {}, + "alarmNo": "1770733935", + "alarmDate": "1769995945321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123109395085331", + "createdBy": null, + "createdTime": "2026-02-02 09:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:28", + "echoMap": {}, + "alarmNo": "1770733936", + "alarmDate": "1769995947247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123113690052614", + "createdBy": null, + "createdTime": "2026-02-02 09:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:44", + "echoMap": {}, + "alarmNo": "1770733937", + "alarmDate": "1769995956608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020170", + "createdBy": null, + "createdTime": "2026-02-02 09:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:54", + "echoMap": {}, + "alarmNo": "1770733938", + "alarmDate": "1769995973323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020206", + "createdBy": null, + "createdTime": "2026-02-02 09:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:02", + "echoMap": {}, + "alarmNo": "1770733939", + "alarmDate": "1769995975257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020211", + "createdBy": null, + "createdTime": "2026-02-02 09:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:00", + "echoMap": {}, + "alarmNo": "1770733940", + "alarmDate": "1769995975462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020238", + "createdBy": null, + "createdTime": "2026-02-02 09:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:17", + "echoMap": {}, + "alarmNo": "1770733941", + "alarmDate": "1769995976738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020276", + "createdBy": null, + "createdTime": "2026-02-02 09:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:06", + "echoMap": {}, + "alarmNo": "1770733942", + "alarmDate": "1769995978547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020364", + "createdBy": null, + "createdTime": "2026-02-02 09:33:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:10", + "echoMap": {}, + "alarmNo": "1770733943", + "alarmDate": "1769995982657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020565", + "createdBy": null, + "createdTime": "2026-02-02 09:33:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:31", + "echoMap": {}, + "alarmNo": "1770733944", + "alarmDate": "1769995992497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020903", + "createdBy": null, + "createdTime": "2026-02-02 09:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:43", + "echoMap": {}, + "alarmNo": "1770733945", + "alarmDate": "1769996545122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123122279987438", + "createdBy": null, + "createdTime": "2026-02-02 09:42:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:40", + "echoMap": {}, + "alarmNo": "1770733946", + "alarmDate": "1769996558654", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123126574954501", + "createdBy": null, + "createdTime": "2026-02-02 09:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:01", + "echoMap": {}, + "alarmNo": "1770733947", + "alarmDate": "1769996562493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123126574954529", + "createdBy": null, + "createdTime": "2026-02-02 09:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:56", + "echoMap": {}, + "alarmNo": "1770733948", + "alarmDate": "1769996563934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869921890", + "createdBy": null, + "createdTime": "2026-02-02 09:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:57", + "echoMap": {}, + "alarmNo": "1770733949", + "alarmDate": "1769996570840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869921950", + "createdBy": null, + "createdTime": "2026-02-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:14", + "echoMap": {}, + "alarmNo": "1770733950", + "alarmDate": "1769996573702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869922308", + "createdBy": null, + "createdTime": "2026-02-02 09:43:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:12", + "echoMap": {}, + "alarmNo": "1770733951", + "alarmDate": "1769996592626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869922450", + "createdBy": null, + "createdTime": "2026-02-02 09:43:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:50", + "echoMap": {}, + "alarmNo": "1770733952", + "alarmDate": "1769996600045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869922647", + "createdBy": null, + "createdTime": "2026-02-02 09:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:42", + "echoMap": {}, + "alarmNo": "1770733953", + "alarmDate": "1769997145164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123135164889090", + "createdBy": null, + "createdTime": "2026-02-02 09:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:43", + "echoMap": {}, + "alarmNo": "1770733954", + "alarmDate": "1769997154593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123135164889142", + "createdBy": null, + "createdTime": "2026-02-02 09:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:56", + "echoMap": {}, + "alarmNo": "1770733955", + "alarmDate": "1769997157207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754823952", + "createdBy": null, + "createdTime": "2026-02-02 09:53:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:14", + "echoMap": {}, + "alarmNo": "1770733956", + "alarmDate": "1769997183320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824134", + "createdBy": null, + "createdTime": "2026-02-02 09:53:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:13", + "echoMap": {}, + "alarmNo": "1770733957", + "alarmDate": "1769997191904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824202", + "createdBy": null, + "createdTime": "2026-02-02 09:53:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:21", + "echoMap": {}, + "alarmNo": "1770733958", + "alarmDate": "1769997195230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824226", + "createdBy": null, + "createdTime": "2026-02-02 09:53:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:22", + "echoMap": {}, + "alarmNo": "1770733959", + "alarmDate": "1769997196262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824500", + "createdBy": null, + "createdTime": "2026-02-02 10:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:26", + "echoMap": {}, + "alarmNo": "1770733960", + "alarmDate": "1769997744802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824518", + "createdBy": null, + "createdTime": "2026-02-02 10:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:17", + "echoMap": {}, + "alarmNo": "1770733961", + "alarmDate": "1769997746116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824520", + "createdBy": null, + "createdTime": "2026-02-02 10:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:27", + "echoMap": {}, + "alarmNo": "1770733962", + "alarmDate": "1769997746173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824588", + "createdBy": null, + "createdTime": "2026-02-02 10:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:03:18", + "echoMap": {}, + "alarmNo": "1770733963", + "alarmDate": "1769997749468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639725732", + "createdBy": null, + "createdTime": "2026-02-02 10:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:57", + "echoMap": {}, + "alarmNo": "1770733964", + "alarmDate": "1769997776324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639726244", + "createdBy": null, + "createdTime": "2026-02-02 10:03:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:37", + "echoMap": {}, + "alarmNo": "1770733965", + "alarmDate": "1769997803347", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639726387", + "createdBy": null, + "createdTime": "2026-02-02 10:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:31", + "echoMap": {}, + "alarmNo": "1770733966", + "alarmDate": "1769998345562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639726471", + "createdBy": null, + "createdTime": "2026-02-02 10:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:24", + "echoMap": {}, + "alarmNo": "1770733967", + "alarmDate": "1769998349595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123160934692974", + "createdBy": null, + "createdTime": "2026-02-02 10:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:23", + "echoMap": {}, + "alarmNo": "1770733968", + "alarmDate": "1769998361003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524627542", + "createdBy": null, + "createdTime": "2026-02-02 10:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:07", + "echoMap": {}, + "alarmNo": "1770733969", + "alarmDate": "1769998373882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524627661", + "createdBy": null, + "createdTime": "2026-02-02 10:12:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:00", + "echoMap": {}, + "alarmNo": "1770733970", + "alarmDate": "1769998378884", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524627731", + "createdBy": null, + "createdTime": "2026-02-02 10:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:08", + "echoMap": {}, + "alarmNo": "1770733971", + "alarmDate": "1769998381712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628010", + "createdBy": null, + "createdTime": "2026-02-02 10:13:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:50", + "echoMap": {}, + "alarmNo": "1770733972", + "alarmDate": "1769998394221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628114", + "createdBy": null, + "createdTime": "2026-02-02 10:13:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:48", + "echoMap": {}, + "alarmNo": "1770733973", + "alarmDate": "1769998398938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628159", + "createdBy": null, + "createdTime": "2026-02-02 10:13:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:47", + "echoMap": {}, + "alarmNo": "1770733974", + "alarmDate": "1769998400727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628405", + "createdBy": null, + "createdTime": "2026-02-02 10:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:59", + "echoMap": {}, + "alarmNo": "1770733975", + "alarmDate": "1769998944802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529739", + "createdBy": null, + "createdTime": "2026-02-02 10:23:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:56", + "echoMap": {}, + "alarmNo": "1770733977", + "alarmDate": "1769998982301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529909", + "createdBy": null, + "createdTime": "2026-02-02 10:23:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:23:24", + "echoMap": {}, + "alarmNo": "1770733978", + "alarmDate": "1769998990890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529963", + "createdBy": null, + "createdTime": "2026-02-02 10:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:39", + "echoMap": {}, + "alarmNo": "1770733979", + "alarmDate": "1769998993283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529977", + "createdBy": null, + "createdTime": "2026-02-02 10:23:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:23:15", + "echoMap": {}, + "alarmNo": "1770733980", + "alarmDate": "1769998993876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409530323", + "createdBy": null, + "createdTime": "2026-02-02 10:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1770733981", + "alarmDate": "1769999545005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409530334", + "createdBy": null, + "createdTime": "2026-02-02 10:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:38", + "echoMap": {}, + "alarmNo": "1770733982", + "alarmDate": "1769999545695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123186704496656", + "createdBy": null, + "createdTime": "2026-02-02 10:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:29", + "echoMap": {}, + "alarmNo": "1770733983", + "alarmDate": "1769999548066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123186704496701", + "createdBy": null, + "createdTime": "2026-02-02 10:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1770733984", + "alarmDate": "1769999550358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060058", + "deviceName": "[309](10)江体1#口扶梯6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431339", + "createdBy": null, + "createdTime": "2026-02-02 10:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:48", + "echoMap": {}, + "alarmNo": "1770733985", + "alarmDate": "1769999562060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431572", + "createdBy": null, + "createdTime": "2026-02-02 10:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:54", + "echoMap": {}, + "alarmNo": "1770733986", + "alarmDate": "1769999573402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431665", + "createdBy": null, + "createdTime": "2026-02-02 10:32:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:05", + "echoMap": {}, + "alarmNo": "1770733987", + "alarmDate": "1769999577594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431687", + "createdBy": null, + "createdTime": "2026-02-02 10:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:12", + "echoMap": {}, + "alarmNo": "1770733988", + "alarmDate": "1769999578512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431702", + "createdBy": null, + "createdTime": "2026-02-02 10:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:42", + "echoMap": {}, + "alarmNo": "1770733989", + "alarmDate": "1769999579219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431896", + "createdBy": null, + "createdTime": "2026-02-02 10:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:21", + "echoMap": {}, + "alarmNo": "1770733990", + "alarmDate": "1769999587566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294432225", + "createdBy": null, + "createdTime": "2026-02-02 10:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:23", + "echoMap": {}, + "alarmNo": "1770733991", + "alarmDate": "1769999602177", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123199589398652", + "createdBy": null, + "createdTime": "2026-02-02 10:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:56", + "echoMap": {}, + "alarmNo": "1770733992", + "alarmDate": "1770000145765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123199589398656", + "createdBy": null, + "createdTime": "2026-02-02 10:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:54", + "echoMap": {}, + "alarmNo": "1770733993", + "alarmDate": "1770000145866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060059", + "deviceName": "[304](10)江体1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123208179333211", + "createdBy": null, + "createdTime": "2026-02-02 10:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:37", + "echoMap": {}, + "alarmNo": "1770733994", + "alarmDate": "1770000156369", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123208179333562", + "createdBy": null, + "createdTime": "2026-02-02 10:42:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:54", + "echoMap": {}, + "alarmNo": "1770733995", + "alarmDate": "1770000173418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123208179333867", + "createdBy": null, + "createdTime": "2026-02-02 10:43:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:20", + "echoMap": {}, + "alarmNo": "1770733996", + "alarmDate": "1770000187765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123216769267717", + "createdBy": null, + "createdTime": "2026-02-02 10:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:38", + "echoMap": {}, + "alarmNo": "1770733997", + "alarmDate": "1770000745675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235080", + "createdBy": null, + "createdTime": "2026-02-02 10:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:50", + "echoMap": {}, + "alarmNo": "1770733998", + "alarmDate": "1770000751863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235258", + "createdBy": null, + "createdTime": "2026-02-02 10:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:47", + "echoMap": {}, + "alarmNo": "1770733999", + "alarmDate": "1770000760443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235299", + "createdBy": null, + "createdTime": "2026-02-02 10:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:48", + "echoMap": {}, + "alarmNo": "1770734000", + "alarmDate": "1770000762298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235502", + "createdBy": null, + "createdTime": "2026-02-02 10:52:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:13", + "echoMap": {}, + "alarmNo": "1770734001", + "alarmDate": "1770000771950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235688", + "createdBy": null, + "createdTime": "2026-02-02 10:53:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:20", + "echoMap": {}, + "alarmNo": "1770734002", + "alarmDate": "1770000781247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235703", + "createdBy": null, + "createdTime": "2026-02-02 10:53:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:20", + "echoMap": {}, + "alarmNo": "1770734003", + "alarmDate": "1770000782010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235784", + "createdBy": null, + "createdTime": "2026-02-02 10:53:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:18", + "echoMap": {}, + "alarmNo": "1770734004", + "alarmDate": "1770000785600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235888", + "createdBy": null, + "createdTime": "2026-02-02 10:53:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:11", + "echoMap": {}, + "alarmNo": "1770734005", + "alarmDate": "1770000789729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123229654169646", + "createdBy": null, + "createdTime": "2026-02-02 11:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:03:09", + "echoMap": {}, + "alarmNo": "1770734006", + "alarmDate": "1770001345096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949136896", + "createdBy": null, + "createdTime": "2026-02-02 11:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:51", + "echoMap": {}, + "alarmNo": "1770734007", + "alarmDate": "1770001345390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949136918", + "createdBy": null, + "createdTime": "2026-02-02 11:02:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:42", + "echoMap": {}, + "alarmNo": "1770734008", + "alarmDate": "1770001346667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137321", + "createdBy": null, + "createdTime": "2026-02-02 11:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:49", + "echoMap": {}, + "alarmNo": "1770734009", + "alarmDate": "1770001368339", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137522", + "createdBy": null, + "createdTime": "2026-02-02 11:02:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:03:00", + "echoMap": {}, + "alarmNo": "1770734010", + "alarmDate": "1770001379406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137532", + "createdBy": null, + "createdTime": "2026-02-02 11:03:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:54", + "echoMap": {}, + "alarmNo": "1770734011", + "alarmDate": "1770001379745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137605", + "createdBy": null, + "createdTime": "2026-02-02 11:03:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:21", + "echoMap": {}, + "alarmNo": "1770734012", + "alarmDate": "1770001383594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137625", + "createdBy": null, + "createdTime": "2026-02-02 11:03:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:22", + "echoMap": {}, + "alarmNo": "1770734013", + "alarmDate": "1770001384352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137660", + "createdBy": null, + "createdTime": "2026-02-02 11:03:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:24", + "echoMap": {}, + "alarmNo": "1770734014", + "alarmDate": "1770001385880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123238244104330", + "createdBy": null, + "createdTime": "2026-02-02 11:03:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:39", + "echoMap": {}, + "alarmNo": "1770734015", + "alarmDate": "1770001403938", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834038814", + "createdBy": null, + "createdTime": "2026-02-02 11:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:39", + "echoMap": {}, + "alarmNo": "1770734016", + "alarmDate": "1770001945286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834039329", + "createdBy": null, + "createdTime": "2026-02-02 11:12:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:23", + "echoMap": {}, + "alarmNo": "1770734017", + "alarmDate": "1770001971424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834039543", + "createdBy": null, + "createdTime": "2026-02-02 11:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:08", + "echoMap": {}, + "alarmNo": "1770734018", + "alarmDate": "1770001981888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834039633", + "createdBy": null, + "createdTime": "2026-02-02 11:13:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:12", + "echoMap": {}, + "alarmNo": "1770734019", + "alarmDate": "1770001986016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123251129006411", + "createdBy": null, + "createdTime": "2026-02-02 11:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:23:17", + "echoMap": {}, + "alarmNo": "1770734020", + "alarmDate": "1770002545705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123251129006420", + "createdBy": null, + "createdTime": "2026-02-02 11:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:38", + "echoMap": {}, + "alarmNo": "1770734021", + "alarmDate": "1770002546154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123259718940887", + "createdBy": null, + "createdTime": "2026-02-02 11:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:49", + "echoMap": {}, + "alarmNo": "1770734022", + "alarmDate": "1770002563029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123259718941275", + "createdBy": null, + "createdTime": "2026-02-02 11:23:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:31", + "echoMap": {}, + "alarmNo": "1770734023", + "alarmDate": "1770002582569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123259718941395", + "createdBy": null, + "createdTime": "2026-02-02 11:23:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:10", + "echoMap": {}, + "alarmNo": "1770734024", + "alarmDate": "1770002588562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123264013908112", + "createdBy": null, + "createdTime": "2026-02-02 11:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:42", + "echoMap": {}, + "alarmNo": "1770734025", + "alarmDate": "1770003145305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123264013908120", + "createdBy": null, + "createdTime": "2026-02-02 11:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:59", + "echoMap": {}, + "alarmNo": "1770734026", + "alarmDate": "1770003145801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123272603843024", + "createdBy": null, + "createdTime": "2026-02-02 11:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:58", + "echoMap": {}, + "alarmNo": "1770734027", + "alarmDate": "1770003177275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123272603843152", + "createdBy": null, + "createdTime": "2026-02-02 11:33:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:33:05", + "echoMap": {}, + "alarmNo": "1770734028", + "alarmDate": "1770003183462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123272603843215", + "createdBy": null, + "createdTime": "2026-02-02 11:33:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:33:19", + "echoMap": {}, + "alarmNo": "1770734029", + "alarmDate": "1770003186321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744529", + "createdBy": null, + "createdTime": "2026-02-02 11:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:44", + "echoMap": {}, + "alarmNo": "1770734030", + "alarmDate": "1770003763017", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744542", + "createdBy": null, + "createdTime": "2026-02-02 11:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:49", + "echoMap": {}, + "alarmNo": "1770734031", + "alarmDate": "1770003763420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744581", + "createdBy": null, + "createdTime": "2026-02-02 11:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:48", + "echoMap": {}, + "alarmNo": "1770734032", + "alarmDate": "1770003765297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744611", + "createdBy": null, + "createdTime": "2026-02-02 11:42:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:53", + "echoMap": {}, + "alarmNo": "1770734033", + "alarmDate": "1770003766879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744710", + "createdBy": null, + "createdTime": "2026-02-02 11:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:05", + "echoMap": {}, + "alarmNo": "1770734034", + "alarmDate": "1770003771385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745096", + "createdBy": null, + "createdTime": "2026-02-02 11:43:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:23", + "echoMap": {}, + "alarmNo": "1770734035", + "alarmDate": "1770003791155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745106", + "createdBy": null, + "createdTime": "2026-02-02 11:43:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:28", + "echoMap": {}, + "alarmNo": "1770734036", + "alarmDate": "1770003791502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745136", + "createdBy": null, + "createdTime": "2026-02-02 11:43:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:19", + "echoMap": {}, + "alarmNo": "1770734037", + "alarmDate": "1770003792874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745157", + "createdBy": null, + "createdTime": "2026-02-02 11:43:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:20", + "echoMap": {}, + "alarmNo": "1770734038", + "alarmDate": "1770003793565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123289783711775", + "createdBy": null, + "createdTime": "2026-02-02 11:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:27", + "echoMap": {}, + "alarmNo": "1770734039", + "alarmDate": "1770004344594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123289783711782", + "createdBy": null, + "createdTime": "2026-02-02 11:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:59", + "echoMap": {}, + "alarmNo": "1770734040", + "alarmDate": "1770004345185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123289783711970", + "createdBy": null, + "createdTime": "2026-02-02 11:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:36", + "echoMap": {}, + "alarmNo": "1770734041", + "alarmDate": "1770004354791", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123294078679088", + "createdBy": null, + "createdTime": "2026-02-02 11:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:45", + "echoMap": {}, + "alarmNo": "1770734042", + "alarmDate": "1770004358641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123294078679095", + "createdBy": null, + "createdTime": "2026-02-02 11:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:01", + "echoMap": {}, + "alarmNo": "1770734043", + "alarmDate": "1770004358876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646636", + "createdBy": null, + "createdTime": "2026-02-02 11:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:00", + "echoMap": {}, + "alarmNo": "1770734044", + "alarmDate": "1770004373952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646694", + "createdBy": null, + "createdTime": "2026-02-02 11:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:15", + "echoMap": {}, + "alarmNo": "1770734045", + "alarmDate": "1770004376774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646891", + "createdBy": null, + "createdTime": "2026-02-02 11:53:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:07", + "echoMap": {}, + "alarmNo": "1770734046", + "alarmDate": "1770004386382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646970", + "createdBy": null, + "createdTime": "2026-02-02 11:53:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:06", + "echoMap": {}, + "alarmNo": "1770734047", + "alarmDate": "1770004390341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373647214", + "createdBy": null, + "createdTime": "2026-02-02 11:53:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:53", + "echoMap": {}, + "alarmNo": "1770734048", + "alarmDate": "1770004402054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123302668613637", + "createdBy": null, + "createdTime": "2026-02-02 12:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:57", + "echoMap": {}, + "alarmNo": "1770734049", + "alarmDate": "1770004944866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123302668613663", + "createdBy": null, + "createdTime": "2026-02-02 12:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:29", + "echoMap": {}, + "alarmNo": "1770734050", + "alarmDate": "1770004946476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548518", + "createdBy": null, + "createdTime": "2026-02-02 12:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:13", + "echoMap": {}, + "alarmNo": "1770734051", + "alarmDate": "1770004973575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548621", + "createdBy": null, + "createdTime": "2026-02-02 12:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:59", + "echoMap": {}, + "alarmNo": "1770734052", + "alarmDate": "1770004978458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548679", + "createdBy": null, + "createdTime": "2026-02-02 12:03:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:45", + "echoMap": {}, + "alarmNo": "1770734053", + "alarmDate": "1770004981086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548681", + "createdBy": null, + "createdTime": "2026-02-02 12:03:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:02", + "echoMap": {}, + "alarmNo": "1770734054", + "alarmDate": "1770004981191", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548848", + "createdBy": null, + "createdTime": "2026-02-02 12:03:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:34", + "echoMap": {}, + "alarmNo": "1770734055", + "alarmDate": "1770004988963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258549091", + "createdBy": null, + "createdTime": "2026-02-02 12:03:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:21", + "echoMap": {}, + "alarmNo": "1770734056", + "alarmDate": "1770005000762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258549150", + "createdBy": null, + "createdTime": "2026-02-02 12:03:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:30", + "echoMap": {}, + "alarmNo": "1770734057", + "alarmDate": "1770005003566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450166", + "createdBy": null, + "createdTime": "2026-02-02 12:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:48", + "echoMap": {}, + "alarmNo": "1770734058", + "alarmDate": "1770005561650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450209", + "createdBy": null, + "createdTime": "2026-02-02 12:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:45", + "echoMap": {}, + "alarmNo": "1770734059", + "alarmDate": "1770005563788", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450512", + "createdBy": null, + "createdTime": "2026-02-02 12:13:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:24", + "echoMap": {}, + "alarmNo": "1770734060", + "alarmDate": "1770005579815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450625", + "createdBy": null, + "createdTime": "2026-02-02 12:13:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:06", + "echoMap": {}, + "alarmNo": "1770734061", + "alarmDate": "1770005585927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450664", + "createdBy": null, + "createdTime": "2026-02-02 12:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:15", + "echoMap": {}, + "alarmNo": "1770734062", + "alarmDate": "1770005587895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143451091", + "createdBy": null, + "createdTime": "2026-02-02 12:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:30", + "echoMap": {}, + "alarmNo": "1770734063", + "alarmDate": "1770006144851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143451110", + "createdBy": null, + "createdTime": "2026-02-02 12:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:32", + "echoMap": {}, + "alarmNo": "1770734064", + "alarmDate": "1770006146071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123337028352437", + "createdBy": null, + "createdTime": "2026-02-02 12:23:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:23:04", + "echoMap": {}, + "alarmNo": "1770734065", + "alarmDate": "1770006183283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123337028352952", + "createdBy": null, + "createdTime": "2026-02-02 12:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:06", + "echoMap": {}, + "alarmNo": "1770734066", + "alarmDate": "1770006745038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123337028352965", + "createdBy": null, + "createdTime": "2026-02-02 12:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:31", + "echoMap": {}, + "alarmNo": "1770734067", + "alarmDate": "1770006745759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123345618286627", + "createdBy": null, + "createdTime": "2026-02-02 12:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:01", + "echoMap": {}, + "alarmNo": "1770734068", + "alarmDate": "1770006762147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913253959", + "createdBy": null, + "createdTime": "2026-02-02 12:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:33:17", + "echoMap": {}, + "alarmNo": "1770734069", + "alarmDate": "1770006766441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913254186", + "createdBy": null, + "createdTime": "2026-02-02 12:32:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:58", + "echoMap": {}, + "alarmNo": "1770734070", + "alarmDate": "1770006777767", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060094", + "deviceName": "[712](10)江体上行存车线2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913254311", + "createdBy": null, + "createdTime": "2026-02-02 12:33:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:33:05", + "echoMap": {}, + "alarmNo": "1770734071", + "alarmDate": "1770006783525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913254698", + "createdBy": null, + "createdTime": "2026-02-02 12:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:36", + "echoMap": {}, + "alarmNo": "1770734072", + "alarmDate": "1770006802074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123354208221305", + "createdBy": null, + "createdTime": "2026-02-02 12:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:52", + "echoMap": {}, + "alarmNo": "1770734073", + "alarmDate": "1770007354200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798155897", + "createdBy": null, + "createdTime": "2026-02-02 12:42:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:49", + "echoMap": {}, + "alarmNo": "1770734074", + "alarmDate": "1770007367613", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798155957", + "createdBy": null, + "createdTime": "2026-02-02 12:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:26", + "echoMap": {}, + "alarmNo": "1770734075", + "alarmDate": "1770007370476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798156013", + "createdBy": null, + "createdTime": "2026-02-02 12:42:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:05", + "echoMap": {}, + "alarmNo": "1770734076", + "alarmDate": "1770007372826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798156411", + "createdBy": null, + "createdTime": "2026-02-02 12:43:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:24", + "echoMap": {}, + "alarmNo": "1770734077", + "alarmDate": "1770007392461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798156602", + "createdBy": null, + "createdTime": "2026-02-02 12:43:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:00", + "echoMap": {}, + "alarmNo": "1770734078", + "alarmDate": "1770007402387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123367093123271", + "createdBy": null, + "createdTime": "2026-02-02 12:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:43", + "echoMap": {}, + "alarmNo": "1770734079", + "alarmDate": "1770007957129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683057805", + "createdBy": null, + "createdTime": "2026-02-02 12:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:50", + "echoMap": {}, + "alarmNo": "1770734080", + "alarmDate": "1770007968765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683057932", + "createdBy": null, + "createdTime": "2026-02-02 12:52:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:02", + "echoMap": {}, + "alarmNo": "1770734081", + "alarmDate": "1770007975240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058130", + "createdBy": null, + "createdTime": "2026-02-02 12:53:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:06", + "echoMap": {}, + "alarmNo": "1770734082", + "alarmDate": "1770007985182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058245", + "createdBy": null, + "createdTime": "2026-02-02 12:53:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:36", + "echoMap": {}, + "alarmNo": "1770734083", + "alarmDate": "1770007991054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058635", + "createdBy": null, + "createdTime": "2026-02-02 13:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:39", + "echoMap": {}, + "alarmNo": "1770734084", + "alarmDate": "1770008545213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058646", + "createdBy": null, + "createdTime": "2026-02-02 13:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:26", + "echoMap": {}, + "alarmNo": "1770734085", + "alarmDate": "1770008545964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567959814", + "createdBy": null, + "createdTime": "2026-02-02 13:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:01", + "echoMap": {}, + "alarmNo": "1770734086", + "alarmDate": "1770008575206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567959866", + "createdBy": null, + "createdTime": "2026-02-02 13:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:11", + "echoMap": {}, + "alarmNo": "1770734087", + "alarmDate": "1770008577576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567960107", + "createdBy": null, + "createdTime": "2026-02-02 13:03:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:10", + "echoMap": {}, + "alarmNo": "1770734088", + "alarmDate": "1770008588573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567960306", + "createdBy": null, + "createdTime": "2026-02-02 13:03:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:06", + "echoMap": {}, + "alarmNo": "1770734089", + "alarmDate": "1770008598302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123392862926850", + "createdBy": null, + "createdTime": "2026-02-02 13:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:00", + "echoMap": {}, + "alarmNo": "1770734090", + "alarmDate": "1770009145063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123392862926990", + "createdBy": null, + "createdTime": "2026-02-02 13:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:33", + "echoMap": {}, + "alarmNo": "1770734091", + "alarmDate": "1770009152210", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123401452861587", + "createdBy": null, + "createdTime": "2026-02-02 13:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:54", + "echoMap": {}, + "alarmNo": "1770734092", + "alarmDate": "1770009168383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123401452861720", + "createdBy": null, + "createdTime": "2026-02-02 13:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:55", + "echoMap": {}, + "alarmNo": "1770734093", + "alarmDate": "1770009174456", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123401452862087", + "createdBy": null, + "createdTime": "2026-02-02 13:13:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:13:18", + "echoMap": {}, + "alarmNo": "1770734094", + "alarmDate": "1770009192512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337763439", + "createdBy": null, + "createdTime": "2026-02-02 13:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:49", + "echoMap": {}, + "alarmNo": "1770734095", + "alarmDate": "1770009762631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337763899", + "createdBy": null, + "createdTime": "2026-02-02 13:23:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:07", + "echoMap": {}, + "alarmNo": "1770734096", + "alarmDate": "1770009786069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337764014", + "createdBy": null, + "createdTime": "2026-02-02 13:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:43", + "echoMap": {}, + "alarmNo": "1770734097", + "alarmDate": "1770009792517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337764139", + "createdBy": null, + "createdTime": "2026-02-02 13:23:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:19", + "echoMap": {}, + "alarmNo": "1770734098", + "alarmDate": "1770009799355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337764178", + "createdBy": null, + "createdTime": "2026-02-02 13:23:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:12", + "echoMap": {}, + "alarmNo": "1770734099", + "alarmDate": "1770009801203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123418632730735", + "createdBy": null, + "createdTime": "2026-02-02 13:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:37", + "echoMap": {}, + "alarmNo": "1770734100", + "alarmDate": "1770010350864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222665367", + "createdBy": null, + "createdTime": "2026-02-02 13:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:05", + "echoMap": {}, + "alarmNo": "1770734101", + "alarmDate": "1770010365488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222665822", + "createdBy": null, + "createdTime": "2026-02-02 13:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:09", + "echoMap": {}, + "alarmNo": "1770734102", + "alarmDate": "1770010387531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222665924", + "createdBy": null, + "createdTime": "2026-02-02 13:33:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:08", + "echoMap": {}, + "alarmNo": "1770734103", + "alarmDate": "1770010392878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222666042", + "createdBy": null, + "createdTime": "2026-02-02 13:33:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:07", + "echoMap": {}, + "alarmNo": "1770734104", + "alarmDate": "1770010398929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123431517632575", + "createdBy": null, + "createdTime": "2026-02-02 13:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:33", + "echoMap": {}, + "alarmNo": "1770734105", + "alarmDate": "1770010946595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123440107567254", + "createdBy": null, + "createdTime": "2026-02-02 13:42:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:14", + "echoMap": {}, + "alarmNo": "1770734106", + "alarmDate": "1770010965695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123440107567436", + "createdBy": null, + "createdTime": "2026-02-02 13:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:55", + "echoMap": {}, + "alarmNo": "1770734107", + "alarmDate": "1770010974278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123440107567974", + "createdBy": null, + "createdTime": "2026-02-02 13:43:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:21", + "echoMap": {}, + "alarmNo": "1770734108", + "alarmDate": "1770011001362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123444402534449", + "createdBy": null, + "createdTime": "2026-02-02 13:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:11", + "echoMap": {}, + "alarmNo": "1770734109", + "alarmDate": "1770011546897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123444402534571", + "createdBy": null, + "createdTime": "2026-02-02 13:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:39", + "echoMap": {}, + "alarmNo": "1770734110", + "alarmDate": "1770011552398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469115", + "createdBy": null, + "createdTime": "2026-02-02 13:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:49", + "echoMap": {}, + "alarmNo": "1770734111", + "alarmDate": "1770011563257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469343", + "createdBy": null, + "createdTime": "2026-02-02 13:52:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:25", + "echoMap": {}, + "alarmNo": "1770734112", + "alarmDate": "1770011575079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469417", + "createdBy": null, + "createdTime": "2026-02-02 13:52:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:59", + "echoMap": {}, + "alarmNo": "1770734113", + "alarmDate": "1770011578945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469541", + "createdBy": null, + "createdTime": "2026-02-02 13:53:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:53:06", + "echoMap": {}, + "alarmNo": "1770734114", + "alarmDate": "1770011584971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469609", + "createdBy": null, + "createdTime": "2026-02-02 13:53:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:53:10", + "echoMap": {}, + "alarmNo": "1770734115", + "alarmDate": "1770011588519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123457287436323", + "createdBy": null, + "createdTime": "2026-02-02 14:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:31", + "echoMap": {}, + "alarmNo": "1770734116", + "alarmDate": "1770012145411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123457287436341", + "createdBy": null, + "createdTime": "2026-02-02 14:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:26", + "echoMap": {}, + "alarmNo": "1770734117", + "alarmDate": "1770012146346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060069", + "deviceName": "[108](10)江体下行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123465877370976", + "createdBy": null, + "createdTime": "2026-02-02 14:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:14", + "echoMap": {}, + "alarmNo": "1770734118", + "alarmDate": "1770012162455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123465877371518", + "createdBy": null, + "createdTime": "2026-02-02 14:03:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:08", + "echoMap": {}, + "alarmNo": "1770734119", + "alarmDate": "1770012186589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123474467305490", + "createdBy": null, + "createdTime": "2026-02-02 14:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:48", + "echoMap": {}, + "alarmNo": "1770734121", + "alarmDate": "1770012754827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123478762273037", + "createdBy": null, + "createdTime": "2026-02-02 14:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:51", + "echoMap": {}, + "alarmNo": "1770734122", + "alarmDate": "1770012770035", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123478762273154", + "createdBy": null, + "createdTime": "2026-02-02 14:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:57", + "echoMap": {}, + "alarmNo": "1770734123", + "alarmDate": "1770012776090", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123478762273250", + "createdBy": null, + "createdTime": "2026-02-02 14:13:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:19", + "echoMap": {}, + "alarmNo": "1770734124", + "alarmDate": "1770012780681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647174953", + "createdBy": null, + "createdTime": "2026-02-02 14:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:37", + "echoMap": {}, + "alarmNo": "1770734125", + "alarmDate": "1770013375856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647175196", + "createdBy": null, + "createdTime": "2026-02-02 14:23:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:09", + "echoMap": {}, + "alarmNo": "1770734126", + "alarmDate": "1770013387883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647175410", + "createdBy": null, + "createdTime": "2026-02-02 14:23:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:19", + "echoMap": {}, + "alarmNo": "1770734127", + "alarmDate": "1770013398477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647175432", + "createdBy": null, + "createdTime": "2026-02-02 14:23:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:19", + "echoMap": {}, + "alarmNo": "1770734128", + "alarmDate": "1770013399384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123495942141952", + "createdBy": null, + "createdTime": "2026-02-02 14:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:35", + "echoMap": {}, + "alarmNo": "1770734129", + "alarmDate": "1770013946397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532076653", + "createdBy": null, + "createdTime": "2026-02-02 14:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:44", + "echoMap": {}, + "alarmNo": "1770734130", + "alarmDate": "1770013963890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532076746", + "createdBy": null, + "createdTime": "2026-02-02 14:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:15", + "echoMap": {}, + "alarmNo": "1770734131", + "alarmDate": "1770013968553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532076875", + "createdBy": null, + "createdTime": "2026-02-02 14:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:01", + "echoMap": {}, + "alarmNo": "1770734132", + "alarmDate": "1770013975064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532077187", + "createdBy": null, + "createdTime": "2026-02-02 14:33:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:12", + "echoMap": {}, + "alarmNo": "1770734133", + "alarmDate": "1770013990633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532077196", + "createdBy": null, + "createdTime": "2026-02-02 14:33:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:11", + "echoMap": {}, + "alarmNo": "1770734134", + "alarmDate": "1770013991028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532077242", + "createdBy": null, + "createdTime": "2026-02-02 14:33:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:13", + "echoMap": {}, + "alarmNo": "1770734135", + "alarmDate": "1770013993139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [ + { + "id": "723122658423519731", + "createdBy": null, + "createdTime": "2026-02-02 02:48:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:14", + "echoMap": {}, + "alarmNo": "1770733764", + "alarmDate": "1769971687731", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1025040014", + "deviceName": "华为前端交换机13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1025" + }, + { + "id": "723123182409529546", + "createdBy": null, + "createdTime": "2026-02-02 10:22:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:12", + "echoMap": {}, + "alarmNo": "1770733976", + "alarmDate": "1769998972207", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1025040014", + "deviceName": "华为前端交换机13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1025" + }, + { + "id": "723123470172338235", + "createdBy": null, + "createdTime": "2026-02-02 14:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:19", + "echoMap": {}, + "alarmNo": "1770734120", + "alarmDate": "1770012671271", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1025040016", + "deviceName": "华为前端交换机15", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1025" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723123504532077242", + "createdBy": null, + "createdTime": "2026-02-02 14:33:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:13", + "echoMap": {}, + "alarmNo": "1770734135", + "alarmDate": "1770013993139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532077196", + "createdBy": null, + "createdTime": "2026-02-02 14:33:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:11", + "echoMap": {}, + "alarmNo": "1770734134", + "alarmDate": "1770013991028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532077187", + "createdBy": null, + "createdTime": "2026-02-02 14:33:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:12", + "echoMap": {}, + "alarmNo": "1770734133", + "alarmDate": "1770013990633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532076875", + "createdBy": null, + "createdTime": "2026-02-02 14:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:01", + "echoMap": {}, + "alarmNo": "1770734132", + "alarmDate": "1770013975064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532076746", + "createdBy": null, + "createdTime": "2026-02-02 14:32:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:15", + "echoMap": {}, + "alarmNo": "1770734131", + "alarmDate": "1770013968553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123504532076653", + "createdBy": null, + "createdTime": "2026-02-02 14:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:44", + "echoMap": {}, + "alarmNo": "1770734130", + "alarmDate": "1770013963890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123495942141952", + "createdBy": null, + "createdTime": "2026-02-02 14:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:35", + "echoMap": {}, + "alarmNo": "1770734129", + "alarmDate": "1770013946397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647175432", + "createdBy": null, + "createdTime": "2026-02-02 14:23:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:19", + "echoMap": {}, + "alarmNo": "1770734128", + "alarmDate": "1770013399384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647175410", + "createdBy": null, + "createdTime": "2026-02-02 14:23:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:19", + "echoMap": {}, + "alarmNo": "1770734127", + "alarmDate": "1770013398477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647175196", + "createdBy": null, + "createdTime": "2026-02-02 14:23:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:09", + "echoMap": {}, + "alarmNo": "1770734126", + "alarmDate": "1770013387883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123491647174953", + "createdBy": null, + "createdTime": "2026-02-02 14:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:37", + "echoMap": {}, + "alarmNo": "1770734125", + "alarmDate": "1770013375856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123478762273250", + "createdBy": null, + "createdTime": "2026-02-02 14:13:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:19", + "echoMap": {}, + "alarmNo": "1770734124", + "alarmDate": "1770012780681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123478762273154", + "createdBy": null, + "createdTime": "2026-02-02 14:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:57", + "echoMap": {}, + "alarmNo": "1770734123", + "alarmDate": "1770012776090", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123478762273037", + "createdBy": null, + "createdTime": "2026-02-02 14:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:51", + "echoMap": {}, + "alarmNo": "1770734122", + "alarmDate": "1770012770035", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123474467305490", + "createdBy": null, + "createdTime": "2026-02-02 14:12:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:12:48", + "echoMap": {}, + "alarmNo": "1770734121", + "alarmDate": "1770012754827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123470172338235", + "createdBy": null, + "createdTime": "2026-02-02 14:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:19", + "echoMap": {}, + "alarmNo": "1770734120", + "alarmDate": "1770012671271", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1025040016", + "deviceName": "华为前端交换机15", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1025" + }, + { + "id": "723123465877371518", + "createdBy": null, + "createdTime": "2026-02-02 14:03:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:08", + "echoMap": {}, + "alarmNo": "1770734119", + "alarmDate": "1770012186589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123465877370976", + "createdBy": null, + "createdTime": "2026-02-02 14:02:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:14", + "echoMap": {}, + "alarmNo": "1770734118", + "alarmDate": "1770012162455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123457287436341", + "createdBy": null, + "createdTime": "2026-02-02 14:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:26", + "echoMap": {}, + "alarmNo": "1770734117", + "alarmDate": "1770012146346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060069", + "deviceName": "[108](10)江体下行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123457287436323", + "createdBy": null, + "createdTime": "2026-02-02 14:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:31", + "echoMap": {}, + "alarmNo": "1770734116", + "alarmDate": "1770012145411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469609", + "createdBy": null, + "createdTime": "2026-02-02 13:53:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:53:10", + "echoMap": {}, + "alarmNo": "1770734115", + "alarmDate": "1770011588519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469541", + "createdBy": null, + "createdTime": "2026-02-02 13:53:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:53:06", + "echoMap": {}, + "alarmNo": "1770734114", + "alarmDate": "1770011584971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469417", + "createdBy": null, + "createdTime": "2026-02-02 13:52:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:59", + "echoMap": {}, + "alarmNo": "1770734113", + "alarmDate": "1770011578945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469343", + "createdBy": null, + "createdTime": "2026-02-02 13:52:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:32:25", + "echoMap": {}, + "alarmNo": "1770734112", + "alarmDate": "1770011575079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123452992469115", + "createdBy": null, + "createdTime": "2026-02-02 13:52:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:49", + "echoMap": {}, + "alarmNo": "1770734111", + "alarmDate": "1770011563257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123444402534571", + "createdBy": null, + "createdTime": "2026-02-02 13:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:39", + "echoMap": {}, + "alarmNo": "1770734110", + "alarmDate": "1770011552398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123444402534449", + "createdBy": null, + "createdTime": "2026-02-02 13:52:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:11", + "echoMap": {}, + "alarmNo": "1770734109", + "alarmDate": "1770011546897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123440107567974", + "createdBy": null, + "createdTime": "2026-02-02 13:43:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:21", + "echoMap": {}, + "alarmNo": "1770734108", + "alarmDate": "1770011001362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123440107567436", + "createdBy": null, + "createdTime": "2026-02-02 13:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:55", + "echoMap": {}, + "alarmNo": "1770734107", + "alarmDate": "1770010974278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123440107567254", + "createdBy": null, + "createdTime": "2026-02-02 13:42:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:14", + "echoMap": {}, + "alarmNo": "1770734106", + "alarmDate": "1770010965695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123431517632575", + "createdBy": null, + "createdTime": "2026-02-02 13:42:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:33", + "echoMap": {}, + "alarmNo": "1770734105", + "alarmDate": "1770010946595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222666042", + "createdBy": null, + "createdTime": "2026-02-02 13:33:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:07", + "echoMap": {}, + "alarmNo": "1770734104", + "alarmDate": "1770010398929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222665924", + "createdBy": null, + "createdTime": "2026-02-02 13:33:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:08", + "echoMap": {}, + "alarmNo": "1770734103", + "alarmDate": "1770010392878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222665822", + "createdBy": null, + "createdTime": "2026-02-02 13:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:09", + "echoMap": {}, + "alarmNo": "1770734102", + "alarmDate": "1770010387531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123427222665367", + "createdBy": null, + "createdTime": "2026-02-02 13:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:05", + "echoMap": {}, + "alarmNo": "1770734101", + "alarmDate": "1770010365488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123418632730735", + "createdBy": null, + "createdTime": "2026-02-02 13:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:37", + "echoMap": {}, + "alarmNo": "1770734100", + "alarmDate": "1770010350864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337764178", + "createdBy": null, + "createdTime": "2026-02-02 13:23:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:12", + "echoMap": {}, + "alarmNo": "1770734099", + "alarmDate": "1770009801203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337764139", + "createdBy": null, + "createdTime": "2026-02-02 13:23:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:19", + "echoMap": {}, + "alarmNo": "1770734098", + "alarmDate": "1770009799355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337764014", + "createdBy": null, + "createdTime": "2026-02-02 13:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:43", + "echoMap": {}, + "alarmNo": "1770734097", + "alarmDate": "1770009792517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337763899", + "createdBy": null, + "createdTime": "2026-02-02 13:23:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:07", + "echoMap": {}, + "alarmNo": "1770734096", + "alarmDate": "1770009786069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123414337763439", + "createdBy": null, + "createdTime": "2026-02-02 13:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:49", + "echoMap": {}, + "alarmNo": "1770734095", + "alarmDate": "1770009762631", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123401452862087", + "createdBy": null, + "createdTime": "2026-02-02 13:13:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:13:18", + "echoMap": {}, + "alarmNo": "1770734094", + "alarmDate": "1770009192512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123401452861720", + "createdBy": null, + "createdTime": "2026-02-02 13:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:55", + "echoMap": {}, + "alarmNo": "1770734093", + "alarmDate": "1770009174456", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123401452861587", + "createdBy": null, + "createdTime": "2026-02-02 13:12:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:54", + "echoMap": {}, + "alarmNo": "1770734092", + "alarmDate": "1770009168383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123392862926990", + "createdBy": null, + "createdTime": "2026-02-02 13:12:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:33", + "echoMap": {}, + "alarmNo": "1770734091", + "alarmDate": "1770009152210", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123392862926850", + "createdBy": null, + "createdTime": "2026-02-02 13:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:00", + "echoMap": {}, + "alarmNo": "1770734090", + "alarmDate": "1770009145063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567960306", + "createdBy": null, + "createdTime": "2026-02-02 13:03:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:06", + "echoMap": {}, + "alarmNo": "1770734089", + "alarmDate": "1770008598302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567960107", + "createdBy": null, + "createdTime": "2026-02-02 13:03:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:10", + "echoMap": {}, + "alarmNo": "1770734088", + "alarmDate": "1770008588573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567959866", + "createdBy": null, + "createdTime": "2026-02-02 13:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:11", + "echoMap": {}, + "alarmNo": "1770734087", + "alarmDate": "1770008577576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123388567959814", + "createdBy": null, + "createdTime": "2026-02-02 13:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:01", + "echoMap": {}, + "alarmNo": "1770734086", + "alarmDate": "1770008575206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058646", + "createdBy": null, + "createdTime": "2026-02-02 13:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:26", + "echoMap": {}, + "alarmNo": "1770734085", + "alarmDate": "1770008545964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058635", + "createdBy": null, + "createdTime": "2026-02-02 13:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:39", + "echoMap": {}, + "alarmNo": "1770734084", + "alarmDate": "1770008545213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058245", + "createdBy": null, + "createdTime": "2026-02-02 12:53:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:36", + "echoMap": {}, + "alarmNo": "1770734083", + "alarmDate": "1770007991054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683058130", + "createdBy": null, + "createdTime": "2026-02-02 12:53:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:06", + "echoMap": {}, + "alarmNo": "1770734082", + "alarmDate": "1770007985182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683057932", + "createdBy": null, + "createdTime": "2026-02-02 12:52:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:53:02", + "echoMap": {}, + "alarmNo": "1770734081", + "alarmDate": "1770007975240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123375683057805", + "createdBy": null, + "createdTime": "2026-02-02 12:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:50", + "echoMap": {}, + "alarmNo": "1770734080", + "alarmDate": "1770007968765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123367093123271", + "createdBy": null, + "createdTime": "2026-02-02 12:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:43", + "echoMap": {}, + "alarmNo": "1770734079", + "alarmDate": "1770007957129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798156602", + "createdBy": null, + "createdTime": "2026-02-02 12:43:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:00", + "echoMap": {}, + "alarmNo": "1770734078", + "alarmDate": "1770007402387", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798156411", + "createdBy": null, + "createdTime": "2026-02-02 12:43:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:24", + "echoMap": {}, + "alarmNo": "1770734077", + "alarmDate": "1770007392461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798156013", + "createdBy": null, + "createdTime": "2026-02-02 12:42:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:05", + "echoMap": {}, + "alarmNo": "1770734076", + "alarmDate": "1770007372826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798155957", + "createdBy": null, + "createdTime": "2026-02-02 12:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:02:26", + "echoMap": {}, + "alarmNo": "1770734075", + "alarmDate": "1770007370476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123362798155897", + "createdBy": null, + "createdTime": "2026-02-02 12:42:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:49", + "echoMap": {}, + "alarmNo": "1770734074", + "alarmDate": "1770007367613", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123354208221305", + "createdBy": null, + "createdTime": "2026-02-02 12:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:52", + "echoMap": {}, + "alarmNo": "1770734073", + "alarmDate": "1770007354200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913254698", + "createdBy": null, + "createdTime": "2026-02-02 12:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:42:36", + "echoMap": {}, + "alarmNo": "1770734072", + "alarmDate": "1770006802074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913254311", + "createdBy": null, + "createdTime": "2026-02-02 12:33:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:33:05", + "echoMap": {}, + "alarmNo": "1770734071", + "alarmDate": "1770006783525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913254186", + "createdBy": null, + "createdTime": "2026-02-02 12:32:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:58", + "echoMap": {}, + "alarmNo": "1770734070", + "alarmDate": "1770006777767", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060094", + "deviceName": "[712](10)江体上行存车线2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123349913253959", + "createdBy": null, + "createdTime": "2026-02-02 12:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:33:17", + "echoMap": {}, + "alarmNo": "1770734069", + "alarmDate": "1770006766441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123345618286627", + "createdBy": null, + "createdTime": "2026-02-02 12:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:01", + "echoMap": {}, + "alarmNo": "1770734068", + "alarmDate": "1770006762147", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123337028352965", + "createdBy": null, + "createdTime": "2026-02-02 12:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:31", + "echoMap": {}, + "alarmNo": "1770734067", + "alarmDate": "1770006745759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123337028352952", + "createdBy": null, + "createdTime": "2026-02-02 12:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:23:06", + "echoMap": {}, + "alarmNo": "1770734066", + "alarmDate": "1770006745038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123337028352437", + "createdBy": null, + "createdTime": "2026-02-02 12:23:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:23:04", + "echoMap": {}, + "alarmNo": "1770734065", + "alarmDate": "1770006183283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143451110", + "createdBy": null, + "createdTime": "2026-02-02 12:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:22:32", + "echoMap": {}, + "alarmNo": "1770734064", + "alarmDate": "1770006146071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143451091", + "createdBy": null, + "createdTime": "2026-02-02 12:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:30", + "echoMap": {}, + "alarmNo": "1770734063", + "alarmDate": "1770006144851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450664", + "createdBy": null, + "createdTime": "2026-02-02 12:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:15", + "echoMap": {}, + "alarmNo": "1770734062", + "alarmDate": "1770005587895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450625", + "createdBy": null, + "createdTime": "2026-02-02 12:13:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:06", + "echoMap": {}, + "alarmNo": "1770734061", + "alarmDate": "1770005585927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450512", + "createdBy": null, + "createdTime": "2026-02-02 12:13:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:24", + "echoMap": {}, + "alarmNo": "1770734060", + "alarmDate": "1770005579815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450209", + "createdBy": null, + "createdTime": "2026-02-02 12:12:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:45", + "echoMap": {}, + "alarmNo": "1770734059", + "alarmDate": "1770005563788", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123324143450166", + "createdBy": null, + "createdTime": "2026-02-02 12:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:48", + "echoMap": {}, + "alarmNo": "1770734058", + "alarmDate": "1770005561650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258549150", + "createdBy": null, + "createdTime": "2026-02-02 12:03:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:30", + "echoMap": {}, + "alarmNo": "1770734057", + "alarmDate": "1770005003566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258549091", + "createdBy": null, + "createdTime": "2026-02-02 12:03:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:21", + "echoMap": {}, + "alarmNo": "1770734056", + "alarmDate": "1770005000762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548848", + "createdBy": null, + "createdTime": "2026-02-02 12:03:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:34", + "echoMap": {}, + "alarmNo": "1770734055", + "alarmDate": "1770004988963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548681", + "createdBy": null, + "createdTime": "2026-02-02 12:03:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:02", + "echoMap": {}, + "alarmNo": "1770734054", + "alarmDate": "1770004981191", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548679", + "createdBy": null, + "createdTime": "2026-02-02 12:03:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:32:45", + "echoMap": {}, + "alarmNo": "1770734053", + "alarmDate": "1770004981086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548621", + "createdBy": null, + "createdTime": "2026-02-02 12:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:59", + "echoMap": {}, + "alarmNo": "1770734052", + "alarmDate": "1770004978458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123311258548518", + "createdBy": null, + "createdTime": "2026-02-02 12:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:13", + "echoMap": {}, + "alarmNo": "1770734051", + "alarmDate": "1770004973575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123302668613663", + "createdBy": null, + "createdTime": "2026-02-02 12:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:29", + "echoMap": {}, + "alarmNo": "1770734050", + "alarmDate": "1770004946476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123302668613637", + "createdBy": null, + "createdTime": "2026-02-02 12:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:57", + "echoMap": {}, + "alarmNo": "1770734049", + "alarmDate": "1770004944866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373647214", + "createdBy": null, + "createdTime": "2026-02-02 11:53:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:12:53", + "echoMap": {}, + "alarmNo": "1770734048", + "alarmDate": "1770004402054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646970", + "createdBy": null, + "createdTime": "2026-02-02 11:53:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:03:06", + "echoMap": {}, + "alarmNo": "1770734047", + "alarmDate": "1770004390341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646891", + "createdBy": null, + "createdTime": "2026-02-02 11:53:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:07", + "echoMap": {}, + "alarmNo": "1770734046", + "alarmDate": "1770004386382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646694", + "createdBy": null, + "createdTime": "2026-02-02 11:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:15", + "echoMap": {}, + "alarmNo": "1770734045", + "alarmDate": "1770004376774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123298373646636", + "createdBy": null, + "createdTime": "2026-02-02 11:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:00", + "echoMap": {}, + "alarmNo": "1770734044", + "alarmDate": "1770004373952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123294078679095", + "createdBy": null, + "createdTime": "2026-02-02 11:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:01", + "echoMap": {}, + "alarmNo": "1770734043", + "alarmDate": "1770004358876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123294078679088", + "createdBy": null, + "createdTime": "2026-02-02 11:52:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:45", + "echoMap": {}, + "alarmNo": "1770734042", + "alarmDate": "1770004358641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123289783711970", + "createdBy": null, + "createdTime": "2026-02-02 11:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:36", + "echoMap": {}, + "alarmNo": "1770734041", + "alarmDate": "1770004354791", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123289783711782", + "createdBy": null, + "createdTime": "2026-02-02 11:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:59", + "echoMap": {}, + "alarmNo": "1770734040", + "alarmDate": "1770004345185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123289783711775", + "createdBy": null, + "createdTime": "2026-02-02 11:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:27", + "echoMap": {}, + "alarmNo": "1770734039", + "alarmDate": "1770004344594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745157", + "createdBy": null, + "createdTime": "2026-02-02 11:43:14", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:20", + "echoMap": {}, + "alarmNo": "1770734038", + "alarmDate": "1770003793565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745136", + "createdBy": null, + "createdTime": "2026-02-02 11:43:13", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:19", + "echoMap": {}, + "alarmNo": "1770734037", + "alarmDate": "1770003792874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745106", + "createdBy": null, + "createdTime": "2026-02-02 11:43:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:28", + "echoMap": {}, + "alarmNo": "1770734036", + "alarmDate": "1770003791502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488745096", + "createdBy": null, + "createdTime": "2026-02-02 11:43:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:23", + "echoMap": {}, + "alarmNo": "1770734035", + "alarmDate": "1770003791155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744710", + "createdBy": null, + "createdTime": "2026-02-02 11:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:05", + "echoMap": {}, + "alarmNo": "1770734034", + "alarmDate": "1770003771385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744611", + "createdBy": null, + "createdTime": "2026-02-02 11:42:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:53", + "echoMap": {}, + "alarmNo": "1770734033", + "alarmDate": "1770003766879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744581", + "createdBy": null, + "createdTime": "2026-02-02 11:42:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:02:48", + "echoMap": {}, + "alarmNo": "1770734032", + "alarmDate": "1770003765297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744542", + "createdBy": null, + "createdTime": "2026-02-02 11:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:49", + "echoMap": {}, + "alarmNo": "1770734031", + "alarmDate": "1770003763420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123285488744529", + "createdBy": null, + "createdTime": "2026-02-02 11:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:44", + "echoMap": {}, + "alarmNo": "1770734030", + "alarmDate": "1770003763017", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123272603843215", + "createdBy": null, + "createdTime": "2026-02-02 11:33:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:33:19", + "echoMap": {}, + "alarmNo": "1770734029", + "alarmDate": "1770003186321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123272603843152", + "createdBy": null, + "createdTime": "2026-02-02 11:33:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:33:05", + "echoMap": {}, + "alarmNo": "1770734028", + "alarmDate": "1770003183462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123272603843024", + "createdBy": null, + "createdTime": "2026-02-02 11:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:58", + "echoMap": {}, + "alarmNo": "1770734027", + "alarmDate": "1770003177275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123264013908120", + "createdBy": null, + "createdTime": "2026-02-02 11:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:59", + "echoMap": {}, + "alarmNo": "1770734026", + "alarmDate": "1770003145801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123264013908112", + "createdBy": null, + "createdTime": "2026-02-02 11:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:42", + "echoMap": {}, + "alarmNo": "1770734025", + "alarmDate": "1770003145305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123259718941395", + "createdBy": null, + "createdTime": "2026-02-02 11:23:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:10", + "echoMap": {}, + "alarmNo": "1770734024", + "alarmDate": "1770002588562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123259718941275", + "createdBy": null, + "createdTime": "2026-02-02 11:23:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:31", + "echoMap": {}, + "alarmNo": "1770734023", + "alarmDate": "1770002582569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123259718940887", + "createdBy": null, + "createdTime": "2026-02-02 11:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:49", + "echoMap": {}, + "alarmNo": "1770734022", + "alarmDate": "1770002563029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123251129006420", + "createdBy": null, + "createdTime": "2026-02-02 11:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:42:38", + "echoMap": {}, + "alarmNo": "1770734021", + "alarmDate": "1770002546154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123251129006411", + "createdBy": null, + "createdTime": "2026-02-02 11:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:23:17", + "echoMap": {}, + "alarmNo": "1770734020", + "alarmDate": "1770002545705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834039633", + "createdBy": null, + "createdTime": "2026-02-02 11:13:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:12", + "echoMap": {}, + "alarmNo": "1770734019", + "alarmDate": "1770001986016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834039543", + "createdBy": null, + "createdTime": "2026-02-02 11:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:08", + "echoMap": {}, + "alarmNo": "1770734018", + "alarmDate": "1770001981888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834039329", + "createdBy": null, + "createdTime": "2026-02-02 11:12:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:23", + "echoMap": {}, + "alarmNo": "1770734017", + "alarmDate": "1770001971424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123246834038814", + "createdBy": null, + "createdTime": "2026-02-02 11:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:39", + "echoMap": {}, + "alarmNo": "1770734016", + "alarmDate": "1770001945286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123238244104330", + "createdBy": null, + "createdTime": "2026-02-02 11:03:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:39", + "echoMap": {}, + "alarmNo": "1770734015", + "alarmDate": "1770001403938", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137660", + "createdBy": null, + "createdTime": "2026-02-02 11:03:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:24", + "echoMap": {}, + "alarmNo": "1770734014", + "alarmDate": "1770001385880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137625", + "createdBy": null, + "createdTime": "2026-02-02 11:03:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:22", + "echoMap": {}, + "alarmNo": "1770734013", + "alarmDate": "1770001384352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137605", + "createdBy": null, + "createdTime": "2026-02-02 11:03:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:21", + "echoMap": {}, + "alarmNo": "1770734012", + "alarmDate": "1770001383594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137532", + "createdBy": null, + "createdTime": "2026-02-02 11:03:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:54", + "echoMap": {}, + "alarmNo": "1770734011", + "alarmDate": "1770001379745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137522", + "createdBy": null, + "createdTime": "2026-02-02 11:02:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:03:00", + "echoMap": {}, + "alarmNo": "1770734010", + "alarmDate": "1770001379406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949137321", + "createdBy": null, + "createdTime": "2026-02-02 11:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:49", + "echoMap": {}, + "alarmNo": "1770734009", + "alarmDate": "1770001368339", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949136918", + "createdBy": null, + "createdTime": "2026-02-02 11:02:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:52:42", + "echoMap": {}, + "alarmNo": "1770734008", + "alarmDate": "1770001346667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123233949136896", + "createdBy": null, + "createdTime": "2026-02-02 11:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:51", + "echoMap": {}, + "alarmNo": "1770734007", + "alarmDate": "1770001345390", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123229654169646", + "createdBy": null, + "createdTime": "2026-02-02 11:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:03:09", + "echoMap": {}, + "alarmNo": "1770734006", + "alarmDate": "1770001345096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235888", + "createdBy": null, + "createdTime": "2026-02-02 10:53:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:11", + "echoMap": {}, + "alarmNo": "1770734005", + "alarmDate": "1770000789729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235784", + "createdBy": null, + "createdTime": "2026-02-02 10:53:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:18", + "echoMap": {}, + "alarmNo": "1770734004", + "alarmDate": "1770000785600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235703", + "createdBy": null, + "createdTime": "2026-02-02 10:53:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:20", + "echoMap": {}, + "alarmNo": "1770734003", + "alarmDate": "1770000782010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235688", + "createdBy": null, + "createdTime": "2026-02-02 10:53:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:20", + "echoMap": {}, + "alarmNo": "1770734002", + "alarmDate": "1770000781247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235502", + "createdBy": null, + "createdTime": "2026-02-02 10:52:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:13", + "echoMap": {}, + "alarmNo": "1770734001", + "alarmDate": "1770000771950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235299", + "createdBy": null, + "createdTime": "2026-02-02 10:52:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:48", + "echoMap": {}, + "alarmNo": "1770734000", + "alarmDate": "1770000762298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235258", + "createdBy": null, + "createdTime": "2026-02-02 10:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:47", + "echoMap": {}, + "alarmNo": "1770733999", + "alarmDate": "1770000760443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123221064235080", + "createdBy": null, + "createdTime": "2026-02-02 10:52:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:50", + "echoMap": {}, + "alarmNo": "1770733998", + "alarmDate": "1770000751863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123216769267717", + "createdBy": null, + "createdTime": "2026-02-02 10:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:02:38", + "echoMap": {}, + "alarmNo": "1770733997", + "alarmDate": "1770000745675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123208179333867", + "createdBy": null, + "createdTime": "2026-02-02 10:43:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:20", + "echoMap": {}, + "alarmNo": "1770733996", + "alarmDate": "1770000187765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123208179333562", + "createdBy": null, + "createdTime": "2026-02-02 10:42:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:54", + "echoMap": {}, + "alarmNo": "1770733995", + "alarmDate": "1770000173418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123208179333211", + "createdBy": null, + "createdTime": "2026-02-02 10:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:37", + "echoMap": {}, + "alarmNo": "1770733994", + "alarmDate": "1770000156369", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123199589398656", + "createdBy": null, + "createdTime": "2026-02-02 10:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 11:32:54", + "echoMap": {}, + "alarmNo": "1770733993", + "alarmDate": "1770000145866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060059", + "deviceName": "[304](10)江体1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123199589398652", + "createdBy": null, + "createdTime": "2026-02-02 10:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:56", + "echoMap": {}, + "alarmNo": "1770733992", + "alarmDate": "1770000145765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294432225", + "createdBy": null, + "createdTime": "2026-02-02 10:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:23", + "echoMap": {}, + "alarmNo": "1770733991", + "alarmDate": "1769999602177", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431896", + "createdBy": null, + "createdTime": "2026-02-02 10:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:21", + "echoMap": {}, + "alarmNo": "1770733990", + "alarmDate": "1769999587566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431702", + "createdBy": null, + "createdTime": "2026-02-02 10:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:42:42", + "echoMap": {}, + "alarmNo": "1770733989", + "alarmDate": "1769999579219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431687", + "createdBy": null, + "createdTime": "2026-02-02 10:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:12", + "echoMap": {}, + "alarmNo": "1770733988", + "alarmDate": "1769999578512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431665", + "createdBy": null, + "createdTime": "2026-02-02 10:32:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:33:05", + "echoMap": {}, + "alarmNo": "1770733987", + "alarmDate": "1769999577594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431572", + "createdBy": null, + "createdTime": "2026-02-02 10:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:54", + "echoMap": {}, + "alarmNo": "1770733986", + "alarmDate": "1769999573402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123195294431339", + "createdBy": null, + "createdTime": "2026-02-02 10:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:48", + "echoMap": {}, + "alarmNo": "1770733985", + "alarmDate": "1769999562060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123186704496701", + "createdBy": null, + "createdTime": "2026-02-02 10:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1770733984", + "alarmDate": "1769999550358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060058", + "deviceName": "[309](10)江体1#口扶梯6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123186704496656", + "createdBy": null, + "createdTime": "2026-02-02 10:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:29", + "echoMap": {}, + "alarmNo": "1770733983", + "alarmDate": "1769999548066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409530334", + "createdBy": null, + "createdTime": "2026-02-02 10:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:52:38", + "echoMap": {}, + "alarmNo": "1770733982", + "alarmDate": "1769999545695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060039", + "deviceName": "[409](10)江体3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409530323", + "createdBy": null, + "createdTime": "2026-02-02 10:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:30", + "echoMap": {}, + "alarmNo": "1770733981", + "alarmDate": "1769999545005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529977", + "createdBy": null, + "createdTime": "2026-02-02 10:23:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:23:15", + "echoMap": {}, + "alarmNo": "1770733980", + "alarmDate": "1769998993876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529963", + "createdBy": null, + "createdTime": "2026-02-02 10:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:39", + "echoMap": {}, + "alarmNo": "1770733979", + "alarmDate": "1769998993283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529909", + "createdBy": null, + "createdTime": "2026-02-02 10:23:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:23:24", + "echoMap": {}, + "alarmNo": "1770733978", + "alarmDate": "1769998990890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529739", + "createdBy": null, + "createdTime": "2026-02-02 10:23:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:56", + "echoMap": {}, + "alarmNo": "1770733977", + "alarmDate": "1769998982301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123182409529546", + "createdBy": null, + "createdTime": "2026-02-02 10:22:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:25:12", + "echoMap": {}, + "alarmNo": "1770733976", + "alarmDate": "1769998972207", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1025040014", + "deviceName": "华为前端交换机13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1025" + }, + { + "id": "723123169524628405", + "createdBy": null, + "createdTime": "2026-02-02 10:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:59", + "echoMap": {}, + "alarmNo": "1770733975", + "alarmDate": "1769998944802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628159", + "createdBy": null, + "createdTime": "2026-02-02 10:13:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:47", + "echoMap": {}, + "alarmNo": "1770733974", + "alarmDate": "1769998400727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628114", + "createdBy": null, + "createdTime": "2026-02-02 10:13:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:48", + "echoMap": {}, + "alarmNo": "1770733973", + "alarmDate": "1769998398938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524628010", + "createdBy": null, + "createdTime": "2026-02-02 10:13:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:22:50", + "echoMap": {}, + "alarmNo": "1770733972", + "alarmDate": "1769998394221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524627731", + "createdBy": null, + "createdTime": "2026-02-02 10:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:08", + "echoMap": {}, + "alarmNo": "1770733971", + "alarmDate": "1769998381712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524627661", + "createdBy": null, + "createdTime": "2026-02-02 10:12:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:00", + "echoMap": {}, + "alarmNo": "1770733970", + "alarmDate": "1769998378884", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123169524627542", + "createdBy": null, + "createdTime": "2026-02-02 10:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:07", + "echoMap": {}, + "alarmNo": "1770733969", + "alarmDate": "1769998373882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123160934692974", + "createdBy": null, + "createdTime": "2026-02-02 10:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:23", + "echoMap": {}, + "alarmNo": "1770733968", + "alarmDate": "1769998361003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639726471", + "createdBy": null, + "createdTime": "2026-02-02 10:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:24", + "echoMap": {}, + "alarmNo": "1770733967", + "alarmDate": "1769998349595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639726387", + "createdBy": null, + "createdTime": "2026-02-02 10:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:31", + "echoMap": {}, + "alarmNo": "1770733966", + "alarmDate": "1769998345562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639726244", + "createdBy": null, + "createdTime": "2026-02-02 10:03:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:12:37", + "echoMap": {}, + "alarmNo": "1770733965", + "alarmDate": "1769997803347", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123156639725732", + "createdBy": null, + "createdTime": "2026-02-02 10:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:57", + "echoMap": {}, + "alarmNo": "1770733964", + "alarmDate": "1769997776324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824588", + "createdBy": null, + "createdTime": "2026-02-02 10:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:03:18", + "echoMap": {}, + "alarmNo": "1770733963", + "alarmDate": "1769997749468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060028", + "deviceName": "[333](10)江体商场出入口2入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824520", + "createdBy": null, + "createdTime": "2026-02-02 10:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:27", + "echoMap": {}, + "alarmNo": "1770733962", + "alarmDate": "1769997746173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824518", + "createdBy": null, + "createdTime": "2026-02-02 10:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:17", + "echoMap": {}, + "alarmNo": "1770733961", + "alarmDate": "1769997746116", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824500", + "createdBy": null, + "createdTime": "2026-02-02 10:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:52:26", + "echoMap": {}, + "alarmNo": "1770733960", + "alarmDate": "1769997744802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824226", + "createdBy": null, + "createdTime": "2026-02-02 09:53:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:22", + "echoMap": {}, + "alarmNo": "1770733959", + "alarmDate": "1769997196262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824202", + "createdBy": null, + "createdTime": "2026-02-02 09:53:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:21", + "echoMap": {}, + "alarmNo": "1770733958", + "alarmDate": "1769997195230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754824134", + "createdBy": null, + "createdTime": "2026-02-02 09:53:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:13", + "echoMap": {}, + "alarmNo": "1770733957", + "alarmDate": "1769997191904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123143754823952", + "createdBy": null, + "createdTime": "2026-02-02 09:53:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:14", + "echoMap": {}, + "alarmNo": "1770733956", + "alarmDate": "1769997183320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123135164889142", + "createdBy": null, + "createdTime": "2026-02-02 09:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:56", + "echoMap": {}, + "alarmNo": "1770733955", + "alarmDate": "1769997157207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123135164889090", + "createdBy": null, + "createdTime": "2026-02-02 09:52:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:02:43", + "echoMap": {}, + "alarmNo": "1770733954", + "alarmDate": "1769997154593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869922647", + "createdBy": null, + "createdTime": "2026-02-02 09:52:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:52:42", + "echoMap": {}, + "alarmNo": "1770733953", + "alarmDate": "1769997145164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869922450", + "createdBy": null, + "createdTime": "2026-02-02 09:43:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:22:50", + "echoMap": {}, + "alarmNo": "1770733952", + "alarmDate": "1769996600045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869922308", + "createdBy": null, + "createdTime": "2026-02-02 09:43:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:12", + "echoMap": {}, + "alarmNo": "1770733951", + "alarmDate": "1769996592626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869921950", + "createdBy": null, + "createdTime": "2026-02-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:53:14", + "echoMap": {}, + "alarmNo": "1770733950", + "alarmDate": "1769996573702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123130869921890", + "createdBy": null, + "createdTime": "2026-02-02 09:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:57", + "echoMap": {}, + "alarmNo": "1770733949", + "alarmDate": "1769996570840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123126574954529", + "createdBy": null, + "createdTime": "2026-02-02 09:42:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:56", + "echoMap": {}, + "alarmNo": "1770733948", + "alarmDate": "1769996563934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123126574954501", + "createdBy": null, + "createdTime": "2026-02-02 09:42:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:01", + "echoMap": {}, + "alarmNo": "1770733947", + "alarmDate": "1769996562493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123122279987438", + "createdBy": null, + "createdTime": "2026-02-02 09:42:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:40", + "echoMap": {}, + "alarmNo": "1770733946", + "alarmDate": "1769996558654", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020903", + "createdBy": null, + "createdTime": "2026-02-02 09:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:43", + "echoMap": {}, + "alarmNo": "1770733945", + "alarmDate": "1769996545122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020565", + "createdBy": null, + "createdTime": "2026-02-02 09:33:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:31", + "echoMap": {}, + "alarmNo": "1770733944", + "alarmDate": "1769995992497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020364", + "createdBy": null, + "createdTime": "2026-02-02 09:33:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:10", + "echoMap": {}, + "alarmNo": "1770733943", + "alarmDate": "1769995982657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020276", + "createdBy": null, + "createdTime": "2026-02-02 09:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:06", + "echoMap": {}, + "alarmNo": "1770733942", + "alarmDate": "1769995978547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020238", + "createdBy": null, + "createdTime": "2026-02-02 09:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:17", + "echoMap": {}, + "alarmNo": "1770733941", + "alarmDate": "1769995976738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020211", + "createdBy": null, + "createdTime": "2026-02-02 09:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:00", + "echoMap": {}, + "alarmNo": "1770733940", + "alarmDate": "1769995975462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020206", + "createdBy": null, + "createdTime": "2026-02-02 09:32:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:02", + "echoMap": {}, + "alarmNo": "1770733939", + "alarmDate": "1769995975257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123117985020170", + "createdBy": null, + "createdTime": "2026-02-02 09:32:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:54", + "echoMap": {}, + "alarmNo": "1770733938", + "alarmDate": "1769995973323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123113690052614", + "createdBy": null, + "createdTime": "2026-02-02 09:32:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:44", + "echoMap": {}, + "alarmNo": "1770733937", + "alarmDate": "1769995956608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123109395085331", + "createdBy": null, + "createdTime": "2026-02-02 09:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:28", + "echoMap": {}, + "alarmNo": "1770733936", + "alarmDate": "1769995947247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100119022", + "createdBy": null, + "createdTime": "2026-02-02 09:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:37", + "echoMap": {}, + "alarmNo": "1770733935", + "alarmDate": "1769995945321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118698", + "createdBy": null, + "createdTime": "2026-02-02 09:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:14", + "echoMap": {}, + "alarmNo": "1770733934", + "alarmDate": "1769995392983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118461", + "createdBy": null, + "createdTime": "2026-02-02 09:23:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:15", + "echoMap": {}, + "alarmNo": "1770733933", + "alarmDate": "1769995381250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118270", + "createdBy": null, + "createdTime": "2026-02-02 09:22:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:22:59", + "echoMap": {}, + "alarmNo": "1770733932", + "alarmDate": "1769995372311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123105100118016", + "createdBy": null, + "createdTime": "2026-02-02 09:22:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:44", + "echoMap": {}, + "alarmNo": "1770733931", + "alarmDate": "1769995358173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123092215216929", + "createdBy": null, + "createdTime": "2026-02-02 09:13:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:21", + "echoMap": {}, + "alarmNo": "1770733930", + "alarmDate": "1769994793729", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123092215216875", + "createdBy": null, + "createdTime": "2026-02-02 09:13:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:25", + "echoMap": {}, + "alarmNo": "1770733929", + "alarmDate": "1769994790919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123092215216266", + "createdBy": null, + "createdTime": "2026-02-02 09:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:42", + "echoMap": {}, + "alarmNo": "1770733928", + "alarmDate": "1769994760825", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123083625281601", + "createdBy": null, + "createdTime": "2026-02-02 09:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:30", + "echoMap": {}, + "alarmNo": "1770733927", + "alarmDate": "1769994744832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123079330314413", + "createdBy": null, + "createdTime": "2026-02-02 09:02:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:47", + "echoMap": {}, + "alarmNo": "1770733926", + "alarmDate": "1769994166359", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123075035346975", + "createdBy": null, + "createdTime": "2026-02-02 09:02:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:32:43", + "echoMap": {}, + "alarmNo": "1770733925", + "alarmDate": "1769994156506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123070740379761", + "createdBy": null, + "createdTime": "2026-02-02 09:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:02:29", + "echoMap": {}, + "alarmNo": "1770733924", + "alarmDate": "1769994148275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123070740379725", + "createdBy": null, + "createdTime": "2026-02-02 09:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:12:36", + "echoMap": {}, + "alarmNo": "1770733923", + "alarmDate": "1769994146411", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123070740379703", + "createdBy": null, + "createdTime": "2026-02-02 09:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:53:18", + "echoMap": {}, + "alarmNo": "1770733922", + "alarmDate": "1769994144961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060021", + "deviceName": "[405](10)江体3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123066445413112", + "createdBy": null, + "createdTime": "2026-02-02 08:53:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:53:14", + "echoMap": {}, + "alarmNo": "1770733921", + "alarmDate": "1769993593082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123066445412741", + "createdBy": null, + "createdTime": "2026-02-02 08:52:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:53:01", + "echoMap": {}, + "alarmNo": "1770733920", + "alarmDate": "1769993574279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123057855478006", + "createdBy": null, + "createdTime": "2026-02-02 08:52:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:00", + "echoMap": {}, + "alarmNo": "1770733919", + "alarmDate": "1769993545518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560511227", + "createdBy": null, + "createdTime": "2026-02-02 08:43:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:12", + "echoMap": {}, + "alarmNo": "1770733918", + "alarmDate": "1769992985588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560511045", + "createdBy": null, + "createdTime": "2026-02-02 08:42:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:03:11", + "echoMap": {}, + "alarmNo": "1770733917", + "alarmDate": "1769992976920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560510702", + "createdBy": null, + "createdTime": "2026-02-02 08:42:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:41", + "echoMap": {}, + "alarmNo": "1770733916", + "alarmDate": "1769992959971", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123053560510537", + "createdBy": null, + "createdTime": "2026-02-02 08:42:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:33", + "echoMap": {}, + "alarmNo": "1770733915", + "alarmDate": "1769992952128", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609568", + "createdBy": null, + "createdTime": "2026-02-02 08:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:17", + "echoMap": {}, + "alarmNo": "1770733914", + "alarmDate": "1769992395882", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609175", + "createdBy": null, + "createdTime": "2026-02-02 08:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:05", + "echoMap": {}, + "alarmNo": "1770733913", + "alarmDate": "1769992378591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609127", + "createdBy": null, + "createdTime": "2026-02-02 08:32:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:42:39", + "echoMap": {}, + "alarmNo": "1770733912", + "alarmDate": "1769992376522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675609112", + "createdBy": null, + "createdTime": "2026-02-02 08:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:08", + "echoMap": {}, + "alarmNo": "1770733911", + "alarmDate": "1769992375903", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060093", + "deviceName": "[711](10)江体上行存车线1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675608899", + "createdBy": null, + "createdTime": "2026-02-02 08:32:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:53", + "echoMap": {}, + "alarmNo": "1770733910", + "alarmDate": "1769992365793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123040675608819", + "createdBy": null, + "createdTime": "2026-02-02 08:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:43", + "echoMap": {}, + "alarmNo": "1770733909", + "alarmDate": "1769992362205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674231", + "createdBy": null, + "createdTime": "2026-02-02 08:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:29", + "echoMap": {}, + "alarmNo": "1770733908", + "alarmDate": "1769992347423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674215", + "createdBy": null, + "createdTime": "2026-02-02 08:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:33", + "echoMap": {}, + "alarmNo": "1770733907", + "alarmDate": "1769992346575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674194", + "createdBy": null, + "createdTime": "2026-02-02 08:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:53:05", + "echoMap": {}, + "alarmNo": "1770733906", + "alarmDate": "1769992345712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674183", + "createdBy": null, + "createdTime": "2026-02-02 08:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:18", + "echoMap": {}, + "alarmNo": "1770733905", + "alarmDate": "1769992345158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123032085674009", + "createdBy": null, + "createdTime": "2026-02-02 08:23:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:27", + "echoMap": {}, + "alarmNo": "1770733904", + "alarmDate": "1769991801282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790707544", + "createdBy": null, + "createdTime": "2026-02-02 08:23:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:23:12", + "echoMap": {}, + "alarmNo": "1770733903", + "alarmDate": "1769991791246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790707161", + "createdBy": null, + "createdTime": "2026-02-02 08:22:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:32:27", + "echoMap": {}, + "alarmNo": "1770733902", + "alarmDate": "1769991771213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790706978", + "createdBy": null, + "createdTime": "2026-02-02 08:22:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:49", + "echoMap": {}, + "alarmNo": "1770733901", + "alarmDate": "1769991762263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123027790706867", + "createdBy": null, + "createdTime": "2026-02-02 08:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:44", + "echoMap": {}, + "alarmNo": "1770733900", + "alarmDate": "1769991757086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905805816", + "createdBy": null, + "createdTime": "2026-02-02 08:13:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:13:20", + "echoMap": {}, + "alarmNo": "1770733899", + "alarmDate": "1769991193830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905805404", + "createdBy": null, + "createdTime": "2026-02-02 08:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:13:06", + "echoMap": {}, + "alarmNo": "1770733898", + "alarmDate": "1769991173886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905805325", + "createdBy": null, + "createdTime": "2026-02-02 08:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:51", + "echoMap": {}, + "alarmNo": "1770733897", + "alarmDate": "1769991170249", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905804828", + "createdBy": null, + "createdTime": "2026-02-02 08:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:48", + "echoMap": {}, + "alarmNo": "1770733896", + "alarmDate": "1769991145864", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123014905804821", + "createdBy": null, + "createdTime": "2026-02-02 08:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:23:24", + "echoMap": {}, + "alarmNo": "1770733895", + "alarmDate": "1769991145721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870398", + "createdBy": null, + "createdTime": "2026-02-02 08:03:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:21", + "echoMap": {}, + "alarmNo": "1770733894", + "alarmDate": "1769990601496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870397", + "createdBy": null, + "createdTime": "2026-02-02 08:03:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:12:43", + "echoMap": {}, + "alarmNo": "1770733893", + "alarmDate": "1769990601482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870375", + "createdBy": null, + "createdTime": "2026-02-02 08:03:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:39", + "echoMap": {}, + "alarmNo": "1770733892", + "alarmDate": "1769990600462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123006315870281", + "createdBy": null, + "createdTime": "2026-02-02 08:03:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:22:52", + "echoMap": {}, + "alarmNo": "1770733891", + "alarmDate": "1769990595141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903935", + "createdBy": null, + "createdTime": "2026-02-02 08:03:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:12", + "echoMap": {}, + "alarmNo": "1770733890", + "alarmDate": "1769990590925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903428", + "createdBy": null, + "createdTime": "2026-02-02 08:02:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:03", + "echoMap": {}, + "alarmNo": "1770733889", + "alarmDate": "1769990565119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903056", + "createdBy": null, + "createdTime": "2026-02-02 08:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:08", + "echoMap": {}, + "alarmNo": "1770733888", + "alarmDate": "1769990546200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903043", + "createdBy": null, + "createdTime": "2026-02-02 08:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:15", + "echoMap": {}, + "alarmNo": "1770733887", + "alarmDate": "1769990545614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060057", + "deviceName": "[302](10)江体1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020903038", + "createdBy": null, + "createdTime": "2026-02-02 08:02:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:31", + "echoMap": {}, + "alarmNo": "1770733886", + "alarmDate": "1769990545248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723123002020902913", + "createdBy": null, + "createdTime": "2026-02-02 07:53:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:02:41", + "echoMap": {}, + "alarmNo": "1770733885", + "alarmDate": "1769990007036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122993430968360", + "createdBy": null, + "createdTime": "2026-02-02 07:53:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:53:10", + "echoMap": {}, + "alarmNo": "1770733884", + "alarmDate": "1769989989324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122989136002017", + "createdBy": null, + "createdTime": "2026-02-02 07:53:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:53:13", + "echoMap": {}, + "alarmNo": "1770733883", + "alarmDate": "1769989985892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122989136001836", + "createdBy": null, + "createdTime": "2026-02-02 07:52:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:53:21", + "echoMap": {}, + "alarmNo": "1770733882", + "alarmDate": "1769989976999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122989136001424", + "createdBy": null, + "createdTime": "2026-02-02 07:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:38", + "echoMap": {}, + "alarmNo": "1770733881", + "alarmDate": "1769989956580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122980546066569", + "createdBy": null, + "createdTime": "2026-02-02 07:43:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:14", + "echoMap": {}, + "alarmNo": "1770733880", + "alarmDate": "1769989388240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122980546066433", + "createdBy": null, + "createdTime": "2026-02-02 07:43:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:03", + "echoMap": {}, + "alarmNo": "1770733879", + "alarmDate": "1769989382425", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099864", + "createdBy": null, + "createdTime": "2026-02-02 07:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:50", + "echoMap": {}, + "alarmNo": "1770733878", + "alarmDate": "1769989369637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060074", + "deviceName": "[106](10)江体上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099615", + "createdBy": null, + "createdTime": "2026-02-02 07:42:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:45", + "echoMap": {}, + "alarmNo": "1770733877", + "alarmDate": "1769989358800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099432", + "createdBy": null, + "createdTime": "2026-02-02 07:42:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:16", + "echoMap": {}, + "alarmNo": "1770733876", + "alarmDate": "1769989350904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099394", + "createdBy": null, + "createdTime": "2026-02-02 07:42:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:46", + "echoMap": {}, + "alarmNo": "1770733875", + "alarmDate": "1769989349295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122976251099304", + "createdBy": null, + "createdTime": "2026-02-02 07:42:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:42:26", + "echoMap": {}, + "alarmNo": "1770733874", + "alarmDate": "1769989344206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122967661164861", + "createdBy": null, + "createdTime": "2026-02-02 07:33:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:20", + "echoMap": {}, + "alarmNo": "1770733873", + "alarmDate": "1769988794065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122967661164670", + "createdBy": null, + "createdTime": "2026-02-02 07:33:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:42:40", + "echoMap": {}, + "alarmNo": "1770733872", + "alarmDate": "1769988785033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122967661164625", + "createdBy": null, + "createdTime": "2026-02-02 07:33:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:04", + "echoMap": {}, + "alarmNo": "1770733871", + "alarmDate": "1769988783026", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198162", + "createdBy": null, + "createdTime": "2026-02-02 07:32:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:00", + "echoMap": {}, + "alarmNo": "1770733870", + "alarmDate": "1769988774097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198098", + "createdBy": null, + "createdTime": "2026-02-02 07:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:10", + "echoMap": {}, + "alarmNo": "1770733869", + "alarmDate": "1769988771214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060052", + "deviceName": "[411](10)江体4#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198084", + "createdBy": null, + "createdTime": "2026-02-02 07:32:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:52:45", + "echoMap": {}, + "alarmNo": "1770733868", + "alarmDate": "1769988770523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366198063", + "createdBy": null, + "createdTime": "2026-02-02 07:32:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:56", + "echoMap": {}, + "alarmNo": "1770733867", + "alarmDate": "1769988769621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197758", + "createdBy": null, + "createdTime": "2026-02-02 07:32:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:35", + "echoMap": {}, + "alarmNo": "1770733866", + "alarmDate": "1769988754227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197709", + "createdBy": null, + "createdTime": "2026-02-02 07:32:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:44", + "echoMap": {}, + "alarmNo": "1770733865", + "alarmDate": "1769988752058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197595", + "createdBy": null, + "createdTime": "2026-02-02 07:32:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:28", + "echoMap": {}, + "alarmNo": "1770733864", + "alarmDate": "1769988746662", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197404", + "createdBy": null, + "createdTime": "2026-02-02 07:23:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:23", + "echoMap": {}, + "alarmNo": "1770733863", + "alarmDate": "1769988202059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122963366197291", + "createdBy": null, + "createdTime": "2026-02-02 07:23:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:14", + "echoMap": {}, + "alarmNo": "1770733862", + "alarmDate": "1769988196753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122954776262987", + "createdBy": null, + "createdTime": "2026-02-02 07:23:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:12", + "echoMap": {}, + "alarmNo": "1770733861", + "alarmDate": "1769988191371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122954776262829", + "createdBy": null, + "createdTime": "2026-02-02 07:23:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:04", + "echoMap": {}, + "alarmNo": "1770733860", + "alarmDate": "1769988183933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060118", + "deviceName": "[716](10)江体15#道岔", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122954776262666", + "createdBy": null, + "createdTime": "2026-02-02 07:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:02", + "echoMap": {}, + "alarmNo": "1770733859", + "alarmDate": "1769988176400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481296381", + "createdBy": null, + "createdTime": "2026-02-02 07:22:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:20", + "echoMap": {}, + "alarmNo": "1770733858", + "alarmDate": "1769988175858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481296171", + "createdBy": null, + "createdTime": "2026-02-02 07:22:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:23:15", + "echoMap": {}, + "alarmNo": "1770733857", + "alarmDate": "1769988165175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295890", + "createdBy": null, + "createdTime": "2026-02-02 07:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:38", + "echoMap": {}, + "alarmNo": "1770733856", + "alarmDate": "1769988150402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295784", + "createdBy": null, + "createdTime": "2026-02-02 07:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:26", + "echoMap": {}, + "alarmNo": "1770733855", + "alarmDate": "1769988144754", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295557", + "createdBy": null, + "createdTime": "2026-02-02 07:13:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:20", + "echoMap": {}, + "alarmNo": "1770733854", + "alarmDate": "1769987599474", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295492", + "createdBy": null, + "createdTime": "2026-02-02 07:13:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:18", + "echoMap": {}, + "alarmNo": "1770733853", + "alarmDate": "1769987596574", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122950481295485", + "createdBy": null, + "createdTime": "2026-02-02 07:13:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:50", + "echoMap": {}, + "alarmNo": "1770733852", + "alarmDate": "1769987596389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060082", + "deviceName": "[111](10)江体下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122946186328072", + "createdBy": null, + "createdTime": "2026-02-02 07:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:26", + "echoMap": {}, + "alarmNo": "1770733851", + "alarmDate": "1769987588302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122941891361035", + "createdBy": null, + "createdTime": "2026-02-02 07:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:13:14", + "echoMap": {}, + "alarmNo": "1770733850", + "alarmDate": "1769987581557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122941891360959", + "createdBy": null, + "createdTime": "2026-02-02 07:12:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:58", + "echoMap": {}, + "alarmNo": "1770733849", + "alarmDate": "1769987577624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060070", + "deviceName": "[107](10)江体下行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122941891360821", + "createdBy": null, + "createdTime": "2026-02-02 07:12:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:58", + "echoMap": {}, + "alarmNo": "1770733848", + "alarmDate": "1769987571500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060094", + "deviceName": "[712](10)江体上行存车线2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393954", + "createdBy": null, + "createdTime": "2026-02-02 07:12:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:44", + "echoMap": {}, + "alarmNo": "1770733847", + "alarmDate": "1769987544580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393747", + "createdBy": null, + "createdTime": "2026-02-02 07:03:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:56", + "echoMap": {}, + "alarmNo": "1770733846", + "alarmDate": "1769987000101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393737", + "createdBy": null, + "createdTime": "2026-02-02 07:03:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:12:56", + "echoMap": {}, + "alarmNo": "1770733845", + "alarmDate": "1769986999740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122937596393482", + "createdBy": null, + "createdTime": "2026-02-02 07:03:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:13", + "echoMap": {}, + "alarmNo": "1770733844", + "alarmDate": "1769986987374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122929006459221", + "createdBy": null, + "createdTime": "2026-02-02 07:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:59", + "echoMap": {}, + "alarmNo": "1770733843", + "alarmDate": "1769986978153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122929006459176", + "createdBy": null, + "createdTime": "2026-02-02 07:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:03:02", + "echoMap": {}, + "alarmNo": "1770733842", + "alarmDate": "1769986976141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492598", + "createdBy": null, + "createdTime": "2026-02-02 07:02:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:42", + "echoMap": {}, + "alarmNo": "1770733841", + "alarmDate": "1769986961182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492315", + "createdBy": null, + "createdTime": "2026-02-02 07:02:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:30", + "echoMap": {}, + "alarmNo": "1770733840", + "alarmDate": "1769986948680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492273", + "createdBy": null, + "createdTime": "2026-02-02 07:02:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:58", + "echoMap": {}, + "alarmNo": "1770733839", + "alarmDate": "1769986946954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492243", + "createdBy": null, + "createdTime": "2026-02-02 07:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:43", + "echoMap": {}, + "alarmNo": "1770733838", + "alarmDate": "1769986945622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060040", + "deviceName": "[408](10)江体3#闸出3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711492017", + "createdBy": null, + "createdTime": "2026-02-02 06:53:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:31", + "echoMap": {}, + "alarmNo": "1770733837", + "alarmDate": "1769986399235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122924711491939", + "createdBy": null, + "createdTime": "2026-02-02 06:53:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:17", + "echoMap": {}, + "alarmNo": "1770733836", + "alarmDate": "1769986395579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122916121557013", + "createdBy": null, + "createdTime": "2026-02-02 06:52:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:41", + "echoMap": {}, + "alarmNo": "1770733835", + "alarmDate": "1769986360060", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122911826590662", + "createdBy": null, + "createdTime": "2026-02-02 06:52:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:38", + "echoMap": {}, + "alarmNo": "1770733834", + "alarmDate": "1769986356701", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122911826590252", + "createdBy": null, + "createdTime": "2026-02-02 06:43:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:24", + "echoMap": {}, + "alarmNo": "1770733833", + "alarmDate": "1769985802500", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122898941688761", + "createdBy": null, + "createdTime": "2026-02-02 06:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:07", + "echoMap": {}, + "alarmNo": "1770733832", + "alarmDate": "1769985753590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060041", + "deviceName": "[316](10)江体2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122898941688573", + "createdBy": null, + "createdTime": "2026-02-02 06:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:42:26", + "echoMap": {}, + "alarmNo": "1770733831", + "alarmDate": "1769985744600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060013", + "deviceName": "[330](10)江体商场出入口1入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122898941687874", + "createdBy": null, + "createdTime": "2026-02-02 06:32:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:00", + "echoMap": {}, + "alarmNo": "1770733830", + "alarmDate": "1769985179188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753439", + "createdBy": null, + "createdTime": "2026-02-02 06:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:02:44", + "echoMap": {}, + "alarmNo": "1770733829", + "alarmDate": "1769985164317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753435", + "createdBy": null, + "createdTime": "2026-02-02 06:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:45", + "echoMap": {}, + "alarmNo": "1770733828", + "alarmDate": "1769985164171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753370", + "createdBy": null, + "createdTime": "2026-02-02 06:32:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:43", + "echoMap": {}, + "alarmNo": "1770733827", + "alarmDate": "1769985161660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122890351753218", + "createdBy": null, + "createdTime": "2026-02-02 06:32:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:36", + "echoMap": {}, + "alarmNo": "1770733826", + "alarmDate": "1769985154910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786796", + "createdBy": null, + "createdTime": "2026-02-02 06:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:29", + "echoMap": {}, + "alarmNo": "1770733825", + "alarmDate": "1769985148319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786354", + "createdBy": null, + "createdTime": "2026-02-02 06:23:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:32:31", + "echoMap": {}, + "alarmNo": "1770733824", + "alarmDate": "1769984593209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786233", + "createdBy": null, + "createdTime": "2026-02-02 06:23:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:07", + "echoMap": {}, + "alarmNo": "1770733823", + "alarmDate": "1769984587734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060009", + "deviceName": "[331](10)江体商场出入口1出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786178", + "createdBy": null, + "createdTime": "2026-02-02 06:23:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:30", + "echoMap": {}, + "alarmNo": "1770733822", + "alarmDate": "1769984585334", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122886056786008", + "createdBy": null, + "createdTime": "2026-02-02 06:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:58", + "echoMap": {}, + "alarmNo": "1770733821", + "alarmDate": "1769984577209", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122877466851511", + "createdBy": null, + "createdTime": "2026-02-02 06:22:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:41", + "echoMap": {}, + "alarmNo": "1770733820", + "alarmDate": "1769984559730", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122877466851403", + "createdBy": null, + "createdTime": "2026-02-02 06:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:22:41", + "echoMap": {}, + "alarmNo": "1770733819", + "alarmDate": "1769984555220", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122860286982379", + "createdBy": null, + "createdTime": "2026-02-02 06:03:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:11", + "echoMap": {}, + "alarmNo": "1770733818", + "alarmDate": "1769983390268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122851697047607", + "createdBy": null, + "createdTime": "2026-02-02 06:02:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:55", + "echoMap": {}, + "alarmNo": "1770733817", + "alarmDate": "1769983374234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402081251", + "createdBy": null, + "createdTime": "2026-02-02 06:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:52", + "echoMap": {}, + "alarmNo": "1770733816", + "alarmDate": "1769983370935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402081046", + "createdBy": null, + "createdTime": "2026-02-02 06:02:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:43", + "echoMap": {}, + "alarmNo": "1770733815", + "alarmDate": "1769983362508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402080638", + "createdBy": null, + "createdTime": "2026-02-02 06:02:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:27", + "echoMap": {}, + "alarmNo": "1770733814", + "alarmDate": "1769983345537", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122847402080363", + "createdBy": null, + "createdTime": "2026-02-02 05:53:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:18", + "echoMap": {}, + "alarmNo": "1770733813", + "alarmDate": "1769982797386", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122838812146166", + "createdBy": null, + "createdTime": "2026-02-02 05:52:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:53", + "echoMap": {}, + "alarmNo": "1770733812", + "alarmDate": "1769982771987", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122838812145683", + "createdBy": null, + "createdTime": "2026-02-02 05:52:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:52:31", + "echoMap": {}, + "alarmNo": "1770733811", + "alarmDate": "1769982750267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122830222211743", + "createdBy": null, + "createdTime": "2026-02-02 05:43:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:23", + "echoMap": {}, + "alarmNo": "1770733810", + "alarmDate": "1769982202137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632277347", + "createdBy": null, + "createdTime": "2026-02-02 05:42:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:15", + "echoMap": {}, + "alarmNo": "1770733809", + "alarmDate": "1769982170714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632276948", + "createdBy": null, + "createdTime": "2026-02-02 05:42:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:35", + "echoMap": {}, + "alarmNo": "1770733808", + "alarmDate": "1769982153549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632276743", + "createdBy": null, + "createdTime": "2026-02-02 05:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:42:34", + "echoMap": {}, + "alarmNo": "1770733807", + "alarmDate": "1769982144524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122821632276577", + "createdBy": null, + "createdTime": "2026-02-02 05:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:23", + "echoMap": {}, + "alarmNo": "1770733806", + "alarmDate": "1769981602342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342512", + "createdBy": null, + "createdTime": "2026-02-02 05:33:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:06", + "echoMap": {}, + "alarmNo": "1770733805", + "alarmDate": "1769981585031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342431", + "createdBy": null, + "createdTime": "2026-02-02 05:33:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:22:32", + "echoMap": {}, + "alarmNo": "1770733804", + "alarmDate": "1769981581764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060043", + "deviceName": "[315](10)江体2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342428", + "createdBy": null, + "createdTime": "2026-02-02 05:33:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:03", + "echoMap": {}, + "alarmNo": "1770733803", + "alarmDate": "1769981581627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342409", + "createdBy": null, + "createdTime": "2026-02-02 05:33:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:02", + "echoMap": {}, + "alarmNo": "1770733802", + "alarmDate": "1769981581065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122813042342026", + "createdBy": null, + "createdTime": "2026-02-02 05:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:32:46", + "echoMap": {}, + "alarmNo": "1770733801", + "alarmDate": "1769981564797", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060036", + "deviceName": "[203](10)江体厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122804452407900", + "createdBy": null, + "createdTime": "2026-02-02 05:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:02", + "echoMap": {}, + "alarmNo": "1770733800", + "alarmDate": "1769981544275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060008", + "deviceName": "[332](10)江体商场出入口1出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122804452407548", + "createdBy": null, + "createdTime": "2026-02-02 05:23:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:02:41", + "echoMap": {}, + "alarmNo": "1770733799", + "alarmDate": "1769980994484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122804452407309", + "createdBy": null, + "createdTime": "2026-02-02 05:23:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:05", + "echoMap": {}, + "alarmNo": "1770733798", + "alarmDate": "1769980984198", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122795862473307", + "createdBy": null, + "createdTime": "2026-02-02 05:22:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:22:51", + "echoMap": {}, + "alarmNo": "1770733797", + "alarmDate": "1769980969595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060030", + "deviceName": "[204](10)江体厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122795862472747", + "createdBy": null, + "createdTime": "2026-02-02 05:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:23:01", + "echoMap": {}, + "alarmNo": "1770733796", + "alarmDate": "1769980944765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060012", + "deviceName": "[329](10)江体商场出入口1入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538746", + "createdBy": null, + "createdTime": "2026-02-02 05:13:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:52:45", + "echoMap": {}, + "alarmNo": "1770733795", + "alarmDate": "1769980391924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060089", + "deviceName": "[102](10)江体上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538540", + "createdBy": null, + "createdTime": "2026-02-02 05:13:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:13:07", + "echoMap": {}, + "alarmNo": "1770733794", + "alarmDate": "1769980381087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538255", + "createdBy": null, + "createdTime": "2026-02-02 05:12:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:48", + "echoMap": {}, + "alarmNo": "1770733793", + "alarmDate": "1769980366756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122787272538153", + "createdBy": null, + "createdTime": "2026-02-02 05:12:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:48", + "echoMap": {}, + "alarmNo": "1770733792", + "alarmDate": "1769980361937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060075", + "deviceName": "[110](10)江体下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682604269", + "createdBy": null, + "createdTime": "2026-02-02 05:12:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:12:31", + "echoMap": {}, + "alarmNo": "1770733791", + "alarmDate": "1769980349883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682604024", + "createdBy": null, + "createdTime": "2026-02-02 05:03:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:23", + "echoMap": {}, + "alarmNo": "1770733790", + "alarmDate": "1769979801759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682603953", + "createdBy": null, + "createdTime": "2026-02-02 05:03:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:19", + "echoMap": {}, + "alarmNo": "1770733789", + "alarmDate": "1769979798216", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060071", + "deviceName": "[207](10)江体下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122778682603855", + "createdBy": null, + "createdTime": "2026-02-02 05:03:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:14", + "echoMap": {}, + "alarmNo": "1770733788", + "alarmDate": "1769979793223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122770092669347", + "createdBy": null, + "createdTime": "2026-02-02 05:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:02:29", + "echoMap": {}, + "alarmNo": "1770733787", + "alarmDate": "1769979748339", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122770092669109", + "createdBy": null, + "createdTime": "2026-02-02 04:53:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:53:21", + "echoMap": {}, + "alarmNo": "1770733786", + "alarmDate": "1769979200154", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122761502735153", + "createdBy": null, + "createdTime": "2026-02-02 04:52:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:52:59", + "echoMap": {}, + "alarmNo": "1770733785", + "alarmDate": "1769979177529", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122752912800468", + "createdBy": null, + "createdTime": "2026-02-02 04:42:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:51", + "echoMap": {}, + "alarmNo": "1770733784", + "alarmDate": "1769978570179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122752912800287", + "createdBy": null, + "createdTime": "2026-02-02 04:42:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:42:38", + "echoMap": {}, + "alarmNo": "1770733783", + "alarmDate": "1769978557415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122744322865846", + "createdBy": null, + "createdTime": "2026-02-02 04:32:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:32:48", + "echoMap": {}, + "alarmNo": "1770733782", + "alarmDate": "1769977966535", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122735732930653", + "createdBy": null, + "createdTime": "2026-02-02 04:13:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:13:10", + "echoMap": {}, + "alarmNo": "1770733781", + "alarmDate": "1769976789356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122727142996781", + "createdBy": null, + "createdTime": "2026-02-02 04:12:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:12:54", + "echoMap": {}, + "alarmNo": "1770733780", + "alarmDate": "1769976772502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122727142996059", + "createdBy": null, + "createdTime": "2026-02-02 04:03:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:03:10", + "echoMap": {}, + "alarmNo": "1770733779", + "alarmDate": "1769976188704", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122709963127446", + "createdBy": null, + "createdTime": "2026-02-02 03:52:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:52:39", + "echoMap": {}, + "alarmNo": "1770733778", + "alarmDate": "1769975557884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122709963126962", + "createdBy": null, + "createdTime": "2026-02-02 03:43:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:43:12", + "echoMap": {}, + "alarmNo": "1770733777", + "alarmDate": "1769974990488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122701373192832", + "createdBy": null, + "createdTime": "2026-02-02 03:42:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:42:37", + "echoMap": {}, + "alarmNo": "1770733776", + "alarmDate": "1769974956063", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122688488290360", + "createdBy": null, + "createdTime": "2026-02-02 03:22:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:58", + "echoMap": {}, + "alarmNo": "1770733775", + "alarmDate": "1769973777013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323686", + "createdBy": null, + "createdTime": "2026-02-02 03:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:37", + "echoMap": {}, + "alarmNo": "1770733774", + "alarmDate": "1769973755678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323625", + "createdBy": null, + "createdTime": "2026-02-02 03:22:32", + "updatedBy": null, + "updatedTime": "2026-02-02 03:22:33", + "echoMap": {}, + "alarmNo": "1770733773", + "alarmDate": "1769973751733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323424", + "createdBy": null, + "createdTime": "2026-02-02 03:13:25", + "updatedBy": null, + "updatedTime": "2026-02-02 03:13:26", + "echoMap": {}, + "alarmNo": "1770733772", + "alarmDate": "1769973205410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122684193323407", + "createdBy": null, + "createdTime": "2026-02-02 03:13:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:13:25", + "echoMap": {}, + "alarmNo": "1770733771", + "alarmDate": "1769973203626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122679898355748", + "createdBy": null, + "createdTime": "2026-02-02 03:12:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:12:55", + "echoMap": {}, + "alarmNo": "1770733770", + "alarmDate": "1769973174172", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122675603388663", + "createdBy": null, + "createdTime": "2026-02-02 03:03:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:03:19", + "echoMap": {}, + "alarmNo": "1770733769", + "alarmDate": "1769972592754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122671308421145", + "createdBy": null, + "createdTime": "2026-02-02 03:02:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:03:01", + "echoMap": {}, + "alarmNo": "1770733768", + "alarmDate": "1769972574647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122667013454390", + "createdBy": null, + "createdTime": "2026-02-02 03:02:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:02:25", + "echoMap": {}, + "alarmNo": "1770733767", + "alarmDate": "1769972544409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122667013454176", + "createdBy": null, + "createdTime": "2026-02-02 02:53:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:53:18", + "echoMap": {}, + "alarmNo": "1770733766", + "alarmDate": "1769971997238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122658423520128", + "createdBy": null, + "createdTime": "2026-02-02 02:52:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:52:50", + "echoMap": {}, + "alarmNo": "1770733765", + "alarmDate": "1769971968703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122658423519731", + "createdBy": null, + "createdTime": "2026-02-02 02:48:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:14", + "echoMap": {}, + "alarmNo": "1770733764", + "alarmDate": "1769971687731", + "faultLocation": "999999999", + "faultDescription": "CPU占用率超过70.0%", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1025040014", + "deviceName": "华为前端交换机13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1025" + }, + { + "id": "723122658423519527", + "createdBy": null, + "createdTime": "2026-02-02 02:43:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:15", + "echoMap": {}, + "alarmNo": "1770733763", + "alarmDate": "1769971394270", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122649833584816", + "createdBy": null, + "createdTime": "2026-02-02 02:33:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:33:18", + "echoMap": {}, + "alarmNo": "1770733762", + "alarmDate": "1769970786365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060076", + "deviceName": "[109](10)江体下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122641243650882", + "createdBy": null, + "createdTime": "2026-02-02 02:32:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:46", + "echoMap": {}, + "alarmNo": "1770733761", + "alarmDate": "1769970764595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122641243650609", + "createdBy": null, + "createdTime": "2026-02-02 02:32:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:32:38", + "echoMap": {}, + "alarmNo": "1770733760", + "alarmDate": "1769970746149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122641243650190", + "createdBy": null, + "createdTime": "2026-02-02 02:23:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:23:06", + "echoMap": {}, + "alarmNo": "1770733759", + "alarmDate": "1769970184647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122632653716262", + "createdBy": null, + "createdTime": "2026-02-02 02:22:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:22:44", + "echoMap": {}, + "alarmNo": "1770733758", + "alarmDate": "1769970162637", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122632653715588", + "createdBy": null, + "createdTime": "2026-02-02 02:13:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:13:08", + "echoMap": {}, + "alarmNo": "1770733757", + "alarmDate": "1769969581969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122624063781689", + "createdBy": null, + "createdTime": "2026-02-02 02:12:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:12:42", + "echoMap": {}, + "alarmNo": "1770733756", + "alarmDate": "1769969560645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122624063781084", + "createdBy": null, + "createdTime": "2026-02-02 02:03:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:03:06", + "echoMap": {}, + "alarmNo": "1770733755", + "alarmDate": "1769968984745", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122615473846984", + "createdBy": null, + "createdTime": "2026-02-02 02:02:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:02:29", + "echoMap": {}, + "alarmNo": "1770733754", + "alarmDate": "1769968947894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122615473846754", + "createdBy": null, + "createdTime": "2026-02-02 01:53:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:20", + "echoMap": {}, + "alarmNo": "1770733753", + "alarmDate": "1769968398679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122615473846495", + "createdBy": null, + "createdTime": "2026-02-02 01:53:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:02", + "echoMap": {}, + "alarmNo": "1770733752", + "alarmDate": "1769968380738", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122602588944709", + "createdBy": null, + "createdTime": "2026-02-02 01:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:08", + "echoMap": {}, + "alarmNo": "1770733751", + "alarmDate": "1769967775678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060076", + "deviceName": "[109](10)江体下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122598293977135", + "createdBy": null, + "createdTime": "2026-02-02 01:42:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:42:33", + "echoMap": {}, + "alarmNo": "1770733750", + "alarmDate": "1769967752205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704043327", + "createdBy": null, + "createdTime": "2026-02-02 01:33:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:03", + "echoMap": {}, + "alarmNo": "1770733749", + "alarmDate": "1769967201356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042780", + "createdBy": null, + "createdTime": "2026-02-02 01:32:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:45", + "echoMap": {}, + "alarmNo": "1770733748", + "alarmDate": "1769967163926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042687", + "createdBy": null, + "createdTime": "2026-02-02 01:32:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:39", + "echoMap": {}, + "alarmNo": "1770733747", + "alarmDate": "1769967158344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042552", + "createdBy": null, + "createdTime": "2026-02-02 01:32:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:43", + "echoMap": {}, + "alarmNo": "1770733746", + "alarmDate": "1769967150156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060076", + "deviceName": "[109](10)江体下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122589704042520", + "createdBy": null, + "createdTime": "2026-02-02 01:32:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:29", + "echoMap": {}, + "alarmNo": "1770733745", + "alarmDate": "1769967148162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122585409075331", + "createdBy": null, + "createdTime": "2026-02-02 01:32:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:32:26", + "echoMap": {}, + "alarmNo": "1770733744", + "alarmDate": "1769967144389", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060020", + "deviceName": "[404](10)江体2#闸入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122581114108825", + "createdBy": null, + "createdTime": "2026-02-02 01:23:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:22", + "echoMap": {}, + "alarmNo": "1770733743", + "alarmDate": "1769966600967", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122581114108753", + "createdBy": null, + "createdTime": "2026-02-02 01:23:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:33:03", + "echoMap": {}, + "alarmNo": "1770733742", + "alarmDate": "1769966596236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122572524174147", + "createdBy": null, + "createdTime": "2026-02-02 01:13:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:11", + "echoMap": {}, + "alarmNo": "1770733741", + "alarmDate": "1769965989884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122572524173871", + "createdBy": null, + "createdTime": "2026-02-02 01:12:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:51", + "echoMap": {}, + "alarmNo": "1770733740", + "alarmDate": "1769965970400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122572524173505", + "createdBy": null, + "createdTime": "2026-02-02 01:12:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:12:47", + "echoMap": {}, + "alarmNo": "1770733739", + "alarmDate": "1769965945926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122559639272403", + "createdBy": null, + "createdTime": "2026-02-02 01:02:59", + "updatedBy": null, + "updatedTime": "2026-02-02 01:03:00", + "echoMap": {}, + "alarmNo": "1770733738", + "alarmDate": "1769965379004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122559639272313", + "createdBy": null, + "createdTime": "2026-02-02 01:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:03:05", + "echoMap": {}, + "alarmNo": "1770733737", + "alarmDate": "1769965373106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122559639272241", + "createdBy": null, + "createdTime": "2026-02-02 01:02:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:49", + "echoMap": {}, + "alarmNo": "1770733736", + "alarmDate": "1769965368332", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122551049336887", + "createdBy": null, + "createdTime": "2026-02-02 00:52:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:02:41", + "echoMap": {}, + "alarmNo": "1770733735", + "alarmDate": "1769964767743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754370125", + "createdBy": null, + "createdTime": "2026-02-02 00:43:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:21", + "echoMap": {}, + "alarmNo": "1770733734", + "alarmDate": "1769964200090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754370015", + "createdBy": null, + "createdTime": "2026-02-02 00:43:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:19", + "echoMap": {}, + "alarmNo": "1770733733", + "alarmDate": "1769964192716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754369969", + "createdBy": null, + "createdTime": "2026-02-02 00:43:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:11", + "echoMap": {}, + "alarmNo": "1770733732", + "alarmDate": "1769964189783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122546754369567", + "createdBy": null, + "createdTime": "2026-02-02 00:42:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:01", + "echoMap": {}, + "alarmNo": "1770733731", + "alarmDate": "1769964162551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122533869468346", + "createdBy": null, + "createdTime": "2026-02-02 00:33:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:15", + "echoMap": {}, + "alarmNo": "1770733730", + "alarmDate": "1769963593951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122533869468246", + "createdBy": null, + "createdTime": "2026-02-02 00:33:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:09", + "echoMap": {}, + "alarmNo": "1770733729", + "alarmDate": "1769963587474", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122529574500366", + "createdBy": null, + "createdTime": "2026-02-02 00:32:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:32:30", + "echoMap": {}, + "alarmNo": "1770733728", + "alarmDate": "1769963545307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984566363", + "createdBy": null, + "createdTime": "2026-02-02 00:22:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:38", + "echoMap": {}, + "alarmNo": "1770733727", + "alarmDate": "1769962957371", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984566340", + "createdBy": null, + "createdTime": "2026-02-02 00:22:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:22:37", + "echoMap": {}, + "alarmNo": "1770733726", + "alarmDate": "1769962956148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060011", + "deviceName": "[202](10)江体厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984566179", + "createdBy": null, + "createdTime": "2026-02-02 00:22:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:23:01", + "echoMap": {}, + "alarmNo": "1770733725", + "alarmDate": "1769962946346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060056", + "deviceName": "[312](10)江体1#口1F垂梯口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122520984565901", + "createdBy": null, + "createdTime": "2026-02-02 00:13:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:24", + "echoMap": {}, + "alarmNo": "1770733724", + "alarmDate": "1769962403164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122516689598474", + "createdBy": null, + "createdTime": "2026-02-02 00:13:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:12", + "echoMap": {}, + "alarmNo": "1770733723", + "alarmDate": "1769962391575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060051", + "deviceName": "[412](10)江体4#闸出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122508099664843", + "createdBy": null, + "createdTime": "2026-02-02 00:12:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:40", + "echoMap": {}, + "alarmNo": "1770733722", + "alarmDate": "1769962359271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060124", + "deviceName": "[713](10)江体站台厕所通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122508099664782", + "createdBy": null, + "createdTime": "2026-02-02 00:12:36", + "updatedBy": null, + "updatedTime": "2026-02-02 00:12:37", + "echoMap": {}, + "alarmNo": "1770733721", + "alarmDate": "1769962355791", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060086", + "deviceName": "[205](10)江体上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + }, + { + "id": "723122508099664070", + "createdBy": null, + "createdTime": "2026-02-02 00:03:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:06", + "echoMap": {}, + "alarmNo": "1770733720", + "alarmDate": "1769961784884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1025060116", + "deviceName": "[345](10)江体2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1025" + } + ] + }, + "1026": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723119042061789215", + "createdBy": null, + "createdTime": "2026-02-02 00:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:46", + "echoMap": {}, + "alarmNo": "1790499792", + "alarmDate": "1769961644547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789357", + "createdBy": null, + "createdTime": "2026-02-02 00:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:59", + "echoMap": {}, + "alarmNo": "1790499793", + "alarmDate": "1769961658164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789550", + "createdBy": null, + "createdTime": "2026-02-02 00:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:18", + "echoMap": {}, + "alarmNo": "1790499794", + "alarmDate": "1769961677402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789695", + "createdBy": null, + "createdTime": "2026-02-02 00:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:32", + "echoMap": {}, + "alarmNo": "1790499795", + "alarmDate": "1769961691325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789794", + "createdBy": null, + "createdTime": "2026-02-02 00:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:50", + "echoMap": {}, + "alarmNo": "1790499796", + "alarmDate": "1769961701223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061790054", + "createdBy": null, + "createdTime": "2026-02-02 00:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:44", + "echoMap": {}, + "alarmNo": "1790499797", + "alarmDate": "1769962242488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061790203", + "createdBy": null, + "createdTime": "2026-02-02 00:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:56", + "echoMap": {}, + "alarmNo": "1790499798", + "alarmDate": "1769962254969", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691310", + "createdBy": null, + "createdTime": "2026-02-02 00:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:20", + "echoMap": {}, + "alarmNo": "1790499799", + "alarmDate": "1769962279221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691324", + "createdBy": null, + "createdTime": "2026-02-02 00:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:21", + "echoMap": {}, + "alarmNo": "1790499800", + "alarmDate": "1769962280106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691389", + "createdBy": null, + "createdTime": "2026-02-02 00:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:26", + "echoMap": {}, + "alarmNo": "1790499801", + "alarmDate": "1769962285002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691470", + "createdBy": null, + "createdTime": "2026-02-02 00:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:32", + "echoMap": {}, + "alarmNo": "1790499802", + "alarmDate": "1769962291358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119059241658420", + "createdBy": null, + "createdTime": "2026-02-02 00:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:06", + "echoMap": {}, + "alarmNo": "1790499803", + "alarmDate": "1769962864702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536625791", + "createdBy": null, + "createdTime": "2026-02-02 00:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:19", + "echoMap": {}, + "alarmNo": "1790499804", + "alarmDate": "1769962878125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536625925", + "createdBy": null, + "createdTime": "2026-02-02 00:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:32", + "echoMap": {}, + "alarmNo": "1790499805", + "alarmDate": "1769962890747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626343", + "createdBy": null, + "createdTime": "2026-02-02 00:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:04", + "echoMap": {}, + "alarmNo": "1790499806", + "alarmDate": "1769963463236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626487", + "createdBy": null, + "createdTime": "2026-02-02 00:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:18", + "echoMap": {}, + "alarmNo": "1790499807", + "alarmDate": "1769963477077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626542", + "createdBy": null, + "createdTime": "2026-02-02 00:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:23", + "echoMap": {}, + "alarmNo": "1790499808", + "alarmDate": "1769963482040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626572", + "createdBy": null, + "createdTime": "2026-02-02 00:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:26", + "echoMap": {}, + "alarmNo": "1790499809", + "alarmDate": "1769963484643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560632", + "createdBy": null, + "createdTime": "2026-02-02 00:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:01", + "echoMap": {}, + "alarmNo": "1790499810", + "alarmDate": "1769964059931", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560729", + "createdBy": null, + "createdTime": "2026-02-02 00:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:08", + "echoMap": {}, + "alarmNo": "1790499811", + "alarmDate": "1769964067087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560785", + "createdBy": null, + "createdTime": "2026-02-02 00:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:12", + "echoMap": {}, + "alarmNo": "1790499812", + "alarmDate": "1769964071062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560829", + "createdBy": null, + "createdTime": "2026-02-02 00:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:15", + "echoMap": {}, + "alarmNo": "1790499813", + "alarmDate": "1769964074199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126561136", + "createdBy": null, + "createdTime": "2026-02-02 00:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:38", + "echoMap": {}, + "alarmNo": "1790499814", + "alarmDate": "1769964097478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119076421527611", + "createdBy": null, + "createdTime": "2026-02-02 00:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:47", + "echoMap": {}, + "alarmNo": "1790499815", + "alarmDate": "1769964645629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119085011462259", + "createdBy": null, + "createdTime": "2026-02-02 00:51:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:02", + "echoMap": {}, + "alarmNo": "1790499816", + "alarmDate": "1769964661036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119085011462386", + "createdBy": null, + "createdTime": "2026-02-02 00:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:12", + "echoMap": {}, + "alarmNo": "1790499817", + "alarmDate": "1769964670614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119085011462773", + "createdBy": null, + "createdTime": "2026-02-02 00:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:49", + "echoMap": {}, + "alarmNo": "1790499818", + "alarmDate": "1769964699920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119089306429473", + "createdBy": null, + "createdTime": "2026-02-02 01:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:57", + "echoMap": {}, + "alarmNo": "1790499819", + "alarmDate": "1769965256012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601396809", + "createdBy": null, + "createdTime": "2026-02-02 01:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:03", + "echoMap": {}, + "alarmNo": "1790499820", + "alarmDate": "1769965262487", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601396818", + "createdBy": null, + "createdTime": "2026-02-02 01:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:04", + "echoMap": {}, + "alarmNo": "1790499821", + "alarmDate": "1769965262888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601397177", + "createdBy": null, + "createdTime": "2026-02-02 01:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:30", + "echoMap": {}, + "alarmNo": "1790499822", + "alarmDate": "1769965289286", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601397540", + "createdBy": null, + "createdTime": "2026-02-02 01:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:52", + "echoMap": {}, + "alarmNo": "1790499823", + "alarmDate": "1769965850895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601397674", + "createdBy": null, + "createdTime": "2026-02-02 01:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:02", + "echoMap": {}, + "alarmNo": "1790499824", + "alarmDate": "1769965860988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331459", + "createdBy": null, + "createdTime": "2026-02-02 01:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:20", + "echoMap": {}, + "alarmNo": "1790499825", + "alarmDate": "1769965879176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331686", + "createdBy": null, + "createdTime": "2026-02-02 01:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:37", + "echoMap": {}, + "alarmNo": "1790499826", + "alarmDate": "1769965895636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331888", + "createdBy": null, + "createdTime": "2026-02-02 01:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:46", + "echoMap": {}, + "alarmNo": "1790499827", + "alarmDate": "1769966444960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331992", + "createdBy": null, + "createdTime": "2026-02-02 01:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:53", + "echoMap": {}, + "alarmNo": "1790499828", + "alarmDate": "1769966452394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191332285", + "createdBy": null, + "createdTime": "2026-02-02 01:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:15", + "echoMap": {}, + "alarmNo": "1790499829", + "alarmDate": "1769966474414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119110781265933", + "createdBy": null, + "createdTime": "2026-02-02 01:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:26", + "echoMap": {}, + "alarmNo": "1790499830", + "alarmDate": "1769966484829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233249", + "createdBy": null, + "createdTime": "2026-02-02 01:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:32", + "echoMap": {}, + "alarmNo": "1790499831", + "alarmDate": "1769966490669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233280", + "createdBy": null, + "createdTime": "2026-02-02 01:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:34", + "echoMap": {}, + "alarmNo": "1790499832", + "alarmDate": "1769966493081", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233309", + "createdBy": null, + "createdTime": "2026-02-02 01:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:36", + "echoMap": {}, + "alarmNo": "1790499833", + "alarmDate": "1769966494619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233495", + "createdBy": null, + "createdTime": "2026-02-02 01:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:44", + "echoMap": {}, + "alarmNo": "1790499834", + "alarmDate": "1769967042758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233787", + "createdBy": null, + "createdTime": "2026-02-02 01:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:06", + "echoMap": {}, + "alarmNo": "1790499835", + "alarmDate": "1769967065166", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119123666167941", + "createdBy": null, + "createdTime": "2026-02-02 01:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:28", + "echoMap": {}, + "alarmNo": "1790499836", + "alarmDate": "1769967086581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119123666168120", + "createdBy": null, + "createdTime": "2026-02-02 01:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:41", + "echoMap": {}, + "alarmNo": "1790499837", + "alarmDate": "1769967099791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119123666168371", + "createdBy": null, + "createdTime": "2026-02-02 01:40:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:51", + "echoMap": {}, + "alarmNo": "1790499838", + "alarmDate": "1769967649995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119127961135151", + "createdBy": null, + "createdTime": "2026-02-02 01:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:01", + "echoMap": {}, + "alarmNo": "1790499839", + "alarmDate": "1769967660102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119132256102608", + "createdBy": null, + "createdTime": "2026-02-02 01:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:22", + "echoMap": {}, + "alarmNo": "1790499840", + "alarmDate": "1769967680656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037005", + "createdBy": null, + "createdTime": "2026-02-02 01:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:56", + "echoMap": {}, + "alarmNo": "1790499841", + "alarmDate": "1769968255227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037224", + "createdBy": null, + "createdTime": "2026-02-02 01:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:11", + "echoMap": {}, + "alarmNo": "1790499842", + "alarmDate": "1769968269985", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037232", + "createdBy": null, + "createdTime": "2026-02-02 01:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:12", + "echoMap": {}, + "alarmNo": "1790499843", + "alarmDate": "1769968270561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037276", + "createdBy": null, + "createdTime": "2026-02-02 01:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:15", + "echoMap": {}, + "alarmNo": "1790499844", + "alarmDate": "1769968273575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037304", + "createdBy": null, + "createdTime": "2026-02-02 01:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:16", + "echoMap": {}, + "alarmNo": "1790499845", + "alarmDate": "1769968275383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037565", + "createdBy": null, + "createdTime": "2026-02-02 01:51:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:36", + "echoMap": {}, + "alarmNo": "1790499846", + "alarmDate": "1769968294862", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435971637", + "createdBy": null, + "createdTime": "2026-02-02 02:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:54", + "echoMap": {}, + "alarmNo": "1790499847", + "alarmDate": "1769968852645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435971910", + "createdBy": null, + "createdTime": "2026-02-02 02:01:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:14", + "echoMap": {}, + "alarmNo": "1790499848", + "alarmDate": "1769968872430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435972126", + "createdBy": null, + "createdTime": "2026-02-02 02:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:30", + "echoMap": {}, + "alarmNo": "1790499849", + "alarmDate": "1769968888596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435972195", + "createdBy": null, + "createdTime": "2026-02-02 02:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:35", + "echoMap": {}, + "alarmNo": "1790499850", + "alarmDate": "1769968893771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119158025906549", + "createdBy": null, + "createdTime": "2026-02-02 02:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:04", + "echoMap": {}, + "alarmNo": "1790499851", + "alarmDate": "1769969462705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119158025906934", + "createdBy": null, + "createdTime": "2026-02-02 02:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:33", + "echoMap": {}, + "alarmNo": "1790499852", + "alarmDate": "1769969491984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119162320873505", + "createdBy": null, + "createdTime": "2026-02-02 02:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:48", + "echoMap": {}, + "alarmNo": "1790499853", + "alarmDate": "1769969501643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615840835", + "createdBy": null, + "createdTime": "2026-02-02 02:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:42", + "echoMap": {}, + "alarmNo": "1790499854", + "alarmDate": "1769970041103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841003", + "createdBy": null, + "createdTime": "2026-02-02 02:20:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:56", + "echoMap": {}, + "alarmNo": "1790499855", + "alarmDate": "1769970054463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841031", + "createdBy": null, + "createdTime": "2026-02-02 02:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:57", + "echoMap": {}, + "alarmNo": "1790499856", + "alarmDate": "1769970056210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841063", + "createdBy": null, + "createdTime": "2026-02-02 02:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:00", + "echoMap": {}, + "alarmNo": "1790499857", + "alarmDate": "1769970058463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841184", + "createdBy": null, + "createdTime": "2026-02-02 02:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:09", + "echoMap": {}, + "alarmNo": "1790499858", + "alarmDate": "1769970067501", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841471", + "createdBy": null, + "createdTime": "2026-02-02 02:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:29", + "echoMap": {}, + "alarmNo": "1790499859", + "alarmDate": "1769970088288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205775633", + "createdBy": null, + "createdTime": "2026-02-02 02:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:58", + "echoMap": {}, + "alarmNo": "1790499860", + "alarmDate": "1769970657276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205775864", + "createdBy": null, + "createdTime": "2026-02-02 02:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:16", + "echoMap": {}, + "alarmNo": "1790499861", + "alarmDate": "1769970674568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205775934", + "createdBy": null, + "createdTime": "2026-02-02 02:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:21", + "echoMap": {}, + "alarmNo": "1790499862", + "alarmDate": "1769970679471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205776176", + "createdBy": null, + "createdTime": "2026-02-02 02:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:38", + "echoMap": {}, + "alarmNo": "1790499863", + "alarmDate": "1769970697190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710090", + "createdBy": null, + "createdTime": "2026-02-02 02:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:46", + "echoMap": {}, + "alarmNo": "1790499864", + "alarmDate": "1769971245365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710491", + "createdBy": null, + "createdTime": "2026-02-02 02:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:17", + "echoMap": {}, + "alarmNo": "1790499865", + "alarmDate": "1769971275909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710505", + "createdBy": null, + "createdTime": "2026-02-02 02:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:18", + "echoMap": {}, + "alarmNo": "1790499866", + "alarmDate": "1769971276595", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710662", + "createdBy": null, + "createdTime": "2026-02-02 02:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:29", + "echoMap": {}, + "alarmNo": "1790499867", + "alarmDate": "1769971288142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710689", + "createdBy": null, + "createdTime": "2026-02-02 02:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:31", + "echoMap": {}, + "alarmNo": "1790499868", + "alarmDate": "1769971289780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710757", + "createdBy": null, + "createdTime": "2026-02-02 02:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:35", + "echoMap": {}, + "alarmNo": "1790499869", + "alarmDate": "1769971294112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119188090677272", + "createdBy": null, + "createdTime": "2026-02-02 02:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:39", + "echoMap": {}, + "alarmNo": "1790499870", + "alarmDate": "1769971298098", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385644686", + "createdBy": null, + "createdTime": "2026-02-02 02:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:44", + "echoMap": {}, + "alarmNo": "1790499871", + "alarmDate": "1769971843287", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385644716", + "createdBy": null, + "createdTime": "2026-02-02 02:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:46", + "echoMap": {}, + "alarmNo": "1790499872", + "alarmDate": "1769971845312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385645058", + "createdBy": null, + "createdTime": "2026-02-02 02:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:12", + "echoMap": {}, + "alarmNo": "1790499873", + "alarmDate": "1769971871134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385645354", + "createdBy": null, + "createdTime": "2026-02-02 02:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:35", + "echoMap": {}, + "alarmNo": "1790499874", + "alarmDate": "1769971893947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579295", + "createdBy": null, + "createdTime": "2026-02-02 03:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:45", + "echoMap": {}, + "alarmNo": "1790499875", + "alarmDate": "1769972444121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579450", + "createdBy": null, + "createdTime": "2026-02-02 03:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:57", + "echoMap": {}, + "alarmNo": "1790499876", + "alarmDate": "1769972455579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579595", + "createdBy": null, + "createdTime": "2026-02-02 03:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:08", + "echoMap": {}, + "alarmNo": "1790499877", + "alarmDate": "1769972466456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579760", + "createdBy": null, + "createdTime": "2026-02-02 03:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:20", + "echoMap": {}, + "alarmNo": "1790499878", + "alarmDate": "1769972479117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514056", + "createdBy": null, + "createdTime": "2026-02-02 03:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:57", + "echoMap": {}, + "alarmNo": "1790499879", + "alarmDate": "1769973056260", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514080", + "createdBy": null, + "createdTime": "2026-02-02 03:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:59", + "echoMap": {}, + "alarmNo": "1790499880", + "alarmDate": "1769973057753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514233", + "createdBy": null, + "createdTime": "2026-02-02 03:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:10", + "echoMap": {}, + "alarmNo": "1790499881", + "alarmDate": "1769973069164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514258", + "createdBy": null, + "createdTime": "2026-02-02 03:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:12", + "echoMap": {}, + "alarmNo": "1790499882", + "alarmDate": "1769973070766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514261", + "createdBy": null, + "createdTime": "2026-02-02 03:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:12", + "echoMap": {}, + "alarmNo": "1790499883", + "alarmDate": "1769973070847", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514488", + "createdBy": null, + "createdTime": "2026-02-02 03:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:29", + "echoMap": {}, + "alarmNo": "1790499884", + "alarmDate": "1769973087886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450415623", + "createdBy": null, + "createdTime": "2026-02-02 03:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:53", + "echoMap": {}, + "alarmNo": "1790499886", + "alarmDate": "1769973646333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060060", + "deviceName": "[110](10)三门下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450415716", + "createdBy": null, + "createdTime": "2026-02-02 03:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:54", + "echoMap": {}, + "alarmNo": "1790499887", + "alarmDate": "1769973652897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450416070", + "createdBy": null, + "createdTime": "2026-02-02 03:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:21", + "echoMap": {}, + "alarmNo": "1790499888", + "alarmDate": "1769973679763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450416199", + "createdBy": null, + "createdTime": "2026-02-02 03:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:30", + "echoMap": {}, + "alarmNo": "1790499889", + "alarmDate": "1769973689069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350294", + "createdBy": null, + "createdTime": "2026-02-02 03:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:56", + "echoMap": {}, + "alarmNo": "1790499890", + "alarmDate": "1769974255187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350386", + "createdBy": null, + "createdTime": "2026-02-02 03:31:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:03", + "echoMap": {}, + "alarmNo": "1790499891", + "alarmDate": "1769974261909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350716", + "createdBy": null, + "createdTime": "2026-02-02 03:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:28", + "echoMap": {}, + "alarmNo": "1790499892", + "alarmDate": "1769974286863", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350803", + "createdBy": null, + "createdTime": "2026-02-02 03:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:34", + "echoMap": {}, + "alarmNo": "1790499893", + "alarmDate": "1769974293331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350896", + "createdBy": null, + "createdTime": "2026-02-02 03:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:41", + "echoMap": {}, + "alarmNo": "1790499894", + "alarmDate": "1769974300294", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040351014", + "createdBy": null, + "createdTime": "2026-02-02 03:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:42", + "echoMap": {}, + "alarmNo": "1790499895", + "alarmDate": "1769974841419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119235335317537", + "createdBy": null, + "createdTime": "2026-02-02 03:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:46", + "echoMap": {}, + "alarmNo": "1790499896", + "alarmDate": "1769974845479", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119239630285019", + "createdBy": null, + "createdTime": "2026-02-02 03:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:01", + "echoMap": {}, + "alarmNo": "1790499897", + "alarmDate": "1769974859835", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119239630285227", + "createdBy": null, + "createdTime": "2026-02-02 03:41:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:14", + "echoMap": {}, + "alarmNo": "1790499898", + "alarmDate": "1769974872634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119239630285452", + "createdBy": null, + "createdTime": "2026-02-02 03:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:28", + "echoMap": {}, + "alarmNo": "1790499899", + "alarmDate": "1769974886518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119248220219533", + "createdBy": null, + "createdTime": "2026-02-02 03:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:33", + "echoMap": {}, + "alarmNo": "1790499900", + "alarmDate": "1769975443657", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119248220219877", + "createdBy": null, + "createdTime": "2026-02-02 03:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:04", + "echoMap": {}, + "alarmNo": "1790499901", + "alarmDate": "1769975462666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119248220220104", + "createdBy": null, + "createdTime": "2026-02-02 03:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:16", + "echoMap": {}, + "alarmNo": "1790499902", + "alarmDate": "1769975474982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119256810154091", + "createdBy": null, + "createdTime": "2026-02-02 03:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:32", + "echoMap": {}, + "alarmNo": "1790499903", + "alarmDate": "1769975490857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119256810154160", + "createdBy": null, + "createdTime": "2026-02-02 03:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:35", + "echoMap": {}, + "alarmNo": "1790499904", + "alarmDate": "1769975494481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119256810154397", + "createdBy": null, + "createdTime": "2026-02-02 04:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:44", + "echoMap": {}, + "alarmNo": "1790499905", + "alarmDate": "1769976042597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400088626", + "createdBy": null, + "createdTime": "2026-02-02 04:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:17", + "echoMap": {}, + "alarmNo": "1790499906", + "alarmDate": "1769976076162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400088646", + "createdBy": null, + "createdTime": "2026-02-02 04:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:18", + "echoMap": {}, + "alarmNo": "1790499907", + "alarmDate": "1769976077228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400088990", + "createdBy": null, + "createdTime": "2026-02-02 04:01:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:39", + "echoMap": {}, + "alarmNo": "1790499908", + "alarmDate": "1769976098428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400089213", + "createdBy": null, + "createdTime": "2026-02-02 04:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:48", + "echoMap": {}, + "alarmNo": "1790499910", + "alarmDate": "1769976646613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119269695055886", + "createdBy": null, + "createdTime": "2026-02-02 04:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:02", + "echoMap": {}, + "alarmNo": "1790499911", + "alarmDate": "1769976660579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119273990023228", + "createdBy": null, + "createdTime": "2026-02-02 04:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:08", + "echoMap": {}, + "alarmNo": "1790499912", + "alarmDate": "1769976667408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119273990023744", + "createdBy": null, + "createdTime": "2026-02-02 04:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:49", + "echoMap": {}, + "alarmNo": "1790499913", + "alarmDate": "1769976699299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119282579957904", + "createdBy": null, + "createdTime": "2026-02-02 04:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:03", + "echoMap": {}, + "alarmNo": "1790499914", + "alarmDate": "1769977261794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119282579958173", + "createdBy": null, + "createdTime": "2026-02-02 04:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:19", + "echoMap": {}, + "alarmNo": "1790499915", + "alarmDate": "1769977278436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119282579958201", + "createdBy": null, + "createdTime": "2026-02-02 04:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:21", + "echoMap": {}, + "alarmNo": "1790499916", + "alarmDate": "1769977279838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892524", + "createdBy": null, + "createdTime": "2026-02-02 04:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:54", + "echoMap": {}, + "alarmNo": "1790499917", + "alarmDate": "1769977852767", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892645", + "createdBy": null, + "createdTime": "2026-02-02 04:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:01", + "echoMap": {}, + "alarmNo": "1790499918", + "alarmDate": "1769977859993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892913", + "createdBy": null, + "createdTime": "2026-02-02 04:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:23", + "echoMap": {}, + "alarmNo": "1790499919", + "alarmDate": "1769977876621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892982", + "createdBy": null, + "createdTime": "2026-02-02 04:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:21", + "echoMap": {}, + "alarmNo": "1790499920", + "alarmDate": "1769977880480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759826954", + "createdBy": null, + "createdTime": "2026-02-02 04:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:39", + "echoMap": {}, + "alarmNo": "1790499921", + "alarmDate": "1769977898168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759826989", + "createdBy": null, + "createdTime": "2026-02-02 04:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:49", + "echoMap": {}, + "alarmNo": "1790499922", + "alarmDate": "1769977900073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759827235", + "createdBy": null, + "createdTime": "2026-02-02 04:40:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:50", + "echoMap": {}, + "alarmNo": "1790499923", + "alarmDate": "1769978449405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759827777", + "createdBy": null, + "createdTime": "2026-02-02 04:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:24", + "echoMap": {}, + "alarmNo": "1790499924", + "alarmDate": "1769978483176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349761727", + "createdBy": null, + "createdTime": "2026-02-02 04:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:39", + "echoMap": {}, + "alarmNo": "1790499925", + "alarmDate": "1769978498423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349762004", + "createdBy": null, + "createdTime": "2026-02-02 04:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:52", + "echoMap": {}, + "alarmNo": "1790499926", + "alarmDate": "1769979050649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349762192", + "createdBy": null, + "createdTime": "2026-02-02 04:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:03", + "echoMap": {}, + "alarmNo": "1790499927", + "alarmDate": "1769979062125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349762320", + "createdBy": null, + "createdTime": "2026-02-02 04:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:11", + "echoMap": {}, + "alarmNo": "1790499928", + "alarmDate": "1769979069749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696196", + "createdBy": null, + "createdTime": "2026-02-02 04:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:22", + "echoMap": {}, + "alarmNo": "1790499929", + "alarmDate": "1769979081484", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696474", + "createdBy": null, + "createdTime": "2026-02-02 04:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:39", + "echoMap": {}, + "alarmNo": "1790499930", + "alarmDate": "1769979097767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696696", + "createdBy": null, + "createdTime": "2026-02-02 05:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:48", + "echoMap": {}, + "alarmNo": "1790499931", + "alarmDate": "1769979646914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696984", + "createdBy": null, + "createdTime": "2026-02-02 05:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:07", + "echoMap": {}, + "alarmNo": "1790499932", + "alarmDate": "1769979666172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939697066", + "createdBy": null, + "createdTime": "2026-02-02 05:01:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:42", + "echoMap": {}, + "alarmNo": "1790499933", + "alarmDate": "1769979671823", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939697105", + "createdBy": null, + "createdTime": "2026-02-02 05:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:15", + "echoMap": {}, + "alarmNo": "1790499934", + "alarmDate": "1769979674248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529630750", + "createdBy": null, + "createdTime": "2026-02-02 05:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:23", + "echoMap": {}, + "alarmNo": "1790499935", + "alarmDate": "1769979681958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529630814", + "createdBy": null, + "createdTime": "2026-02-02 05:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:27", + "echoMap": {}, + "alarmNo": "1790499936", + "alarmDate": "1769979685963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529631510", + "createdBy": null, + "createdTime": "2026-02-02 05:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:10", + "echoMap": {}, + "alarmNo": "1790499937", + "alarmDate": "1769980269144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529631729", + "createdBy": null, + "createdTime": "2026-02-02 05:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:55", + "echoMap": {}, + "alarmNo": "1790499938", + "alarmDate": "1769980284700", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119329824598075", + "createdBy": null, + "createdTime": "2026-02-02 05:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:30", + "echoMap": {}, + "alarmNo": "1790499939", + "alarmDate": "1769980289444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414532937", + "createdBy": null, + "createdTime": "2026-02-02 05:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:53", + "echoMap": {}, + "alarmNo": "1790499940", + "alarmDate": "1769980852020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414532956", + "createdBy": null, + "createdTime": "2026-02-02 05:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:54", + "echoMap": {}, + "alarmNo": "1790499941", + "alarmDate": "1769980853022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060039", + "deviceName": "[210](10)三门6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414533037", + "createdBy": null, + "createdTime": "2026-02-02 05:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:59", + "echoMap": {}, + "alarmNo": "1790499942", + "alarmDate": "1769980858140", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414533109", + "createdBy": null, + "createdTime": "2026-02-02 05:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:04", + "echoMap": {}, + "alarmNo": "1790499943", + "alarmDate": "1769980862523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414533501", + "createdBy": null, + "createdTime": "2026-02-02 05:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:29", + "echoMap": {}, + "alarmNo": "1790499944", + "alarmDate": "1769980887641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467201", + "createdBy": null, + "createdTime": "2026-02-02 05:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:40", + "echoMap": {}, + "alarmNo": "1790499945", + "alarmDate": "1769980898872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467342", + "createdBy": null, + "createdTime": "2026-02-02 05:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:42", + "echoMap": {}, + "alarmNo": "1790499946", + "alarmDate": "1769981440836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467380", + "createdBy": null, + "createdTime": "2026-02-02 05:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:54", + "echoMap": {}, + "alarmNo": "1790499947", + "alarmDate": "1769981444406", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467438", + "createdBy": null, + "createdTime": "2026-02-02 05:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:49", + "echoMap": {}, + "alarmNo": "1790499948", + "alarmDate": "1769981448150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467516", + "createdBy": null, + "createdTime": "2026-02-02 05:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:54", + "echoMap": {}, + "alarmNo": "1790499949", + "alarmDate": "1769981453034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467695", + "createdBy": null, + "createdTime": "2026-02-02 05:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:06", + "echoMap": {}, + "alarmNo": "1790499950", + "alarmDate": "1769981464802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467790", + "createdBy": null, + "createdTime": "2026-02-02 05:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:12", + "echoMap": {}, + "alarmNo": "1790499951", + "alarmDate": "1769981470839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594401923", + "createdBy": null, + "createdTime": "2026-02-02 05:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:53", + "echoMap": {}, + "alarmNo": "1790499952", + "alarmDate": "1769982043064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402005", + "createdBy": null, + "createdTime": "2026-02-02 05:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:01", + "echoMap": {}, + "alarmNo": "1790499953", + "alarmDate": "1769982048343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402198", + "createdBy": null, + "createdTime": "2026-02-02 05:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:01", + "echoMap": {}, + "alarmNo": "1790499954", + "alarmDate": "1769982059825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402464", + "createdBy": null, + "createdTime": "2026-02-02 05:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:18", + "echoMap": {}, + "alarmNo": "1790499955", + "alarmDate": "1769982077354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402601", + "createdBy": null, + "createdTime": "2026-02-02 05:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:27", + "echoMap": {}, + "alarmNo": "1790499956", + "alarmDate": "1769982085780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402620", + "createdBy": null, + "createdTime": "2026-02-02 05:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:28", + "echoMap": {}, + "alarmNo": "1790499957", + "alarmDate": "1769982086823", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119359889369121", + "createdBy": null, + "createdTime": "2026-02-02 05:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:54", + "echoMap": {}, + "alarmNo": "1790499958", + "alarmDate": "1769982100264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184336509", + "createdBy": null, + "createdTime": "2026-02-02 05:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:34", + "echoMap": {}, + "alarmNo": "1790499960", + "alarmDate": "1769982643036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184336888", + "createdBy": null, + "createdTime": "2026-02-02 05:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:14", + "echoMap": {}, + "alarmNo": "1790499961", + "alarmDate": "1769982668466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337008", + "createdBy": null, + "createdTime": "2026-02-02 05:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:17", + "echoMap": {}, + "alarmNo": "1790499962", + "alarmDate": "1769982676496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337141", + "createdBy": null, + "createdTime": "2026-02-02 05:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:27", + "echoMap": {}, + "alarmNo": "1790499963", + "alarmDate": "1769982685713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337156", + "createdBy": null, + "createdTime": "2026-02-02 05:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:28", + "echoMap": {}, + "alarmNo": "1790499964", + "alarmDate": "1769982686589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337213", + "createdBy": null, + "createdTime": "2026-02-02 05:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:06", + "echoMap": {}, + "alarmNo": "1790499965", + "alarmDate": "1769982690102", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337224", + "createdBy": null, + "createdTime": "2026-02-02 05:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:59", + "echoMap": {}, + "alarmNo": "1790499966", + "alarmDate": "1769982690840", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337352", + "createdBy": null, + "createdTime": "2026-02-02 05:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:39", + "echoMap": {}, + "alarmNo": "1790499967", + "alarmDate": "1769982698486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238402", + "createdBy": null, + "createdTime": "2026-02-02 06:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:48", + "echoMap": {}, + "alarmNo": "1790499968", + "alarmDate": "1769983246611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238495", + "createdBy": null, + "createdTime": "2026-02-02 06:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:05", + "echoMap": {}, + "alarmNo": "1790499969", + "alarmDate": "1769983252029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238584", + "createdBy": null, + "createdTime": "2026-02-02 06:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:58", + "echoMap": {}, + "alarmNo": "1790499970", + "alarmDate": "1769983256709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238636", + "createdBy": null, + "createdTime": "2026-02-02 06:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:55", + "echoMap": {}, + "alarmNo": "1790499971", + "alarmDate": "1769983259200", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069239056", + "createdBy": null, + "createdTime": "2026-02-02 06:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:30", + "echoMap": {}, + "alarmNo": "1790499972", + "alarmDate": "1769983284019", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069239281", + "createdBy": null, + "createdTime": "2026-02-02 06:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:37", + "echoMap": {}, + "alarmNo": "1790499973", + "alarmDate": "1769983296477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140288", + "createdBy": null, + "createdTime": "2026-02-02 06:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:53", + "echoMap": {}, + "alarmNo": "1790499974", + "alarmDate": "1769983842373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140359", + "createdBy": null, + "createdTime": "2026-02-02 06:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:48", + "echoMap": {}, + "alarmNo": "1790499975", + "alarmDate": "1769983846681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140626", + "createdBy": null, + "createdTime": "2026-02-02 06:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:04", + "echoMap": {}, + "alarmNo": "1790499976", + "alarmDate": "1769983862588", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140635", + "createdBy": null, + "createdTime": "2026-02-02 06:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:04", + "echoMap": {}, + "alarmNo": "1790499977", + "alarmDate": "1769983862990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140672", + "createdBy": null, + "createdTime": "2026-02-02 06:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:06", + "echoMap": {}, + "alarmNo": "1790499978", + "alarmDate": "1769983865086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140731", + "createdBy": null, + "createdTime": "2026-02-02 06:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:10", + "echoMap": {}, + "alarmNo": "1790499979", + "alarmDate": "1769983868611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140803", + "createdBy": null, + "createdTime": "2026-02-02 06:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:07", + "echoMap": {}, + "alarmNo": "1790499980", + "alarmDate": "1769983873312", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140874", + "createdBy": null, + "createdTime": "2026-02-02 06:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:49", + "echoMap": {}, + "alarmNo": "1790499981", + "alarmDate": "1769983877388", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140968", + "createdBy": null, + "createdTime": "2026-02-02 06:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:24", + "echoMap": {}, + "alarmNo": "1790499982", + "alarmDate": "1769983882664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060039", + "deviceName": "[210](10)三门6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119394249107490", + "createdBy": null, + "createdTime": "2026-02-02 06:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:37", + "echoMap": {}, + "alarmNo": "1790499983", + "alarmDate": "1769983896205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075030", + "createdBy": null, + "createdTime": "2026-02-02 06:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:49", + "echoMap": {}, + "alarmNo": "1790499984", + "alarmDate": "1769984448362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075328", + "createdBy": null, + "createdTime": "2026-02-02 06:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:08", + "echoMap": {}, + "alarmNo": "1790499985", + "alarmDate": "1769984467317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075331", + "createdBy": null, + "createdTime": "2026-02-02 06:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:49", + "echoMap": {}, + "alarmNo": "1790499986", + "alarmDate": "1769984467633", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075379", + "createdBy": null, + "createdTime": "2026-02-02 06:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:11", + "echoMap": {}, + "alarmNo": "1790499987", + "alarmDate": "1769984470408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075398", + "createdBy": null, + "createdTime": "2026-02-02 06:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:12", + "echoMap": {}, + "alarmNo": "1790499988", + "alarmDate": "1769984471481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075497", + "createdBy": null, + "createdTime": "2026-02-02 06:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:42", + "echoMap": {}, + "alarmNo": "1790499989", + "alarmDate": "1769984477754", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009374", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:36", + "echoMap": {}, + "alarmNo": "1790499990", + "alarmDate": "1769984495362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009614", + "createdBy": null, + "createdTime": "2026-02-02 06:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:45", + "echoMap": {}, + "alarmNo": "1790499991", + "alarmDate": "1769985044449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009922", + "createdBy": null, + "createdTime": "2026-02-02 06:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:18", + "echoMap": {}, + "alarmNo": "1790499992", + "alarmDate": "1769985065083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009936", + "createdBy": null, + "createdTime": "2026-02-02 06:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:24", + "echoMap": {}, + "alarmNo": "1790499993", + "alarmDate": "1769985065883", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134010213", + "createdBy": null, + "createdTime": "2026-02-02 06:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:24", + "echoMap": {}, + "alarmNo": "1790499994", + "alarmDate": "1769985083322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723943962", + "createdBy": null, + "createdTime": "2026-02-02 06:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:23", + "echoMap": {}, + "alarmNo": "1790499995", + "alarmDate": "1769985089830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944336", + "createdBy": null, + "createdTime": "2026-02-02 06:40:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:50", + "echoMap": {}, + "alarmNo": "1790499996", + "alarmDate": "1769985648739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944397", + "createdBy": null, + "createdTime": "2026-02-02 06:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:59", + "echoMap": {}, + "alarmNo": "1790499997", + "alarmDate": "1769985652566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944441", + "createdBy": null, + "createdTime": "2026-02-02 06:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:56", + "echoMap": {}, + "alarmNo": "1790499998", + "alarmDate": "1769985655355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944456", + "createdBy": null, + "createdTime": "2026-02-02 06:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:57", + "echoMap": {}, + "alarmNo": "1790499999", + "alarmDate": "1769985655996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944537", + "createdBy": null, + "createdTime": "2026-02-02 06:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:07", + "echoMap": {}, + "alarmNo": "1790500000", + "alarmDate": "1769985661053", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944672", + "createdBy": null, + "createdTime": "2026-02-02 06:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:11", + "echoMap": {}, + "alarmNo": "1790500001", + "alarmDate": "1769985669885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060071", + "deviceName": "[106](10)三门上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944797", + "createdBy": null, + "createdTime": "2026-02-02 06:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:25", + "echoMap": {}, + "alarmNo": "1790500002", + "alarmDate": "1769985678465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944810", + "createdBy": null, + "createdTime": "2026-02-02 06:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:37", + "echoMap": {}, + "alarmNo": "1790500003", + "alarmDate": "1769985679112", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878553", + "createdBy": null, + "createdTime": "2026-02-02 06:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:36", + "echoMap": {}, + "alarmNo": "1790500004", + "alarmDate": "1769985690104", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878554", + "createdBy": null, + "createdTime": "2026-02-02 06:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:31", + "echoMap": {}, + "alarmNo": "1790500005", + "alarmDate": "1769985690111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878717", + "createdBy": null, + "createdTime": "2026-02-02 06:41:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:24", + "echoMap": {}, + "alarmNo": "1790500006", + "alarmDate": "1769985700755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878734", + "createdBy": null, + "createdTime": "2026-02-02 06:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:51", + "echoMap": {}, + "alarmNo": "1790500007", + "alarmDate": "1769985702941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878845", + "createdBy": null, + "createdTime": "2026-02-02 06:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:11", + "echoMap": {}, + "alarmNo": "1790500008", + "alarmDate": "1769986242761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878854", + "createdBy": null, + "createdTime": "2026-02-02 06:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:54", + "echoMap": {}, + "alarmNo": "1790500009", + "alarmDate": "1769986243222", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878878", + "createdBy": null, + "createdTime": "2026-02-02 06:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1790500010", + "alarmDate": "1769986244297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878879", + "createdBy": null, + "createdTime": "2026-02-02 06:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:30", + "echoMap": {}, + "alarmNo": "1790500011", + "alarmDate": "1769986244321", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313879076", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:56", + "echoMap": {}, + "alarmNo": "1790500012", + "alarmDate": "1769986254592", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313879186", + "createdBy": null, + "createdTime": "2026-02-02 06:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:01", + "echoMap": {}, + "alarmNo": "1790500013", + "alarmDate": "1769986260300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313879188", + "createdBy": null, + "createdTime": "2026-02-02 06:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:19", + "echoMap": {}, + "alarmNo": "1790500014", + "alarmDate": "1769986260365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119432903813133", + "createdBy": null, + "createdTime": "2026-02-02 06:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:22", + "echoMap": {}, + "alarmNo": "1790500015", + "alarmDate": "1769986281203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119432903813168", + "createdBy": null, + "createdTime": "2026-02-02 06:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:51", + "echoMap": {}, + "alarmNo": "1790500016", + "alarmDate": "1769986282956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119432903813195", + "createdBy": null, + "createdTime": "2026-02-02 06:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:31", + "echoMap": {}, + "alarmNo": "1790500017", + "alarmDate": "1769986284290", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119437198780441", + "createdBy": null, + "createdTime": "2026-02-02 07:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:22", + "echoMap": {}, + "alarmNo": "1790500018", + "alarmDate": "1769986875937", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119437198780446", + "createdBy": null, + "createdTime": "2026-02-02 07:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:17", + "echoMap": {}, + "alarmNo": "1790500019", + "alarmDate": "1769986876047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493747884", + "createdBy": null, + "createdTime": "2026-02-02 07:01:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:49", + "echoMap": {}, + "alarmNo": "1790500020", + "alarmDate": "1769986888259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493747908", + "createdBy": null, + "createdTime": "2026-02-02 07:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:30", + "echoMap": {}, + "alarmNo": "1790500021", + "alarmDate": "1769986889514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493747993", + "createdBy": null, + "createdTime": "2026-02-02 07:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:36", + "echoMap": {}, + "alarmNo": "1790500022", + "alarmDate": "1769986894755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748018", + "createdBy": null, + "createdTime": "2026-02-02 07:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:37", + "echoMap": {}, + "alarmNo": "1790500023", + "alarmDate": "1769986896114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748224", + "createdBy": null, + "createdTime": "2026-02-02 07:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:57", + "echoMap": {}, + "alarmNo": "1790500024", + "alarmDate": "1769987443361", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060103", + "deviceName": "[329](10)三门1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748240", + "createdBy": null, + "createdTime": "2026-02-02 07:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:09", + "echoMap": {}, + "alarmNo": "1790500025", + "alarmDate": "1769987444002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748260", + "createdBy": null, + "createdTime": "2026-02-02 07:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:46", + "echoMap": {}, + "alarmNo": "1790500026", + "alarmDate": "1769987444927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748285", + "createdBy": null, + "createdTime": "2026-02-02 07:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:47", + "echoMap": {}, + "alarmNo": "1790500027", + "alarmDate": "1769987446215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748337", + "createdBy": null, + "createdTime": "2026-02-02 07:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:55", + "echoMap": {}, + "alarmNo": "1790500028", + "alarmDate": "1769987448785", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682483", + "createdBy": null, + "createdTime": "2026-02-02 07:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:20", + "echoMap": {}, + "alarmNo": "1790500029", + "alarmDate": "1769987482588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682495", + "createdBy": null, + "createdTime": "2026-02-02 07:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:24", + "echoMap": {}, + "alarmNo": "1790500030", + "alarmDate": "1769987483110", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682511", + "createdBy": null, + "createdTime": "2026-02-02 07:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:25", + "echoMap": {}, + "alarmNo": "1790500031", + "alarmDate": "1769987483765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682651", + "createdBy": null, + "createdTime": "2026-02-02 07:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:32", + "echoMap": {}, + "alarmNo": "1790500032", + "alarmDate": "1769987491117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682751", + "createdBy": null, + "createdTime": "2026-02-02 07:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:46", + "echoMap": {}, + "alarmNo": "1790500033", + "alarmDate": "1769987496872", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682805", + "createdBy": null, + "createdTime": "2026-02-02 07:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:41", + "echoMap": {}, + "alarmNo": "1790500034", + "alarmDate": "1769987499954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682833", + "createdBy": null, + "createdTime": "2026-02-02 07:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:42", + "echoMap": {}, + "alarmNo": "1790500035", + "alarmDate": "1769987501900", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682953", + "createdBy": null, + "createdTime": "2026-02-02 07:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:34", + "echoMap": {}, + "alarmNo": "1790500036", + "alarmDate": "1769988042945", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682980", + "createdBy": null, + "createdTime": "2026-02-02 07:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:10", + "echoMap": {}, + "alarmNo": "1790500037", + "alarmDate": "1769988044252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083683017", + "createdBy": null, + "createdTime": "2026-02-02 07:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:49", + "echoMap": {}, + "alarmNo": "1790500038", + "alarmDate": "1769988046114", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083683024", + "createdBy": null, + "createdTime": "2026-02-02 07:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:47", + "echoMap": {}, + "alarmNo": "1790500039", + "alarmDate": "1769988046356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083683113", + "createdBy": null, + "createdTime": "2026-02-02 07:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:52", + "echoMap": {}, + "alarmNo": "1790500040", + "alarmDate": "1769988051135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119454378649658", + "createdBy": null, + "createdTime": "2026-02-02 07:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:08", + "echoMap": {}, + "alarmNo": "1790500041", + "alarmDate": "1769988067051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119462968584228", + "createdBy": null, + "createdTime": "2026-02-02 07:21:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:37", + "echoMap": {}, + "alarmNo": "1790500042", + "alarmDate": "1769988073029", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119462968584996", + "createdBy": null, + "createdTime": "2026-02-02 07:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:53", + "echoMap": {}, + "alarmNo": "1790500043", + "alarmDate": "1769988652173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119462968584999", + "createdBy": null, + "createdTime": "2026-02-02 07:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:03", + "echoMap": {}, + "alarmNo": "1790500044", + "alarmDate": "1769988652198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119467263551512", + "createdBy": null, + "createdTime": "2026-02-02 07:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:25", + "echoMap": {}, + "alarmNo": "1790500045", + "alarmDate": "1769988667309", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486150", + "createdBy": null, + "createdTime": "2026-02-02 07:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:17", + "echoMap": {}, + "alarmNo": "1790500046", + "alarmDate": "1769988675871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486159", + "createdBy": null, + "createdTime": "2026-02-02 07:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:34", + "echoMap": {}, + "alarmNo": "1790500047", + "alarmDate": "1769988676286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486267", + "createdBy": null, + "createdTime": "2026-02-02 07:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:23", + "echoMap": {}, + "alarmNo": "1790500048", + "alarmDate": "1769988682413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486306", + "createdBy": null, + "createdTime": "2026-02-02 07:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:26", + "echoMap": {}, + "alarmNo": "1790500049", + "alarmDate": "1769988684575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486394", + "createdBy": null, + "createdTime": "2026-02-02 07:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:31", + "echoMap": {}, + "alarmNo": "1790500050", + "alarmDate": "1769988689887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486541", + "createdBy": null, + "createdTime": "2026-02-02 07:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:04", + "echoMap": {}, + "alarmNo": "1790500051", + "alarmDate": "1769988699476", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486691", + "createdBy": null, + "createdTime": "2026-02-02 07:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:49", + "echoMap": {}, + "alarmNo": "1790500052", + "alarmDate": "1769989243380", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486735", + "createdBy": null, + "createdTime": "2026-02-02 07:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:47", + "echoMap": {}, + "alarmNo": "1790500053", + "alarmDate": "1769989246032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443420864", + "createdBy": null, + "createdTime": "2026-02-02 07:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:13", + "echoMap": {}, + "alarmNo": "1790500054", + "alarmDate": "1769989284554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443420936", + "createdBy": null, + "createdTime": "2026-02-02 07:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:30", + "echoMap": {}, + "alarmNo": "1790500055", + "alarmDate": "1769989288805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421104", + "createdBy": null, + "createdTime": "2026-02-02 07:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:40", + "echoMap": {}, + "alarmNo": "1790500056", + "alarmDate": "1769989299057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421239", + "createdBy": null, + "createdTime": "2026-02-02 07:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:50", + "echoMap": {}, + "alarmNo": "1790500057", + "alarmDate": "1769989842890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421252", + "createdBy": null, + "createdTime": "2026-02-02 07:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:28", + "echoMap": {}, + "alarmNo": "1790500058", + "alarmDate": "1769989843586", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421256", + "createdBy": null, + "createdTime": "2026-02-02 07:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:19", + "echoMap": {}, + "alarmNo": "1790500059", + "alarmDate": "1769989843653", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421454", + "createdBy": null, + "createdTime": "2026-02-02 07:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:07", + "echoMap": {}, + "alarmNo": "1790500060", + "alarmDate": "1769989854685", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421476", + "createdBy": null, + "createdTime": "2026-02-02 07:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:57", + "echoMap": {}, + "alarmNo": "1790500061", + "alarmDate": "1769989855795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421504", + "createdBy": null, + "createdTime": "2026-02-02 07:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:58", + "echoMap": {}, + "alarmNo": "1790500062", + "alarmDate": "1769989857252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355392", + "createdBy": null, + "createdTime": "2026-02-02 07:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:18", + "echoMap": {}, + "alarmNo": "1790500063", + "alarmDate": "1769989875881", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355514", + "createdBy": null, + "createdTime": "2026-02-02 07:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:24", + "echoMap": {}, + "alarmNo": "1790500064", + "alarmDate": "1769989883550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060071", + "deviceName": "[106](10)三门上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355566", + "createdBy": null, + "createdTime": "2026-02-02 07:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:28", + "echoMap": {}, + "alarmNo": "1790500065", + "alarmDate": "1769989886734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355714", + "createdBy": null, + "createdTime": "2026-02-02 07:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:12", + "echoMap": {}, + "alarmNo": "1790500066", + "alarmDate": "1769989897128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355891", + "createdBy": null, + "createdTime": "2026-02-02 08:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:45", + "echoMap": {}, + "alarmNo": "1790500067", + "alarmDate": "1769990442920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355923", + "createdBy": null, + "createdTime": "2026-02-02 08:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:04", + "echoMap": {}, + "alarmNo": "1790500068", + "alarmDate": "1769990445291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033356104", + "createdBy": null, + "createdTime": "2026-02-02 08:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:46", + "echoMap": {}, + "alarmNo": "1790500069", + "alarmDate": "1769990457868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623289917", + "createdBy": null, + "createdTime": "2026-02-02 08:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:17", + "echoMap": {}, + "alarmNo": "1790500070", + "alarmDate": "1769990475530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623289965", + "createdBy": null, + "createdTime": "2026-02-02 08:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:20", + "echoMap": {}, + "alarmNo": "1790500071", + "alarmDate": "1769990478656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290137", + "createdBy": null, + "createdTime": "2026-02-02 08:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:31", + "echoMap": {}, + "alarmNo": "1790500072", + "alarmDate": "1769990490540", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290215", + "createdBy": null, + "createdTime": "2026-02-02 08:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:37", + "echoMap": {}, + "alarmNo": "1790500073", + "alarmDate": "1769990495721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290427", + "createdBy": null, + "createdTime": "2026-02-02 08:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:10", + "echoMap": {}, + "alarmNo": "1790500074", + "alarmDate": "1769991043055", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290528", + "createdBy": null, + "createdTime": "2026-02-02 08:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:51", + "echoMap": {}, + "alarmNo": "1790500075", + "alarmDate": "1769991049888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290705", + "createdBy": null, + "createdTime": "2026-02-02 08:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:07", + "echoMap": {}, + "alarmNo": "1790500076", + "alarmDate": "1769991061148", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119505918257155", + "createdBy": null, + "createdTime": "2026-02-02 08:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:14", + "echoMap": {}, + "alarmNo": "1790500077", + "alarmDate": "1769991072539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119510213224496", + "createdBy": null, + "createdTime": "2026-02-02 08:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:31", + "echoMap": {}, + "alarmNo": "1790500078", + "alarmDate": "1769991085285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508191845", + "createdBy": null, + "createdTime": "2026-02-02 08:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:28", + "echoMap": {}, + "alarmNo": "1790500079", + "alarmDate": "1769991091795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508191893", + "createdBy": null, + "createdTime": "2026-02-02 08:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:36", + "echoMap": {}, + "alarmNo": "1790500080", + "alarmDate": "1769991094573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508191942", + "createdBy": null, + "createdTime": "2026-02-02 08:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:38", + "echoMap": {}, + "alarmNo": "1790500081", + "alarmDate": "1769991097332", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192009", + "createdBy": null, + "createdTime": "2026-02-02 08:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:42", + "echoMap": {}, + "alarmNo": "1790500082", + "alarmDate": "1769991102145", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192191", + "createdBy": null, + "createdTime": "2026-02-02 08:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:48", + "echoMap": {}, + "alarmNo": "1790500083", + "alarmDate": "1769991646731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192254", + "createdBy": null, + "createdTime": "2026-02-02 08:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:51", + "echoMap": {}, + "alarmNo": "1790500084", + "alarmDate": "1769991649802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192512", + "createdBy": null, + "createdTime": "2026-02-02 08:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:19", + "echoMap": {}, + "alarmNo": "1790500085", + "alarmDate": "1769991665717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192571", + "createdBy": null, + "createdTime": "2026-02-02 08:21:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:10", + "echoMap": {}, + "alarmNo": "1790500086", + "alarmDate": "1769991669234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192653", + "createdBy": null, + "createdTime": "2026-02-02 08:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:15", + "echoMap": {}, + "alarmNo": "1790500087", + "alarmDate": "1769991673597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098126816", + "createdBy": null, + "createdTime": "2026-02-02 08:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:25", + "echoMap": {}, + "alarmNo": "1790500088", + "alarmDate": "1769992243605", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098126832", + "createdBy": null, + "createdTime": "2026-02-02 08:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:19", + "echoMap": {}, + "alarmNo": "1790500089", + "alarmDate": "1769992244469", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098127154", + "createdBy": null, + "createdTime": "2026-02-02 08:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:05", + "echoMap": {}, + "alarmNo": "1790500090", + "alarmDate": "1769992264355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098127189", + "createdBy": null, + "createdTime": "2026-02-02 08:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:07", + "echoMap": {}, + "alarmNo": "1790500091", + "alarmDate": "1769992266278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119531688060948", + "createdBy": null, + "createdTime": "2026-02-02 08:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:29", + "echoMap": {}, + "alarmNo": "1790500092", + "alarmDate": "1769992282377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028231", + "createdBy": null, + "createdTime": "2026-02-02 08:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:26", + "echoMap": {}, + "alarmNo": "1790500093", + "alarmDate": "1769992284574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028424", + "createdBy": null, + "createdTime": "2026-02-02 08:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:49", + "echoMap": {}, + "alarmNo": "1790500094", + "alarmDate": "1769992297528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028597", + "createdBy": null, + "createdTime": "2026-02-02 08:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:44", + "echoMap": {}, + "alarmNo": "1790500095", + "alarmDate": "1769992842816", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028600", + "createdBy": null, + "createdTime": "2026-02-02 08:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:44", + "echoMap": {}, + "alarmNo": "1790500096", + "alarmDate": "1769992842862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028634", + "createdBy": null, + "createdTime": "2026-02-02 08:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:02", + "echoMap": {}, + "alarmNo": "1790500097", + "alarmDate": "1769992844832", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028841", + "createdBy": null, + "createdTime": "2026-02-02 08:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:59", + "echoMap": {}, + "alarmNo": "1790500098", + "alarmDate": "1769992857785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028951", + "createdBy": null, + "createdTime": "2026-02-02 08:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:05", + "echoMap": {}, + "alarmNo": "1790500099", + "alarmDate": "1769992864401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983029240", + "createdBy": null, + "createdTime": "2026-02-02 08:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:24", + "echoMap": {}, + "alarmNo": "1790500100", + "alarmDate": "1769992883438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930314", + "createdBy": null, + "createdTime": "2026-02-02 08:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:17", + "echoMap": {}, + "alarmNo": "1790500101", + "alarmDate": "1769993441589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930331", + "createdBy": null, + "createdTime": "2026-02-02 08:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:50", + "echoMap": {}, + "alarmNo": "1790500102", + "alarmDate": "1769993443092", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930345", + "createdBy": null, + "createdTime": "2026-02-02 08:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:49", + "echoMap": {}, + "alarmNo": "1790500103", + "alarmDate": "1769993443904", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930679", + "createdBy": null, + "createdTime": "2026-02-02 08:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:07", + "echoMap": {}, + "alarmNo": "1790500104", + "alarmDate": "1769993466456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930774", + "createdBy": null, + "createdTime": "2026-02-02 08:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:20", + "echoMap": {}, + "alarmNo": "1790500105", + "alarmDate": "1769993472761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930822", + "createdBy": null, + "createdTime": "2026-02-02 08:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:17", + "echoMap": {}, + "alarmNo": "1790500106", + "alarmDate": "1769993476091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930999", + "createdBy": null, + "createdTime": "2026-02-02 08:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:17", + "echoMap": {}, + "alarmNo": "1790500107", + "alarmDate": "1769993488683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867931101", + "createdBy": null, + "createdTime": "2026-02-02 08:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:37", + "echoMap": {}, + "alarmNo": "1790500108", + "alarmDate": "1769993495817", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119553162897432", + "createdBy": null, + "createdTime": "2026-02-02 08:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:09", + "echoMap": {}, + "alarmNo": "1790500109", + "alarmDate": "1769993498260", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457864828", + "createdBy": null, + "createdTime": "2026-02-02 09:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:29", + "echoMap": {}, + "alarmNo": "1790500110", + "alarmDate": "1769994041344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060041", + "deviceName": "[309](10)三门6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457864847", + "createdBy": null, + "createdTime": "2026-02-02 09:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1790500111", + "alarmDate": "1769994043060", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457864867", + "createdBy": null, + "createdTime": "2026-02-02 09:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:00", + "echoMap": {}, + "alarmNo": "1790500112", + "alarmDate": "1769994044179", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865036", + "createdBy": null, + "createdTime": "2026-02-02 09:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:55", + "echoMap": {}, + "alarmNo": "1790500113", + "alarmDate": "1769994054361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865103", + "createdBy": null, + "createdTime": "2026-02-02 09:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:46", + "echoMap": {}, + "alarmNo": "1790500114", + "alarmDate": "1769994058171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865141", + "createdBy": null, + "createdTime": "2026-02-02 09:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:01", + "echoMap": {}, + "alarmNo": "1790500115", + "alarmDate": "1769994060014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865468", + "createdBy": null, + "createdTime": "2026-02-02 09:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:26", + "echoMap": {}, + "alarmNo": "1790500116", + "alarmDate": "1769994079492", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865518", + "createdBy": null, + "createdTime": "2026-02-02 09:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:34", + "echoMap": {}, + "alarmNo": "1790500117", + "alarmDate": "1769994082053", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865606", + "createdBy": null, + "createdTime": "2026-02-02 09:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:20", + "echoMap": {}, + "alarmNo": "1790500118", + "alarmDate": "1769994086513", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799319", + "createdBy": null, + "createdTime": "2026-02-02 09:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:22", + "echoMap": {}, + "alarmNo": "1790500119", + "alarmDate": "1769994094833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799333", + "createdBy": null, + "createdTime": "2026-02-02 09:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:37", + "echoMap": {}, + "alarmNo": "1790500120", + "alarmDate": "1769994095572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799647", + "createdBy": null, + "createdTime": "2026-02-02 09:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:52", + "echoMap": {}, + "alarmNo": "1790500121", + "alarmDate": "1769994651214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799670", + "createdBy": null, + "createdTime": "2026-02-02 09:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:54", + "echoMap": {}, + "alarmNo": "1790500122", + "alarmDate": "1769994652735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799847", + "createdBy": null, + "createdTime": "2026-02-02 09:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:07", + "echoMap": {}, + "alarmNo": "1790500123", + "alarmDate": "1769994665642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799976", + "createdBy": null, + "createdTime": "2026-02-02 09:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:15", + "echoMap": {}, + "alarmNo": "1790500124", + "alarmDate": "1769994674233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799992", + "createdBy": null, + "createdTime": "2026-02-02 09:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:21", + "echoMap": {}, + "alarmNo": "1790500125", + "alarmDate": "1769994675116", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060014", + "deviceName": "[305](10)三门3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047800112", + "createdBy": null, + "createdTime": "2026-02-02 09:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:24", + "echoMap": {}, + "alarmNo": "1790500126", + "alarmDate": "1769994683284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047800137", + "createdBy": null, + "createdTime": "2026-02-02 09:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:57", + "echoMap": {}, + "alarmNo": "1790500127", + "alarmDate": "1769994685140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047800252", + "createdBy": null, + "createdTime": "2026-02-02 09:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:22", + "echoMap": {}, + "alarmNo": "1790500128", + "alarmDate": "1769994694051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701263", + "createdBy": null, + "createdTime": "2026-02-02 09:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:45", + "echoMap": {}, + "alarmNo": "1790500129", + "alarmDate": "1769995241138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060041", + "deviceName": "[309](10)三门6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701379", + "createdBy": null, + "createdTime": "2026-02-02 09:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:25", + "echoMap": {}, + "alarmNo": "1790500130", + "alarmDate": "1769995250707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701453", + "createdBy": null, + "createdTime": "2026-02-02 09:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:08", + "echoMap": {}, + "alarmNo": "1790500131", + "alarmDate": "1769995255887", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701634", + "createdBy": null, + "createdTime": "2026-02-02 09:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:45", + "echoMap": {}, + "alarmNo": "1790500132", + "alarmDate": "1769995268280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060103", + "deviceName": "[329](10)三门1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701680", + "createdBy": null, + "createdTime": "2026-02-02 09:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:17", + "echoMap": {}, + "alarmNo": "1790500133", + "alarmDate": "1769995271248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060041", + "deviceName": "[309](10)三门6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701718", + "createdBy": null, + "createdTime": "2026-02-02 09:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:15", + "echoMap": {}, + "alarmNo": "1790500134", + "alarmDate": "1769995273589", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701807", + "createdBy": null, + "createdTime": "2026-02-02 09:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:26", + "echoMap": {}, + "alarmNo": "1790500135", + "alarmDate": "1769995279449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701820", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:21", + "echoMap": {}, + "alarmNo": "1790500136", + "alarmDate": "1769995280079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701842", + "createdBy": null, + "createdTime": "2026-02-02 09:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:15", + "echoMap": {}, + "alarmNo": "1790500137", + "alarmDate": "1769995281313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060021", + "deviceName": "[301](10)三门3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701921", + "createdBy": null, + "createdTime": "2026-02-02 09:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:32", + "echoMap": {}, + "alarmNo": "1790500138", + "alarmDate": "1769995285968", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932702052", + "createdBy": null, + "createdTime": "2026-02-02 09:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:34", + "echoMap": {}, + "alarmNo": "1790500139", + "alarmDate": "1769995294173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119583227668516", + "createdBy": null, + "createdTime": "2026-02-02 09:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:40", + "echoMap": {}, + "alarmNo": "1790500140", + "alarmDate": "1769995298996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522635921", + "createdBy": null, + "createdTime": "2026-02-02 09:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:02", + "echoMap": {}, + "alarmNo": "1790500141", + "alarmDate": "1769995843092", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636043", + "createdBy": null, + "createdTime": "2026-02-02 09:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:52", + "echoMap": {}, + "alarmNo": "1790500142", + "alarmDate": "1769995851257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636184", + "createdBy": null, + "createdTime": "2026-02-02 09:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:02", + "echoMap": {}, + "alarmNo": "1790500143", + "alarmDate": "1769995860930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636335", + "createdBy": null, + "createdTime": "2026-02-02 09:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:50", + "echoMap": {}, + "alarmNo": "1790500144", + "alarmDate": "1769995871305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636380", + "createdBy": null, + "createdTime": "2026-02-02 09:31:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:44", + "echoMap": {}, + "alarmNo": "1790500145", + "alarmDate": "1769995874254", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636539", + "createdBy": null, + "createdTime": "2026-02-02 09:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:31", + "echoMap": {}, + "alarmNo": "1790500146", + "alarmDate": "1769995884702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636606", + "createdBy": null, + "createdTime": "2026-02-02 09:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:30", + "echoMap": {}, + "alarmNo": "1790500147", + "alarmDate": "1769995888910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636746", + "createdBy": null, + "createdTime": "2026-02-02 09:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:38", + "echoMap": {}, + "alarmNo": "1790500148", + "alarmDate": "1769995898389", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060103", + "deviceName": "[329](10)三门1#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636754", + "createdBy": null, + "createdTime": "2026-02-02 09:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:59", + "echoMap": {}, + "alarmNo": "1790500149", + "alarmDate": "1769995898813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570441", + "createdBy": null, + "createdTime": "2026-02-02 09:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:57", + "echoMap": {}, + "alarmNo": "1790500150", + "alarmDate": "1769996441242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570446", + "createdBy": null, + "createdTime": "2026-02-02 09:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:09", + "echoMap": {}, + "alarmNo": "1790500151", + "alarmDate": "1769996441716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570455", + "createdBy": null, + "createdTime": "2026-02-02 09:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:50", + "echoMap": {}, + "alarmNo": "1790500152", + "alarmDate": "1769996442415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570490", + "createdBy": null, + "createdTime": "2026-02-02 09:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:02", + "echoMap": {}, + "alarmNo": "1790500153", + "alarmDate": "1769996444426", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570760", + "createdBy": null, + "createdTime": "2026-02-02 09:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:03", + "echoMap": {}, + "alarmNo": "1790500154", + "alarmDate": "1769996462097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570771", + "createdBy": null, + "createdTime": "2026-02-02 09:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:22", + "echoMap": {}, + "alarmNo": "1790500155", + "alarmDate": "1769996462584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570775", + "createdBy": null, + "createdTime": "2026-02-02 09:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:33", + "echoMap": {}, + "alarmNo": "1790500156", + "alarmDate": "1769996462663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570805", + "createdBy": null, + "createdTime": "2026-02-02 09:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:06", + "echoMap": {}, + "alarmNo": "1790500157", + "alarmDate": "1769996464649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570940", + "createdBy": null, + "createdTime": "2026-02-02 09:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:32", + "echoMap": {}, + "alarmNo": "1790500158", + "alarmDate": "1769996473540", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570958", + "createdBy": null, + "createdTime": "2026-02-02 09:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:16", + "echoMap": {}, + "alarmNo": "1790500159", + "alarmDate": "1769996474602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112571102", + "createdBy": null, + "createdTime": "2026-02-02 09:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:12", + "echoMap": {}, + "alarmNo": "1790500160", + "alarmDate": "1769996484154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112571335", + "createdBy": null, + "createdTime": "2026-02-02 09:41:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:46", + "echoMap": {}, + "alarmNo": "1790500161", + "alarmDate": "1769996500536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119604702505014", + "createdBy": null, + "createdTime": "2026-02-02 09:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:10", + "echoMap": {}, + "alarmNo": "1790500162", + "alarmDate": "1769997042262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119604702505065", + "createdBy": null, + "createdTime": "2026-02-02 09:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:59", + "echoMap": {}, + "alarmNo": "1790500163", + "alarmDate": "1769997045984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472338", + "createdBy": null, + "createdTime": "2026-02-02 09:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:52", + "echoMap": {}, + "alarmNo": "1790500164", + "alarmDate": "1769997051429", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472352", + "createdBy": null, + "createdTime": "2026-02-02 09:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:04", + "echoMap": {}, + "alarmNo": "1790500165", + "alarmDate": "1769997052132", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472391", + "createdBy": null, + "createdTime": "2026-02-02 09:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:00", + "echoMap": {}, + "alarmNo": "1790500166", + "alarmDate": "1769997054303", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472431", + "createdBy": null, + "createdTime": "2026-02-02 09:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:15", + "echoMap": {}, + "alarmNo": "1790500167", + "alarmDate": "1769997056631", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472457", + "createdBy": null, + "createdTime": "2026-02-02 09:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:58", + "echoMap": {}, + "alarmNo": "1790500168", + "alarmDate": "1769997057882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472763", + "createdBy": null, + "createdTime": "2026-02-02 09:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:00", + "echoMap": {}, + "alarmNo": "1790500169", + "alarmDate": "1769997076254", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472778", + "createdBy": null, + "createdTime": "2026-02-02 09:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:18", + "echoMap": {}, + "alarmNo": "1790500170", + "alarmDate": "1769997077038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472802", + "createdBy": null, + "createdTime": "2026-02-02 09:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:42", + "echoMap": {}, + "alarmNo": "1790500171", + "alarmDate": "1769997078326", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997473071", + "createdBy": null, + "createdTime": "2026-02-02 09:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:35", + "echoMap": {}, + "alarmNo": "1790500172", + "alarmDate": "1769997093938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997473154", + "createdBy": null, + "createdTime": "2026-02-02 09:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:15", + "echoMap": {}, + "alarmNo": "1790500173", + "alarmDate": "1769997098739", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587406886", + "createdBy": null, + "createdTime": "2026-02-02 10:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:45", + "echoMap": {}, + "alarmNo": "1790500175", + "alarmDate": "1769997644105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587407246", + "createdBy": null, + "createdTime": "2026-02-02 10:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:13", + "echoMap": {}, + "alarmNo": "1790500176", + "alarmDate": "1769997666542", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587407381", + "createdBy": null, + "createdTime": "2026-02-02 10:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:16", + "echoMap": {}, + "alarmNo": "1790500177", + "alarmDate": "1769997674721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587407698", + "createdBy": null, + "createdTime": "2026-02-02 10:01:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:39", + "echoMap": {}, + "alarmNo": "1790500178", + "alarmDate": "1769997697850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119621882374178", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:26", + "echoMap": {}, + "alarmNo": "1790500179", + "alarmDate": "1769998241694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119621882374180", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:39", + "echoMap": {}, + "alarmNo": "1790500180", + "alarmDate": "1769998241804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119621882374186", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:34", + "echoMap": {}, + "alarmNo": "1790500181", + "alarmDate": "1769998242219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341655", + "createdBy": null, + "createdTime": "2026-02-02 10:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:27", + "echoMap": {}, + "alarmNo": "1790500182", + "alarmDate": "1769998257138", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341714", + "createdBy": null, + "createdTime": "2026-02-02 10:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:31", + "echoMap": {}, + "alarmNo": "1790500183", + "alarmDate": "1769998260859", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341950", + "createdBy": null, + "createdTime": "2026-02-02 10:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:17", + "echoMap": {}, + "alarmNo": "1790500184", + "alarmDate": "1769998275542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341968", + "createdBy": null, + "createdTime": "2026-02-02 10:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:42", + "echoMap": {}, + "alarmNo": "1790500185", + "alarmDate": "1769998276373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342022", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:20", + "echoMap": {}, + "alarmNo": "1790500186", + "alarmDate": "1769998279036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342025", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:31", + "echoMap": {}, + "alarmNo": "1790500187", + "alarmDate": "1769998279227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342089", + "createdBy": null, + "createdTime": "2026-02-02 10:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:24", + "echoMap": {}, + "alarmNo": "1790500188", + "alarmDate": "1769998282524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342328", + "createdBy": null, + "createdTime": "2026-02-02 10:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:56", + "echoMap": {}, + "alarmNo": "1790500189", + "alarmDate": "1769998297884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276078", + "createdBy": null, + "createdTime": "2026-02-02 10:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:53", + "echoMap": {}, + "alarmNo": "1790500190", + "alarmDate": "1769998841187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276083", + "createdBy": null, + "createdTime": "2026-02-02 10:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:32", + "echoMap": {}, + "alarmNo": "1790500191", + "alarmDate": "1769998841782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276100", + "createdBy": null, + "createdTime": "2026-02-02 10:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:02", + "echoMap": {}, + "alarmNo": "1790500192", + "alarmDate": "1769998843087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276144", + "createdBy": null, + "createdTime": "2026-02-02 10:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:20", + "echoMap": {}, + "alarmNo": "1790500193", + "alarmDate": "1769998845431", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276570", + "createdBy": null, + "createdTime": "2026-02-02 10:21:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:10", + "echoMap": {}, + "alarmNo": "1790500194", + "alarmDate": "1769998869303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276865", + "createdBy": null, + "createdTime": "2026-02-02 10:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:28", + "echoMap": {}, + "alarmNo": "1790500195", + "alarmDate": "1769998886906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276916", + "createdBy": null, + "createdTime": "2026-02-02 10:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:31", + "echoMap": {}, + "alarmNo": "1790500196", + "alarmDate": "1769998889855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119639062243371", + "createdBy": null, + "createdTime": "2026-02-02 10:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:32", + "echoMap": {}, + "alarmNo": "1790500197", + "alarmDate": "1769998901136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652177977", + "createdBy": null, + "createdTime": "2026-02-02 10:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:43", + "echoMap": {}, + "alarmNo": "1790500198", + "alarmDate": "1769999442139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178009", + "createdBy": null, + "createdTime": "2026-02-02 10:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:50", + "echoMap": {}, + "alarmNo": "1790500199", + "alarmDate": "1769999444375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178183", + "createdBy": null, + "createdTime": "2026-02-02 10:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:58", + "echoMap": {}, + "alarmNo": "1790500200", + "alarmDate": "1769999456562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178237", + "createdBy": null, + "createdTime": "2026-02-02 10:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:46", + "echoMap": {}, + "alarmNo": "1790500201", + "alarmDate": "1769999460327", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178281", + "createdBy": null, + "createdTime": "2026-02-02 10:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:16", + "echoMap": {}, + "alarmNo": "1790500202", + "alarmDate": "1769999463422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178402", + "createdBy": null, + "createdTime": "2026-02-02 10:31:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:18", + "echoMap": {}, + "alarmNo": "1790500203", + "alarmDate": "1769999471851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178672", + "createdBy": null, + "createdTime": "2026-02-02 10:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:13", + "echoMap": {}, + "alarmNo": "1790500204", + "alarmDate": "1769999489480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178728", + "createdBy": null, + "createdTime": "2026-02-02 10:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:03", + "echoMap": {}, + "alarmNo": "1790500205", + "alarmDate": "1769999492840", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178730", + "createdBy": null, + "createdTime": "2026-02-02 10:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:34", + "echoMap": {}, + "alarmNo": "1790500206", + "alarmDate": "1769999492968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060021", + "deviceName": "[301](10)三门3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119651947145219", + "createdBy": null, + "createdTime": "2026-02-02 10:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:43", + "echoMap": {}, + "alarmNo": "1790500207", + "alarmDate": "1769999496192", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112674", + "createdBy": null, + "createdTime": "2026-02-02 10:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:45", + "echoMap": {}, + "alarmNo": "1790500208", + "alarmDate": "1770000042828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112826", + "createdBy": null, + "createdTime": "2026-02-02 10:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:08", + "echoMap": {}, + "alarmNo": "1790500209", + "alarmDate": "1770000055430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112876", + "createdBy": null, + "createdTime": "2026-02-02 10:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:12", + "echoMap": {}, + "alarmNo": "1790500210", + "alarmDate": "1770000059182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112942", + "createdBy": null, + "createdTime": "2026-02-02 10:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:22", + "echoMap": {}, + "alarmNo": "1790500211", + "alarmDate": "1770000063963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112963", + "createdBy": null, + "createdTime": "2026-02-02 10:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:13", + "echoMap": {}, + "alarmNo": "1790500212", + "alarmDate": "1770000065590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113100", + "createdBy": null, + "createdTime": "2026-02-02 10:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:15", + "echoMap": {}, + "alarmNo": "1790500213", + "alarmDate": "1770000073988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113246", + "createdBy": null, + "createdTime": "2026-02-02 10:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:37", + "echoMap": {}, + "alarmNo": "1790500214", + "alarmDate": "1770000085319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113275", + "createdBy": null, + "createdTime": "2026-02-02 10:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:29", + "echoMap": {}, + "alarmNo": "1790500215", + "alarmDate": "1770000087468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113364", + "createdBy": null, + "createdTime": "2026-02-02 10:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:46", + "echoMap": {}, + "alarmNo": "1790500216", + "alarmDate": "1770000093911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113371", + "createdBy": null, + "createdTime": "2026-02-02 10:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:35", + "echoMap": {}, + "alarmNo": "1790500217", + "alarmDate": "1770000094423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113388", + "createdBy": null, + "createdTime": "2026-02-02 10:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:03", + "echoMap": {}, + "alarmNo": "1790500218", + "alarmDate": "1770000095313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047158", + "createdBy": null, + "createdTime": "2026-02-02 10:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:26", + "echoMap": {}, + "alarmNo": "1790500219", + "alarmDate": "1770000642521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047161", + "createdBy": null, + "createdTime": "2026-02-02 10:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:44", + "echoMap": {}, + "alarmNo": "1790500220", + "alarmDate": "1770000642655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047251", + "createdBy": null, + "createdTime": "2026-02-02 10:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:50", + "echoMap": {}, + "alarmNo": "1790500221", + "alarmDate": "1770000648568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047462", + "createdBy": null, + "createdTime": "2026-02-02 10:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:03", + "echoMap": {}, + "alarmNo": "1790500222", + "alarmDate": "1770000662121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047558", + "createdBy": null, + "createdTime": "2026-02-02 10:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:24", + "echoMap": {}, + "alarmNo": "1790500223", + "alarmDate": "1770000668365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047663", + "createdBy": null, + "createdTime": "2026-02-02 10:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:39", + "echoMap": {}, + "alarmNo": "1790500224", + "alarmDate": "1770000675257", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047737", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:21", + "echoMap": {}, + "alarmNo": "1790500225", + "alarmDate": "1770000679701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047868", + "createdBy": null, + "createdTime": "2026-02-02 10:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:29", + "echoMap": {}, + "alarmNo": "1790500226", + "alarmDate": "1770000687903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047882", + "createdBy": null, + "createdTime": "2026-02-02 10:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1790500227", + "alarmDate": "1770000688440", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060040", + "deviceName": "[310](10)三门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047941", + "createdBy": null, + "createdTime": "2026-02-02 10:51:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:33", + "echoMap": {}, + "alarmNo": "1790500228", + "alarmDate": "1770000692083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047973", + "createdBy": null, + "createdTime": "2026-02-02 10:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:45", + "echoMap": {}, + "alarmNo": "1790500229", + "alarmDate": "1770000693650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421981838", + "createdBy": null, + "createdTime": "2026-02-02 11:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:44", + "echoMap": {}, + "alarmNo": "1790500231", + "alarmDate": "1770001243264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421981949", + "createdBy": null, + "createdTime": "2026-02-02 11:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:57", + "echoMap": {}, + "alarmNo": "1790500232", + "alarmDate": "1770001251472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982011", + "createdBy": null, + "createdTime": "2026-02-02 11:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:34", + "echoMap": {}, + "alarmNo": "1790500233", + "alarmDate": "1770001256065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982080", + "createdBy": null, + "createdTime": "2026-02-02 11:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:13", + "echoMap": {}, + "alarmNo": "1790500234", + "alarmDate": "1770001260951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982121", + "createdBy": null, + "createdTime": "2026-02-02 11:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:10", + "echoMap": {}, + "alarmNo": "1790500235", + "alarmDate": "1770001263445", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982141", + "createdBy": null, + "createdTime": "2026-02-02 11:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:40", + "echoMap": {}, + "alarmNo": "1790500236", + "alarmDate": "1770001264627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982410", + "createdBy": null, + "createdTime": "2026-02-02 11:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:34", + "echoMap": {}, + "alarmNo": "1790500237", + "alarmDate": "1770001281508", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982471", + "createdBy": null, + "createdTime": "2026-02-02 11:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:26", + "echoMap": {}, + "alarmNo": "1790500238", + "alarmDate": "1770001285324", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982504", + "createdBy": null, + "createdTime": "2026-02-02 11:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:04", + "echoMap": {}, + "alarmNo": "1790500239", + "alarmDate": "1770001287238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916421", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:29", + "echoMap": {}, + "alarmNo": "1790500241", + "alarmDate": "1770001841552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916425", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:42", + "echoMap": {}, + "alarmNo": "1790500242", + "alarmDate": "1770001841841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916431", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:42", + "echoMap": {}, + "alarmNo": "1790500243", + "alarmDate": "1770001842478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916450", + "createdBy": null, + "createdTime": "2026-02-02 11:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:57", + "echoMap": {}, + "alarmNo": "1790500244", + "alarmDate": "1770001843682", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916702", + "createdBy": null, + "createdTime": "2026-02-02 11:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:09", + "echoMap": {}, + "alarmNo": "1790500245", + "alarmDate": "1770001856732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916888", + "createdBy": null, + "createdTime": "2026-02-02 11:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:08", + "echoMap": {}, + "alarmNo": "1790500246", + "alarmDate": "1770001866960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011917073", + "createdBy": null, + "createdTime": "2026-02-02 11:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:25", + "echoMap": {}, + "alarmNo": "1790500247", + "alarmDate": "1770001877624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119686306883587", + "createdBy": null, + "createdTime": "2026-02-02 11:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:32", + "echoMap": {}, + "alarmNo": "1790500248", + "alarmDate": "1770001891399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119686306883590", + "createdBy": null, + "createdTime": "2026-02-02 11:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:24", + "echoMap": {}, + "alarmNo": "1790500249", + "alarmDate": "1770001891439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818220", + "createdBy": null, + "createdTime": "2026-02-02 11:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:51", + "echoMap": {}, + "alarmNo": "1790500250", + "alarmDate": "1770001898803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818270", + "createdBy": null, + "createdTime": "2026-02-02 11:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:49", + "echoMap": {}, + "alarmNo": "1790500251", + "alarmDate": "1770001901570", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818406", + "createdBy": null, + "createdTime": "2026-02-02 11:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:52", + "echoMap": {}, + "alarmNo": "1790500252", + "alarmDate": "1770002443509", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818423", + "createdBy": null, + "createdTime": "2026-02-02 11:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:49", + "echoMap": {}, + "alarmNo": "1790500253", + "alarmDate": "1770002444197", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818495", + "createdBy": null, + "createdTime": "2026-02-02 11:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:49", + "echoMap": {}, + "alarmNo": "1790500254", + "alarmDate": "1770002447708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818582", + "createdBy": null, + "createdTime": "2026-02-02 11:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:55", + "echoMap": {}, + "alarmNo": "1790500255", + "alarmDate": "1770002451936", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818663", + "createdBy": null, + "createdTime": "2026-02-02 11:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:57", + "echoMap": {}, + "alarmNo": "1790500256", + "alarmDate": "1770002456085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818708", + "createdBy": null, + "createdTime": "2026-02-02 11:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:00", + "echoMap": {}, + "alarmNo": "1790500257", + "alarmDate": "1770002458537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818905", + "createdBy": null, + "createdTime": "2026-02-02 11:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:12", + "echoMap": {}, + "alarmNo": "1790500258", + "alarmDate": "1770002470617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896819009", + "createdBy": null, + "createdTime": "2026-02-02 11:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:18", + "echoMap": {}, + "alarmNo": "1790500259", + "alarmDate": "1770002476986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486752785", + "createdBy": null, + "createdTime": "2026-02-02 11:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:28", + "echoMap": {}, + "alarmNo": "1790500260", + "alarmDate": "1770002486822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486752916", + "createdBy": null, + "createdTime": "2026-02-02 11:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:40", + "echoMap": {}, + "alarmNo": "1790500261", + "alarmDate": "1770002494090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486753157", + "createdBy": null, + "createdTime": "2026-02-02 11:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:43", + "echoMap": {}, + "alarmNo": "1790500262", + "alarmDate": "1770003041981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486753176", + "createdBy": null, + "createdTime": "2026-02-02 11:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:52", + "echoMap": {}, + "alarmNo": "1790500263", + "alarmDate": "1770003043245", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119707781720088", + "createdBy": null, + "createdTime": "2026-02-02 11:31:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:49", + "echoMap": {}, + "alarmNo": "1790500264", + "alarmDate": "1770003078472", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119712076687891", + "createdBy": null, + "createdTime": "2026-02-02 11:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:19", + "echoMap": {}, + "alarmNo": "1790500265", + "alarmDate": "1770003642759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119712076688181", + "createdBy": null, + "createdTime": "2026-02-02 11:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:07", + "echoMap": {}, + "alarmNo": "1790500266", + "alarmDate": "1770003660014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119720666621998", + "createdBy": null, + "createdTime": "2026-02-02 11:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:19", + "echoMap": {}, + "alarmNo": "1790500267", + "alarmDate": "1770003677725", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589305", + "createdBy": null, + "createdTime": "2026-02-02 11:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:33", + "echoMap": {}, + "alarmNo": "1790500268", + "alarmDate": "1770003681113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589314", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:28", + "echoMap": {}, + "alarmNo": "1790500269", + "alarmDate": "1770003681712", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589500", + "createdBy": null, + "createdTime": "2026-02-02 11:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:38", + "echoMap": {}, + "alarmNo": "1790500270", + "alarmDate": "1770003691894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589587", + "createdBy": null, + "createdTime": "2026-02-02 11:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:38", + "echoMap": {}, + "alarmNo": "1790500271", + "alarmDate": "1770003696850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589635", + "createdBy": null, + "createdTime": "2026-02-02 11:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:56", + "echoMap": {}, + "alarmNo": "1790500272", + "alarmDate": "1770003699614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589771", + "createdBy": null, + "createdTime": "2026-02-02 11:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:28", + "echoMap": {}, + "alarmNo": "1790500273", + "alarmDate": "1770004242339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589779", + "createdBy": null, + "createdTime": "2026-02-02 11:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:44", + "echoMap": {}, + "alarmNo": "1790500274", + "alarmDate": "1770004242692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060060", + "deviceName": "[110](10)三门下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589899", + "createdBy": null, + "createdTime": "2026-02-02 11:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:51", + "echoMap": {}, + "alarmNo": "1790500275", + "alarmDate": "1770004249962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590022", + "createdBy": null, + "createdTime": "2026-02-02 11:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:03", + "echoMap": {}, + "alarmNo": "1790500276", + "alarmDate": "1770004256798", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590114", + "createdBy": null, + "createdTime": "2026-02-02 11:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:03", + "echoMap": {}, + "alarmNo": "1790500277", + "alarmDate": "1770004261563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590158", + "createdBy": null, + "createdTime": "2026-02-02 11:51:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:05", + "echoMap": {}, + "alarmNo": "1790500278", + "alarmDate": "1770004264038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590174", + "createdBy": null, + "createdTime": "2026-02-02 11:51:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:06", + "echoMap": {}, + "alarmNo": "1790500279", + "alarmDate": "1770004264563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551523990", + "createdBy": null, + "createdTime": "2026-02-02 11:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:18", + "echoMap": {}, + "alarmNo": "1790500280", + "alarmDate": "1770004277228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524176", + "createdBy": null, + "createdTime": "2026-02-02 11:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1790500281", + "alarmDate": "1770004286834", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524198", + "createdBy": null, + "createdTime": "2026-02-02 11:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:29", + "echoMap": {}, + "alarmNo": "1790500282", + "alarmDate": "1770004287847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524308", + "createdBy": null, + "createdTime": "2026-02-02 11:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:57", + "echoMap": {}, + "alarmNo": "1790500283", + "alarmDate": "1770004293901", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524381", + "createdBy": null, + "createdTime": "2026-02-02 11:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:48", + "echoMap": {}, + "alarmNo": "1790500284", + "alarmDate": "1770004298309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524535", + "createdBy": null, + "createdTime": "2026-02-02 12:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:41", + "echoMap": {}, + "alarmNo": "1790500286", + "alarmDate": "1770004840930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060021", + "deviceName": "[301](10)三门3#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524543", + "createdBy": null, + "createdTime": "2026-02-02 12:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:41", + "echoMap": {}, + "alarmNo": "1790500287", + "alarmDate": "1770004841875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524545", + "createdBy": null, + "createdTime": "2026-02-02 12:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:43", + "echoMap": {}, + "alarmNo": "1790500288", + "alarmDate": "1770004842155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458472", + "createdBy": null, + "createdTime": "2026-02-02 12:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1790500289", + "alarmDate": "1770004857182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458503", + "createdBy": null, + "createdTime": "2026-02-02 12:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:05", + "echoMap": {}, + "alarmNo": "1790500290", + "alarmDate": "1770004858862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458531", + "createdBy": null, + "createdTime": "2026-02-02 12:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:14", + "echoMap": {}, + "alarmNo": "1790500291", + "alarmDate": "1770004860496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458788", + "createdBy": null, + "createdTime": "2026-02-02 12:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:51", + "echoMap": {}, + "alarmNo": "1790500292", + "alarmDate": "1770004876652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458811", + "createdBy": null, + "createdTime": "2026-02-02 12:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:09", + "echoMap": {}, + "alarmNo": "1790500293", + "alarmDate": "1770004878103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458958", + "createdBy": null, + "createdTime": "2026-02-02 12:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:03", + "echoMap": {}, + "alarmNo": "1790500294", + "alarmDate": "1770004887086", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141459049", + "createdBy": null, + "createdTime": "2026-02-02 12:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:59", + "echoMap": {}, + "alarmNo": "1790500295", + "alarmDate": "1770004892453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393035", + "createdBy": null, + "createdTime": "2026-02-02 12:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:56", + "echoMap": {}, + "alarmNo": "1790500296", + "alarmDate": "1770005455096", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393435", + "createdBy": null, + "createdTime": "2026-02-02 12:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:01", + "echoMap": {}, + "alarmNo": "1790500297", + "alarmDate": "1770005482180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393513", + "createdBy": null, + "createdTime": "2026-02-02 12:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:34", + "echoMap": {}, + "alarmNo": "1790500298", + "alarmDate": "1770005487264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393534", + "createdBy": null, + "createdTime": "2026-02-02 12:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:29", + "echoMap": {}, + "alarmNo": "1790500299", + "alarmDate": "1770005488463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393571", + "createdBy": null, + "createdTime": "2026-02-02 12:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:43", + "echoMap": {}, + "alarmNo": "1790500300", + "alarmDate": "1770005490567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393655", + "createdBy": null, + "createdTime": "2026-02-02 12:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:36", + "echoMap": {}, + "alarmNo": "1790500301", + "alarmDate": "1770005495389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393895", + "createdBy": null, + "createdTime": "2026-02-02 12:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:46", + "echoMap": {}, + "alarmNo": "1790500302", + "alarmDate": "1770006044507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393963", + "createdBy": null, + "createdTime": "2026-02-02 12:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:01", + "echoMap": {}, + "alarmNo": "1790500303", + "alarmDate": "1770006048560", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327664", + "createdBy": null, + "createdTime": "2026-02-02 12:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1790500304", + "alarmDate": "1770006055777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327699", + "createdBy": null, + "createdTime": "2026-02-02 12:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:58", + "echoMap": {}, + "alarmNo": "1790500305", + "alarmDate": "1770006057454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327736", + "createdBy": null, + "createdTime": "2026-02-02 12:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:00", + "echoMap": {}, + "alarmNo": "1790500306", + "alarmDate": "1770006059331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327881", + "createdBy": null, + "createdTime": "2026-02-02 12:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:08", + "echoMap": {}, + "alarmNo": "1790500307", + "alarmDate": "1770006067485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328289", + "createdBy": null, + "createdTime": "2026-02-02 12:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:34", + "echoMap": {}, + "alarmNo": "1790500308", + "alarmDate": "1770006092701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328551", + "createdBy": null, + "createdTime": "2026-02-02 12:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:51", + "echoMap": {}, + "alarmNo": "1790500309", + "alarmDate": "1770006643625", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328560", + "createdBy": null, + "createdTime": "2026-02-02 12:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:22", + "echoMap": {}, + "alarmNo": "1790500310", + "alarmDate": "1770006643918", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328595", + "createdBy": null, + "createdTime": "2026-02-02 12:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:47", + "echoMap": {}, + "alarmNo": "1790500311", + "alarmDate": "1770006645889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119772206229556", + "createdBy": null, + "createdTime": "2026-02-02 12:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:58", + "echoMap": {}, + "alarmNo": "1790500312", + "alarmDate": "1770006664237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119772206229913", + "createdBy": null, + "createdTime": "2026-02-02 12:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:28", + "echoMap": {}, + "alarmNo": "1790500313", + "alarmDate": "1770006686739", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119772206230021", + "createdBy": null, + "createdTime": "2026-02-02 12:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:51", + "echoMap": {}, + "alarmNo": "1790500314", + "alarmDate": "1770006693649", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119776501196822", + "createdBy": null, + "createdTime": "2026-02-02 12:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:26", + "echoMap": {}, + "alarmNo": "1790500315", + "alarmDate": "1770007261707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131480", + "createdBy": null, + "createdTime": "2026-02-02 12:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:48", + "echoMap": {}, + "alarmNo": "1790500316", + "alarmDate": "1770007274369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131569", + "createdBy": null, + "createdTime": "2026-02-02 12:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:20", + "echoMap": {}, + "alarmNo": "1790500317", + "alarmDate": "1770007279450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131586", + "createdBy": null, + "createdTime": "2026-02-02 12:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:21", + "echoMap": {}, + "alarmNo": "1790500318", + "alarmDate": "1770007280249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131889", + "createdBy": null, + "createdTime": "2026-02-02 12:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:03", + "echoMap": {}, + "alarmNo": "1790500319", + "alarmDate": "1770007297820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132085", + "createdBy": null, + "createdTime": "2026-02-02 12:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:01", + "echoMap": {}, + "alarmNo": "1790500320", + "alarmDate": "1770007844161", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132092", + "createdBy": null, + "createdTime": "2026-02-02 12:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:44", + "echoMap": {}, + "alarmNo": "1790500321", + "alarmDate": "1770007844382", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132257", + "createdBy": null, + "createdTime": "2026-02-02 12:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:53", + "echoMap": {}, + "alarmNo": "1790500322", + "alarmDate": "1770007852291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132375", + "createdBy": null, + "createdTime": "2026-02-02 12:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:10", + "echoMap": {}, + "alarmNo": "1790500323", + "alarmDate": "1770007858409", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119789386098725", + "createdBy": null, + "createdTime": "2026-02-02 12:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:03", + "echoMap": {}, + "alarmNo": "1790500324", + "alarmDate": "1770007862405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033307", + "createdBy": null, + "createdTime": "2026-02-02 12:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:26", + "echoMap": {}, + "alarmNo": "1790500325", + "alarmDate": "1770007870356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033376", + "createdBy": null, + "createdTime": "2026-02-02 12:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:14", + "echoMap": {}, + "alarmNo": "1790500326", + "alarmDate": "1770007873488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033426", + "createdBy": null, + "createdTime": "2026-02-02 12:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:22", + "echoMap": {}, + "alarmNo": "1790500327", + "alarmDate": "1770007876090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033526", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:44", + "echoMap": {}, + "alarmNo": "1790500328", + "alarmDate": "1770007881137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033720", + "createdBy": null, + "createdTime": "2026-02-02 12:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:13", + "echoMap": {}, + "alarmNo": "1790500329", + "alarmDate": "1770007891306", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033759", + "createdBy": null, + "createdTime": "2026-02-02 12:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:39", + "echoMap": {}, + "alarmNo": "1790500330", + "alarmDate": "1770007893169", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033774", + "createdBy": null, + "createdTime": "2026-02-02 12:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:35", + "echoMap": {}, + "alarmNo": "1790500331", + "alarmDate": "1770007893685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034051", + "createdBy": null, + "createdTime": "2026-02-02 13:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:56", + "echoMap": {}, + "alarmNo": "1790500332", + "alarmDate": "1770008442419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034065", + "createdBy": null, + "createdTime": "2026-02-02 13:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:15", + "echoMap": {}, + "alarmNo": "1790500333", + "alarmDate": "1770008443375", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034136", + "createdBy": null, + "createdTime": "2026-02-02 13:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:48", + "echoMap": {}, + "alarmNo": "1790500334", + "alarmDate": "1770008446935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034241", + "createdBy": null, + "createdTime": "2026-02-02 13:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:59", + "echoMap": {}, + "alarmNo": "1790500335", + "alarmDate": "1770008452539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935179", + "createdBy": null, + "createdTime": "2026-02-02 13:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:04", + "echoMap": {}, + "alarmNo": "1790500336", + "alarmDate": "1770008463654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935197", + "createdBy": null, + "createdTime": "2026-02-02 13:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:05", + "echoMap": {}, + "alarmNo": "1790500337", + "alarmDate": "1770008464421", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935237", + "createdBy": null, + "createdTime": "2026-02-02 13:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:13", + "echoMap": {}, + "alarmNo": "1790500338", + "alarmDate": "1770008466534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060047", + "deviceName": "[306](10)三门6#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935383", + "createdBy": null, + "createdTime": "2026-02-02 13:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:33", + "echoMap": {}, + "alarmNo": "1790500339", + "alarmDate": "1770008474110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935410", + "createdBy": null, + "createdTime": "2026-02-02 13:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "1790500340", + "alarmDate": "1770008475450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935622", + "createdBy": null, + "createdTime": "2026-02-02 13:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:10", + "echoMap": {}, + "alarmNo": "1790500341", + "alarmDate": "1770008487390", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935662", + "createdBy": null, + "createdTime": "2026-02-02 13:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:37", + "echoMap": {}, + "alarmNo": "1790500342", + "alarmDate": "1770008489569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935978", + "createdBy": null, + "createdTime": "2026-02-02 13:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:42", + "echoMap": {}, + "alarmNo": "1790500343", + "alarmDate": "1770009040890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935992", + "createdBy": null, + "createdTime": "2026-02-02 13:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:46", + "echoMap": {}, + "alarmNo": "1790500344", + "alarmDate": "1770009042330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837117", + "createdBy": null, + "createdTime": "2026-02-02 13:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:08", + "echoMap": {}, + "alarmNo": "1790500345", + "alarmDate": "1770009067044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837181", + "createdBy": null, + "createdTime": "2026-02-02 13:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:11", + "echoMap": {}, + "alarmNo": "1790500346", + "alarmDate": "1770009070306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837575", + "createdBy": null, + "createdTime": "2026-02-02 13:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:51", + "echoMap": {}, + "alarmNo": "1790500347", + "alarmDate": "1770009093682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837634", + "createdBy": null, + "createdTime": "2026-02-02 13:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:38", + "echoMap": {}, + "alarmNo": "1790500348", + "alarmDate": "1770009096972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837653", + "createdBy": null, + "createdTime": "2026-02-02 13:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:58", + "echoMap": {}, + "alarmNo": "1790500349", + "alarmDate": "1770009097831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837665", + "createdBy": null, + "createdTime": "2026-02-02 13:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:49", + "echoMap": {}, + "alarmNo": "1790500350", + "alarmDate": "1770009098357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837937", + "createdBy": null, + "createdTime": "2026-02-02 13:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:49", + "echoMap": {}, + "alarmNo": "1790500351", + "alarmDate": "1770009648142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739091", + "createdBy": null, + "createdTime": "2026-02-02 13:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:09", + "echoMap": {}, + "alarmNo": "1790500352", + "alarmDate": "1770009668249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739248", + "createdBy": null, + "createdTime": "2026-02-02 13:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:23", + "echoMap": {}, + "alarmNo": "1790500353", + "alarmDate": "1770009677234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739289", + "createdBy": null, + "createdTime": "2026-02-02 13:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:20", + "echoMap": {}, + "alarmNo": "1790500354", + "alarmDate": "1770009679336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739492", + "createdBy": null, + "createdTime": "2026-02-02 13:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:32", + "echoMap": {}, + "alarmNo": "1790500355", + "alarmDate": "1770009690617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739553", + "createdBy": null, + "createdTime": "2026-02-02 13:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:35", + "echoMap": {}, + "alarmNo": "1790500356", + "alarmDate": "1770009694043", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739596", + "createdBy": null, + "createdTime": "2026-02-02 13:21:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:18", + "echoMap": {}, + "alarmNo": "1790500357", + "alarmDate": "1770009696260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739784", + "createdBy": null, + "createdTime": "2026-02-02 13:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:40", + "echoMap": {}, + "alarmNo": "1790500358", + "alarmDate": "1770010240438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739810", + "createdBy": null, + "createdTime": "2026-02-02 13:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:39", + "echoMap": {}, + "alarmNo": "1790500359", + "alarmDate": "1770010243117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739861", + "createdBy": null, + "createdTime": "2026-02-02 13:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:47", + "echoMap": {}, + "alarmNo": "1790500360", + "alarmDate": "1770010245784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119845220673821", + "createdBy": null, + "createdTime": "2026-02-02 13:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:25", + "echoMap": {}, + "alarmNo": "1790500361", + "alarmDate": "1770010267001", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119845220674028", + "createdBy": null, + "createdTime": "2026-02-02 13:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:18", + "echoMap": {}, + "alarmNo": "1790500362", + "alarmDate": "1770010277209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119853810608133", + "createdBy": null, + "createdTime": "2026-02-02 13:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:10", + "echoMap": {}, + "alarmNo": "1790500363", + "alarmDate": "1770010842830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575558", + "createdBy": null, + "createdTime": "2026-02-02 13:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:56", + "echoMap": {}, + "alarmNo": "1790500364", + "alarmDate": "1770010854846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575695", + "createdBy": null, + "createdTime": "2026-02-02 13:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:05", + "echoMap": {}, + "alarmNo": "1790500365", + "alarmDate": "1770010864153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575879", + "createdBy": null, + "createdTime": "2026-02-02 13:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:00", + "echoMap": {}, + "alarmNo": "1790500366", + "alarmDate": "1770010877591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575942", + "createdBy": null, + "createdTime": "2026-02-02 13:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:19", + "echoMap": {}, + "alarmNo": "1790500367", + "alarmDate": "1770010881940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576018", + "createdBy": null, + "createdTime": "2026-02-02 13:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:28", + "echoMap": {}, + "alarmNo": "1790500368", + "alarmDate": "1770010886853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576034", + "createdBy": null, + "createdTime": "2026-02-02 13:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:35", + "echoMap": {}, + "alarmNo": "1790500369", + "alarmDate": "1770010887647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576182", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:37", + "echoMap": {}, + "alarmNo": "1790500370", + "alarmDate": "1770010896482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576237", + "createdBy": null, + "createdTime": "2026-02-02 13:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:45", + "echoMap": {}, + "alarmNo": "1790500371", + "alarmDate": "1770010899370", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576377", + "createdBy": null, + "createdTime": "2026-02-02 13:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:06", + "echoMap": {}, + "alarmNo": "1790500372", + "alarmDate": "1770011442105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510022", + "createdBy": null, + "createdTime": "2026-02-02 13:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:49", + "echoMap": {}, + "alarmNo": "1790500373", + "alarmDate": "1770011447658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510399", + "createdBy": null, + "createdTime": "2026-02-02 13:51:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:10", + "echoMap": {}, + "alarmNo": "1790500374", + "alarmDate": "1770011468733", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510461", + "createdBy": null, + "createdTime": "2026-02-02 13:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:13", + "echoMap": {}, + "alarmNo": "1790500375", + "alarmDate": "1770011472164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510734", + "createdBy": null, + "createdTime": "2026-02-02 13:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:29", + "echoMap": {}, + "alarmNo": "1790500376", + "alarmDate": "1770011488276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510811", + "createdBy": null, + "createdTime": "2026-02-02 13:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:34", + "echoMap": {}, + "alarmNo": "1790500377", + "alarmDate": "1770011492562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119875285444637", + "createdBy": null, + "createdTime": "2026-02-02 14:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:05", + "echoMap": {}, + "alarmNo": "1790500378", + "alarmDate": "1770012042496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119875285444638", + "createdBy": null, + "createdTime": "2026-02-02 14:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:43", + "echoMap": {}, + "alarmNo": "1790500379", + "alarmDate": "1770012042505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580411935", + "createdBy": null, + "createdTime": "2026-02-02 14:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:52", + "echoMap": {}, + "alarmNo": "1790500380", + "alarmDate": "1770012045626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580411940", + "createdBy": null, + "createdTime": "2026-02-02 14:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:47", + "echoMap": {}, + "alarmNo": "1790500381", + "alarmDate": "1770012045778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412282", + "createdBy": null, + "createdTime": "2026-02-02 14:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:08", + "echoMap": {}, + "alarmNo": "1790500382", + "alarmDate": "1770012067070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412336", + "createdBy": null, + "createdTime": "2026-02-02 14:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:17", + "echoMap": {}, + "alarmNo": "1790500383", + "alarmDate": "1770012070709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412548", + "createdBy": null, + "createdTime": "2026-02-02 14:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:25", + "echoMap": {}, + "alarmNo": "1790500384", + "alarmDate": "1770012085266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412619", + "createdBy": null, + "createdTime": "2026-02-02 14:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:36", + "echoMap": {}, + "alarmNo": "1790500385", + "alarmDate": "1770012089740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412680", + "createdBy": null, + "createdTime": "2026-02-02 14:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:35", + "echoMap": {}, + "alarmNo": "1790500386", + "alarmDate": "1770012093511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412924", + "createdBy": null, + "createdTime": "2026-02-02 14:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:45", + "echoMap": {}, + "alarmNo": "1790500387", + "alarmDate": "1770012641943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119883875379384", + "createdBy": null, + "createdTime": "2026-02-02 14:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:54", + "echoMap": {}, + "alarmNo": "1790500388", + "alarmDate": "1770012652940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465313811", + "createdBy": null, + "createdTime": "2026-02-02 14:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:03", + "echoMap": {}, + "alarmNo": "1790500389", + "alarmDate": "1770012657084", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465313955", + "createdBy": null, + "createdTime": "2026-02-02 14:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:17", + "echoMap": {}, + "alarmNo": "1790500390", + "alarmDate": "1770012665002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314195", + "createdBy": null, + "createdTime": "2026-02-02 14:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:20", + "echoMap": {}, + "alarmNo": "1790500391", + "alarmDate": "1770012678792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314332", + "createdBy": null, + "createdTime": "2026-02-02 14:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:46", + "echoMap": {}, + "alarmNo": "1790500392", + "alarmDate": "1770012687079", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314357", + "createdBy": null, + "createdTime": "2026-02-02 14:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:47", + "echoMap": {}, + "alarmNo": "1790500393", + "alarmDate": "1770012688419", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314390", + "createdBy": null, + "createdTime": "2026-02-02 14:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:44", + "echoMap": {}, + "alarmNo": "1790500394", + "alarmDate": "1770012690044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314522", + "createdBy": null, + "createdTime": "2026-02-02 14:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:37", + "echoMap": {}, + "alarmNo": "1790500395", + "alarmDate": "1770012696998", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314553", + "createdBy": null, + "createdTime": "2026-02-02 14:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:39", + "echoMap": {}, + "alarmNo": "1790500396", + "alarmDate": "1770012698476", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314779", + "createdBy": null, + "createdTime": "2026-02-02 14:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:47", + "echoMap": {}, + "alarmNo": "1790500398", + "alarmDate": "1770013245579", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314815", + "createdBy": null, + "createdTime": "2026-02-02 14:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:12", + "echoMap": {}, + "alarmNo": "1790500399", + "alarmDate": "1770013247377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119896760281175", + "createdBy": null, + "createdTime": "2026-02-02 14:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:58", + "echoMap": {}, + "alarmNo": "1790500400", + "alarmDate": "1770013252366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350215711", + "createdBy": null, + "createdTime": "2026-02-02 14:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:03", + "echoMap": {}, + "alarmNo": "1790500401", + "alarmDate": "1770013259391", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350215732", + "createdBy": null, + "createdTime": "2026-02-02 14:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:40", + "echoMap": {}, + "alarmNo": "1790500402", + "alarmDate": "1770013260433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216012", + "createdBy": null, + "createdTime": "2026-02-02 14:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:16", + "echoMap": {}, + "alarmNo": "1790500403", + "alarmDate": "1770013275066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216123", + "createdBy": null, + "createdTime": "2026-02-02 14:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:39", + "echoMap": {}, + "alarmNo": "1790500404", + "alarmDate": "1770013281417", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216176", + "createdBy": null, + "createdTime": "2026-02-02 14:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:30", + "echoMap": {}, + "alarmNo": "1790500405", + "alarmDate": "1770013284102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060047", + "deviceName": "[306](10)三门6#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216183", + "createdBy": null, + "createdTime": "2026-02-02 14:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:37", + "echoMap": {}, + "alarmNo": "1790500406", + "alarmDate": "1770013284461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216344", + "createdBy": null, + "createdTime": "2026-02-02 14:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:33", + "echoMap": {}, + "alarmNo": "1790500407", + "alarmDate": "1770013292497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216361", + "createdBy": null, + "createdTime": "2026-02-02 14:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:34", + "echoMap": {}, + "alarmNo": "1790500408", + "alarmDate": "1770013293158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216650", + "createdBy": null, + "createdTime": "2026-02-02 14:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:44", + "echoMap": {}, + "alarmNo": "1790500409", + "alarmDate": "1770013843717", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216696", + "createdBy": null, + "createdTime": "2026-02-02 14:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:52", + "echoMap": {}, + "alarmNo": "1790500410", + "alarmDate": "1770013846492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216698", + "createdBy": null, + "createdTime": "2026-02-02 14:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:48", + "echoMap": {}, + "alarmNo": "1790500411", + "alarmDate": "1770013846617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119909645183021", + "createdBy": null, + "createdTime": "2026-02-02 14:30:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:50", + "echoMap": {}, + "alarmNo": "1790500412", + "alarmDate": "1770013849339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235117746", + "createdBy": null, + "createdTime": "2026-02-02 14:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:24", + "echoMap": {}, + "alarmNo": "1790500413", + "alarmDate": "1770013864845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235117935", + "createdBy": null, + "createdTime": "2026-02-02 14:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:17", + "echoMap": {}, + "alarmNo": "1790500414", + "alarmDate": "1770013876346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235118192", + "createdBy": null, + "createdTime": "2026-02-02 14:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:34", + "echoMap": {}, + "alarmNo": "1790500415", + "alarmDate": "1770013892661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235118257", + "createdBy": null, + "createdTime": "2026-02-02 14:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:37", + "echoMap": {}, + "alarmNo": "1790500416", + "alarmDate": "1770013896833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723119218155448320", + "createdBy": null, + "createdTime": "2026-02-02 03:20:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:08", + "echoMap": {}, + "alarmNo": "1790499885", + "alarmDate": "1769973609244", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119265400089075", + "createdBy": null, + "createdTime": "2026-02-02 04:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:08", + "echoMap": {}, + "alarmNo": "1790499909", + "alarmDate": "1769976309116", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119364184336490", + "createdBy": null, + "createdTime": "2026-02-02 05:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:12", + "echoMap": {}, + "alarmNo": "1790499959", + "alarmDate": "1769982611636", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1026030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119613292439611", + "createdBy": null, + "createdTime": "2026-02-02 10:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:08", + "echoMap": {}, + "alarmNo": "1790500174", + "alarmDate": "1769997609217", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119673421981807", + "createdBy": null, + "createdTime": "2026-02-02 11:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:11", + "echoMap": {}, + "alarmNo": "1790500230", + "alarmDate": "1770001210858", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1026030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119733551524468", + "createdBy": null, + "createdTime": "2026-02-02 11:55:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:14", + "echoMap": {}, + "alarmNo": "1790500285", + "alarmDate": "1770004514145", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1026030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119892465314709", + "createdBy": null, + "createdTime": "2026-02-02 14:20:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:08", + "echoMap": {}, + "alarmNo": "1790500397", + "alarmDate": "1770013209085", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + } + ], + "ndmSwitch": [ + { + "id": "723119682011916377", + "createdBy": null, + "createdTime": "2026-02-02 11:08:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:33", + "echoMap": {}, + "alarmNo": "1790500240", + "alarmDate": "1770001704505", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1026040004", + "deviceName": "H3C前端交换机3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1026" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723119918235118257", + "createdBy": null, + "createdTime": "2026-02-02 14:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:37", + "echoMap": {}, + "alarmNo": "1790500416", + "alarmDate": "1770013896833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235118192", + "createdBy": null, + "createdTime": "2026-02-02 14:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:34", + "echoMap": {}, + "alarmNo": "1790500415", + "alarmDate": "1770013892661", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235117935", + "createdBy": null, + "createdTime": "2026-02-02 14:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:17", + "echoMap": {}, + "alarmNo": "1790500414", + "alarmDate": "1770013876346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119918235117746", + "createdBy": null, + "createdTime": "2026-02-02 14:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:24", + "echoMap": {}, + "alarmNo": "1790500413", + "alarmDate": "1770013864845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119909645183021", + "createdBy": null, + "createdTime": "2026-02-02 14:30:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:50", + "echoMap": {}, + "alarmNo": "1790500412", + "alarmDate": "1770013849339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216698", + "createdBy": null, + "createdTime": "2026-02-02 14:30:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:48", + "echoMap": {}, + "alarmNo": "1790500411", + "alarmDate": "1770013846617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216696", + "createdBy": null, + "createdTime": "2026-02-02 14:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:52", + "echoMap": {}, + "alarmNo": "1790500410", + "alarmDate": "1770013846492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216650", + "createdBy": null, + "createdTime": "2026-02-02 14:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:44", + "echoMap": {}, + "alarmNo": "1790500409", + "alarmDate": "1770013843717", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216361", + "createdBy": null, + "createdTime": "2026-02-02 14:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:34", + "echoMap": {}, + "alarmNo": "1790500408", + "alarmDate": "1770013293158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216344", + "createdBy": null, + "createdTime": "2026-02-02 14:21:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:33", + "echoMap": {}, + "alarmNo": "1790500407", + "alarmDate": "1770013292497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216183", + "createdBy": null, + "createdTime": "2026-02-02 14:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:37", + "echoMap": {}, + "alarmNo": "1790500406", + "alarmDate": "1770013284461", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216176", + "createdBy": null, + "createdTime": "2026-02-02 14:21:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:30", + "echoMap": {}, + "alarmNo": "1790500405", + "alarmDate": "1770013284102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060047", + "deviceName": "[306](10)三门6#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216123", + "createdBy": null, + "createdTime": "2026-02-02 14:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:39", + "echoMap": {}, + "alarmNo": "1790500404", + "alarmDate": "1770013281417", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350216012", + "createdBy": null, + "createdTime": "2026-02-02 14:21:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:16", + "echoMap": {}, + "alarmNo": "1790500403", + "alarmDate": "1770013275066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350215732", + "createdBy": null, + "createdTime": "2026-02-02 14:21:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:40", + "echoMap": {}, + "alarmNo": "1790500402", + "alarmDate": "1770013260433", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119905350215711", + "createdBy": null, + "createdTime": "2026-02-02 14:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:03", + "echoMap": {}, + "alarmNo": "1790500401", + "alarmDate": "1770013259391", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119896760281175", + "createdBy": null, + "createdTime": "2026-02-02 14:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:58", + "echoMap": {}, + "alarmNo": "1790500400", + "alarmDate": "1770013252366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314815", + "createdBy": null, + "createdTime": "2026-02-02 14:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:12", + "echoMap": {}, + "alarmNo": "1790500399", + "alarmDate": "1770013247377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314779", + "createdBy": null, + "createdTime": "2026-02-02 14:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:47", + "echoMap": {}, + "alarmNo": "1790500398", + "alarmDate": "1770013245579", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314709", + "createdBy": null, + "createdTime": "2026-02-02 14:20:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:21:08", + "echoMap": {}, + "alarmNo": "1790500397", + "alarmDate": "1770013209085", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119892465314553", + "createdBy": null, + "createdTime": "2026-02-02 14:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:39", + "echoMap": {}, + "alarmNo": "1790500396", + "alarmDate": "1770012698476", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314522", + "createdBy": null, + "createdTime": "2026-02-02 14:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:37", + "echoMap": {}, + "alarmNo": "1790500395", + "alarmDate": "1770012696998", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314390", + "createdBy": null, + "createdTime": "2026-02-02 14:11:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:44", + "echoMap": {}, + "alarmNo": "1790500394", + "alarmDate": "1770012690044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314357", + "createdBy": null, + "createdTime": "2026-02-02 14:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:47", + "echoMap": {}, + "alarmNo": "1790500393", + "alarmDate": "1770012688419", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314332", + "createdBy": null, + "createdTime": "2026-02-02 14:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:46", + "echoMap": {}, + "alarmNo": "1790500392", + "alarmDate": "1770012687079", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465314195", + "createdBy": null, + "createdTime": "2026-02-02 14:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:20", + "echoMap": {}, + "alarmNo": "1790500391", + "alarmDate": "1770012678792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465313955", + "createdBy": null, + "createdTime": "2026-02-02 14:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:17", + "echoMap": {}, + "alarmNo": "1790500390", + "alarmDate": "1770012665002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119892465313811", + "createdBy": null, + "createdTime": "2026-02-02 14:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:03", + "echoMap": {}, + "alarmNo": "1790500389", + "alarmDate": "1770012657084", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119883875379384", + "createdBy": null, + "createdTime": "2026-02-02 14:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:54", + "echoMap": {}, + "alarmNo": "1790500388", + "alarmDate": "1770012652940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412924", + "createdBy": null, + "createdTime": "2026-02-02 14:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:45", + "echoMap": {}, + "alarmNo": "1790500387", + "alarmDate": "1770012641943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412680", + "createdBy": null, + "createdTime": "2026-02-02 14:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:35", + "echoMap": {}, + "alarmNo": "1790500386", + "alarmDate": "1770012093511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412619", + "createdBy": null, + "createdTime": "2026-02-02 14:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:36", + "echoMap": {}, + "alarmNo": "1790500385", + "alarmDate": "1770012089740", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412548", + "createdBy": null, + "createdTime": "2026-02-02 14:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:25", + "echoMap": {}, + "alarmNo": "1790500384", + "alarmDate": "1770012085266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412336", + "createdBy": null, + "createdTime": "2026-02-02 14:01:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:17", + "echoMap": {}, + "alarmNo": "1790500383", + "alarmDate": "1770012070709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580412282", + "createdBy": null, + "createdTime": "2026-02-02 14:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:08", + "echoMap": {}, + "alarmNo": "1790500382", + "alarmDate": "1770012067070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580411940", + "createdBy": null, + "createdTime": "2026-02-02 14:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:47", + "echoMap": {}, + "alarmNo": "1790500381", + "alarmDate": "1770012045778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119879580411935", + "createdBy": null, + "createdTime": "2026-02-02 14:00:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:52", + "echoMap": {}, + "alarmNo": "1790500380", + "alarmDate": "1770012045626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119875285444638", + "createdBy": null, + "createdTime": "2026-02-02 14:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:43", + "echoMap": {}, + "alarmNo": "1790500379", + "alarmDate": "1770012042505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119875285444637", + "createdBy": null, + "createdTime": "2026-02-02 14:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:05", + "echoMap": {}, + "alarmNo": "1790500378", + "alarmDate": "1770012042496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510811", + "createdBy": null, + "createdTime": "2026-02-02 13:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:34", + "echoMap": {}, + "alarmNo": "1790500377", + "alarmDate": "1770011492562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510734", + "createdBy": null, + "createdTime": "2026-02-02 13:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:29", + "echoMap": {}, + "alarmNo": "1790500376", + "alarmDate": "1770011488276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510461", + "createdBy": null, + "createdTime": "2026-02-02 13:51:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:13", + "echoMap": {}, + "alarmNo": "1790500375", + "alarmDate": "1770011472164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510399", + "createdBy": null, + "createdTime": "2026-02-02 13:51:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:10", + "echoMap": {}, + "alarmNo": "1790500374", + "alarmDate": "1770011468733", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119866695510022", + "createdBy": null, + "createdTime": "2026-02-02 13:50:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:49", + "echoMap": {}, + "alarmNo": "1790500373", + "alarmDate": "1770011447658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576377", + "createdBy": null, + "createdTime": "2026-02-02 13:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:06", + "echoMap": {}, + "alarmNo": "1790500372", + "alarmDate": "1770011442105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576237", + "createdBy": null, + "createdTime": "2026-02-02 13:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:45", + "echoMap": {}, + "alarmNo": "1790500371", + "alarmDate": "1770010899370", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576182", + "createdBy": null, + "createdTime": "2026-02-02 13:41:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:37", + "echoMap": {}, + "alarmNo": "1790500370", + "alarmDate": "1770010896482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576034", + "createdBy": null, + "createdTime": "2026-02-02 13:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:35", + "echoMap": {}, + "alarmNo": "1790500369", + "alarmDate": "1770010887647", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105576018", + "createdBy": null, + "createdTime": "2026-02-02 13:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:28", + "echoMap": {}, + "alarmNo": "1790500368", + "alarmDate": "1770010886853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575942", + "createdBy": null, + "createdTime": "2026-02-02 13:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:19", + "echoMap": {}, + "alarmNo": "1790500367", + "alarmDate": "1770010881940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575879", + "createdBy": null, + "createdTime": "2026-02-02 13:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:00", + "echoMap": {}, + "alarmNo": "1790500366", + "alarmDate": "1770010877591", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575695", + "createdBy": null, + "createdTime": "2026-02-02 13:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:05", + "echoMap": {}, + "alarmNo": "1790500365", + "alarmDate": "1770010864153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119858105575558", + "createdBy": null, + "createdTime": "2026-02-02 13:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:56", + "echoMap": {}, + "alarmNo": "1790500364", + "alarmDate": "1770010854846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119853810608133", + "createdBy": null, + "createdTime": "2026-02-02 13:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:10", + "echoMap": {}, + "alarmNo": "1790500363", + "alarmDate": "1770010842830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119845220674028", + "createdBy": null, + "createdTime": "2026-02-02 13:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:18", + "echoMap": {}, + "alarmNo": "1790500362", + "alarmDate": "1770010277209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119845220673821", + "createdBy": null, + "createdTime": "2026-02-02 13:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:25", + "echoMap": {}, + "alarmNo": "1790500361", + "alarmDate": "1770010267001", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739861", + "createdBy": null, + "createdTime": "2026-02-02 13:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:47", + "echoMap": {}, + "alarmNo": "1790500360", + "alarmDate": "1770010245784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739810", + "createdBy": null, + "createdTime": "2026-02-02 13:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:39", + "echoMap": {}, + "alarmNo": "1790500359", + "alarmDate": "1770010243117", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739784", + "createdBy": null, + "createdTime": "2026-02-02 13:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:40", + "echoMap": {}, + "alarmNo": "1790500358", + "alarmDate": "1770010240438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739596", + "createdBy": null, + "createdTime": "2026-02-02 13:21:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:31:18", + "echoMap": {}, + "alarmNo": "1790500357", + "alarmDate": "1770009696260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739553", + "createdBy": null, + "createdTime": "2026-02-02 13:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:35", + "echoMap": {}, + "alarmNo": "1790500356", + "alarmDate": "1770009694043", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739492", + "createdBy": null, + "createdTime": "2026-02-02 13:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:32", + "echoMap": {}, + "alarmNo": "1790500355", + "alarmDate": "1770009690617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739289", + "createdBy": null, + "createdTime": "2026-02-02 13:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:20", + "echoMap": {}, + "alarmNo": "1790500354", + "alarmDate": "1770009679336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739248", + "createdBy": null, + "createdTime": "2026-02-02 13:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:23", + "echoMap": {}, + "alarmNo": "1790500353", + "alarmDate": "1770009677234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119836630739091", + "createdBy": null, + "createdTime": "2026-02-02 13:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:09", + "echoMap": {}, + "alarmNo": "1790500352", + "alarmDate": "1770009668249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837937", + "createdBy": null, + "createdTime": "2026-02-02 13:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:49", + "echoMap": {}, + "alarmNo": "1790500351", + "alarmDate": "1770009648142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837665", + "createdBy": null, + "createdTime": "2026-02-02 13:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:49", + "echoMap": {}, + "alarmNo": "1790500350", + "alarmDate": "1770009098357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837653", + "createdBy": null, + "createdTime": "2026-02-02 13:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:58", + "echoMap": {}, + "alarmNo": "1790500349", + "alarmDate": "1770009097831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837634", + "createdBy": null, + "createdTime": "2026-02-02 13:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:38", + "echoMap": {}, + "alarmNo": "1790500348", + "alarmDate": "1770009096972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837575", + "createdBy": null, + "createdTime": "2026-02-02 13:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:51", + "echoMap": {}, + "alarmNo": "1790500347", + "alarmDate": "1770009093682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837181", + "createdBy": null, + "createdTime": "2026-02-02 13:11:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:11", + "echoMap": {}, + "alarmNo": "1790500346", + "alarmDate": "1770009070306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119823745837117", + "createdBy": null, + "createdTime": "2026-02-02 13:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:08", + "echoMap": {}, + "alarmNo": "1790500345", + "alarmDate": "1770009067044", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935992", + "createdBy": null, + "createdTime": "2026-02-02 13:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:46", + "echoMap": {}, + "alarmNo": "1790500344", + "alarmDate": "1770009042330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935978", + "createdBy": null, + "createdTime": "2026-02-02 13:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:42", + "echoMap": {}, + "alarmNo": "1790500343", + "alarmDate": "1770009040890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935662", + "createdBy": null, + "createdTime": "2026-02-02 13:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:37", + "echoMap": {}, + "alarmNo": "1790500342", + "alarmDate": "1770008489569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935622", + "createdBy": null, + "createdTime": "2026-02-02 13:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:10", + "echoMap": {}, + "alarmNo": "1790500341", + "alarmDate": "1770008487390", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935410", + "createdBy": null, + "createdTime": "2026-02-02 13:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "1790500340", + "alarmDate": "1770008475450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935383", + "createdBy": null, + "createdTime": "2026-02-02 13:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:33", + "echoMap": {}, + "alarmNo": "1790500339", + "alarmDate": "1770008474110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935237", + "createdBy": null, + "createdTime": "2026-02-02 13:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:13", + "echoMap": {}, + "alarmNo": "1790500338", + "alarmDate": "1770008466534", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060047", + "deviceName": "[306](10)三门6#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935197", + "createdBy": null, + "createdTime": "2026-02-02 13:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:05", + "echoMap": {}, + "alarmNo": "1790500337", + "alarmDate": "1770008464421", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119810860935179", + "createdBy": null, + "createdTime": "2026-02-02 13:01:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:04", + "echoMap": {}, + "alarmNo": "1790500336", + "alarmDate": "1770008463654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034241", + "createdBy": null, + "createdTime": "2026-02-02 13:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:59", + "echoMap": {}, + "alarmNo": "1790500335", + "alarmDate": "1770008452539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034136", + "createdBy": null, + "createdTime": "2026-02-02 13:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:48", + "echoMap": {}, + "alarmNo": "1790500334", + "alarmDate": "1770008446935", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034065", + "createdBy": null, + "createdTime": "2026-02-02 13:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:15", + "echoMap": {}, + "alarmNo": "1790500333", + "alarmDate": "1770008443375", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976034051", + "createdBy": null, + "createdTime": "2026-02-02 13:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:56", + "echoMap": {}, + "alarmNo": "1790500332", + "alarmDate": "1770008442419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033774", + "createdBy": null, + "createdTime": "2026-02-02 12:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:35", + "echoMap": {}, + "alarmNo": "1790500331", + "alarmDate": "1770007893685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033759", + "createdBy": null, + "createdTime": "2026-02-02 12:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:39", + "echoMap": {}, + "alarmNo": "1790500330", + "alarmDate": "1770007893169", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033720", + "createdBy": null, + "createdTime": "2026-02-02 12:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:13", + "echoMap": {}, + "alarmNo": "1790500329", + "alarmDate": "1770007891306", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033526", + "createdBy": null, + "createdTime": "2026-02-02 12:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:44", + "echoMap": {}, + "alarmNo": "1790500328", + "alarmDate": "1770007881137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033426", + "createdBy": null, + "createdTime": "2026-02-02 12:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:22", + "echoMap": {}, + "alarmNo": "1790500327", + "alarmDate": "1770007876090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033376", + "createdBy": null, + "createdTime": "2026-02-02 12:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:14", + "echoMap": {}, + "alarmNo": "1790500326", + "alarmDate": "1770007873488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119797976033307", + "createdBy": null, + "createdTime": "2026-02-02 12:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:26", + "echoMap": {}, + "alarmNo": "1790500325", + "alarmDate": "1770007870356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119789386098725", + "createdBy": null, + "createdTime": "2026-02-02 12:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:03", + "echoMap": {}, + "alarmNo": "1790500324", + "alarmDate": "1770007862405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132375", + "createdBy": null, + "createdTime": "2026-02-02 12:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:10", + "echoMap": {}, + "alarmNo": "1790500323", + "alarmDate": "1770007858409", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132257", + "createdBy": null, + "createdTime": "2026-02-02 12:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:53", + "echoMap": {}, + "alarmNo": "1790500322", + "alarmDate": "1770007852291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132092", + "createdBy": null, + "createdTime": "2026-02-02 12:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:44", + "echoMap": {}, + "alarmNo": "1790500321", + "alarmDate": "1770007844382", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091132085", + "createdBy": null, + "createdTime": "2026-02-02 12:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:01", + "echoMap": {}, + "alarmNo": "1790500320", + "alarmDate": "1770007844161", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131889", + "createdBy": null, + "createdTime": "2026-02-02 12:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:03", + "echoMap": {}, + "alarmNo": "1790500319", + "alarmDate": "1770007297820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131586", + "createdBy": null, + "createdTime": "2026-02-02 12:41:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:21", + "echoMap": {}, + "alarmNo": "1790500318", + "alarmDate": "1770007280249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131569", + "createdBy": null, + "createdTime": "2026-02-02 12:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:20", + "echoMap": {}, + "alarmNo": "1790500317", + "alarmDate": "1770007279450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119785091131480", + "createdBy": null, + "createdTime": "2026-02-02 12:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:48", + "echoMap": {}, + "alarmNo": "1790500316", + "alarmDate": "1770007274369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119776501196822", + "createdBy": null, + "createdTime": "2026-02-02 12:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:26", + "echoMap": {}, + "alarmNo": "1790500315", + "alarmDate": "1770007261707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119772206230021", + "createdBy": null, + "createdTime": "2026-02-02 12:31:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:51", + "echoMap": {}, + "alarmNo": "1790500314", + "alarmDate": "1770006693649", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119772206229913", + "createdBy": null, + "createdTime": "2026-02-02 12:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:28", + "echoMap": {}, + "alarmNo": "1790500313", + "alarmDate": "1770006686739", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119772206229556", + "createdBy": null, + "createdTime": "2026-02-02 12:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:58", + "echoMap": {}, + "alarmNo": "1790500312", + "alarmDate": "1770006664237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328595", + "createdBy": null, + "createdTime": "2026-02-02 12:30:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:47", + "echoMap": {}, + "alarmNo": "1790500311", + "alarmDate": "1770006645889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328560", + "createdBy": null, + "createdTime": "2026-02-02 12:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:31:22", + "echoMap": {}, + "alarmNo": "1790500310", + "alarmDate": "1770006643918", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328551", + "createdBy": null, + "createdTime": "2026-02-02 12:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:51", + "echoMap": {}, + "alarmNo": "1790500309", + "alarmDate": "1770006643625", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321328289", + "createdBy": null, + "createdTime": "2026-02-02 12:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:34", + "echoMap": {}, + "alarmNo": "1790500308", + "alarmDate": "1770006092701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327881", + "createdBy": null, + "createdTime": "2026-02-02 12:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:08", + "echoMap": {}, + "alarmNo": "1790500307", + "alarmDate": "1770006067485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327736", + "createdBy": null, + "createdTime": "2026-02-02 12:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:00", + "echoMap": {}, + "alarmNo": "1790500306", + "alarmDate": "1770006059331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327699", + "createdBy": null, + "createdTime": "2026-02-02 12:20:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:58", + "echoMap": {}, + "alarmNo": "1790500305", + "alarmDate": "1770006057454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119759321327664", + "createdBy": null, + "createdTime": "2026-02-02 12:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:41", + "echoMap": {}, + "alarmNo": "1790500304", + "alarmDate": "1770006055777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393963", + "createdBy": null, + "createdTime": "2026-02-02 12:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:01", + "echoMap": {}, + "alarmNo": "1790500303", + "alarmDate": "1770006048560", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393895", + "createdBy": null, + "createdTime": "2026-02-02 12:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:46", + "echoMap": {}, + "alarmNo": "1790500302", + "alarmDate": "1770006044507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393655", + "createdBy": null, + "createdTime": "2026-02-02 12:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:36", + "echoMap": {}, + "alarmNo": "1790500301", + "alarmDate": "1770005495389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393571", + "createdBy": null, + "createdTime": "2026-02-02 12:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:43", + "echoMap": {}, + "alarmNo": "1790500300", + "alarmDate": "1770005490567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393534", + "createdBy": null, + "createdTime": "2026-02-02 12:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:29", + "echoMap": {}, + "alarmNo": "1790500299", + "alarmDate": "1770005488463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393513", + "createdBy": null, + "createdTime": "2026-02-02 12:11:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:34", + "echoMap": {}, + "alarmNo": "1790500298", + "alarmDate": "1770005487264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393435", + "createdBy": null, + "createdTime": "2026-02-02 12:11:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:01", + "echoMap": {}, + "alarmNo": "1790500297", + "alarmDate": "1770005482180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119750731393035", + "createdBy": null, + "createdTime": "2026-02-02 12:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:56", + "echoMap": {}, + "alarmNo": "1790500296", + "alarmDate": "1770005455096", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141459049", + "createdBy": null, + "createdTime": "2026-02-02 12:01:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:59", + "echoMap": {}, + "alarmNo": "1790500295", + "alarmDate": "1770004892453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458958", + "createdBy": null, + "createdTime": "2026-02-02 12:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:21:03", + "echoMap": {}, + "alarmNo": "1790500294", + "alarmDate": "1770004887086", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458811", + "createdBy": null, + "createdTime": "2026-02-02 12:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:11:09", + "echoMap": {}, + "alarmNo": "1790500293", + "alarmDate": "1770004878103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458788", + "createdBy": null, + "createdTime": "2026-02-02 12:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:51", + "echoMap": {}, + "alarmNo": "1790500292", + "alarmDate": "1770004876652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458531", + "createdBy": null, + "createdTime": "2026-02-02 12:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:14", + "echoMap": {}, + "alarmNo": "1790500291", + "alarmDate": "1770004860496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458503", + "createdBy": null, + "createdTime": "2026-02-02 12:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:05", + "echoMap": {}, + "alarmNo": "1790500290", + "alarmDate": "1770004858862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119742141458472", + "createdBy": null, + "createdTime": "2026-02-02 12:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:03", + "echoMap": {}, + "alarmNo": "1790500289", + "alarmDate": "1770004857182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524545", + "createdBy": null, + "createdTime": "2026-02-02 12:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:43", + "echoMap": {}, + "alarmNo": "1790500288", + "alarmDate": "1770004842155", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524543", + "createdBy": null, + "createdTime": "2026-02-02 12:00:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:41", + "echoMap": {}, + "alarmNo": "1790500287", + "alarmDate": "1770004841875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524535", + "createdBy": null, + "createdTime": "2026-02-02 12:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:41", + "echoMap": {}, + "alarmNo": "1790500286", + "alarmDate": "1770004840930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060021", + "deviceName": "[301](10)三门3#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524468", + "createdBy": null, + "createdTime": "2026-02-02 11:55:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:14", + "echoMap": {}, + "alarmNo": "1790500285", + "alarmDate": "1770004514145", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1026030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119733551524381", + "createdBy": null, + "createdTime": "2026-02-02 11:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:48", + "echoMap": {}, + "alarmNo": "1790500284", + "alarmDate": "1770004298309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524308", + "createdBy": null, + "createdTime": "2026-02-02 11:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:57", + "echoMap": {}, + "alarmNo": "1790500283", + "alarmDate": "1770004293901", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524198", + "createdBy": null, + "createdTime": "2026-02-02 11:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:29", + "echoMap": {}, + "alarmNo": "1790500282", + "alarmDate": "1770004287847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551524176", + "createdBy": null, + "createdTime": "2026-02-02 11:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:33", + "echoMap": {}, + "alarmNo": "1790500281", + "alarmDate": "1770004286834", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119733551523990", + "createdBy": null, + "createdTime": "2026-02-02 11:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:18", + "echoMap": {}, + "alarmNo": "1790500280", + "alarmDate": "1770004277228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590174", + "createdBy": null, + "createdTime": "2026-02-02 11:51:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:06", + "echoMap": {}, + "alarmNo": "1790500279", + "alarmDate": "1770004264563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590158", + "createdBy": null, + "createdTime": "2026-02-02 11:51:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:05", + "echoMap": {}, + "alarmNo": "1790500278", + "alarmDate": "1770004264038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590114", + "createdBy": null, + "createdTime": "2026-02-02 11:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:03", + "echoMap": {}, + "alarmNo": "1790500277", + "alarmDate": "1770004261563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961590022", + "createdBy": null, + "createdTime": "2026-02-02 11:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:03", + "echoMap": {}, + "alarmNo": "1790500276", + "alarmDate": "1770004256798", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589899", + "createdBy": null, + "createdTime": "2026-02-02 11:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:51", + "echoMap": {}, + "alarmNo": "1790500275", + "alarmDate": "1770004249962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589779", + "createdBy": null, + "createdTime": "2026-02-02 11:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:44", + "echoMap": {}, + "alarmNo": "1790500274", + "alarmDate": "1770004242692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060060", + "deviceName": "[110](10)三门下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589771", + "createdBy": null, + "createdTime": "2026-02-02 11:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:28", + "echoMap": {}, + "alarmNo": "1790500273", + "alarmDate": "1770004242339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589635", + "createdBy": null, + "createdTime": "2026-02-02 11:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:56", + "echoMap": {}, + "alarmNo": "1790500272", + "alarmDate": "1770003699614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589587", + "createdBy": null, + "createdTime": "2026-02-02 11:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:38", + "echoMap": {}, + "alarmNo": "1790500271", + "alarmDate": "1770003696850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589500", + "createdBy": null, + "createdTime": "2026-02-02 11:41:32", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:38", + "echoMap": {}, + "alarmNo": "1790500270", + "alarmDate": "1770003691894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589314", + "createdBy": null, + "createdTime": "2026-02-02 11:41:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:28", + "echoMap": {}, + "alarmNo": "1790500269", + "alarmDate": "1770003681712", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119724961589305", + "createdBy": null, + "createdTime": "2026-02-02 11:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:33", + "echoMap": {}, + "alarmNo": "1790500268", + "alarmDate": "1770003681113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119720666621998", + "createdBy": null, + "createdTime": "2026-02-02 11:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:19", + "echoMap": {}, + "alarmNo": "1790500267", + "alarmDate": "1770003677725", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119712076688181", + "createdBy": null, + "createdTime": "2026-02-02 11:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:07", + "echoMap": {}, + "alarmNo": "1790500266", + "alarmDate": "1770003660014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119712076687891", + "createdBy": null, + "createdTime": "2026-02-02 11:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:41:19", + "echoMap": {}, + "alarmNo": "1790500265", + "alarmDate": "1770003642759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119707781720088", + "createdBy": null, + "createdTime": "2026-02-02 11:31:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:49", + "echoMap": {}, + "alarmNo": "1790500264", + "alarmDate": "1770003078472", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486753176", + "createdBy": null, + "createdTime": "2026-02-02 11:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:52", + "echoMap": {}, + "alarmNo": "1790500263", + "alarmDate": "1770003043245", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486753157", + "createdBy": null, + "createdTime": "2026-02-02 11:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:43", + "echoMap": {}, + "alarmNo": "1790500262", + "alarmDate": "1770003041981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486752916", + "createdBy": null, + "createdTime": "2026-02-02 11:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:40", + "echoMap": {}, + "alarmNo": "1790500261", + "alarmDate": "1770002494090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119703486752785", + "createdBy": null, + "createdTime": "2026-02-02 11:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:28", + "echoMap": {}, + "alarmNo": "1790500260", + "alarmDate": "1770002486822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896819009", + "createdBy": null, + "createdTime": "2026-02-02 11:21:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:18", + "echoMap": {}, + "alarmNo": "1790500259", + "alarmDate": "1770002476986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818905", + "createdBy": null, + "createdTime": "2026-02-02 11:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:12", + "echoMap": {}, + "alarmNo": "1790500258", + "alarmDate": "1770002470617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818708", + "createdBy": null, + "createdTime": "2026-02-02 11:20:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:21:00", + "echoMap": {}, + "alarmNo": "1790500257", + "alarmDate": "1770002458537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818663", + "createdBy": null, + "createdTime": "2026-02-02 11:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:57", + "echoMap": {}, + "alarmNo": "1790500256", + "alarmDate": "1770002456085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818582", + "createdBy": null, + "createdTime": "2026-02-02 11:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:55", + "echoMap": {}, + "alarmNo": "1790500255", + "alarmDate": "1770002451936", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818495", + "createdBy": null, + "createdTime": "2026-02-02 11:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:49", + "echoMap": {}, + "alarmNo": "1790500254", + "alarmDate": "1770002447708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818423", + "createdBy": null, + "createdTime": "2026-02-02 11:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:49", + "echoMap": {}, + "alarmNo": "1790500253", + "alarmDate": "1770002444197", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818406", + "createdBy": null, + "createdTime": "2026-02-02 11:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:52", + "echoMap": {}, + "alarmNo": "1790500252", + "alarmDate": "1770002443509", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818270", + "createdBy": null, + "createdTime": "2026-02-02 11:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:49", + "echoMap": {}, + "alarmNo": "1790500251", + "alarmDate": "1770001901570", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119694896818220", + "createdBy": null, + "createdTime": "2026-02-02 11:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:51", + "echoMap": {}, + "alarmNo": "1790500250", + "alarmDate": "1770001898803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119686306883590", + "createdBy": null, + "createdTime": "2026-02-02 11:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:24", + "echoMap": {}, + "alarmNo": "1790500249", + "alarmDate": "1770001891439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119686306883587", + "createdBy": null, + "createdTime": "2026-02-02 11:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:32", + "echoMap": {}, + "alarmNo": "1790500248", + "alarmDate": "1770001891399", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011917073", + "createdBy": null, + "createdTime": "2026-02-02 11:11:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:25", + "echoMap": {}, + "alarmNo": "1790500247", + "alarmDate": "1770001877624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916888", + "createdBy": null, + "createdTime": "2026-02-02 11:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:08", + "echoMap": {}, + "alarmNo": "1790500246", + "alarmDate": "1770001866960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916702", + "createdBy": null, + "createdTime": "2026-02-02 11:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:11:09", + "echoMap": {}, + "alarmNo": "1790500245", + "alarmDate": "1770001856732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916450", + "createdBy": null, + "createdTime": "2026-02-02 11:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:57", + "echoMap": {}, + "alarmNo": "1790500244", + "alarmDate": "1770001843682", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916431", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:42", + "echoMap": {}, + "alarmNo": "1790500243", + "alarmDate": "1770001842478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916425", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:42", + "echoMap": {}, + "alarmNo": "1790500242", + "alarmDate": "1770001841841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916421", + "createdBy": null, + "createdTime": "2026-02-02 11:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:31:29", + "echoMap": {}, + "alarmNo": "1790500241", + "alarmDate": "1770001841552", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119682011916377", + "createdBy": null, + "createdTime": "2026-02-02 11:08:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:12:33", + "echoMap": {}, + "alarmNo": "1790500240", + "alarmDate": "1770001704505", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1026040004", + "deviceName": "H3C前端交换机3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1026" + }, + { + "id": "723119673421982504", + "createdBy": null, + "createdTime": "2026-02-02 11:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:04", + "echoMap": {}, + "alarmNo": "1790500239", + "alarmDate": "1770001287238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982471", + "createdBy": null, + "createdTime": "2026-02-02 11:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:26", + "echoMap": {}, + "alarmNo": "1790500238", + "alarmDate": "1770001285324", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982410", + "createdBy": null, + "createdTime": "2026-02-02 11:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:34", + "echoMap": {}, + "alarmNo": "1790500237", + "alarmDate": "1770001281508", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982141", + "createdBy": null, + "createdTime": "2026-02-02 11:01:05", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:40", + "echoMap": {}, + "alarmNo": "1790500236", + "alarmDate": "1770001264627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982121", + "createdBy": null, + "createdTime": "2026-02-02 11:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:10", + "echoMap": {}, + "alarmNo": "1790500235", + "alarmDate": "1770001263445", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982080", + "createdBy": null, + "createdTime": "2026-02-02 11:01:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:13", + "echoMap": {}, + "alarmNo": "1790500234", + "alarmDate": "1770001260951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421982011", + "createdBy": null, + "createdTime": "2026-02-02 11:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:34", + "echoMap": {}, + "alarmNo": "1790500233", + "alarmDate": "1770001256065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421981949", + "createdBy": null, + "createdTime": "2026-02-02 11:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:57", + "echoMap": {}, + "alarmNo": "1790500232", + "alarmDate": "1770001251472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421981838", + "createdBy": null, + "createdTime": "2026-02-02 11:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:44", + "echoMap": {}, + "alarmNo": "1790500231", + "alarmDate": "1770001243264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119673421981807", + "createdBy": null, + "createdTime": "2026-02-02 11:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:05:11", + "echoMap": {}, + "alarmNo": "1790500230", + "alarmDate": "1770001210858", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1026030008", + "deviceName": "安防箱8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119664832047973", + "createdBy": null, + "createdTime": "2026-02-02 10:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:45", + "echoMap": {}, + "alarmNo": "1790500229", + "alarmDate": "1770000693650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047941", + "createdBy": null, + "createdTime": "2026-02-02 10:51:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:33", + "echoMap": {}, + "alarmNo": "1790500228", + "alarmDate": "1770000692083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047882", + "createdBy": null, + "createdTime": "2026-02-02 10:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:28", + "echoMap": {}, + "alarmNo": "1790500227", + "alarmDate": "1770000688440", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060040", + "deviceName": "[310](10)三门6#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047868", + "createdBy": null, + "createdTime": "2026-02-02 10:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:29", + "echoMap": {}, + "alarmNo": "1790500226", + "alarmDate": "1770000687903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047737", + "createdBy": null, + "createdTime": "2026-02-02 10:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:21", + "echoMap": {}, + "alarmNo": "1790500225", + "alarmDate": "1770000679701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047663", + "createdBy": null, + "createdTime": "2026-02-02 10:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:39", + "echoMap": {}, + "alarmNo": "1790500224", + "alarmDate": "1770000675257", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047558", + "createdBy": null, + "createdTime": "2026-02-02 10:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:24", + "echoMap": {}, + "alarmNo": "1790500223", + "alarmDate": "1770000668365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047462", + "createdBy": null, + "createdTime": "2026-02-02 10:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:03", + "echoMap": {}, + "alarmNo": "1790500222", + "alarmDate": "1770000662121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047251", + "createdBy": null, + "createdTime": "2026-02-02 10:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:50", + "echoMap": {}, + "alarmNo": "1790500221", + "alarmDate": "1770000648568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047161", + "createdBy": null, + "createdTime": "2026-02-02 10:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:44", + "echoMap": {}, + "alarmNo": "1790500220", + "alarmDate": "1770000642655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119664832047158", + "createdBy": null, + "createdTime": "2026-02-02 10:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:26", + "echoMap": {}, + "alarmNo": "1790500219", + "alarmDate": "1770000642521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113388", + "createdBy": null, + "createdTime": "2026-02-02 10:41:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:03", + "echoMap": {}, + "alarmNo": "1790500218", + "alarmDate": "1770000095313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113371", + "createdBy": null, + "createdTime": "2026-02-02 10:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:35", + "echoMap": {}, + "alarmNo": "1790500217", + "alarmDate": "1770000094423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113364", + "createdBy": null, + "createdTime": "2026-02-02 10:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:46", + "echoMap": {}, + "alarmNo": "1790500216", + "alarmDate": "1770000093911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113275", + "createdBy": null, + "createdTime": "2026-02-02 10:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:29", + "echoMap": {}, + "alarmNo": "1790500215", + "alarmDate": "1770000087468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113246", + "createdBy": null, + "createdTime": "2026-02-02 10:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:37", + "echoMap": {}, + "alarmNo": "1790500214", + "alarmDate": "1770000085319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242113100", + "createdBy": null, + "createdTime": "2026-02-02 10:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:15", + "echoMap": {}, + "alarmNo": "1790500213", + "alarmDate": "1770000073988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112963", + "createdBy": null, + "createdTime": "2026-02-02 10:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:13", + "echoMap": {}, + "alarmNo": "1790500212", + "alarmDate": "1770000065590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112942", + "createdBy": null, + "createdTime": "2026-02-02 10:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:22", + "echoMap": {}, + "alarmNo": "1790500211", + "alarmDate": "1770000063963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112876", + "createdBy": null, + "createdTime": "2026-02-02 10:40:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:12", + "echoMap": {}, + "alarmNo": "1790500210", + "alarmDate": "1770000059182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112826", + "createdBy": null, + "createdTime": "2026-02-02 10:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:01:08", + "echoMap": {}, + "alarmNo": "1790500209", + "alarmDate": "1770000055430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119656242112674", + "createdBy": null, + "createdTime": "2026-02-02 10:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:45", + "echoMap": {}, + "alarmNo": "1790500208", + "alarmDate": "1770000042828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119651947145219", + "createdBy": null, + "createdTime": "2026-02-02 10:31:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:43", + "echoMap": {}, + "alarmNo": "1790500207", + "alarmDate": "1769999496192", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178730", + "createdBy": null, + "createdTime": "2026-02-02 10:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:51:34", + "echoMap": {}, + "alarmNo": "1790500206", + "alarmDate": "1769999492968", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060021", + "deviceName": "[301](10)三门3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178728", + "createdBy": null, + "createdTime": "2026-02-02 10:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:51:03", + "echoMap": {}, + "alarmNo": "1790500205", + "alarmDate": "1769999492840", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178672", + "createdBy": null, + "createdTime": "2026-02-02 10:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:13", + "echoMap": {}, + "alarmNo": "1790500204", + "alarmDate": "1769999489480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178402", + "createdBy": null, + "createdTime": "2026-02-02 10:31:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:18", + "echoMap": {}, + "alarmNo": "1790500203", + "alarmDate": "1769999471851", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178281", + "createdBy": null, + "createdTime": "2026-02-02 10:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:16", + "echoMap": {}, + "alarmNo": "1790500202", + "alarmDate": "1769999463422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178237", + "createdBy": null, + "createdTime": "2026-02-02 10:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:46", + "echoMap": {}, + "alarmNo": "1790500201", + "alarmDate": "1769999460327", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178183", + "createdBy": null, + "createdTime": "2026-02-02 10:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:58", + "echoMap": {}, + "alarmNo": "1790500200", + "alarmDate": "1769999456562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652178009", + "createdBy": null, + "createdTime": "2026-02-02 10:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:50", + "echoMap": {}, + "alarmNo": "1790500199", + "alarmDate": "1769999444375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119647652177977", + "createdBy": null, + "createdTime": "2026-02-02 10:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:43", + "echoMap": {}, + "alarmNo": "1790500198", + "alarmDate": "1769999442139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119639062243371", + "createdBy": null, + "createdTime": "2026-02-02 10:21:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:32", + "echoMap": {}, + "alarmNo": "1790500197", + "alarmDate": "1769998901136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276916", + "createdBy": null, + "createdTime": "2026-02-02 10:21:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:31", + "echoMap": {}, + "alarmNo": "1790500196", + "alarmDate": "1769998889855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276865", + "createdBy": null, + "createdTime": "2026-02-02 10:21:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:28", + "echoMap": {}, + "alarmNo": "1790500195", + "alarmDate": "1769998886906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276570", + "createdBy": null, + "createdTime": "2026-02-02 10:21:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:10", + "echoMap": {}, + "alarmNo": "1790500194", + "alarmDate": "1769998869303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276144", + "createdBy": null, + "createdTime": "2026-02-02 10:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:20", + "echoMap": {}, + "alarmNo": "1790500193", + "alarmDate": "1769998845431", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276100", + "createdBy": null, + "createdTime": "2026-02-02 10:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:21:02", + "echoMap": {}, + "alarmNo": "1790500192", + "alarmDate": "1769998843087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276083", + "createdBy": null, + "createdTime": "2026-02-02 10:20:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:41:32", + "echoMap": {}, + "alarmNo": "1790500191", + "alarmDate": "1769998841782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119634767276078", + "createdBy": null, + "createdTime": "2026-02-02 10:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:53", + "echoMap": {}, + "alarmNo": "1790500190", + "alarmDate": "1769998841187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342328", + "createdBy": null, + "createdTime": "2026-02-02 10:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:56", + "echoMap": {}, + "alarmNo": "1790500189", + "alarmDate": "1769998297884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342089", + "createdBy": null, + "createdTime": "2026-02-02 10:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:24", + "echoMap": {}, + "alarmNo": "1790500188", + "alarmDate": "1769998282524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342025", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:31", + "echoMap": {}, + "alarmNo": "1790500187", + "alarmDate": "1769998279227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177342022", + "createdBy": null, + "createdTime": "2026-02-02 10:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:20", + "echoMap": {}, + "alarmNo": "1790500186", + "alarmDate": "1769998279036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341968", + "createdBy": null, + "createdTime": "2026-02-02 10:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:42", + "echoMap": {}, + "alarmNo": "1790500185", + "alarmDate": "1769998276373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341950", + "createdBy": null, + "createdTime": "2026-02-02 10:11:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:17", + "echoMap": {}, + "alarmNo": "1790500184", + "alarmDate": "1769998275542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341714", + "createdBy": null, + "createdTime": "2026-02-02 10:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:31", + "echoMap": {}, + "alarmNo": "1790500183", + "alarmDate": "1769998260859", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119626177341655", + "createdBy": null, + "createdTime": "2026-02-02 10:10:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:27", + "echoMap": {}, + "alarmNo": "1790500182", + "alarmDate": "1769998257138", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119621882374186", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:34", + "echoMap": {}, + "alarmNo": "1790500181", + "alarmDate": "1769998242219", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119621882374180", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:39", + "echoMap": {}, + "alarmNo": "1790500180", + "alarmDate": "1769998241804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119621882374178", + "createdBy": null, + "createdTime": "2026-02-02 10:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:26", + "echoMap": {}, + "alarmNo": "1790500179", + "alarmDate": "1769998241694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587407698", + "createdBy": null, + "createdTime": "2026-02-02 10:01:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:39", + "echoMap": {}, + "alarmNo": "1790500178", + "alarmDate": "1769997697850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587407381", + "createdBy": null, + "createdTime": "2026-02-02 10:01:15", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:16", + "echoMap": {}, + "alarmNo": "1790500177", + "alarmDate": "1769997674721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587407246", + "createdBy": null, + "createdTime": "2026-02-02 10:01:07", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:13", + "echoMap": {}, + "alarmNo": "1790500176", + "alarmDate": "1769997666542", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119617587406886", + "createdBy": null, + "createdTime": "2026-02-02 10:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:45", + "echoMap": {}, + "alarmNo": "1790500175", + "alarmDate": "1769997644105", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119613292439611", + "createdBy": null, + "createdTime": "2026-02-02 10:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:08", + "echoMap": {}, + "alarmNo": "1790500174", + "alarmDate": "1769997609217", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119608997473154", + "createdBy": null, + "createdTime": "2026-02-02 09:51:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:15", + "echoMap": {}, + "alarmNo": "1790500173", + "alarmDate": "1769997098739", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997473071", + "createdBy": null, + "createdTime": "2026-02-02 09:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:35", + "echoMap": {}, + "alarmNo": "1790500172", + "alarmDate": "1769997093938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472802", + "createdBy": null, + "createdTime": "2026-02-02 09:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:42", + "echoMap": {}, + "alarmNo": "1790500171", + "alarmDate": "1769997078326", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472778", + "createdBy": null, + "createdTime": "2026-02-02 09:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:18", + "echoMap": {}, + "alarmNo": "1790500170", + "alarmDate": "1769997077038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472763", + "createdBy": null, + "createdTime": "2026-02-02 09:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:00", + "echoMap": {}, + "alarmNo": "1790500169", + "alarmDate": "1769997076254", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472457", + "createdBy": null, + "createdTime": "2026-02-02 09:50:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:58", + "echoMap": {}, + "alarmNo": "1790500168", + "alarmDate": "1769997057882", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472431", + "createdBy": null, + "createdTime": "2026-02-02 09:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:15", + "echoMap": {}, + "alarmNo": "1790500167", + "alarmDate": "1769997056631", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472391", + "createdBy": null, + "createdTime": "2026-02-02 09:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:00", + "echoMap": {}, + "alarmNo": "1790500166", + "alarmDate": "1769997054303", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472352", + "createdBy": null, + "createdTime": "2026-02-02 09:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:51:04", + "echoMap": {}, + "alarmNo": "1790500165", + "alarmDate": "1769997052132", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119608997472338", + "createdBy": null, + "createdTime": "2026-02-02 09:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:52", + "echoMap": {}, + "alarmNo": "1790500164", + "alarmDate": "1769997051429", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119604702505065", + "createdBy": null, + "createdTime": "2026-02-02 09:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:59", + "echoMap": {}, + "alarmNo": "1790500163", + "alarmDate": "1769997045984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060016", + "deviceName": "[303](10)三门3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119604702505014", + "createdBy": null, + "createdTime": "2026-02-02 09:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:10", + "echoMap": {}, + "alarmNo": "1790500162", + "alarmDate": "1769997042262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112571335", + "createdBy": null, + "createdTime": "2026-02-02 09:41:41", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:46", + "echoMap": {}, + "alarmNo": "1790500161", + "alarmDate": "1769996500536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112571102", + "createdBy": null, + "createdTime": "2026-02-02 09:41:24", + "updatedBy": null, + "updatedTime": "2026-02-02 10:01:12", + "echoMap": {}, + "alarmNo": "1790500160", + "alarmDate": "1769996484154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570958", + "createdBy": null, + "createdTime": "2026-02-02 09:41:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:16", + "echoMap": {}, + "alarmNo": "1790500159", + "alarmDate": "1769996474602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570940", + "createdBy": null, + "createdTime": "2026-02-02 09:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:32", + "echoMap": {}, + "alarmNo": "1790500158", + "alarmDate": "1769996473540", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570805", + "createdBy": null, + "createdTime": "2026-02-02 09:41:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:06", + "echoMap": {}, + "alarmNo": "1790500157", + "alarmDate": "1769996464649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570775", + "createdBy": null, + "createdTime": "2026-02-02 09:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:33", + "echoMap": {}, + "alarmNo": "1790500156", + "alarmDate": "1769996462663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570771", + "createdBy": null, + "createdTime": "2026-02-02 09:41:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:22", + "echoMap": {}, + "alarmNo": "1790500155", + "alarmDate": "1769996462584", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570760", + "createdBy": null, + "createdTime": "2026-02-02 09:41:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:03", + "echoMap": {}, + "alarmNo": "1790500154", + "alarmDate": "1769996462097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570490", + "createdBy": null, + "createdTime": "2026-02-02 09:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:02", + "echoMap": {}, + "alarmNo": "1790500153", + "alarmDate": "1769996444426", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570455", + "createdBy": null, + "createdTime": "2026-02-02 09:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:50", + "echoMap": {}, + "alarmNo": "1790500152", + "alarmDate": "1769996442415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570446", + "createdBy": null, + "createdTime": "2026-02-02 09:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:09", + "echoMap": {}, + "alarmNo": "1790500151", + "alarmDate": "1769996441716", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119596112570441", + "createdBy": null, + "createdTime": "2026-02-02 09:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:57", + "echoMap": {}, + "alarmNo": "1790500150", + "alarmDate": "1769996441242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636754", + "createdBy": null, + "createdTime": "2026-02-02 09:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:59", + "echoMap": {}, + "alarmNo": "1790500149", + "alarmDate": "1769995898813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636746", + "createdBy": null, + "createdTime": "2026-02-02 09:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:38", + "echoMap": {}, + "alarmNo": "1790500148", + "alarmDate": "1769995898389", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060103", + "deviceName": "[329](10)三门1#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636606", + "createdBy": null, + "createdTime": "2026-02-02 09:31:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:30", + "echoMap": {}, + "alarmNo": "1790500147", + "alarmDate": "1769995888910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636539", + "createdBy": null, + "createdTime": "2026-02-02 09:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:31", + "echoMap": {}, + "alarmNo": "1790500146", + "alarmDate": "1769995884702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636380", + "createdBy": null, + "createdTime": "2026-02-02 09:31:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:44", + "echoMap": {}, + "alarmNo": "1790500145", + "alarmDate": "1769995874254", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636335", + "createdBy": null, + "createdTime": "2026-02-02 09:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:50", + "echoMap": {}, + "alarmNo": "1790500144", + "alarmDate": "1769995871305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636184", + "createdBy": null, + "createdTime": "2026-02-02 09:31:01", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:02", + "echoMap": {}, + "alarmNo": "1790500143", + "alarmDate": "1769995860930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522636043", + "createdBy": null, + "createdTime": "2026-02-02 09:30:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:52", + "echoMap": {}, + "alarmNo": "1790500142", + "alarmDate": "1769995851257", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119587522635921", + "createdBy": null, + "createdTime": "2026-02-02 09:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:02", + "echoMap": {}, + "alarmNo": "1790500141", + "alarmDate": "1769995843092", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119583227668516", + "createdBy": null, + "createdTime": "2026-02-02 09:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:40", + "echoMap": {}, + "alarmNo": "1790500140", + "alarmDate": "1769995298996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932702052", + "createdBy": null, + "createdTime": "2026-02-02 09:21:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:34", + "echoMap": {}, + "alarmNo": "1790500139", + "alarmDate": "1769995294173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701921", + "createdBy": null, + "createdTime": "2026-02-02 09:21:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:32", + "echoMap": {}, + "alarmNo": "1790500138", + "alarmDate": "1769995285968", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701842", + "createdBy": null, + "createdTime": "2026-02-02 09:21:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:31:15", + "echoMap": {}, + "alarmNo": "1790500137", + "alarmDate": "1769995281313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060021", + "deviceName": "[301](10)三门3#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701820", + "createdBy": null, + "createdTime": "2026-02-02 09:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:21", + "echoMap": {}, + "alarmNo": "1790500136", + "alarmDate": "1769995280079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701807", + "createdBy": null, + "createdTime": "2026-02-02 09:21:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:26", + "echoMap": {}, + "alarmNo": "1790500135", + "alarmDate": "1769995279449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701718", + "createdBy": null, + "createdTime": "2026-02-02 09:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:15", + "echoMap": {}, + "alarmNo": "1790500134", + "alarmDate": "1769995273589", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701680", + "createdBy": null, + "createdTime": "2026-02-02 09:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:17", + "echoMap": {}, + "alarmNo": "1790500133", + "alarmDate": "1769995271248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060041", + "deviceName": "[309](10)三门6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701634", + "createdBy": null, + "createdTime": "2026-02-02 09:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:45", + "echoMap": {}, + "alarmNo": "1790500132", + "alarmDate": "1769995268280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060103", + "deviceName": "[329](10)三门1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701453", + "createdBy": null, + "createdTime": "2026-02-02 09:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:08", + "echoMap": {}, + "alarmNo": "1790500131", + "alarmDate": "1769995255887", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701379", + "createdBy": null, + "createdTime": "2026-02-02 09:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:25", + "echoMap": {}, + "alarmNo": "1790500130", + "alarmDate": "1769995250707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060052", + "deviceName": "[403](10)三门3#闸入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119578932701263", + "createdBy": null, + "createdTime": "2026-02-02 09:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:45", + "echoMap": {}, + "alarmNo": "1790500129", + "alarmDate": "1769995241138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060041", + "deviceName": "[309](10)三门6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047800252", + "createdBy": null, + "createdTime": "2026-02-02 09:11:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:21:22", + "echoMap": {}, + "alarmNo": "1790500128", + "alarmDate": "1769994694051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047800137", + "createdBy": null, + "createdTime": "2026-02-02 09:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:57", + "echoMap": {}, + "alarmNo": "1790500127", + "alarmDate": "1769994685140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047800112", + "createdBy": null, + "createdTime": "2026-02-02 09:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:24", + "echoMap": {}, + "alarmNo": "1790500126", + "alarmDate": "1769994683284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799992", + "createdBy": null, + "createdTime": "2026-02-02 09:11:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:21", + "echoMap": {}, + "alarmNo": "1790500125", + "alarmDate": "1769994675116", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060014", + "deviceName": "[305](10)三门3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799976", + "createdBy": null, + "createdTime": "2026-02-02 09:11:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:15", + "echoMap": {}, + "alarmNo": "1790500124", + "alarmDate": "1769994674233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799847", + "createdBy": null, + "createdTime": "2026-02-02 09:11:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:07", + "echoMap": {}, + "alarmNo": "1790500123", + "alarmDate": "1769994665642", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799670", + "createdBy": null, + "createdTime": "2026-02-02 09:10:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:54", + "echoMap": {}, + "alarmNo": "1790500122", + "alarmDate": "1769994652735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799647", + "createdBy": null, + "createdTime": "2026-02-02 09:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:52", + "echoMap": {}, + "alarmNo": "1790500121", + "alarmDate": "1769994651214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799333", + "createdBy": null, + "createdTime": "2026-02-02 09:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:37", + "echoMap": {}, + "alarmNo": "1790500120", + "alarmDate": "1769994095572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119566047799319", + "createdBy": null, + "createdTime": "2026-02-02 09:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:22", + "echoMap": {}, + "alarmNo": "1790500119", + "alarmDate": "1769994094833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865606", + "createdBy": null, + "createdTime": "2026-02-02 09:01:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:20", + "echoMap": {}, + "alarmNo": "1790500118", + "alarmDate": "1769994086513", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865518", + "createdBy": null, + "createdTime": "2026-02-02 09:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:41:34", + "echoMap": {}, + "alarmNo": "1790500117", + "alarmDate": "1769994082053", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865468", + "createdBy": null, + "createdTime": "2026-02-02 09:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:26", + "echoMap": {}, + "alarmNo": "1790500116", + "alarmDate": "1769994079492", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865141", + "createdBy": null, + "createdTime": "2026-02-02 09:01:00", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:01", + "echoMap": {}, + "alarmNo": "1790500115", + "alarmDate": "1769994060014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865103", + "createdBy": null, + "createdTime": "2026-02-02 09:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:46", + "echoMap": {}, + "alarmNo": "1790500114", + "alarmDate": "1769994058171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457865036", + "createdBy": null, + "createdTime": "2026-02-02 09:00:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:55", + "echoMap": {}, + "alarmNo": "1790500113", + "alarmDate": "1769994054361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457864867", + "createdBy": null, + "createdTime": "2026-02-02 09:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:00", + "echoMap": {}, + "alarmNo": "1790500112", + "alarmDate": "1769994044179", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457864847", + "createdBy": null, + "createdTime": "2026-02-02 09:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:44", + "echoMap": {}, + "alarmNo": "1790500111", + "alarmDate": "1769994043060", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119557457864828", + "createdBy": null, + "createdTime": "2026-02-02 09:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:29", + "echoMap": {}, + "alarmNo": "1790500110", + "alarmDate": "1769994041344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060041", + "deviceName": "[309](10)三门6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119553162897432", + "createdBy": null, + "createdTime": "2026-02-02 08:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:09", + "echoMap": {}, + "alarmNo": "1790500109", + "alarmDate": "1769993498260", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867931101", + "createdBy": null, + "createdTime": "2026-02-02 08:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:37", + "echoMap": {}, + "alarmNo": "1790500108", + "alarmDate": "1769993495817", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930999", + "createdBy": null, + "createdTime": "2026-02-02 08:51:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:17", + "echoMap": {}, + "alarmNo": "1790500107", + "alarmDate": "1769993488683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930822", + "createdBy": null, + "createdTime": "2026-02-02 08:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:17", + "echoMap": {}, + "alarmNo": "1790500106", + "alarmDate": "1769993476091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930774", + "createdBy": null, + "createdTime": "2026-02-02 08:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:20", + "echoMap": {}, + "alarmNo": "1790500105", + "alarmDate": "1769993472761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930679", + "createdBy": null, + "createdTime": "2026-02-02 08:51:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:07", + "echoMap": {}, + "alarmNo": "1790500104", + "alarmDate": "1769993466456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930345", + "createdBy": null, + "createdTime": "2026-02-02 08:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:49", + "echoMap": {}, + "alarmNo": "1790500103", + "alarmDate": "1769993443904", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930331", + "createdBy": null, + "createdTime": "2026-02-02 08:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:50", + "echoMap": {}, + "alarmNo": "1790500102", + "alarmDate": "1769993443092", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119548867930314", + "createdBy": null, + "createdTime": "2026-02-02 08:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:51:17", + "echoMap": {}, + "alarmNo": "1790500101", + "alarmDate": "1769993441589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060035", + "deviceName": "[502](10)三门票机1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983029240", + "createdBy": null, + "createdTime": "2026-02-02 08:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:24", + "echoMap": {}, + "alarmNo": "1790500100", + "alarmDate": "1769992883438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028951", + "createdBy": null, + "createdTime": "2026-02-02 08:41:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:05", + "echoMap": {}, + "alarmNo": "1790500099", + "alarmDate": "1769992864401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028841", + "createdBy": null, + "createdTime": "2026-02-02 08:40:58", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:59", + "echoMap": {}, + "alarmNo": "1790500098", + "alarmDate": "1769992857785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028634", + "createdBy": null, + "createdTime": "2026-02-02 08:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:41:02", + "echoMap": {}, + "alarmNo": "1790500097", + "alarmDate": "1769992844832", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028600", + "createdBy": null, + "createdTime": "2026-02-02 08:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:44", + "echoMap": {}, + "alarmNo": "1790500096", + "alarmDate": "1769992842862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028597", + "createdBy": null, + "createdTime": "2026-02-02 08:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:44", + "echoMap": {}, + "alarmNo": "1790500095", + "alarmDate": "1769992842816", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028424", + "createdBy": null, + "createdTime": "2026-02-02 08:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:49", + "echoMap": {}, + "alarmNo": "1790500094", + "alarmDate": "1769992297528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119535983028231", + "createdBy": null, + "createdTime": "2026-02-02 08:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:26", + "echoMap": {}, + "alarmNo": "1790500093", + "alarmDate": "1769992284574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119531688060948", + "createdBy": null, + "createdTime": "2026-02-02 08:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:29", + "echoMap": {}, + "alarmNo": "1790500092", + "alarmDate": "1769992282377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060055", + "deviceName": "[634](10)三门1#口联通道5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098127189", + "createdBy": null, + "createdTime": "2026-02-02 08:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:07", + "echoMap": {}, + "alarmNo": "1790500091", + "alarmDate": "1769992266278", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098127154", + "createdBy": null, + "createdTime": "2026-02-02 08:31:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:05", + "echoMap": {}, + "alarmNo": "1790500090", + "alarmDate": "1769992264355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098126832", + "createdBy": null, + "createdTime": "2026-02-02 08:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:19", + "echoMap": {}, + "alarmNo": "1790500089", + "alarmDate": "1769992244469", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119523098126816", + "createdBy": null, + "createdTime": "2026-02-02 08:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:31:25", + "echoMap": {}, + "alarmNo": "1790500088", + "alarmDate": "1769992243605", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192653", + "createdBy": null, + "createdTime": "2026-02-02 08:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:15", + "echoMap": {}, + "alarmNo": "1790500087", + "alarmDate": "1769991673597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192571", + "createdBy": null, + "createdTime": "2026-02-02 08:21:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:10", + "echoMap": {}, + "alarmNo": "1790500086", + "alarmDate": "1769991669234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192512", + "createdBy": null, + "createdTime": "2026-02-02 08:21:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:19", + "echoMap": {}, + "alarmNo": "1790500085", + "alarmDate": "1769991665717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192254", + "createdBy": null, + "createdTime": "2026-02-02 08:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:51", + "echoMap": {}, + "alarmNo": "1790500084", + "alarmDate": "1769991649802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192191", + "createdBy": null, + "createdTime": "2026-02-02 08:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:48", + "echoMap": {}, + "alarmNo": "1790500083", + "alarmDate": "1769991646731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508192009", + "createdBy": null, + "createdTime": "2026-02-02 08:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:42", + "echoMap": {}, + "alarmNo": "1790500082", + "alarmDate": "1769991102145", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508191942", + "createdBy": null, + "createdTime": "2026-02-02 08:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:38", + "echoMap": {}, + "alarmNo": "1790500081", + "alarmDate": "1769991097332", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508191893", + "createdBy": null, + "createdTime": "2026-02-02 08:11:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:36", + "echoMap": {}, + "alarmNo": "1790500080", + "alarmDate": "1769991094573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119514508191845", + "createdBy": null, + "createdTime": "2026-02-02 08:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:21:28", + "echoMap": {}, + "alarmNo": "1790500079", + "alarmDate": "1769991091795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119510213224496", + "createdBy": null, + "createdTime": "2026-02-02 08:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:31", + "echoMap": {}, + "alarmNo": "1790500078", + "alarmDate": "1769991085285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119505918257155", + "createdBy": null, + "createdTime": "2026-02-02 08:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:14", + "echoMap": {}, + "alarmNo": "1790500077", + "alarmDate": "1769991072539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290705", + "createdBy": null, + "createdTime": "2026-02-02 08:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:11:07", + "echoMap": {}, + "alarmNo": "1790500076", + "alarmDate": "1769991061148", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290528", + "createdBy": null, + "createdTime": "2026-02-02 08:10:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:51", + "echoMap": {}, + "alarmNo": "1790500075", + "alarmDate": "1769991049888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290427", + "createdBy": null, + "createdTime": "2026-02-02 08:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:01:10", + "echoMap": {}, + "alarmNo": "1790500074", + "alarmDate": "1769991043055", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290215", + "createdBy": null, + "createdTime": "2026-02-02 08:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:37", + "echoMap": {}, + "alarmNo": "1790500073", + "alarmDate": "1769990495721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623290137", + "createdBy": null, + "createdTime": "2026-02-02 08:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:31", + "echoMap": {}, + "alarmNo": "1790500072", + "alarmDate": "1769990490540", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623289965", + "createdBy": null, + "createdTime": "2026-02-02 08:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:20", + "echoMap": {}, + "alarmNo": "1790500071", + "alarmDate": "1769990478656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119501623289917", + "createdBy": null, + "createdTime": "2026-02-02 08:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:17", + "echoMap": {}, + "alarmNo": "1790500070", + "alarmDate": "1769990475530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033356104", + "createdBy": null, + "createdTime": "2026-02-02 08:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:46", + "echoMap": {}, + "alarmNo": "1790500069", + "alarmDate": "1769990457868", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355923", + "createdBy": null, + "createdTime": "2026-02-02 08:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:01:04", + "echoMap": {}, + "alarmNo": "1790500068", + "alarmDate": "1769990445291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355891", + "createdBy": null, + "createdTime": "2026-02-02 08:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:45", + "echoMap": {}, + "alarmNo": "1790500067", + "alarmDate": "1769990442920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060082", + "deviceName": "[101](10)三门上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355714", + "createdBy": null, + "createdTime": "2026-02-02 07:51:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:11:12", + "echoMap": {}, + "alarmNo": "1790500066", + "alarmDate": "1769989897128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355566", + "createdBy": null, + "createdTime": "2026-02-02 07:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:28", + "echoMap": {}, + "alarmNo": "1790500065", + "alarmDate": "1769989886734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355514", + "createdBy": null, + "createdTime": "2026-02-02 07:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:24", + "echoMap": {}, + "alarmNo": "1790500064", + "alarmDate": "1769989883550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060071", + "deviceName": "[106](10)三门上行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119493033355392", + "createdBy": null, + "createdTime": "2026-02-02 07:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:11:18", + "echoMap": {}, + "alarmNo": "1790500063", + "alarmDate": "1769989875881", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421504", + "createdBy": null, + "createdTime": "2026-02-02 07:50:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:58", + "echoMap": {}, + "alarmNo": "1790500062", + "alarmDate": "1769989857252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421476", + "createdBy": null, + "createdTime": "2026-02-02 07:50:56", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:57", + "echoMap": {}, + "alarmNo": "1790500061", + "alarmDate": "1769989855795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421454", + "createdBy": null, + "createdTime": "2026-02-02 07:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:07", + "echoMap": {}, + "alarmNo": "1790500060", + "alarmDate": "1769989854685", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421256", + "createdBy": null, + "createdTime": "2026-02-02 07:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:19", + "echoMap": {}, + "alarmNo": "1790500059", + "alarmDate": "1769989843653", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421252", + "createdBy": null, + "createdTime": "2026-02-02 07:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:28", + "echoMap": {}, + "alarmNo": "1790500058", + "alarmDate": "1769989843586", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421239", + "createdBy": null, + "createdTime": "2026-02-02 07:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:50", + "echoMap": {}, + "alarmNo": "1790500057", + "alarmDate": "1769989842890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443421104", + "createdBy": null, + "createdTime": "2026-02-02 07:41:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:40", + "echoMap": {}, + "alarmNo": "1790500056", + "alarmDate": "1769989299057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443420936", + "createdBy": null, + "createdTime": "2026-02-02 07:41:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:30", + "echoMap": {}, + "alarmNo": "1790500055", + "alarmDate": "1769989288805", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119484443420864", + "createdBy": null, + "createdTime": "2026-02-02 07:41:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:31:13", + "echoMap": {}, + "alarmNo": "1790500054", + "alarmDate": "1769989284554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060044", + "deviceName": "[307](10)三门6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486735", + "createdBy": null, + "createdTime": "2026-02-02 07:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:47", + "echoMap": {}, + "alarmNo": "1790500053", + "alarmDate": "1769989246032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486691", + "createdBy": null, + "createdTime": "2026-02-02 07:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:49", + "echoMap": {}, + "alarmNo": "1790500052", + "alarmDate": "1769989243380", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486541", + "createdBy": null, + "createdTime": "2026-02-02 07:31:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:04", + "echoMap": {}, + "alarmNo": "1790500051", + "alarmDate": "1769988699476", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486394", + "createdBy": null, + "createdTime": "2026-02-02 07:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:31", + "echoMap": {}, + "alarmNo": "1790500050", + "alarmDate": "1769988689887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486306", + "createdBy": null, + "createdTime": "2026-02-02 07:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:26", + "echoMap": {}, + "alarmNo": "1790500049", + "alarmDate": "1769988684575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486267", + "createdBy": null, + "createdTime": "2026-02-02 07:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:23", + "echoMap": {}, + "alarmNo": "1790500048", + "alarmDate": "1769988682413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486159", + "createdBy": null, + "createdTime": "2026-02-02 07:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:34", + "echoMap": {}, + "alarmNo": "1790500047", + "alarmDate": "1769988676286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119475853486150", + "createdBy": null, + "createdTime": "2026-02-02 07:31:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:17", + "echoMap": {}, + "alarmNo": "1790500046", + "alarmDate": "1769988675871", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119467263551512", + "createdBy": null, + "createdTime": "2026-02-02 07:31:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:25", + "echoMap": {}, + "alarmNo": "1790500045", + "alarmDate": "1769988667309", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119462968584999", + "createdBy": null, + "createdTime": "2026-02-02 07:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:03", + "echoMap": {}, + "alarmNo": "1790500044", + "alarmDate": "1769988652198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119462968584996", + "createdBy": null, + "createdTime": "2026-02-02 07:30:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:53", + "echoMap": {}, + "alarmNo": "1790500043", + "alarmDate": "1769988652173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119462968584228", + "createdBy": null, + "createdTime": "2026-02-02 07:21:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:37", + "echoMap": {}, + "alarmNo": "1790500042", + "alarmDate": "1769988073029", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119454378649658", + "createdBy": null, + "createdTime": "2026-02-02 07:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:08", + "echoMap": {}, + "alarmNo": "1790500041", + "alarmDate": "1769988067051", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083683113", + "createdBy": null, + "createdTime": "2026-02-02 07:20:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:52", + "echoMap": {}, + "alarmNo": "1790500040", + "alarmDate": "1769988051135", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083683024", + "createdBy": null, + "createdTime": "2026-02-02 07:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:47", + "echoMap": {}, + "alarmNo": "1790500039", + "alarmDate": "1769988046356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083683017", + "createdBy": null, + "createdTime": "2026-02-02 07:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:49", + "echoMap": {}, + "alarmNo": "1790500038", + "alarmDate": "1769988046114", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682980", + "createdBy": null, + "createdTime": "2026-02-02 07:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:31:10", + "echoMap": {}, + "alarmNo": "1790500037", + "alarmDate": "1769988044252", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682953", + "createdBy": null, + "createdTime": "2026-02-02 07:20:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:34", + "echoMap": {}, + "alarmNo": "1790500036", + "alarmDate": "1769988042945", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682833", + "createdBy": null, + "createdTime": "2026-02-02 07:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:42", + "echoMap": {}, + "alarmNo": "1790500035", + "alarmDate": "1769987501900", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682805", + "createdBy": null, + "createdTime": "2026-02-02 07:11:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:41", + "echoMap": {}, + "alarmNo": "1790500034", + "alarmDate": "1769987499954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682751", + "createdBy": null, + "createdTime": "2026-02-02 07:11:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:46", + "echoMap": {}, + "alarmNo": "1790500033", + "alarmDate": "1769987496872", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682651", + "createdBy": null, + "createdTime": "2026-02-02 07:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:32", + "echoMap": {}, + "alarmNo": "1790500032", + "alarmDate": "1769987491117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682511", + "createdBy": null, + "createdTime": "2026-02-02 07:11:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:25", + "echoMap": {}, + "alarmNo": "1790500031", + "alarmDate": "1769987483765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682495", + "createdBy": null, + "createdTime": "2026-02-02 07:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:24", + "echoMap": {}, + "alarmNo": "1790500030", + "alarmDate": "1769987483110", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119450083682483", + "createdBy": null, + "createdTime": "2026-02-02 07:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:21:20", + "echoMap": {}, + "alarmNo": "1790500029", + "alarmDate": "1769987482588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748337", + "createdBy": null, + "createdTime": "2026-02-02 07:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:55", + "echoMap": {}, + "alarmNo": "1790500028", + "alarmDate": "1769987448785", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748285", + "createdBy": null, + "createdTime": "2026-02-02 07:10:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:47", + "echoMap": {}, + "alarmNo": "1790500027", + "alarmDate": "1769987446215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748260", + "createdBy": null, + "createdTime": "2026-02-02 07:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:46", + "echoMap": {}, + "alarmNo": "1790500026", + "alarmDate": "1769987444927", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748240", + "createdBy": null, + "createdTime": "2026-02-02 07:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:09", + "echoMap": {}, + "alarmNo": "1790500025", + "alarmDate": "1769987444002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748224", + "createdBy": null, + "createdTime": "2026-02-02 07:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:57", + "echoMap": {}, + "alarmNo": "1790500024", + "alarmDate": "1769987443361", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060103", + "deviceName": "[329](10)三门1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493748018", + "createdBy": null, + "createdTime": "2026-02-02 07:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:37", + "echoMap": {}, + "alarmNo": "1790500023", + "alarmDate": "1769986896114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493747993", + "createdBy": null, + "createdTime": "2026-02-02 07:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:36", + "echoMap": {}, + "alarmNo": "1790500022", + "alarmDate": "1769986894755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493747908", + "createdBy": null, + "createdTime": "2026-02-02 07:01:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:30", + "echoMap": {}, + "alarmNo": "1790500021", + "alarmDate": "1769986889514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119441493747884", + "createdBy": null, + "createdTime": "2026-02-02 07:01:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:49", + "echoMap": {}, + "alarmNo": "1790500020", + "alarmDate": "1769986888259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119437198780446", + "createdBy": null, + "createdTime": "2026-02-02 07:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:17", + "echoMap": {}, + "alarmNo": "1790500019", + "alarmDate": "1769986876047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119437198780441", + "createdBy": null, + "createdTime": "2026-02-02 07:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:22", + "echoMap": {}, + "alarmNo": "1790500018", + "alarmDate": "1769986875937", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060127", + "deviceName": "[402](10)三门2#闸出", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119432903813195", + "createdBy": null, + "createdTime": "2026-02-02 06:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:01:31", + "echoMap": {}, + "alarmNo": "1790500017", + "alarmDate": "1769986284290", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119432903813168", + "createdBy": null, + "createdTime": "2026-02-02 06:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:51", + "echoMap": {}, + "alarmNo": "1790500016", + "alarmDate": "1769986282956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119432903813133", + "createdBy": null, + "createdTime": "2026-02-02 06:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:22", + "echoMap": {}, + "alarmNo": "1790500015", + "alarmDate": "1769986281203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313879188", + "createdBy": null, + "createdTime": "2026-02-02 06:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:19", + "echoMap": {}, + "alarmNo": "1790500014", + "alarmDate": "1769986260365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313879186", + "createdBy": null, + "createdTime": "2026-02-02 06:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:01", + "echoMap": {}, + "alarmNo": "1790500013", + "alarmDate": "1769986260300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313879076", + "createdBy": null, + "createdTime": "2026-02-02 06:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:56", + "echoMap": {}, + "alarmNo": "1790500012", + "alarmDate": "1769986254592", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878879", + "createdBy": null, + "createdTime": "2026-02-02 06:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:30", + "echoMap": {}, + "alarmNo": "1790500011", + "alarmDate": "1769986244321", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878878", + "createdBy": null, + "createdTime": "2026-02-02 06:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1790500010", + "alarmDate": "1769986244297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878854", + "createdBy": null, + "createdTime": "2026-02-02 06:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:54", + "echoMap": {}, + "alarmNo": "1790500009", + "alarmDate": "1769986243222", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878845", + "createdBy": null, + "createdTime": "2026-02-02 06:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:51:11", + "echoMap": {}, + "alarmNo": "1790500008", + "alarmDate": "1769986242761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878734", + "createdBy": null, + "createdTime": "2026-02-02 06:41:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:51", + "echoMap": {}, + "alarmNo": "1790500007", + "alarmDate": "1769985702941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878717", + "createdBy": null, + "createdTime": "2026-02-02 06:41:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:24", + "echoMap": {}, + "alarmNo": "1790500006", + "alarmDate": "1769985700755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060083", + "deviceName": "[104](10)三门上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878554", + "createdBy": null, + "createdTime": "2026-02-02 06:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:31", + "echoMap": {}, + "alarmNo": "1790500005", + "alarmDate": "1769985690111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119424313878553", + "createdBy": null, + "createdTime": "2026-02-02 06:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:36", + "echoMap": {}, + "alarmNo": "1790500004", + "alarmDate": "1769985690104", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944810", + "createdBy": null, + "createdTime": "2026-02-02 06:41:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:37", + "echoMap": {}, + "alarmNo": "1790500003", + "alarmDate": "1769985679112", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944797", + "createdBy": null, + "createdTime": "2026-02-02 06:41:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:25", + "echoMap": {}, + "alarmNo": "1790500002", + "alarmDate": "1769985678465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944672", + "createdBy": null, + "createdTime": "2026-02-02 06:41:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:11", + "echoMap": {}, + "alarmNo": "1790500001", + "alarmDate": "1769985669885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060071", + "deviceName": "[106](10)三门上行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944537", + "createdBy": null, + "createdTime": "2026-02-02 06:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:41:07", + "echoMap": {}, + "alarmNo": "1790500000", + "alarmDate": "1769985661053", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944456", + "createdBy": null, + "createdTime": "2026-02-02 06:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:57", + "echoMap": {}, + "alarmNo": "1790499999", + "alarmDate": "1769985655996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944441", + "createdBy": null, + "createdTime": "2026-02-02 06:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:56", + "echoMap": {}, + "alarmNo": "1790499998", + "alarmDate": "1769985655355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944397", + "createdBy": null, + "createdTime": "2026-02-02 06:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:59", + "echoMap": {}, + "alarmNo": "1790499997", + "alarmDate": "1769985652566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723944336", + "createdBy": null, + "createdTime": "2026-02-02 06:40:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:50", + "echoMap": {}, + "alarmNo": "1790499996", + "alarmDate": "1769985648739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119415723943962", + "createdBy": null, + "createdTime": "2026-02-02 06:31:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:41:23", + "echoMap": {}, + "alarmNo": "1790499995", + "alarmDate": "1769985089830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134010213", + "createdBy": null, + "createdTime": "2026-02-02 06:31:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:24", + "echoMap": {}, + "alarmNo": "1790499994", + "alarmDate": "1769985083322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009936", + "createdBy": null, + "createdTime": "2026-02-02 06:31:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:24", + "echoMap": {}, + "alarmNo": "1790499993", + "alarmDate": "1769985065883", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009922", + "createdBy": null, + "createdTime": "2026-02-02 06:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:31:18", + "echoMap": {}, + "alarmNo": "1790499992", + "alarmDate": "1769985065083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009614", + "createdBy": null, + "createdTime": "2026-02-02 06:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:45", + "echoMap": {}, + "alarmNo": "1790499991", + "alarmDate": "1769985044449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119407134009374", + "createdBy": null, + "createdTime": "2026-02-02 06:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:36", + "echoMap": {}, + "alarmNo": "1790499990", + "alarmDate": "1769984495362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075497", + "createdBy": null, + "createdTime": "2026-02-02 06:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:42", + "echoMap": {}, + "alarmNo": "1790499989", + "alarmDate": "1769984477754", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075398", + "createdBy": null, + "createdTime": "2026-02-02 06:21:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:12", + "echoMap": {}, + "alarmNo": "1790499988", + "alarmDate": "1769984471481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075379", + "createdBy": null, + "createdTime": "2026-02-02 06:21:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:11", + "echoMap": {}, + "alarmNo": "1790499987", + "alarmDate": "1769984470408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075331", + "createdBy": null, + "createdTime": "2026-02-02 06:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:49", + "echoMap": {}, + "alarmNo": "1790499986", + "alarmDate": "1769984467633", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075328", + "createdBy": null, + "createdTime": "2026-02-02 06:21:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:08", + "echoMap": {}, + "alarmNo": "1790499985", + "alarmDate": "1769984467317", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119398544075030", + "createdBy": null, + "createdTime": "2026-02-02 06:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:49", + "echoMap": {}, + "alarmNo": "1790499984", + "alarmDate": "1769984448362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119394249107490", + "createdBy": null, + "createdTime": "2026-02-02 06:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:37", + "echoMap": {}, + "alarmNo": "1790499983", + "alarmDate": "1769983896205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140968", + "createdBy": null, + "createdTime": "2026-02-02 06:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:24", + "echoMap": {}, + "alarmNo": "1790499982", + "alarmDate": "1769983882664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060039", + "deviceName": "[210](10)三门6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140874", + "createdBy": null, + "createdTime": "2026-02-02 06:11:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:49", + "echoMap": {}, + "alarmNo": "1790499981", + "alarmDate": "1769983877388", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140803", + "createdBy": null, + "createdTime": "2026-02-02 06:11:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:21:07", + "echoMap": {}, + "alarmNo": "1790499980", + "alarmDate": "1769983873312", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140731", + "createdBy": null, + "createdTime": "2026-02-02 06:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:10", + "echoMap": {}, + "alarmNo": "1790499979", + "alarmDate": "1769983868611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140672", + "createdBy": null, + "createdTime": "2026-02-02 06:11:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:06", + "echoMap": {}, + "alarmNo": "1790499978", + "alarmDate": "1769983865086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140635", + "createdBy": null, + "createdTime": "2026-02-02 06:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:04", + "echoMap": {}, + "alarmNo": "1790499977", + "alarmDate": "1769983862990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140626", + "createdBy": null, + "createdTime": "2026-02-02 06:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:04", + "echoMap": {}, + "alarmNo": "1790499976", + "alarmDate": "1769983862588", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140359", + "createdBy": null, + "createdTime": "2026-02-02 06:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:48", + "echoMap": {}, + "alarmNo": "1790499975", + "alarmDate": "1769983846681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119389954140288", + "createdBy": null, + "createdTime": "2026-02-02 06:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:53", + "echoMap": {}, + "alarmNo": "1790499974", + "alarmDate": "1769983842373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069239281", + "createdBy": null, + "createdTime": "2026-02-02 06:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:37", + "echoMap": {}, + "alarmNo": "1790499973", + "alarmDate": "1769983296477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069239056", + "createdBy": null, + "createdTime": "2026-02-02 06:01:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:30", + "echoMap": {}, + "alarmNo": "1790499972", + "alarmDate": "1769983284019", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238636", + "createdBy": null, + "createdTime": "2026-02-02 06:00:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:55", + "echoMap": {}, + "alarmNo": "1790499971", + "alarmDate": "1769983259200", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238584", + "createdBy": null, + "createdTime": "2026-02-02 06:00:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:58", + "echoMap": {}, + "alarmNo": "1790499970", + "alarmDate": "1769983256709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238495", + "createdBy": null, + "createdTime": "2026-02-02 06:00:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:01:05", + "echoMap": {}, + "alarmNo": "1790499969", + "alarmDate": "1769983252029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119377069238402", + "createdBy": null, + "createdTime": "2026-02-02 06:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:48", + "echoMap": {}, + "alarmNo": "1790499968", + "alarmDate": "1769983246611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337352", + "createdBy": null, + "createdTime": "2026-02-02 05:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:39", + "echoMap": {}, + "alarmNo": "1790499967", + "alarmDate": "1769982698486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337224", + "createdBy": null, + "createdTime": "2026-02-02 05:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:59", + "echoMap": {}, + "alarmNo": "1790499966", + "alarmDate": "1769982690840", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337213", + "createdBy": null, + "createdTime": "2026-02-02 05:51:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:11:06", + "echoMap": {}, + "alarmNo": "1790499965", + "alarmDate": "1769982690102", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337156", + "createdBy": null, + "createdTime": "2026-02-02 05:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:28", + "echoMap": {}, + "alarmNo": "1790499964", + "alarmDate": "1769982686589", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337141", + "createdBy": null, + "createdTime": "2026-02-02 05:51:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:27", + "echoMap": {}, + "alarmNo": "1790499963", + "alarmDate": "1769982685713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184337008", + "createdBy": null, + "createdTime": "2026-02-02 05:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:17", + "echoMap": {}, + "alarmNo": "1790499962", + "alarmDate": "1769982676496", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184336888", + "createdBy": null, + "createdTime": "2026-02-02 05:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:51:14", + "echoMap": {}, + "alarmNo": "1790499961", + "alarmDate": "1769982668466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184336509", + "createdBy": null, + "createdTime": "2026-02-02 05:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:34", + "echoMap": {}, + "alarmNo": "1790499960", + "alarmDate": "1769982643036", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119364184336490", + "createdBy": null, + "createdTime": "2026-02-02 05:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:55:12", + "echoMap": {}, + "alarmNo": "1790499959", + "alarmDate": "1769982611636", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1026030010", + "deviceName": "安防箱10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119359889369121", + "createdBy": null, + "createdTime": "2026-02-02 05:41:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:54", + "echoMap": {}, + "alarmNo": "1790499958", + "alarmDate": "1769982100264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402620", + "createdBy": null, + "createdTime": "2026-02-02 05:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:28", + "echoMap": {}, + "alarmNo": "1790499957", + "alarmDate": "1769982086823", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402601", + "createdBy": null, + "createdTime": "2026-02-02 05:41:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:27", + "echoMap": {}, + "alarmNo": "1790499956", + "alarmDate": "1769982085780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402464", + "createdBy": null, + "createdTime": "2026-02-02 05:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:18", + "echoMap": {}, + "alarmNo": "1790499955", + "alarmDate": "1769982077354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402198", + "createdBy": null, + "createdTime": "2026-02-02 05:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:01", + "echoMap": {}, + "alarmNo": "1790499954", + "alarmDate": "1769982059825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594402005", + "createdBy": null, + "createdTime": "2026-02-02 05:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:41:01", + "echoMap": {}, + "alarmNo": "1790499953", + "alarmDate": "1769982048343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060073", + "deviceName": "[109](10)三门下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119355594401923", + "createdBy": null, + "createdTime": "2026-02-02 05:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:53", + "echoMap": {}, + "alarmNo": "1790499952", + "alarmDate": "1769982043064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467790", + "createdBy": null, + "createdTime": "2026-02-02 05:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:12", + "echoMap": {}, + "alarmNo": "1790499951", + "alarmDate": "1769981470839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467695", + "createdBy": null, + "createdTime": "2026-02-02 05:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:06", + "echoMap": {}, + "alarmNo": "1790499950", + "alarmDate": "1769981464802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467516", + "createdBy": null, + "createdTime": "2026-02-02 05:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:54", + "echoMap": {}, + "alarmNo": "1790499949", + "alarmDate": "1769981453034", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467438", + "createdBy": null, + "createdTime": "2026-02-02 05:30:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:49", + "echoMap": {}, + "alarmNo": "1790499948", + "alarmDate": "1769981448150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467380", + "createdBy": null, + "createdTime": "2026-02-02 05:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:54", + "echoMap": {}, + "alarmNo": "1790499947", + "alarmDate": "1769981444406", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467342", + "createdBy": null, + "createdTime": "2026-02-02 05:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:42", + "echoMap": {}, + "alarmNo": "1790499946", + "alarmDate": "1769981440836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119347004467201", + "createdBy": null, + "createdTime": "2026-02-02 05:21:39", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:40", + "echoMap": {}, + "alarmNo": "1790499945", + "alarmDate": "1769980898872", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414533501", + "createdBy": null, + "createdTime": "2026-02-02 05:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:29", + "echoMap": {}, + "alarmNo": "1790499944", + "alarmDate": "1769980887641", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414533109", + "createdBy": null, + "createdTime": "2026-02-02 05:21:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:04", + "echoMap": {}, + "alarmNo": "1790499943", + "alarmDate": "1769980862523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414533037", + "createdBy": null, + "createdTime": "2026-02-02 05:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:59", + "echoMap": {}, + "alarmNo": "1790499942", + "alarmDate": "1769980858140", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414532956", + "createdBy": null, + "createdTime": "2026-02-02 05:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:54", + "echoMap": {}, + "alarmNo": "1790499941", + "alarmDate": "1769980853022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060039", + "deviceName": "[210](10)三门6#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119338414532937", + "createdBy": null, + "createdTime": "2026-02-02 05:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:53", + "echoMap": {}, + "alarmNo": "1790499940", + "alarmDate": "1769980852020", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119329824598075", + "createdBy": null, + "createdTime": "2026-02-02 05:11:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:30", + "echoMap": {}, + "alarmNo": "1790499939", + "alarmDate": "1769980289444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529631729", + "createdBy": null, + "createdTime": "2026-02-02 05:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:55", + "echoMap": {}, + "alarmNo": "1790499938", + "alarmDate": "1769980284700", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060104", + "deviceName": "[332](10)三门1#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529631510", + "createdBy": null, + "createdTime": "2026-02-02 05:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:10", + "echoMap": {}, + "alarmNo": "1790499937", + "alarmDate": "1769980269144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529630814", + "createdBy": null, + "createdTime": "2026-02-02 05:01:26", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:27", + "echoMap": {}, + "alarmNo": "1790499936", + "alarmDate": "1769979685963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119325529630750", + "createdBy": null, + "createdTime": "2026-02-02 05:01:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:23", + "echoMap": {}, + "alarmNo": "1790499935", + "alarmDate": "1769979681958", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939697105", + "createdBy": null, + "createdTime": "2026-02-02 05:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:15", + "echoMap": {}, + "alarmNo": "1790499934", + "alarmDate": "1769979674248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060118", + "deviceName": "[625](10)三门1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939697066", + "createdBy": null, + "createdTime": "2026-02-02 05:01:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:21:42", + "echoMap": {}, + "alarmNo": "1790499933", + "alarmDate": "1769979671823", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060131", + "deviceName": "[333](10)三门1#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696984", + "createdBy": null, + "createdTime": "2026-02-02 05:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:01:07", + "echoMap": {}, + "alarmNo": "1790499932", + "alarmDate": "1769979666172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696696", + "createdBy": null, + "createdTime": "2026-02-02 05:00:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:48", + "echoMap": {}, + "alarmNo": "1790499931", + "alarmDate": "1769979646914", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696474", + "createdBy": null, + "createdTime": "2026-02-02 04:51:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:39", + "echoMap": {}, + "alarmNo": "1790499930", + "alarmDate": "1769979097767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119316939696196", + "createdBy": null, + "createdTime": "2026-02-02 04:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:22", + "echoMap": {}, + "alarmNo": "1790499929", + "alarmDate": "1769979081484", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349762320", + "createdBy": null, + "createdTime": "2026-02-02 04:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:11", + "echoMap": {}, + "alarmNo": "1790499928", + "alarmDate": "1769979069749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349762192", + "createdBy": null, + "createdTime": "2026-02-02 04:51:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:51:03", + "echoMap": {}, + "alarmNo": "1790499927", + "alarmDate": "1769979062125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349762004", + "createdBy": null, + "createdTime": "2026-02-02 04:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:52", + "echoMap": {}, + "alarmNo": "1790499926", + "alarmDate": "1769979050649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119308349761727", + "createdBy": null, + "createdTime": "2026-02-02 04:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:39", + "echoMap": {}, + "alarmNo": "1790499925", + "alarmDate": "1769978498423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759827777", + "createdBy": null, + "createdTime": "2026-02-02 04:41:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:41:24", + "echoMap": {}, + "alarmNo": "1790499924", + "alarmDate": "1769978483176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759827235", + "createdBy": null, + "createdTime": "2026-02-02 04:40:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:50", + "echoMap": {}, + "alarmNo": "1790499923", + "alarmDate": "1769978449405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759826989", + "createdBy": null, + "createdTime": "2026-02-02 04:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:49", + "echoMap": {}, + "alarmNo": "1790499922", + "alarmDate": "1769977900073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119299759826954", + "createdBy": null, + "createdTime": "2026-02-02 04:31:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:39", + "echoMap": {}, + "alarmNo": "1790499921", + "alarmDate": "1769977898168", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892982", + "createdBy": null, + "createdTime": "2026-02-02 04:31:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:21", + "echoMap": {}, + "alarmNo": "1790499920", + "alarmDate": "1769977880480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892913", + "createdBy": null, + "createdTime": "2026-02-02 04:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:23", + "echoMap": {}, + "alarmNo": "1790499919", + "alarmDate": "1769977876621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060084", + "deviceName": "[103](10)三门上行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892645", + "createdBy": null, + "createdTime": "2026-02-02 04:31:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:31:01", + "echoMap": {}, + "alarmNo": "1790499918", + "alarmDate": "1769977859993", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119291169892524", + "createdBy": null, + "createdTime": "2026-02-02 04:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:54", + "echoMap": {}, + "alarmNo": "1790499917", + "alarmDate": "1769977852767", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119282579958201", + "createdBy": null, + "createdTime": "2026-02-02 04:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:21", + "echoMap": {}, + "alarmNo": "1790499916", + "alarmDate": "1769977279838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119282579958173", + "createdBy": null, + "createdTime": "2026-02-02 04:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:19", + "echoMap": {}, + "alarmNo": "1790499915", + "alarmDate": "1769977278436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119282579957904", + "createdBy": null, + "createdTime": "2026-02-02 04:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:21:03", + "echoMap": {}, + "alarmNo": "1790499914", + "alarmDate": "1769977261794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119273990023744", + "createdBy": null, + "createdTime": "2026-02-02 04:11:39", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:49", + "echoMap": {}, + "alarmNo": "1790499913", + "alarmDate": "1769976699299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119273990023228", + "createdBy": null, + "createdTime": "2026-02-02 04:11:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:08", + "echoMap": {}, + "alarmNo": "1790499912", + "alarmDate": "1769976667408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119269695055886", + "createdBy": null, + "createdTime": "2026-02-02 04:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:11:02", + "echoMap": {}, + "alarmNo": "1790499911", + "alarmDate": "1769976660579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400089213", + "createdBy": null, + "createdTime": "2026-02-02 04:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:48", + "echoMap": {}, + "alarmNo": "1790499910", + "alarmDate": "1769976646613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400089075", + "createdBy": null, + "createdTime": "2026-02-02 04:05:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:08", + "echoMap": {}, + "alarmNo": "1790499909", + "alarmDate": "1769976309116", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119265400088990", + "createdBy": null, + "createdTime": "2026-02-02 04:01:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:39", + "echoMap": {}, + "alarmNo": "1790499908", + "alarmDate": "1769976098428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400088646", + "createdBy": null, + "createdTime": "2026-02-02 04:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:18", + "echoMap": {}, + "alarmNo": "1790499907", + "alarmDate": "1769976077228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119265400088626", + "createdBy": null, + "createdTime": "2026-02-02 04:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:01:17", + "echoMap": {}, + "alarmNo": "1790499906", + "alarmDate": "1769976076162", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119256810154397", + "createdBy": null, + "createdTime": "2026-02-02 04:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:44", + "echoMap": {}, + "alarmNo": "1790499905", + "alarmDate": "1769976042597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119256810154160", + "createdBy": null, + "createdTime": "2026-02-02 03:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:35", + "echoMap": {}, + "alarmNo": "1790499904", + "alarmDate": "1769975494481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119256810154091", + "createdBy": null, + "createdTime": "2026-02-02 03:51:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:32", + "echoMap": {}, + "alarmNo": "1790499903", + "alarmDate": "1769975490857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119248220220104", + "createdBy": null, + "createdTime": "2026-02-02 03:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:16", + "echoMap": {}, + "alarmNo": "1790499902", + "alarmDate": "1769975474982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119248220219877", + "createdBy": null, + "createdTime": "2026-02-02 03:51:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:51:04", + "echoMap": {}, + "alarmNo": "1790499901", + "alarmDate": "1769975462666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119248220219533", + "createdBy": null, + "createdTime": "2026-02-02 03:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:11:33", + "echoMap": {}, + "alarmNo": "1790499900", + "alarmDate": "1769975443657", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060102", + "deviceName": "[330](10)三门1#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119239630285452", + "createdBy": null, + "createdTime": "2026-02-02 03:41:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:28", + "echoMap": {}, + "alarmNo": "1790499899", + "alarmDate": "1769974886518", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119239630285227", + "createdBy": null, + "createdTime": "2026-02-02 03:41:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:14", + "echoMap": {}, + "alarmNo": "1790499898", + "alarmDate": "1769974872634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119239630285019", + "createdBy": null, + "createdTime": "2026-02-02 03:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:41:01", + "echoMap": {}, + "alarmNo": "1790499897", + "alarmDate": "1769974859835", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119235335317537", + "createdBy": null, + "createdTime": "2026-02-02 03:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:46", + "echoMap": {}, + "alarmNo": "1790499896", + "alarmDate": "1769974845479", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040351014", + "createdBy": null, + "createdTime": "2026-02-02 03:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:42", + "echoMap": {}, + "alarmNo": "1790499895", + "alarmDate": "1769974841419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350896", + "createdBy": null, + "createdTime": "2026-02-02 03:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:41", + "echoMap": {}, + "alarmNo": "1790499894", + "alarmDate": "1769974300294", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350803", + "createdBy": null, + "createdTime": "2026-02-02 03:31:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:34", + "echoMap": {}, + "alarmNo": "1790499893", + "alarmDate": "1769974293331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350716", + "createdBy": null, + "createdTime": "2026-02-02 03:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:28", + "echoMap": {}, + "alarmNo": "1790499892", + "alarmDate": "1769974286863", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350386", + "createdBy": null, + "createdTime": "2026-02-02 03:31:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:31:03", + "echoMap": {}, + "alarmNo": "1790499891", + "alarmDate": "1769974261909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119231040350294", + "createdBy": null, + "createdTime": "2026-02-02 03:30:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:56", + "echoMap": {}, + "alarmNo": "1790499890", + "alarmDate": "1769974255187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450416199", + "createdBy": null, + "createdTime": "2026-02-02 03:21:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:30", + "echoMap": {}, + "alarmNo": "1790499889", + "alarmDate": "1769973689069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450416070", + "createdBy": null, + "createdTime": "2026-02-02 03:21:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:21", + "echoMap": {}, + "alarmNo": "1790499888", + "alarmDate": "1769973679763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450415716", + "createdBy": null, + "createdTime": "2026-02-02 03:20:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:54", + "echoMap": {}, + "alarmNo": "1790499887", + "alarmDate": "1769973652897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119222450415623", + "createdBy": null, + "createdTime": "2026-02-02 03:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:53", + "echoMap": {}, + "alarmNo": "1790499886", + "alarmDate": "1769973646333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060060", + "deviceName": "[110](10)三门下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119218155448320", + "createdBy": null, + "createdTime": "2026-02-02 03:20:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:21:08", + "echoMap": {}, + "alarmNo": "1790499885", + "alarmDate": "1769973609244", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1026030001", + "deviceName": "安防箱1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1026" + }, + { + "id": "723119209565514488", + "createdBy": null, + "createdTime": "2026-02-02 03:11:28", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:29", + "echoMap": {}, + "alarmNo": "1790499884", + "alarmDate": "1769973087886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514261", + "createdBy": null, + "createdTime": "2026-02-02 03:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:12", + "echoMap": {}, + "alarmNo": "1790499883", + "alarmDate": "1769973070847", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514258", + "createdBy": null, + "createdTime": "2026-02-02 03:11:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:12", + "echoMap": {}, + "alarmNo": "1790499882", + "alarmDate": "1769973070766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514233", + "createdBy": null, + "createdTime": "2026-02-02 03:11:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:11:10", + "echoMap": {}, + "alarmNo": "1790499881", + "alarmDate": "1769973069164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514080", + "createdBy": null, + "createdTime": "2026-02-02 03:10:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:59", + "echoMap": {}, + "alarmNo": "1790499880", + "alarmDate": "1769973057753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119209565514056", + "createdBy": null, + "createdTime": "2026-02-02 03:10:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:57", + "echoMap": {}, + "alarmNo": "1790499879", + "alarmDate": "1769973056260", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579760", + "createdBy": null, + "createdTime": "2026-02-02 03:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:20", + "echoMap": {}, + "alarmNo": "1790499878", + "alarmDate": "1769972479117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579595", + "createdBy": null, + "createdTime": "2026-02-02 03:01:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:01:08", + "echoMap": {}, + "alarmNo": "1790499877", + "alarmDate": "1769972466456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579450", + "createdBy": null, + "createdTime": "2026-02-02 03:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:57", + "echoMap": {}, + "alarmNo": "1790499876", + "alarmDate": "1769972455579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119200975579295", + "createdBy": null, + "createdTime": "2026-02-02 03:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:45", + "echoMap": {}, + "alarmNo": "1790499875", + "alarmDate": "1769972444121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385645354", + "createdBy": null, + "createdTime": "2026-02-02 02:51:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:35", + "echoMap": {}, + "alarmNo": "1790499874", + "alarmDate": "1769971893947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385645058", + "createdBy": null, + "createdTime": "2026-02-02 02:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:51:12", + "echoMap": {}, + "alarmNo": "1790499873", + "alarmDate": "1769971871134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385644716", + "createdBy": null, + "createdTime": "2026-02-02 02:50:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:46", + "echoMap": {}, + "alarmNo": "1790499872", + "alarmDate": "1769971845312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119192385644686", + "createdBy": null, + "createdTime": "2026-02-02 02:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:44", + "echoMap": {}, + "alarmNo": "1790499871", + "alarmDate": "1769971843287", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119188090677272", + "createdBy": null, + "createdTime": "2026-02-02 02:41:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:39", + "echoMap": {}, + "alarmNo": "1790499870", + "alarmDate": "1769971298098", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710757", + "createdBy": null, + "createdTime": "2026-02-02 02:41:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:35", + "echoMap": {}, + "alarmNo": "1790499869", + "alarmDate": "1769971294112", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710689", + "createdBy": null, + "createdTime": "2026-02-02 02:41:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:31", + "echoMap": {}, + "alarmNo": "1790499868", + "alarmDate": "1769971289780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710662", + "createdBy": null, + "createdTime": "2026-02-02 02:41:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:29", + "echoMap": {}, + "alarmNo": "1790499867", + "alarmDate": "1769971288142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710505", + "createdBy": null, + "createdTime": "2026-02-02 02:41:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:18", + "echoMap": {}, + "alarmNo": "1790499866", + "alarmDate": "1769971276595", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710491", + "createdBy": null, + "createdTime": "2026-02-02 02:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:41:17", + "echoMap": {}, + "alarmNo": "1790499865", + "alarmDate": "1769971275909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119183795710090", + "createdBy": null, + "createdTime": "2026-02-02 02:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:46", + "echoMap": {}, + "alarmNo": "1790499864", + "alarmDate": "1769971245365", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205776176", + "createdBy": null, + "createdTime": "2026-02-02 02:31:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:38", + "echoMap": {}, + "alarmNo": "1790499863", + "alarmDate": "1769970697190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205775934", + "createdBy": null, + "createdTime": "2026-02-02 02:31:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:21", + "echoMap": {}, + "alarmNo": "1790499862", + "alarmDate": "1769970679471", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205775864", + "createdBy": null, + "createdTime": "2026-02-02 02:31:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:31:16", + "echoMap": {}, + "alarmNo": "1790499861", + "alarmDate": "1769970674568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119175205775633", + "createdBy": null, + "createdTime": "2026-02-02 02:30:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:58", + "echoMap": {}, + "alarmNo": "1790499860", + "alarmDate": "1769970657276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841471", + "createdBy": null, + "createdTime": "2026-02-02 02:21:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:29", + "echoMap": {}, + "alarmNo": "1790499859", + "alarmDate": "1769970088288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841184", + "createdBy": null, + "createdTime": "2026-02-02 02:21:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:09", + "echoMap": {}, + "alarmNo": "1790499858", + "alarmDate": "1769970067501", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841063", + "createdBy": null, + "createdTime": "2026-02-02 02:20:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:21:00", + "echoMap": {}, + "alarmNo": "1790499857", + "alarmDate": "1769970058463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841031", + "createdBy": null, + "createdTime": "2026-02-02 02:20:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:57", + "echoMap": {}, + "alarmNo": "1790499856", + "alarmDate": "1769970056210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615841003", + "createdBy": null, + "createdTime": "2026-02-02 02:20:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:56", + "echoMap": {}, + "alarmNo": "1790499855", + "alarmDate": "1769970054463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119166615840835", + "createdBy": null, + "createdTime": "2026-02-02 02:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:42", + "echoMap": {}, + "alarmNo": "1790499854", + "alarmDate": "1769970041103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119162320873505", + "createdBy": null, + "createdTime": "2026-02-02 02:11:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:48", + "echoMap": {}, + "alarmNo": "1790499853", + "alarmDate": "1769969501643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119158025906934", + "createdBy": null, + "createdTime": "2026-02-02 02:11:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:33", + "echoMap": {}, + "alarmNo": "1790499852", + "alarmDate": "1769969491984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119158025906549", + "createdBy": null, + "createdTime": "2026-02-02 02:11:03", + "updatedBy": null, + "updatedTime": "2026-02-02 02:11:04", + "echoMap": {}, + "alarmNo": "1790499851", + "alarmDate": "1769969462705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435972195", + "createdBy": null, + "createdTime": "2026-02-02 02:01:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:35", + "echoMap": {}, + "alarmNo": "1790499850", + "alarmDate": "1769968893771", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435972126", + "createdBy": null, + "createdTime": "2026-02-02 02:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:30", + "echoMap": {}, + "alarmNo": "1790499849", + "alarmDate": "1769968888596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435971910", + "createdBy": null, + "createdTime": "2026-02-02 02:01:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:01:14", + "echoMap": {}, + "alarmNo": "1790499848", + "alarmDate": "1769968872430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119149435971637", + "createdBy": null, + "createdTime": "2026-02-02 02:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:54", + "echoMap": {}, + "alarmNo": "1790499847", + "alarmDate": "1769968852645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037565", + "createdBy": null, + "createdTime": "2026-02-02 01:51:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:36", + "echoMap": {}, + "alarmNo": "1790499846", + "alarmDate": "1769968294862", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037304", + "createdBy": null, + "createdTime": "2026-02-02 01:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:16", + "echoMap": {}, + "alarmNo": "1790499845", + "alarmDate": "1769968275383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037276", + "createdBy": null, + "createdTime": "2026-02-02 01:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:15", + "echoMap": {}, + "alarmNo": "1790499844", + "alarmDate": "1769968273575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037232", + "createdBy": null, + "createdTime": "2026-02-02 01:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:12", + "echoMap": {}, + "alarmNo": "1790499843", + "alarmDate": "1769968270561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037224", + "createdBy": null, + "createdTime": "2026-02-02 01:51:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:51:11", + "echoMap": {}, + "alarmNo": "1790499842", + "alarmDate": "1769968269985", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119140846037005", + "createdBy": null, + "createdTime": "2026-02-02 01:50:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:56", + "echoMap": {}, + "alarmNo": "1790499841", + "alarmDate": "1769968255227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119132256102608", + "createdBy": null, + "createdTime": "2026-02-02 01:41:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:22", + "echoMap": {}, + "alarmNo": "1790499840", + "alarmDate": "1769967680656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119127961135151", + "createdBy": null, + "createdTime": "2026-02-02 01:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:41:01", + "echoMap": {}, + "alarmNo": "1790499839", + "alarmDate": "1769967660102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119123666168371", + "createdBy": null, + "createdTime": "2026-02-02 01:40:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:51", + "echoMap": {}, + "alarmNo": "1790499838", + "alarmDate": "1769967649995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119123666168120", + "createdBy": null, + "createdTime": "2026-02-02 01:31:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:41", + "echoMap": {}, + "alarmNo": "1790499837", + "alarmDate": "1769967099791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119123666167941", + "createdBy": null, + "createdTime": "2026-02-02 01:31:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:28", + "echoMap": {}, + "alarmNo": "1790499836", + "alarmDate": "1769967086581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233787", + "createdBy": null, + "createdTime": "2026-02-02 01:31:05", + "updatedBy": null, + "updatedTime": "2026-02-02 01:31:06", + "echoMap": {}, + "alarmNo": "1790499835", + "alarmDate": "1769967065166", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233495", + "createdBy": null, + "createdTime": "2026-02-02 01:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:44", + "echoMap": {}, + "alarmNo": "1790499834", + "alarmDate": "1769967042758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233309", + "createdBy": null, + "createdTime": "2026-02-02 01:21:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:36", + "echoMap": {}, + "alarmNo": "1790499833", + "alarmDate": "1769966494619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233280", + "createdBy": null, + "createdTime": "2026-02-02 01:21:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:34", + "echoMap": {}, + "alarmNo": "1790499832", + "alarmDate": "1769966493081", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119115076233249", + "createdBy": null, + "createdTime": "2026-02-02 01:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:32", + "echoMap": {}, + "alarmNo": "1790499831", + "alarmDate": "1769966490669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119110781265933", + "createdBy": null, + "createdTime": "2026-02-02 01:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:26", + "echoMap": {}, + "alarmNo": "1790499830", + "alarmDate": "1769966484829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191332285", + "createdBy": null, + "createdTime": "2026-02-02 01:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:21:15", + "echoMap": {}, + "alarmNo": "1790499829", + "alarmDate": "1769966474414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331992", + "createdBy": null, + "createdTime": "2026-02-02 01:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:53", + "echoMap": {}, + "alarmNo": "1790499828", + "alarmDate": "1769966452394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331888", + "createdBy": null, + "createdTime": "2026-02-02 01:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:46", + "echoMap": {}, + "alarmNo": "1790499827", + "alarmDate": "1769966444960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331686", + "createdBy": null, + "createdTime": "2026-02-02 01:11:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:37", + "echoMap": {}, + "alarmNo": "1790499826", + "alarmDate": "1769965895636", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119102191331459", + "createdBy": null, + "createdTime": "2026-02-02 01:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:20", + "echoMap": {}, + "alarmNo": "1790499825", + "alarmDate": "1769965879176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601397674", + "createdBy": null, + "createdTime": "2026-02-02 01:11:01", + "updatedBy": null, + "updatedTime": "2026-02-02 01:11:02", + "echoMap": {}, + "alarmNo": "1790499824", + "alarmDate": "1769965860988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601397540", + "createdBy": null, + "createdTime": "2026-02-02 01:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:52", + "echoMap": {}, + "alarmNo": "1790499823", + "alarmDate": "1769965850895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601397177", + "createdBy": null, + "createdTime": "2026-02-02 01:01:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:30", + "echoMap": {}, + "alarmNo": "1790499822", + "alarmDate": "1769965289286", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601396818", + "createdBy": null, + "createdTime": "2026-02-02 01:01:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:04", + "echoMap": {}, + "alarmNo": "1790499821", + "alarmDate": "1769965262888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119093601396809", + "createdBy": null, + "createdTime": "2026-02-02 01:01:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:01:03", + "echoMap": {}, + "alarmNo": "1790499820", + "alarmDate": "1769965262487", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119089306429473", + "createdBy": null, + "createdTime": "2026-02-02 01:00:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:57", + "echoMap": {}, + "alarmNo": "1790499819", + "alarmDate": "1769965256012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119085011462773", + "createdBy": null, + "createdTime": "2026-02-02 00:51:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:49", + "echoMap": {}, + "alarmNo": "1790499818", + "alarmDate": "1769964699920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119085011462386", + "createdBy": null, + "createdTime": "2026-02-02 00:51:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:12", + "echoMap": {}, + "alarmNo": "1790499817", + "alarmDate": "1769964670614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119085011462259", + "createdBy": null, + "createdTime": "2026-02-02 00:51:01", + "updatedBy": null, + "updatedTime": "2026-02-02 00:51:02", + "echoMap": {}, + "alarmNo": "1790499816", + "alarmDate": "1769964661036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119076421527611", + "createdBy": null, + "createdTime": "2026-02-02 00:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:47", + "echoMap": {}, + "alarmNo": "1790499815", + "alarmDate": "1769964645629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126561136", + "createdBy": null, + "createdTime": "2026-02-02 00:41:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:38", + "echoMap": {}, + "alarmNo": "1790499814", + "alarmDate": "1769964097478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560829", + "createdBy": null, + "createdTime": "2026-02-02 00:41:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:15", + "echoMap": {}, + "alarmNo": "1790499813", + "alarmDate": "1769964074199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560785", + "createdBy": null, + "createdTime": "2026-02-02 00:41:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:12", + "echoMap": {}, + "alarmNo": "1790499812", + "alarmDate": "1769964071062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560729", + "createdBy": null, + "createdTime": "2026-02-02 00:41:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:08", + "echoMap": {}, + "alarmNo": "1790499811", + "alarmDate": "1769964067087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119072126560632", + "createdBy": null, + "createdTime": "2026-02-02 00:41:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:41:01", + "echoMap": {}, + "alarmNo": "1790499810", + "alarmDate": "1769964059931", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626572", + "createdBy": null, + "createdTime": "2026-02-02 00:31:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:26", + "echoMap": {}, + "alarmNo": "1790499809", + "alarmDate": "1769963484643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626542", + "createdBy": null, + "createdTime": "2026-02-02 00:31:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:23", + "echoMap": {}, + "alarmNo": "1790499808", + "alarmDate": "1769963482040", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626487", + "createdBy": null, + "createdTime": "2026-02-02 00:31:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:18", + "echoMap": {}, + "alarmNo": "1790499807", + "alarmDate": "1769963477077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536626343", + "createdBy": null, + "createdTime": "2026-02-02 00:31:03", + "updatedBy": null, + "updatedTime": "2026-02-02 00:31:04", + "echoMap": {}, + "alarmNo": "1790499806", + "alarmDate": "1769963463236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536625925", + "createdBy": null, + "createdTime": "2026-02-02 00:21:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:32", + "echoMap": {}, + "alarmNo": "1790499805", + "alarmDate": "1769962890747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119063536625791", + "createdBy": null, + "createdTime": "2026-02-02 00:21:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:19", + "echoMap": {}, + "alarmNo": "1790499804", + "alarmDate": "1769962878125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119059241658420", + "createdBy": null, + "createdTime": "2026-02-02 00:21:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:21:06", + "echoMap": {}, + "alarmNo": "1790499803", + "alarmDate": "1769962864702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060063", + "deviceName": "[207](10)三门下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691470", + "createdBy": null, + "createdTime": "2026-02-02 00:11:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:32", + "echoMap": {}, + "alarmNo": "1790499802", + "alarmDate": "1769962291358", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060013", + "deviceName": "[209](10)三门3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691389", + "createdBy": null, + "createdTime": "2026-02-02 00:11:25", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:26", + "echoMap": {}, + "alarmNo": "1790499801", + "alarmDate": "1769962285002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060086", + "deviceName": "[703](10)三门三门江体上行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691324", + "createdBy": null, + "createdTime": "2026-02-02 00:11:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:21", + "echoMap": {}, + "alarmNo": "1790499800", + "alarmDate": "1769962280106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060019", + "deviceName": "[202](10)三门厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119054946691310", + "createdBy": null, + "createdTime": "2026-02-02 00:11:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:11:20", + "echoMap": {}, + "alarmNo": "1790499799", + "alarmDate": "1769962279221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060056", + "deviceName": "[203](10)三门厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061790203", + "createdBy": null, + "createdTime": "2026-02-02 00:10:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:56", + "echoMap": {}, + "alarmNo": "1790499798", + "alarmDate": "1769962254969", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060079", + "deviceName": "[205](10)三门上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061790054", + "createdBy": null, + "createdTime": "2026-02-02 00:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:44", + "echoMap": {}, + "alarmNo": "1790499797", + "alarmDate": "1769962242488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789794", + "createdBy": null, + "createdTime": "2026-02-02 00:01:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:50", + "echoMap": {}, + "alarmNo": "1790499796", + "alarmDate": "1769961701223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060080", + "deviceName": "[206](10)三门上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789695", + "createdBy": null, + "createdTime": "2026-02-02 00:01:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:32", + "echoMap": {}, + "alarmNo": "1790499795", + "alarmDate": "1769961691325", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060046", + "deviceName": "[601](10)三门车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789550", + "createdBy": null, + "createdTime": "2026-02-02 00:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:01:18", + "echoMap": {}, + "alarmNo": "1790499794", + "alarmDate": "1769961677402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060030", + "deviceName": "[201](10)三门厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789357", + "createdBy": null, + "createdTime": "2026-02-02 00:00:58", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:59", + "echoMap": {}, + "alarmNo": "1790499793", + "alarmDate": "1769961658164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060076", + "deviceName": "[208](10)三门下行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + }, + { + "id": "723119042061789215", + "createdBy": null, + "createdTime": "2026-02-02 00:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:46", + "echoMap": {}, + "alarmNo": "1790499792", + "alarmDate": "1769961644547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1026060045", + "deviceName": "[204](10)三门厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1026" + } + ] + }, + "1027": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113441417581785", + "createdBy": null, + "createdTime": "2026-02-02 00:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:12", + "echoMap": {}, + "alarmNo": "1810270806", + "alarmDate": "1769961970947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113441417581786", + "createdBy": null, + "createdTime": "2026-02-02 00:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:37", + "echoMap": {}, + "alarmNo": "1810270807", + "alarmDate": "1769961970951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060034", + "deviceName": "[310](10)殷高东3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113441417582054", + "createdBy": null, + "createdTime": "2026-02-02 00:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:36", + "echoMap": {}, + "alarmNo": "1810270808", + "alarmDate": "1769961989860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113445712548883", + "createdBy": null, + "createdTime": "2026-02-02 00:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:53", + "echoMap": {}, + "alarmNo": "1810270809", + "alarmDate": "1769962011840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113445712548916", + "createdBy": null, + "createdTime": "2026-02-02 00:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:00", + "echoMap": {}, + "alarmNo": "1810270810", + "alarmDate": "1769962013867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113450007516698", + "createdBy": null, + "createdTime": "2026-02-02 00:16:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:23", + "echoMap": {}, + "alarmNo": "1810270811", + "alarmDate": "1769962577211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597450761", + "createdBy": null, + "createdTime": "2026-02-02 00:16:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:47", + "echoMap": {}, + "alarmNo": "1810270812", + "alarmDate": "1769962601145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597451035", + "createdBy": null, + "createdTime": "2026-02-02 00:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:01", + "echoMap": {}, + "alarmNo": "1810270813", + "alarmDate": "1769962619615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597451111", + "createdBy": null, + "createdTime": "2026-02-02 00:17:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:11", + "echoMap": {}, + "alarmNo": "1810270814", + "alarmDate": "1769962625082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597451409", + "createdBy": null, + "createdTime": "2026-02-02 00:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:00", + "echoMap": {}, + "alarmNo": "1810270815", + "alarmDate": "1769963170675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060004", + "deviceName": "[612](10)殷高东内通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385406", + "createdBy": null, + "createdTime": "2026-02-02 00:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:33", + "echoMap": {}, + "alarmNo": "1810270816", + "alarmDate": "1769963188150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385415", + "createdBy": null, + "createdTime": "2026-02-02 00:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:34", + "echoMap": {}, + "alarmNo": "1810270817", + "alarmDate": "1769963188379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385654", + "createdBy": null, + "createdTime": "2026-02-02 00:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:46", + "echoMap": {}, + "alarmNo": "1810270818", + "alarmDate": "1769963204839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385718", + "createdBy": null, + "createdTime": "2026-02-02 00:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:55", + "echoMap": {}, + "alarmNo": "1810270819", + "alarmDate": "1769963208982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385800", + "createdBy": null, + "createdTime": "2026-02-02 00:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:04", + "echoMap": {}, + "alarmNo": "1810270820", + "alarmDate": "1769963213423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113471482352703", + "createdBy": null, + "createdTime": "2026-02-02 00:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:58", + "echoMap": {}, + "alarmNo": "1810270821", + "alarmDate": "1769963772545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777319997", + "createdBy": null, + "createdTime": "2026-02-02 00:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:23", + "echoMap": {}, + "alarmNo": "1810270822", + "alarmDate": "1769963777058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777320252", + "createdBy": null, + "createdTime": "2026-02-02 00:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:34", + "echoMap": {}, + "alarmNo": "1810270823", + "alarmDate": "1769963793386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777320370", + "createdBy": null, + "createdTime": "2026-02-02 00:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:53", + "echoMap": {}, + "alarmNo": "1810270824", + "alarmDate": "1769963800908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777320747", + "createdBy": null, + "createdTime": "2026-02-02 00:37:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:35", + "echoMap": {}, + "alarmNo": "1810270825", + "alarmDate": "1769963824898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113480072287285", + "createdBy": null, + "createdTime": "2026-02-02 00:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:39", + "echoMap": {}, + "alarmNo": "1810270826", + "alarmDate": "1769963830018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113484367255101", + "createdBy": null, + "createdTime": "2026-02-02 00:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:42", + "echoMap": {}, + "alarmNo": "1810270827", + "alarmDate": "1769964400573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113484367255263", + "createdBy": null, + "createdTime": "2026-02-02 00:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:42", + "echoMap": {}, + "alarmNo": "1810270828", + "alarmDate": "1769964410984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113484367255284", + "createdBy": null, + "createdTime": "2026-02-02 00:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:04", + "echoMap": {}, + "alarmNo": "1810270829", + "alarmDate": "1769964412167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113492957189514", + "createdBy": null, + "createdTime": "2026-02-02 00:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:27", + "echoMap": {}, + "alarmNo": "1810270830", + "alarmDate": "1769964975639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113492957189668", + "createdBy": null, + "createdTime": "2026-02-02 00:56:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:27", + "echoMap": {}, + "alarmNo": "1810270831", + "alarmDate": "1769964985670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113492957189868", + "createdBy": null, + "createdTime": "2026-02-02 00:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:52", + "echoMap": {}, + "alarmNo": "1810270832", + "alarmDate": "1769964999422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113501547123980", + "createdBy": null, + "createdTime": "2026-02-02 00:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:16", + "echoMap": {}, + "alarmNo": "1810270833", + "alarmDate": "1769965024343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113501547124025", + "createdBy": null, + "createdTime": "2026-02-02 00:57:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:08", + "echoMap": {}, + "alarmNo": "1810270834", + "alarmDate": "1769965027174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113501547124259", + "createdBy": null, + "createdTime": "2026-02-02 01:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:15", + "echoMap": {}, + "alarmNo": "1810270835", + "alarmDate": "1769965574343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113505842091053", + "createdBy": null, + "createdTime": "2026-02-02 01:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:39", + "echoMap": {}, + "alarmNo": "1810270836", + "alarmDate": "1769965587441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113510137058551", + "createdBy": null, + "createdTime": "2026-02-02 01:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:06", + "echoMap": {}, + "alarmNo": "1810270837", + "alarmDate": "1769965606765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113510137058618", + "createdBy": null, + "createdTime": "2026-02-02 01:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:03", + "echoMap": {}, + "alarmNo": "1810270838", + "alarmDate": "1769965610605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726992914", + "createdBy": null, + "createdTime": "2026-02-02 01:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:27", + "echoMap": {}, + "alarmNo": "1810270839", + "alarmDate": "1769966174891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726993029", + "createdBy": null, + "createdTime": "2026-02-02 01:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:23", + "echoMap": {}, + "alarmNo": "1810270840", + "alarmDate": "1769966182448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726993272", + "createdBy": null, + "createdTime": "2026-02-02 01:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:51", + "echoMap": {}, + "alarmNo": "1810270841", + "alarmDate": "1769966199270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726993564", + "createdBy": null, + "createdTime": "2026-02-02 01:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:59", + "echoMap": {}, + "alarmNo": "1810270842", + "alarmDate": "1769966218420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113523021960215", + "createdBy": null, + "createdTime": "2026-02-02 01:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:14", + "echoMap": {}, + "alarmNo": "1810270843", + "alarmDate": "1769966223181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316927698", + "createdBy": null, + "createdTime": "2026-02-02 01:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:10", + "echoMap": {}, + "alarmNo": "1810270844", + "alarmDate": "1769966772403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316927899", + "createdBy": null, + "createdTime": "2026-02-02 01:26:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:38", + "echoMap": {}, + "alarmNo": "1810270845", + "alarmDate": "1769966786379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316927975", + "createdBy": null, + "createdTime": "2026-02-02 01:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:38", + "echoMap": {}, + "alarmNo": "1810270846", + "alarmDate": "1769966791171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316928216", + "createdBy": null, + "createdTime": "2026-02-02 01:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:48", + "echoMap": {}, + "alarmNo": "1810270847", + "alarmDate": "1769966806854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316928269", + "createdBy": null, + "createdTime": "2026-02-02 01:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:02", + "echoMap": {}, + "alarmNo": "1810270848", + "alarmDate": "1769966810156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829520", + "createdBy": null, + "createdTime": "2026-02-02 01:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:16", + "echoMap": {}, + "alarmNo": "1810270849", + "alarmDate": "1769967372506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829535", + "createdBy": null, + "createdTime": "2026-02-02 01:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:25", + "echoMap": {}, + "alarmNo": "1810270850", + "alarmDate": "1769967373407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829891", + "createdBy": null, + "createdTime": "2026-02-02 01:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:49", + "echoMap": {}, + "alarmNo": "1810270851", + "alarmDate": "1769967397520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829983", + "createdBy": null, + "createdTime": "2026-02-02 01:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:56", + "echoMap": {}, + "alarmNo": "1810270852", + "alarmDate": "1769967403564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201830189", + "createdBy": null, + "createdTime": "2026-02-02 01:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:57", + "echoMap": {}, + "alarmNo": "1810270853", + "alarmDate": "1769967416320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201830275", + "createdBy": null, + "createdTime": "2026-02-02 01:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:14", + "echoMap": {}, + "alarmNo": "1810270854", + "alarmDate": "1769967421955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201830369", + "createdBy": null, + "createdTime": "2026-02-02 01:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:37", + "echoMap": {}, + "alarmNo": "1810270855", + "alarmDate": "1769967428003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764258", + "createdBy": null, + "createdTime": "2026-02-02 01:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:38", + "echoMap": {}, + "alarmNo": "1810270856", + "alarmDate": "1769967985684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764327", + "createdBy": null, + "createdTime": "2026-02-02 01:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:43", + "echoMap": {}, + "alarmNo": "1810270857", + "alarmDate": "1769967989954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764483", + "createdBy": null, + "createdTime": "2026-02-02 01:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:40", + "echoMap": {}, + "alarmNo": "1810270858", + "alarmDate": "1769967999181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764639", + "createdBy": null, + "createdTime": "2026-02-02 01:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:01", + "echoMap": {}, + "alarmNo": "1810270859", + "alarmDate": "1769968009723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764730", + "createdBy": null, + "createdTime": "2026-02-02 01:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:36", + "echoMap": {}, + "alarmNo": "1810270860", + "alarmDate": "1769968015061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381698705", + "createdBy": null, + "createdTime": "2026-02-02 01:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:25", + "echoMap": {}, + "alarmNo": "1810270861", + "alarmDate": "1769968573111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381698922", + "createdBy": null, + "createdTime": "2026-02-02 01:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:28", + "echoMap": {}, + "alarmNo": "1810270862", + "alarmDate": "1769968586679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381699087", + "createdBy": null, + "createdTime": "2026-02-02 01:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:49", + "echoMap": {}, + "alarmNo": "1810270863", + "alarmDate": "1769968597324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381699351", + "createdBy": null, + "createdTime": "2026-02-02 01:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:07", + "echoMap": {}, + "alarmNo": "1810270864", + "alarmDate": "1769968614516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381699452", + "createdBy": null, + "createdTime": "2026-02-02 01:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:13", + "echoMap": {}, + "alarmNo": "1810270865", + "alarmDate": "1769968621117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633279", + "createdBy": null, + "createdTime": "2026-02-02 02:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:08", + "echoMap": {}, + "alarmNo": "1810270866", + "alarmDate": "1769969172299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633462", + "createdBy": null, + "createdTime": "2026-02-02 02:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:43", + "echoMap": {}, + "alarmNo": "1810270867", + "alarmDate": "1769969184988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633463", + "createdBy": null, + "createdTime": "2026-02-02 02:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:36", + "echoMap": {}, + "alarmNo": "1810270868", + "alarmDate": "1769969184991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633658", + "createdBy": null, + "createdTime": "2026-02-02 02:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:38", + "echoMap": {}, + "alarmNo": "1810270869", + "alarmDate": "1769969196984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633834", + "createdBy": null, + "createdTime": "2026-02-02 02:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:00", + "echoMap": {}, + "alarmNo": "1810270870", + "alarmDate": "1769969208840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633934", + "createdBy": null, + "createdTime": "2026-02-02 02:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:36", + "echoMap": {}, + "alarmNo": "1810270871", + "alarmDate": "1769969214616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561567865", + "createdBy": null, + "createdTime": "2026-02-02 02:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:25", + "echoMap": {}, + "alarmNo": "1810270872", + "alarmDate": "1769969771751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568010", + "createdBy": null, + "createdTime": "2026-02-02 02:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:22", + "echoMap": {}, + "alarmNo": "1810270873", + "alarmDate": "1769969780931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568251", + "createdBy": null, + "createdTime": "2026-02-02 02:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:12", + "echoMap": {}, + "alarmNo": "1810270874", + "alarmDate": "1769969796575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568525", + "createdBy": null, + "createdTime": "2026-02-02 02:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:00", + "echoMap": {}, + "alarmNo": "1810270875", + "alarmDate": "1769969814054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568625", + "createdBy": null, + "createdTime": "2026-02-02 02:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:40", + "echoMap": {}, + "alarmNo": "1810270876", + "alarmDate": "1769969820217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502575", + "createdBy": null, + "createdTime": "2026-02-02 02:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:29", + "echoMap": {}, + "alarmNo": "1810270877", + "alarmDate": "1769970377245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502683", + "createdBy": null, + "createdTime": "2026-02-02 02:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:36", + "echoMap": {}, + "alarmNo": "1810270878", + "alarmDate": "1769970384106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502704", + "createdBy": null, + "createdTime": "2026-02-02 02:26:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:33", + "echoMap": {}, + "alarmNo": "1810270879", + "alarmDate": "1769970385272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502951", + "createdBy": null, + "createdTime": "2026-02-02 02:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:00", + "echoMap": {}, + "alarmNo": "1810270880", + "alarmDate": "1769970401201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151503059", + "createdBy": null, + "createdTime": "2026-02-02 02:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:01", + "echoMap": {}, + "alarmNo": "1810270881", + "alarmDate": "1769970408213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741436991", + "createdBy": null, + "createdTime": "2026-02-02 02:27:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:12", + "echoMap": {}, + "alarmNo": "1810270882", + "alarmDate": "1769970430844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437137", + "createdBy": null, + "createdTime": "2026-02-02 02:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:23", + "echoMap": {}, + "alarmNo": "1810270883", + "alarmDate": "1769970971236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437146", + "createdBy": null, + "createdTime": "2026-02-02 02:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:17", + "echoMap": {}, + "alarmNo": "1810270884", + "alarmDate": "1769970971913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437158", + "createdBy": null, + "createdTime": "2026-02-02 02:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:23", + "echoMap": {}, + "alarmNo": "1810270885", + "alarmDate": "1769970972620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437263", + "createdBy": null, + "createdTime": "2026-02-02 02:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:20", + "echoMap": {}, + "alarmNo": "1810270886", + "alarmDate": "1769970979022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437404", + "createdBy": null, + "createdTime": "2026-02-02 02:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:12", + "echoMap": {}, + "alarmNo": "1810270887", + "alarmDate": "1769970988926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437492", + "createdBy": null, + "createdTime": "2026-02-02 02:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:47", + "echoMap": {}, + "alarmNo": "1810270888", + "alarmDate": "1769970994984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437501", + "createdBy": null, + "createdTime": "2026-02-02 02:36:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:47", + "echoMap": {}, + "alarmNo": "1810270889", + "alarmDate": "1769970995587", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437585", + "createdBy": null, + "createdTime": "2026-02-02 02:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:54", + "echoMap": {}, + "alarmNo": "1810270890", + "alarmDate": "1769971000598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437825", + "createdBy": null, + "createdTime": "2026-02-02 02:36:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:56", + "echoMap": {}, + "alarmNo": "1810270891", + "alarmDate": "1769971014844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113596036404243", + "createdBy": null, + "createdTime": "2026-02-02 02:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:10", + "echoMap": {}, + "alarmNo": "1810270892", + "alarmDate": "1769971019199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113600331371552", + "createdBy": null, + "createdTime": "2026-02-02 02:37:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:40", + "echoMap": {}, + "alarmNo": "1810270893", + "alarmDate": "1769971024621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113600331371950", + "createdBy": null, + "createdTime": "2026-02-02 02:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:34", + "echoMap": {}, + "alarmNo": "1810270894", + "alarmDate": "1769971583176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113600331372302", + "createdBy": null, + "createdTime": "2026-02-02 02:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:59", + "echoMap": {}, + "alarmNo": "1810270895", + "alarmDate": "1769971607093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113608921306352", + "createdBy": null, + "createdTime": "2026-02-02 02:56:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:23", + "echoMap": {}, + "alarmNo": "1810270896", + "alarmDate": "1769972171244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113608921306687", + "createdBy": null, + "createdTime": "2026-02-02 02:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:46", + "echoMap": {}, + "alarmNo": "1810270897", + "alarmDate": "1769972193829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113608921306970", + "createdBy": null, + "createdTime": "2026-02-02 02:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:54", + "echoMap": {}, + "alarmNo": "1810270898", + "alarmDate": "1769972212541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113613216273458", + "createdBy": null, + "createdTime": "2026-02-02 02:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:34", + "echoMap": {}, + "alarmNo": "1810270899", + "alarmDate": "1769972224069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113617511241291", + "createdBy": null, + "createdTime": "2026-02-02 03:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:09", + "echoMap": {}, + "alarmNo": "1810270900", + "alarmDate": "1769972796917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113617511241525", + "createdBy": null, + "createdTime": "2026-02-02 03:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:58", + "echoMap": {}, + "alarmNo": "1810270901", + "alarmDate": "1769972812465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175448", + "createdBy": null, + "createdTime": "2026-02-02 03:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:22", + "echoMap": {}, + "alarmNo": "1810270903", + "alarmDate": "1769973370274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175581", + "createdBy": null, + "createdTime": "2026-02-02 03:16:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:20", + "echoMap": {}, + "alarmNo": "1810270904", + "alarmDate": "1769973379081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175609", + "createdBy": null, + "createdTime": "2026-02-02 03:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:27", + "echoMap": {}, + "alarmNo": "1810270905", + "alarmDate": "1769973380825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175881", + "createdBy": null, + "createdTime": "2026-02-02 03:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:45", + "echoMap": {}, + "alarmNo": "1810270906", + "alarmDate": "1769973399402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175916", + "createdBy": null, + "createdTime": "2026-02-02 03:16:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:48", + "echoMap": {}, + "alarmNo": "1810270907", + "alarmDate": "1769973401590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175970", + "createdBy": null, + "createdTime": "2026-02-02 03:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:09", + "echoMap": {}, + "alarmNo": "1810270908", + "alarmDate": "1769973404989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101176261", + "createdBy": null, + "createdTime": "2026-02-02 03:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:32", + "echoMap": {}, + "alarmNo": "1810270909", + "alarmDate": "1769973423352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113634691110407", + "createdBy": null, + "createdTime": "2026-02-02 03:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:35", + "echoMap": {}, + "alarmNo": "1810270910", + "alarmDate": "1769973994296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113634691110660", + "createdBy": null, + "createdTime": "2026-02-02 03:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:57", + "echoMap": {}, + "alarmNo": "1810270911", + "alarmDate": "1769974010405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113634691110698", + "createdBy": null, + "createdTime": "2026-02-02 03:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:59", + "echoMap": {}, + "alarmNo": "1810270912", + "alarmDate": "1769974012698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281044671", + "createdBy": null, + "createdTime": "2026-02-02 03:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:32", + "echoMap": {}, + "alarmNo": "1810270913", + "alarmDate": "1769974572400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281044690", + "createdBy": null, + "createdTime": "2026-02-02 03:36:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:21", + "echoMap": {}, + "alarmNo": "1810270914", + "alarmDate": "1769974573684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281044726", + "createdBy": null, + "createdTime": "2026-02-02 03:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:17", + "echoMap": {}, + "alarmNo": "1810270915", + "alarmDate": "1769974575803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045073", + "createdBy": null, + "createdTime": "2026-02-02 03:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:45", + "echoMap": {}, + "alarmNo": "1810270916", + "alarmDate": "1769974598686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045163", + "createdBy": null, + "createdTime": "2026-02-02 03:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:50", + "echoMap": {}, + "alarmNo": "1810270917", + "alarmDate": "1769974604415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045280", + "createdBy": null, + "createdTime": "2026-02-02 03:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:52", + "echoMap": {}, + "alarmNo": "1810270918", + "alarmDate": "1769974611352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045428", + "createdBy": null, + "createdTime": "2026-02-02 03:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:32", + "echoMap": {}, + "alarmNo": "1810270919", + "alarmDate": "1769974621802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045464", + "createdBy": null, + "createdTime": "2026-02-02 03:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:57", + "echoMap": {}, + "alarmNo": "1810270920", + "alarmDate": "1769974624005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113651870979305", + "createdBy": null, + "createdTime": "2026-02-02 03:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:22", + "echoMap": {}, + "alarmNo": "1810270921", + "alarmDate": "1769975175748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113651870979572", + "createdBy": null, + "createdTime": "2026-02-02 03:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:32", + "echoMap": {}, + "alarmNo": "1810270922", + "alarmDate": "1769975193736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113651870979816", + "createdBy": null, + "createdTime": "2026-02-02 03:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:56", + "echoMap": {}, + "alarmNo": "1810270923", + "alarmDate": "1769975209948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113656165946423", + "createdBy": null, + "createdTime": "2026-02-02 03:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:09", + "echoMap": {}, + "alarmNo": "1810270924", + "alarmDate": "1769975228033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460913854", + "createdBy": null, + "createdTime": "2026-02-02 03:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:25", + "echoMap": {}, + "alarmNo": "1810270925", + "alarmDate": "1769975773232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460913885", + "createdBy": null, + "createdTime": "2026-02-02 03:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:16", + "echoMap": {}, + "alarmNo": "1810270926", + "alarmDate": "1769975775119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914165", + "createdBy": null, + "createdTime": "2026-02-02 03:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:40", + "echoMap": {}, + "alarmNo": "1810270927", + "alarmDate": "1769975794141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914214", + "createdBy": null, + "createdTime": "2026-02-02 03:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:49", + "echoMap": {}, + "alarmNo": "1810270928", + "alarmDate": "1769975797294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914406", + "createdBy": null, + "createdTime": "2026-02-02 03:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:51", + "echoMap": {}, + "alarmNo": "1810270929", + "alarmDate": "1769975809535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914588", + "createdBy": null, + "createdTime": "2026-02-02 03:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:13", + "echoMap": {}, + "alarmNo": "1810270930", + "alarmDate": "1769975821474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914623", + "createdBy": null, + "createdTime": "2026-02-02 03:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:10", + "echoMap": {}, + "alarmNo": "1810270931", + "alarmDate": "1769975823542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050848607", + "createdBy": null, + "createdTime": "2026-02-02 04:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:37", + "echoMap": {}, + "alarmNo": "1810270932", + "alarmDate": "1769976384535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050848717", + "createdBy": null, + "createdTime": "2026-02-02 04:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:32", + "echoMap": {}, + "alarmNo": "1810270933", + "alarmDate": "1769976391229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050848970", + "createdBy": null, + "createdTime": "2026-02-02 04:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:01", + "echoMap": {}, + "alarmNo": "1810270934", + "alarmDate": "1769976408516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050849102", + "createdBy": null, + "createdTime": "2026-02-02 04:06:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:08", + "echoMap": {}, + "alarmNo": "1810270935", + "alarmDate": "1769976416501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050849151", + "createdBy": null, + "createdTime": "2026-02-02 04:06:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:05", + "echoMap": {}, + "alarmNo": "1810270936", + "alarmDate": "1769976419479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783053", + "createdBy": null, + "createdTime": "2026-02-02 04:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:25", + "echoMap": {}, + "alarmNo": "1810270937", + "alarmDate": "1769976971834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783054", + "createdBy": null, + "createdTime": "2026-02-02 04:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:02", + "echoMap": {}, + "alarmNo": "1810270938", + "alarmDate": "1769976971839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783447", + "createdBy": null, + "createdTime": "2026-02-02 04:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:49", + "echoMap": {}, + "alarmNo": "1810270939", + "alarmDate": "1769976996786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783626", + "createdBy": null, + "createdTime": "2026-02-02 04:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:49", + "echoMap": {}, + "alarmNo": "1810270940", + "alarmDate": "1769977007756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113681935750170", + "createdBy": null, + "createdTime": "2026-02-02 04:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:12", + "echoMap": {}, + "alarmNo": "1810270941", + "alarmDate": "1769977019897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230717820", + "createdBy": null, + "createdTime": "2026-02-02 04:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:55", + "echoMap": {}, + "alarmNo": "1810270942", + "alarmDate": "1769977580133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230717883", + "createdBy": null, + "createdTime": "2026-02-02 04:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:36", + "echoMap": {}, + "alarmNo": "1810270943", + "alarmDate": "1769977584114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230717983", + "createdBy": null, + "createdTime": "2026-02-02 04:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:31", + "echoMap": {}, + "alarmNo": "1810270944", + "alarmDate": "1769977590313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230718261", + "createdBy": null, + "createdTime": "2026-02-02 04:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:00", + "echoMap": {}, + "alarmNo": "1810270945", + "alarmDate": "1769977608188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652116", + "createdBy": null, + "createdTime": "2026-02-02 04:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:06", + "echoMap": {}, + "alarmNo": "1810270946", + "alarmDate": "1769977624736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652336", + "createdBy": null, + "createdTime": "2026-02-02 04:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:23", + "echoMap": {}, + "alarmNo": "1810270947", + "alarmDate": "1769978171486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652370", + "createdBy": null, + "createdTime": "2026-02-02 04:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:20", + "echoMap": {}, + "alarmNo": "1810270948", + "alarmDate": "1769978173446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652696", + "createdBy": null, + "createdTime": "2026-02-02 04:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:47", + "echoMap": {}, + "alarmNo": "1810270949", + "alarmDate": "1769978195382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652730", + "createdBy": null, + "createdTime": "2026-02-02 04:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:25", + "echoMap": {}, + "alarmNo": "1810270950", + "alarmDate": "1769978197485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113699115619393", + "createdBy": null, + "createdTime": "2026-02-02 04:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:59", + "echoMap": {}, + "alarmNo": "1810270951", + "alarmDate": "1769978219473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587136", + "createdBy": null, + "createdTime": "2026-02-02 04:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:31", + "echoMap": {}, + "alarmNo": "1810270952", + "alarmDate": "1769978789550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587213", + "createdBy": null, + "createdTime": "2026-02-02 04:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:49", + "echoMap": {}, + "alarmNo": "1810270953", + "alarmDate": "1769978796853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587478", + "createdBy": null, + "createdTime": "2026-02-02 04:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:54", + "echoMap": {}, + "alarmNo": "1810270954", + "alarmDate": "1769978820821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587492", + "createdBy": null, + "createdTime": "2026-02-02 04:47:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:03", + "echoMap": {}, + "alarmNo": "1810270955", + "alarmDate": "1769978821845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113712000521415", + "createdBy": null, + "createdTime": "2026-02-02 04:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:29", + "echoMap": {}, + "alarmNo": "1810270956", + "alarmDate": "1769979387579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113712000521589", + "createdBy": null, + "createdTime": "2026-02-02 04:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:45", + "echoMap": {}, + "alarmNo": "1810270957", + "alarmDate": "1769979404486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113712000522189", + "createdBy": null, + "createdTime": "2026-02-02 05:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:41", + "echoMap": {}, + "alarmNo": "1810270958", + "alarmDate": "1769979987942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456042", + "createdBy": null, + "createdTime": "2026-02-02 05:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:20", + "echoMap": {}, + "alarmNo": "1810270959", + "alarmDate": "1769980014114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456154", + "createdBy": null, + "createdTime": "2026-02-02 05:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:04", + "echoMap": {}, + "alarmNo": "1810270960", + "alarmDate": "1769980023262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456624", + "createdBy": null, + "createdTime": "2026-02-02 05:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:52", + "echoMap": {}, + "alarmNo": "1810270961", + "alarmDate": "1769980592264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456772", + "createdBy": null, + "createdTime": "2026-02-02 05:16:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:45", + "echoMap": {}, + "alarmNo": "1810270962", + "alarmDate": "1769980603617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113724885423156", + "createdBy": null, + "createdTime": "2026-02-02 05:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:49", + "echoMap": {}, + "alarmNo": "1810270963", + "alarmDate": "1769980608228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060035", + "deviceName": "[206](10)殷高东3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390588", + "createdBy": null, + "createdTime": "2026-02-02 05:17:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:24", + "echoMap": {}, + "alarmNo": "1810270964", + "alarmDate": "1769980625396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390595", + "createdBy": null, + "createdTime": "2026-02-02 05:17:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:59", + "echoMap": {}, + "alarmNo": "1810270965", + "alarmDate": "1769980625846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390790", + "createdBy": null, + "createdTime": "2026-02-02 05:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:40", + "echoMap": {}, + "alarmNo": "1810270966", + "alarmDate": "1769981171493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390942", + "createdBy": null, + "createdTime": "2026-02-02 05:26:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:31", + "echoMap": {}, + "alarmNo": "1810270967", + "alarmDate": "1769981185184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390967", + "createdBy": null, + "createdTime": "2026-02-02 05:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:28", + "echoMap": {}, + "alarmNo": "1810270968", + "alarmDate": "1769981187195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391069", + "createdBy": null, + "createdTime": "2026-02-02 05:26:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1810270969", + "alarmDate": "1769981196530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391150", + "createdBy": null, + "createdTime": "2026-02-02 05:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:04", + "echoMap": {}, + "alarmNo": "1810270970", + "alarmDate": "1769981204198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391242", + "createdBy": null, + "createdTime": "2026-02-02 05:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:04", + "echoMap": {}, + "alarmNo": "1810270971", + "alarmDate": "1769981211388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391248", + "createdBy": null, + "createdTime": "2026-02-02 05:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:07", + "echoMap": {}, + "alarmNo": "1810270972", + "alarmDate": "1769981211710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325000", + "createdBy": null, + "createdTime": "2026-02-02 05:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:34", + "echoMap": {}, + "alarmNo": "1810270973", + "alarmDate": "1769981228697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325171", + "createdBy": null, + "createdTime": "2026-02-02 05:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:23", + "echoMap": {}, + "alarmNo": "1810270974", + "alarmDate": "1769981772491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325280", + "createdBy": null, + "createdTime": "2026-02-02 05:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:22", + "echoMap": {}, + "alarmNo": "1810270975", + "alarmDate": "1769981780841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060035", + "deviceName": "[206](10)殷高东3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325402", + "createdBy": null, + "createdTime": "2026-02-02 05:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:38", + "echoMap": {}, + "alarmNo": "1810270976", + "alarmDate": "1769981790670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325434", + "createdBy": null, + "createdTime": "2026-02-02 05:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:34", + "echoMap": {}, + "alarmNo": "1810270977", + "alarmDate": "1769981792824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325557", + "createdBy": null, + "createdTime": "2026-02-02 05:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:44", + "echoMap": {}, + "alarmNo": "1810270978", + "alarmDate": "1769981803205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325599", + "createdBy": null, + "createdTime": "2026-02-02 05:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:53", + "echoMap": {}, + "alarmNo": "1810270979", + "alarmDate": "1769981806601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325607", + "createdBy": null, + "createdTime": "2026-02-02 05:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:07", + "echoMap": {}, + "alarmNo": "1810270980", + "alarmDate": "1769981807032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325897", + "createdBy": null, + "createdTime": "2026-02-02 05:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:46", + "echoMap": {}, + "alarmNo": "1810270981", + "alarmDate": "1769981830577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113742065292348", + "createdBy": null, + "createdTime": "2026-02-02 05:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:54", + "echoMap": {}, + "alarmNo": "1810270982", + "alarmDate": "1769982371245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360259687", + "createdBy": null, + "createdTime": "2026-02-02 05:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:39", + "echoMap": {}, + "alarmNo": "1810270983", + "alarmDate": "1769982380256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360259833", + "createdBy": null, + "createdTime": "2026-02-02 05:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:32", + "echoMap": {}, + "alarmNo": "1810270984", + "alarmDate": "1769982391303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360260101", + "createdBy": null, + "createdTime": "2026-02-02 05:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:19", + "echoMap": {}, + "alarmNo": "1810270985", + "alarmDate": "1769982412377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360260176", + "createdBy": null, + "createdTime": "2026-02-02 05:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:47:00", + "echoMap": {}, + "alarmNo": "1810270986", + "alarmDate": "1769982418844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360260274", + "createdBy": null, + "createdTime": "2026-02-02 05:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:21", + "echoMap": {}, + "alarmNo": "1810270987", + "alarmDate": "1769982427297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113750655226940", + "createdBy": null, + "createdTime": "2026-02-02 05:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:47", + "echoMap": {}, + "alarmNo": "1810270988", + "alarmDate": "1769982988526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194196", + "createdBy": null, + "createdTime": "2026-02-02 05:56:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:50", + "echoMap": {}, + "alarmNo": "1810270989", + "alarmDate": "1769982990844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194550", + "createdBy": null, + "createdTime": "2026-02-02 05:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:12", + "echoMap": {}, + "alarmNo": "1810270990", + "alarmDate": "1769983018580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194607", + "createdBy": null, + "createdTime": "2026-02-02 05:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:22", + "echoMap": {}, + "alarmNo": "1810270991", + "alarmDate": "1769983023199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194658", + "createdBy": null, + "createdTime": "2026-02-02 05:57:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:08", + "echoMap": {}, + "alarmNo": "1810270992", + "alarmDate": "1769983026926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195008", + "createdBy": null, + "createdTime": "2026-02-02 06:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:01", + "echoMap": {}, + "alarmNo": "1810270993", + "alarmDate": "1769983587212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195035", + "createdBy": null, + "createdTime": "2026-02-02 06:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:42", + "echoMap": {}, + "alarmNo": "1810270994", + "alarmDate": "1769983589444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195132", + "createdBy": null, + "createdTime": "2026-02-02 06:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:37", + "echoMap": {}, + "alarmNo": "1810270995", + "alarmDate": "1769983597010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195133", + "createdBy": null, + "createdTime": "2026-02-02 06:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:37", + "echoMap": {}, + "alarmNo": "1810270996", + "alarmDate": "1769983597012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195134", + "createdBy": null, + "createdTime": "2026-02-02 06:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:54", + "echoMap": {}, + "alarmNo": "1810270997", + "alarmDate": "1769983597013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129040", + "createdBy": null, + "createdTime": "2026-02-02 06:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:07", + "echoMap": {}, + "alarmNo": "1810270998", + "alarmDate": "1769983626863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129226", + "createdBy": null, + "createdTime": "2026-02-02 06:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:13", + "echoMap": {}, + "alarmNo": "1810270999", + "alarmDate": "1769984172079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129242", + "createdBy": null, + "createdTime": "2026-02-02 06:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:34", + "echoMap": {}, + "alarmNo": "1810271000", + "alarmDate": "1769984173308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129294", + "createdBy": null, + "createdTime": "2026-02-02 06:16:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:18", + "echoMap": {}, + "alarmNo": "1810271001", + "alarmDate": "1769984177415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129556", + "createdBy": null, + "createdTime": "2026-02-02 06:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:40", + "echoMap": {}, + "alarmNo": "1810271002", + "alarmDate": "1769984199478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129636", + "createdBy": null, + "createdTime": "2026-02-02 06:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:06", + "echoMap": {}, + "alarmNo": "1810271003", + "alarmDate": "1769984206470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113772130063669", + "createdBy": null, + "createdTime": "2026-02-02 06:26:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:38", + "echoMap": {}, + "alarmNo": "1810271004", + "alarmDate": "1769984777790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113772130064082", + "createdBy": null, + "createdTime": "2026-02-02 06:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:52", + "echoMap": {}, + "alarmNo": "1810271005", + "alarmDate": "1769984812153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113772130064083", + "createdBy": null, + "createdTime": "2026-02-02 06:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:13", + "echoMap": {}, + "alarmNo": "1810271006", + "alarmDate": "1769984812156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113776425030659", + "createdBy": null, + "createdTime": "2026-02-02 06:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:54", + "echoMap": {}, + "alarmNo": "1810271007", + "alarmDate": "1769984812430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113780719998244", + "createdBy": null, + "createdTime": "2026-02-02 06:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:31", + "echoMap": {}, + "alarmNo": "1810271008", + "alarmDate": "1769985371916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113780719998246", + "createdBy": null, + "createdTime": "2026-02-02 06:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:14", + "echoMap": {}, + "alarmNo": "1810271009", + "alarmDate": "1769985372067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113780719998369", + "createdBy": null, + "createdTime": "2026-02-02 06:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:41", + "echoMap": {}, + "alarmNo": "1810271010", + "alarmDate": "1769985382448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309932573", + "createdBy": null, + "createdTime": "2026-02-02 06:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:36", + "echoMap": {}, + "alarmNo": "1810271011", + "alarmDate": "1769985414270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309932611", + "createdBy": null, + "createdTime": "2026-02-02 06:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:58", + "echoMap": {}, + "alarmNo": "1810271012", + "alarmDate": "1769985417335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309932654", + "createdBy": null, + "createdTime": "2026-02-02 06:37:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:07", + "echoMap": {}, + "alarmNo": "1810271013", + "alarmDate": "1769985420904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309933038", + "createdBy": null, + "createdTime": "2026-02-02 06:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:57", + "echoMap": {}, + "alarmNo": "1810271014", + "alarmDate": "1769985984762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309933145", + "createdBy": null, + "createdTime": "2026-02-02 06:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:41", + "echoMap": {}, + "alarmNo": "1810271015", + "alarmDate": "1769985994218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309933295", + "createdBy": null, + "createdTime": "2026-02-02 06:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:01", + "echoMap": {}, + "alarmNo": "1810271016", + "alarmDate": "1769986008152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867506", + "createdBy": null, + "createdTime": "2026-02-02 06:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:40", + "echoMap": {}, + "alarmNo": "1810271018", + "alarmDate": "1769986579283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867753", + "createdBy": null, + "createdTime": "2026-02-02 06:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:43", + "echoMap": {}, + "alarmNo": "1810271019", + "alarmDate": "1769986601572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867874", + "createdBy": null, + "createdTime": "2026-02-02 06:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:28", + "echoMap": {}, + "alarmNo": "1810271020", + "alarmDate": "1769986612330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489801950", + "createdBy": null, + "createdTime": "2026-02-02 07:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:36", + "echoMap": {}, + "alarmNo": "1810271021", + "alarmDate": "1769987172450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802143", + "createdBy": null, + "createdTime": "2026-02-02 07:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:34", + "echoMap": {}, + "alarmNo": "1810271022", + "alarmDate": "1769987188307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802209", + "createdBy": null, + "createdTime": "2026-02-02 07:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:41", + "echoMap": {}, + "alarmNo": "1810271023", + "alarmDate": "1769987193663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802281", + "createdBy": null, + "createdTime": "2026-02-02 07:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:41", + "echoMap": {}, + "alarmNo": "1810271024", + "alarmDate": "1769987199673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802349", + "createdBy": null, + "createdTime": "2026-02-02 07:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:47", + "echoMap": {}, + "alarmNo": "1810271025", + "alarmDate": "1769987205516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736538", + "createdBy": null, + "createdTime": "2026-02-02 07:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:28", + "echoMap": {}, + "alarmNo": "1810271027", + "alarmDate": "1769987771733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736549", + "createdBy": null, + "createdTime": "2026-02-02 07:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:30", + "echoMap": {}, + "alarmNo": "1810271028", + "alarmDate": "1769987772233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736895", + "createdBy": null, + "createdTime": "2026-02-02 07:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:29", + "echoMap": {}, + "alarmNo": "1810271029", + "alarmDate": "1769987799887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079737029", + "createdBy": null, + "createdTime": "2026-02-02 07:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:02", + "echoMap": {}, + "alarmNo": "1810271030", + "alarmDate": "1769987810368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060034", + "deviceName": "[310](10)殷高东3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671133", + "createdBy": null, + "createdTime": "2026-02-02 07:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:11", + "echoMap": {}, + "alarmNo": "1810271031", + "alarmDate": "1769988371451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060034", + "deviceName": "[310](10)殷高东3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671332", + "createdBy": null, + "createdTime": "2026-02-02 07:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:27", + "echoMap": {}, + "alarmNo": "1810271032", + "alarmDate": "1769988386502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671359", + "createdBy": null, + "createdTime": "2026-02-02 07:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:34", + "echoMap": {}, + "alarmNo": "1810271033", + "alarmDate": "1769988388339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671513", + "createdBy": null, + "createdTime": "2026-02-02 07:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:47", + "echoMap": {}, + "alarmNo": "1810271034", + "alarmDate": "1769988401204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671519", + "createdBy": null, + "createdTime": "2026-02-02 07:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:46", + "echoMap": {}, + "alarmNo": "1810271035", + "alarmDate": "1769988401669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671579", + "createdBy": null, + "createdTime": "2026-02-02 07:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:05", + "echoMap": {}, + "alarmNo": "1810271036", + "alarmDate": "1769988406375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671649", + "createdBy": null, + "createdTime": "2026-02-02 07:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:57", + "echoMap": {}, + "alarmNo": "1810271037", + "alarmDate": "1769988411026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671680", + "createdBy": null, + "createdTime": "2026-02-02 07:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:00", + "echoMap": {}, + "alarmNo": "1810271038", + "alarmDate": "1769988413262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113827964638258", + "createdBy": null, + "createdTime": "2026-02-02 07:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:26", + "echoMap": {}, + "alarmNo": "1810271039", + "alarmDate": "1769988419198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259605781", + "createdBy": null, + "createdTime": "2026-02-02 07:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:30", + "echoMap": {}, + "alarmNo": "1810271040", + "alarmDate": "1769988971610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259605783", + "createdBy": null, + "createdTime": "2026-02-02 07:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:13", + "echoMap": {}, + "alarmNo": "1810271041", + "alarmDate": "1769988971660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259605797", + "createdBy": null, + "createdTime": "2026-02-02 07:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:18", + "echoMap": {}, + "alarmNo": "1810271042", + "alarmDate": "1769988972410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259606172", + "createdBy": null, + "createdTime": "2026-02-02 07:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:42", + "echoMap": {}, + "alarmNo": "1810271043", + "alarmDate": "1769989000769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259606182", + "createdBy": null, + "createdTime": "2026-02-02 07:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:42", + "echoMap": {}, + "alarmNo": "1810271044", + "alarmDate": "1769989001298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259606189", + "createdBy": null, + "createdTime": "2026-02-02 07:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:00", + "echoMap": {}, + "alarmNo": "1810271045", + "alarmDate": "1769989001666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113840849540134", + "createdBy": null, + "createdTime": "2026-02-02 07:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:11", + "echoMap": {}, + "alarmNo": "1810271046", + "alarmDate": "1769989017766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113840849540173", + "createdBy": null, + "createdTime": "2026-02-02 07:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:01", + "echoMap": {}, + "alarmNo": "1810271047", + "alarmDate": "1769989020468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113840849540481", + "createdBy": null, + "createdTime": "2026-02-02 07:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:16", + "echoMap": {}, + "alarmNo": "1810271048", + "alarmDate": "1769989574681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113849439474842", + "createdBy": null, + "createdTime": "2026-02-02 07:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:05", + "echoMap": {}, + "alarmNo": "1810271049", + "alarmDate": "1769989624288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113849439475104", + "createdBy": null, + "createdTime": "2026-02-02 07:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:16", + "echoMap": {}, + "alarmNo": "1810271050", + "alarmDate": "1769990175396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409444", + "createdBy": null, + "createdTime": "2026-02-02 07:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:11", + "echoMap": {}, + "alarmNo": "1810271051", + "alarmDate": "1769990224550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409646", + "createdBy": null, + "createdTime": "2026-02-02 08:06:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:20", + "echoMap": {}, + "alarmNo": "1810271052", + "alarmDate": "1769990770492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409814", + "createdBy": null, + "createdTime": "2026-02-02 08:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:26", + "echoMap": {}, + "alarmNo": "1810271053", + "alarmDate": "1769990784619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409935", + "createdBy": null, + "createdTime": "2026-02-02 08:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:35", + "echoMap": {}, + "alarmNo": "1810271054", + "alarmDate": "1769990794199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029410029", + "createdBy": null, + "createdTime": "2026-02-02 08:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:48", + "echoMap": {}, + "alarmNo": "1810271055", + "alarmDate": "1769990801907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344043", + "createdBy": null, + "createdTime": "2026-02-02 08:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:03", + "echoMap": {}, + "alarmNo": "1810271056", + "alarmDate": "1769990822398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344350", + "createdBy": null, + "createdTime": "2026-02-02 08:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:19", + "echoMap": {}, + "alarmNo": "1810271057", + "alarmDate": "1769991377559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344435", + "createdBy": null, + "createdTime": "2026-02-02 08:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:26", + "echoMap": {}, + "alarmNo": "1810271058", + "alarmDate": "1769991384709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060012", + "deviceName": "[205](10)殷高东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344527", + "createdBy": null, + "createdTime": "2026-02-02 08:16:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:51", + "echoMap": {}, + "alarmNo": "1810271059", + "alarmDate": "1769991392786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209278547", + "createdBy": null, + "createdTime": "2026-02-02 08:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:53", + "echoMap": {}, + "alarmNo": "1810271060", + "alarmDate": "1769991412029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209278662", + "createdBy": null, + "createdTime": "2026-02-02 08:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:15", + "echoMap": {}, + "alarmNo": "1810271061", + "alarmDate": "1769991422760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209278740", + "createdBy": null, + "createdTime": "2026-02-02 08:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:17", + "echoMap": {}, + "alarmNo": "1810271062", + "alarmDate": "1769991429706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209279132", + "createdBy": null, + "createdTime": "2026-02-02 08:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:46", + "echoMap": {}, + "alarmNo": "1810271063", + "alarmDate": "1769991993071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213135", + "createdBy": null, + "createdTime": "2026-02-02 08:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:08", + "echoMap": {}, + "alarmNo": "1810271064", + "alarmDate": "1769992008549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213273", + "createdBy": null, + "createdTime": "2026-02-02 08:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:26", + "echoMap": {}, + "alarmNo": "1810271065", + "alarmDate": "1769992019129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213291", + "createdBy": null, + "createdTime": "2026-02-02 08:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:01", + "echoMap": {}, + "alarmNo": "1810271066", + "alarmDate": "1769992020288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213604", + "createdBy": null, + "createdTime": "2026-02-02 08:36:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:16", + "echoMap": {}, + "alarmNo": "1810271067", + "alarmDate": "1769992575310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060012", + "deviceName": "[205](10)殷高东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213698", + "createdBy": null, + "createdTime": "2026-02-02 08:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:41", + "echoMap": {}, + "alarmNo": "1810271068", + "alarmDate": "1769992582812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113888094180374", + "createdBy": null, + "createdTime": "2026-02-02 08:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:31", + "echoMap": {}, + "alarmNo": "1810271069", + "alarmDate": "1769992590023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389147773", + "createdBy": null, + "createdTime": "2026-02-02 08:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:50", + "echoMap": {}, + "alarmNo": "1810271070", + "alarmDate": "1769992604351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148032", + "createdBy": null, + "createdTime": "2026-02-02 08:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:07", + "echoMap": {}, + "alarmNo": "1810271071", + "alarmDate": "1769992626300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148076", + "createdBy": null, + "createdTime": "2026-02-02 08:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:39", + "echoMap": {}, + "alarmNo": "1810271072", + "alarmDate": "1769992629959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148222", + "createdBy": null, + "createdTime": "2026-02-02 08:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:38", + "echoMap": {}, + "alarmNo": "1810271074", + "alarmDate": "1769993171378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148307", + "createdBy": null, + "createdTime": "2026-02-02 08:46:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:30", + "echoMap": {}, + "alarmNo": "1810271075", + "alarmDate": "1769993178204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113900979082361", + "createdBy": null, + "createdTime": "2026-02-02 08:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:42", + "echoMap": {}, + "alarmNo": "1810271076", + "alarmDate": "1769993200920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113900979082435", + "createdBy": null, + "createdTime": "2026-02-02 08:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:48", + "echoMap": {}, + "alarmNo": "1810271077", + "alarmDate": "1769993206786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060012", + "deviceName": "[205](10)殷高东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113900979082638", + "createdBy": null, + "createdTime": "2026-02-02 08:47:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:39", + "echoMap": {}, + "alarmNo": "1810271078", + "alarmDate": "1769993222520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017028", + "createdBy": null, + "createdTime": "2026-02-02 08:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:47", + "echoMap": {}, + "alarmNo": "1810271079", + "alarmDate": "1769993806069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017078", + "createdBy": null, + "createdTime": "2026-02-02 08:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:56", + "echoMap": {}, + "alarmNo": "1810271080", + "alarmDate": "1769993809721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017104", + "createdBy": null, + "createdTime": "2026-02-02 08:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:04", + "echoMap": {}, + "alarmNo": "1810271081", + "alarmDate": "1769993810822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017499", + "createdBy": null, + "createdTime": "2026-02-02 09:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:19", + "echoMap": {}, + "alarmNo": "1810271082", + "alarmDate": "1769994371985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113913863984157", + "createdBy": null, + "createdTime": "2026-02-02 09:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:41", + "echoMap": {}, + "alarmNo": "1810271083", + "alarmDate": "1769994388825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113913863984158", + "createdBy": null, + "createdTime": "2026-02-02 09:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:30", + "echoMap": {}, + "alarmNo": "1810271084", + "alarmDate": "1769994388867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113913863984190", + "createdBy": null, + "createdTime": "2026-02-02 09:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:07", + "echoMap": {}, + "alarmNo": "1810271085", + "alarmDate": "1769994390960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113918158952082", + "createdBy": null, + "createdTime": "2026-02-02 09:16:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:14", + "echoMap": {}, + "alarmNo": "1810271086", + "alarmDate": "1769994971215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113918158952250", + "createdBy": null, + "createdTime": "2026-02-02 09:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:27", + "echoMap": {}, + "alarmNo": "1810271087", + "alarmDate": "1769994985844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113918158952258", + "createdBy": null, + "createdTime": "2026-02-02 09:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:38", + "echoMap": {}, + "alarmNo": "1810271088", + "alarmDate": "1769994986278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113922453918722", + "createdBy": null, + "createdTime": "2026-02-02 09:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:41", + "echoMap": {}, + "alarmNo": "1810271089", + "alarmDate": "1769994989288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886220", + "createdBy": null, + "createdTime": "2026-02-02 09:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:18", + "echoMap": {}, + "alarmNo": "1810271090", + "alarmDate": "1769995010441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886249", + "createdBy": null, + "createdTime": "2026-02-02 09:16:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:06", + "echoMap": {}, + "alarmNo": "1810271091", + "alarmDate": "1769995012506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886609", + "createdBy": null, + "createdTime": "2026-02-02 09:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:14", + "echoMap": {}, + "alarmNo": "1810271092", + "alarmDate": "1769995570620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886680", + "createdBy": null, + "createdTime": "2026-02-02 09:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:29", + "echoMap": {}, + "alarmNo": "1810271093", + "alarmDate": "1769995576128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886727", + "createdBy": null, + "createdTime": "2026-02-02 09:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:27", + "echoMap": {}, + "alarmNo": "1810271094", + "alarmDate": "1769995579613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113931043853365", + "createdBy": null, + "createdTime": "2026-02-02 09:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:30", + "echoMap": {}, + "alarmNo": "1810271095", + "alarmDate": "1769995588857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338820787", + "createdBy": null, + "createdTime": "2026-02-02 09:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:03", + "echoMap": {}, + "alarmNo": "1810271096", + "alarmDate": "1769995604568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338820943", + "createdBy": null, + "createdTime": "2026-02-02 09:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:02", + "echoMap": {}, + "alarmNo": "1810271097", + "alarmDate": "1769995615753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338821087", + "createdBy": null, + "createdTime": "2026-02-02 09:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:08", + "echoMap": {}, + "alarmNo": "1810271098", + "alarmDate": "1769995626482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338821271", + "createdBy": null, + "createdTime": "2026-02-02 09:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:23", + "echoMap": {}, + "alarmNo": "1810271099", + "alarmDate": "1769996170919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338821368", + "createdBy": null, + "createdTime": "2026-02-02 09:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:20", + "echoMap": {}, + "alarmNo": "1810271100", + "alarmDate": "1769996178666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755286", + "createdBy": null, + "createdTime": "2026-02-02 09:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:47", + "echoMap": {}, + "alarmNo": "1810271101", + "alarmDate": "1769996195068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755455", + "createdBy": null, + "createdTime": "2026-02-02 09:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:01", + "echoMap": {}, + "alarmNo": "1810271102", + "alarmDate": "1769996208938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755588", + "createdBy": null, + "createdTime": "2026-02-02 09:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:11", + "echoMap": {}, + "alarmNo": "1810271103", + "alarmDate": "1769996219101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755647", + "createdBy": null, + "createdTime": "2026-02-02 09:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:04", + "echoMap": {}, + "alarmNo": "1810271104", + "alarmDate": "1769996223492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928756001", + "createdBy": null, + "createdTime": "2026-02-02 09:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:43", + "echoMap": {}, + "alarmNo": "1810271105", + "alarmDate": "1769996783331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690102", + "createdBy": null, + "createdTime": "2026-02-02 09:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:07", + "echoMap": {}, + "alarmNo": "1810271106", + "alarmDate": "1769996815354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690213", + "createdBy": null, + "createdTime": "2026-02-02 09:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:10", + "echoMap": {}, + "alarmNo": "1810271107", + "alarmDate": "1769996824439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690230", + "createdBy": null, + "createdTime": "2026-02-02 09:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:07", + "echoMap": {}, + "alarmNo": "1810271108", + "alarmDate": "1769996825507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690427", + "createdBy": null, + "createdTime": "2026-02-02 09:56:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:47", + "echoMap": {}, + "alarmNo": "1810271109", + "alarmDate": "1769997370498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690465", + "createdBy": null, + "createdTime": "2026-02-02 09:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:15", + "echoMap": {}, + "alarmNo": "1810271110", + "alarmDate": "1769997373692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690514", + "createdBy": null, + "createdTime": "2026-02-02 09:56:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:30", + "echoMap": {}, + "alarmNo": "1810271111", + "alarmDate": "1769997377247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113956813657113", + "createdBy": null, + "createdTime": "2026-02-02 09:56:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:30", + "echoMap": {}, + "alarmNo": "1810271112", + "alarmDate": "1769997382571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624431", + "createdBy": null, + "createdTime": "2026-02-02 09:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:25", + "echoMap": {}, + "alarmNo": "1810271113", + "alarmDate": "1769997389398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624551", + "createdBy": null, + "createdTime": "2026-02-02 09:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:26", + "echoMap": {}, + "alarmNo": "1810271114", + "alarmDate": "1769997399660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624614", + "createdBy": null, + "createdTime": "2026-02-02 09:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:45", + "echoMap": {}, + "alarmNo": "1810271115", + "alarmDate": "1769997404583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060055", + "deviceName": "[316](10)殷高东4#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624655", + "createdBy": null, + "createdTime": "2026-02-02 09:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:54", + "echoMap": {}, + "alarmNo": "1810271116", + "alarmDate": "1769997407627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624805", + "createdBy": null, + "createdTime": "2026-02-02 09:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:35", + "echoMap": {}, + "alarmNo": "1810271117", + "alarmDate": "1769997418679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624853", + "createdBy": null, + "createdTime": "2026-02-02 09:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:03", + "echoMap": {}, + "alarmNo": "1810271118", + "alarmDate": "1769997422250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108625105", + "createdBy": null, + "createdTime": "2026-02-02 10:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:21", + "echoMap": {}, + "alarmNo": "1810271119", + "alarmDate": "1769997972023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108625116", + "createdBy": null, + "createdTime": "2026-02-02 10:06:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:13", + "echoMap": {}, + "alarmNo": "1810271120", + "alarmDate": "1769997972566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113969698559118", + "createdBy": null, + "createdTime": "2026-02-02 10:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:39", + "echoMap": {}, + "alarmNo": "1810271121", + "alarmDate": "1769997992934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113969698559311", + "createdBy": null, + "createdTime": "2026-02-02 10:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:49", + "echoMap": {}, + "alarmNo": "1810271122", + "alarmDate": "1769998008316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113973993526319", + "createdBy": null, + "createdTime": "2026-02-02 10:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:30", + "echoMap": {}, + "alarmNo": "1810271123", + "alarmDate": "1769998578211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288493860", + "createdBy": null, + "createdTime": "2026-02-02 10:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:55", + "echoMap": {}, + "alarmNo": "1810271124", + "alarmDate": "1769998603324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288493928", + "createdBy": null, + "createdTime": "2026-02-02 10:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:49", + "echoMap": {}, + "alarmNo": "1810271125", + "alarmDate": "1769998608306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288494075", + "createdBy": null, + "createdTime": "2026-02-02 10:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:13", + "echoMap": {}, + "alarmNo": "1810271126", + "alarmDate": "1769998618893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288494085", + "createdBy": null, + "createdTime": "2026-02-02 10:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:05", + "echoMap": {}, + "alarmNo": "1810271127", + "alarmDate": "1769998619401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288494211", + "createdBy": null, + "createdTime": "2026-02-02 10:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:03", + "echoMap": {}, + "alarmNo": "1810271128", + "alarmDate": "1769998628425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113986878428571", + "createdBy": null, + "createdTime": "2026-02-02 10:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:53", + "echoMap": {}, + "alarmNo": "1810271129", + "alarmDate": "1769999211999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113995468362887", + "createdBy": null, + "createdTime": "2026-02-02 10:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:35", + "echoMap": {}, + "alarmNo": "1810271130", + "alarmDate": "1769999794192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113995468363451", + "createdBy": null, + "createdTime": "2026-02-02 10:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:54", + "echoMap": {}, + "alarmNo": "1810271131", + "alarmDate": "1770000369985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060004", + "deviceName": "[612](10)殷高东内通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058297361", + "createdBy": null, + "createdTime": "2026-02-02 10:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:31", + "echoMap": {}, + "alarmNo": "1810271132", + "alarmDate": "1770000390086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058297533", + "createdBy": null, + "createdTime": "2026-02-02 10:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:56", + "echoMap": {}, + "alarmNo": "1810271133", + "alarmDate": "1770000404236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058297846", + "createdBy": null, + "createdTime": "2026-02-02 10:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:45", + "echoMap": {}, + "alarmNo": "1810271134", + "alarmDate": "1770000428233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058298015", + "createdBy": null, + "createdTime": "2026-02-02 10:56:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:25", + "echoMap": {}, + "alarmNo": "1810271135", + "alarmDate": "1770000971693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232076", + "createdBy": null, + "createdTime": "2026-02-02 10:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:46", + "echoMap": {}, + "alarmNo": "1810271136", + "alarmDate": "1770000998566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232123", + "createdBy": null, + "createdTime": "2026-02-02 10:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:43", + "echoMap": {}, + "alarmNo": "1810271137", + "alarmDate": "1770001001897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232304", + "createdBy": null, + "createdTime": "2026-02-02 10:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:34", + "echoMap": {}, + "alarmNo": "1810271138", + "alarmDate": "1770001016533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232319", + "createdBy": null, + "createdTime": "2026-02-02 10:56:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:46", + "echoMap": {}, + "alarmNo": "1810271139", + "alarmDate": "1770001017564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232483", + "createdBy": null, + "createdTime": "2026-02-02 10:57:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:21", + "echoMap": {}, + "alarmNo": "1810271140", + "alarmDate": "1770001030817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232754", + "createdBy": null, + "createdTime": "2026-02-02 11:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:36", + "echoMap": {}, + "alarmNo": "1810271141", + "alarmDate": "1770001582055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114021238167004", + "createdBy": null, + "createdTime": "2026-02-02 11:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:09", + "echoMap": {}, + "alarmNo": "1810271142", + "alarmDate": "1770001627675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114021238167253", + "createdBy": null, + "createdTime": "2026-02-02 11:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:19", + "echoMap": {}, + "alarmNo": "1810271143", + "alarmDate": "1770002177994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418035983", + "createdBy": null, + "createdTime": "2026-02-02 11:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:57", + "echoMap": {}, + "alarmNo": "1810271144", + "alarmDate": "1770002809612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418036030", + "createdBy": null, + "createdTime": "2026-02-02 11:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:54", + "echoMap": {}, + "alarmNo": "1810271145", + "alarmDate": "1770002812717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418036390", + "createdBy": null, + "createdTime": "2026-02-02 11:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:14", + "echoMap": {}, + "alarmNo": "1810271146", + "alarmDate": "1770003371640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418036401", + "createdBy": null, + "createdTime": "2026-02-02 11:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:14", + "echoMap": {}, + "alarmNo": "1810271147", + "alarmDate": "1770003372162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114047007970567", + "createdBy": null, + "createdTime": "2026-02-02 11:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:52", + "echoMap": {}, + "alarmNo": "1810271148", + "alarmDate": "1770003410940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114047007970609", + "createdBy": null, + "createdTime": "2026-02-02 11:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:55", + "echoMap": {}, + "alarmNo": "1810271149", + "alarmDate": "1770003414487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114047007970653", + "createdBy": null, + "createdTime": "2026-02-02 11:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:46", + "echoMap": {}, + "alarmNo": "1810271150", + "alarmDate": "1770003418032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114055597905074", + "createdBy": null, + "createdTime": "2026-02-02 11:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:54", + "echoMap": {}, + "alarmNo": "1810271151", + "alarmDate": "1770004006499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114055597905189", + "createdBy": null, + "createdTime": "2026-02-02 11:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:38", + "echoMap": {}, + "alarmNo": "1810271152", + "alarmDate": "1770004014528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114055597905607", + "createdBy": null, + "createdTime": "2026-02-02 11:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:24", + "echoMap": {}, + "alarmNo": "1810271153", + "alarmDate": "1770004577566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114064187839565", + "createdBy": null, + "createdTime": "2026-02-02 11:56:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:42", + "echoMap": {}, + "alarmNo": "1810271154", + "alarmDate": "1770004600594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114064187839640", + "createdBy": null, + "createdTime": "2026-02-02 11:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:47", + "echoMap": {}, + "alarmNo": "1810271155", + "alarmDate": "1770004607184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114072777774111", + "createdBy": null, + "createdTime": "2026-02-02 12:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:38", + "echoMap": {}, + "alarmNo": "1810271156", + "alarmDate": "1770005197251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114072777774180", + "createdBy": null, + "createdTime": "2026-02-02 12:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:44", + "echoMap": {}, + "alarmNo": "1810271157", + "alarmDate": "1770005202747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709023", + "createdBy": null, + "createdTime": "2026-02-02 12:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:04", + "echoMap": {}, + "alarmNo": "1810271158", + "alarmDate": "1770005824018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709253", + "createdBy": null, + "createdTime": "2026-02-02 12:26:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:54", + "echoMap": {}, + "alarmNo": "1810271159", + "alarmDate": "1770006372624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709294", + "createdBy": null, + "createdTime": "2026-02-02 12:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:34", + "echoMap": {}, + "alarmNo": "1810271160", + "alarmDate": "1770006375555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709418", + "createdBy": null, + "createdTime": "2026-02-02 12:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:25", + "echoMap": {}, + "alarmNo": "1810271161", + "alarmDate": "1770006384348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114085662676005", + "createdBy": null, + "createdTime": "2026-02-02 12:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:38", + "echoMap": {}, + "alarmNo": "1810271162", + "alarmDate": "1770006390895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643480", + "createdBy": null, + "createdTime": "2026-02-02 12:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:07", + "echoMap": {}, + "alarmNo": "1810271163", + "alarmDate": "1770006409717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643583", + "createdBy": null, + "createdTime": "2026-02-02 12:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:03", + "echoMap": {}, + "alarmNo": "1810271164", + "alarmDate": "1770006416910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643622", + "createdBy": null, + "createdTime": "2026-02-02 12:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:07", + "echoMap": {}, + "alarmNo": "1810271165", + "alarmDate": "1770006419617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643773", + "createdBy": null, + "createdTime": "2026-02-02 12:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:21", + "echoMap": {}, + "alarmNo": "1810271166", + "alarmDate": "1770006431831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643903", + "createdBy": null, + "createdTime": "2026-02-02 12:36:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:18", + "echoMap": {}, + "alarmNo": "1810271167", + "alarmDate": "1770006970081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643926", + "createdBy": null, + "createdTime": "2026-02-02 12:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:08", + "echoMap": {}, + "alarmNo": "1810271168", + "alarmDate": "1770006972059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547577858", + "createdBy": null, + "createdTime": "2026-02-02 12:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:18", + "echoMap": {}, + "alarmNo": "1810271169", + "alarmDate": "1770006990057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547577893", + "createdBy": null, + "createdTime": "2026-02-02 12:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:34", + "echoMap": {}, + "alarmNo": "1810271170", + "alarmDate": "1770006992559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547578267", + "createdBy": null, + "createdTime": "2026-02-02 12:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:35", + "echoMap": {}, + "alarmNo": "1810271171", + "alarmDate": "1770007019459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547578559", + "createdBy": null, + "createdTime": "2026-02-02 12:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:33", + "echoMap": {}, + "alarmNo": "1810271172", + "alarmDate": "1770007572198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547578560", + "createdBy": null, + "createdTime": "2026-02-02 12:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:17", + "echoMap": {}, + "alarmNo": "1810271173", + "alarmDate": "1770007572240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512498", + "createdBy": null, + "createdTime": "2026-02-02 12:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:35", + "echoMap": {}, + "alarmNo": "1810271174", + "alarmDate": "1770007589299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512840", + "createdBy": null, + "createdTime": "2026-02-02 12:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:18", + "echoMap": {}, + "alarmNo": "1810271175", + "alarmDate": "1770007613369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512889", + "createdBy": null, + "createdTime": "2026-02-02 12:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:26", + "echoMap": {}, + "alarmNo": "1810271176", + "alarmDate": "1770007616470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512914", + "createdBy": null, + "createdTime": "2026-02-02 12:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:59", + "echoMap": {}, + "alarmNo": "1810271177", + "alarmDate": "1770007618127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447438", + "createdBy": null, + "createdTime": "2026-02-02 12:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:51", + "echoMap": {}, + "alarmNo": "1810271178", + "alarmDate": "1770008204658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447596", + "createdBy": null, + "createdTime": "2026-02-02 12:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:56", + "echoMap": {}, + "alarmNo": "1810271179", + "alarmDate": "1770008214699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447691", + "createdBy": null, + "createdTime": "2026-02-02 12:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:08", + "echoMap": {}, + "alarmNo": "1810271180", + "alarmDate": "1770008221758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447742", + "createdBy": null, + "createdTime": "2026-02-02 12:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:05", + "echoMap": {}, + "alarmNo": "1810271181", + "alarmDate": "1770008225493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060004", + "deviceName": "[612](10)殷高东内通道2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114124317381790", + "createdBy": null, + "createdTime": "2026-02-02 13:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:27", + "echoMap": {}, + "alarmNo": "1810271182", + "alarmDate": "1770008780919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114124317381794", + "createdBy": null, + "createdTime": "2026-02-02 13:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:22", + "echoMap": {}, + "alarmNo": "1810271183", + "alarmDate": "1770008781227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114132907316647", + "createdBy": null, + "createdTime": "2026-02-02 13:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:44", + "echoMap": {}, + "alarmNo": "1810271184", + "alarmDate": "1770009402953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114132907316736", + "createdBy": null, + "createdTime": "2026-02-02 13:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:03", + "echoMap": {}, + "alarmNo": "1810271185", + "alarmDate": "1770009409615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114141497251210", + "createdBy": null, + "createdTime": "2026-02-02 13:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:43", + "echoMap": {}, + "alarmNo": "1810271186", + "alarmDate": "1770010001502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114141497251442", + "createdBy": null, + "createdTime": "2026-02-02 13:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:01", + "echoMap": {}, + "alarmNo": "1810271187", + "alarmDate": "1770010019855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185449", + "createdBy": null, + "createdTime": "2026-02-02 13:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:07", + "echoMap": {}, + "alarmNo": "1810271188", + "alarmDate": "1770010571767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185457", + "createdBy": null, + "createdTime": "2026-02-02 13:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:13", + "echoMap": {}, + "alarmNo": "1810271189", + "alarmDate": "1770010572072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185459", + "createdBy": null, + "createdTime": "2026-02-02 13:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:13", + "echoMap": {}, + "alarmNo": "1810271190", + "alarmDate": "1770010572226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185648", + "createdBy": null, + "createdTime": "2026-02-02 13:36:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:38", + "echoMap": {}, + "alarmNo": "1810271191", + "alarmDate": "1770010586445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185840", + "createdBy": null, + "createdTime": "2026-02-02 13:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:51", + "echoMap": {}, + "alarmNo": "1810271192", + "alarmDate": "1770010599314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114154382152721", + "createdBy": null, + "createdTime": "2026-02-02 13:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:48", + "echoMap": {}, + "alarmNo": "1810271193", + "alarmDate": "1770010624309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114158677120012", + "createdBy": null, + "createdTime": "2026-02-02 13:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:09", + "echoMap": {}, + "alarmNo": "1810271194", + "alarmDate": "1770010628558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114158677120354", + "createdBy": null, + "createdTime": "2026-02-02 13:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:27", + "echoMap": {}, + "alarmNo": "1810271195", + "alarmDate": "1770011185784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267054955", + "createdBy": null, + "createdTime": "2026-02-02 13:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:26", + "echoMap": {}, + "alarmNo": "1810271196", + "alarmDate": "1770011785148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055185", + "createdBy": null, + "createdTime": "2026-02-02 13:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:46", + "echoMap": {}, + "alarmNo": "1810271197", + "alarmDate": "1770011805796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055205", + "createdBy": null, + "createdTime": "2026-02-02 13:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:47", + "echoMap": {}, + "alarmNo": "1810271198", + "alarmDate": "1770011807465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055238", + "createdBy": null, + "createdTime": "2026-02-02 13:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:51", + "echoMap": {}, + "alarmNo": "1810271199", + "alarmDate": "1770011809718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055379", + "createdBy": null, + "createdTime": "2026-02-02 13:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:18", + "echoMap": {}, + "alarmNo": "1810271200", + "alarmDate": "1770011820554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114175856989915", + "createdBy": null, + "createdTime": "2026-02-02 14:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:04", + "echoMap": {}, + "alarmNo": "1810271201", + "alarmDate": "1770012422497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114184446923809", + "createdBy": null, + "createdTime": "2026-02-02 14:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:14", + "echoMap": {}, + "alarmNo": "1810271202", + "alarmDate": "1770012972720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114184446924411", + "createdBy": null, + "createdTime": "2026-02-02 14:17:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:01", + "echoMap": {}, + "alarmNo": "1810271203", + "alarmDate": "1770013020705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114184446924431", + "createdBy": null, + "createdTime": "2026-02-02 14:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:03", + "echoMap": {}, + "alarmNo": "1810271204", + "alarmDate": "1770013021878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114193036858578", + "createdBy": null, + "createdTime": "2026-02-02 14:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:51", + "echoMap": {}, + "alarmNo": "1810271205", + "alarmDate": "1770013593838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114193036858700", + "createdBy": null, + "createdTime": "2026-02-02 14:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:44", + "echoMap": {}, + "alarmNo": "1810271206", + "alarmDate": "1770013602373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114193036859002", + "createdBy": null, + "createdTime": "2026-02-02 14:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:04", + "echoMap": {}, + "alarmNo": "1810271207", + "alarmDate": "1770013624030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114201626793492", + "createdBy": null, + "createdTime": "2026-02-02 14:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:01", + "echoMap": {}, + "alarmNo": "1810271208", + "alarmDate": "1770014220418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113626101175427", + "createdBy": null, + "createdTime": "2026-02-02 03:15:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:46", + "echoMap": {}, + "alarmNo": "1810270902", + "alarmDate": "1769973346877", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030002", + "deviceName": "安防箱2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113797899867399", + "createdBy": null, + "createdTime": "2026-02-02 06:55:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:46", + "echoMap": {}, + "alarmNo": "1810271017", + "alarmDate": "1769986545437", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030002", + "deviceName": "安防箱2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113815079736506", + "createdBy": null, + "createdTime": "2026-02-02 07:15:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:47", + "echoMap": {}, + "alarmNo": "1810271026", + "alarmDate": "1769987747133", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030005", + "deviceName": "安防箱5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113892389148122", + "createdBy": null, + "createdTime": "2026-02-02 08:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:46", + "echoMap": {}, + "alarmNo": "1810271073", + "alarmDate": "1769992845637", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030002", + "deviceName": "安防箱2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723114201626793492", + "createdBy": null, + "createdTime": "2026-02-02 14:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:01", + "echoMap": {}, + "alarmNo": "1810271208", + "alarmDate": "1770014220418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114193036859002", + "createdBy": null, + "createdTime": "2026-02-02 14:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:27:04", + "echoMap": {}, + "alarmNo": "1810271207", + "alarmDate": "1770013624030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114193036858700", + "createdBy": null, + "createdTime": "2026-02-02 14:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:44", + "echoMap": {}, + "alarmNo": "1810271206", + "alarmDate": "1770013602373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114193036858578", + "createdBy": null, + "createdTime": "2026-02-02 14:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:51", + "echoMap": {}, + "alarmNo": "1810271205", + "alarmDate": "1770013593838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114184446924431", + "createdBy": null, + "createdTime": "2026-02-02 14:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:03", + "echoMap": {}, + "alarmNo": "1810271204", + "alarmDate": "1770013021878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114184446924411", + "createdBy": null, + "createdTime": "2026-02-02 14:17:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:01", + "echoMap": {}, + "alarmNo": "1810271203", + "alarmDate": "1770013020705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114184446923809", + "createdBy": null, + "createdTime": "2026-02-02 14:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:14", + "echoMap": {}, + "alarmNo": "1810271202", + "alarmDate": "1770012972720", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114175856989915", + "createdBy": null, + "createdTime": "2026-02-02 14:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:04", + "echoMap": {}, + "alarmNo": "1810271201", + "alarmDate": "1770012422497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055379", + "createdBy": null, + "createdTime": "2026-02-02 13:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:18", + "echoMap": {}, + "alarmNo": "1810271200", + "alarmDate": "1770011820554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055238", + "createdBy": null, + "createdTime": "2026-02-02 13:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:51", + "echoMap": {}, + "alarmNo": "1810271199", + "alarmDate": "1770011809718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055205", + "createdBy": null, + "createdTime": "2026-02-02 13:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:47", + "echoMap": {}, + "alarmNo": "1810271198", + "alarmDate": "1770011807465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267055185", + "createdBy": null, + "createdTime": "2026-02-02 13:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:46", + "echoMap": {}, + "alarmNo": "1810271197", + "alarmDate": "1770011805796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114167267054955", + "createdBy": null, + "createdTime": "2026-02-02 13:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:26", + "echoMap": {}, + "alarmNo": "1810271196", + "alarmDate": "1770011785148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114158677120354", + "createdBy": null, + "createdTime": "2026-02-02 13:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:27", + "echoMap": {}, + "alarmNo": "1810271195", + "alarmDate": "1770011185784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114158677120012", + "createdBy": null, + "createdTime": "2026-02-02 13:37:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:37:09", + "echoMap": {}, + "alarmNo": "1810271194", + "alarmDate": "1770010628558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114154382152721", + "createdBy": null, + "createdTime": "2026-02-02 13:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:48", + "echoMap": {}, + "alarmNo": "1810271193", + "alarmDate": "1770010624309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185840", + "createdBy": null, + "createdTime": "2026-02-02 13:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:51", + "echoMap": {}, + "alarmNo": "1810271192", + "alarmDate": "1770010599314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185648", + "createdBy": null, + "createdTime": "2026-02-02 13:36:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:38", + "echoMap": {}, + "alarmNo": "1810271191", + "alarmDate": "1770010586445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185459", + "createdBy": null, + "createdTime": "2026-02-02 13:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:13", + "echoMap": {}, + "alarmNo": "1810271190", + "alarmDate": "1770010572226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185457", + "createdBy": null, + "createdTime": "2026-02-02 13:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:13", + "echoMap": {}, + "alarmNo": "1810271189", + "alarmDate": "1770010572072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114150087185449", + "createdBy": null, + "createdTime": "2026-02-02 13:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:17:07", + "echoMap": {}, + "alarmNo": "1810271188", + "alarmDate": "1770010571767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114141497251442", + "createdBy": null, + "createdTime": "2026-02-02 13:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:27:01", + "echoMap": {}, + "alarmNo": "1810271187", + "alarmDate": "1770010019855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114141497251210", + "createdBy": null, + "createdTime": "2026-02-02 13:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:43", + "echoMap": {}, + "alarmNo": "1810271186", + "alarmDate": "1770010001502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114132907316736", + "createdBy": null, + "createdTime": "2026-02-02 13:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:17:03", + "echoMap": {}, + "alarmNo": "1810271185", + "alarmDate": "1770009409615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114132907316647", + "createdBy": null, + "createdTime": "2026-02-02 13:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:44", + "echoMap": {}, + "alarmNo": "1810271184", + "alarmDate": "1770009402953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114124317381794", + "createdBy": null, + "createdTime": "2026-02-02 13:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:22", + "echoMap": {}, + "alarmNo": "1810271183", + "alarmDate": "1770008781227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114124317381790", + "createdBy": null, + "createdTime": "2026-02-02 13:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:27", + "echoMap": {}, + "alarmNo": "1810271182", + "alarmDate": "1770008780919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447742", + "createdBy": null, + "createdTime": "2026-02-02 12:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:05", + "echoMap": {}, + "alarmNo": "1810271181", + "alarmDate": "1770008225493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060004", + "deviceName": "[612](10)殷高东内通道2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447691", + "createdBy": null, + "createdTime": "2026-02-02 12:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:08", + "echoMap": {}, + "alarmNo": "1810271180", + "alarmDate": "1770008221758", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447596", + "createdBy": null, + "createdTime": "2026-02-02 12:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:56", + "echoMap": {}, + "alarmNo": "1810271179", + "alarmDate": "1770008214699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114115727447438", + "createdBy": null, + "createdTime": "2026-02-02 12:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:51", + "echoMap": {}, + "alarmNo": "1810271178", + "alarmDate": "1770008204658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512914", + "createdBy": null, + "createdTime": "2026-02-02 12:46:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:59", + "echoMap": {}, + "alarmNo": "1810271177", + "alarmDate": "1770007618127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512889", + "createdBy": null, + "createdTime": "2026-02-02 12:46:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:26", + "echoMap": {}, + "alarmNo": "1810271176", + "alarmDate": "1770007616470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060040", + "deviceName": "[318](10)殷高东4#口楼梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512840", + "createdBy": null, + "createdTime": "2026-02-02 12:46:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:18", + "echoMap": {}, + "alarmNo": "1810271175", + "alarmDate": "1770007613369", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114107137512498", + "createdBy": null, + "createdTime": "2026-02-02 12:46:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:35", + "echoMap": {}, + "alarmNo": "1810271174", + "alarmDate": "1770007589299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547578560", + "createdBy": null, + "createdTime": "2026-02-02 12:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:17", + "echoMap": {}, + "alarmNo": "1810271173", + "alarmDate": "1770007572240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547578559", + "createdBy": null, + "createdTime": "2026-02-02 12:46:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:33", + "echoMap": {}, + "alarmNo": "1810271172", + "alarmDate": "1770007572198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547578267", + "createdBy": null, + "createdTime": "2026-02-02 12:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:35", + "echoMap": {}, + "alarmNo": "1810271171", + "alarmDate": "1770007019459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547577893", + "createdBy": null, + "createdTime": "2026-02-02 12:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:34", + "echoMap": {}, + "alarmNo": "1810271170", + "alarmDate": "1770006992559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114098547577858", + "createdBy": null, + "createdTime": "2026-02-02 12:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:18", + "echoMap": {}, + "alarmNo": "1810271169", + "alarmDate": "1770006990057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643926", + "createdBy": null, + "createdTime": "2026-02-02 12:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:08", + "echoMap": {}, + "alarmNo": "1810271168", + "alarmDate": "1770006972059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643903", + "createdBy": null, + "createdTime": "2026-02-02 12:36:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:18", + "echoMap": {}, + "alarmNo": "1810271167", + "alarmDate": "1770006970081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643773", + "createdBy": null, + "createdTime": "2026-02-02 12:27:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:21", + "echoMap": {}, + "alarmNo": "1810271166", + "alarmDate": "1770006431831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643622", + "createdBy": null, + "createdTime": "2026-02-02 12:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:07", + "echoMap": {}, + "alarmNo": "1810271165", + "alarmDate": "1770006419617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643583", + "createdBy": null, + "createdTime": "2026-02-02 12:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:03", + "echoMap": {}, + "alarmNo": "1810271164", + "alarmDate": "1770006416910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114089957643480", + "createdBy": null, + "createdTime": "2026-02-02 12:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:07", + "echoMap": {}, + "alarmNo": "1810271163", + "alarmDate": "1770006409717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114085662676005", + "createdBy": null, + "createdTime": "2026-02-02 12:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:38", + "echoMap": {}, + "alarmNo": "1810271162", + "alarmDate": "1770006390895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709418", + "createdBy": null, + "createdTime": "2026-02-02 12:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:25", + "echoMap": {}, + "alarmNo": "1810271161", + "alarmDate": "1770006384348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709294", + "createdBy": null, + "createdTime": "2026-02-02 12:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:34", + "echoMap": {}, + "alarmNo": "1810271160", + "alarmDate": "1770006375555", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709253", + "createdBy": null, + "createdTime": "2026-02-02 12:26:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:54", + "echoMap": {}, + "alarmNo": "1810271159", + "alarmDate": "1770006372624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114081367709023", + "createdBy": null, + "createdTime": "2026-02-02 12:17:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:04", + "echoMap": {}, + "alarmNo": "1810271158", + "alarmDate": "1770005824018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114072777774180", + "createdBy": null, + "createdTime": "2026-02-02 12:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:44", + "echoMap": {}, + "alarmNo": "1810271157", + "alarmDate": "1770005202747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114072777774111", + "createdBy": null, + "createdTime": "2026-02-02 12:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:38", + "echoMap": {}, + "alarmNo": "1810271156", + "alarmDate": "1770005197251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114064187839640", + "createdBy": null, + "createdTime": "2026-02-02 11:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:47", + "echoMap": {}, + "alarmNo": "1810271155", + "alarmDate": "1770004607184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114064187839565", + "createdBy": null, + "createdTime": "2026-02-02 11:56:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:42", + "echoMap": {}, + "alarmNo": "1810271154", + "alarmDate": "1770004600594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114055597905607", + "createdBy": null, + "createdTime": "2026-02-02 11:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:24", + "echoMap": {}, + "alarmNo": "1810271153", + "alarmDate": "1770004577566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114055597905189", + "createdBy": null, + "createdTime": "2026-02-02 11:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:26:38", + "echoMap": {}, + "alarmNo": "1810271152", + "alarmDate": "1770004014528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114055597905074", + "createdBy": null, + "createdTime": "2026-02-02 11:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:54", + "echoMap": {}, + "alarmNo": "1810271151", + "alarmDate": "1770004006499", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114047007970653", + "createdBy": null, + "createdTime": "2026-02-02 11:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:46", + "echoMap": {}, + "alarmNo": "1810271150", + "alarmDate": "1770003418032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114047007970609", + "createdBy": null, + "createdTime": "2026-02-02 11:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:55", + "echoMap": {}, + "alarmNo": "1810271149", + "alarmDate": "1770003414487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114047007970567", + "createdBy": null, + "createdTime": "2026-02-02 11:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:52", + "echoMap": {}, + "alarmNo": "1810271148", + "alarmDate": "1770003410940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418036401", + "createdBy": null, + "createdTime": "2026-02-02 11:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:14", + "echoMap": {}, + "alarmNo": "1810271147", + "alarmDate": "1770003372162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418036390", + "createdBy": null, + "createdTime": "2026-02-02 11:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:14", + "echoMap": {}, + "alarmNo": "1810271146", + "alarmDate": "1770003371640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418036030", + "createdBy": null, + "createdTime": "2026-02-02 11:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:54", + "echoMap": {}, + "alarmNo": "1810271145", + "alarmDate": "1770002812717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114038418035983", + "createdBy": null, + "createdTime": "2026-02-02 11:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:57", + "echoMap": {}, + "alarmNo": "1810271144", + "alarmDate": "1770002809612", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114021238167253", + "createdBy": null, + "createdTime": "2026-02-02 11:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:19", + "echoMap": {}, + "alarmNo": "1810271143", + "alarmDate": "1770002177994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114021238167004", + "createdBy": null, + "createdTime": "2026-02-02 11:07:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:09", + "echoMap": {}, + "alarmNo": "1810271142", + "alarmDate": "1770001627675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232754", + "createdBy": null, + "createdTime": "2026-02-02 11:06:22", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:36", + "echoMap": {}, + "alarmNo": "1810271141", + "alarmDate": "1770001582055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232483", + "createdBy": null, + "createdTime": "2026-02-02 10:57:11", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:21", + "echoMap": {}, + "alarmNo": "1810271140", + "alarmDate": "1770001030817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232319", + "createdBy": null, + "createdTime": "2026-02-02 10:56:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:46", + "echoMap": {}, + "alarmNo": "1810271139", + "alarmDate": "1770001017564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232304", + "createdBy": null, + "createdTime": "2026-02-02 10:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:34", + "echoMap": {}, + "alarmNo": "1810271138", + "alarmDate": "1770001016533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232123", + "createdBy": null, + "createdTime": "2026-02-02 10:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:43", + "echoMap": {}, + "alarmNo": "1810271137", + "alarmDate": "1770001001897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114012648232076", + "createdBy": null, + "createdTime": "2026-02-02 10:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:46", + "echoMap": {}, + "alarmNo": "1810271136", + "alarmDate": "1770000998566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058298015", + "createdBy": null, + "createdTime": "2026-02-02 10:56:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:25", + "echoMap": {}, + "alarmNo": "1810271135", + "alarmDate": "1770000971693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058297846", + "createdBy": null, + "createdTime": "2026-02-02 10:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:45", + "echoMap": {}, + "alarmNo": "1810271134", + "alarmDate": "1770000428233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058297533", + "createdBy": null, + "createdTime": "2026-02-02 10:46:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:56", + "echoMap": {}, + "alarmNo": "1810271133", + "alarmDate": "1770000404236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723114004058297361", + "createdBy": null, + "createdTime": "2026-02-02 10:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:31", + "echoMap": {}, + "alarmNo": "1810271132", + "alarmDate": "1770000390086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113995468363451", + "createdBy": null, + "createdTime": "2026-02-02 10:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:54", + "echoMap": {}, + "alarmNo": "1810271131", + "alarmDate": "1770000369985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060004", + "deviceName": "[612](10)殷高东内通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113995468362887", + "createdBy": null, + "createdTime": "2026-02-02 10:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:35", + "echoMap": {}, + "alarmNo": "1810271130", + "alarmDate": "1769999794192", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113986878428571", + "createdBy": null, + "createdTime": "2026-02-02 10:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:53", + "echoMap": {}, + "alarmNo": "1810271129", + "alarmDate": "1769999211999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288494211", + "createdBy": null, + "createdTime": "2026-02-02 10:17:08", + "updatedBy": null, + "updatedTime": "2026-02-02 11:07:03", + "echoMap": {}, + "alarmNo": "1810271128", + "alarmDate": "1769998628425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288494085", + "createdBy": null, + "createdTime": "2026-02-02 10:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:17:05", + "echoMap": {}, + "alarmNo": "1810271127", + "alarmDate": "1769998619401", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288494075", + "createdBy": null, + "createdTime": "2026-02-02 10:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:13", + "echoMap": {}, + "alarmNo": "1810271126", + "alarmDate": "1769998618893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288493928", + "createdBy": null, + "createdTime": "2026-02-02 10:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:49", + "echoMap": {}, + "alarmNo": "1810271125", + "alarmDate": "1769998608306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113978288493860", + "createdBy": null, + "createdTime": "2026-02-02 10:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:55", + "echoMap": {}, + "alarmNo": "1810271124", + "alarmDate": "1769998603324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113973993526319", + "createdBy": null, + "createdTime": "2026-02-02 10:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:30", + "echoMap": {}, + "alarmNo": "1810271123", + "alarmDate": "1769998578211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060014", + "deviceName": "[301](10)殷高东2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113969698559311", + "createdBy": null, + "createdTime": "2026-02-02 10:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:49", + "echoMap": {}, + "alarmNo": "1810271122", + "alarmDate": "1769998008316", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113969698559118", + "createdBy": null, + "createdTime": "2026-02-02 10:06:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:39", + "echoMap": {}, + "alarmNo": "1810271121", + "alarmDate": "1769997992934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108625116", + "createdBy": null, + "createdTime": "2026-02-02 10:06:13", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:13", + "echoMap": {}, + "alarmNo": "1810271120", + "alarmDate": "1769997972566", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108625105", + "createdBy": null, + "createdTime": "2026-02-02 10:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:21", + "echoMap": {}, + "alarmNo": "1810271119", + "alarmDate": "1769997972023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624853", + "createdBy": null, + "createdTime": "2026-02-02 09:57:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:03", + "echoMap": {}, + "alarmNo": "1810271118", + "alarmDate": "1769997422250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624805", + "createdBy": null, + "createdTime": "2026-02-02 09:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:35", + "echoMap": {}, + "alarmNo": "1810271117", + "alarmDate": "1769997418679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624655", + "createdBy": null, + "createdTime": "2026-02-02 09:56:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:54", + "echoMap": {}, + "alarmNo": "1810271116", + "alarmDate": "1769997407627", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624614", + "createdBy": null, + "createdTime": "2026-02-02 09:56:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:45", + "echoMap": {}, + "alarmNo": "1810271115", + "alarmDate": "1769997404583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060055", + "deviceName": "[316](10)殷高东4#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624551", + "createdBy": null, + "createdTime": "2026-02-02 09:56:40", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:26", + "echoMap": {}, + "alarmNo": "1810271114", + "alarmDate": "1769997399660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113961108624431", + "createdBy": null, + "createdTime": "2026-02-02 09:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:25", + "echoMap": {}, + "alarmNo": "1810271113", + "alarmDate": "1769997389398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113956813657113", + "createdBy": null, + "createdTime": "2026-02-02 09:56:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:30", + "echoMap": {}, + "alarmNo": "1810271112", + "alarmDate": "1769997382571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690514", + "createdBy": null, + "createdTime": "2026-02-02 09:56:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:30", + "echoMap": {}, + "alarmNo": "1810271111", + "alarmDate": "1769997377247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690465", + "createdBy": null, + "createdTime": "2026-02-02 09:56:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:15", + "echoMap": {}, + "alarmNo": "1810271110", + "alarmDate": "1769997373692", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690427", + "createdBy": null, + "createdTime": "2026-02-02 09:56:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:47", + "echoMap": {}, + "alarmNo": "1810271109", + "alarmDate": "1769997370498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690230", + "createdBy": null, + "createdTime": "2026-02-02 09:47:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:07", + "echoMap": {}, + "alarmNo": "1810271108", + "alarmDate": "1769996825507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690213", + "createdBy": null, + "createdTime": "2026-02-02 09:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:10", + "echoMap": {}, + "alarmNo": "1810271107", + "alarmDate": "1769996824439", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113952518690102", + "createdBy": null, + "createdTime": "2026-02-02 09:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:47:07", + "echoMap": {}, + "alarmNo": "1810271106", + "alarmDate": "1769996815354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928756001", + "createdBy": null, + "createdTime": "2026-02-02 09:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:43", + "echoMap": {}, + "alarmNo": "1810271105", + "alarmDate": "1769996783331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755647", + "createdBy": null, + "createdTime": "2026-02-02 09:37:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:04", + "echoMap": {}, + "alarmNo": "1810271104", + "alarmDate": "1769996223492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755588", + "createdBy": null, + "createdTime": "2026-02-02 09:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:11", + "echoMap": {}, + "alarmNo": "1810271103", + "alarmDate": "1769996219101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755455", + "createdBy": null, + "createdTime": "2026-02-02 09:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:01", + "echoMap": {}, + "alarmNo": "1810271102", + "alarmDate": "1769996208938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113943928755286", + "createdBy": null, + "createdTime": "2026-02-02 09:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:47", + "echoMap": {}, + "alarmNo": "1810271101", + "alarmDate": "1769996195068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338821368", + "createdBy": null, + "createdTime": "2026-02-02 09:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:20", + "echoMap": {}, + "alarmNo": "1810271100", + "alarmDate": "1769996178666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338821271", + "createdBy": null, + "createdTime": "2026-02-02 09:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:23", + "echoMap": {}, + "alarmNo": "1810271099", + "alarmDate": "1769996170919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338821087", + "createdBy": null, + "createdTime": "2026-02-02 09:27:06", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:08", + "echoMap": {}, + "alarmNo": "1810271098", + "alarmDate": "1769995626482", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338820943", + "createdBy": null, + "createdTime": "2026-02-02 09:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:02", + "echoMap": {}, + "alarmNo": "1810271097", + "alarmDate": "1769995615753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113935338820787", + "createdBy": null, + "createdTime": "2026-02-02 09:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:03", + "echoMap": {}, + "alarmNo": "1810271096", + "alarmDate": "1769995604568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113931043853365", + "createdBy": null, + "createdTime": "2026-02-02 09:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:30", + "echoMap": {}, + "alarmNo": "1810271095", + "alarmDate": "1769995588857", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886727", + "createdBy": null, + "createdTime": "2026-02-02 09:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:27", + "echoMap": {}, + "alarmNo": "1810271094", + "alarmDate": "1769995579613", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886680", + "createdBy": null, + "createdTime": "2026-02-02 09:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:29", + "echoMap": {}, + "alarmNo": "1810271093", + "alarmDate": "1769995576128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886609", + "createdBy": null, + "createdTime": "2026-02-02 09:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:14", + "echoMap": {}, + "alarmNo": "1810271092", + "alarmDate": "1769995570620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886249", + "createdBy": null, + "createdTime": "2026-02-02 09:16:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:06", + "echoMap": {}, + "alarmNo": "1810271091", + "alarmDate": "1769995012506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113926748886220", + "createdBy": null, + "createdTime": "2026-02-02 09:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:18", + "echoMap": {}, + "alarmNo": "1810271090", + "alarmDate": "1769995010441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113922453918722", + "createdBy": null, + "createdTime": "2026-02-02 09:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:41", + "echoMap": {}, + "alarmNo": "1810271089", + "alarmDate": "1769994989288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113918158952258", + "createdBy": null, + "createdTime": "2026-02-02 09:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:38", + "echoMap": {}, + "alarmNo": "1810271088", + "alarmDate": "1769994986278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113918158952250", + "createdBy": null, + "createdTime": "2026-02-02 09:16:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:27", + "echoMap": {}, + "alarmNo": "1810271087", + "alarmDate": "1769994985844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113918158952082", + "createdBy": null, + "createdTime": "2026-02-02 09:16:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:14", + "echoMap": {}, + "alarmNo": "1810271086", + "alarmDate": "1769994971215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113913863984190", + "createdBy": null, + "createdTime": "2026-02-02 09:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:07:07", + "echoMap": {}, + "alarmNo": "1810271085", + "alarmDate": "1769994390960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113913863984158", + "createdBy": null, + "createdTime": "2026-02-02 09:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:30", + "echoMap": {}, + "alarmNo": "1810271084", + "alarmDate": "1769994388867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113913863984157", + "createdBy": null, + "createdTime": "2026-02-02 09:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:41", + "echoMap": {}, + "alarmNo": "1810271083", + "alarmDate": "1769994388825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017499", + "createdBy": null, + "createdTime": "2026-02-02 09:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:19", + "echoMap": {}, + "alarmNo": "1810271082", + "alarmDate": "1769994371985", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017104", + "createdBy": null, + "createdTime": "2026-02-02 08:56:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:57:04", + "echoMap": {}, + "alarmNo": "1810271081", + "alarmDate": "1769993810822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017078", + "createdBy": null, + "createdTime": "2026-02-02 08:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:56", + "echoMap": {}, + "alarmNo": "1810271080", + "alarmDate": "1769993809721", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113909569017028", + "createdBy": null, + "createdTime": "2026-02-02 08:56:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:47", + "echoMap": {}, + "alarmNo": "1810271079", + "alarmDate": "1769993806069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113900979082638", + "createdBy": null, + "createdTime": "2026-02-02 08:47:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:39", + "echoMap": {}, + "alarmNo": "1810271078", + "alarmDate": "1769993222520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113900979082435", + "createdBy": null, + "createdTime": "2026-02-02 08:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:48", + "echoMap": {}, + "alarmNo": "1810271077", + "alarmDate": "1769993206786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060012", + "deviceName": "[205](10)殷高东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113900979082361", + "createdBy": null, + "createdTime": "2026-02-02 08:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:42", + "echoMap": {}, + "alarmNo": "1810271076", + "alarmDate": "1769993200920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148307", + "createdBy": null, + "createdTime": "2026-02-02 08:46:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:30", + "echoMap": {}, + "alarmNo": "1810271075", + "alarmDate": "1769993178204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148222", + "createdBy": null, + "createdTime": "2026-02-02 08:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:38", + "echoMap": {}, + "alarmNo": "1810271074", + "alarmDate": "1769993171378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148122", + "createdBy": null, + "createdTime": "2026-02-02 08:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 08:45:46", + "echoMap": {}, + "alarmNo": "1810271073", + "alarmDate": "1769992845637", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030002", + "deviceName": "安防箱2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113892389148076", + "createdBy": null, + "createdTime": "2026-02-02 08:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:39", + "echoMap": {}, + "alarmNo": "1810271072", + "alarmDate": "1769992629959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389148032", + "createdBy": null, + "createdTime": "2026-02-02 08:37:06", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:07", + "echoMap": {}, + "alarmNo": "1810271071", + "alarmDate": "1769992626300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113892389147773", + "createdBy": null, + "createdTime": "2026-02-02 08:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:50", + "echoMap": {}, + "alarmNo": "1810271070", + "alarmDate": "1769992604351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113888094180374", + "createdBy": null, + "createdTime": "2026-02-02 08:36:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:31", + "echoMap": {}, + "alarmNo": "1810271069", + "alarmDate": "1769992590023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213698", + "createdBy": null, + "createdTime": "2026-02-02 08:36:23", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:41", + "echoMap": {}, + "alarmNo": "1810271068", + "alarmDate": "1769992582812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213604", + "createdBy": null, + "createdTime": "2026-02-02 08:36:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:16", + "echoMap": {}, + "alarmNo": "1810271067", + "alarmDate": "1769992575310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060012", + "deviceName": "[205](10)殷高东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213291", + "createdBy": null, + "createdTime": "2026-02-02 08:27:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:01", + "echoMap": {}, + "alarmNo": "1810271066", + "alarmDate": "1769992020288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213273", + "createdBy": null, + "createdTime": "2026-02-02 08:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:26", + "echoMap": {}, + "alarmNo": "1810271065", + "alarmDate": "1769992019129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113883799213135", + "createdBy": null, + "createdTime": "2026-02-02 08:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:27:08", + "echoMap": {}, + "alarmNo": "1810271064", + "alarmDate": "1769992008549", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209279132", + "createdBy": null, + "createdTime": "2026-02-02 08:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:46", + "echoMap": {}, + "alarmNo": "1810271063", + "alarmDate": "1769991993071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209278740", + "createdBy": null, + "createdTime": "2026-02-02 08:17:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:17", + "echoMap": {}, + "alarmNo": "1810271062", + "alarmDate": "1769991429706", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060060", + "deviceName": "[112](10)殷高东下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209278662", + "createdBy": null, + "createdTime": "2026-02-02 08:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:15", + "echoMap": {}, + "alarmNo": "1810271061", + "alarmDate": "1769991422760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113875209278547", + "createdBy": null, + "createdTime": "2026-02-02 08:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:53", + "echoMap": {}, + "alarmNo": "1810271060", + "alarmDate": "1769991412029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344527", + "createdBy": null, + "createdTime": "2026-02-02 08:16:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:51", + "echoMap": {}, + "alarmNo": "1810271059", + "alarmDate": "1769991392786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344435", + "createdBy": null, + "createdTime": "2026-02-02 08:16:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:26", + "echoMap": {}, + "alarmNo": "1810271058", + "alarmDate": "1769991384709", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060012", + "deviceName": "[205](10)殷高东2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344350", + "createdBy": null, + "createdTime": "2026-02-02 08:16:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:19", + "echoMap": {}, + "alarmNo": "1810271057", + "alarmDate": "1769991377559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113866619344043", + "createdBy": null, + "createdTime": "2026-02-02 08:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:03", + "echoMap": {}, + "alarmNo": "1810271056", + "alarmDate": "1769990822398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029410029", + "createdBy": null, + "createdTime": "2026-02-02 08:06:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:48", + "echoMap": {}, + "alarmNo": "1810271055", + "alarmDate": "1769990801907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409935", + "createdBy": null, + "createdTime": "2026-02-02 08:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:35", + "echoMap": {}, + "alarmNo": "1810271054", + "alarmDate": "1769990794199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409814", + "createdBy": null, + "createdTime": "2026-02-02 08:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:26", + "echoMap": {}, + "alarmNo": "1810271053", + "alarmDate": "1769990784619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409646", + "createdBy": null, + "createdTime": "2026-02-02 08:06:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:20", + "echoMap": {}, + "alarmNo": "1810271052", + "alarmDate": "1769990770492", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113858029409444", + "createdBy": null, + "createdTime": "2026-02-02 07:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:11", + "echoMap": {}, + "alarmNo": "1810271051", + "alarmDate": "1769990224550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113849439475104", + "createdBy": null, + "createdTime": "2026-02-02 07:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:16", + "echoMap": {}, + "alarmNo": "1810271050", + "alarmDate": "1769990175396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113849439474842", + "createdBy": null, + "createdTime": "2026-02-02 07:47:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:47:05", + "echoMap": {}, + "alarmNo": "1810271049", + "alarmDate": "1769989624288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113840849540481", + "createdBy": null, + "createdTime": "2026-02-02 07:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:16", + "echoMap": {}, + "alarmNo": "1810271048", + "alarmDate": "1769989574681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113840849540173", + "createdBy": null, + "createdTime": "2026-02-02 07:37:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:01", + "echoMap": {}, + "alarmNo": "1810271047", + "alarmDate": "1769989020468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113840849540134", + "createdBy": null, + "createdTime": "2026-02-02 07:36:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:11", + "echoMap": {}, + "alarmNo": "1810271046", + "alarmDate": "1769989017766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259606189", + "createdBy": null, + "createdTime": "2026-02-02 07:36:42", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:00", + "echoMap": {}, + "alarmNo": "1810271045", + "alarmDate": "1769989001666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259606182", + "createdBy": null, + "createdTime": "2026-02-02 07:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:42", + "echoMap": {}, + "alarmNo": "1810271044", + "alarmDate": "1769989001298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259606172", + "createdBy": null, + "createdTime": "2026-02-02 07:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:42", + "echoMap": {}, + "alarmNo": "1810271043", + "alarmDate": "1769989000769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259605797", + "createdBy": null, + "createdTime": "2026-02-02 07:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:18", + "echoMap": {}, + "alarmNo": "1810271042", + "alarmDate": "1769988972410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259605783", + "createdBy": null, + "createdTime": "2026-02-02 07:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:13", + "echoMap": {}, + "alarmNo": "1810271041", + "alarmDate": "1769988971660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113832259605781", + "createdBy": null, + "createdTime": "2026-02-02 07:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:30", + "echoMap": {}, + "alarmNo": "1810271040", + "alarmDate": "1769988971610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113827964638258", + "createdBy": null, + "createdTime": "2026-02-02 07:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:26", + "echoMap": {}, + "alarmNo": "1810271039", + "alarmDate": "1769988419198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671680", + "createdBy": null, + "createdTime": "2026-02-02 07:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:57:00", + "echoMap": {}, + "alarmNo": "1810271038", + "alarmDate": "1769988413262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671649", + "createdBy": null, + "createdTime": "2026-02-02 07:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:57", + "echoMap": {}, + "alarmNo": "1810271037", + "alarmDate": "1769988411026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671579", + "createdBy": null, + "createdTime": "2026-02-02 07:26:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:27:05", + "echoMap": {}, + "alarmNo": "1810271036", + "alarmDate": "1769988406375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671519", + "createdBy": null, + "createdTime": "2026-02-02 07:26:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:46", + "echoMap": {}, + "alarmNo": "1810271035", + "alarmDate": "1769988401669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671513", + "createdBy": null, + "createdTime": "2026-02-02 07:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:47", + "echoMap": {}, + "alarmNo": "1810271034", + "alarmDate": "1769988401204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671359", + "createdBy": null, + "createdTime": "2026-02-02 07:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:34", + "echoMap": {}, + "alarmNo": "1810271033", + "alarmDate": "1769988388339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671332", + "createdBy": null, + "createdTime": "2026-02-02 07:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:27", + "echoMap": {}, + "alarmNo": "1810271032", + "alarmDate": "1769988386502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113823669671133", + "createdBy": null, + "createdTime": "2026-02-02 07:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:11", + "echoMap": {}, + "alarmNo": "1810271031", + "alarmDate": "1769988371451", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060034", + "deviceName": "[310](10)殷高东3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079737029", + "createdBy": null, + "createdTime": "2026-02-02 07:16:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:02", + "echoMap": {}, + "alarmNo": "1810271030", + "alarmDate": "1769987810368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060034", + "deviceName": "[310](10)殷高东3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736895", + "createdBy": null, + "createdTime": "2026-02-02 07:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:29", + "echoMap": {}, + "alarmNo": "1810271029", + "alarmDate": "1769987799887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736549", + "createdBy": null, + "createdTime": "2026-02-02 07:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:30", + "echoMap": {}, + "alarmNo": "1810271028", + "alarmDate": "1769987772233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736538", + "createdBy": null, + "createdTime": "2026-02-02 07:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:28", + "echoMap": {}, + "alarmNo": "1810271027", + "alarmDate": "1769987771733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060054", + "deviceName": "[314](10)殷高东4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113815079736506", + "createdBy": null, + "createdTime": "2026-02-02 07:15:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:47", + "echoMap": {}, + "alarmNo": "1810271026", + "alarmDate": "1769987747133", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030005", + "deviceName": "安防箱5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113806489802349", + "createdBy": null, + "createdTime": "2026-02-02 07:06:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:47", + "echoMap": {}, + "alarmNo": "1810271025", + "alarmDate": "1769987205516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802281", + "createdBy": null, + "createdTime": "2026-02-02 07:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:41", + "echoMap": {}, + "alarmNo": "1810271024", + "alarmDate": "1769987199673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802209", + "createdBy": null, + "createdTime": "2026-02-02 07:06:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:41", + "echoMap": {}, + "alarmNo": "1810271023", + "alarmDate": "1769987193663", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489802143", + "createdBy": null, + "createdTime": "2026-02-02 07:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:34", + "echoMap": {}, + "alarmNo": "1810271022", + "alarmDate": "1769987188307", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060065", + "deviceName": "[101](10)殷高东上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113806489801950", + "createdBy": null, + "createdTime": "2026-02-02 07:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:36", + "echoMap": {}, + "alarmNo": "1810271021", + "alarmDate": "1769987172450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867874", + "createdBy": null, + "createdTime": "2026-02-02 06:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:28", + "echoMap": {}, + "alarmNo": "1810271020", + "alarmDate": "1769986612330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867753", + "createdBy": null, + "createdTime": "2026-02-02 06:56:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:43", + "echoMap": {}, + "alarmNo": "1810271019", + "alarmDate": "1769986601572", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867506", + "createdBy": null, + "createdTime": "2026-02-02 06:56:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:40", + "echoMap": {}, + "alarmNo": "1810271018", + "alarmDate": "1769986579283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113797899867399", + "createdBy": null, + "createdTime": "2026-02-02 06:55:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:46", + "echoMap": {}, + "alarmNo": "1810271017", + "alarmDate": "1769986545437", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030002", + "deviceName": "安防箱2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113789309933295", + "createdBy": null, + "createdTime": "2026-02-02 06:46:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:47:01", + "echoMap": {}, + "alarmNo": "1810271016", + "alarmDate": "1769986008152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309933145", + "createdBy": null, + "createdTime": "2026-02-02 06:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:41", + "echoMap": {}, + "alarmNo": "1810271015", + "alarmDate": "1769985994218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309933038", + "createdBy": null, + "createdTime": "2026-02-02 06:46:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:57", + "echoMap": {}, + "alarmNo": "1810271014", + "alarmDate": "1769985984762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309932654", + "createdBy": null, + "createdTime": "2026-02-02 06:37:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:37:07", + "echoMap": {}, + "alarmNo": "1810271013", + "alarmDate": "1769985420904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309932611", + "createdBy": null, + "createdTime": "2026-02-02 06:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:58", + "echoMap": {}, + "alarmNo": "1810271012", + "alarmDate": "1769985417335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113789309932573", + "createdBy": null, + "createdTime": "2026-02-02 06:36:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:36", + "echoMap": {}, + "alarmNo": "1810271011", + "alarmDate": "1769985414270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113780719998369", + "createdBy": null, + "createdTime": "2026-02-02 06:36:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:41", + "echoMap": {}, + "alarmNo": "1810271010", + "alarmDate": "1769985382448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113780719998246", + "createdBy": null, + "createdTime": "2026-02-02 06:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:14", + "echoMap": {}, + "alarmNo": "1810271009", + "alarmDate": "1769985372067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113780719998244", + "createdBy": null, + "createdTime": "2026-02-02 06:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:31", + "echoMap": {}, + "alarmNo": "1810271008", + "alarmDate": "1769985371916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113776425030659", + "createdBy": null, + "createdTime": "2026-02-02 06:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:54", + "echoMap": {}, + "alarmNo": "1810271007", + "alarmDate": "1769984812430", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113772130064083", + "createdBy": null, + "createdTime": "2026-02-02 06:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:13", + "echoMap": {}, + "alarmNo": "1810271006", + "alarmDate": "1769984812156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113772130064082", + "createdBy": null, + "createdTime": "2026-02-02 06:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:52", + "echoMap": {}, + "alarmNo": "1810271005", + "alarmDate": "1769984812153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113772130063669", + "createdBy": null, + "createdTime": "2026-02-02 06:26:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:38", + "echoMap": {}, + "alarmNo": "1810271004", + "alarmDate": "1769984777790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129636", + "createdBy": null, + "createdTime": "2026-02-02 06:16:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:06", + "echoMap": {}, + "alarmNo": "1810271003", + "alarmDate": "1769984206470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129556", + "createdBy": null, + "createdTime": "2026-02-02 06:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:40", + "echoMap": {}, + "alarmNo": "1810271002", + "alarmDate": "1769984199478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129294", + "createdBy": null, + "createdTime": "2026-02-02 06:16:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:18", + "echoMap": {}, + "alarmNo": "1810271001", + "alarmDate": "1769984177415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129242", + "createdBy": null, + "createdTime": "2026-02-02 06:16:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:34", + "echoMap": {}, + "alarmNo": "1810271000", + "alarmDate": "1769984173308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129226", + "createdBy": null, + "createdTime": "2026-02-02 06:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:13", + "echoMap": {}, + "alarmNo": "1810270999", + "alarmDate": "1769984172079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113763540129040", + "createdBy": null, + "createdTime": "2026-02-02 06:07:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:07:07", + "echoMap": {}, + "alarmNo": "1810270998", + "alarmDate": "1769983626863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195134", + "createdBy": null, + "createdTime": "2026-02-02 06:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:54", + "echoMap": {}, + "alarmNo": "1810270997", + "alarmDate": "1769983597013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195133", + "createdBy": null, + "createdTime": "2026-02-02 06:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:37", + "echoMap": {}, + "alarmNo": "1810270996", + "alarmDate": "1769983597012", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195132", + "createdBy": null, + "createdTime": "2026-02-02 06:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:37", + "echoMap": {}, + "alarmNo": "1810270995", + "alarmDate": "1769983597010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195035", + "createdBy": null, + "createdTime": "2026-02-02 06:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:42", + "echoMap": {}, + "alarmNo": "1810270994", + "alarmDate": "1769983589444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950195008", + "createdBy": null, + "createdTime": "2026-02-02 06:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:27:01", + "echoMap": {}, + "alarmNo": "1810270993", + "alarmDate": "1769983587212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194658", + "createdBy": null, + "createdTime": "2026-02-02 05:57:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:08", + "echoMap": {}, + "alarmNo": "1810270992", + "alarmDate": "1769983026926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194607", + "createdBy": null, + "createdTime": "2026-02-02 05:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:22", + "echoMap": {}, + "alarmNo": "1810270991", + "alarmDate": "1769983023199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194550", + "createdBy": null, + "createdTime": "2026-02-02 05:56:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:12", + "echoMap": {}, + "alarmNo": "1810270990", + "alarmDate": "1769983018580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113754950194196", + "createdBy": null, + "createdTime": "2026-02-02 05:56:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:50", + "echoMap": {}, + "alarmNo": "1810270989", + "alarmDate": "1769982990844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113750655226940", + "createdBy": null, + "createdTime": "2026-02-02 05:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:47", + "echoMap": {}, + "alarmNo": "1810270988", + "alarmDate": "1769982988526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360260274", + "createdBy": null, + "createdTime": "2026-02-02 05:47:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:21", + "echoMap": {}, + "alarmNo": "1810270987", + "alarmDate": "1769982427297", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360260176", + "createdBy": null, + "createdTime": "2026-02-02 05:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:47:00", + "echoMap": {}, + "alarmNo": "1810270986", + "alarmDate": "1769982418844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360260101", + "createdBy": null, + "createdTime": "2026-02-02 05:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:19", + "echoMap": {}, + "alarmNo": "1810270985", + "alarmDate": "1769982412377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360259833", + "createdBy": null, + "createdTime": "2026-02-02 05:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:32", + "echoMap": {}, + "alarmNo": "1810270984", + "alarmDate": "1769982391303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113746360259687", + "createdBy": null, + "createdTime": "2026-02-02 05:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:39", + "echoMap": {}, + "alarmNo": "1810270983", + "alarmDate": "1769982380256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113742065292348", + "createdBy": null, + "createdTime": "2026-02-02 05:46:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:54", + "echoMap": {}, + "alarmNo": "1810270982", + "alarmDate": "1769982371245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325897", + "createdBy": null, + "createdTime": "2026-02-02 05:37:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:46", + "echoMap": {}, + "alarmNo": "1810270981", + "alarmDate": "1769981830577", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325607", + "createdBy": null, + "createdTime": "2026-02-02 05:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:07", + "echoMap": {}, + "alarmNo": "1810270980", + "alarmDate": "1769981807032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325599", + "createdBy": null, + "createdTime": "2026-02-02 05:36:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:53", + "echoMap": {}, + "alarmNo": "1810270979", + "alarmDate": "1769981806601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325557", + "createdBy": null, + "createdTime": "2026-02-02 05:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:44", + "echoMap": {}, + "alarmNo": "1810270978", + "alarmDate": "1769981803205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325434", + "createdBy": null, + "createdTime": "2026-02-02 05:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:34", + "echoMap": {}, + "alarmNo": "1810270977", + "alarmDate": "1769981792824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325402", + "createdBy": null, + "createdTime": "2026-02-02 05:36:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:38", + "echoMap": {}, + "alarmNo": "1810270976", + "alarmDate": "1769981790670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325280", + "createdBy": null, + "createdTime": "2026-02-02 05:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:22", + "echoMap": {}, + "alarmNo": "1810270975", + "alarmDate": "1769981780841", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060035", + "deviceName": "[206](10)殷高东3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325171", + "createdBy": null, + "createdTime": "2026-02-02 05:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:23", + "echoMap": {}, + "alarmNo": "1810270974", + "alarmDate": "1769981772491", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113737770325000", + "createdBy": null, + "createdTime": "2026-02-02 05:27:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:34", + "echoMap": {}, + "alarmNo": "1810270973", + "alarmDate": "1769981228697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391248", + "createdBy": null, + "createdTime": "2026-02-02 05:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:37:07", + "echoMap": {}, + "alarmNo": "1810270972", + "alarmDate": "1769981211710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391242", + "createdBy": null, + "createdTime": "2026-02-02 05:26:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:04", + "echoMap": {}, + "alarmNo": "1810270971", + "alarmDate": "1769981211388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391150", + "createdBy": null, + "createdTime": "2026-02-02 05:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:07:04", + "echoMap": {}, + "alarmNo": "1810270970", + "alarmDate": "1769981204198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180391069", + "createdBy": null, + "createdTime": "2026-02-02 05:26:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:56", + "echoMap": {}, + "alarmNo": "1810270969", + "alarmDate": "1769981196530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390967", + "createdBy": null, + "createdTime": "2026-02-02 05:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:28", + "echoMap": {}, + "alarmNo": "1810270968", + "alarmDate": "1769981187195", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390942", + "createdBy": null, + "createdTime": "2026-02-02 05:26:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:31", + "echoMap": {}, + "alarmNo": "1810270967", + "alarmDate": "1769981185184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390790", + "createdBy": null, + "createdTime": "2026-02-02 05:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:40", + "echoMap": {}, + "alarmNo": "1810270966", + "alarmDate": "1769981171493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060033", + "deviceName": "[309](10)殷高东3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390595", + "createdBy": null, + "createdTime": "2026-02-02 05:17:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:59", + "echoMap": {}, + "alarmNo": "1810270965", + "alarmDate": "1769980625846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113729180390588", + "createdBy": null, + "createdTime": "2026-02-02 05:17:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:24", + "echoMap": {}, + "alarmNo": "1810270964", + "alarmDate": "1769980625396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113724885423156", + "createdBy": null, + "createdTime": "2026-02-02 05:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:49", + "echoMap": {}, + "alarmNo": "1810270963", + "alarmDate": "1769980608228", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060035", + "deviceName": "[206](10)殷高东3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456772", + "createdBy": null, + "createdTime": "2026-02-02 05:16:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:45", + "echoMap": {}, + "alarmNo": "1810270962", + "alarmDate": "1769980603617", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456624", + "createdBy": null, + "createdTime": "2026-02-02 05:16:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:52", + "echoMap": {}, + "alarmNo": "1810270961", + "alarmDate": "1769980592264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456154", + "createdBy": null, + "createdTime": "2026-02-02 05:07:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:07:04", + "echoMap": {}, + "alarmNo": "1810270960", + "alarmDate": "1769980023262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113720590456042", + "createdBy": null, + "createdTime": "2026-02-02 05:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:20", + "echoMap": {}, + "alarmNo": "1810270959", + "alarmDate": "1769980014114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113712000522189", + "createdBy": null, + "createdTime": "2026-02-02 05:06:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:41", + "echoMap": {}, + "alarmNo": "1810270958", + "alarmDate": "1769979987942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060030", + "deviceName": "[312](10)殷高东3#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113712000521589", + "createdBy": null, + "createdTime": "2026-02-02 04:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:45", + "echoMap": {}, + "alarmNo": "1810270957", + "alarmDate": "1769979404486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113712000521415", + "createdBy": null, + "createdTime": "2026-02-02 04:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:29", + "echoMap": {}, + "alarmNo": "1810270956", + "alarmDate": "1769979387579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060052", + "deviceName": "[207](10)殷高东4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587492", + "createdBy": null, + "createdTime": "2026-02-02 04:47:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:47:03", + "echoMap": {}, + "alarmNo": "1810270955", + "alarmDate": "1769978821845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587478", + "createdBy": null, + "createdTime": "2026-02-02 04:47:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:54", + "echoMap": {}, + "alarmNo": "1810270954", + "alarmDate": "1769978820821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587213", + "createdBy": null, + "createdTime": "2026-02-02 04:46:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:49", + "echoMap": {}, + "alarmNo": "1810270953", + "alarmDate": "1769978796853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113703410587136", + "createdBy": null, + "createdTime": "2026-02-02 04:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:31", + "echoMap": {}, + "alarmNo": "1810270952", + "alarmDate": "1769978789550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113699115619393", + "createdBy": null, + "createdTime": "2026-02-02 04:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:59", + "echoMap": {}, + "alarmNo": "1810270951", + "alarmDate": "1769978219473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652730", + "createdBy": null, + "createdTime": "2026-02-02 04:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:25", + "echoMap": {}, + "alarmNo": "1810270950", + "alarmDate": "1769978197485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652696", + "createdBy": null, + "createdTime": "2026-02-02 04:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:47", + "echoMap": {}, + "alarmNo": "1810270949", + "alarmDate": "1769978195382", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652370", + "createdBy": null, + "createdTime": "2026-02-02 04:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:20", + "echoMap": {}, + "alarmNo": "1810270948", + "alarmDate": "1769978173446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652336", + "createdBy": null, + "createdTime": "2026-02-02 04:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 04:36:23", + "echoMap": {}, + "alarmNo": "1810270947", + "alarmDate": "1769978171486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113694820652116", + "createdBy": null, + "createdTime": "2026-02-02 04:27:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:06", + "echoMap": {}, + "alarmNo": "1810270946", + "alarmDate": "1769977624736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230718261", + "createdBy": null, + "createdTime": "2026-02-02 04:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:27:00", + "echoMap": {}, + "alarmNo": "1810270945", + "alarmDate": "1769977608188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230717983", + "createdBy": null, + "createdTime": "2026-02-02 04:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:31", + "echoMap": {}, + "alarmNo": "1810270944", + "alarmDate": "1769977590313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230717883", + "createdBy": null, + "createdTime": "2026-02-02 04:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:36", + "echoMap": {}, + "alarmNo": "1810270943", + "alarmDate": "1769977584114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113686230717820", + "createdBy": null, + "createdTime": "2026-02-02 04:26:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:55", + "echoMap": {}, + "alarmNo": "1810270942", + "alarmDate": "1769977580133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113681935750170", + "createdBy": null, + "createdTime": "2026-02-02 04:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 04:26:12", + "echoMap": {}, + "alarmNo": "1810270941", + "alarmDate": "1769977019897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783626", + "createdBy": null, + "createdTime": "2026-02-02 04:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:49", + "echoMap": {}, + "alarmNo": "1810270940", + "alarmDate": "1769977007756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783447", + "createdBy": null, + "createdTime": "2026-02-02 04:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:49", + "echoMap": {}, + "alarmNo": "1810270939", + "alarmDate": "1769976996786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783054", + "createdBy": null, + "createdTime": "2026-02-02 04:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:17:02", + "echoMap": {}, + "alarmNo": "1810270938", + "alarmDate": "1769976971839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113677640783053", + "createdBy": null, + "createdTime": "2026-02-02 04:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:25", + "echoMap": {}, + "alarmNo": "1810270937", + "alarmDate": "1769976971834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050849151", + "createdBy": null, + "createdTime": "2026-02-02 04:06:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:05", + "echoMap": {}, + "alarmNo": "1810270936", + "alarmDate": "1769976419479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050849102", + "createdBy": null, + "createdTime": "2026-02-02 04:06:57", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:08", + "echoMap": {}, + "alarmNo": "1810270935", + "alarmDate": "1769976416501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050848970", + "createdBy": null, + "createdTime": "2026-02-02 04:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:07:01", + "echoMap": {}, + "alarmNo": "1810270934", + "alarmDate": "1769976408516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050848717", + "createdBy": null, + "createdTime": "2026-02-02 04:06:31", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:32", + "echoMap": {}, + "alarmNo": "1810270933", + "alarmDate": "1769976391229", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113669050848607", + "createdBy": null, + "createdTime": "2026-02-02 04:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:37", + "echoMap": {}, + "alarmNo": "1810270932", + "alarmDate": "1769976384535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914623", + "createdBy": null, + "createdTime": "2026-02-02 03:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:57:10", + "echoMap": {}, + "alarmNo": "1810270931", + "alarmDate": "1769975823542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914588", + "createdBy": null, + "createdTime": "2026-02-02 03:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:13", + "echoMap": {}, + "alarmNo": "1810270930", + "alarmDate": "1769975821474", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914406", + "createdBy": null, + "createdTime": "2026-02-02 03:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:51", + "echoMap": {}, + "alarmNo": "1810270929", + "alarmDate": "1769975809535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914214", + "createdBy": null, + "createdTime": "2026-02-02 03:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:49", + "echoMap": {}, + "alarmNo": "1810270928", + "alarmDate": "1769975797294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460914165", + "createdBy": null, + "createdTime": "2026-02-02 03:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:40", + "echoMap": {}, + "alarmNo": "1810270927", + "alarmDate": "1769975794141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460913885", + "createdBy": null, + "createdTime": "2026-02-02 03:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:16", + "echoMap": {}, + "alarmNo": "1810270926", + "alarmDate": "1769975775119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113660460913854", + "createdBy": null, + "createdTime": "2026-02-02 03:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:56:25", + "echoMap": {}, + "alarmNo": "1810270925", + "alarmDate": "1769975773232", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113656165946423", + "createdBy": null, + "createdTime": "2026-02-02 03:47:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:47:09", + "echoMap": {}, + "alarmNo": "1810270924", + "alarmDate": "1769975228033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113651870979816", + "createdBy": null, + "createdTime": "2026-02-02 03:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:56", + "echoMap": {}, + "alarmNo": "1810270923", + "alarmDate": "1769975209948", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113651870979572", + "createdBy": null, + "createdTime": "2026-02-02 03:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:06:32", + "echoMap": {}, + "alarmNo": "1810270922", + "alarmDate": "1769975193736", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113651870979305", + "createdBy": null, + "createdTime": "2026-02-02 03:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:22", + "echoMap": {}, + "alarmNo": "1810270921", + "alarmDate": "1769975175748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045464", + "createdBy": null, + "createdTime": "2026-02-02 03:37:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:57", + "echoMap": {}, + "alarmNo": "1810270920", + "alarmDate": "1769974624005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045428", + "createdBy": null, + "createdTime": "2026-02-02 03:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:32", + "echoMap": {}, + "alarmNo": "1810270919", + "alarmDate": "1769974621802", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045280", + "createdBy": null, + "createdTime": "2026-02-02 03:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:52", + "echoMap": {}, + "alarmNo": "1810270918", + "alarmDate": "1769974611352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045163", + "createdBy": null, + "createdTime": "2026-02-02 03:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:50", + "echoMap": {}, + "alarmNo": "1810270917", + "alarmDate": "1769974604415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281045073", + "createdBy": null, + "createdTime": "2026-02-02 03:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:45", + "echoMap": {}, + "alarmNo": "1810270916", + "alarmDate": "1769974598686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281044726", + "createdBy": null, + "createdTime": "2026-02-02 03:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:17", + "echoMap": {}, + "alarmNo": "1810270915", + "alarmDate": "1769974575803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281044690", + "createdBy": null, + "createdTime": "2026-02-02 03:36:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:21", + "echoMap": {}, + "alarmNo": "1810270914", + "alarmDate": "1769974573684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113643281044671", + "createdBy": null, + "createdTime": "2026-02-02 03:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:32", + "echoMap": {}, + "alarmNo": "1810270913", + "alarmDate": "1769974572400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113634691110698", + "createdBy": null, + "createdTime": "2026-02-02 03:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:59", + "echoMap": {}, + "alarmNo": "1810270912", + "alarmDate": "1769974012698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113634691110660", + "createdBy": null, + "createdTime": "2026-02-02 03:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:57", + "echoMap": {}, + "alarmNo": "1810270911", + "alarmDate": "1769974010405", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113634691110407", + "createdBy": null, + "createdTime": "2026-02-02 03:26:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:35", + "echoMap": {}, + "alarmNo": "1810270910", + "alarmDate": "1769973994296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101176261", + "createdBy": null, + "createdTime": "2026-02-02 03:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:32", + "echoMap": {}, + "alarmNo": "1810270909", + "alarmDate": "1769973423352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175970", + "createdBy": null, + "createdTime": "2026-02-02 03:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:09", + "echoMap": {}, + "alarmNo": "1810270908", + "alarmDate": "1769973404989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175916", + "createdBy": null, + "createdTime": "2026-02-02 03:16:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:48", + "echoMap": {}, + "alarmNo": "1810270907", + "alarmDate": "1769973401590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060053", + "deviceName": "[315](10)殷高东4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175881", + "createdBy": null, + "createdTime": "2026-02-02 03:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:45", + "echoMap": {}, + "alarmNo": "1810270906", + "alarmDate": "1769973399402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175609", + "createdBy": null, + "createdTime": "2026-02-02 03:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:27", + "echoMap": {}, + "alarmNo": "1810270905", + "alarmDate": "1769973380825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175581", + "createdBy": null, + "createdTime": "2026-02-02 03:16:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:20", + "echoMap": {}, + "alarmNo": "1810270904", + "alarmDate": "1769973379081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175448", + "createdBy": null, + "createdTime": "2026-02-02 03:16:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:16:22", + "echoMap": {}, + "alarmNo": "1810270903", + "alarmDate": "1769973370274", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113626101175427", + "createdBy": null, + "createdTime": "2026-02-02 03:15:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:46", + "echoMap": {}, + "alarmNo": "1810270902", + "alarmDate": "1769973346877", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1027030002", + "deviceName": "安防箱2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1027" + }, + { + "id": "723113617511241525", + "createdBy": null, + "createdTime": "2026-02-02 03:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:58", + "echoMap": {}, + "alarmNo": "1810270901", + "alarmDate": "1769972812465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113617511241291", + "createdBy": null, + "createdTime": "2026-02-02 03:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:27:09", + "echoMap": {}, + "alarmNo": "1810270900", + "alarmDate": "1769972796917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113613216273458", + "createdBy": null, + "createdTime": "2026-02-02 02:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:34", + "echoMap": {}, + "alarmNo": "1810270899", + "alarmDate": "1769972224069", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113608921306970", + "createdBy": null, + "createdTime": "2026-02-02 02:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:54", + "echoMap": {}, + "alarmNo": "1810270898", + "alarmDate": "1769972212541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113608921306687", + "createdBy": null, + "createdTime": "2026-02-02 02:56:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:46", + "echoMap": {}, + "alarmNo": "1810270897", + "alarmDate": "1769972193829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113608921306352", + "createdBy": null, + "createdTime": "2026-02-02 02:56:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:23", + "echoMap": {}, + "alarmNo": "1810270896", + "alarmDate": "1769972171244", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113600331372302", + "createdBy": null, + "createdTime": "2026-02-02 02:46:47", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:59", + "echoMap": {}, + "alarmNo": "1810270895", + "alarmDate": "1769971607093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113600331371950", + "createdBy": null, + "createdTime": "2026-02-02 02:46:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:34", + "echoMap": {}, + "alarmNo": "1810270894", + "alarmDate": "1769971583176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113600331371552", + "createdBy": null, + "createdTime": "2026-02-02 02:37:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:06:40", + "echoMap": {}, + "alarmNo": "1810270893", + "alarmDate": "1769971024621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113596036404243", + "createdBy": null, + "createdTime": "2026-02-02 02:36:59", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:10", + "echoMap": {}, + "alarmNo": "1810270892", + "alarmDate": "1769971019199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437825", + "createdBy": null, + "createdTime": "2026-02-02 02:36:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:56", + "echoMap": {}, + "alarmNo": "1810270891", + "alarmDate": "1769971014844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437585", + "createdBy": null, + "createdTime": "2026-02-02 02:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:54", + "echoMap": {}, + "alarmNo": "1810270890", + "alarmDate": "1769971000598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437501", + "createdBy": null, + "createdTime": "2026-02-02 02:36:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:47", + "echoMap": {}, + "alarmNo": "1810270889", + "alarmDate": "1769970995587", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437492", + "createdBy": null, + "createdTime": "2026-02-02 02:36:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:47", + "echoMap": {}, + "alarmNo": "1810270888", + "alarmDate": "1769970994984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437404", + "createdBy": null, + "createdTime": "2026-02-02 02:36:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:12", + "echoMap": {}, + "alarmNo": "1810270887", + "alarmDate": "1769970988926", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437263", + "createdBy": null, + "createdTime": "2026-02-02 02:36:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:20", + "echoMap": {}, + "alarmNo": "1810270886", + "alarmDate": "1769970979022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437158", + "createdBy": null, + "createdTime": "2026-02-02 02:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:23", + "echoMap": {}, + "alarmNo": "1810270885", + "alarmDate": "1769970972620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437146", + "createdBy": null, + "createdTime": "2026-02-02 02:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:17", + "echoMap": {}, + "alarmNo": "1810270884", + "alarmDate": "1769970971913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741437137", + "createdBy": null, + "createdTime": "2026-02-02 02:36:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:36:23", + "echoMap": {}, + "alarmNo": "1810270883", + "alarmDate": "1769970971236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113591741436991", + "createdBy": null, + "createdTime": "2026-02-02 02:27:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:12", + "echoMap": {}, + "alarmNo": "1810270882", + "alarmDate": "1769970430844", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151503059", + "createdBy": null, + "createdTime": "2026-02-02 02:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:01", + "echoMap": {}, + "alarmNo": "1810270881", + "alarmDate": "1769970408213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502951", + "createdBy": null, + "createdTime": "2026-02-02 02:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:00", + "echoMap": {}, + "alarmNo": "1810270880", + "alarmDate": "1769970401201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502704", + "createdBy": null, + "createdTime": "2026-02-02 02:26:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:33", + "echoMap": {}, + "alarmNo": "1810270879", + "alarmDate": "1769970385272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502683", + "createdBy": null, + "createdTime": "2026-02-02 02:26:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:36", + "echoMap": {}, + "alarmNo": "1810270878", + "alarmDate": "1769970384106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113583151502575", + "createdBy": null, + "createdTime": "2026-02-02 02:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:29", + "echoMap": {}, + "alarmNo": "1810270877", + "alarmDate": "1769970377245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568625", + "createdBy": null, + "createdTime": "2026-02-02 02:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:46:40", + "echoMap": {}, + "alarmNo": "1810270876", + "alarmDate": "1769969820217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568525", + "createdBy": null, + "createdTime": "2026-02-02 02:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:17:00", + "echoMap": {}, + "alarmNo": "1810270875", + "alarmDate": "1769969814054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568251", + "createdBy": null, + "createdTime": "2026-02-02 02:16:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:12", + "echoMap": {}, + "alarmNo": "1810270874", + "alarmDate": "1769969796575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561568010", + "createdBy": null, + "createdTime": "2026-02-02 02:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:22", + "echoMap": {}, + "alarmNo": "1810270873", + "alarmDate": "1769969780931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113574561567865", + "createdBy": null, + "createdTime": "2026-02-02 02:16:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:25", + "echoMap": {}, + "alarmNo": "1810270872", + "alarmDate": "1769969771751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633934", + "createdBy": null, + "createdTime": "2026-02-02 02:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:16:36", + "echoMap": {}, + "alarmNo": "1810270871", + "alarmDate": "1769969214616", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633834", + "createdBy": null, + "createdTime": "2026-02-02 02:06:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:07:00", + "echoMap": {}, + "alarmNo": "1810270870", + "alarmDate": "1769969208840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633658", + "createdBy": null, + "createdTime": "2026-02-02 02:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:38", + "echoMap": {}, + "alarmNo": "1810270869", + "alarmDate": "1769969196984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633463", + "createdBy": null, + "createdTime": "2026-02-02 02:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:36", + "echoMap": {}, + "alarmNo": "1810270868", + "alarmDate": "1769969184991", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633462", + "createdBy": null, + "createdTime": "2026-02-02 02:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:43", + "echoMap": {}, + "alarmNo": "1810270867", + "alarmDate": "1769969184988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113565971633279", + "createdBy": null, + "createdTime": "2026-02-02 02:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:27:08", + "echoMap": {}, + "alarmNo": "1810270866", + "alarmDate": "1769969172299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381699452", + "createdBy": null, + "createdTime": "2026-02-02 01:57:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:06:13", + "echoMap": {}, + "alarmNo": "1810270865", + "alarmDate": "1769968621117", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381699351", + "createdBy": null, + "createdTime": "2026-02-02 01:56:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:07", + "echoMap": {}, + "alarmNo": "1810270864", + "alarmDate": "1769968614516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381699087", + "createdBy": null, + "createdTime": "2026-02-02 01:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:49", + "echoMap": {}, + "alarmNo": "1810270863", + "alarmDate": "1769968597324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381698922", + "createdBy": null, + "createdTime": "2026-02-02 01:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:28", + "echoMap": {}, + "alarmNo": "1810270862", + "alarmDate": "1769968586679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113557381698705", + "createdBy": null, + "createdTime": "2026-02-02 01:56:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:25", + "echoMap": {}, + "alarmNo": "1810270861", + "alarmDate": "1769968573111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764730", + "createdBy": null, + "createdTime": "2026-02-02 01:46:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:36", + "echoMap": {}, + "alarmNo": "1810270860", + "alarmDate": "1769968015061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764639", + "createdBy": null, + "createdTime": "2026-02-02 01:46:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:01", + "echoMap": {}, + "alarmNo": "1810270859", + "alarmDate": "1769968009723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764483", + "createdBy": null, + "createdTime": "2026-02-02 01:46:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:40", + "echoMap": {}, + "alarmNo": "1810270858", + "alarmDate": "1769967999181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764327", + "createdBy": null, + "createdTime": "2026-02-02 01:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:43", + "echoMap": {}, + "alarmNo": "1810270857", + "alarmDate": "1769967989954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113548791764258", + "createdBy": null, + "createdTime": "2026-02-02 01:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:38", + "echoMap": {}, + "alarmNo": "1810270856", + "alarmDate": "1769967985684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201830369", + "createdBy": null, + "createdTime": "2026-02-02 01:37:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:37", + "echoMap": {}, + "alarmNo": "1810270855", + "alarmDate": "1769967428003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201830275", + "createdBy": null, + "createdTime": "2026-02-02 01:37:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:46:14", + "echoMap": {}, + "alarmNo": "1810270854", + "alarmDate": "1769967421955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201830189", + "createdBy": null, + "createdTime": "2026-02-02 01:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:57", + "echoMap": {}, + "alarmNo": "1810270853", + "alarmDate": "1769967416320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829983", + "createdBy": null, + "createdTime": "2026-02-02 01:36:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:56", + "echoMap": {}, + "alarmNo": "1810270852", + "alarmDate": "1769967403564", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829891", + "createdBy": null, + "createdTime": "2026-02-02 01:36:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:49", + "echoMap": {}, + "alarmNo": "1810270851", + "alarmDate": "1769967397520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829535", + "createdBy": null, + "createdTime": "2026-02-02 01:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:25", + "echoMap": {}, + "alarmNo": "1810270850", + "alarmDate": "1769967373407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113540201829520", + "createdBy": null, + "createdTime": "2026-02-02 01:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:16", + "echoMap": {}, + "alarmNo": "1810270849", + "alarmDate": "1769967372506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316928269", + "createdBy": null, + "createdTime": "2026-02-02 01:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:27:02", + "echoMap": {}, + "alarmNo": "1810270848", + "alarmDate": "1769966810156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316928216", + "createdBy": null, + "createdTime": "2026-02-02 01:26:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:48", + "echoMap": {}, + "alarmNo": "1810270847", + "alarmDate": "1769966806854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316927975", + "createdBy": null, + "createdTime": "2026-02-02 01:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:38", + "echoMap": {}, + "alarmNo": "1810270846", + "alarmDate": "1769966791171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316927899", + "createdBy": null, + "createdTime": "2026-02-02 01:26:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:38", + "echoMap": {}, + "alarmNo": "1810270845", + "alarmDate": "1769966786379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113527316927698", + "createdBy": null, + "createdTime": "2026-02-02 01:26:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:57:10", + "echoMap": {}, + "alarmNo": "1810270844", + "alarmDate": "1769966772403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113523021960215", + "createdBy": null, + "createdTime": "2026-02-02 01:17:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:14", + "echoMap": {}, + "alarmNo": "1810270843", + "alarmDate": "1769966223181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726993564", + "createdBy": null, + "createdTime": "2026-02-02 01:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:59", + "echoMap": {}, + "alarmNo": "1810270842", + "alarmDate": "1769966218420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726993272", + "createdBy": null, + "createdTime": "2026-02-02 01:16:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:51", + "echoMap": {}, + "alarmNo": "1810270841", + "alarmDate": "1769966199270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726993029", + "createdBy": null, + "createdTime": "2026-02-02 01:16:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:23", + "echoMap": {}, + "alarmNo": "1810270840", + "alarmDate": "1769966182448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113518726992914", + "createdBy": null, + "createdTime": "2026-02-02 01:16:15", + "updatedBy": null, + "updatedTime": "2026-02-02 01:16:27", + "echoMap": {}, + "alarmNo": "1810270839", + "alarmDate": "1769966174891", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113510137058618", + "createdBy": null, + "createdTime": "2026-02-02 01:06:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:07:03", + "echoMap": {}, + "alarmNo": "1810270838", + "alarmDate": "1769965610605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113510137058551", + "createdBy": null, + "createdTime": "2026-02-02 01:06:47", + "updatedBy": null, + "updatedTime": "2026-02-02 01:17:06", + "echoMap": {}, + "alarmNo": "1810270837", + "alarmDate": "1769965606765", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060067", + "deviceName": "[110](10)殷高东下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113505842091053", + "createdBy": null, + "createdTime": "2026-02-02 01:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:39", + "echoMap": {}, + "alarmNo": "1810270836", + "alarmDate": "1769965587441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113501547124259", + "createdBy": null, + "createdTime": "2026-02-02 01:06:14", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:15", + "echoMap": {}, + "alarmNo": "1810270835", + "alarmDate": "1769965574343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113501547124025", + "createdBy": null, + "createdTime": "2026-02-02 00:57:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:08", + "echoMap": {}, + "alarmNo": "1810270834", + "alarmDate": "1769965027174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113501547123980", + "createdBy": null, + "createdTime": "2026-02-02 00:57:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:16", + "echoMap": {}, + "alarmNo": "1810270833", + "alarmDate": "1769965024343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113492957189868", + "createdBy": null, + "createdTime": "2026-02-02 00:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:52", + "echoMap": {}, + "alarmNo": "1810270832", + "alarmDate": "1769964999422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113492957189668", + "createdBy": null, + "createdTime": "2026-02-02 00:56:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:27", + "echoMap": {}, + "alarmNo": "1810270831", + "alarmDate": "1769964985670", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113492957189514", + "createdBy": null, + "createdTime": "2026-02-02 00:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 00:56:27", + "echoMap": {}, + "alarmNo": "1810270830", + "alarmDate": "1769964975639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113484367255284", + "createdBy": null, + "createdTime": "2026-02-02 00:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:04", + "echoMap": {}, + "alarmNo": "1810270829", + "alarmDate": "1769964412167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113484367255263", + "createdBy": null, + "createdTime": "2026-02-02 00:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:42", + "echoMap": {}, + "alarmNo": "1810270828", + "alarmDate": "1769964410984", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113484367255101", + "createdBy": null, + "createdTime": "2026-02-02 00:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:42", + "echoMap": {}, + "alarmNo": "1810270827", + "alarmDate": "1769964400573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113480072287285", + "createdBy": null, + "createdTime": "2026-02-02 00:37:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:39", + "echoMap": {}, + "alarmNo": "1810270826", + "alarmDate": "1769963830018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777320747", + "createdBy": null, + "createdTime": "2026-02-02 00:37:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:46:35", + "echoMap": {}, + "alarmNo": "1810270825", + "alarmDate": "1769963824898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777320370", + "createdBy": null, + "createdTime": "2026-02-02 00:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:53", + "echoMap": {}, + "alarmNo": "1810270824", + "alarmDate": "1769963800908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777320252", + "createdBy": null, + "createdTime": "2026-02-02 00:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:34", + "echoMap": {}, + "alarmNo": "1810270823", + "alarmDate": "1769963793386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113475777319997", + "createdBy": null, + "createdTime": "2026-02-02 00:36:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:23", + "echoMap": {}, + "alarmNo": "1810270822", + "alarmDate": "1769963777058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113471482352703", + "createdBy": null, + "createdTime": "2026-02-02 00:36:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:58", + "echoMap": {}, + "alarmNo": "1810270821", + "alarmDate": "1769963772545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385800", + "createdBy": null, + "createdTime": "2026-02-02 00:26:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:27:04", + "echoMap": {}, + "alarmNo": "1810270820", + "alarmDate": "1769963213423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385718", + "createdBy": null, + "createdTime": "2026-02-02 00:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:55", + "echoMap": {}, + "alarmNo": "1810270819", + "alarmDate": "1769963208982", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060068", + "deviceName": "[109](10)殷高东下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385654", + "createdBy": null, + "createdTime": "2026-02-02 00:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:46", + "echoMap": {}, + "alarmNo": "1810270818", + "alarmDate": "1769963204839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060071", + "deviceName": "[201](10)殷高东上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385415", + "createdBy": null, + "createdTime": "2026-02-02 00:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:34", + "echoMap": {}, + "alarmNo": "1810270817", + "alarmDate": "1769963188379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113467187385406", + "createdBy": null, + "createdTime": "2026-02-02 00:26:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:33", + "echoMap": {}, + "alarmNo": "1810270816", + "alarmDate": "1769963188150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060066", + "deviceName": "[102](10)殷高东上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597451409", + "createdBy": null, + "createdTime": "2026-02-02 00:26:11", + "updatedBy": null, + "updatedTime": "2026-02-02 10:37:00", + "echoMap": {}, + "alarmNo": "1810270815", + "alarmDate": "1769963170675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060004", + "deviceName": "[612](10)殷高东内通道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597451111", + "createdBy": null, + "createdTime": "2026-02-02 00:17:05", + "updatedBy": null, + "updatedTime": "2026-02-02 00:26:11", + "echoMap": {}, + "alarmNo": "1810270814", + "alarmDate": "1769962625082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597451035", + "createdBy": null, + "createdTime": "2026-02-02 00:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:17:01", + "echoMap": {}, + "alarmNo": "1810270813", + "alarmDate": "1769962619615", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060087", + "deviceName": "[209](10)殷高东厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113458597450761", + "createdBy": null, + "createdTime": "2026-02-02 00:16:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:47", + "echoMap": {}, + "alarmNo": "1810270812", + "alarmDate": "1769962601145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113450007516698", + "createdBy": null, + "createdTime": "2026-02-02 00:16:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:23", + "echoMap": {}, + "alarmNo": "1810270811", + "alarmDate": "1769962577211", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113445712548916", + "createdBy": null, + "createdTime": "2026-02-02 00:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:07:00", + "echoMap": {}, + "alarmNo": "1810270810", + "alarmDate": "1769962013867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113445712548883", + "createdBy": null, + "createdTime": "2026-02-02 00:06:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:53", + "echoMap": {}, + "alarmNo": "1810270809", + "alarmDate": "1769962011840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060088", + "deviceName": "[211](10)殷高东厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113441417582054", + "createdBy": null, + "createdTime": "2026-02-02 00:06:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:36", + "echoMap": {}, + "alarmNo": "1810270808", + "alarmDate": "1769961989860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113441417581786", + "createdBy": null, + "createdTime": "2026-02-02 00:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:37", + "echoMap": {}, + "alarmNo": "1810270807", + "alarmDate": "1769961970951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060034", + "deviceName": "[310](10)殷高东3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + }, + { + "id": "723113441417581785", + "createdBy": null, + "createdTime": "2026-02-02 00:06:11", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:12", + "echoMap": {}, + "alarmNo": "1810270806", + "alarmDate": "1769961970947", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1027060013", + "deviceName": "[302](10)殷高东2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1027" + } + ] + }, + "1028": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113334043394469", + "createdBy": null, + "createdTime": "2026-02-02 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:09", + "echoMap": {}, + "alarmNo": "1830131984", + "alarmDate": "1769961607650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113334043394635", + "createdBy": null, + "createdTime": "2026-02-02 00:00:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:30", + "echoMap": {}, + "alarmNo": "1830131985", + "alarmDate": "1769961623804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633328889", + "createdBy": null, + "createdTime": "2026-02-02 00:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:38", + "echoMap": {}, + "alarmNo": "1830131986", + "alarmDate": "1769962218602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633328985", + "createdBy": null, + "createdTime": "2026-02-02 00:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:41", + "echoMap": {}, + "alarmNo": "1830131987", + "alarmDate": "1769962228103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633329208", + "createdBy": null, + "createdTime": "2026-02-02 00:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:41", + "echoMap": {}, + "alarmNo": "1830131988", + "alarmDate": "1769962250573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633329605", + "createdBy": null, + "createdTime": "2026-02-02 00:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:56", + "echoMap": {}, + "alarmNo": "1830131989", + "alarmDate": "1769962792294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633329606", + "createdBy": null, + "createdTime": "2026-02-02 00:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:56", + "echoMap": {}, + "alarmNo": "1830131990", + "alarmDate": "1769962792376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263276", + "createdBy": null, + "createdTime": "2026-02-02 00:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:21", + "echoMap": {}, + "alarmNo": "1830131991", + "alarmDate": "1769962808339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263281", + "createdBy": null, + "createdTime": "2026-02-02 00:20:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:10", + "echoMap": {}, + "alarmNo": "1830131992", + "alarmDate": "1769962808763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263326", + "createdBy": null, + "createdTime": "2026-02-02 00:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:13", + "echoMap": {}, + "alarmNo": "1830131993", + "alarmDate": "1769962812295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263389", + "createdBy": null, + "createdTime": "2026-02-02 00:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:19", + "echoMap": {}, + "alarmNo": "1830131994", + "alarmDate": "1769962817596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263622", + "createdBy": null, + "createdTime": "2026-02-02 00:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:41", + "echoMap": {}, + "alarmNo": "1830131995", + "alarmDate": "1769962840114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263693", + "createdBy": null, + "createdTime": "2026-02-02 00:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:12", + "echoMap": {}, + "alarmNo": "1830131996", + "alarmDate": "1769962847504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263945", + "createdBy": null, + "createdTime": "2026-02-02 00:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:14", + "echoMap": {}, + "alarmNo": "1830131997", + "alarmDate": "1769963392057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263953", + "createdBy": null, + "createdTime": "2026-02-02 00:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:56", + "echoMap": {}, + "alarmNo": "1830131998", + "alarmDate": "1769963392633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113355518230596", + "createdBy": null, + "createdTime": "2026-02-02 00:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:39", + "echoMap": {}, + "alarmNo": "1830131999", + "alarmDate": "1769963414619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113359813197903", + "createdBy": null, + "createdTime": "2026-02-02 00:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:45", + "echoMap": {}, + "alarmNo": "1830132000", + "alarmDate": "1769963426204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113359813198395", + "createdBy": null, + "createdTime": "2026-02-02 00:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:33", + "echoMap": {}, + "alarmNo": "1830132001", + "alarmDate": "1769963991412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113364108165210", + "createdBy": null, + "createdTime": "2026-02-02 00:40:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:36", + "echoMap": {}, + "alarmNo": "1830132002", + "alarmDate": "1769964030314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132510", + "createdBy": null, + "createdTime": "2026-02-02 00:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:42", + "echoMap": {}, + "alarmNo": "1830132003", + "alarmDate": "1769964041470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132544", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:11", + "echoMap": {}, + "alarmNo": "1830132004", + "alarmDate": "1769964044506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132553", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:46", + "echoMap": {}, + "alarmNo": "1830132005", + "alarmDate": "1769964044917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132559", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:46", + "echoMap": {}, + "alarmNo": "1830132006", + "alarmDate": "1769964045210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132975", + "createdBy": null, + "createdTime": "2026-02-02 00:50:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:08", + "echoMap": {}, + "alarmNo": "1830132007", + "alarmDate": "1769964601509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403133177", + "createdBy": null, + "createdTime": "2026-02-02 00:50:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:21", + "echoMap": {}, + "alarmNo": "1830132008", + "alarmDate": "1769964619828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403133221", + "createdBy": null, + "createdTime": "2026-02-02 00:50:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:16", + "echoMap": {}, + "alarmNo": "1830132009", + "alarmDate": "1769964623897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403133338", + "createdBy": null, + "createdTime": "2026-02-02 00:50:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:35", + "echoMap": {}, + "alarmNo": "1830132010", + "alarmDate": "1769964634277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060085", + "deviceName": "[217](10)新江湾3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067617", + "createdBy": null, + "createdTime": "2026-02-02 01:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:11", + "echoMap": {}, + "alarmNo": "1830132012", + "alarmDate": "1769965227140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067717", + "createdBy": null, + "createdTime": "2026-02-02 01:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:43", + "echoMap": {}, + "alarmNo": "1830132013", + "alarmDate": "1769965236959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067732", + "createdBy": null, + "createdTime": "2026-02-02 01:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:44", + "echoMap": {}, + "alarmNo": "1830132014", + "alarmDate": "1769965238066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001667", + "createdBy": null, + "createdTime": "2026-02-02 01:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:59", + "echoMap": {}, + "alarmNo": "1830132015", + "alarmDate": "1769965793091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001934", + "createdBy": null, + "createdTime": "2026-02-02 01:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:18", + "echoMap": {}, + "alarmNo": "1830132016", + "alarmDate": "1769965816980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001994", + "createdBy": null, + "createdTime": "2026-02-02 01:10:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:24", + "echoMap": {}, + "alarmNo": "1830132017", + "alarmDate": "1769965823179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001997", + "createdBy": null, + "createdTime": "2026-02-02 01:10:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:35", + "echoMap": {}, + "alarmNo": "1830132018", + "alarmDate": "1769965823344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002000", + "createdBy": null, + "createdTime": "2026-02-02 01:10:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:49", + "echoMap": {}, + "alarmNo": "1830132019", + "alarmDate": "1769965823403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002017", + "createdBy": null, + "createdTime": "2026-02-02 01:10:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:26", + "echoMap": {}, + "alarmNo": "1830132020", + "alarmDate": "1769965824522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002225", + "createdBy": null, + "createdTime": "2026-02-02 01:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:50", + "echoMap": {}, + "alarmNo": "1830132021", + "alarmDate": "1769965843780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002277", + "createdBy": null, + "createdTime": "2026-02-02 01:10:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:00", + "echoMap": {}, + "alarmNo": "1830132022", + "alarmDate": "1769965848426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113389877969014", + "createdBy": null, + "createdTime": "2026-02-02 01:20:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:01", + "echoMap": {}, + "alarmNo": "1830132023", + "alarmDate": "1769966399510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113394172936233", + "createdBy": null, + "createdTime": "2026-02-02 01:20:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:24", + "echoMap": {}, + "alarmNo": "1830132024", + "alarmDate": "1769966403690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113394172936316", + "createdBy": null, + "createdTime": "2026-02-02 01:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:55", + "echoMap": {}, + "alarmNo": "1830132025", + "alarmDate": "1769966411628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113394172936584", + "createdBy": null, + "createdTime": "2026-02-02 01:20:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:21", + "echoMap": {}, + "alarmNo": "1830132026", + "alarmDate": "1769966436813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762870801", + "createdBy": null, + "createdTime": "2026-02-02 01:30:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:19", + "echoMap": {}, + "alarmNo": "1830132027", + "alarmDate": "1769967006918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762870810", + "createdBy": null, + "createdTime": "2026-02-02 01:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:14", + "echoMap": {}, + "alarmNo": "1830132028", + "alarmDate": "1769967007665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871066", + "createdBy": null, + "createdTime": "2026-02-02 01:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:51", + "echoMap": {}, + "alarmNo": "1830132029", + "alarmDate": "1769967032063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871079", + "createdBy": null, + "createdTime": "2026-02-02 01:30:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:24", + "echoMap": {}, + "alarmNo": "1830132030", + "alarmDate": "1769967033096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871086", + "createdBy": null, + "createdTime": "2026-02-02 01:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:40", + "echoMap": {}, + "alarmNo": "1830132031", + "alarmDate": "1769967033722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871194", + "createdBy": null, + "createdTime": "2026-02-02 01:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:44", + "echoMap": {}, + "alarmNo": "1830132032", + "alarmDate": "1769967042665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113407057838090", + "createdBy": null, + "createdTime": "2026-02-02 01:39:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:06", + "echoMap": {}, + "alarmNo": "1830132033", + "alarmDate": "1769967594260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113407057838108", + "createdBy": null, + "createdTime": "2026-02-02 01:39:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:02", + "echoMap": {}, + "alarmNo": "1830132034", + "alarmDate": "1769967594963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805390", + "createdBy": null, + "createdTime": "2026-02-02 01:40:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:04", + "echoMap": {}, + "alarmNo": "1830132035", + "alarmDate": "1769967603006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805410", + "createdBy": null, + "createdTime": "2026-02-02 01:40:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:05", + "echoMap": {}, + "alarmNo": "1830132036", + "alarmDate": "1769967604305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805576", + "createdBy": null, + "createdTime": "2026-02-02 01:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:38", + "echoMap": {}, + "alarmNo": "1830132037", + "alarmDate": "1769967620252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805701", + "createdBy": null, + "createdTime": "2026-02-02 01:40:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:33", + "echoMap": {}, + "alarmNo": "1830132038", + "alarmDate": "1769967632066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805759", + "createdBy": null, + "createdTime": "2026-02-02 01:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:51", + "echoMap": {}, + "alarmNo": "1830132039", + "alarmDate": "1769967637571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772702", + "createdBy": null, + "createdTime": "2026-02-02 01:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:13", + "echoMap": {}, + "alarmNo": "1830132040", + "alarmDate": "1769968192874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772770", + "createdBy": null, + "createdTime": "2026-02-02 01:49:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:10", + "echoMap": {}, + "alarmNo": "1830132041", + "alarmDate": "1769968196971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772771", + "createdBy": null, + "createdTime": "2026-02-02 01:49:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:58", + "echoMap": {}, + "alarmNo": "1830132042", + "alarmDate": "1769968197029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060048", + "deviceName": "[613](10)新江湾内通道8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772796", + "createdBy": null, + "createdTime": "2026-02-02 01:49:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:42", + "echoMap": {}, + "alarmNo": "1830132043", + "alarmDate": "1769968198472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740161", + "createdBy": null, + "createdTime": "2026-02-02 01:50:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:50", + "echoMap": {}, + "alarmNo": "1830132044", + "alarmDate": "1769968230953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740284", + "createdBy": null, + "createdTime": "2026-02-02 01:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:48", + "echoMap": {}, + "alarmNo": "1830132045", + "alarmDate": "1769968241925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740697", + "createdBy": null, + "createdTime": "2026-02-02 02:00:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:07", + "echoMap": {}, + "alarmNo": "1830132046", + "alarmDate": "1769968800265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740717", + "createdBy": null, + "createdTime": "2026-02-02 02:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:14", + "echoMap": {}, + "alarmNo": "1830132047", + "alarmDate": "1769968801830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674584", + "createdBy": null, + "createdTime": "2026-02-02 02:00:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:35", + "echoMap": {}, + "alarmNo": "1830132048", + "alarmDate": "1769968816250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674598", + "createdBy": null, + "createdTime": "2026-02-02 02:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:18", + "echoMap": {}, + "alarmNo": "1830132049", + "alarmDate": "1769968817506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674688", + "createdBy": null, + "createdTime": "2026-02-02 02:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:17", + "echoMap": {}, + "alarmNo": "1830132050", + "alarmDate": "1769968825855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674761", + "createdBy": null, + "createdTime": "2026-02-02 02:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:38", + "echoMap": {}, + "alarmNo": "1830132051", + "alarmDate": "1769968832420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674803", + "createdBy": null, + "createdTime": "2026-02-02 02:00:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:37", + "echoMap": {}, + "alarmNo": "1830132052", + "alarmDate": "1769968835658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674823", + "createdBy": null, + "createdTime": "2026-02-02 02:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:38", + "echoMap": {}, + "alarmNo": "1830132053", + "alarmDate": "1769968836960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532675212", + "createdBy": null, + "createdTime": "2026-02-02 02:09:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:00", + "echoMap": {}, + "alarmNo": "1830132054", + "alarmDate": "1769969394421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113432827641869", + "createdBy": null, + "createdTime": "2026-02-02 02:10:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:11", + "echoMap": {}, + "alarmNo": "1830132055", + "alarmDate": "1769969404582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113432827641949", + "createdBy": null, + "createdTime": "2026-02-02 02:10:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:13", + "echoMap": {}, + "alarmNo": "1830132056", + "alarmDate": "1769969411766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609284", + "createdBy": null, + "createdTime": "2026-02-02 02:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:41", + "echoMap": {}, + "alarmNo": "1830132057", + "alarmDate": "1769969428131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609312", + "createdBy": null, + "createdTime": "2026-02-02 02:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:37", + "echoMap": {}, + "alarmNo": "1830132058", + "alarmDate": "1769969430817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609726", + "createdBy": null, + "createdTime": "2026-02-02 02:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:56", + "echoMap": {}, + "alarmNo": "1830132059", + "alarmDate": "1769969991374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609872", + "createdBy": null, + "createdTime": "2026-02-02 02:20:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:11", + "echoMap": {}, + "alarmNo": "1830132060", + "alarmDate": "1769970003800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609885", + "createdBy": null, + "createdTime": "2026-02-02 02:20:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:25", + "echoMap": {}, + "alarmNo": "1830132061", + "alarmDate": "1769970004939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609926", + "createdBy": null, + "createdTime": "2026-02-02 02:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:20", + "echoMap": {}, + "alarmNo": "1830132062", + "alarmDate": "1769970008400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712543839", + "createdBy": null, + "createdTime": "2026-02-02 02:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:36", + "echoMap": {}, + "alarmNo": "1830132063", + "alarmDate": "1769970029817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712543877", + "createdBy": null, + "createdTime": "2026-02-02 02:20:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:07", + "echoMap": {}, + "alarmNo": "1830132064", + "alarmDate": "1769970033417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712544008", + "createdBy": null, + "createdTime": "2026-02-02 02:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:47", + "echoMap": {}, + "alarmNo": "1830132065", + "alarmDate": "1769970046131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712544304", + "createdBy": null, + "createdTime": "2026-02-02 02:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:00", + "echoMap": {}, + "alarmNo": "1830132066", + "alarmDate": "1769970594349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113450007511064", + "createdBy": null, + "createdTime": "2026-02-02 02:30:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:17", + "echoMap": {}, + "alarmNo": "1830132067", + "alarmDate": "1769970616408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113450007511079", + "createdBy": null, + "createdTime": "2026-02-02 02:30:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:19", + "echoMap": {}, + "alarmNo": "1830132068", + "alarmDate": "1769970617576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113450007511102", + "createdBy": null, + "createdTime": "2026-02-02 02:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:03", + "echoMap": {}, + "alarmNo": "1830132069", + "alarmDate": "1769970619671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478418", + "createdBy": null, + "createdTime": "2026-02-02 02:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:40", + "echoMap": {}, + "alarmNo": "1830132070", + "alarmDate": "1769970633530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478526", + "createdBy": null, + "createdTime": "2026-02-02 02:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:44", + "echoMap": {}, + "alarmNo": "1830132071", + "alarmDate": "1769970643412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478819", + "createdBy": null, + "createdTime": "2026-02-02 02:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:53", + "echoMap": {}, + "alarmNo": "1830132072", + "alarmDate": "1769971191526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478979", + "createdBy": null, + "createdTime": "2026-02-02 02:40:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:17", + "echoMap": {}, + "alarmNo": "1830132073", + "alarmDate": "1769971204367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302479014", + "createdBy": null, + "createdTime": "2026-02-02 02:40:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:21", + "echoMap": {}, + "alarmNo": "1830132074", + "alarmDate": "1769971207794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113458597445656", + "createdBy": null, + "createdTime": "2026-02-02 02:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:28", + "echoMap": {}, + "alarmNo": "1830132075", + "alarmDate": "1769971215068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113462892413092", + "createdBy": null, + "createdTime": "2026-02-02 02:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:07", + "echoMap": {}, + "alarmNo": "1830132076", + "alarmDate": "1769971241132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113462892413411", + "createdBy": null, + "createdTime": "2026-02-02 02:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:56", + "echoMap": {}, + "alarmNo": "1830132077", + "alarmDate": "1769971792639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113462892413521", + "createdBy": null, + "createdTime": "2026-02-02 02:50:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:45", + "echoMap": {}, + "alarmNo": "1830132078", + "alarmDate": "1769971800204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113467187380265", + "createdBy": null, + "createdTime": "2026-02-02 02:50:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:31", + "echoMap": {}, + "alarmNo": "1830132079", + "alarmDate": "1769971818329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113467187380275", + "createdBy": null, + "createdTime": "2026-02-02 02:50:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:20", + "echoMap": {}, + "alarmNo": "1830132080", + "alarmDate": "1769971818887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347628", + "createdBy": null, + "createdTime": "2026-02-02 02:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:47", + "echoMap": {}, + "alarmNo": "1830132081", + "alarmDate": "1769971834748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347713", + "createdBy": null, + "createdTime": "2026-02-02 02:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:03", + "echoMap": {}, + "alarmNo": "1830132082", + "alarmDate": "1769971842475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347790", + "createdBy": null, + "createdTime": "2026-02-02 02:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:50", + "echoMap": {}, + "alarmNo": "1830132083", + "alarmDate": "1769971849042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347802", + "createdBy": null, + "createdTime": "2026-02-02 02:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:51", + "echoMap": {}, + "alarmNo": "1830132084", + "alarmDate": "1769971850252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348041", + "createdBy": null, + "createdTime": "2026-02-02 02:59:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:59", + "echoMap": {}, + "alarmNo": "1830132085", + "alarmDate": "1769972393031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348101", + "createdBy": null, + "createdTime": "2026-02-02 02:59:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:57", + "echoMap": {}, + "alarmNo": "1830132086", + "alarmDate": "1769972396293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348107", + "createdBy": null, + "createdTime": "2026-02-02 02:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:10", + "echoMap": {}, + "alarmNo": "1830132087", + "alarmDate": "1769972396517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348123", + "createdBy": null, + "createdTime": "2026-02-02 02:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:58", + "echoMap": {}, + "alarmNo": "1830132088", + "alarmDate": "1769972397443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113475777314854", + "createdBy": null, + "createdTime": "2026-02-02 03:00:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:28", + "echoMap": {}, + "alarmNo": "1830132089", + "alarmDate": "1769972414607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282114", + "createdBy": null, + "createdTime": "2026-02-02 03:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:36", + "echoMap": {}, + "alarmNo": "1830132090", + "alarmDate": "1769972422517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282123", + "createdBy": null, + "createdTime": "2026-02-02 03:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:29", + "echoMap": {}, + "alarmNo": "1830132091", + "alarmDate": "1769972423151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282139", + "createdBy": null, + "createdTime": "2026-02-02 03:00:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:25", + "echoMap": {}, + "alarmNo": "1830132092", + "alarmDate": "1769972424209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282301", + "createdBy": null, + "createdTime": "2026-02-02 03:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:06", + "echoMap": {}, + "alarmNo": "1830132093", + "alarmDate": "1769972439696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282627", + "createdBy": null, + "createdTime": "2026-02-02 03:09:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:52", + "echoMap": {}, + "alarmNo": "1830132094", + "alarmDate": "1769972991443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282761", + "createdBy": null, + "createdTime": "2026-02-02 03:10:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:34", + "echoMap": {}, + "alarmNo": "1830132095", + "alarmDate": "1769973001933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113484367249465", + "createdBy": null, + "createdTime": "2026-02-02 03:10:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:30", + "echoMap": {}, + "alarmNo": "1830132096", + "alarmDate": "1769973017972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662216890", + "createdBy": null, + "createdTime": "2026-02-02 03:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:01", + "echoMap": {}, + "alarmNo": "1830132097", + "alarmDate": "1769973042154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662216956", + "createdBy": null, + "createdTime": "2026-02-02 03:10:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:49", + "echoMap": {}, + "alarmNo": "1830132098", + "alarmDate": "1769973048486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662217201", + "createdBy": null, + "createdTime": "2026-02-02 03:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:03", + "echoMap": {}, + "alarmNo": "1830132099", + "alarmDate": "1769973592276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662217217", + "createdBy": null, + "createdTime": "2026-02-02 03:19:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:55", + "echoMap": {}, + "alarmNo": "1830132100", + "alarmDate": "1769973593679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662217446", + "createdBy": null, + "createdTime": "2026-02-02 03:20:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:26", + "echoMap": {}, + "alarmNo": "1830132101", + "alarmDate": "1769973613262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113492957184078", + "createdBy": null, + "createdTime": "2026-02-02 03:20:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:28", + "echoMap": {}, + "alarmNo": "1830132102", + "alarmDate": "1769973621693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113492957184098", + "createdBy": null, + "createdTime": "2026-02-02 03:20:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:35", + "echoMap": {}, + "alarmNo": "1830132103", + "alarmDate": "1769973623367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113492957184106", + "createdBy": null, + "createdTime": "2026-02-02 03:20:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:30", + "echoMap": {}, + "alarmNo": "1830132104", + "alarmDate": "1769973623651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151363", + "createdBy": null, + "createdTime": "2026-02-02 03:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:31", + "echoMap": {}, + "alarmNo": "1830132105", + "alarmDate": "1769973629876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151364", + "createdBy": null, + "createdTime": "2026-02-02 03:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:31", + "echoMap": {}, + "alarmNo": "1830132106", + "alarmDate": "1769973629918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151459", + "createdBy": null, + "createdTime": "2026-02-02 03:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:58", + "echoMap": {}, + "alarmNo": "1830132107", + "alarmDate": "1769973639265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151555", + "createdBy": null, + "createdTime": "2026-02-02 03:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:10", + "echoMap": {}, + "alarmNo": "1830132108", + "alarmDate": "1769973648622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151816", + "createdBy": null, + "createdTime": "2026-02-02 03:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:07", + "echoMap": {}, + "alarmNo": "1830132109", + "alarmDate": "1769974193633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151965", + "createdBy": null, + "createdTime": "2026-02-02 03:30:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:06", + "echoMap": {}, + "alarmNo": "1830132110", + "alarmDate": "1769974204866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252152004", + "createdBy": null, + "createdTime": "2026-02-02 03:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:22", + "echoMap": {}, + "alarmNo": "1830132111", + "alarmDate": "1769974208480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113501547118643", + "createdBy": null, + "createdTime": "2026-02-02 03:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:30", + "echoMap": {}, + "alarmNo": "1830132112", + "alarmDate": "1769974219623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113505842085963", + "createdBy": null, + "createdTime": "2026-02-02 03:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:54", + "echoMap": {}, + "alarmNo": "1830132113", + "alarmDate": "1769974233531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113505842086543", + "createdBy": null, + "createdTime": "2026-02-02 03:40:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:25", + "echoMap": {}, + "alarmNo": "1830132114", + "alarmDate": "1769974806030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113510137053299", + "createdBy": null, + "createdTime": "2026-02-02 03:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:25", + "echoMap": {}, + "alarmNo": "1830132115", + "alarmDate": "1769974823596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432020616", + "createdBy": null, + "createdTime": "2026-02-02 03:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:07", + "echoMap": {}, + "alarmNo": "1830132116", + "alarmDate": "1769974838033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432020705", + "createdBy": null, + "createdTime": "2026-02-02 03:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:27", + "echoMap": {}, + "alarmNo": "1830132117", + "alarmDate": "1769974846609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432020726", + "createdBy": null, + "createdTime": "2026-02-02 03:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:31", + "echoMap": {}, + "alarmNo": "1830132118", + "alarmDate": "1769974848351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432021172", + "createdBy": null, + "createdTime": "2026-02-02 03:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:12", + "echoMap": {}, + "alarmNo": "1830132119", + "alarmDate": "1769975409782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432021173", + "createdBy": null, + "createdTime": "2026-02-02 03:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:12", + "echoMap": {}, + "alarmNo": "1830132120", + "alarmDate": "1769975409786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113518726987815", + "createdBy": null, + "createdTime": "2026-02-02 03:50:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:52", + "echoMap": {}, + "alarmNo": "1830132121", + "alarmDate": "1769975416792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955229", + "createdBy": null, + "createdTime": "2026-02-02 03:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:39", + "echoMap": {}, + "alarmNo": "1830132122", + "alarmDate": "1769975438113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955263", + "createdBy": null, + "createdTime": "2026-02-02 03:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:47", + "echoMap": {}, + "alarmNo": "1830132123", + "alarmDate": "1769975441068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955670", + "createdBy": null, + "createdTime": "2026-02-02 03:59:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:12", + "echoMap": {}, + "alarmNo": "1830132124", + "alarmDate": "1769975999137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955712", + "createdBy": null, + "createdTime": "2026-02-02 04:00:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:18", + "echoMap": {}, + "alarmNo": "1830132125", + "alarmDate": "1769976002839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955726", + "createdBy": null, + "createdTime": "2026-02-02 04:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:16", + "echoMap": {}, + "alarmNo": "1830132126", + "alarmDate": "1769976003739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113527316922469", + "createdBy": null, + "createdTime": "2026-02-02 04:00:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1830132127", + "alarmDate": "1769976019886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611889700", + "createdBy": null, + "createdTime": "2026-02-02 04:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:37", + "echoMap": {}, + "alarmNo": "1830132128", + "alarmDate": "1769976025072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611889739", + "createdBy": null, + "createdTime": "2026-02-02 04:00:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:41", + "echoMap": {}, + "alarmNo": "1830132129", + "alarmDate": "1769976028341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611889952", + "createdBy": null, + "createdTime": "2026-02-02 04:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:57", + "echoMap": {}, + "alarmNo": "1830132130", + "alarmDate": "1769976050054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611890180", + "createdBy": null, + "createdTime": "2026-02-02 04:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:56", + "echoMap": {}, + "alarmNo": "1830132131", + "alarmDate": "1769976592022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611890302", + "createdBy": null, + "createdTime": "2026-02-02 04:10:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:09", + "echoMap": {}, + "alarmNo": "1830132132", + "alarmDate": "1769976602275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611890374", + "createdBy": null, + "createdTime": "2026-02-02 04:10:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:28", + "echoMap": {}, + "alarmNo": "1830132133", + "alarmDate": "1769976609409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113535906857051", + "createdBy": null, + "createdTime": "2026-02-02 04:10:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:54", + "echoMap": {}, + "alarmNo": "1830132134", + "alarmDate": "1769976621348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113535906857076", + "createdBy": null, + "createdTime": "2026-02-02 04:10:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:42", + "echoMap": {}, + "alarmNo": "1830132135", + "alarmDate": "1769976623523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824308", + "createdBy": null, + "createdTime": "2026-02-02 04:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:34", + "echoMap": {}, + "alarmNo": "1830132136", + "alarmDate": "1769976628366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824448", + "createdBy": null, + "createdTime": "2026-02-02 04:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:16", + "echoMap": {}, + "alarmNo": "1830132137", + "alarmDate": "1769976641196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824454", + "createdBy": null, + "createdTime": "2026-02-02 04:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:43", + "echoMap": {}, + "alarmNo": "1830132138", + "alarmDate": "1769976641637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824472", + "createdBy": null, + "createdTime": "2026-02-02 04:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:44", + "echoMap": {}, + "alarmNo": "1830132139", + "alarmDate": "1769976642747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824776", + "createdBy": null, + "createdTime": "2026-02-02 04:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:03", + "echoMap": {}, + "alarmNo": "1830132140", + "alarmDate": "1769977192893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824953", + "createdBy": null, + "createdTime": "2026-02-02 04:20:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:11", + "echoMap": {}, + "alarmNo": "1830132141", + "alarmDate": "1769977204540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791758867", + "createdBy": null, + "createdTime": "2026-02-02 04:20:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:19", + "echoMap": {}, + "alarmNo": "1830132142", + "alarmDate": "1769977217377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791758984", + "createdBy": null, + "createdTime": "2026-02-02 04:20:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:40", + "echoMap": {}, + "alarmNo": "1830132143", + "alarmDate": "1769977227221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791758993", + "createdBy": null, + "createdTime": "2026-02-02 04:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:35", + "echoMap": {}, + "alarmNo": "1830132144", + "alarmDate": "1769977227770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759265", + "createdBy": null, + "createdTime": "2026-02-02 04:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:52", + "echoMap": {}, + "alarmNo": "1830132145", + "alarmDate": "1769977251579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759266", + "createdBy": null, + "createdTime": "2026-02-02 04:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:11", + "echoMap": {}, + "alarmNo": "1830132146", + "alarmDate": "1769977251580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759483", + "createdBy": null, + "createdTime": "2026-02-02 04:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:11", + "echoMap": {}, + "alarmNo": "1830132147", + "alarmDate": "1769977791581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759505", + "createdBy": null, + "createdTime": "2026-02-02 04:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:00", + "echoMap": {}, + "alarmNo": "1830132148", + "alarmDate": "1769977794104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759587", + "createdBy": null, + "createdTime": "2026-02-02 04:29:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:05", + "echoMap": {}, + "alarmNo": "1830132149", + "alarmDate": "1769977799172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693507", + "createdBy": null, + "createdTime": "2026-02-02 04:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:26", + "echoMap": {}, + "alarmNo": "1830132150", + "alarmDate": "1769977819500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693550", + "createdBy": null, + "createdTime": "2026-02-02 04:30:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:43", + "echoMap": {}, + "alarmNo": "1830132151", + "alarmDate": "1769977823634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693597", + "createdBy": null, + "createdTime": "2026-02-02 04:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:29", + "echoMap": {}, + "alarmNo": "1830132152", + "alarmDate": "1769977827952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693823", + "createdBy": null, + "createdTime": "2026-02-02 04:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:57", + "echoMap": {}, + "alarmNo": "1830132153", + "alarmDate": "1769977853337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381694158", + "createdBy": null, + "createdTime": "2026-02-02 04:40:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:11", + "echoMap": {}, + "alarmNo": "1830132154", + "alarmDate": "1769978402279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381694159", + "createdBy": null, + "createdTime": "2026-02-02 04:40:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:15", + "echoMap": {}, + "alarmNo": "1830132155", + "alarmDate": "1769978402282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628036", + "createdBy": null, + "createdTime": "2026-02-02 04:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:29", + "echoMap": {}, + "alarmNo": "1830132156", + "alarmDate": "1769978416678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628098", + "createdBy": null, + "createdTime": "2026-02-02 04:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:03", + "echoMap": {}, + "alarmNo": "1830132157", + "alarmDate": "1769978422001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628123", + "createdBy": null, + "createdTime": "2026-02-02 04:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:25", + "echoMap": {}, + "alarmNo": "1830132158", + "alarmDate": "1769978424175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628167", + "createdBy": null, + "createdTime": "2026-02-02 04:40:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:47", + "echoMap": {}, + "alarmNo": "1830132159", + "alarmDate": "1769978428176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628301", + "createdBy": null, + "createdTime": "2026-02-02 04:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:55", + "echoMap": {}, + "alarmNo": "1830132160", + "alarmDate": "1769978441427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628395", + "createdBy": null, + "createdTime": "2026-02-02 04:40:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:00", + "echoMap": {}, + "alarmNo": "1830132161", + "alarmDate": "1769978450224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628618", + "createdBy": null, + "createdTime": "2026-02-02 04:49:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:57", + "echoMap": {}, + "alarmNo": "1830132162", + "alarmDate": "1769978991530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628627", + "createdBy": null, + "createdTime": "2026-02-02 04:49:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:54", + "echoMap": {}, + "alarmNo": "1830132163", + "alarmDate": "1769978992396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595371", + "createdBy": null, + "createdTime": "2026-02-02 04:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:09", + "echoMap": {}, + "alarmNo": "1830132164", + "alarmDate": "1769979008509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595372", + "createdBy": null, + "createdTime": "2026-02-02 04:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:09", + "echoMap": {}, + "alarmNo": "1830132165", + "alarmDate": "1769979008510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595373", + "createdBy": null, + "createdTime": "2026-02-02 04:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:19", + "echoMap": {}, + "alarmNo": "1830132166", + "alarmDate": "1769979008511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595439", + "createdBy": null, + "createdTime": "2026-02-02 04:50:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:21", + "echoMap": {}, + "alarmNo": "1830132167", + "alarmDate": "1769979014417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561562633", + "createdBy": null, + "createdTime": "2026-02-02 04:50:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:22", + "echoMap": {}, + "alarmNo": "1830132168", + "alarmDate": "1769979015633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561562861", + "createdBy": null, + "createdTime": "2026-02-02 04:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:06", + "echoMap": {}, + "alarmNo": "1830132169", + "alarmDate": "1769979038188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561562937", + "createdBy": null, + "createdTime": "2026-02-02 04:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:53", + "echoMap": {}, + "alarmNo": "1830132170", + "alarmDate": "1769979045814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561563335", + "createdBy": null, + "createdTime": "2026-02-02 05:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:02", + "echoMap": {}, + "alarmNo": "1830132171", + "alarmDate": "1769979601408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113578856529974", + "createdBy": null, + "createdTime": "2026-02-02 05:00:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:44", + "echoMap": {}, + "alarmNo": "1830132172", + "alarmDate": "1769979611814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497217", + "createdBy": null, + "createdTime": "2026-02-02 05:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:36", + "echoMap": {}, + "alarmNo": "1830132173", + "alarmDate": "1769979618267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497387", + "createdBy": null, + "createdTime": "2026-02-02 05:00:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:40", + "echoMap": {}, + "alarmNo": "1830132174", + "alarmDate": "1769979633478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497552", + "createdBy": null, + "createdTime": "2026-02-02 05:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:01", + "echoMap": {}, + "alarmNo": "1830132175", + "alarmDate": "1769979649301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497845", + "createdBy": null, + "createdTime": "2026-02-02 05:09:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:02", + "echoMap": {}, + "alarmNo": "1830132176", + "alarmDate": "1769980195623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497943", + "createdBy": null, + "createdTime": "2026-02-02 05:10:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:05", + "echoMap": {}, + "alarmNo": "1830132177", + "alarmDate": "1769980203701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497945", + "createdBy": null, + "createdTime": "2026-02-02 05:10:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:11", + "echoMap": {}, + "alarmNo": "1830132178", + "alarmDate": "1769980203830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113587446464575", + "createdBy": null, + "createdTime": "2026-02-02 05:10:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:25", + "echoMap": {}, + "alarmNo": "1830132179", + "alarmDate": "1769980212539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113587446464605", + "createdBy": null, + "createdTime": "2026-02-02 05:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:22", + "echoMap": {}, + "alarmNo": "1830132180", + "alarmDate": "1769980215251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741431928", + "createdBy": null, + "createdTime": "2026-02-02 05:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:30", + "echoMap": {}, + "alarmNo": "1830132181", + "alarmDate": "1769980229417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741431995", + "createdBy": null, + "createdTime": "2026-02-02 05:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:50", + "echoMap": {}, + "alarmNo": "1830132182", + "alarmDate": "1769980236559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432355", + "createdBy": null, + "createdTime": "2026-02-02 05:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:28", + "echoMap": {}, + "alarmNo": "1830132183", + "alarmDate": "1769980791795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432364", + "createdBy": null, + "createdTime": "2026-02-02 05:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:05", + "echoMap": {}, + "alarmNo": "1830132184", + "alarmDate": "1769980792470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432370", + "createdBy": null, + "createdTime": "2026-02-02 05:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:09", + "echoMap": {}, + "alarmNo": "1830132185", + "alarmDate": "1769980792920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432548", + "createdBy": null, + "createdTime": "2026-02-02 05:20:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:41", + "echoMap": {}, + "alarmNo": "1830132186", + "alarmDate": "1769980806010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113596036399207", + "createdBy": null, + "createdTime": "2026-02-02 05:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:24", + "echoMap": {}, + "alarmNo": "1830132187", + "alarmDate": "1769980817583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366517", + "createdBy": null, + "createdTime": "2026-02-02 05:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:31", + "echoMap": {}, + "alarmNo": "1830132188", + "alarmDate": "1769980830090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366617", + "createdBy": null, + "createdTime": "2026-02-02 05:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:55", + "echoMap": {}, + "alarmNo": "1830132189", + "alarmDate": "1769980840969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366717", + "createdBy": null, + "createdTime": "2026-02-02 05:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:31", + "echoMap": {}, + "alarmNo": "1830132190", + "alarmDate": "1769980852006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366947", + "createdBy": null, + "createdTime": "2026-02-02 05:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:02", + "echoMap": {}, + "alarmNo": "1830132191", + "alarmDate": "1769981392843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331367002", + "createdBy": null, + "createdTime": "2026-02-02 05:29:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:09", + "echoMap": {}, + "alarmNo": "1830132192", + "alarmDate": "1769981395655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331367120", + "createdBy": null, + "createdTime": "2026-02-02 05:30:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:25", + "echoMap": {}, + "alarmNo": "1830132193", + "alarmDate": "1769981404922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113604626333789", + "createdBy": null, + "createdTime": "2026-02-02 05:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:28", + "echoMap": {}, + "alarmNo": "1830132194", + "alarmDate": "1769981414884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301147", + "createdBy": null, + "createdTime": "2026-02-02 05:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:48", + "echoMap": {}, + "alarmNo": "1830132195", + "alarmDate": "1769981428747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301223", + "createdBy": null, + "createdTime": "2026-02-02 05:30:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:36", + "echoMap": {}, + "alarmNo": "1830132196", + "alarmDate": "1769981435333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301240", + "createdBy": null, + "createdTime": "2026-02-02 05:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:37", + "echoMap": {}, + "alarmNo": "1830132197", + "alarmDate": "1769981436519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301294", + "createdBy": null, + "createdTime": "2026-02-02 05:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:25", + "echoMap": {}, + "alarmNo": "1830132198", + "alarmDate": "1769981441046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301334", + "createdBy": null, + "createdTime": "2026-02-02 05:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:57", + "echoMap": {}, + "alarmNo": "1830132199", + "alarmDate": "1769981444070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301410", + "createdBy": null, + "createdTime": "2026-02-02 05:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:54", + "echoMap": {}, + "alarmNo": "1830132200", + "alarmDate": "1769981450311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301643", + "createdBy": null, + "createdTime": "2026-02-02 05:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:04", + "echoMap": {}, + "alarmNo": "1830132201", + "alarmDate": "1769981992016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113613216268298", + "createdBy": null, + "createdTime": "2026-02-02 05:39:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:06", + "echoMap": {}, + "alarmNo": "1830132202", + "alarmDate": "1769981998635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113613216268397", + "createdBy": null, + "createdTime": "2026-02-02 05:40:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:19", + "echoMap": {}, + "alarmNo": "1830132203", + "alarmDate": "1769982007462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235602", + "createdBy": null, + "createdTime": "2026-02-02 05:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:11", + "echoMap": {}, + "alarmNo": "1830132204", + "alarmDate": "1769982010173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235675", + "createdBy": null, + "createdTime": "2026-02-02 05:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:36", + "echoMap": {}, + "alarmNo": "1830132205", + "alarmDate": "1769982017074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235766", + "createdBy": null, + "createdTime": "2026-02-02 05:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:32", + "echoMap": {}, + "alarmNo": "1830132206", + "alarmDate": "1769982024702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235863", + "createdBy": null, + "createdTime": "2026-02-02 05:40:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:00", + "echoMap": {}, + "alarmNo": "1830132207", + "alarmDate": "1769982032464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235997", + "createdBy": null, + "createdTime": "2026-02-02 05:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:49", + "echoMap": {}, + "alarmNo": "1830132208", + "alarmDate": "1769982044278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511236309", + "createdBy": null, + "createdTime": "2026-02-02 05:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:40", + "echoMap": {}, + "alarmNo": "1830132209", + "alarmDate": "1769982594048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113621806202989", + "createdBy": null, + "createdTime": "2026-02-02 05:50:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:04", + "echoMap": {}, + "alarmNo": "1830132210", + "alarmDate": "1769982602893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170244", + "createdBy": null, + "createdTime": "2026-02-02 05:50:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:24", + "echoMap": {}, + "alarmNo": "1830132211", + "alarmDate": "1769982611311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170253", + "createdBy": null, + "createdTime": "2026-02-02 05:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:24", + "echoMap": {}, + "alarmNo": "1830132212", + "alarmDate": "1769982611799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170498", + "createdBy": null, + "createdTime": "2026-02-02 05:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:50", + "echoMap": {}, + "alarmNo": "1830132213", + "alarmDate": "1769982635801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170575", + "createdBy": null, + "createdTime": "2026-02-02 05:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:04", + "echoMap": {}, + "alarmNo": "1830132214", + "alarmDate": "1769982643376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113630396137588", + "createdBy": null, + "createdTime": "2026-02-02 06:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:27", + "echoMap": {}, + "alarmNo": "1830132215", + "alarmDate": "1769983213919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691104790", + "createdBy": null, + "createdTime": "2026-02-02 06:00:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:17", + "echoMap": {}, + "alarmNo": "1830132216", + "alarmDate": "1769983216027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691104808", + "createdBy": null, + "createdTime": "2026-02-02 06:00:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:18", + "echoMap": {}, + "alarmNo": "1830132217", + "alarmDate": "1769983217345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691104858", + "createdBy": null, + "createdTime": "2026-02-02 06:00:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:28", + "echoMap": {}, + "alarmNo": "1830132218", + "alarmDate": "1769983221699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105084", + "createdBy": null, + "createdTime": "2026-02-02 06:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:44", + "echoMap": {}, + "alarmNo": "1830132219", + "alarmDate": "1769983242824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105137", + "createdBy": null, + "createdTime": "2026-02-02 06:00:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:16", + "echoMap": {}, + "alarmNo": "1830132220", + "alarmDate": "1769983247748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105386", + "createdBy": null, + "createdTime": "2026-02-02 06:09:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:52", + "echoMap": {}, + "alarmNo": "1830132221", + "alarmDate": "1769983791022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105400", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:18", + "echoMap": {}, + "alarmNo": "1830132222", + "alarmDate": "1769983792183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105401", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:22", + "echoMap": {}, + "alarmNo": "1830132223", + "alarmDate": "1769983792241", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105405", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:59", + "echoMap": {}, + "alarmNo": "1830132224", + "alarmDate": "1769983792436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105414", + "createdBy": null, + "createdTime": "2026-02-02 06:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:00", + "echoMap": {}, + "alarmNo": "1830132225", + "alarmDate": "1769983792999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039544", + "createdBy": null, + "createdTime": "2026-02-02 06:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:26", + "echoMap": {}, + "alarmNo": "1830132226", + "alarmDate": "1769983819004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039695", + "createdBy": null, + "createdTime": "2026-02-02 06:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:44", + "echoMap": {}, + "alarmNo": "1830132227", + "alarmDate": "1769983831370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039710", + "createdBy": null, + "createdTime": "2026-02-02 06:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:33", + "echoMap": {}, + "alarmNo": "1830132228", + "alarmDate": "1769983832454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039738", + "createdBy": null, + "createdTime": "2026-02-02 06:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:47", + "echoMap": {}, + "alarmNo": "1830132229", + "alarmDate": "1769983834424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039746", + "createdBy": null, + "createdTime": "2026-02-02 06:10:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:55", + "echoMap": {}, + "alarmNo": "1830132230", + "alarmDate": "1769983834959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039947", + "createdBy": null, + "createdTime": "2026-02-02 06:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:52", + "echoMap": {}, + "alarmNo": "1830132231", + "alarmDate": "1769983851698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113647576006716", + "createdBy": null, + "createdTime": "2026-02-02 06:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:56", + "echoMap": {}, + "alarmNo": "1830132232", + "alarmDate": "1769984391337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113647576006721", + "createdBy": null, + "createdTime": "2026-02-02 06:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:26", + "echoMap": {}, + "alarmNo": "1830132233", + "alarmDate": "1769984391757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974030", + "createdBy": null, + "createdTime": "2026-02-02 06:20:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:32", + "echoMap": {}, + "alarmNo": "1830132234", + "alarmDate": "1769984400803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974100", + "createdBy": null, + "createdTime": "2026-02-02 06:20:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:26", + "echoMap": {}, + "alarmNo": "1830132235", + "alarmDate": "1769984407166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974112", + "createdBy": null, + "createdTime": "2026-02-02 06:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:21", + "echoMap": {}, + "alarmNo": "1830132236", + "alarmDate": "1769984407768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974302", + "createdBy": null, + "createdTime": "2026-02-02 06:20:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:35", + "echoMap": {}, + "alarmNo": "1830132237", + "alarmDate": "1769984422353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974486", + "createdBy": null, + "createdTime": "2026-02-02 06:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:06", + "echoMap": {}, + "alarmNo": "1830132238", + "alarmDate": "1769984438766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974539", + "createdBy": null, + "createdTime": "2026-02-02 06:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:50", + "echoMap": {}, + "alarmNo": "1830132239", + "alarmDate": "1769984443897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974565", + "createdBy": null, + "createdTime": "2026-02-02 06:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:57", + "echoMap": {}, + "alarmNo": "1830132240", + "alarmDate": "1769984446293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974608", + "createdBy": null, + "createdTime": "2026-02-02 06:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:51", + "echoMap": {}, + "alarmNo": "1830132241", + "alarmDate": "1769984449723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908618", + "createdBy": null, + "createdTime": "2026-02-02 06:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:30", + "echoMap": {}, + "alarmNo": "1830132242", + "alarmDate": "1769984994320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908668", + "createdBy": null, + "createdTime": "2026-02-02 06:29:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:58", + "echoMap": {}, + "alarmNo": "1830132243", + "alarmDate": "1769984996834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908779", + "createdBy": null, + "createdTime": "2026-02-02 06:30:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:06", + "echoMap": {}, + "alarmNo": "1830132244", + "alarmDate": "1769985005088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908831", + "createdBy": null, + "createdTime": "2026-02-02 06:30:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:16", + "echoMap": {}, + "alarmNo": "1830132245", + "alarmDate": "1769985009568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908926", + "createdBy": null, + "createdTime": "2026-02-02 06:30:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:30", + "echoMap": {}, + "alarmNo": "1830132246", + "alarmDate": "1769985018023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908962", + "createdBy": null, + "createdTime": "2026-02-02 06:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:28", + "echoMap": {}, + "alarmNo": "1830132247", + "alarmDate": "1769985021008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908994", + "createdBy": null, + "createdTime": "2026-02-02 06:30:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:24", + "echoMap": {}, + "alarmNo": "1830132248", + "alarmDate": "1769985023495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909028", + "createdBy": null, + "createdTime": "2026-02-02 06:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:32", + "echoMap": {}, + "alarmNo": "1830132249", + "alarmDate": "1769985025943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909219", + "createdBy": null, + "createdTime": "2026-02-02 06:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:08", + "echoMap": {}, + "alarmNo": "1830132250", + "alarmDate": "1769985042013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909226", + "createdBy": null, + "createdTime": "2026-02-02 06:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:53", + "echoMap": {}, + "alarmNo": "1830132251", + "alarmDate": "1769985042571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909261", + "createdBy": null, + "createdTime": "2026-02-02 06:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:52", + "echoMap": {}, + "alarmNo": "1830132252", + "alarmDate": "1769985044994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843299", + "createdBy": null, + "createdTime": "2026-02-02 06:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:20", + "echoMap": {}, + "alarmNo": "1830132253", + "alarmDate": "1769985592250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843300", + "createdBy": null, + "createdTime": "2026-02-02 06:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:58", + "echoMap": {}, + "alarmNo": "1830132254", + "alarmDate": "1769985592324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843476", + "createdBy": null, + "createdTime": "2026-02-02 06:40:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:04", + "echoMap": {}, + "alarmNo": "1830132255", + "alarmDate": "1769985603249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843511", + "createdBy": null, + "createdTime": "2026-02-02 06:40:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:13", + "echoMap": {}, + "alarmNo": "1830132256", + "alarmDate": "1769985605717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843652", + "createdBy": null, + "createdTime": "2026-02-02 06:40:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:29", + "echoMap": {}, + "alarmNo": "1830132257", + "alarmDate": "1769985616384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843716", + "createdBy": null, + "createdTime": "2026-02-02 06:40:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:33", + "echoMap": {}, + "alarmNo": "1830132258", + "alarmDate": "1769985621215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113673345810491", + "createdBy": null, + "createdTime": "2026-02-02 06:40:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:45", + "echoMap": {}, + "alarmNo": "1830132259", + "alarmDate": "1769985639402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113673345810505", + "createdBy": null, + "createdTime": "2026-02-02 06:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:46", + "echoMap": {}, + "alarmNo": "1830132260", + "alarmDate": "1769985640413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113673345810534", + "createdBy": null, + "createdTime": "2026-02-02 06:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:48", + "echoMap": {}, + "alarmNo": "1830132261", + "alarmDate": "1769985642490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640777742", + "createdBy": null, + "createdTime": "2026-02-02 06:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:13", + "echoMap": {}, + "alarmNo": "1830132262", + "alarmDate": "1769985644853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778019", + "createdBy": null, + "createdTime": "2026-02-02 06:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:10", + "echoMap": {}, + "alarmNo": "1830132263", + "alarmDate": "1769986189672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778157", + "createdBy": null, + "createdTime": "2026-02-02 06:50:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:13", + "echoMap": {}, + "alarmNo": "1830132264", + "alarmDate": "1769986200445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778303", + "createdBy": null, + "createdTime": "2026-02-02 06:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:18", + "echoMap": {}, + "alarmNo": "1830132265", + "alarmDate": "1769986211667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778417", + "createdBy": null, + "createdTime": "2026-02-02 06:50:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:28", + "echoMap": {}, + "alarmNo": "1830132266", + "alarmDate": "1769986221707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778461", + "createdBy": null, + "createdTime": "2026-02-02 06:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1830132267", + "alarmDate": "1769986225561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113681935745069", + "createdBy": null, + "createdTime": "2026-02-02 06:50:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:31", + "echoMap": {}, + "alarmNo": "1830132268", + "alarmDate": "1769986230410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113681935745092", + "createdBy": null, + "createdTime": "2026-02-02 06:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:38", + "echoMap": {}, + "alarmNo": "1830132269", + "alarmDate": "1769986232171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712337", + "createdBy": null, + "createdTime": "2026-02-02 06:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:24", + "echoMap": {}, + "alarmNo": "1830132270", + "alarmDate": "1769986237703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712449", + "createdBy": null, + "createdTime": "2026-02-02 06:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:48", + "echoMap": {}, + "alarmNo": "1830132271", + "alarmDate": "1769986246732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712451", + "createdBy": null, + "createdTime": "2026-02-02 06:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:27", + "echoMap": {}, + "alarmNo": "1830132272", + "alarmDate": "1769986246807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712711", + "createdBy": null, + "createdTime": "2026-02-02 06:59:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:54", + "echoMap": {}, + "alarmNo": "1830132273", + "alarmDate": "1769986790887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712722", + "createdBy": null, + "createdTime": "2026-02-02 06:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:01", + "echoMap": {}, + "alarmNo": "1830132274", + "alarmDate": "1769986791847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712815", + "createdBy": null, + "createdTime": "2026-02-02 06:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:58", + "echoMap": {}, + "alarmNo": "1830132275", + "alarmDate": "1769986796933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712917", + "createdBy": null, + "createdTime": "2026-02-02 07:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:05", + "echoMap": {}, + "alarmNo": "1830132276", + "alarmDate": "1769986804205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712920", + "createdBy": null, + "createdTime": "2026-02-02 07:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:11", + "echoMap": {}, + "alarmNo": "1830132277", + "alarmDate": "1769986804363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712958", + "createdBy": null, + "createdTime": "2026-02-02 07:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:14", + "echoMap": {}, + "alarmNo": "1830132278", + "alarmDate": "1769986806925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230713055", + "createdBy": null, + "createdTime": "2026-02-02 07:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:33", + "echoMap": {}, + "alarmNo": "1830132279", + "alarmDate": "1769986813877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820646926", + "createdBy": null, + "createdTime": "2026-02-02 07:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:35", + "echoMap": {}, + "alarmNo": "1830132280", + "alarmDate": "1769986833969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647032", + "createdBy": null, + "createdTime": "2026-02-02 07:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:49", + "echoMap": {}, + "alarmNo": "1830132281", + "alarmDate": "1769986843047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647055", + "createdBy": null, + "createdTime": "2026-02-02 07:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:35", + "echoMap": {}, + "alarmNo": "1830132282", + "alarmDate": "1769986844883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647357", + "createdBy": null, + "createdTime": "2026-02-02 07:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:59", + "echoMap": {}, + "alarmNo": "1830132283", + "alarmDate": "1769987392226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647463", + "createdBy": null, + "createdTime": "2026-02-02 07:09:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:04", + "echoMap": {}, + "alarmNo": "1830132284", + "alarmDate": "1769987398152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647465", + "createdBy": null, + "createdTime": "2026-02-02 07:09:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:04", + "echoMap": {}, + "alarmNo": "1830132285", + "alarmDate": "1769987398184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113699115614214", + "createdBy": null, + "createdTime": "2026-02-02 07:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:23", + "echoMap": {}, + "alarmNo": "1830132286", + "alarmDate": "1769987417171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113699115614231", + "createdBy": null, + "createdTime": "2026-02-02 07:10:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:25", + "echoMap": {}, + "alarmNo": "1830132287", + "alarmDate": "1769987418378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113703410581755", + "createdBy": null, + "createdTime": "2026-02-02 07:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:07", + "echoMap": {}, + "alarmNo": "1830132288", + "alarmDate": "1769987447179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113703410582159", + "createdBy": null, + "createdTime": "2026-02-02 07:20:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:08", + "echoMap": {}, + "alarmNo": "1830132289", + "alarmDate": "1769988001563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113707705548829", + "createdBy": null, + "createdTime": "2026-02-02 07:20:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:11", + "echoMap": {}, + "alarmNo": "1830132290", + "alarmDate": "1769988010193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516101", + "createdBy": null, + "createdTime": "2026-02-02 07:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:31", + "echoMap": {}, + "alarmNo": "1830132291", + "alarmDate": "1769988018450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516133", + "createdBy": null, + "createdTime": "2026-02-02 07:20:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:17", + "echoMap": {}, + "alarmNo": "1830132292", + "alarmDate": "1769988020879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516225", + "createdBy": null, + "createdTime": "2026-02-02 07:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:34", + "echoMap": {}, + "alarmNo": "1830132293", + "alarmDate": "1769988027714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516332", + "createdBy": null, + "createdTime": "2026-02-02 07:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:42", + "echoMap": {}, + "alarmNo": "1830132294", + "alarmDate": "1769988035578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516338", + "createdBy": null, + "createdTime": "2026-02-02 07:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:37", + "echoMap": {}, + "alarmNo": "1830132295", + "alarmDate": "1769988035833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516406", + "createdBy": null, + "createdTime": "2026-02-02 07:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:42", + "echoMap": {}, + "alarmNo": "1830132296", + "alarmDate": "1769988040737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516455", + "createdBy": null, + "createdTime": "2026-02-02 07:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:55", + "echoMap": {}, + "alarmNo": "1830132297", + "alarmDate": "1769988044466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516757", + "createdBy": null, + "createdTime": "2026-02-02 07:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:02", + "echoMap": {}, + "alarmNo": "1830132298", + "alarmDate": "1769988591820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516773", + "createdBy": null, + "createdTime": "2026-02-02 07:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:01", + "echoMap": {}, + "alarmNo": "1830132299", + "alarmDate": "1769988592813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516815", + "createdBy": null, + "createdTime": "2026-02-02 07:29:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:56", + "echoMap": {}, + "alarmNo": "1830132300", + "alarmDate": "1769988594774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450692", + "createdBy": null, + "createdTime": "2026-02-02 07:30:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:19", + "echoMap": {}, + "alarmNo": "1830132301", + "alarmDate": "1769988606666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450743", + "createdBy": null, + "createdTime": "2026-02-02 07:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:12", + "echoMap": {}, + "alarmNo": "1830132302", + "alarmDate": "1769988610672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450785", + "createdBy": null, + "createdTime": "2026-02-02 07:30:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:26", + "echoMap": {}, + "alarmNo": "1830132303", + "alarmDate": "1769988613892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450919", + "createdBy": null, + "createdTime": "2026-02-02 07:30:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:07", + "echoMap": {}, + "alarmNo": "1830132304", + "alarmDate": "1769988624868", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450969", + "createdBy": null, + "createdTime": "2026-02-02 07:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:49", + "echoMap": {}, + "alarmNo": "1830132305", + "alarmDate": "1769988629149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451074", + "createdBy": null, + "createdTime": "2026-02-02 07:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:07", + "echoMap": {}, + "alarmNo": "1830132306", + "alarmDate": "1769988637787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451094", + "createdBy": null, + "createdTime": "2026-02-02 07:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:13", + "echoMap": {}, + "alarmNo": "1830132307", + "alarmDate": "1769988639157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451113", + "createdBy": null, + "createdTime": "2026-02-02 07:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:40", + "echoMap": {}, + "alarmNo": "1830132308", + "alarmDate": "1769988640466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451475", + "createdBy": null, + "createdTime": "2026-02-02 07:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:06", + "echoMap": {}, + "alarmNo": "1830132309", + "alarmDate": "1769989191621", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451554", + "createdBy": null, + "createdTime": "2026-02-02 07:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:10", + "echoMap": {}, + "alarmNo": "1830132310", + "alarmDate": "1769989197081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113724885417987", + "createdBy": null, + "createdTime": "2026-02-02 07:40:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:22", + "echoMap": {}, + "alarmNo": "1830132311", + "alarmDate": "1769989201421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385404", + "createdBy": null, + "createdTime": "2026-02-02 07:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:35", + "echoMap": {}, + "alarmNo": "1830132312", + "alarmDate": "1769989222039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385440", + "createdBy": null, + "createdTime": "2026-02-02 07:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:31", + "echoMap": {}, + "alarmNo": "1830132313", + "alarmDate": "1769989225023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385551", + "createdBy": null, + "createdTime": "2026-02-02 07:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:24", + "echoMap": {}, + "alarmNo": "1830132314", + "alarmDate": "1769989234501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385649", + "createdBy": null, + "createdTime": "2026-02-02 07:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:44", + "echoMap": {}, + "alarmNo": "1830132315", + "alarmDate": "1769989242790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385734", + "createdBy": null, + "createdTime": "2026-02-02 07:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:55", + "echoMap": {}, + "alarmNo": "1830132316", + "alarmDate": "1769989251093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180386044", + "createdBy": null, + "createdTime": "2026-02-02 07:49:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:10", + "echoMap": {}, + "alarmNo": "1830132317", + "alarmDate": "1769989797363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770319898", + "createdBy": null, + "createdTime": "2026-02-02 07:50:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:26", + "echoMap": {}, + "alarmNo": "1830132318", + "alarmDate": "1769989813259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770319941", + "createdBy": null, + "createdTime": "2026-02-02 07:50:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:17", + "echoMap": {}, + "alarmNo": "1830132319", + "alarmDate": "1769989816545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320036", + "createdBy": null, + "createdTime": "2026-02-02 07:50:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:29", + "echoMap": {}, + "alarmNo": "1830132320", + "alarmDate": "1769989823487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320187", + "createdBy": null, + "createdTime": "2026-02-02 07:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:43", + "echoMap": {}, + "alarmNo": "1830132321", + "alarmDate": "1769989835893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320219", + "createdBy": null, + "createdTime": "2026-02-02 07:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:45", + "echoMap": {}, + "alarmNo": "1830132322", + "alarmDate": "1769989838450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320235", + "createdBy": null, + "createdTime": "2026-02-02 07:50:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:40", + "echoMap": {}, + "alarmNo": "1830132323", + "alarmDate": "1769989839409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320327", + "createdBy": null, + "createdTime": "2026-02-02 07:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:47", + "echoMap": {}, + "alarmNo": "1830132324", + "alarmDate": "1769989846537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320581", + "createdBy": null, + "createdTime": "2026-02-02 07:59:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:59", + "echoMap": {}, + "alarmNo": "1830132325", + "alarmDate": "1769990390134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060028", + "deviceName": "[104](10)新江湾上行1-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320633", + "createdBy": null, + "createdTime": "2026-02-02 07:59:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:14", + "echoMap": {}, + "alarmNo": "1830132326", + "alarmDate": "1769990394556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320686", + "createdBy": null, + "createdTime": "2026-02-02 07:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:16", + "echoMap": {}, + "alarmNo": "1830132327", + "alarmDate": "1769990397134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113742065287194", + "createdBy": null, + "createdTime": "2026-02-02 08:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:03", + "echoMap": {}, + "alarmNo": "1830132328", + "alarmDate": "1769990401598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254517", + "createdBy": null, + "createdTime": "2026-02-02 08:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:14", + "echoMap": {}, + "alarmNo": "1830132329", + "alarmDate": "1769990414003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060064", + "deviceName": "[124](10)新江湾下行2-2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254578", + "createdBy": null, + "createdTime": "2026-02-02 08:00:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:44", + "echoMap": {}, + "alarmNo": "1830132330", + "alarmDate": "1769990419395", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254649", + "createdBy": null, + "createdTime": "2026-02-02 08:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:38", + "echoMap": {}, + "alarmNo": "1830132331", + "alarmDate": "1769990425658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254694", + "createdBy": null, + "createdTime": "2026-02-02 08:00:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:36", + "echoMap": {}, + "alarmNo": "1830132332", + "alarmDate": "1769990429264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254936", + "createdBy": null, + "createdTime": "2026-02-02 08:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:16", + "echoMap": {}, + "alarmNo": "1830132333", + "alarmDate": "1769990450653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254938", + "createdBy": null, + "createdTime": "2026-02-02 08:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:56", + "echoMap": {}, + "alarmNo": "1830132334", + "alarmDate": "1769990450812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360255162", + "createdBy": null, + "createdTime": "2026-02-02 08:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:02", + "echoMap": {}, + "alarmNo": "1830132335", + "alarmDate": "1769990991672", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189069", + "createdBy": null, + "createdTime": "2026-02-02 08:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:26", + "echoMap": {}, + "alarmNo": "1830132336", + "alarmDate": "1769991019614", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189099", + "createdBy": null, + "createdTime": "2026-02-02 08:10:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:23", + "echoMap": {}, + "alarmNo": "1830132337", + "alarmDate": "1769991022397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189156", + "createdBy": null, + "createdTime": "2026-02-02 08:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:34", + "echoMap": {}, + "alarmNo": "1830132338", + "alarmDate": "1769991027976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189251", + "createdBy": null, + "createdTime": "2026-02-02 08:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:47", + "echoMap": {}, + "alarmNo": "1830132339", + "alarmDate": "1769991039806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189273", + "createdBy": null, + "createdTime": "2026-02-02 08:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:47", + "echoMap": {}, + "alarmNo": "1830132340", + "alarmDate": "1769991042305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189334", + "createdBy": null, + "createdTime": "2026-02-02 08:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:50", + "echoMap": {}, + "alarmNo": "1830132341", + "alarmDate": "1769991049129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189558", + "createdBy": null, + "createdTime": "2026-02-02 08:19:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:56", + "echoMap": {}, + "alarmNo": "1830132342", + "alarmDate": "1769991590183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189571", + "createdBy": null, + "createdTime": "2026-02-02 08:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:02", + "echoMap": {}, + "alarmNo": "1830132343", + "alarmDate": "1769991591945", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189659", + "createdBy": null, + "createdTime": "2026-02-02 08:19:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:58", + "echoMap": {}, + "alarmNo": "1830132344", + "alarmDate": "1769991597204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189774", + "createdBy": null, + "createdTime": "2026-02-02 08:20:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:13", + "echoMap": {}, + "alarmNo": "1830132345", + "alarmDate": "1769991607183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189862", + "createdBy": null, + "createdTime": "2026-02-02 08:20:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:16", + "echoMap": {}, + "alarmNo": "1830132346", + "alarmDate": "1769991615045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189894", + "createdBy": null, + "createdTime": "2026-02-02 08:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:09", + "echoMap": {}, + "alarmNo": "1830132347", + "alarmDate": "1769991617850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113759245156375", + "createdBy": null, + "createdTime": "2026-02-02 08:20:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:50", + "echoMap": {}, + "alarmNo": "1830132348", + "alarmDate": "1769991620002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113759245156381", + "createdBy": null, + "createdTime": "2026-02-02 08:20:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:32", + "echoMap": {}, + "alarmNo": "1830132349", + "alarmDate": "1769991620328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113763540123874", + "createdBy": null, + "createdTime": "2026-02-02 08:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:31", + "echoMap": {}, + "alarmNo": "1830132351", + "alarmDate": "1769991645355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113763540123873", + "createdBy": null, + "createdTime": "2026-02-02 08:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:30", + "echoMap": {}, + "alarmNo": "1830132350", + "alarmDate": "1769991645355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113763540123955", + "createdBy": null, + "createdTime": "2026-02-02 08:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:08", + "echoMap": {}, + "alarmNo": "1830132352", + "alarmDate": "1769991652300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130058656", + "createdBy": null, + "createdTime": "2026-02-02 08:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:02", + "echoMap": {}, + "alarmNo": "1830132353", + "alarmDate": "1769992796505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130058728", + "createdBy": null, + "createdTime": "2026-02-02 08:40:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:03", + "echoMap": {}, + "alarmNo": "1830132354", + "alarmDate": "1769992802266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130058997", + "createdBy": null, + "createdTime": "2026-02-02 08:40:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:35", + "echoMap": {}, + "alarmNo": "1830132355", + "alarmDate": "1769992828608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130059003", + "createdBy": null, + "createdTime": "2026-02-02 08:40:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:30", + "echoMap": {}, + "alarmNo": "1830132356", + "alarmDate": "1769992828908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113776425025568", + "createdBy": null, + "createdTime": "2026-02-02 08:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:43", + "echoMap": {}, + "alarmNo": "1830132357", + "alarmDate": "1769992841730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113780719993063", + "createdBy": null, + "createdTime": "2026-02-02 08:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:05", + "echoMap": {}, + "alarmNo": "1830132358", + "alarmDate": "1769993392795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113780719993068", + "createdBy": null, + "createdTime": "2026-02-02 08:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:25", + "echoMap": {}, + "alarmNo": "1830132359", + "alarmDate": "1769993393055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113780719993672", + "createdBy": null, + "createdTime": "2026-02-02 08:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:01", + "echoMap": {}, + "alarmNo": "1830132360", + "alarmDate": "1769993438127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309927852", + "createdBy": null, + "createdTime": "2026-02-02 09:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:46", + "echoMap": {}, + "alarmNo": "1830132361", + "alarmDate": "1769994007611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309927931", + "createdBy": null, + "createdTime": "2026-02-02 09:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:15", + "echoMap": {}, + "alarmNo": "1830132362", + "alarmDate": "1769994014303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928044", + "createdBy": null, + "createdTime": "2026-02-02 09:00:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:31", + "echoMap": {}, + "alarmNo": "1830132363", + "alarmDate": "1769994024157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928062", + "createdBy": null, + "createdTime": "2026-02-02 09:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:31", + "echoMap": {}, + "alarmNo": "1830132364", + "alarmDate": "1769994025394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928179", + "createdBy": null, + "createdTime": "2026-02-02 09:00:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:36", + "echoMap": {}, + "alarmNo": "1830132365", + "alarmDate": "1769994034748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928288", + "createdBy": null, + "createdTime": "2026-02-02 09:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:50", + "echoMap": {}, + "alarmNo": "1830132366", + "alarmDate": "1769994044278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862138", + "createdBy": null, + "createdTime": "2026-02-02 09:09:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:46", + "echoMap": {}, + "alarmNo": "1830132368", + "alarmDate": "1769994590071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862365", + "createdBy": null, + "createdTime": "2026-02-02 09:10:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:10", + "echoMap": {}, + "alarmNo": "1830132369", + "alarmDate": "1769994608485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862425", + "createdBy": null, + "createdTime": "2026-02-02 09:10:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:20", + "echoMap": {}, + "alarmNo": "1830132370", + "alarmDate": "1769994613687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862507", + "createdBy": null, + "createdTime": "2026-02-02 09:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:21", + "echoMap": {}, + "alarmNo": "1830132371", + "alarmDate": "1769994620450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862831", + "createdBy": null, + "createdTime": "2026-02-02 09:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:03", + "echoMap": {}, + "alarmNo": "1830132372", + "alarmDate": "1769994648761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113806489796734", + "createdBy": null, + "createdTime": "2026-02-02 09:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:01", + "echoMap": {}, + "alarmNo": "1830132373", + "alarmDate": "1769995192824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113806489797052", + "createdBy": null, + "createdTime": "2026-02-02 09:20:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:27", + "echoMap": {}, + "alarmNo": "1830132374", + "alarmDate": "1769995221011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113806489797150", + "createdBy": null, + "createdTime": "2026-02-02 09:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:36", + "echoMap": {}, + "alarmNo": "1830132375", + "alarmDate": "1769995229956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113810784764006", + "createdBy": null, + "createdTime": "2026-02-02 09:29:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:38", + "echoMap": {}, + "alarmNo": "1830132376", + "alarmDate": "1769995791399", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731219", + "createdBy": null, + "createdTime": "2026-02-02 09:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:06", + "echoMap": {}, + "alarmNo": "1830132377", + "alarmDate": "1769995794190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731481", + "createdBy": null, + "createdTime": "2026-02-02 09:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:16", + "echoMap": {}, + "alarmNo": "1830132378", + "alarmDate": "1769995814601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731526", + "createdBy": null, + "createdTime": "2026-02-02 09:30:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:19", + "echoMap": {}, + "alarmNo": "1830132379", + "alarmDate": "1769995818173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731617", + "createdBy": null, + "createdTime": "2026-02-02 09:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:31", + "echoMap": {}, + "alarmNo": "1830132380", + "alarmDate": "1769995826181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731770", + "createdBy": null, + "createdTime": "2026-02-02 09:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:45", + "echoMap": {}, + "alarmNo": "1830132381", + "alarmDate": "1769995839333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731794", + "createdBy": null, + "createdTime": "2026-02-02 09:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:42", + "echoMap": {}, + "alarmNo": "1830132382", + "alarmDate": "1769995841136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731835", + "createdBy": null, + "createdTime": "2026-02-02 09:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:49", + "echoMap": {}, + "alarmNo": "1830132383", + "alarmDate": "1769995844234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669665830", + "createdBy": null, + "createdTime": "2026-02-02 09:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:09", + "echoMap": {}, + "alarmNo": "1830132384", + "alarmDate": "1769996395558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669665845", + "createdBy": null, + "createdTime": "2026-02-02 09:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:10", + "echoMap": {}, + "alarmNo": "1830132385", + "alarmDate": "1769996396526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669665859", + "createdBy": null, + "createdTime": "2026-02-02 09:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:39:58", + "echoMap": {}, + "alarmNo": "1830132386", + "alarmDate": "1769996397352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669666049", + "createdBy": null, + "createdTime": "2026-02-02 09:40:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:18", + "echoMap": {}, + "alarmNo": "1830132387", + "alarmDate": "1769996411498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669666159", + "createdBy": null, + "createdTime": "2026-02-02 09:40:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:31", + "echoMap": {}, + "alarmNo": "1830132388", + "alarmDate": "1769996420601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669666453", + "createdBy": null, + "createdTime": "2026-02-02 09:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:31", + "echoMap": {}, + "alarmNo": "1830132389", + "alarmDate": "1769996445554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259600772", + "createdBy": null, + "createdTime": "2026-02-02 09:50:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:50", + "echoMap": {}, + "alarmNo": "1830132390", + "alarmDate": "1769997013875", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259600828", + "createdBy": null, + "createdTime": "2026-02-02 09:50:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:49", + "echoMap": {}, + "alarmNo": "1830132391", + "alarmDate": "1769997018470", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259601171", + "createdBy": null, + "createdTime": "2026-02-02 09:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:48", + "echoMap": {}, + "alarmNo": "1830132392", + "alarmDate": "1769997047104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259601207", + "createdBy": null, + "createdTime": "2026-02-02 09:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:22", + "echoMap": {}, + "alarmNo": "1830132393", + "alarmDate": "1769997051447", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535039", + "createdBy": null, + "createdTime": "2026-02-02 09:59:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:28", + "echoMap": {}, + "alarmNo": "1830132394", + "alarmDate": "1769997589986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535051", + "createdBy": null, + "createdTime": "2026-02-02 09:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:37", + "echoMap": {}, + "alarmNo": "1830132395", + "alarmDate": "1769997591743", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535113", + "createdBy": null, + "createdTime": "2026-02-02 09:59:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:56", + "echoMap": {}, + "alarmNo": "1830132396", + "alarmDate": "1769997595397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535406", + "createdBy": null, + "createdTime": "2026-02-02 10:00:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:22", + "echoMap": {}, + "alarmNo": "1830132397", + "alarmDate": "1769997620826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535424", + "createdBy": null, + "createdTime": "2026-02-02 10:00:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:23", + "echoMap": {}, + "alarmNo": "1830132398", + "alarmDate": "1769997622009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535442", + "createdBy": null, + "createdTime": "2026-02-02 10:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:29", + "echoMap": {}, + "alarmNo": "1830132399", + "alarmDate": "1769997623284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535475", + "createdBy": null, + "createdTime": "2026-02-02 10:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:27", + "echoMap": {}, + "alarmNo": "1830132400", + "alarmDate": "1769997625955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535587", + "createdBy": null, + "createdTime": "2026-02-02 10:00:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:41", + "echoMap": {}, + "alarmNo": "1830132401", + "alarmDate": "1769997635162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113849439469769", + "createdBy": null, + "createdTime": "2026-02-02 10:09:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:07", + "echoMap": {}, + "alarmNo": "1830132402", + "alarmDate": "1769998194614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113849439469798", + "createdBy": null, + "createdTime": "2026-02-02 10:09:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:01", + "echoMap": {}, + "alarmNo": "1830132403", + "alarmDate": "1769998195375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113849439470094", + "createdBy": null, + "createdTime": "2026-02-02 10:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:33", + "echoMap": {}, + "alarmNo": "1830132404", + "alarmDate": "1769998219657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113858029404397", + "createdBy": null, + "createdTime": "2026-02-02 10:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:54", + "echoMap": {}, + "alarmNo": "1830132405", + "alarmDate": "1769998792672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113858029404777", + "createdBy": null, + "createdTime": "2026-02-02 10:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:29", + "echoMap": {}, + "alarmNo": "1830132406", + "alarmDate": "1769998827904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113858029404862", + "createdBy": null, + "createdTime": "2026-02-02 10:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:42", + "echoMap": {}, + "alarmNo": "1830132407", + "alarmDate": "1769998836027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619338923", + "createdBy": null, + "createdTime": "2026-02-02 10:30:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:01", + "echoMap": {}, + "alarmNo": "1830132408", + "alarmDate": "1769999399763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619338945", + "createdBy": null, + "createdTime": "2026-02-02 10:30:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:03", + "echoMap": {}, + "alarmNo": "1830132409", + "alarmDate": "1769999401504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619339183", + "createdBy": null, + "createdTime": "2026-02-02 10:30:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:24", + "echoMap": {}, + "alarmNo": "1830132410", + "alarmDate": "1769999422784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619339222", + "createdBy": null, + "createdTime": "2026-02-02 10:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:32", + "echoMap": {}, + "alarmNo": "1830132411", + "alarmDate": "1769999426038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619339241", + "createdBy": null, + "createdTime": "2026-02-02 10:30:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:34", + "echoMap": {}, + "alarmNo": "1830132412", + "alarmDate": "1769999427374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273369", + "createdBy": null, + "createdTime": "2026-02-02 10:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:15", + "echoMap": {}, + "alarmNo": "1830132413", + "alarmDate": "1769999991050", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273387", + "createdBy": null, + "createdTime": "2026-02-02 10:39:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:03", + "echoMap": {}, + "alarmNo": "1830132414", + "alarmDate": "1769999992696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273401", + "createdBy": null, + "createdTime": "2026-02-02 10:39:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:04", + "echoMap": {}, + "alarmNo": "1830132415", + "alarmDate": "1769999993723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273413", + "createdBy": null, + "createdTime": "2026-02-02 10:39:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:06", + "echoMap": {}, + "alarmNo": "1830132416", + "alarmDate": "1769999994223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273767", + "createdBy": null, + "createdTime": "2026-02-02 10:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:35", + "echoMap": {}, + "alarmNo": "1830132417", + "alarmDate": "1770000021737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208128", + "createdBy": null, + "createdTime": "2026-02-02 10:50:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:10", + "echoMap": {}, + "alarmNo": "1830132418", + "alarmDate": "1770000604130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208168", + "createdBy": null, + "createdTime": "2026-02-02 10:50:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:09", + "echoMap": {}, + "alarmNo": "1830132419", + "alarmDate": "1770000607626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208331", + "createdBy": null, + "createdTime": "2026-02-02 10:50:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:35", + "echoMap": {}, + "alarmNo": "1830132420", + "alarmDate": "1770000623082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208335", + "createdBy": null, + "createdTime": "2026-02-02 10:50:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:30", + "echoMap": {}, + "alarmNo": "1830132421", + "alarmDate": "1770000623379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208411", + "createdBy": null, + "createdTime": "2026-02-02 10:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:30", + "echoMap": {}, + "alarmNo": "1830132422", + "alarmDate": "1770000629470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208472", + "createdBy": null, + "createdTime": "2026-02-02 10:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:36", + "echoMap": {}, + "alarmNo": "1830132423", + "alarmDate": "1770000635154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208522", + "createdBy": null, + "createdTime": "2026-02-02 10:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:30", + "echoMap": {}, + "alarmNo": "1830132424", + "alarmDate": "1770000639919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113892389142613", + "createdBy": null, + "createdTime": "2026-02-02 10:59:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:06", + "echoMap": {}, + "alarmNo": "1830132425", + "alarmDate": "1770001193734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113892389142947", + "createdBy": null, + "createdTime": "2026-02-02 11:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:24", + "echoMap": {}, + "alarmNo": "1830132426", + "alarmDate": "1770001222656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113892389143246", + "createdBy": null, + "createdTime": "2026-02-02 11:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:59", + "echoMap": {}, + "alarmNo": "1830132427", + "alarmDate": "1770001248848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077139", + "createdBy": null, + "createdTime": "2026-02-02 11:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:59", + "echoMap": {}, + "alarmNo": "1830132428", + "alarmDate": "1770001792714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077418", + "createdBy": null, + "createdTime": "2026-02-02 11:10:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:16", + "echoMap": {}, + "alarmNo": "1830132429", + "alarmDate": "1770001815675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077699", + "createdBy": null, + "createdTime": "2026-02-02 11:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:42", + "echoMap": {}, + "alarmNo": "1830132430", + "alarmDate": "1770001841164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077731", + "createdBy": null, + "createdTime": "2026-02-02 11:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:56", + "echoMap": {}, + "alarmNo": "1830132431", + "alarmDate": "1770001843908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077780", + "createdBy": null, + "createdTime": "2026-02-02 11:10:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:06", + "echoMap": {}, + "alarmNo": "1830132432", + "alarmDate": "1770001848229", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569011816", + "createdBy": null, + "createdTime": "2026-02-02 11:20:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:07", + "echoMap": {}, + "alarmNo": "1830132433", + "alarmDate": "1770002406200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569011905", + "createdBy": null, + "createdTime": "2026-02-02 11:20:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:17", + "echoMap": {}, + "alarmNo": "1830132434", + "alarmDate": "1770002415724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569012096", + "createdBy": null, + "createdTime": "2026-02-02 11:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:13", + "echoMap": {}, + "alarmNo": "1830132435", + "alarmDate": "1770002436442", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569012461", + "createdBy": null, + "createdTime": "2026-02-02 11:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:57", + "echoMap": {}, + "alarmNo": "1830132436", + "alarmDate": "1770002992083", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060069", + "deviceName": "[340](10)新江湾7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569012471", + "createdBy": null, + "createdTime": "2026-02-02 11:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:55", + "echoMap": {}, + "alarmNo": "1830132437", + "alarmDate": "1770002992669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158946445", + "createdBy": null, + "createdTime": "2026-02-02 11:30:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:18", + "echoMap": {}, + "alarmNo": "1830132438", + "alarmDate": "1770003016551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158946567", + "createdBy": null, + "createdTime": "2026-02-02 11:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:42", + "echoMap": {}, + "alarmNo": "1830132439", + "alarmDate": "1770003028458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158946746", + "createdBy": null, + "createdTime": "2026-02-02 11:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:51", + "echoMap": {}, + "alarmNo": "1830132440", + "alarmDate": "1770003044697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158947030", + "createdBy": null, + "createdTime": "2026-02-02 11:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:25", + "echoMap": {}, + "alarmNo": "1830132441", + "alarmDate": "1770003591771", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158947044", + "createdBy": null, + "createdTime": "2026-02-02 11:39:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:02", + "echoMap": {}, + "alarmNo": "1830132442", + "alarmDate": "1770003592873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113922453913687", + "createdBy": null, + "createdTime": "2026-02-02 11:40:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:29", + "echoMap": {}, + "alarmNo": "1830132443", + "alarmDate": "1770003602929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881101", + "createdBy": null, + "createdTime": "2026-02-02 11:40:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:22", + "echoMap": {}, + "alarmNo": "1830132444", + "alarmDate": "1770003620977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881262", + "createdBy": null, + "createdTime": "2026-02-02 11:40:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:35", + "echoMap": {}, + "alarmNo": "1830132445", + "alarmDate": "1770003633837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881356", + "createdBy": null, + "createdTime": "2026-02-02 11:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:52", + "echoMap": {}, + "alarmNo": "1830132446", + "alarmDate": "1770003642011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881368", + "createdBy": null, + "createdTime": "2026-02-02 11:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:07", + "echoMap": {}, + "alarmNo": "1830132447", + "alarmDate": "1770003642781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881431", + "createdBy": null, + "createdTime": "2026-02-02 11:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:48", + "echoMap": {}, + "alarmNo": "1830132448", + "alarmDate": "1770003647453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113931043848246", + "createdBy": null, + "createdTime": "2026-02-02 11:49:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:57", + "echoMap": {}, + "alarmNo": "1830132449", + "alarmDate": "1770004195588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113935338815656", + "createdBy": null, + "createdTime": "2026-02-02 11:50:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:22", + "echoMap": {}, + "alarmNo": "1830132450", + "alarmDate": "1770004215101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113935338815987", + "createdBy": null, + "createdTime": "2026-02-02 11:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:52", + "echoMap": {}, + "alarmNo": "1830132451", + "alarmDate": "1770004247174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113939633782817", + "createdBy": null, + "createdTime": "2026-02-02 11:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:14", + "echoMap": {}, + "alarmNo": "1830132452", + "alarmDate": "1770004791741", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750185", + "createdBy": null, + "createdTime": "2026-02-02 12:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:20", + "echoMap": {}, + "alarmNo": "1830132453", + "alarmDate": "1770004806488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750248", + "createdBy": null, + "createdTime": "2026-02-02 12:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:12", + "echoMap": {}, + "alarmNo": "1830132454", + "alarmDate": "1770004811419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750620", + "createdBy": null, + "createdTime": "2026-02-02 12:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:50", + "echoMap": {}, + "alarmNo": "1830132455", + "alarmDate": "1770004843632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750715", + "createdBy": null, + "createdTime": "2026-02-02 12:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:02", + "echoMap": {}, + "alarmNo": "1830132456", + "alarmDate": "1770004852532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518684849", + "createdBy": null, + "createdTime": "2026-02-02 12:10:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:12", + "echoMap": {}, + "alarmNo": "1830132457", + "alarmDate": "1770005410656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518684926", + "createdBy": null, + "createdTime": "2026-02-02 12:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:13", + "echoMap": {}, + "alarmNo": "1830132458", + "alarmDate": "1770005418858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518684949", + "createdBy": null, + "createdTime": "2026-02-02 12:10:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:27", + "echoMap": {}, + "alarmNo": "1830132459", + "alarmDate": "1770005420815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518685026", + "createdBy": null, + "createdTime": "2026-02-02 12:10:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:28", + "echoMap": {}, + "alarmNo": "1830132460", + "alarmDate": "1770005427097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518685069", + "createdBy": null, + "createdTime": "2026-02-02 12:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:32", + "echoMap": {}, + "alarmNo": "1830132461", + "alarmDate": "1770005430788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060144", + "deviceName": "[212](10)新江湾下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113961108619524", + "createdBy": null, + "createdTime": "2026-02-02 12:20:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:48", + "echoMap": {}, + "alarmNo": "1830132462", + "alarmDate": "1770006026246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113961108619640", + "createdBy": null, + "createdTime": "2026-02-02 12:20:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:44", + "echoMap": {}, + "alarmNo": "1830132463", + "alarmDate": "1770006037176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113961108620012", + "createdBy": null, + "createdTime": "2026-02-02 12:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:08", + "echoMap": {}, + "alarmNo": "1830132464", + "alarmDate": "1770006591526", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698553867", + "createdBy": null, + "createdTime": "2026-02-02 12:30:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:14", + "echoMap": {}, + "alarmNo": "1830132465", + "alarmDate": "1770006601248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698553953", + "createdBy": null, + "createdTime": "2026-02-02 12:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:09", + "echoMap": {}, + "alarmNo": "1830132466", + "alarmDate": "1770006608158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698553994", + "createdBy": null, + "createdTime": "2026-02-02 12:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:18", + "echoMap": {}, + "alarmNo": "1830132467", + "alarmDate": "1770006611472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554098", + "createdBy": null, + "createdTime": "2026-02-02 12:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:26", + "echoMap": {}, + "alarmNo": "1830132468", + "alarmDate": "1770006620469", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554212", + "createdBy": null, + "createdTime": "2026-02-02 12:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:02", + "echoMap": {}, + "alarmNo": "1830132469", + "alarmDate": "1770006631624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554230", + "createdBy": null, + "createdTime": "2026-02-02 12:30:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:34", + "echoMap": {}, + "alarmNo": "1830132470", + "alarmDate": "1770006633240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554285", + "createdBy": null, + "createdTime": "2026-02-02 12:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:26", + "echoMap": {}, + "alarmNo": "1830132471", + "alarmDate": "1770006638455", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554298", + "createdBy": null, + "createdTime": "2026-02-02 12:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:46", + "echoMap": {}, + "alarmNo": "1830132472", + "alarmDate": "1770006639414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554309", + "createdBy": null, + "createdTime": "2026-02-02 12:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:41", + "echoMap": {}, + "alarmNo": "1830132473", + "alarmDate": "1770006640208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113973993521160", + "createdBy": null, + "createdTime": "2026-02-02 12:39:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:08", + "echoMap": {}, + "alarmNo": "1830132474", + "alarmDate": "1770007189828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113973993521169", + "createdBy": null, + "createdTime": "2026-02-02 12:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:49", + "echoMap": {}, + "alarmNo": "1830132475", + "alarmDate": "1770007191145", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488555", + "createdBy": null, + "createdTime": "2026-02-02 12:40:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:08", + "echoMap": {}, + "alarmNo": "1830132476", + "alarmDate": "1770007206830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488640", + "createdBy": null, + "createdTime": "2026-02-02 12:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:27", + "echoMap": {}, + "alarmNo": "1830132477", + "alarmDate": "1770007214629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488643", + "createdBy": null, + "createdTime": "2026-02-02 12:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:28", + "echoMap": {}, + "alarmNo": "1830132478", + "alarmDate": "1770007214856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488710", + "createdBy": null, + "createdTime": "2026-02-02 12:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:18", + "echoMap": {}, + "alarmNo": "1830132479", + "alarmDate": "1770007220013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488793", + "createdBy": null, + "createdTime": "2026-02-02 12:40:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:32", + "echoMap": {}, + "alarmNo": "1830132480", + "alarmDate": "1770007226231", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113982583455800", + "createdBy": null, + "createdTime": "2026-02-02 12:49:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:25", + "echoMap": {}, + "alarmNo": "1830132481", + "alarmDate": "1770007791349", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113982583455809", + "createdBy": null, + "createdTime": "2026-02-02 12:49:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:31", + "echoMap": {}, + "alarmNo": "1830132482", + "alarmDate": "1770007792121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423196", + "createdBy": null, + "createdTime": "2026-02-02 12:50:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:13", + "echoMap": {}, + "alarmNo": "1830132483", + "alarmDate": "1770007806964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423232", + "createdBy": null, + "createdTime": "2026-02-02 12:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:16", + "echoMap": {}, + "alarmNo": "1830132484", + "alarmDate": "1770007809550", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423443", + "createdBy": null, + "createdTime": "2026-02-02 12:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:32", + "echoMap": {}, + "alarmNo": "1830132485", + "alarmDate": "1770007826063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423659", + "createdBy": null, + "createdTime": "2026-02-02 12:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "1830132486", + "alarmDate": "1770007844329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423687", + "createdBy": null, + "createdTime": "2026-02-02 12:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:52", + "echoMap": {}, + "alarmNo": "1830132487", + "alarmDate": "1770007846540", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113991173390357", + "createdBy": null, + "createdTime": "2026-02-02 12:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:53", + "echoMap": {}, + "alarmNo": "1830132488", + "alarmDate": "1770007851813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468357899", + "createdBy": null, + "createdTime": "2026-02-02 13:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "1830132489", + "alarmDate": "1770008403925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358003", + "createdBy": null, + "createdTime": "2026-02-02 13:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:14", + "echoMap": {}, + "alarmNo": "1830132490", + "alarmDate": "1770008413015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358059", + "createdBy": null, + "createdTime": "2026-02-02 13:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:19", + "echoMap": {}, + "alarmNo": "1830132491", + "alarmDate": "1770008417971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358157", + "createdBy": null, + "createdTime": "2026-02-02 13:00:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:41", + "echoMap": {}, + "alarmNo": "1830132492", + "alarmDate": "1770008428392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358272", + "createdBy": null, + "createdTime": "2026-02-02 13:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:41", + "echoMap": {}, + "alarmNo": "1830132493", + "alarmDate": "1770008439517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292279", + "createdBy": null, + "createdTime": "2026-02-02 13:09:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:07", + "echoMap": {}, + "alarmNo": "1830132494", + "alarmDate": "1770008989937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292302", + "createdBy": null, + "createdTime": "2026-02-02 13:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:59", + "echoMap": {}, + "alarmNo": "1830132495", + "alarmDate": "1770008992916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292312", + "createdBy": null, + "createdTime": "2026-02-02 13:09:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:59", + "echoMap": {}, + "alarmNo": "1830132496", + "alarmDate": "1770008993583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292748", + "createdBy": null, + "createdTime": "2026-02-02 13:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:39", + "echoMap": {}, + "alarmNo": "1830132497", + "alarmDate": "1770009032237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060028", + "deviceName": "[104](10)新江湾上行1-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292778", + "createdBy": null, + "createdTime": "2026-02-02 13:10:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:41", + "echoMap": {}, + "alarmNo": "1830132498", + "alarmDate": "1770009034988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292788", + "createdBy": null, + "createdTime": "2026-02-02 13:10:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:42", + "echoMap": {}, + "alarmNo": "1830132499", + "alarmDate": "1770009035699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292804", + "createdBy": null, + "createdTime": "2026-02-02 13:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:19", + "echoMap": {}, + "alarmNo": "1830132500", + "alarmDate": "1770009036810", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292827", + "createdBy": null, + "createdTime": "2026-02-02 13:10:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:44", + "echoMap": {}, + "alarmNo": "1830132501", + "alarmDate": "1770009038336", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227036", + "createdBy": null, + "createdTime": "2026-02-02 13:20:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:28", + "echoMap": {}, + "alarmNo": "1830132502", + "alarmDate": "1770009615233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227179", + "createdBy": null, + "createdTime": "2026-02-02 13:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:41", + "echoMap": {}, + "alarmNo": "1830132503", + "alarmDate": "1770009627937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227371", + "createdBy": null, + "createdTime": "2026-02-02 13:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:47", + "echoMap": {}, + "alarmNo": "1830132504", + "alarmDate": "1770009645559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227392", + "createdBy": null, + "createdTime": "2026-02-02 13:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:52", + "echoMap": {}, + "alarmNo": "1830132505", + "alarmDate": "1770009647285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227410", + "createdBy": null, + "createdTime": "2026-02-02 13:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:50", + "echoMap": {}, + "alarmNo": "1830132506", + "alarmDate": "1770009648578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227411", + "createdBy": null, + "createdTime": "2026-02-02 13:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:50", + "echoMap": {}, + "alarmNo": "1830132507", + "alarmDate": "1770009648643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114016943194194", + "createdBy": null, + "createdTime": "2026-02-02 13:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:54", + "echoMap": {}, + "alarmNo": "1830132508", + "alarmDate": "1770010192744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161438", + "createdBy": null, + "createdTime": "2026-02-02 13:29:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:03", + "echoMap": {}, + "alarmNo": "1830132509", + "alarmDate": "1770010196700", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161504", + "createdBy": null, + "createdTime": "2026-02-02 13:30:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:03", + "echoMap": {}, + "alarmNo": "1830132510", + "alarmDate": "1770010201815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161596", + "createdBy": null, + "createdTime": "2026-02-02 13:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:31", + "echoMap": {}, + "alarmNo": "1830132511", + "alarmDate": "1770010210626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161646", + "createdBy": null, + "createdTime": "2026-02-02 13:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:09", + "echoMap": {}, + "alarmNo": "1830132512", + "alarmDate": "1770010214839", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161723", + "createdBy": null, + "createdTime": "2026-02-02 13:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:22", + "echoMap": {}, + "alarmNo": "1830132513", + "alarmDate": "1770010221106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161816", + "createdBy": null, + "createdTime": "2026-02-02 13:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:35", + "echoMap": {}, + "alarmNo": "1830132514", + "alarmDate": "1770010228367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161994", + "createdBy": null, + "createdTime": "2026-02-02 13:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:49", + "echoMap": {}, + "alarmNo": "1830132515", + "alarmDate": "1770010243621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114029828096060", + "createdBy": null, + "createdTime": "2026-02-02 13:40:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:06", + "echoMap": {}, + "alarmNo": "1830132516", + "alarmDate": "1770010800462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114029828096413", + "createdBy": null, + "createdTime": "2026-02-02 13:40:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:39", + "echoMap": {}, + "alarmNo": "1830132517", + "alarmDate": "1770010832547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114029828096624", + "createdBy": null, + "createdTime": "2026-02-02 13:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:41", + "echoMap": {}, + "alarmNo": "1830132518", + "alarmDate": "1770010851540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418030655", + "createdBy": null, + "createdTime": "2026-02-02 13:49:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:11", + "echoMap": {}, + "alarmNo": "1830132519", + "alarmDate": "1770011398242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418030937", + "createdBy": null, + "createdTime": "2026-02-02 13:50:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:23", + "echoMap": {}, + "alarmNo": "1830132520", + "alarmDate": "1770011422422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418030973", + "createdBy": null, + "createdTime": "2026-02-02 13:50:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:26", + "echoMap": {}, + "alarmNo": "1830132521", + "alarmDate": "1770011425352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418031100", + "createdBy": null, + "createdTime": "2026-02-02 13:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:51", + "echoMap": {}, + "alarmNo": "1830132522", + "alarmDate": "1770011436372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418031193", + "createdBy": null, + "createdTime": "2026-02-02 13:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:44", + "echoMap": {}, + "alarmNo": "1830132523", + "alarmDate": "1770011443463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965297", + "createdBy": null, + "createdTime": "2026-02-02 13:59:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:57", + "echoMap": {}, + "alarmNo": "1830132524", + "alarmDate": "1770011995677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965370", + "createdBy": null, + "createdTime": "2026-02-02 14:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:02", + "echoMap": {}, + "alarmNo": "1830132525", + "alarmDate": "1770012000913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965385", + "createdBy": null, + "createdTime": "2026-02-02 14:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:08", + "echoMap": {}, + "alarmNo": "1830132526", + "alarmDate": "1770012002006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965630", + "createdBy": null, + "createdTime": "2026-02-02 14:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:25", + "echoMap": {}, + "alarmNo": "1830132527", + "alarmDate": "1770012024953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597899816", + "createdBy": null, + "createdTime": "2026-02-02 14:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:01", + "echoMap": {}, + "alarmNo": "1830132528", + "alarmDate": "1770012592263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597899829", + "createdBy": null, + "createdTime": "2026-02-02 14:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:53", + "echoMap": {}, + "alarmNo": "1830132529", + "alarmDate": "1770012593165", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900119", + "createdBy": null, + "createdTime": "2026-02-02 14:10:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:26", + "echoMap": {}, + "alarmNo": "1830132530", + "alarmDate": "1770012614256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900322", + "createdBy": null, + "createdTime": "2026-02-02 14:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:33", + "echoMap": {}, + "alarmNo": "1830132531", + "alarmDate": "1770012632678", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900439", + "createdBy": null, + "createdTime": "2026-02-02 14:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:49", + "echoMap": {}, + "alarmNo": "1830132532", + "alarmDate": "1770012643133", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900470", + "createdBy": null, + "createdTime": "2026-02-02 14:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:30", + "echoMap": {}, + "alarmNo": "1830132533", + "alarmDate": "1770012645386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834411", + "createdBy": null, + "createdTime": "2026-02-02 14:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:51", + "echoMap": {}, + "alarmNo": "1830132534", + "alarmDate": "1770013191289", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834514", + "createdBy": null, + "createdTime": "2026-02-02 14:19:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:59", + "echoMap": {}, + "alarmNo": "1830132535", + "alarmDate": "1770013198259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834595", + "createdBy": null, + "createdTime": "2026-02-02 14:20:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:06", + "echoMap": {}, + "alarmNo": "1830132536", + "alarmDate": "1770013205042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834923", + "createdBy": null, + "createdTime": "2026-02-02 14:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:35", + "echoMap": {}, + "alarmNo": "1830132537", + "alarmDate": "1770013234473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834981", + "createdBy": null, + "createdTime": "2026-02-02 14:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:40", + "echoMap": {}, + "alarmNo": "1830132538", + "alarmDate": "1770013239372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114072777769102", + "createdBy": null, + "createdTime": "2026-02-02 14:30:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:06", + "echoMap": {}, + "alarmNo": "1830132539", + "alarmDate": "1770013805718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114081367703584", + "createdBy": null, + "createdTime": "2026-02-02 14:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:51", + "echoMap": {}, + "alarmNo": "1830132540", + "alarmDate": "1770014391222", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113376993067115", + "createdBy": null, + "createdTime": "2026-02-02 00:54:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:57", + "echoMap": {}, + "alarmNo": "1830132011", + "alarmDate": "1769964894982", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1028030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1028" + }, + { + "id": "723113797899862051", + "createdBy": null, + "createdTime": "2026-02-02 09:04:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:00", + "echoMap": {}, + "alarmNo": "1830132367", + "alarmDate": "1769994298710", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1028030020", + "deviceName": "安防箱20", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1028" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723114081367703584", + "createdBy": null, + "createdTime": "2026-02-02 14:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:51", + "echoMap": {}, + "alarmNo": "1830132540", + "alarmDate": "1770014391222", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114072777769102", + "createdBy": null, + "createdTime": "2026-02-02 14:30:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:06", + "echoMap": {}, + "alarmNo": "1830132539", + "alarmDate": "1770013805718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834981", + "createdBy": null, + "createdTime": "2026-02-02 14:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:40", + "echoMap": {}, + "alarmNo": "1830132538", + "alarmDate": "1770013239372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834923", + "createdBy": null, + "createdTime": "2026-02-02 14:20:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:35", + "echoMap": {}, + "alarmNo": "1830132537", + "alarmDate": "1770013234473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834595", + "createdBy": null, + "createdTime": "2026-02-02 14:20:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:20:06", + "echoMap": {}, + "alarmNo": "1830132536", + "alarmDate": "1770013205042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834514", + "createdBy": null, + "createdTime": "2026-02-02 14:19:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:59", + "echoMap": {}, + "alarmNo": "1830132535", + "alarmDate": "1770013198259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114064187834411", + "createdBy": null, + "createdTime": "2026-02-02 14:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:51", + "echoMap": {}, + "alarmNo": "1830132534", + "alarmDate": "1770013191289", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900470", + "createdBy": null, + "createdTime": "2026-02-02 14:10:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:30", + "echoMap": {}, + "alarmNo": "1830132533", + "alarmDate": "1770012645386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900439", + "createdBy": null, + "createdTime": "2026-02-02 14:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:49", + "echoMap": {}, + "alarmNo": "1830132532", + "alarmDate": "1770012643133", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900322", + "createdBy": null, + "createdTime": "2026-02-02 14:10:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:30:33", + "echoMap": {}, + "alarmNo": "1830132531", + "alarmDate": "1770012632678", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597900119", + "createdBy": null, + "createdTime": "2026-02-02 14:10:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:26", + "echoMap": {}, + "alarmNo": "1830132530", + "alarmDate": "1770012614256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597899829", + "createdBy": null, + "createdTime": "2026-02-02 14:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:53", + "echoMap": {}, + "alarmNo": "1830132529", + "alarmDate": "1770012593165", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114055597899816", + "createdBy": null, + "createdTime": "2026-02-02 14:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:01", + "echoMap": {}, + "alarmNo": "1830132528", + "alarmDate": "1770012592263", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965630", + "createdBy": null, + "createdTime": "2026-02-02 14:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:25", + "echoMap": {}, + "alarmNo": "1830132527", + "alarmDate": "1770012024953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965385", + "createdBy": null, + "createdTime": "2026-02-02 14:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:08", + "echoMap": {}, + "alarmNo": "1830132526", + "alarmDate": "1770012002006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965370", + "createdBy": null, + "createdTime": "2026-02-02 14:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:02", + "echoMap": {}, + "alarmNo": "1830132525", + "alarmDate": "1770012000913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114047007965297", + "createdBy": null, + "createdTime": "2026-02-02 13:59:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:57", + "echoMap": {}, + "alarmNo": "1830132524", + "alarmDate": "1770011995677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418031193", + "createdBy": null, + "createdTime": "2026-02-02 13:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:44", + "echoMap": {}, + "alarmNo": "1830132523", + "alarmDate": "1770011443463", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418031100", + "createdBy": null, + "createdTime": "2026-02-02 13:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:51", + "echoMap": {}, + "alarmNo": "1830132522", + "alarmDate": "1770011436372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418030973", + "createdBy": null, + "createdTime": "2026-02-02 13:50:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:26", + "echoMap": {}, + "alarmNo": "1830132521", + "alarmDate": "1770011425352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418030937", + "createdBy": null, + "createdTime": "2026-02-02 13:50:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:23", + "echoMap": {}, + "alarmNo": "1830132520", + "alarmDate": "1770011422422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114038418030655", + "createdBy": null, + "createdTime": "2026-02-02 13:49:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:11", + "echoMap": {}, + "alarmNo": "1830132519", + "alarmDate": "1770011398242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114029828096624", + "createdBy": null, + "createdTime": "2026-02-02 13:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:41", + "echoMap": {}, + "alarmNo": "1830132518", + "alarmDate": "1770010851540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114029828096413", + "createdBy": null, + "createdTime": "2026-02-02 13:40:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:39", + "echoMap": {}, + "alarmNo": "1830132517", + "alarmDate": "1770010832547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114029828096060", + "createdBy": null, + "createdTime": "2026-02-02 13:40:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:06", + "echoMap": {}, + "alarmNo": "1830132516", + "alarmDate": "1770010800462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161994", + "createdBy": null, + "createdTime": "2026-02-02 13:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:40:49", + "echoMap": {}, + "alarmNo": "1830132515", + "alarmDate": "1770010243621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161816", + "createdBy": null, + "createdTime": "2026-02-02 13:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:35", + "echoMap": {}, + "alarmNo": "1830132514", + "alarmDate": "1770010228367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161723", + "createdBy": null, + "createdTime": "2026-02-02 13:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:22", + "echoMap": {}, + "alarmNo": "1830132513", + "alarmDate": "1770010221106", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161646", + "createdBy": null, + "createdTime": "2026-02-02 13:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:09", + "echoMap": {}, + "alarmNo": "1830132512", + "alarmDate": "1770010214839", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161596", + "createdBy": null, + "createdTime": "2026-02-02 13:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:31", + "echoMap": {}, + "alarmNo": "1830132511", + "alarmDate": "1770010210626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161504", + "createdBy": null, + "createdTime": "2026-02-02 13:30:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:03", + "echoMap": {}, + "alarmNo": "1830132510", + "alarmDate": "1770010201815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114021238161438", + "createdBy": null, + "createdTime": "2026-02-02 13:29:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:30:03", + "echoMap": {}, + "alarmNo": "1830132509", + "alarmDate": "1770010196700", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114016943194194", + "createdBy": null, + "createdTime": "2026-02-02 13:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:54", + "echoMap": {}, + "alarmNo": "1830132508", + "alarmDate": "1770010192744", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227411", + "createdBy": null, + "createdTime": "2026-02-02 13:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:50", + "echoMap": {}, + "alarmNo": "1830132507", + "alarmDate": "1770009648643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227410", + "createdBy": null, + "createdTime": "2026-02-02 13:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:50", + "echoMap": {}, + "alarmNo": "1830132506", + "alarmDate": "1770009648578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227392", + "createdBy": null, + "createdTime": "2026-02-02 13:20:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:52", + "echoMap": {}, + "alarmNo": "1830132505", + "alarmDate": "1770009647285", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227371", + "createdBy": null, + "createdTime": "2026-02-02 13:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:47", + "echoMap": {}, + "alarmNo": "1830132504", + "alarmDate": "1770009645559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227179", + "createdBy": null, + "createdTime": "2026-02-02 13:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:41", + "echoMap": {}, + "alarmNo": "1830132503", + "alarmDate": "1770009627937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114012648227036", + "createdBy": null, + "createdTime": "2026-02-02 13:20:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:20:28", + "echoMap": {}, + "alarmNo": "1830132502", + "alarmDate": "1770009615233", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292827", + "createdBy": null, + "createdTime": "2026-02-02 13:10:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:44", + "echoMap": {}, + "alarmNo": "1830132501", + "alarmDate": "1770009038336", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292804", + "createdBy": null, + "createdTime": "2026-02-02 13:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 14:10:19", + "echoMap": {}, + "alarmNo": "1830132500", + "alarmDate": "1770009036810", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292788", + "createdBy": null, + "createdTime": "2026-02-02 13:10:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:42", + "echoMap": {}, + "alarmNo": "1830132499", + "alarmDate": "1770009035699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292778", + "createdBy": null, + "createdTime": "2026-02-02 13:10:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:41", + "echoMap": {}, + "alarmNo": "1830132498", + "alarmDate": "1770009034988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292748", + "createdBy": null, + "createdTime": "2026-02-02 13:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:39", + "echoMap": {}, + "alarmNo": "1830132497", + "alarmDate": "1770009032237", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060028", + "deviceName": "[104](10)新江湾上行1-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292312", + "createdBy": null, + "createdTime": "2026-02-02 13:09:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:59", + "echoMap": {}, + "alarmNo": "1830132496", + "alarmDate": "1770008993583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292302", + "createdBy": null, + "createdTime": "2026-02-02 13:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:59", + "echoMap": {}, + "alarmNo": "1830132495", + "alarmDate": "1770008992916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723114004058292279", + "createdBy": null, + "createdTime": "2026-02-02 13:09:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:00:07", + "echoMap": {}, + "alarmNo": "1830132494", + "alarmDate": "1770008989937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358272", + "createdBy": null, + "createdTime": "2026-02-02 13:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:41", + "echoMap": {}, + "alarmNo": "1830132493", + "alarmDate": "1770008439517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358157", + "createdBy": null, + "createdTime": "2026-02-02 13:00:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:41", + "echoMap": {}, + "alarmNo": "1830132492", + "alarmDate": "1770008428392", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358059", + "createdBy": null, + "createdTime": "2026-02-02 13:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:19", + "echoMap": {}, + "alarmNo": "1830132491", + "alarmDate": "1770008417971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468358003", + "createdBy": null, + "createdTime": "2026-02-02 13:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:14", + "echoMap": {}, + "alarmNo": "1830132490", + "alarmDate": "1770008413015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113995468357899", + "createdBy": null, + "createdTime": "2026-02-02 13:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "1830132489", + "alarmDate": "1770008403925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113991173390357", + "createdBy": null, + "createdTime": "2026-02-02 12:50:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:53", + "echoMap": {}, + "alarmNo": "1830132488", + "alarmDate": "1770007851813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423687", + "createdBy": null, + "createdTime": "2026-02-02 12:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:52", + "echoMap": {}, + "alarmNo": "1830132487", + "alarmDate": "1770007846540", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423659", + "createdBy": null, + "createdTime": "2026-02-02 12:50:44", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "1830132486", + "alarmDate": "1770007844329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423443", + "createdBy": null, + "createdTime": "2026-02-02 12:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:32", + "echoMap": {}, + "alarmNo": "1830132485", + "alarmDate": "1770007826063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423232", + "createdBy": null, + "createdTime": "2026-02-02 12:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:16", + "echoMap": {}, + "alarmNo": "1830132484", + "alarmDate": "1770007809550", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113986878423196", + "createdBy": null, + "createdTime": "2026-02-02 12:50:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:13", + "echoMap": {}, + "alarmNo": "1830132483", + "alarmDate": "1770007806964", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113982583455809", + "createdBy": null, + "createdTime": "2026-02-02 12:49:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:50:31", + "echoMap": {}, + "alarmNo": "1830132482", + "alarmDate": "1770007792121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113982583455800", + "createdBy": null, + "createdTime": "2026-02-02 12:49:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:25", + "echoMap": {}, + "alarmNo": "1830132481", + "alarmDate": "1770007791349", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488793", + "createdBy": null, + "createdTime": "2026-02-02 12:40:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:32", + "echoMap": {}, + "alarmNo": "1830132480", + "alarmDate": "1770007226231", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488710", + "createdBy": null, + "createdTime": "2026-02-02 12:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:18", + "echoMap": {}, + "alarmNo": "1830132479", + "alarmDate": "1770007220013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488643", + "createdBy": null, + "createdTime": "2026-02-02 12:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:28", + "echoMap": {}, + "alarmNo": "1830132478", + "alarmDate": "1770007214856", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488640", + "createdBy": null, + "createdTime": "2026-02-02 12:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:27", + "echoMap": {}, + "alarmNo": "1830132477", + "alarmDate": "1770007214629", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113978288488555", + "createdBy": null, + "createdTime": "2026-02-02 12:40:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:08", + "echoMap": {}, + "alarmNo": "1830132476", + "alarmDate": "1770007206830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113973993521169", + "createdBy": null, + "createdTime": "2026-02-02 12:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:49", + "echoMap": {}, + "alarmNo": "1830132475", + "alarmDate": "1770007191145", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113973993521160", + "createdBy": null, + "createdTime": "2026-02-02 12:39:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:08", + "echoMap": {}, + "alarmNo": "1830132474", + "alarmDate": "1770007189828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554309", + "createdBy": null, + "createdTime": "2026-02-02 12:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:41", + "echoMap": {}, + "alarmNo": "1830132473", + "alarmDate": "1770006640208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554298", + "createdBy": null, + "createdTime": "2026-02-02 12:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:46", + "echoMap": {}, + "alarmNo": "1830132472", + "alarmDate": "1770006639414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554285", + "createdBy": null, + "createdTime": "2026-02-02 12:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:10:26", + "echoMap": {}, + "alarmNo": "1830132471", + "alarmDate": "1770006638455", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554230", + "createdBy": null, + "createdTime": "2026-02-02 12:30:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:34", + "echoMap": {}, + "alarmNo": "1830132470", + "alarmDate": "1770006633240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554212", + "createdBy": null, + "createdTime": "2026-02-02 12:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:02", + "echoMap": {}, + "alarmNo": "1830132469", + "alarmDate": "1770006631624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698554098", + "createdBy": null, + "createdTime": "2026-02-02 12:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:26", + "echoMap": {}, + "alarmNo": "1830132468", + "alarmDate": "1770006620469", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698553994", + "createdBy": null, + "createdTime": "2026-02-02 12:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:18", + "echoMap": {}, + "alarmNo": "1830132467", + "alarmDate": "1770006611472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698553953", + "createdBy": null, + "createdTime": "2026-02-02 12:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:09", + "echoMap": {}, + "alarmNo": "1830132466", + "alarmDate": "1770006608158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113969698553867", + "createdBy": null, + "createdTime": "2026-02-02 12:30:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:14", + "echoMap": {}, + "alarmNo": "1830132465", + "alarmDate": "1770006601248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113961108620012", + "createdBy": null, + "createdTime": "2026-02-02 12:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:08", + "echoMap": {}, + "alarmNo": "1830132464", + "alarmDate": "1770006591526", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113961108619640", + "createdBy": null, + "createdTime": "2026-02-02 12:20:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:44", + "echoMap": {}, + "alarmNo": "1830132463", + "alarmDate": "1770006037176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113961108619524", + "createdBy": null, + "createdTime": "2026-02-02 12:20:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:48", + "echoMap": {}, + "alarmNo": "1830132462", + "alarmDate": "1770006026246", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518685069", + "createdBy": null, + "createdTime": "2026-02-02 12:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:32", + "echoMap": {}, + "alarmNo": "1830132461", + "alarmDate": "1770005430788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060144", + "deviceName": "[212](10)新江湾下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518685026", + "createdBy": null, + "createdTime": "2026-02-02 12:10:27", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:28", + "echoMap": {}, + "alarmNo": "1830132460", + "alarmDate": "1770005427097", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518684949", + "createdBy": null, + "createdTime": "2026-02-02 12:10:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:27", + "echoMap": {}, + "alarmNo": "1830132459", + "alarmDate": "1770005420815", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518684926", + "createdBy": null, + "createdTime": "2026-02-02 12:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:13", + "echoMap": {}, + "alarmNo": "1830132458", + "alarmDate": "1770005418858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113952518684849", + "createdBy": null, + "createdTime": "2026-02-02 12:10:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:12", + "echoMap": {}, + "alarmNo": "1830132457", + "alarmDate": "1770005410656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750715", + "createdBy": null, + "createdTime": "2026-02-02 12:00:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:02", + "echoMap": {}, + "alarmNo": "1830132456", + "alarmDate": "1770004852532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750620", + "createdBy": null, + "createdTime": "2026-02-02 12:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:50", + "echoMap": {}, + "alarmNo": "1830132455", + "alarmDate": "1770004843632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750248", + "createdBy": null, + "createdTime": "2026-02-02 12:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:12", + "echoMap": {}, + "alarmNo": "1830132454", + "alarmDate": "1770004811419", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113943928750185", + "createdBy": null, + "createdTime": "2026-02-02 12:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:20", + "echoMap": {}, + "alarmNo": "1830132453", + "alarmDate": "1770004806488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113939633782817", + "createdBy": null, + "createdTime": "2026-02-02 11:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:20:14", + "echoMap": {}, + "alarmNo": "1830132452", + "alarmDate": "1770004791741", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113935338815987", + "createdBy": null, + "createdTime": "2026-02-02 11:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:52", + "echoMap": {}, + "alarmNo": "1830132451", + "alarmDate": "1770004247174", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113935338815656", + "createdBy": null, + "createdTime": "2026-02-02 11:50:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:22", + "echoMap": {}, + "alarmNo": "1830132450", + "alarmDate": "1770004215101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113931043848246", + "createdBy": null, + "createdTime": "2026-02-02 11:49:56", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:57", + "echoMap": {}, + "alarmNo": "1830132449", + "alarmDate": "1770004195588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881431", + "createdBy": null, + "createdTime": "2026-02-02 11:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:48", + "echoMap": {}, + "alarmNo": "1830132448", + "alarmDate": "1770003647453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881368", + "createdBy": null, + "createdTime": "2026-02-02 11:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:10:07", + "echoMap": {}, + "alarmNo": "1830132447", + "alarmDate": "1770003642781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881356", + "createdBy": null, + "createdTime": "2026-02-02 11:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:52", + "echoMap": {}, + "alarmNo": "1830132446", + "alarmDate": "1770003642011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881262", + "createdBy": null, + "createdTime": "2026-02-02 11:40:34", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:35", + "echoMap": {}, + "alarmNo": "1830132445", + "alarmDate": "1770003633837", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113926748881101", + "createdBy": null, + "createdTime": "2026-02-02 11:40:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:22", + "echoMap": {}, + "alarmNo": "1830132444", + "alarmDate": "1770003620977", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113922453913687", + "createdBy": null, + "createdTime": "2026-02-02 11:40:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:29", + "echoMap": {}, + "alarmNo": "1830132443", + "alarmDate": "1770003602929", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158947044", + "createdBy": null, + "createdTime": "2026-02-02 11:39:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:02", + "echoMap": {}, + "alarmNo": "1830132442", + "alarmDate": "1770003592873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158947030", + "createdBy": null, + "createdTime": "2026-02-02 11:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:25", + "echoMap": {}, + "alarmNo": "1830132441", + "alarmDate": "1770003591771", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158946746", + "createdBy": null, + "createdTime": "2026-02-02 11:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:51", + "echoMap": {}, + "alarmNo": "1830132440", + "alarmDate": "1770003044697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158946567", + "createdBy": null, + "createdTime": "2026-02-02 11:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:42", + "echoMap": {}, + "alarmNo": "1830132439", + "alarmDate": "1770003028458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113918158946445", + "createdBy": null, + "createdTime": "2026-02-02 11:30:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:18", + "echoMap": {}, + "alarmNo": "1830132438", + "alarmDate": "1770003016551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569012471", + "createdBy": null, + "createdTime": "2026-02-02 11:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:55", + "echoMap": {}, + "alarmNo": "1830132437", + "alarmDate": "1770002992669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569012461", + "createdBy": null, + "createdTime": "2026-02-02 11:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:57", + "echoMap": {}, + "alarmNo": "1830132436", + "alarmDate": "1770002992083", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060069", + "deviceName": "[340](10)新江湾7#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569012096", + "createdBy": null, + "createdTime": "2026-02-02 11:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:30:13", + "echoMap": {}, + "alarmNo": "1830132435", + "alarmDate": "1770002436442", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569011905", + "createdBy": null, + "createdTime": "2026-02-02 11:20:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:17", + "echoMap": {}, + "alarmNo": "1830132434", + "alarmDate": "1770002415724", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113909569011816", + "createdBy": null, + "createdTime": "2026-02-02 11:20:06", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:07", + "echoMap": {}, + "alarmNo": "1830132433", + "alarmDate": "1770002406200", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077780", + "createdBy": null, + "createdTime": "2026-02-02 11:10:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:20:06", + "echoMap": {}, + "alarmNo": "1830132432", + "alarmDate": "1770001848229", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077731", + "createdBy": null, + "createdTime": "2026-02-02 11:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:56", + "echoMap": {}, + "alarmNo": "1830132431", + "alarmDate": "1770001843908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077699", + "createdBy": null, + "createdTime": "2026-02-02 11:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:42", + "echoMap": {}, + "alarmNo": "1830132430", + "alarmDate": "1770001841164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077418", + "createdBy": null, + "createdTime": "2026-02-02 11:10:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:16", + "echoMap": {}, + "alarmNo": "1830132429", + "alarmDate": "1770001815675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113900979077139", + "createdBy": null, + "createdTime": "2026-02-02 11:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:59", + "echoMap": {}, + "alarmNo": "1830132428", + "alarmDate": "1770001792714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113892389143246", + "createdBy": null, + "createdTime": "2026-02-02 11:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:59", + "echoMap": {}, + "alarmNo": "1830132427", + "alarmDate": "1770001248848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113892389142947", + "createdBy": null, + "createdTime": "2026-02-02 11:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:24", + "echoMap": {}, + "alarmNo": "1830132426", + "alarmDate": "1770001222656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113892389142613", + "createdBy": null, + "createdTime": "2026-02-02 10:59:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:06", + "echoMap": {}, + "alarmNo": "1830132425", + "alarmDate": "1770001193734", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208522", + "createdBy": null, + "createdTime": "2026-02-02 10:50:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:40:30", + "echoMap": {}, + "alarmNo": "1830132424", + "alarmDate": "1770000639919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208472", + "createdBy": null, + "createdTime": "2026-02-02 10:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:36", + "echoMap": {}, + "alarmNo": "1830132423", + "alarmDate": "1770000635154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208411", + "createdBy": null, + "createdTime": "2026-02-02 10:50:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:30", + "echoMap": {}, + "alarmNo": "1830132422", + "alarmDate": "1770000629470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208335", + "createdBy": null, + "createdTime": "2026-02-02 10:50:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:30", + "echoMap": {}, + "alarmNo": "1830132421", + "alarmDate": "1770000623379", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208331", + "createdBy": null, + "createdTime": "2026-02-02 10:50:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:00:35", + "echoMap": {}, + "alarmNo": "1830132420", + "alarmDate": "1770000623082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208168", + "createdBy": null, + "createdTime": "2026-02-02 10:50:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:09", + "echoMap": {}, + "alarmNo": "1830132419", + "alarmDate": "1770000607626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113883799208128", + "createdBy": null, + "createdTime": "2026-02-02 10:50:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:10", + "echoMap": {}, + "alarmNo": "1830132418", + "alarmDate": "1770000604130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273767", + "createdBy": null, + "createdTime": "2026-02-02 10:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:35", + "echoMap": {}, + "alarmNo": "1830132417", + "alarmDate": "1770000021737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273413", + "createdBy": null, + "createdTime": "2026-02-02 10:39:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:06", + "echoMap": {}, + "alarmNo": "1830132416", + "alarmDate": "1769999994223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273401", + "createdBy": null, + "createdTime": "2026-02-02 10:39:54", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:04", + "echoMap": {}, + "alarmNo": "1830132415", + "alarmDate": "1769999993723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273387", + "createdBy": null, + "createdTime": "2026-02-02 10:39:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:40:03", + "echoMap": {}, + "alarmNo": "1830132414", + "alarmDate": "1769999992696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113875209273369", + "createdBy": null, + "createdTime": "2026-02-02 10:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:50:15", + "echoMap": {}, + "alarmNo": "1830132413", + "alarmDate": "1769999991050", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619339241", + "createdBy": null, + "createdTime": "2026-02-02 10:30:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:34", + "echoMap": {}, + "alarmNo": "1830132412", + "alarmDate": "1769999427374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619339222", + "createdBy": null, + "createdTime": "2026-02-02 10:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:32", + "echoMap": {}, + "alarmNo": "1830132411", + "alarmDate": "1769999426038", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619339183", + "createdBy": null, + "createdTime": "2026-02-02 10:30:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:24", + "echoMap": {}, + "alarmNo": "1830132410", + "alarmDate": "1769999422784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619338945", + "createdBy": null, + "createdTime": "2026-02-02 10:30:02", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:03", + "echoMap": {}, + "alarmNo": "1830132409", + "alarmDate": "1769999401504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113866619338923", + "createdBy": null, + "createdTime": "2026-02-02 10:30:00", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:01", + "echoMap": {}, + "alarmNo": "1830132408", + "alarmDate": "1769999399763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113858029404862", + "createdBy": null, + "createdTime": "2026-02-02 10:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:42", + "echoMap": {}, + "alarmNo": "1830132407", + "alarmDate": "1769998836027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113858029404777", + "createdBy": null, + "createdTime": "2026-02-02 10:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:29", + "echoMap": {}, + "alarmNo": "1830132406", + "alarmDate": "1769998827904", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113858029404397", + "createdBy": null, + "createdTime": "2026-02-02 10:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:54", + "echoMap": {}, + "alarmNo": "1830132405", + "alarmDate": "1769998792672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113849439470094", + "createdBy": null, + "createdTime": "2026-02-02 10:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:33", + "echoMap": {}, + "alarmNo": "1830132404", + "alarmDate": "1769998219657", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113849439469798", + "createdBy": null, + "createdTime": "2026-02-02 10:09:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:01", + "echoMap": {}, + "alarmNo": "1830132403", + "alarmDate": "1769998195375", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113849439469769", + "createdBy": null, + "createdTime": "2026-02-02 10:09:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:10:07", + "echoMap": {}, + "alarmNo": "1830132402", + "alarmDate": "1769998194614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535587", + "createdBy": null, + "createdTime": "2026-02-02 10:00:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:41", + "echoMap": {}, + "alarmNo": "1830132401", + "alarmDate": "1769997635162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535475", + "createdBy": null, + "createdTime": "2026-02-02 10:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:27", + "echoMap": {}, + "alarmNo": "1830132400", + "alarmDate": "1769997625955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535442", + "createdBy": null, + "createdTime": "2026-02-02 10:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:29", + "echoMap": {}, + "alarmNo": "1830132399", + "alarmDate": "1769997623284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535424", + "createdBy": null, + "createdTime": "2026-02-02 10:00:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:23", + "echoMap": {}, + "alarmNo": "1830132398", + "alarmDate": "1769997622009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535406", + "createdBy": null, + "createdTime": "2026-02-02 10:00:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:00:22", + "echoMap": {}, + "alarmNo": "1830132397", + "alarmDate": "1769997620826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535113", + "createdBy": null, + "createdTime": "2026-02-02 09:59:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:56", + "echoMap": {}, + "alarmNo": "1830132396", + "alarmDate": "1769997595397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535051", + "createdBy": null, + "createdTime": "2026-02-02 09:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:10:37", + "echoMap": {}, + "alarmNo": "1830132395", + "alarmDate": "1769997591743", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113840849535039", + "createdBy": null, + "createdTime": "2026-02-02 09:59:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:50:28", + "echoMap": {}, + "alarmNo": "1830132394", + "alarmDate": "1769997589986", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259601207", + "createdBy": null, + "createdTime": "2026-02-02 09:50:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:00:22", + "echoMap": {}, + "alarmNo": "1830132393", + "alarmDate": "1769997051447", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060133", + "deviceName": "[307](10)新江湾1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259601171", + "createdBy": null, + "createdTime": "2026-02-02 09:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:48", + "echoMap": {}, + "alarmNo": "1830132392", + "alarmDate": "1769997047104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259600828", + "createdBy": null, + "createdTime": "2026-02-02 09:50:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:49", + "echoMap": {}, + "alarmNo": "1830132391", + "alarmDate": "1769997018470", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113832259600772", + "createdBy": null, + "createdTime": "2026-02-02 09:50:14", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:50", + "echoMap": {}, + "alarmNo": "1830132390", + "alarmDate": "1769997013875", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669666453", + "createdBy": null, + "createdTime": "2026-02-02 09:40:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:31", + "echoMap": {}, + "alarmNo": "1830132389", + "alarmDate": "1769996445554", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669666159", + "createdBy": null, + "createdTime": "2026-02-02 09:40:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:31", + "echoMap": {}, + "alarmNo": "1830132388", + "alarmDate": "1769996420601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669666049", + "createdBy": null, + "createdTime": "2026-02-02 09:40:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:18", + "echoMap": {}, + "alarmNo": "1830132387", + "alarmDate": "1769996411498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669665859", + "createdBy": null, + "createdTime": "2026-02-02 09:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:39:58", + "echoMap": {}, + "alarmNo": "1830132386", + "alarmDate": "1769996397352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669665845", + "createdBy": null, + "createdTime": "2026-02-02 09:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:10", + "echoMap": {}, + "alarmNo": "1830132385", + "alarmDate": "1769996396526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113823669665830", + "createdBy": null, + "createdTime": "2026-02-02 09:39:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:09", + "echoMap": {}, + "alarmNo": "1830132384", + "alarmDate": "1769996395558", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731835", + "createdBy": null, + "createdTime": "2026-02-02 09:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:49", + "echoMap": {}, + "alarmNo": "1830132383", + "alarmDate": "1769995844234", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731794", + "createdBy": null, + "createdTime": "2026-02-02 09:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:42", + "echoMap": {}, + "alarmNo": "1830132382", + "alarmDate": "1769995841136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731770", + "createdBy": null, + "createdTime": "2026-02-02 09:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:45", + "echoMap": {}, + "alarmNo": "1830132381", + "alarmDate": "1769995839333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731617", + "createdBy": null, + "createdTime": "2026-02-02 09:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:31", + "echoMap": {}, + "alarmNo": "1830132380", + "alarmDate": "1769995826181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731526", + "createdBy": null, + "createdTime": "2026-02-02 09:30:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:19", + "echoMap": {}, + "alarmNo": "1830132379", + "alarmDate": "1769995818173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731481", + "createdBy": null, + "createdTime": "2026-02-02 09:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:16", + "echoMap": {}, + "alarmNo": "1830132378", + "alarmDate": "1769995814601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113815079731219", + "createdBy": null, + "createdTime": "2026-02-02 09:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:30:06", + "echoMap": {}, + "alarmNo": "1830132377", + "alarmDate": "1769995794190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113810784764006", + "createdBy": null, + "createdTime": "2026-02-02 09:29:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:38", + "echoMap": {}, + "alarmNo": "1830132376", + "alarmDate": "1769995791399", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113806489797150", + "createdBy": null, + "createdTime": "2026-02-02 09:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:36", + "echoMap": {}, + "alarmNo": "1830132375", + "alarmDate": "1769995229956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113806489797052", + "createdBy": null, + "createdTime": "2026-02-02 09:20:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:27", + "echoMap": {}, + "alarmNo": "1830132374", + "alarmDate": "1769995221011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113806489796734", + "createdBy": null, + "createdTime": "2026-02-02 09:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:01", + "echoMap": {}, + "alarmNo": "1830132373", + "alarmDate": "1769995192824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862831", + "createdBy": null, + "createdTime": "2026-02-02 09:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:20:03", + "echoMap": {}, + "alarmNo": "1830132372", + "alarmDate": "1769994648761", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862507", + "createdBy": null, + "createdTime": "2026-02-02 09:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:21", + "echoMap": {}, + "alarmNo": "1830132371", + "alarmDate": "1769994620450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862425", + "createdBy": null, + "createdTime": "2026-02-02 09:10:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:20", + "echoMap": {}, + "alarmNo": "1830132370", + "alarmDate": "1769994613687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862365", + "createdBy": null, + "createdTime": "2026-02-02 09:10:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:10", + "echoMap": {}, + "alarmNo": "1830132369", + "alarmDate": "1769994608485", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862138", + "createdBy": null, + "createdTime": "2026-02-02 09:09:50", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:46", + "echoMap": {}, + "alarmNo": "1830132368", + "alarmDate": "1769994590071", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113797899862051", + "createdBy": null, + "createdTime": "2026-02-02 09:04:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:00", + "echoMap": {}, + "alarmNo": "1830132367", + "alarmDate": "1769994298710", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1028030020", + "deviceName": "安防箱20", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1028" + }, + { + "id": "723113789309928288", + "createdBy": null, + "createdTime": "2026-02-02 09:00:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:50", + "echoMap": {}, + "alarmNo": "1830132366", + "alarmDate": "1769994044278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928179", + "createdBy": null, + "createdTime": "2026-02-02 09:00:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:36", + "echoMap": {}, + "alarmNo": "1830132365", + "alarmDate": "1769994034748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928062", + "createdBy": null, + "createdTime": "2026-02-02 09:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:31", + "echoMap": {}, + "alarmNo": "1830132364", + "alarmDate": "1769994025394", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309928044", + "createdBy": null, + "createdTime": "2026-02-02 09:00:24", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:31", + "echoMap": {}, + "alarmNo": "1830132363", + "alarmDate": "1769994024157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309927931", + "createdBy": null, + "createdTime": "2026-02-02 09:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:15", + "echoMap": {}, + "alarmNo": "1830132362", + "alarmDate": "1769994014303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113789309927852", + "createdBy": null, + "createdTime": "2026-02-02 09:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:46", + "echoMap": {}, + "alarmNo": "1830132361", + "alarmDate": "1769994007611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113780719993672", + "createdBy": null, + "createdTime": "2026-02-02 08:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:01", + "echoMap": {}, + "alarmNo": "1830132360", + "alarmDate": "1769993438127", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113780719993068", + "createdBy": null, + "createdTime": "2026-02-02 08:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:50:25", + "echoMap": {}, + "alarmNo": "1830132359", + "alarmDate": "1769993393055", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113780719993063", + "createdBy": null, + "createdTime": "2026-02-02 08:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:00:05", + "echoMap": {}, + "alarmNo": "1830132358", + "alarmDate": "1769993392795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113776425025568", + "createdBy": null, + "createdTime": "2026-02-02 08:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:43", + "echoMap": {}, + "alarmNo": "1830132357", + "alarmDate": "1769992841730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130059003", + "createdBy": null, + "createdTime": "2026-02-02 08:40:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:30", + "echoMap": {}, + "alarmNo": "1830132356", + "alarmDate": "1769992828908", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130058997", + "createdBy": null, + "createdTime": "2026-02-02 08:40:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:35", + "echoMap": {}, + "alarmNo": "1830132355", + "alarmDate": "1769992828608", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130058728", + "createdBy": null, + "createdTime": "2026-02-02 08:40:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:03", + "echoMap": {}, + "alarmNo": "1830132354", + "alarmDate": "1769992802266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113772130058656", + "createdBy": null, + "createdTime": "2026-02-02 08:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:40:02", + "echoMap": {}, + "alarmNo": "1830132353", + "alarmDate": "1769992796505", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113763540123955", + "createdBy": null, + "createdTime": "2026-02-02 08:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:08", + "echoMap": {}, + "alarmNo": "1830132352", + "alarmDate": "1769991652300", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113763540123873", + "createdBy": null, + "createdTime": "2026-02-02 08:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:30", + "echoMap": {}, + "alarmNo": "1830132350", + "alarmDate": "1769991645355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113763540123874", + "createdBy": null, + "createdTime": "2026-02-02 08:20:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:31", + "echoMap": {}, + "alarmNo": "1830132351", + "alarmDate": "1769991645355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113759245156381", + "createdBy": null, + "createdTime": "2026-02-02 08:20:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:32", + "echoMap": {}, + "alarmNo": "1830132349", + "alarmDate": "1769991620328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113759245156375", + "createdBy": null, + "createdTime": "2026-02-02 08:20:20", + "updatedBy": null, + "updatedTime": "2026-02-02 09:10:50", + "echoMap": {}, + "alarmNo": "1830132348", + "alarmDate": "1769991620002", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189894", + "createdBy": null, + "createdTime": "2026-02-02 08:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:30:09", + "echoMap": {}, + "alarmNo": "1830132347", + "alarmDate": "1769991617850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189862", + "createdBy": null, + "createdTime": "2026-02-02 08:20:15", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:16", + "echoMap": {}, + "alarmNo": "1830132346", + "alarmDate": "1769991615045", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189774", + "createdBy": null, + "createdTime": "2026-02-02 08:20:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:13", + "echoMap": {}, + "alarmNo": "1830132345", + "alarmDate": "1769991607183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189659", + "createdBy": null, + "createdTime": "2026-02-02 08:19:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:58", + "echoMap": {}, + "alarmNo": "1830132344", + "alarmDate": "1769991597204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189571", + "createdBy": null, + "createdTime": "2026-02-02 08:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:20:02", + "echoMap": {}, + "alarmNo": "1830132343", + "alarmDate": "1769991591945", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189558", + "createdBy": null, + "createdTime": "2026-02-02 08:19:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:56", + "echoMap": {}, + "alarmNo": "1830132342", + "alarmDate": "1769991590183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189334", + "createdBy": null, + "createdTime": "2026-02-02 08:10:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:50", + "echoMap": {}, + "alarmNo": "1830132341", + "alarmDate": "1769991049129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189273", + "createdBy": null, + "createdTime": "2026-02-02 08:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:30:47", + "echoMap": {}, + "alarmNo": "1830132340", + "alarmDate": "1769991042305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189251", + "createdBy": null, + "createdTime": "2026-02-02 08:10:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:47", + "echoMap": {}, + "alarmNo": "1830132339", + "alarmDate": "1769991039806", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189156", + "createdBy": null, + "createdTime": "2026-02-02 08:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:34", + "echoMap": {}, + "alarmNo": "1830132338", + "alarmDate": "1769991027976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189099", + "createdBy": null, + "createdTime": "2026-02-02 08:10:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:23", + "echoMap": {}, + "alarmNo": "1830132337", + "alarmDate": "1769991022397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113754950189069", + "createdBy": null, + "createdTime": "2026-02-02 08:10:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:26", + "echoMap": {}, + "alarmNo": "1830132336", + "alarmDate": "1769991019614", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360255162", + "createdBy": null, + "createdTime": "2026-02-02 08:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:02", + "echoMap": {}, + "alarmNo": "1830132335", + "alarmDate": "1769990991672", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254938", + "createdBy": null, + "createdTime": "2026-02-02 08:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:56", + "echoMap": {}, + "alarmNo": "1830132334", + "alarmDate": "1769990450812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254936", + "createdBy": null, + "createdTime": "2026-02-02 08:00:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:16", + "echoMap": {}, + "alarmNo": "1830132333", + "alarmDate": "1769990450653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254694", + "createdBy": null, + "createdTime": "2026-02-02 08:00:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:36", + "echoMap": {}, + "alarmNo": "1830132332", + "alarmDate": "1769990429264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254649", + "createdBy": null, + "createdTime": "2026-02-02 08:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:38", + "echoMap": {}, + "alarmNo": "1830132331", + "alarmDate": "1769990425658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254578", + "createdBy": null, + "createdTime": "2026-02-02 08:00:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:44", + "echoMap": {}, + "alarmNo": "1830132330", + "alarmDate": "1769990419395", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113746360254517", + "createdBy": null, + "createdTime": "2026-02-02 08:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:14", + "echoMap": {}, + "alarmNo": "1830132329", + "alarmDate": "1769990414003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060064", + "deviceName": "[124](10)新江湾下行2-2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113742065287194", + "createdBy": null, + "createdTime": "2026-02-02 08:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:03", + "echoMap": {}, + "alarmNo": "1830132328", + "alarmDate": "1769990401598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320686", + "createdBy": null, + "createdTime": "2026-02-02 07:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:16", + "echoMap": {}, + "alarmNo": "1830132327", + "alarmDate": "1769990397134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320633", + "createdBy": null, + "createdTime": "2026-02-02 07:59:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:14", + "echoMap": {}, + "alarmNo": "1830132326", + "alarmDate": "1769990394556", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320581", + "createdBy": null, + "createdTime": "2026-02-02 07:59:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:59", + "echoMap": {}, + "alarmNo": "1830132325", + "alarmDate": "1769990390134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060028", + "deviceName": "[104](10)新江湾上行1-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320327", + "createdBy": null, + "createdTime": "2026-02-02 07:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:47", + "echoMap": {}, + "alarmNo": "1830132324", + "alarmDate": "1769989846537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320235", + "createdBy": null, + "createdTime": "2026-02-02 07:50:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:40", + "echoMap": {}, + "alarmNo": "1830132323", + "alarmDate": "1769989839409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320219", + "createdBy": null, + "createdTime": "2026-02-02 07:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:45", + "echoMap": {}, + "alarmNo": "1830132322", + "alarmDate": "1769989838450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320187", + "createdBy": null, + "createdTime": "2026-02-02 07:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:43", + "echoMap": {}, + "alarmNo": "1830132321", + "alarmDate": "1769989835893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770320036", + "createdBy": null, + "createdTime": "2026-02-02 07:50:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:29", + "echoMap": {}, + "alarmNo": "1830132320", + "alarmDate": "1769989823487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770319941", + "createdBy": null, + "createdTime": "2026-02-02 07:50:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:17", + "echoMap": {}, + "alarmNo": "1830132319", + "alarmDate": "1769989816545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113737770319898", + "createdBy": null, + "createdTime": "2026-02-02 07:50:13", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:26", + "echoMap": {}, + "alarmNo": "1830132318", + "alarmDate": "1769989813259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180386044", + "createdBy": null, + "createdTime": "2026-02-02 07:49:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:10", + "echoMap": {}, + "alarmNo": "1830132317", + "alarmDate": "1769989797363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385734", + "createdBy": null, + "createdTime": "2026-02-02 07:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:55", + "echoMap": {}, + "alarmNo": "1830132316", + "alarmDate": "1769989251093", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385649", + "createdBy": null, + "createdTime": "2026-02-02 07:40:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:44", + "echoMap": {}, + "alarmNo": "1830132315", + "alarmDate": "1769989242790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385551", + "createdBy": null, + "createdTime": "2026-02-02 07:40:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:24", + "echoMap": {}, + "alarmNo": "1830132314", + "alarmDate": "1769989234501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385440", + "createdBy": null, + "createdTime": "2026-02-02 07:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:31", + "echoMap": {}, + "alarmNo": "1830132313", + "alarmDate": "1769989225023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113729180385404", + "createdBy": null, + "createdTime": "2026-02-02 07:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:35", + "echoMap": {}, + "alarmNo": "1830132312", + "alarmDate": "1769989222039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113724885417987", + "createdBy": null, + "createdTime": "2026-02-02 07:40:01", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:22", + "echoMap": {}, + "alarmNo": "1830132311", + "alarmDate": "1769989201421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451554", + "createdBy": null, + "createdTime": "2026-02-02 07:39:57", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:10", + "echoMap": {}, + "alarmNo": "1830132310", + "alarmDate": "1769989197081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451475", + "createdBy": null, + "createdTime": "2026-02-02 07:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:50:06", + "echoMap": {}, + "alarmNo": "1830132309", + "alarmDate": "1769989191621", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060059", + "deviceName": "[374](10)新江湾7#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451113", + "createdBy": null, + "createdTime": "2026-02-02 07:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:40", + "echoMap": {}, + "alarmNo": "1830132308", + "alarmDate": "1769988640466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451094", + "createdBy": null, + "createdTime": "2026-02-02 07:30:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:50:13", + "echoMap": {}, + "alarmNo": "1830132307", + "alarmDate": "1769988639157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590451074", + "createdBy": null, + "createdTime": "2026-02-02 07:30:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:40:07", + "echoMap": {}, + "alarmNo": "1830132306", + "alarmDate": "1769988637787", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450969", + "createdBy": null, + "createdTime": "2026-02-02 07:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:49", + "echoMap": {}, + "alarmNo": "1830132305", + "alarmDate": "1769988629149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450919", + "createdBy": null, + "createdTime": "2026-02-02 07:30:25", + "updatedBy": null, + "updatedTime": "2026-02-02 08:00:07", + "echoMap": {}, + "alarmNo": "1830132304", + "alarmDate": "1769988624868", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060062", + "deviceName": "[375](10)新江湾6#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450785", + "createdBy": null, + "createdTime": "2026-02-02 07:30:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:26", + "echoMap": {}, + "alarmNo": "1830132303", + "alarmDate": "1769988613892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450743", + "createdBy": null, + "createdTime": "2026-02-02 07:30:11", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:12", + "echoMap": {}, + "alarmNo": "1830132302", + "alarmDate": "1769988610672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113720590450692", + "createdBy": null, + "createdTime": "2026-02-02 07:30:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:19", + "echoMap": {}, + "alarmNo": "1830132301", + "alarmDate": "1769988606666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516815", + "createdBy": null, + "createdTime": "2026-02-02 07:29:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:56", + "echoMap": {}, + "alarmNo": "1830132300", + "alarmDate": "1769988594774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516773", + "createdBy": null, + "createdTime": "2026-02-02 07:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:01", + "echoMap": {}, + "alarmNo": "1830132299", + "alarmDate": "1769988592813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516757", + "createdBy": null, + "createdTime": "2026-02-02 07:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:02", + "echoMap": {}, + "alarmNo": "1830132298", + "alarmDate": "1769988591820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516455", + "createdBy": null, + "createdTime": "2026-02-02 07:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:55", + "echoMap": {}, + "alarmNo": "1830132297", + "alarmDate": "1769988044466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516406", + "createdBy": null, + "createdTime": "2026-02-02 07:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:42", + "echoMap": {}, + "alarmNo": "1830132296", + "alarmDate": "1769988040737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516338", + "createdBy": null, + "createdTime": "2026-02-02 07:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:37", + "echoMap": {}, + "alarmNo": "1830132295", + "alarmDate": "1769988035833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516332", + "createdBy": null, + "createdTime": "2026-02-02 07:20:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:42", + "echoMap": {}, + "alarmNo": "1830132294", + "alarmDate": "1769988035578", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516225", + "createdBy": null, + "createdTime": "2026-02-02 07:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:34", + "echoMap": {}, + "alarmNo": "1830132293", + "alarmDate": "1769988027714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516133", + "createdBy": null, + "createdTime": "2026-02-02 07:20:21", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:17", + "echoMap": {}, + "alarmNo": "1830132292", + "alarmDate": "1769988020879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113712000516101", + "createdBy": null, + "createdTime": "2026-02-02 07:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:31", + "echoMap": {}, + "alarmNo": "1830132291", + "alarmDate": "1769988018450", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113707705548829", + "createdBy": null, + "createdTime": "2026-02-02 07:20:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:11", + "echoMap": {}, + "alarmNo": "1830132290", + "alarmDate": "1769988010193", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113703410582159", + "createdBy": null, + "createdTime": "2026-02-02 07:20:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:08", + "echoMap": {}, + "alarmNo": "1830132289", + "alarmDate": "1769988001563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113703410581755", + "createdBy": null, + "createdTime": "2026-02-02 07:10:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:20:07", + "echoMap": {}, + "alarmNo": "1830132288", + "alarmDate": "1769987447179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113699115614231", + "createdBy": null, + "createdTime": "2026-02-02 07:10:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:25", + "echoMap": {}, + "alarmNo": "1830132287", + "alarmDate": "1769987418378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113699115614214", + "createdBy": null, + "createdTime": "2026-02-02 07:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:23", + "echoMap": {}, + "alarmNo": "1830132286", + "alarmDate": "1769987417171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647465", + "createdBy": null, + "createdTime": "2026-02-02 07:09:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:04", + "echoMap": {}, + "alarmNo": "1830132285", + "alarmDate": "1769987398184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647463", + "createdBy": null, + "createdTime": "2026-02-02 07:09:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:04", + "echoMap": {}, + "alarmNo": "1830132284", + "alarmDate": "1769987398152", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647357", + "createdBy": null, + "createdTime": "2026-02-02 07:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:59", + "echoMap": {}, + "alarmNo": "1830132283", + "alarmDate": "1769987392226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647055", + "createdBy": null, + "createdTime": "2026-02-02 07:00:45", + "updatedBy": null, + "updatedTime": "2026-02-02 07:10:35", + "echoMap": {}, + "alarmNo": "1830132282", + "alarmDate": "1769986844883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820647032", + "createdBy": null, + "createdTime": "2026-02-02 07:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:49", + "echoMap": {}, + "alarmNo": "1830132281", + "alarmDate": "1769986843047", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113694820646926", + "createdBy": null, + "createdTime": "2026-02-02 07:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:35", + "echoMap": {}, + "alarmNo": "1830132280", + "alarmDate": "1769986833969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230713055", + "createdBy": null, + "createdTime": "2026-02-02 07:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:33", + "echoMap": {}, + "alarmNo": "1830132279", + "alarmDate": "1769986813877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712958", + "createdBy": null, + "createdTime": "2026-02-02 07:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:14", + "echoMap": {}, + "alarmNo": "1830132278", + "alarmDate": "1769986806925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712920", + "createdBy": null, + "createdTime": "2026-02-02 07:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:11", + "echoMap": {}, + "alarmNo": "1830132277", + "alarmDate": "1769986804363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712917", + "createdBy": null, + "createdTime": "2026-02-02 07:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:05", + "echoMap": {}, + "alarmNo": "1830132276", + "alarmDate": "1769986804205", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712815", + "createdBy": null, + "createdTime": "2026-02-02 06:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:58", + "echoMap": {}, + "alarmNo": "1830132275", + "alarmDate": "1769986796933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712722", + "createdBy": null, + "createdTime": "2026-02-02 06:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:01", + "echoMap": {}, + "alarmNo": "1830132274", + "alarmDate": "1769986791847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712711", + "createdBy": null, + "createdTime": "2026-02-02 06:59:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:54", + "echoMap": {}, + "alarmNo": "1830132273", + "alarmDate": "1769986790887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060060", + "deviceName": "[314](10)新江湾2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712451", + "createdBy": null, + "createdTime": "2026-02-02 06:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:27", + "echoMap": {}, + "alarmNo": "1830132272", + "alarmDate": "1769986246807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712449", + "createdBy": null, + "createdTime": "2026-02-02 06:50:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:48", + "echoMap": {}, + "alarmNo": "1830132271", + "alarmDate": "1769986246732", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113686230712337", + "createdBy": null, + "createdTime": "2026-02-02 06:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 07:00:24", + "echoMap": {}, + "alarmNo": "1830132270", + "alarmDate": "1769986237703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113681935745092", + "createdBy": null, + "createdTime": "2026-02-02 06:50:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:38", + "echoMap": {}, + "alarmNo": "1830132269", + "alarmDate": "1769986232171", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113681935745069", + "createdBy": null, + "createdTime": "2026-02-02 06:50:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:31", + "echoMap": {}, + "alarmNo": "1830132268", + "alarmDate": "1769986230410", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778461", + "createdBy": null, + "createdTime": "2026-02-02 06:50:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:45", + "echoMap": {}, + "alarmNo": "1830132267", + "alarmDate": "1769986225561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778417", + "createdBy": null, + "createdTime": "2026-02-02 06:50:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:28", + "echoMap": {}, + "alarmNo": "1830132266", + "alarmDate": "1769986221707", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778303", + "createdBy": null, + "createdTime": "2026-02-02 06:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:18", + "echoMap": {}, + "alarmNo": "1830132265", + "alarmDate": "1769986211667", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778157", + "createdBy": null, + "createdTime": "2026-02-02 06:50:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:13", + "echoMap": {}, + "alarmNo": "1830132264", + "alarmDate": "1769986200445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640778019", + "createdBy": null, + "createdTime": "2026-02-02 06:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:10", + "echoMap": {}, + "alarmNo": "1830132263", + "alarmDate": "1769986189672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113677640777742", + "createdBy": null, + "createdTime": "2026-02-02 06:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:50:13", + "echoMap": {}, + "alarmNo": "1830132262", + "alarmDate": "1769985644853", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113673345810534", + "createdBy": null, + "createdTime": "2026-02-02 06:40:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:48", + "echoMap": {}, + "alarmNo": "1830132261", + "alarmDate": "1769985642490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113673345810505", + "createdBy": null, + "createdTime": "2026-02-02 06:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:46", + "echoMap": {}, + "alarmNo": "1830132260", + "alarmDate": "1769985640413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113673345810491", + "createdBy": null, + "createdTime": "2026-02-02 06:40:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:45", + "echoMap": {}, + "alarmNo": "1830132259", + "alarmDate": "1769985639402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843716", + "createdBy": null, + "createdTime": "2026-02-02 06:40:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:33", + "echoMap": {}, + "alarmNo": "1830132258", + "alarmDate": "1769985621215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843652", + "createdBy": null, + "createdTime": "2026-02-02 06:40:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:29", + "echoMap": {}, + "alarmNo": "1830132257", + "alarmDate": "1769985616384", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843511", + "createdBy": null, + "createdTime": "2026-02-02 06:40:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:13", + "echoMap": {}, + "alarmNo": "1830132256", + "alarmDate": "1769985605717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843476", + "createdBy": null, + "createdTime": "2026-02-02 06:40:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:04", + "echoMap": {}, + "alarmNo": "1830132255", + "alarmDate": "1769985603249", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843300", + "createdBy": null, + "createdTime": "2026-02-02 06:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:58", + "echoMap": {}, + "alarmNo": "1830132254", + "alarmDate": "1769985592324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113669050843299", + "createdBy": null, + "createdTime": "2026-02-02 06:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:20", + "echoMap": {}, + "alarmNo": "1830132253", + "alarmDate": "1769985592250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909261", + "createdBy": null, + "createdTime": "2026-02-02 06:30:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:52", + "echoMap": {}, + "alarmNo": "1830132252", + "alarmDate": "1769985044994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909226", + "createdBy": null, + "createdTime": "2026-02-02 06:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:53", + "echoMap": {}, + "alarmNo": "1830132251", + "alarmDate": "1769985042571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909219", + "createdBy": null, + "createdTime": "2026-02-02 06:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:08", + "echoMap": {}, + "alarmNo": "1830132250", + "alarmDate": "1769985042013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460909028", + "createdBy": null, + "createdTime": "2026-02-02 06:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:32", + "echoMap": {}, + "alarmNo": "1830132249", + "alarmDate": "1769985025943", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908994", + "createdBy": null, + "createdTime": "2026-02-02 06:30:23", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:24", + "echoMap": {}, + "alarmNo": "1830132248", + "alarmDate": "1769985023495", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908962", + "createdBy": null, + "createdTime": "2026-02-02 06:30:21", + "updatedBy": null, + "updatedTime": "2026-02-02 06:40:28", + "echoMap": {}, + "alarmNo": "1830132247", + "alarmDate": "1769985021008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060010", + "deviceName": "[108](10)新江湾上行2-2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908926", + "createdBy": null, + "createdTime": "2026-02-02 06:30:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:30", + "echoMap": {}, + "alarmNo": "1830132246", + "alarmDate": "1769985018023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908831", + "createdBy": null, + "createdTime": "2026-02-02 06:30:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:16", + "echoMap": {}, + "alarmNo": "1830132245", + "alarmDate": "1769985009568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908779", + "createdBy": null, + "createdTime": "2026-02-02 06:30:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:06", + "echoMap": {}, + "alarmNo": "1830132244", + "alarmDate": "1769985005088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908668", + "createdBy": null, + "createdTime": "2026-02-02 06:29:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:58", + "echoMap": {}, + "alarmNo": "1830132243", + "alarmDate": "1769984996834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113660460908618", + "createdBy": null, + "createdTime": "2026-02-02 06:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:10:30", + "echoMap": {}, + "alarmNo": "1830132242", + "alarmDate": "1769984994320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974608", + "createdBy": null, + "createdTime": "2026-02-02 06:20:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:51", + "echoMap": {}, + "alarmNo": "1830132241", + "alarmDate": "1769984449723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974565", + "createdBy": null, + "createdTime": "2026-02-02 06:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:57", + "echoMap": {}, + "alarmNo": "1830132240", + "alarmDate": "1769984446293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974539", + "createdBy": null, + "createdTime": "2026-02-02 06:20:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:50", + "echoMap": {}, + "alarmNo": "1830132239", + "alarmDate": "1769984443897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974486", + "createdBy": null, + "createdTime": "2026-02-02 06:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:30:06", + "echoMap": {}, + "alarmNo": "1830132238", + "alarmDate": "1769984438766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974302", + "createdBy": null, + "createdTime": "2026-02-02 06:20:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:35", + "echoMap": {}, + "alarmNo": "1830132237", + "alarmDate": "1769984422353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974112", + "createdBy": null, + "createdTime": "2026-02-02 06:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:21", + "echoMap": {}, + "alarmNo": "1830132236", + "alarmDate": "1769984407768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974100", + "createdBy": null, + "createdTime": "2026-02-02 06:20:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:26", + "echoMap": {}, + "alarmNo": "1830132235", + "alarmDate": "1769984407166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113651870974030", + "createdBy": null, + "createdTime": "2026-02-02 06:20:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:32", + "echoMap": {}, + "alarmNo": "1830132234", + "alarmDate": "1769984400803", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113647576006721", + "createdBy": null, + "createdTime": "2026-02-02 06:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:26", + "echoMap": {}, + "alarmNo": "1830132233", + "alarmDate": "1769984391757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113647576006716", + "createdBy": null, + "createdTime": "2026-02-02 06:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:56", + "echoMap": {}, + "alarmNo": "1830132232", + "alarmDate": "1769984391337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039947", + "createdBy": null, + "createdTime": "2026-02-02 06:10:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:20:52", + "echoMap": {}, + "alarmNo": "1830132231", + "alarmDate": "1769983851698", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039746", + "createdBy": null, + "createdTime": "2026-02-02 06:10:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:55", + "echoMap": {}, + "alarmNo": "1830132230", + "alarmDate": "1769983834959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039738", + "createdBy": null, + "createdTime": "2026-02-02 06:10:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:47", + "echoMap": {}, + "alarmNo": "1830132229", + "alarmDate": "1769983834424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039710", + "createdBy": null, + "createdTime": "2026-02-02 06:10:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:33", + "echoMap": {}, + "alarmNo": "1830132228", + "alarmDate": "1769983832454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039695", + "createdBy": null, + "createdTime": "2026-02-02 06:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:44", + "echoMap": {}, + "alarmNo": "1830132227", + "alarmDate": "1769983831370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113643281039544", + "createdBy": null, + "createdTime": "2026-02-02 06:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:26", + "echoMap": {}, + "alarmNo": "1830132226", + "alarmDate": "1769983819004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105414", + "createdBy": null, + "createdTime": "2026-02-02 06:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:00", + "echoMap": {}, + "alarmNo": "1830132225", + "alarmDate": "1769983792999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105405", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:59", + "echoMap": {}, + "alarmNo": "1830132224", + "alarmDate": "1769983792436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105401", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:22", + "echoMap": {}, + "alarmNo": "1830132223", + "alarmDate": "1769983792241", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105400", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:18", + "echoMap": {}, + "alarmNo": "1830132222", + "alarmDate": "1769983792183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105386", + "createdBy": null, + "createdTime": "2026-02-02 06:09:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:52", + "echoMap": {}, + "alarmNo": "1830132221", + "alarmDate": "1769983791022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105137", + "createdBy": null, + "createdTime": "2026-02-02 06:00:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:16", + "echoMap": {}, + "alarmNo": "1830132220", + "alarmDate": "1769983247748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691105084", + "createdBy": null, + "createdTime": "2026-02-02 06:00:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:44", + "echoMap": {}, + "alarmNo": "1830132219", + "alarmDate": "1769983242824", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691104858", + "createdBy": null, + "createdTime": "2026-02-02 06:00:22", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:28", + "echoMap": {}, + "alarmNo": "1830132218", + "alarmDate": "1769983221699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691104808", + "createdBy": null, + "createdTime": "2026-02-02 06:00:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:18", + "echoMap": {}, + "alarmNo": "1830132217", + "alarmDate": "1769983217345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113634691104790", + "createdBy": null, + "createdTime": "2026-02-02 06:00:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:17", + "echoMap": {}, + "alarmNo": "1830132216", + "alarmDate": "1769983216027", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113630396137588", + "createdBy": null, + "createdTime": "2026-02-02 06:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:27", + "echoMap": {}, + "alarmNo": "1830132215", + "alarmDate": "1769983213919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170575", + "createdBy": null, + "createdTime": "2026-02-02 05:50:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:04", + "echoMap": {}, + "alarmNo": "1830132214", + "alarmDate": "1769982643376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170498", + "createdBy": null, + "createdTime": "2026-02-02 05:50:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:50", + "echoMap": {}, + "alarmNo": "1830132213", + "alarmDate": "1769982635801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170253", + "createdBy": null, + "createdTime": "2026-02-02 05:50:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:24", + "echoMap": {}, + "alarmNo": "1830132212", + "alarmDate": "1769982611799", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113626101170244", + "createdBy": null, + "createdTime": "2026-02-02 05:50:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:24", + "echoMap": {}, + "alarmNo": "1830132211", + "alarmDate": "1769982611311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113621806202989", + "createdBy": null, + "createdTime": "2026-02-02 05:50:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:04", + "echoMap": {}, + "alarmNo": "1830132210", + "alarmDate": "1769982602893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511236309", + "createdBy": null, + "createdTime": "2026-02-02 05:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:10:40", + "echoMap": {}, + "alarmNo": "1830132209", + "alarmDate": "1769982594048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235997", + "createdBy": null, + "createdTime": "2026-02-02 05:40:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:49", + "echoMap": {}, + "alarmNo": "1830132208", + "alarmDate": "1769982044278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235863", + "createdBy": null, + "createdTime": "2026-02-02 05:40:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:50:00", + "echoMap": {}, + "alarmNo": "1830132207", + "alarmDate": "1769982032464", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235766", + "createdBy": null, + "createdTime": "2026-02-02 05:40:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:32", + "echoMap": {}, + "alarmNo": "1830132206", + "alarmDate": "1769982024702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235675", + "createdBy": null, + "createdTime": "2026-02-02 05:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:36", + "echoMap": {}, + "alarmNo": "1830132205", + "alarmDate": "1769982017074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113617511235602", + "createdBy": null, + "createdTime": "2026-02-02 05:40:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:11", + "echoMap": {}, + "alarmNo": "1830132204", + "alarmDate": "1769982010173", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113613216268397", + "createdBy": null, + "createdTime": "2026-02-02 05:40:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:19", + "echoMap": {}, + "alarmNo": "1830132203", + "alarmDate": "1769982007462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113613216268298", + "createdBy": null, + "createdTime": "2026-02-02 05:39:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:06", + "echoMap": {}, + "alarmNo": "1830132202", + "alarmDate": "1769981998635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301643", + "createdBy": null, + "createdTime": "2026-02-02 05:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:04", + "echoMap": {}, + "alarmNo": "1830132201", + "alarmDate": "1769981992016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301410", + "createdBy": null, + "createdTime": "2026-02-02 05:30:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:54", + "echoMap": {}, + "alarmNo": "1830132200", + "alarmDate": "1769981450311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301334", + "createdBy": null, + "createdTime": "2026-02-02 05:30:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:57", + "echoMap": {}, + "alarmNo": "1830132199", + "alarmDate": "1769981444070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301294", + "createdBy": null, + "createdTime": "2026-02-02 05:30:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:25", + "echoMap": {}, + "alarmNo": "1830132198", + "alarmDate": "1769981441046", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301240", + "createdBy": null, + "createdTime": "2026-02-02 05:30:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:37", + "echoMap": {}, + "alarmNo": "1830132197", + "alarmDate": "1769981436519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301223", + "createdBy": null, + "createdTime": "2026-02-02 05:30:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:36", + "echoMap": {}, + "alarmNo": "1830132196", + "alarmDate": "1769981435333", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113608921301147", + "createdBy": null, + "createdTime": "2026-02-02 05:30:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:48", + "echoMap": {}, + "alarmNo": "1830132195", + "alarmDate": "1769981428747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113604626333789", + "createdBy": null, + "createdTime": "2026-02-02 05:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:28", + "echoMap": {}, + "alarmNo": "1830132194", + "alarmDate": "1769981414884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331367120", + "createdBy": null, + "createdTime": "2026-02-02 05:30:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:25", + "echoMap": {}, + "alarmNo": "1830132193", + "alarmDate": "1769981404922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060051", + "deviceName": "[311](10)新江湾2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331367002", + "createdBy": null, + "createdTime": "2026-02-02 05:29:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:09", + "echoMap": {}, + "alarmNo": "1830132192", + "alarmDate": "1769981395655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060077", + "deviceName": "[332](10)新江湾6#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366947", + "createdBy": null, + "createdTime": "2026-02-02 05:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:02", + "echoMap": {}, + "alarmNo": "1830132191", + "alarmDate": "1769981392843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366717", + "createdBy": null, + "createdTime": "2026-02-02 05:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:30:31", + "echoMap": {}, + "alarmNo": "1830132190", + "alarmDate": "1769980852006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366617", + "createdBy": null, + "createdTime": "2026-02-02 05:20:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:55", + "echoMap": {}, + "alarmNo": "1830132189", + "alarmDate": "1769980840969", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113600331366517", + "createdBy": null, + "createdTime": "2026-02-02 05:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:31", + "echoMap": {}, + "alarmNo": "1830132188", + "alarmDate": "1769980830090", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113596036399207", + "createdBy": null, + "createdTime": "2026-02-02 05:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:24", + "echoMap": {}, + "alarmNo": "1830132187", + "alarmDate": "1769980817583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432548", + "createdBy": null, + "createdTime": "2026-02-02 05:20:06", + "updatedBy": null, + "updatedTime": "2026-02-02 05:40:41", + "echoMap": {}, + "alarmNo": "1830132186", + "alarmDate": "1769980806010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432370", + "createdBy": null, + "createdTime": "2026-02-02 05:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:09", + "echoMap": {}, + "alarmNo": "1830132185", + "alarmDate": "1769980792920", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432364", + "createdBy": null, + "createdTime": "2026-02-02 05:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:05", + "echoMap": {}, + "alarmNo": "1830132184", + "alarmDate": "1769980792470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741432355", + "createdBy": null, + "createdTime": "2026-02-02 05:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:20:28", + "echoMap": {}, + "alarmNo": "1830132183", + "alarmDate": "1769980791795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741431995", + "createdBy": null, + "createdTime": "2026-02-02 05:10:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:50", + "echoMap": {}, + "alarmNo": "1830132182", + "alarmDate": "1769980236559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113591741431928", + "createdBy": null, + "createdTime": "2026-02-02 05:10:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:30", + "echoMap": {}, + "alarmNo": "1830132181", + "alarmDate": "1769980229417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113587446464605", + "createdBy": null, + "createdTime": "2026-02-02 05:10:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:22", + "echoMap": {}, + "alarmNo": "1830132180", + "alarmDate": "1769980215251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113587446464575", + "createdBy": null, + "createdTime": "2026-02-02 05:10:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:25", + "echoMap": {}, + "alarmNo": "1830132179", + "alarmDate": "1769980212539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497945", + "createdBy": null, + "createdTime": "2026-02-02 05:10:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:11", + "echoMap": {}, + "alarmNo": "1830132178", + "alarmDate": "1769980203830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497943", + "createdBy": null, + "createdTime": "2026-02-02 05:10:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:05", + "echoMap": {}, + "alarmNo": "1830132177", + "alarmDate": "1769980203701", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497845", + "createdBy": null, + "createdTime": "2026-02-02 05:09:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:02", + "echoMap": {}, + "alarmNo": "1830132176", + "alarmDate": "1769980195623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497552", + "createdBy": null, + "createdTime": "2026-02-02 05:00:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:01", + "echoMap": {}, + "alarmNo": "1830132175", + "alarmDate": "1769979649301", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497387", + "createdBy": null, + "createdTime": "2026-02-02 05:00:33", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:40", + "echoMap": {}, + "alarmNo": "1830132174", + "alarmDate": "1769979633478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113583151497217", + "createdBy": null, + "createdTime": "2026-02-02 05:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:36", + "echoMap": {}, + "alarmNo": "1830132173", + "alarmDate": "1769979618267", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113578856529974", + "createdBy": null, + "createdTime": "2026-02-02 05:00:12", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:44", + "echoMap": {}, + "alarmNo": "1830132172", + "alarmDate": "1769979611814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561563335", + "createdBy": null, + "createdTime": "2026-02-02 05:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:02", + "echoMap": {}, + "alarmNo": "1830132171", + "alarmDate": "1769979601408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561562937", + "createdBy": null, + "createdTime": "2026-02-02 04:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:53", + "echoMap": {}, + "alarmNo": "1830132170", + "alarmDate": "1769979045814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561562861", + "createdBy": null, + "createdTime": "2026-02-02 04:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:00:06", + "echoMap": {}, + "alarmNo": "1830132169", + "alarmDate": "1769979038188", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113574561562633", + "createdBy": null, + "createdTime": "2026-02-02 04:50:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:22", + "echoMap": {}, + "alarmNo": "1830132168", + "alarmDate": "1769979015633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595439", + "createdBy": null, + "createdTime": "2026-02-02 04:50:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:21", + "echoMap": {}, + "alarmNo": "1830132167", + "alarmDate": "1769979014417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595373", + "createdBy": null, + "createdTime": "2026-02-02 04:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:19", + "echoMap": {}, + "alarmNo": "1830132166", + "alarmDate": "1769979008511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595372", + "createdBy": null, + "createdTime": "2026-02-02 04:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:09", + "echoMap": {}, + "alarmNo": "1830132165", + "alarmDate": "1769979008510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113570266595371", + "createdBy": null, + "createdTime": "2026-02-02 04:50:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:09", + "echoMap": {}, + "alarmNo": "1830132164", + "alarmDate": "1769979008509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628627", + "createdBy": null, + "createdTime": "2026-02-02 04:49:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:54", + "echoMap": {}, + "alarmNo": "1830132163", + "alarmDate": "1769978992396", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628618", + "createdBy": null, + "createdTime": "2026-02-02 04:49:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:57", + "echoMap": {}, + "alarmNo": "1830132162", + "alarmDate": "1769978991530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628395", + "createdBy": null, + "createdTime": "2026-02-02 04:40:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:50:00", + "echoMap": {}, + "alarmNo": "1830132161", + "alarmDate": "1769978450224", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628301", + "createdBy": null, + "createdTime": "2026-02-02 04:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:55", + "echoMap": {}, + "alarmNo": "1830132160", + "alarmDate": "1769978441427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628167", + "createdBy": null, + "createdTime": "2026-02-02 04:40:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:47", + "echoMap": {}, + "alarmNo": "1830132159", + "alarmDate": "1769978428176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628123", + "createdBy": null, + "createdTime": "2026-02-02 04:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:25", + "echoMap": {}, + "alarmNo": "1830132158", + "alarmDate": "1769978424175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628098", + "createdBy": null, + "createdTime": "2026-02-02 04:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:10:03", + "echoMap": {}, + "alarmNo": "1830132157", + "alarmDate": "1769978422001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113565971628036", + "createdBy": null, + "createdTime": "2026-02-02 04:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:29", + "echoMap": {}, + "alarmNo": "1830132156", + "alarmDate": "1769978416678", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381694159", + "createdBy": null, + "createdTime": "2026-02-02 04:40:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:15", + "echoMap": {}, + "alarmNo": "1830132155", + "alarmDate": "1769978402282", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381694158", + "createdBy": null, + "createdTime": "2026-02-02 04:40:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:40:11", + "echoMap": {}, + "alarmNo": "1830132154", + "alarmDate": "1769978402279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693823", + "createdBy": null, + "createdTime": "2026-02-02 04:30:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:57", + "echoMap": {}, + "alarmNo": "1830132153", + "alarmDate": "1769977853337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693597", + "createdBy": null, + "createdTime": "2026-02-02 04:30:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:29", + "echoMap": {}, + "alarmNo": "1830132152", + "alarmDate": "1769977827952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693550", + "createdBy": null, + "createdTime": "2026-02-02 04:30:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:43", + "echoMap": {}, + "alarmNo": "1830132151", + "alarmDate": "1769977823634", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113557381693507", + "createdBy": null, + "createdTime": "2026-02-02 04:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:26", + "echoMap": {}, + "alarmNo": "1830132150", + "alarmDate": "1769977819500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759587", + "createdBy": null, + "createdTime": "2026-02-02 04:29:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:05", + "echoMap": {}, + "alarmNo": "1830132149", + "alarmDate": "1769977799172", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759505", + "createdBy": null, + "createdTime": "2026-02-02 04:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:00", + "echoMap": {}, + "alarmNo": "1830132148", + "alarmDate": "1769977794104", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759483", + "createdBy": null, + "createdTime": "2026-02-02 04:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:11", + "echoMap": {}, + "alarmNo": "1830132147", + "alarmDate": "1769977791581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759266", + "createdBy": null, + "createdTime": "2026-02-02 04:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:11", + "echoMap": {}, + "alarmNo": "1830132146", + "alarmDate": "1769977251580", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791759265", + "createdBy": null, + "createdTime": "2026-02-02 04:20:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:52", + "echoMap": {}, + "alarmNo": "1830132145", + "alarmDate": "1769977251579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791758993", + "createdBy": null, + "createdTime": "2026-02-02 04:20:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:35", + "echoMap": {}, + "alarmNo": "1830132144", + "alarmDate": "1769977227770", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791758984", + "createdBy": null, + "createdTime": "2026-02-02 04:20:27", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:40", + "echoMap": {}, + "alarmNo": "1830132143", + "alarmDate": "1769977227221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113548791758867", + "createdBy": null, + "createdTime": "2026-02-02 04:20:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:19", + "echoMap": {}, + "alarmNo": "1830132142", + "alarmDate": "1769977217377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824953", + "createdBy": null, + "createdTime": "2026-02-02 04:20:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:11", + "echoMap": {}, + "alarmNo": "1830132141", + "alarmDate": "1769977204540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824776", + "createdBy": null, + "createdTime": "2026-02-02 04:19:53", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:03", + "echoMap": {}, + "alarmNo": "1830132140", + "alarmDate": "1769977192893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824472", + "createdBy": null, + "createdTime": "2026-02-02 04:10:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:44", + "echoMap": {}, + "alarmNo": "1830132139", + "alarmDate": "1769976642747", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824454", + "createdBy": null, + "createdTime": "2026-02-02 04:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:43", + "echoMap": {}, + "alarmNo": "1830132138", + "alarmDate": "1769976641637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824448", + "createdBy": null, + "createdTime": "2026-02-02 04:10:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:20:16", + "echoMap": {}, + "alarmNo": "1830132137", + "alarmDate": "1769976641196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113540201824308", + "createdBy": null, + "createdTime": "2026-02-02 04:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:34", + "echoMap": {}, + "alarmNo": "1830132136", + "alarmDate": "1769976628366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113535906857076", + "createdBy": null, + "createdTime": "2026-02-02 04:10:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:42", + "echoMap": {}, + "alarmNo": "1830132135", + "alarmDate": "1769976623523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113535906857051", + "createdBy": null, + "createdTime": "2026-02-02 04:10:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:54", + "echoMap": {}, + "alarmNo": "1830132134", + "alarmDate": "1769976621348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060157", + "deviceName": "[111](10)新江湾上行2-5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611890374", + "createdBy": null, + "createdTime": "2026-02-02 04:10:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:28", + "echoMap": {}, + "alarmNo": "1830132133", + "alarmDate": "1769976609409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611890302", + "createdBy": null, + "createdTime": "2026-02-02 04:10:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:10:09", + "echoMap": {}, + "alarmNo": "1830132132", + "alarmDate": "1769976602275", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611890180", + "createdBy": null, + "createdTime": "2026-02-02 04:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:56", + "echoMap": {}, + "alarmNo": "1830132131", + "alarmDate": "1769976592022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611889952", + "createdBy": null, + "createdTime": "2026-02-02 04:00:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:57", + "echoMap": {}, + "alarmNo": "1830132130", + "alarmDate": "1769976050054", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611889739", + "createdBy": null, + "createdTime": "2026-02-02 04:00:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:41", + "echoMap": {}, + "alarmNo": "1830132129", + "alarmDate": "1769976028341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113531611889700", + "createdBy": null, + "createdTime": "2026-02-02 04:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:37", + "echoMap": {}, + "alarmNo": "1830132128", + "alarmDate": "1769976025072", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113527316922469", + "createdBy": null, + "createdTime": "2026-02-02 04:00:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:26", + "echoMap": {}, + "alarmNo": "1830132127", + "alarmDate": "1769976019886", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955726", + "createdBy": null, + "createdTime": "2026-02-02 04:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:16", + "echoMap": {}, + "alarmNo": "1830132126", + "alarmDate": "1769976003739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955712", + "createdBy": null, + "createdTime": "2026-02-02 04:00:03", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:18", + "echoMap": {}, + "alarmNo": "1830132125", + "alarmDate": "1769976002839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955670", + "createdBy": null, + "createdTime": "2026-02-02 03:59:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:00:12", + "echoMap": {}, + "alarmNo": "1830132124", + "alarmDate": "1769975999137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955263", + "createdBy": null, + "createdTime": "2026-02-02 03:50:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:47", + "echoMap": {}, + "alarmNo": "1830132123", + "alarmDate": "1769975441068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113523021955229", + "createdBy": null, + "createdTime": "2026-02-02 03:50:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:39", + "echoMap": {}, + "alarmNo": "1830132122", + "alarmDate": "1769975438113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113518726987815", + "createdBy": null, + "createdTime": "2026-02-02 03:50:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:52", + "echoMap": {}, + "alarmNo": "1830132121", + "alarmDate": "1769975416792", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432021173", + "createdBy": null, + "createdTime": "2026-02-02 03:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:12", + "echoMap": {}, + "alarmNo": "1830132120", + "alarmDate": "1769975409786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432021172", + "createdBy": null, + "createdTime": "2026-02-02 03:50:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:12", + "echoMap": {}, + "alarmNo": "1830132119", + "alarmDate": "1769975409782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432020726", + "createdBy": null, + "createdTime": "2026-02-02 03:40:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:31", + "echoMap": {}, + "alarmNo": "1830132118", + "alarmDate": "1769974848351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432020705", + "createdBy": null, + "createdTime": "2026-02-02 03:40:47", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:27", + "echoMap": {}, + "alarmNo": "1830132117", + "alarmDate": "1769974846609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113514432020616", + "createdBy": null, + "createdTime": "2026-02-02 03:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 03:50:07", + "echoMap": {}, + "alarmNo": "1830132116", + "alarmDate": "1769974838033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113510137053299", + "createdBy": null, + "createdTime": "2026-02-02 03:40:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:25", + "echoMap": {}, + "alarmNo": "1830132115", + "alarmDate": "1769974823596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113505842086543", + "createdBy": null, + "createdTime": "2026-02-02 03:40:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:25", + "echoMap": {}, + "alarmNo": "1830132114", + "alarmDate": "1769974806030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113505842085963", + "createdBy": null, + "createdTime": "2026-02-02 03:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:54", + "echoMap": {}, + "alarmNo": "1830132113", + "alarmDate": "1769974233531", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113501547118643", + "createdBy": null, + "createdTime": "2026-02-02 03:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:30", + "echoMap": {}, + "alarmNo": "1830132112", + "alarmDate": "1769974219623", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252152004", + "createdBy": null, + "createdTime": "2026-02-02 03:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:22", + "echoMap": {}, + "alarmNo": "1830132111", + "alarmDate": "1769974208480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151965", + "createdBy": null, + "createdTime": "2026-02-02 03:30:05", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:06", + "echoMap": {}, + "alarmNo": "1830132110", + "alarmDate": "1769974204866", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151816", + "createdBy": null, + "createdTime": "2026-02-02 03:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:30:07", + "echoMap": {}, + "alarmNo": "1830132109", + "alarmDate": "1769974193633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151555", + "createdBy": null, + "createdTime": "2026-02-02 03:20:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:40:10", + "echoMap": {}, + "alarmNo": "1830132108", + "alarmDate": "1769973648622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151459", + "createdBy": null, + "createdTime": "2026-02-02 03:20:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:58", + "echoMap": {}, + "alarmNo": "1830132107", + "alarmDate": "1769973639265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151364", + "createdBy": null, + "createdTime": "2026-02-02 03:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:31", + "echoMap": {}, + "alarmNo": "1830132106", + "alarmDate": "1769973629918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113497252151363", + "createdBy": null, + "createdTime": "2026-02-02 03:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:31", + "echoMap": {}, + "alarmNo": "1830132105", + "alarmDate": "1769973629876", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113492957184106", + "createdBy": null, + "createdTime": "2026-02-02 03:20:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:30", + "echoMap": {}, + "alarmNo": "1830132104", + "alarmDate": "1769973623651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113492957184098", + "createdBy": null, + "createdTime": "2026-02-02 03:20:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:35", + "echoMap": {}, + "alarmNo": "1830132103", + "alarmDate": "1769973623367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113492957184078", + "createdBy": null, + "createdTime": "2026-02-02 03:20:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:28", + "echoMap": {}, + "alarmNo": "1830132102", + "alarmDate": "1769973621693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662217446", + "createdBy": null, + "createdTime": "2026-02-02 03:20:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:26", + "echoMap": {}, + "alarmNo": "1830132101", + "alarmDate": "1769973613262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662217217", + "createdBy": null, + "createdTime": "2026-02-02 03:19:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:55", + "echoMap": {}, + "alarmNo": "1830132100", + "alarmDate": "1769973593679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662217201", + "createdBy": null, + "createdTime": "2026-02-02 03:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:03", + "echoMap": {}, + "alarmNo": "1830132099", + "alarmDate": "1769973592276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662216956", + "createdBy": null, + "createdTime": "2026-02-02 03:10:48", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:49", + "echoMap": {}, + "alarmNo": "1830132098", + "alarmDate": "1769973048486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113488662216890", + "createdBy": null, + "createdTime": "2026-02-02 03:10:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:20:01", + "echoMap": {}, + "alarmNo": "1830132097", + "alarmDate": "1769973042154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113484367249465", + "createdBy": null, + "createdTime": "2026-02-02 03:10:18", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:30", + "echoMap": {}, + "alarmNo": "1830132096", + "alarmDate": "1769973017972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282761", + "createdBy": null, + "createdTime": "2026-02-02 03:10:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:34", + "echoMap": {}, + "alarmNo": "1830132095", + "alarmDate": "1769973001933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282627", + "createdBy": null, + "createdTime": "2026-02-02 03:09:51", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:52", + "echoMap": {}, + "alarmNo": "1830132094", + "alarmDate": "1769972991443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282301", + "createdBy": null, + "createdTime": "2026-02-02 03:00:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:10:06", + "echoMap": {}, + "alarmNo": "1830132093", + "alarmDate": "1769972439696", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282139", + "createdBy": null, + "createdTime": "2026-02-02 03:00:24", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:25", + "echoMap": {}, + "alarmNo": "1830132092", + "alarmDate": "1769972424209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282123", + "createdBy": null, + "createdTime": "2026-02-02 03:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:29", + "echoMap": {}, + "alarmNo": "1830132091", + "alarmDate": "1769972423151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113480072282114", + "createdBy": null, + "createdTime": "2026-02-02 03:00:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:36", + "echoMap": {}, + "alarmNo": "1830132090", + "alarmDate": "1769972422517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113475777314854", + "createdBy": null, + "createdTime": "2026-02-02 03:00:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:28", + "echoMap": {}, + "alarmNo": "1830132089", + "alarmDate": "1769972414607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348123", + "createdBy": null, + "createdTime": "2026-02-02 02:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:58", + "echoMap": {}, + "alarmNo": "1830132088", + "alarmDate": "1769972397443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348107", + "createdBy": null, + "createdTime": "2026-02-02 02:59:57", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:10", + "echoMap": {}, + "alarmNo": "1830132087", + "alarmDate": "1769972396517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348101", + "createdBy": null, + "createdTime": "2026-02-02 02:59:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:57", + "echoMap": {}, + "alarmNo": "1830132086", + "alarmDate": "1769972396293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482348041", + "createdBy": null, + "createdTime": "2026-02-02 02:59:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:59", + "echoMap": {}, + "alarmNo": "1830132085", + "alarmDate": "1769972393031", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347802", + "createdBy": null, + "createdTime": "2026-02-02 02:50:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:51", + "echoMap": {}, + "alarmNo": "1830132084", + "alarmDate": "1769971850252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347790", + "createdBy": null, + "createdTime": "2026-02-02 02:50:49", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:50", + "echoMap": {}, + "alarmNo": "1830132083", + "alarmDate": "1769971849042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347713", + "createdBy": null, + "createdTime": "2026-02-02 02:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:00:03", + "echoMap": {}, + "alarmNo": "1830132082", + "alarmDate": "1769971842475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113471482347628", + "createdBy": null, + "createdTime": "2026-02-02 02:50:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:47", + "echoMap": {}, + "alarmNo": "1830132081", + "alarmDate": "1769971834748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113467187380275", + "createdBy": null, + "createdTime": "2026-02-02 02:50:19", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:20", + "echoMap": {}, + "alarmNo": "1830132080", + "alarmDate": "1769971818887", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113467187380265", + "createdBy": null, + "createdTime": "2026-02-02 02:50:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:31", + "echoMap": {}, + "alarmNo": "1830132079", + "alarmDate": "1769971818329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113462892413521", + "createdBy": null, + "createdTime": "2026-02-02 02:50:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:45", + "echoMap": {}, + "alarmNo": "1830132078", + "alarmDate": "1769971800204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113462892413411", + "createdBy": null, + "createdTime": "2026-02-02 02:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:56", + "echoMap": {}, + "alarmNo": "1830132077", + "alarmDate": "1769971792639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113462892413092", + "createdBy": null, + "createdTime": "2026-02-02 02:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:50:07", + "echoMap": {}, + "alarmNo": "1830132076", + "alarmDate": "1769971241132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113458597445656", + "createdBy": null, + "createdTime": "2026-02-02 02:40:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:28", + "echoMap": {}, + "alarmNo": "1830132075", + "alarmDate": "1769971215068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302479014", + "createdBy": null, + "createdTime": "2026-02-02 02:40:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:21", + "echoMap": {}, + "alarmNo": "1830132074", + "alarmDate": "1769971207794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478979", + "createdBy": null, + "createdTime": "2026-02-02 02:40:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:17", + "echoMap": {}, + "alarmNo": "1830132073", + "alarmDate": "1769971204367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478819", + "createdBy": null, + "createdTime": "2026-02-02 02:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:53", + "echoMap": {}, + "alarmNo": "1830132072", + "alarmDate": "1769971191526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478526", + "createdBy": null, + "createdTime": "2026-02-02 02:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:44", + "echoMap": {}, + "alarmNo": "1830132071", + "alarmDate": "1769970643412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113454302478418", + "createdBy": null, + "createdTime": "2026-02-02 02:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:40", + "echoMap": {}, + "alarmNo": "1830132070", + "alarmDate": "1769970633530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113450007511102", + "createdBy": null, + "createdTime": "2026-02-02 02:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 02:40:03", + "echoMap": {}, + "alarmNo": "1830132069", + "alarmDate": "1769970619671", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113450007511079", + "createdBy": null, + "createdTime": "2026-02-02 02:30:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:19", + "echoMap": {}, + "alarmNo": "1830132068", + "alarmDate": "1769970617576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113450007511064", + "createdBy": null, + "createdTime": "2026-02-02 02:30:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:17", + "echoMap": {}, + "alarmNo": "1830132067", + "alarmDate": "1769970616408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712544304", + "createdBy": null, + "createdTime": "2026-02-02 02:29:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:00", + "echoMap": {}, + "alarmNo": "1830132066", + "alarmDate": "1769970594349", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712544008", + "createdBy": null, + "createdTime": "2026-02-02 02:20:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:47", + "echoMap": {}, + "alarmNo": "1830132065", + "alarmDate": "1769970046131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712543877", + "createdBy": null, + "createdTime": "2026-02-02 02:20:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:30:07", + "echoMap": {}, + "alarmNo": "1830132064", + "alarmDate": "1769970033417", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113445712543839", + "createdBy": null, + "createdTime": "2026-02-02 02:20:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:36", + "echoMap": {}, + "alarmNo": "1830132063", + "alarmDate": "1769970029817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609926", + "createdBy": null, + "createdTime": "2026-02-02 02:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:20", + "echoMap": {}, + "alarmNo": "1830132062", + "alarmDate": "1769970008400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609885", + "createdBy": null, + "createdTime": "2026-02-02 02:20:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:25", + "echoMap": {}, + "alarmNo": "1830132061", + "alarmDate": "1769970004939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609872", + "createdBy": null, + "createdTime": "2026-02-02 02:20:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:20:11", + "echoMap": {}, + "alarmNo": "1830132060", + "alarmDate": "1769970003800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609726", + "createdBy": null, + "createdTime": "2026-02-02 02:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:56", + "echoMap": {}, + "alarmNo": "1830132059", + "alarmDate": "1769969991374", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609312", + "createdBy": null, + "createdTime": "2026-02-02 02:10:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:37", + "echoMap": {}, + "alarmNo": "1830132058", + "alarmDate": "1769969430817", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113437122609284", + "createdBy": null, + "createdTime": "2026-02-02 02:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:41", + "echoMap": {}, + "alarmNo": "1830132057", + "alarmDate": "1769969428131", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113432827641949", + "createdBy": null, + "createdTime": "2026-02-02 02:10:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:13", + "echoMap": {}, + "alarmNo": "1830132056", + "alarmDate": "1769969411766", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113432827641869", + "createdBy": null, + "createdTime": "2026-02-02 02:10:05", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:11", + "echoMap": {}, + "alarmNo": "1830132055", + "alarmDate": "1769969404582", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532675212", + "createdBy": null, + "createdTime": "2026-02-02 02:09:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:00", + "echoMap": {}, + "alarmNo": "1830132054", + "alarmDate": "1769969394421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674823", + "createdBy": null, + "createdTime": "2026-02-02 02:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:38", + "echoMap": {}, + "alarmNo": "1830132053", + "alarmDate": "1769968836960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674803", + "createdBy": null, + "createdTime": "2026-02-02 02:00:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:37", + "echoMap": {}, + "alarmNo": "1830132052", + "alarmDate": "1769968835658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674761", + "createdBy": null, + "createdTime": "2026-02-02 02:00:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:38", + "echoMap": {}, + "alarmNo": "1830132051", + "alarmDate": "1769968832420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674688", + "createdBy": null, + "createdTime": "2026-02-02 02:00:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:10:17", + "echoMap": {}, + "alarmNo": "1830132050", + "alarmDate": "1769968825855", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674598", + "createdBy": null, + "createdTime": "2026-02-02 02:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:18", + "echoMap": {}, + "alarmNo": "1830132049", + "alarmDate": "1769968817506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113428532674584", + "createdBy": null, + "createdTime": "2026-02-02 02:00:16", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:35", + "echoMap": {}, + "alarmNo": "1830132048", + "alarmDate": "1769968816250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740717", + "createdBy": null, + "createdTime": "2026-02-02 02:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:14", + "echoMap": {}, + "alarmNo": "1830132047", + "alarmDate": "1769968801830", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740697", + "createdBy": null, + "createdTime": "2026-02-02 02:00:00", + "updatedBy": null, + "updatedTime": "2026-02-02 02:00:07", + "echoMap": {}, + "alarmNo": "1830132046", + "alarmDate": "1769968800265", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740284", + "createdBy": null, + "createdTime": "2026-02-02 01:50:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:48", + "echoMap": {}, + "alarmNo": "1830132045", + "alarmDate": "1769968241925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113419942740161", + "createdBy": null, + "createdTime": "2026-02-02 01:50:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:50", + "echoMap": {}, + "alarmNo": "1830132044", + "alarmDate": "1769968230953", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772796", + "createdBy": null, + "createdTime": "2026-02-02 01:49:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:42", + "echoMap": {}, + "alarmNo": "1830132043", + "alarmDate": "1769968198472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772771", + "createdBy": null, + "createdTime": "2026-02-02 01:49:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:58", + "echoMap": {}, + "alarmNo": "1830132042", + "alarmDate": "1769968197029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060048", + "deviceName": "[613](10)新江湾内通道8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772770", + "createdBy": null, + "createdTime": "2026-02-02 01:49:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:10", + "echoMap": {}, + "alarmNo": "1830132041", + "alarmDate": "1769968196971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113415647772702", + "createdBy": null, + "createdTime": "2026-02-02 01:49:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:50:13", + "echoMap": {}, + "alarmNo": "1830132040", + "alarmDate": "1769968192874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805759", + "createdBy": null, + "createdTime": "2026-02-02 01:40:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:51", + "echoMap": {}, + "alarmNo": "1830132039", + "alarmDate": "1769967637571", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805701", + "createdBy": null, + "createdTime": "2026-02-02 01:40:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:33", + "echoMap": {}, + "alarmNo": "1830132038", + "alarmDate": "1769967632066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805576", + "createdBy": null, + "createdTime": "2026-02-02 01:40:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:38", + "echoMap": {}, + "alarmNo": "1830132037", + "alarmDate": "1769967620252", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805410", + "createdBy": null, + "createdTime": "2026-02-02 01:40:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:05", + "echoMap": {}, + "alarmNo": "1830132036", + "alarmDate": "1769967604305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113411352805390", + "createdBy": null, + "createdTime": "2026-02-02 01:40:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:04", + "echoMap": {}, + "alarmNo": "1830132035", + "alarmDate": "1769967603006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113407057838108", + "createdBy": null, + "createdTime": "2026-02-02 01:39:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:02", + "echoMap": {}, + "alarmNo": "1830132034", + "alarmDate": "1769967594963", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113407057838090", + "createdBy": null, + "createdTime": "2026-02-02 01:39:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:06", + "echoMap": {}, + "alarmNo": "1830132033", + "alarmDate": "1769967594260", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871194", + "createdBy": null, + "createdTime": "2026-02-02 01:30:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:44", + "echoMap": {}, + "alarmNo": "1830132032", + "alarmDate": "1769967042665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871086", + "createdBy": null, + "createdTime": "2026-02-02 01:30:34", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:40", + "echoMap": {}, + "alarmNo": "1830132031", + "alarmDate": "1769967033722", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871079", + "createdBy": null, + "createdTime": "2026-02-02 01:30:33", + "updatedBy": null, + "updatedTime": "2026-02-02 01:40:24", + "echoMap": {}, + "alarmNo": "1830132030", + "alarmDate": "1769967033096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762871066", + "createdBy": null, + "createdTime": "2026-02-02 01:30:32", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:51", + "echoMap": {}, + "alarmNo": "1830132029", + "alarmDate": "1769967032063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762870810", + "createdBy": null, + "createdTime": "2026-02-02 01:30:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:14", + "echoMap": {}, + "alarmNo": "1830132028", + "alarmDate": "1769967007665", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113402762870801", + "createdBy": null, + "createdTime": "2026-02-02 01:30:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:19", + "echoMap": {}, + "alarmNo": "1830132027", + "alarmDate": "1769967006918", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113394172936584", + "createdBy": null, + "createdTime": "2026-02-02 01:20:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:30:21", + "echoMap": {}, + "alarmNo": "1830132026", + "alarmDate": "1769966436813", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113394172936316", + "createdBy": null, + "createdTime": "2026-02-02 01:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:55", + "echoMap": {}, + "alarmNo": "1830132025", + "alarmDate": "1769966411628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113394172936233", + "createdBy": null, + "createdTime": "2026-02-02 01:20:04", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:24", + "echoMap": {}, + "alarmNo": "1830132024", + "alarmDate": "1769966403690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113389877969014", + "createdBy": null, + "createdTime": "2026-02-02 01:20:00", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:01", + "echoMap": {}, + "alarmNo": "1830132023", + "alarmDate": "1769966399510", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002277", + "createdBy": null, + "createdTime": "2026-02-02 01:10:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:20:00", + "echoMap": {}, + "alarmNo": "1830132022", + "alarmDate": "1769965848426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002225", + "createdBy": null, + "createdTime": "2026-02-02 01:10:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:50", + "echoMap": {}, + "alarmNo": "1830132021", + "alarmDate": "1769965843780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002017", + "createdBy": null, + "createdTime": "2026-02-02 01:10:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:26", + "echoMap": {}, + "alarmNo": "1830132020", + "alarmDate": "1769965824522", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583002000", + "createdBy": null, + "createdTime": "2026-02-02 01:10:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:49", + "echoMap": {}, + "alarmNo": "1830132019", + "alarmDate": "1769965823403", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001997", + "createdBy": null, + "createdTime": "2026-02-02 01:10:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:35", + "echoMap": {}, + "alarmNo": "1830132018", + "alarmDate": "1769965823344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001994", + "createdBy": null, + "createdTime": "2026-02-02 01:10:23", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:24", + "echoMap": {}, + "alarmNo": "1830132017", + "alarmDate": "1769965823179", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001934", + "createdBy": null, + "createdTime": "2026-02-02 01:10:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:18", + "echoMap": {}, + "alarmNo": "1830132016", + "alarmDate": "1769965816980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113385583001667", + "createdBy": null, + "createdTime": "2026-02-02 01:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:59", + "echoMap": {}, + "alarmNo": "1830132015", + "alarmDate": "1769965793091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067732", + "createdBy": null, + "createdTime": "2026-02-02 01:00:38", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:44", + "echoMap": {}, + "alarmNo": "1830132014", + "alarmDate": "1769965238066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067717", + "createdBy": null, + "createdTime": "2026-02-02 01:00:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:43", + "echoMap": {}, + "alarmNo": "1830132013", + "alarmDate": "1769965236959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067617", + "createdBy": null, + "createdTime": "2026-02-02 01:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:11", + "echoMap": {}, + "alarmNo": "1830132012", + "alarmDate": "1769965227140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113376993067115", + "createdBy": null, + "createdTime": "2026-02-02 00:54:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:57", + "echoMap": {}, + "alarmNo": "1830132011", + "alarmDate": "1769964894982", + "faultLocation": "999999999", + "faultDescription": "电压异常", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1028030013", + "deviceName": "安防箱13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查智能安防箱情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1028" + }, + { + "id": "723113368403133338", + "createdBy": null, + "createdTime": "2026-02-02 00:50:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:35", + "echoMap": {}, + "alarmNo": "1830132010", + "alarmDate": "1769964634277", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060085", + "deviceName": "[217](10)新江湾3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403133221", + "createdBy": null, + "createdTime": "2026-02-02 00:50:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:16", + "echoMap": {}, + "alarmNo": "1830132009", + "alarmDate": "1769964623897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403133177", + "createdBy": null, + "createdTime": "2026-02-02 00:50:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:21", + "echoMap": {}, + "alarmNo": "1830132008", + "alarmDate": "1769964619828", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132975", + "createdBy": null, + "createdTime": "2026-02-02 00:50:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:08", + "echoMap": {}, + "alarmNo": "1830132007", + "alarmDate": "1769964601509", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132559", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:46", + "echoMap": {}, + "alarmNo": "1830132006", + "alarmDate": "1769964045210", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132553", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:46", + "echoMap": {}, + "alarmNo": "1830132005", + "alarmDate": "1769964044917", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132544", + "createdBy": null, + "createdTime": "2026-02-02 00:40:45", + "updatedBy": null, + "updatedTime": "2026-02-02 00:50:11", + "echoMap": {}, + "alarmNo": "1830132004", + "alarmDate": "1769964044506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113368403132510", + "createdBy": null, + "createdTime": "2026-02-02 00:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:42", + "echoMap": {}, + "alarmNo": "1830132003", + "alarmDate": "1769964041470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113364108165210", + "createdBy": null, + "createdTime": "2026-02-02 00:40:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:36", + "echoMap": {}, + "alarmNo": "1830132002", + "alarmDate": "1769964030314", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060061", + "deviceName": "[339](10)新江湾7#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113359813198395", + "createdBy": null, + "createdTime": "2026-02-02 00:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:40:33", + "echoMap": {}, + "alarmNo": "1830132001", + "alarmDate": "1769963991412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113359813197903", + "createdBy": null, + "createdTime": "2026-02-02 00:30:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:45", + "echoMap": {}, + "alarmNo": "1830132000", + "alarmDate": "1769963426204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113355518230596", + "createdBy": null, + "createdTime": "2026-02-02 00:30:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:39", + "echoMap": {}, + "alarmNo": "1830131999", + "alarmDate": "1769963414619", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263953", + "createdBy": null, + "createdTime": "2026-02-02 00:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:56", + "echoMap": {}, + "alarmNo": "1830131998", + "alarmDate": "1769963392633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263945", + "createdBy": null, + "createdTime": "2026-02-02 00:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:30:14", + "echoMap": {}, + "alarmNo": "1830131997", + "alarmDate": "1769963392057", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263693", + "createdBy": null, + "createdTime": "2026-02-02 00:20:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:00:12", + "echoMap": {}, + "alarmNo": "1830131996", + "alarmDate": "1769962847504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263622", + "createdBy": null, + "createdTime": "2026-02-02 00:20:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:41", + "echoMap": {}, + "alarmNo": "1830131995", + "alarmDate": "1769962840114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263389", + "createdBy": null, + "createdTime": "2026-02-02 00:20:18", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:19", + "echoMap": {}, + "alarmNo": "1830131994", + "alarmDate": "1769962817596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060050", + "deviceName": "[209](10)新江湾上行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263326", + "createdBy": null, + "createdTime": "2026-02-02 00:20:12", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:13", + "echoMap": {}, + "alarmNo": "1830131993", + "alarmDate": "1769962812295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060169", + "deviceName": "[610](10)新江湾屏蔽门管理室2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263281", + "createdBy": null, + "createdTime": "2026-02-02 00:20:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:10", + "echoMap": {}, + "alarmNo": "1830131992", + "alarmDate": "1769962808763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060158", + "deviceName": "[203](10)新江湾厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113351223263276", + "createdBy": null, + "createdTime": "2026-02-02 00:20:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:21", + "echoMap": {}, + "alarmNo": "1830131991", + "alarmDate": "1769962808339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633329606", + "createdBy": null, + "createdTime": "2026-02-02 00:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:56", + "echoMap": {}, + "alarmNo": "1830131990", + "alarmDate": "1769962792376", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633329605", + "createdBy": null, + "createdTime": "2026-02-02 00:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:56", + "echoMap": {}, + "alarmNo": "1830131989", + "alarmDate": "1769962792294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633329208", + "createdBy": null, + "createdTime": "2026-02-02 00:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 00:20:41", + "echoMap": {}, + "alarmNo": "1830131988", + "alarmDate": "1769962250573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633328985", + "createdBy": null, + "createdTime": "2026-02-02 00:10:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:41", + "echoMap": {}, + "alarmNo": "1830131987", + "alarmDate": "1769962228103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060104", + "deviceName": "[121](10)新江湾下行2-3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113342633328889", + "createdBy": null, + "createdTime": "2026-02-02 00:10:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:10:38", + "echoMap": {}, + "alarmNo": "1830131986", + "alarmDate": "1769962218602", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060074", + "deviceName": "[333](10)新江湾6#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113334043394635", + "createdBy": null, + "createdTime": "2026-02-02 00:00:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:30", + "echoMap": {}, + "alarmNo": "1830131985", + "alarmDate": "1769961623804", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060106", + "deviceName": "[122](10)新江湾下行2-4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + }, + { + "id": "723113334043394469", + "createdBy": null, + "createdTime": "2026-02-02 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:00:09", + "echoMap": {}, + "alarmNo": "1830131984", + "alarmDate": "1769961607650", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1028060056", + "deviceName": "[631](10)新江湾气瓶间2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1028" + } + ] + }, + "1029": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112973272478887", + "createdBy": null, + "createdTime": "2026-02-02 00:09:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:20", + "echoMap": {}, + "alarmNo": "1850293420", + "alarmDate": "1769962147728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112977567446084", + "createdBy": null, + "createdTime": "2026-02-02 00:09:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:16", + "echoMap": {}, + "alarmNo": "1850293421", + "alarmDate": "1769962155449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112981862413364", + "createdBy": null, + "createdTime": "2026-02-02 00:09:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:34", + "echoMap": {}, + "alarmNo": "1850293422", + "alarmDate": "1769962162846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112981862413438", + "createdBy": null, + "createdTime": "2026-02-02 00:09:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:44", + "echoMap": {}, + "alarmNo": "1850293423", + "alarmDate": "1769962171777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112994747315261", + "createdBy": null, + "createdTime": "2026-02-02 00:18:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:05", + "echoMap": {}, + "alarmNo": "1850293424", + "alarmDate": "1769962732981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112994747315270", + "createdBy": null, + "createdTime": "2026-02-02 00:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:01", + "echoMap": {}, + "alarmNo": "1850293425", + "alarmDate": "1769962734016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112999042282641", + "createdBy": null, + "createdTime": "2026-02-02 00:19:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:31", + "echoMap": {}, + "alarmNo": "1850293426", + "alarmDate": "1769962753005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113003337249856", + "createdBy": null, + "createdTime": "2026-02-02 00:19:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:36", + "echoMap": {}, + "alarmNo": "1850293427", + "alarmDate": "1769962763122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217132", + "createdBy": null, + "createdTime": "2026-02-02 00:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:31", + "echoMap": {}, + "alarmNo": "1850293428", + "alarmDate": "1769962769712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217139", + "createdBy": null, + "createdTime": "2026-02-02 00:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:31", + "echoMap": {}, + "alarmNo": "1850293429", + "alarmDate": "1769962770003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217182", + "createdBy": null, + "createdTime": "2026-02-02 00:19:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:36", + "echoMap": {}, + "alarmNo": "1850293430", + "alarmDate": "1769962774808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217248", + "createdBy": null, + "createdTime": "2026-02-02 00:19:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:13", + "echoMap": {}, + "alarmNo": "1850293431", + "alarmDate": "1769962783139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113011927184388", + "createdBy": null, + "createdTime": "2026-02-02 00:19:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:14", + "echoMap": {}, + "alarmNo": "1850293432", + "alarmDate": "1769962788151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113024812086315", + "createdBy": null, + "createdTime": "2026-02-02 00:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:42", + "echoMap": {}, + "alarmNo": "1850293433", + "alarmDate": "1769963364339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113024812086335", + "createdBy": null, + "createdTime": "2026-02-02 00:29:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:37", + "echoMap": {}, + "alarmNo": "1850293434", + "alarmDate": "1769963366381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113029107053607", + "createdBy": null, + "createdTime": "2026-02-02 00:29:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:49", + "echoMap": {}, + "alarmNo": "1850293435", + "alarmDate": "1769963388095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113029107053627", + "createdBy": null, + "createdTime": "2026-02-02 00:29:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:16", + "echoMap": {}, + "alarmNo": "1850293436", + "alarmDate": "1769963390389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113033402020968", + "createdBy": null, + "createdTime": "2026-02-02 00:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:00", + "echoMap": {}, + "alarmNo": "1850293437", + "alarmDate": "1769963934506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113033402020978", + "createdBy": null, + "createdTime": "2026-02-02 00:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:56", + "echoMap": {}, + "alarmNo": "1850293438", + "alarmDate": "1769963935298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113033402021116", + "createdBy": null, + "createdTime": "2026-02-02 00:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:25", + "echoMap": {}, + "alarmNo": "1850293439", + "alarmDate": "1769963952506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113041991955487", + "createdBy": null, + "createdTime": "2026-02-02 00:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:40", + "echoMap": {}, + "alarmNo": "1850293440", + "alarmDate": "1769963967660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113041991955563", + "createdBy": null, + "createdTime": "2026-02-02 00:39:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:49", + "echoMap": {}, + "alarmNo": "1850293441", + "alarmDate": "1769963976677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113046286922759", + "createdBy": null, + "createdTime": "2026-02-02 00:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:10", + "echoMap": {}, + "alarmNo": "1850293442", + "alarmDate": "1769963991705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113050581890121", + "createdBy": null, + "createdTime": "2026-02-02 00:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:12", + "echoMap": {}, + "alarmNo": "1850293443", + "alarmDate": "1769964533767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113050581890242", + "createdBy": null, + "createdTime": "2026-02-02 00:49:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:08", + "echoMap": {}, + "alarmNo": "1850293444", + "alarmDate": "1769964547416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113050581890246", + "createdBy": null, + "createdTime": "2026-02-02 00:49:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:09", + "echoMap": {}, + "alarmNo": "1850293445", + "alarmDate": "1769964547523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113054876857399", + "createdBy": null, + "createdTime": "2026-02-02 00:49:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:20", + "echoMap": {}, + "alarmNo": "1850293446", + "alarmDate": "1769964558768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113054876857424", + "createdBy": null, + "createdTime": "2026-02-02 00:49:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:34", + "echoMap": {}, + "alarmNo": "1850293447", + "alarmDate": "1769964561909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113059171824657", + "createdBy": null, + "createdTime": "2026-02-02 00:49:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:36", + "echoMap": {}, + "alarmNo": "1850293448", + "alarmDate": "1769964563893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113059171824850", + "createdBy": null, + "createdTime": "2026-02-02 00:49:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:17", + "echoMap": {}, + "alarmNo": "1850293449", + "alarmDate": "1769964587880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113067761759263", + "createdBy": null, + "createdTime": "2026-02-02 00:58:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:04", + "echoMap": {}, + "alarmNo": "1850293450", + "alarmDate": "1769965133074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113072056726581", + "createdBy": null, + "createdTime": "2026-02-02 00:59:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:29", + "echoMap": {}, + "alarmNo": "1850293451", + "alarmDate": "1769965163165", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113076351693834", + "createdBy": null, + "createdTime": "2026-02-02 00:59:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:28", + "echoMap": {}, + "alarmNo": "1850293452", + "alarmDate": "1769965169143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113076351693844", + "createdBy": null, + "createdTime": "2026-02-02 00:59:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:31", + "echoMap": {}, + "alarmNo": "1850293453", + "alarmDate": "1769965169994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113076351694007", + "createdBy": null, + "createdTime": "2026-02-02 00:59:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:13", + "echoMap": {}, + "alarmNo": "1850293454", + "alarmDate": "1769965188191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113089236595744", + "createdBy": null, + "createdTime": "2026-02-02 01:09:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:38", + "echoMap": {}, + "alarmNo": "1850293455", + "alarmDate": "1769965765484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563027", + "createdBy": null, + "createdTime": "2026-02-02 01:09:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:36", + "echoMap": {}, + "alarmNo": "1850293456", + "alarmDate": "1769965775033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563062", + "createdBy": null, + "createdTime": "2026-02-02 01:09:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:40", + "echoMap": {}, + "alarmNo": "1850293457", + "alarmDate": "1769965779125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563075", + "createdBy": null, + "createdTime": "2026-02-02 01:09:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:52", + "echoMap": {}, + "alarmNo": "1850293458", + "alarmDate": "1769965780475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563150", + "createdBy": null, + "createdTime": "2026-02-02 01:09:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:15", + "echoMap": {}, + "alarmNo": "1850293459", + "alarmDate": "1769965789486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113097826530361", + "createdBy": null, + "createdTime": "2026-02-02 01:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:46", + "echoMap": {}, + "alarmNo": "1850293460", + "alarmDate": "1769966333632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113102121497674", + "createdBy": null, + "createdTime": "2026-02-02 01:19:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:07", + "echoMap": {}, + "alarmNo": "1850293461", + "alarmDate": "1769966346488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113106416464912", + "createdBy": null, + "createdTime": "2026-02-02 01:19:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:40", + "echoMap": {}, + "alarmNo": "1850293462", + "alarmDate": "1769966367742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113110711432312", + "createdBy": null, + "createdTime": "2026-02-02 01:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:10", + "echoMap": {}, + "alarmNo": "1850293463", + "alarmDate": "1769966391839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113119301366855", + "createdBy": null, + "createdTime": "2026-02-02 01:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:11", + "echoMap": {}, + "alarmNo": "1850293464", + "alarmDate": "1769966949819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113119301366959", + "createdBy": null, + "createdTime": "2026-02-02 01:29:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:34", + "echoMap": {}, + "alarmNo": "1850293465", + "alarmDate": "1769966961983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113127891301637", + "createdBy": null, + "createdTime": "2026-02-02 01:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:04", + "echoMap": {}, + "alarmNo": "1850293466", + "alarmDate": "1769967533178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113132186268681", + "createdBy": null, + "createdTime": "2026-02-02 01:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:15", + "echoMap": {}, + "alarmNo": "1850293467", + "alarmDate": "1769967534337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113136481236051", + "createdBy": null, + "createdTime": "2026-02-02 01:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:14", + "echoMap": {}, + "alarmNo": "1850293468", + "alarmDate": "1769967552777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113136481236083", + "createdBy": null, + "createdTime": "2026-02-02 01:39:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:35", + "echoMap": {}, + "alarmNo": "1850293469", + "alarmDate": "1769967556278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113136481236090", + "createdBy": null, + "createdTime": "2026-02-02 01:39:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:18", + "echoMap": {}, + "alarmNo": "1850293470", + "alarmDate": "1769967556962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113145071170584", + "createdBy": null, + "createdTime": "2026-02-02 01:39:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:41", + "echoMap": {}, + "alarmNo": "1850293471", + "alarmDate": "1769967580141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113149366137867", + "createdBy": null, + "createdTime": "2026-02-02 01:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:07", + "echoMap": {}, + "alarmNo": "1850293472", + "alarmDate": "1769968134514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113153661105310", + "createdBy": null, + "createdTime": "2026-02-02 01:49:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:31", + "echoMap": {}, + "alarmNo": "1850293473", + "alarmDate": "1769968164574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113153661105346", + "createdBy": null, + "createdTime": "2026-02-02 01:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:27", + "echoMap": {}, + "alarmNo": "1850293474", + "alarmDate": "1769968167480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113162251039776", + "createdBy": null, + "createdTime": "2026-02-02 01:49:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:45", + "echoMap": {}, + "alarmNo": "1850293475", + "alarmDate": "1769968184497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113162251039815", + "createdBy": null, + "createdTime": "2026-02-02 01:49:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:08", + "echoMap": {}, + "alarmNo": "1850293476", + "alarmDate": "1769968188676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113170840974442", + "createdBy": null, + "createdTime": "2026-02-02 01:59:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:39", + "echoMap": {}, + "alarmNo": "1850293477", + "alarmDate": "1769968759820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113175135941656", + "createdBy": null, + "createdTime": "2026-02-02 01:59:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:51", + "echoMap": {}, + "alarmNo": "1850293478", + "alarmDate": "1769968778901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113175135941679", + "createdBy": null, + "createdTime": "2026-02-02 01:59:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:42", + "echoMap": {}, + "alarmNo": "1850293479", + "alarmDate": "1769968781345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430908954", + "createdBy": null, + "createdTime": "2026-02-02 01:59:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:51", + "echoMap": {}, + "alarmNo": "1850293480", + "alarmDate": "1769968789516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430908969", + "createdBy": null, + "createdTime": "2026-02-02 01:59:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:09:09", + "echoMap": {}, + "alarmNo": "1850293481", + "alarmDate": "1769968790861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909104", + "createdBy": null, + "createdTime": "2026-02-02 02:08:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:19", + "echoMap": {}, + "alarmNo": "1850293482", + "alarmDate": "1769969336013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909120", + "createdBy": null, + "createdTime": "2026-02-02 02:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:59", + "echoMap": {}, + "alarmNo": "1850293483", + "alarmDate": "1769969337673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909337", + "createdBy": null, + "createdTime": "2026-02-02 02:09:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:09:34", + "echoMap": {}, + "alarmNo": "1850293484", + "alarmDate": "1769969361096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909363", + "createdBy": null, + "createdTime": "2026-02-02 02:09:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:09:25", + "echoMap": {}, + "alarmNo": "1850293485", + "alarmDate": "1769969363825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113183725876342", + "createdBy": null, + "createdTime": "2026-02-02 02:09:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:57", + "echoMap": {}, + "alarmNo": "1850293486", + "alarmDate": "1769969386138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020843866", + "createdBy": null, + "createdTime": "2026-02-02 02:19:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:27", + "echoMap": {}, + "alarmNo": "1850293487", + "alarmDate": "1769969955356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020843945", + "createdBy": null, + "createdTime": "2026-02-02 02:19:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:25", + "echoMap": {}, + "alarmNo": "1850293488", + "alarmDate": "1769969964352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020844002", + "createdBy": null, + "createdTime": "2026-02-02 02:19:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:43", + "echoMap": {}, + "alarmNo": "1850293489", + "alarmDate": "1769969971279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020844070", + "createdBy": null, + "createdTime": "2026-02-02 02:19:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:51", + "echoMap": {}, + "alarmNo": "1850293490", + "alarmDate": "1769969979386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778158", + "createdBy": null, + "createdTime": "2026-02-02 02:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:32", + "echoMap": {}, + "alarmNo": "1850293491", + "alarmDate": "1769970534679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778293", + "createdBy": null, + "createdTime": "2026-02-02 02:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:22", + "echoMap": {}, + "alarmNo": "1850293492", + "alarmDate": "1769970549553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778336", + "createdBy": null, + "createdTime": "2026-02-02 02:29:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:15", + "echoMap": {}, + "alarmNo": "1850293493", + "alarmDate": "1769970554191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778469", + "createdBy": null, + "createdTime": "2026-02-02 02:29:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:30", + "echoMap": {}, + "alarmNo": "1850293494", + "alarmDate": "1769970569345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778507", + "createdBy": null, + "createdTime": "2026-02-02 02:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:59", + "echoMap": {}, + "alarmNo": "1850293495", + "alarmDate": "1769970573699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778582", + "createdBy": null, + "createdTime": "2026-02-02 02:29:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:13", + "echoMap": {}, + "alarmNo": "1850293496", + "alarmDate": "1769970582708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712777", + "createdBy": null, + "createdTime": "2026-02-02 02:39:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:11", + "echoMap": {}, + "alarmNo": "1850293497", + "alarmDate": "1769971149594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712793", + "createdBy": null, + "createdTime": "2026-02-02 02:39:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:23", + "echoMap": {}, + "alarmNo": "1850293498", + "alarmDate": "1769971150850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712908", + "createdBy": null, + "createdTime": "2026-02-02 02:39:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:00", + "echoMap": {}, + "alarmNo": "1850293499", + "alarmDate": "1769971164897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712991", + "createdBy": null, + "createdTime": "2026-02-02 02:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:54", + "echoMap": {}, + "alarmNo": "1850293500", + "alarmDate": "1769971174950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647360", + "createdBy": null, + "createdTime": "2026-02-02 02:49:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:17", + "echoMap": {}, + "alarmNo": "1850293501", + "alarmDate": "1769971746154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647361", + "createdBy": null, + "createdTime": "2026-02-02 02:49:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:07", + "echoMap": {}, + "alarmNo": "1850293502", + "alarmDate": "1769971746329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647414", + "createdBy": null, + "createdTime": "2026-02-02 02:49:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:25", + "echoMap": {}, + "alarmNo": "1850293503", + "alarmDate": "1769971752342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647561", + "createdBy": null, + "createdTime": "2026-02-02 02:49:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:49", + "echoMap": {}, + "alarmNo": "1850293504", + "alarmDate": "1769971770255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647611", + "createdBy": null, + "createdTime": "2026-02-02 02:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:48", + "echoMap": {}, + "alarmNo": "1850293505", + "alarmDate": "1769971776150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647660", + "createdBy": null, + "createdTime": "2026-02-02 02:49:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:43", + "echoMap": {}, + "alarmNo": "1850293506", + "alarmDate": "1769971781637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113218085614708", + "createdBy": null, + "createdTime": "2026-02-02 02:58:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:56", + "echoMap": {}, + "alarmNo": "1850293507", + "alarmDate": "1769972333472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113218085614718", + "createdBy": null, + "createdTime": "2026-02-02 02:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:12", + "echoMap": {}, + "alarmNo": "1850293508", + "alarmDate": "1769972334456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380581997", + "createdBy": null, + "createdTime": "2026-02-02 02:59:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:20", + "echoMap": {}, + "alarmNo": "1850293509", + "alarmDate": "1769972348447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582005", + "createdBy": null, + "createdTime": "2026-02-02 02:59:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:10", + "echoMap": {}, + "alarmNo": "1850293510", + "alarmDate": "1769972349239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582129", + "createdBy": null, + "createdTime": "2026-02-02 02:59:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:36", + "echoMap": {}, + "alarmNo": "1850293511", + "alarmDate": "1769972364412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582235", + "createdBy": null, + "createdTime": "2026-02-02 02:59:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:51", + "echoMap": {}, + "alarmNo": "1850293512", + "alarmDate": "1769972377504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582309", + "createdBy": null, + "createdTime": "2026-02-02 02:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:47", + "echoMap": {}, + "alarmNo": "1850293513", + "alarmDate": "1769972386286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582330", + "createdBy": null, + "createdTime": "2026-02-02 02:59:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:54", + "echoMap": {}, + "alarmNo": "1850293514", + "alarmDate": "1769972388498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516481", + "createdBy": null, + "createdTime": "2026-02-02 03:08:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:56", + "echoMap": {}, + "alarmNo": "1850293515", + "alarmDate": "1769972935442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516537", + "createdBy": null, + "createdTime": "2026-02-02 03:09:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:15", + "echoMap": {}, + "alarmNo": "1850293516", + "alarmDate": "1769972941640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516572", + "createdBy": null, + "createdTime": "2026-02-02 03:09:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:18", + "echoMap": {}, + "alarmNo": "1850293517", + "alarmDate": "1769972945694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516765", + "createdBy": null, + "createdTime": "2026-02-02 03:09:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:42", + "echoMap": {}, + "alarmNo": "1850293518", + "alarmDate": "1769972969743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516792", + "createdBy": null, + "createdTime": "2026-02-02 03:09:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:45", + "echoMap": {}, + "alarmNo": "1850293519", + "alarmDate": "1769972972780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516849", + "createdBy": null, + "createdTime": "2026-02-02 03:09:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:40", + "echoMap": {}, + "alarmNo": "1850293520", + "alarmDate": "1769972978884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113235265483884", + "createdBy": null, + "createdTime": "2026-02-02 03:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:05", + "echoMap": {}, + "alarmNo": "1850293521", + "alarmDate": "1769973534056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451178", + "createdBy": null, + "createdTime": "2026-02-02 03:19:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:22", + "echoMap": {}, + "alarmNo": "1850293522", + "alarmDate": "1769973549924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451216", + "createdBy": null, + "createdTime": "2026-02-02 03:19:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:15", + "echoMap": {}, + "alarmNo": "1850293523", + "alarmDate": "1769973554340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451243", + "createdBy": null, + "createdTime": "2026-02-02 03:19:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:29", + "echoMap": {}, + "alarmNo": "1850293524", + "alarmDate": "1769973557075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451401", + "createdBy": null, + "createdTime": "2026-02-02 03:19:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:47", + "echoMap": {}, + "alarmNo": "1850293525", + "alarmDate": "1769973575056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451447", + "createdBy": null, + "createdTime": "2026-02-02 03:19:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:42", + "echoMap": {}, + "alarmNo": "1850293526", + "alarmDate": "1769973580700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451455", + "createdBy": null, + "createdTime": "2026-02-02 03:19:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:53", + "echoMap": {}, + "alarmNo": "1850293527", + "alarmDate": "1769973581000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113243855418478", + "createdBy": null, + "createdTime": "2026-02-02 03:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:54", + "echoMap": {}, + "alarmNo": "1850293528", + "alarmDate": "1769974133286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385686", + "createdBy": null, + "createdTime": "2026-02-02 03:28:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:10", + "echoMap": {}, + "alarmNo": "1850293529", + "alarmDate": "1769974138207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385753", + "createdBy": null, + "createdTime": "2026-02-02 03:29:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:17", + "echoMap": {}, + "alarmNo": "1850293530", + "alarmDate": "1769974146287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385882", + "createdBy": null, + "createdTime": "2026-02-02 03:29:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:40", + "echoMap": {}, + "alarmNo": "1850293531", + "alarmDate": "1769974162348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385952", + "createdBy": null, + "createdTime": "2026-02-02 03:29:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:32", + "echoMap": {}, + "alarmNo": "1850293532", + "alarmDate": "1769974171010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150386001", + "createdBy": null, + "createdTime": "2026-02-02 03:29:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:48", + "echoMap": {}, + "alarmNo": "1850293533", + "alarmDate": "1769974176441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150386146", + "createdBy": null, + "createdTime": "2026-02-02 03:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:59", + "echoMap": {}, + "alarmNo": "1850293534", + "alarmDate": "1769974192395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113252445353067", + "createdBy": null, + "createdTime": "2026-02-02 03:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:56", + "echoMap": {}, + "alarmNo": "1850293535", + "alarmDate": "1769974733603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320366", + "createdBy": null, + "createdTime": "2026-02-02 03:39:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:22", + "echoMap": {}, + "alarmNo": "1850293536", + "alarmDate": "1769974750500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320401", + "createdBy": null, + "createdTime": "2026-02-02 03:39:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:21", + "echoMap": {}, + "alarmNo": "1850293537", + "alarmDate": "1769974754542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320439", + "createdBy": null, + "createdTime": "2026-02-02 03:39:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:20", + "echoMap": {}, + "alarmNo": "1850293538", + "alarmDate": "1769974758780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320560", + "createdBy": null, + "createdTime": "2026-02-02 03:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:46", + "echoMap": {}, + "alarmNo": "1850293539", + "alarmDate": "1769974774533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320596", + "createdBy": null, + "createdTime": "2026-02-02 03:39:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:51", + "echoMap": {}, + "alarmNo": "1850293540", + "alarmDate": "1769974778737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320627", + "createdBy": null, + "createdTime": "2026-02-02 03:39:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:43", + "echoMap": {}, + "alarmNo": "1850293541", + "alarmDate": "1769974781998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113261035287614", + "createdBy": null, + "createdTime": "2026-02-02 03:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:58", + "echoMap": {}, + "alarmNo": "1850293542", + "alarmDate": "1769975332738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113261035287621", + "createdBy": null, + "createdTime": "2026-02-02 03:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:10", + "echoMap": {}, + "alarmNo": "1850293543", + "alarmDate": "1769975333727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330254998", + "createdBy": null, + "createdTime": "2026-02-02 03:49:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:28", + "echoMap": {}, + "alarmNo": "1850293544", + "alarmDate": "1769975355797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255039", + "createdBy": null, + "createdTime": "2026-02-02 03:49:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:22", + "echoMap": {}, + "alarmNo": "1850293545", + "alarmDate": "1769975360581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255053", + "createdBy": null, + "createdTime": "2026-02-02 03:49:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:34", + "echoMap": {}, + "alarmNo": "1850293546", + "alarmDate": "1769975361735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255216", + "createdBy": null, + "createdTime": "2026-02-02 03:49:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:52", + "echoMap": {}, + "alarmNo": "1850293547", + "alarmDate": "1769975380041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255262", + "createdBy": null, + "createdTime": "2026-02-02 03:49:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:15", + "echoMap": {}, + "alarmNo": "1850293548", + "alarmDate": "1769975385749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189524", + "createdBy": null, + "createdTime": "2026-02-02 03:59:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:23", + "echoMap": {}, + "alarmNo": "1850293549", + "alarmDate": "1769975950059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189552", + "createdBy": null, + "createdTime": "2026-02-02 03:59:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:14", + "echoMap": {}, + "alarmNo": "1850293550", + "alarmDate": "1769975952795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189668", + "createdBy": null, + "createdTime": "2026-02-02 03:59:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:45", + "echoMap": {}, + "alarmNo": "1850293551", + "alarmDate": "1769975967014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189735", + "createdBy": null, + "createdTime": "2026-02-02 03:59:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:47", + "echoMap": {}, + "alarmNo": "1850293552", + "alarmDate": "1769975975180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113278215156811", + "createdBy": null, + "createdTime": "2026-02-02 04:08:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:27", + "echoMap": {}, + "alarmNo": "1850293553", + "alarmDate": "1769976534330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124040", + "createdBy": null, + "createdTime": "2026-02-02 04:09:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:03", + "echoMap": {}, + "alarmNo": "1850293554", + "alarmDate": "1769976541625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124064", + "createdBy": null, + "createdTime": "2026-02-02 04:09:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:10", + "echoMap": {}, + "alarmNo": "1850293555", + "alarmDate": "1769976544443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124165", + "createdBy": null, + "createdTime": "2026-02-02 04:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:17", + "echoMap": {}, + "alarmNo": "1850293556", + "alarmDate": "1769976555688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124267", + "createdBy": null, + "createdTime": "2026-02-02 04:09:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:40", + "echoMap": {}, + "alarmNo": "1850293557", + "alarmDate": "1769976568441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124349", + "createdBy": null, + "createdTime": "2026-02-02 04:09:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:51", + "echoMap": {}, + "alarmNo": "1850293558", + "alarmDate": "1769976578292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124459", + "createdBy": null, + "createdTime": "2026-02-02 04:09:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:52", + "echoMap": {}, + "alarmNo": "1850293559", + "alarmDate": "1769976591080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113286805091393", + "createdBy": null, + "createdTime": "2026-02-02 04:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:39", + "echoMap": {}, + "alarmNo": "1850293560", + "alarmDate": "1769977134438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113286805091426", + "createdBy": null, + "createdTime": "2026-02-02 04:18:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:59", + "echoMap": {}, + "alarmNo": "1850293561", + "alarmDate": "1769977138245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113286805091432", + "createdBy": null, + "createdTime": "2026-02-02 04:18:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:05", + "echoMap": {}, + "alarmNo": "1850293562", + "alarmDate": "1769977138686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113291100058800", + "createdBy": null, + "createdTime": "2026-02-02 04:19:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:35", + "echoMap": {}, + "alarmNo": "1850293563", + "alarmDate": "1769977162651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113291100059007", + "createdBy": null, + "createdTime": "2026-02-02 04:19:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:48", + "echoMap": {}, + "alarmNo": "1850293564", + "alarmDate": "1769977187303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113291100059032", + "createdBy": null, + "createdTime": "2026-02-02 04:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:20", + "echoMap": {}, + "alarmNo": "1850293565", + "alarmDate": "1769977190585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113295395025961", + "createdBy": null, + "createdTime": "2026-02-02 04:28:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:06", + "echoMap": {}, + "alarmNo": "1850293566", + "alarmDate": "1769977733902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113295395025995", + "createdBy": null, + "createdTime": "2026-02-02 04:28:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:59", + "echoMap": {}, + "alarmNo": "1850293567", + "alarmDate": "1769977737521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993388", + "createdBy": null, + "createdTime": "2026-02-02 04:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:37", + "echoMap": {}, + "alarmNo": "1850293568", + "alarmDate": "1769977763954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993452", + "createdBy": null, + "createdTime": "2026-02-02 04:29:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:45", + "echoMap": {}, + "alarmNo": "1850293569", + "alarmDate": "1769977771863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993486", + "createdBy": null, + "createdTime": "2026-02-02 04:29:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:36", + "echoMap": {}, + "alarmNo": "1850293570", + "alarmDate": "1769977775320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993557", + "createdBy": null, + "createdTime": "2026-02-02 04:29:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:44", + "echoMap": {}, + "alarmNo": "1850293571", + "alarmDate": "1769977783342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993604", + "createdBy": null, + "createdTime": "2026-02-02 04:29:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:00", + "echoMap": {}, + "alarmNo": "1850293572", + "alarmDate": "1769977789042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113303984960557", + "createdBy": null, + "createdTime": "2026-02-02 04:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:08", + "echoMap": {}, + "alarmNo": "1850293573", + "alarmDate": "1769978334059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279927932", + "createdBy": null, + "createdTime": "2026-02-02 04:39:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:30", + "echoMap": {}, + "alarmNo": "1850293574", + "alarmDate": "1769978358251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279927950", + "createdBy": null, + "createdTime": "2026-02-02 04:39:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:32", + "echoMap": {}, + "alarmNo": "1850293575", + "alarmDate": "1769978360145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279928043", + "createdBy": null, + "createdTime": "2026-02-02 04:39:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:30", + "echoMap": {}, + "alarmNo": "1850293576", + "alarmDate": "1769978368916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279928146", + "createdBy": null, + "createdTime": "2026-02-02 04:39:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:55", + "echoMap": {}, + "alarmNo": "1850293577", + "alarmDate": "1769978382362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279928163", + "createdBy": null, + "createdTime": "2026-02-02 04:39:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:45", + "echoMap": {}, + "alarmNo": "1850293578", + "alarmDate": "1769978384160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113312574895183", + "createdBy": null, + "createdTime": "2026-02-02 04:49:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:26", + "echoMap": {}, + "alarmNo": "1850293579", + "alarmDate": "1769978953293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862414", + "createdBy": null, + "createdTime": "2026-02-02 04:49:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:36", + "echoMap": {}, + "alarmNo": "1850293580", + "alarmDate": "1769978974443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862422", + "createdBy": null, + "createdTime": "2026-02-02 04:49:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:34", + "echoMap": {}, + "alarmNo": "1850293581", + "alarmDate": "1769978976941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862459", + "createdBy": null, + "createdTime": "2026-02-02 04:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:51", + "echoMap": {}, + "alarmNo": "1850293582", + "alarmDate": "1769978990122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862564", + "createdBy": null, + "createdTime": "2026-02-02 04:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:47", + "echoMap": {}, + "alarmNo": "1850293583", + "alarmDate": "1769979533545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060032", + "deviceName": "[406](10)航中2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862568", + "createdBy": null, + "createdTime": "2026-02-02 04:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:10", + "echoMap": {}, + "alarmNo": "1850293584", + "alarmDate": "1769979534621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862580", + "createdBy": null, + "createdTime": "2026-02-02 04:58:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:59", + "echoMap": {}, + "alarmNo": "1850293585", + "alarmDate": "1769979537816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862628", + "createdBy": null, + "createdTime": "2026-02-02 04:59:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:20", + "echoMap": {}, + "alarmNo": "1850293586", + "alarmDate": "1769979554132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060047", + "deviceName": "[333](10)航中5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862641", + "createdBy": null, + "createdTime": "2026-02-02 04:59:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:18", + "echoMap": {}, + "alarmNo": "1850293587", + "alarmDate": "1769979557124", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862656", + "createdBy": null, + "createdTime": "2026-02-02 04:59:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:22", + "echoMap": {}, + "alarmNo": "1850293588", + "alarmDate": "1769979561120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862666", + "createdBy": null, + "createdTime": "2026-02-02 04:59:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:49", + "echoMap": {}, + "alarmNo": "1850293589", + "alarmDate": "1769979562711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862762", + "createdBy": null, + "createdTime": "2026-02-02 04:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:05", + "echoMap": {}, + "alarmNo": "1850293590", + "alarmDate": "1769979585862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862899", + "createdBy": null, + "createdTime": "2026-02-02 05:08:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:13", + "echoMap": {}, + "alarmNo": "1850293591", + "alarmDate": "1769980134867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113321164829729", + "createdBy": null, + "createdTime": "2026-02-02 05:09:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:08", + "echoMap": {}, + "alarmNo": "1850293592", + "alarmDate": "1769980146593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113321164829775", + "createdBy": null, + "createdTime": "2026-02-02 05:09:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:36", + "echoMap": {}, + "alarmNo": "1850293593", + "alarmDate": "1769980164004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113321164829781", + "createdBy": null, + "createdTime": "2026-02-02 05:09:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:10", + "echoMap": {}, + "alarmNo": "1850293594", + "alarmDate": "1769980164959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797182", + "createdBy": null, + "createdTime": "2026-02-02 05:19:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:15", + "echoMap": {}, + "alarmNo": "1850293595", + "alarmDate": "1769980742201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797236", + "createdBy": null, + "createdTime": "2026-02-02 05:19:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:18", + "echoMap": {}, + "alarmNo": "1850293596", + "alarmDate": "1769980756899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797250", + "createdBy": null, + "createdTime": "2026-02-02 05:19:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:41", + "echoMap": {}, + "alarmNo": "1850293597", + "alarmDate": "1769980762202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797281", + "createdBy": null, + "createdTime": "2026-02-02 05:19:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:33", + "echoMap": {}, + "alarmNo": "1850293598", + "alarmDate": "1769980771507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797294", + "createdBy": null, + "createdTime": "2026-02-02 05:19:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:41", + "echoMap": {}, + "alarmNo": "1850293599", + "alarmDate": "1769980774393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797339", + "createdBy": null, + "createdTime": "2026-02-02 05:19:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:50", + "echoMap": {}, + "alarmNo": "1850293600", + "alarmDate": "1769980788691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797347", + "createdBy": null, + "createdTime": "2026-02-02 05:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:52", + "echoMap": {}, + "alarmNo": "1850293601", + "alarmDate": "1769980790767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764293", + "createdBy": null, + "createdTime": "2026-02-02 05:28:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:01", + "echoMap": {}, + "alarmNo": "1850293602", + "alarmDate": "1769981333497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764299", + "createdBy": null, + "createdTime": "2026-02-02 05:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:15", + "echoMap": {}, + "alarmNo": "1850293603", + "alarmDate": "1769981335330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764304", + "createdBy": null, + "createdTime": "2026-02-02 05:28:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:57", + "echoMap": {}, + "alarmNo": "1850293604", + "alarmDate": "1769981335838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764324", + "createdBy": null, + "createdTime": "2026-02-02 05:29:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:01", + "echoMap": {}, + "alarmNo": "1850293605", + "alarmDate": "1769981339940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764412", + "createdBy": null, + "createdTime": "2026-02-02 05:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:47", + "echoMap": {}, + "alarmNo": "1850293606", + "alarmDate": "1769981373524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764423", + "createdBy": null, + "createdTime": "2026-02-02 05:29:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:37", + "echoMap": {}, + "alarmNo": "1850293607", + "alarmDate": "1769981376288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731624", + "createdBy": null, + "createdTime": "2026-02-02 05:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:18", + "echoMap": {}, + "alarmNo": "1850293608", + "alarmDate": "1769981391620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731770", + "createdBy": null, + "createdTime": "2026-02-02 05:39:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:20", + "echoMap": {}, + "alarmNo": "1850293609", + "alarmDate": "1769981939638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731865", + "createdBy": null, + "createdTime": "2026-02-02 05:39:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:42", + "echoMap": {}, + "alarmNo": "1850293610", + "alarmDate": "1769981969783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731874", + "createdBy": null, + "createdTime": "2026-02-02 05:39:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:51", + "echoMap": {}, + "alarmNo": "1850293611", + "alarmDate": "1769981971780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731948", + "createdBy": null, + "createdTime": "2026-02-02 05:39:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:54", + "echoMap": {}, + "alarmNo": "1850293612", + "alarmDate": "1769981992541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698905", + "createdBy": null, + "createdTime": "2026-02-02 05:49:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:13", + "echoMap": {}, + "alarmNo": "1850293613", + "alarmDate": "1769982541008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698913", + "createdBy": null, + "createdTime": "2026-02-02 05:49:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:04", + "echoMap": {}, + "alarmNo": "1850293614", + "alarmDate": "1769982542643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698920", + "createdBy": null, + "createdTime": "2026-02-02 05:49:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:23", + "echoMap": {}, + "alarmNo": "1850293615", + "alarmDate": "1769982543921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698969", + "createdBy": null, + "createdTime": "2026-02-02 05:49:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:14", + "echoMap": {}, + "alarmNo": "1850293616", + "alarmDate": "1769982553183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666182", + "createdBy": null, + "createdTime": "2026-02-02 05:49:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:24", + "echoMap": {}, + "alarmNo": "1850293617", + "alarmDate": "1769982563455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666208", + "createdBy": null, + "createdTime": "2026-02-02 05:49:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:43", + "echoMap": {}, + "alarmNo": "1850293618", + "alarmDate": "1769982571066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666236", + "createdBy": null, + "createdTime": "2026-02-02 05:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:59:27", + "echoMap": {}, + "alarmNo": "1850293619", + "alarmDate": "1769982576061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666242", + "createdBy": null, + "createdTime": "2026-02-02 05:49:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:38", + "echoMap": {}, + "alarmNo": "1850293620", + "alarmDate": "1769982576553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666504", + "createdBy": null, + "createdTime": "2026-02-02 05:59:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:59:15", + "echoMap": {}, + "alarmNo": "1850293621", + "alarmDate": "1769983153987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666542", + "createdBy": null, + "createdTime": "2026-02-02 05:59:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:59:38", + "echoMap": {}, + "alarmNo": "1850293622", + "alarmDate": "1769983165343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666588", + "createdBy": null, + "createdTime": "2026-02-02 05:59:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:23", + "echoMap": {}, + "alarmNo": "1850293623", + "alarmDate": "1769983179306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600789", + "createdBy": null, + "createdTime": "2026-02-02 06:09:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:24", + "echoMap": {}, + "alarmNo": "1850293624", + "alarmDate": "1769983750603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600866", + "createdBy": null, + "createdTime": "2026-02-02 06:09:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:48", + "echoMap": {}, + "alarmNo": "1850293625", + "alarmDate": "1769983774541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600892", + "createdBy": null, + "createdTime": "2026-02-02 06:09:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:43", + "echoMap": {}, + "alarmNo": "1850293626", + "alarmDate": "1769983782278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600896", + "createdBy": null, + "createdTime": "2026-02-02 06:09:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:02", + "echoMap": {}, + "alarmNo": "1850293627", + "alarmDate": "1769983782685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600913", + "createdBy": null, + "createdTime": "2026-02-02 06:09:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:47", + "echoMap": {}, + "alarmNo": "1850293628", + "alarmDate": "1769983785888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600938", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:53", + "echoMap": {}, + "alarmNo": "1850293629", + "alarmDate": "1769983792066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601056", + "createdBy": null, + "createdTime": "2026-02-02 06:18:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:54", + "echoMap": {}, + "alarmNo": "1850293630", + "alarmDate": "1769984333003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601059", + "createdBy": null, + "createdTime": "2026-02-02 06:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:04", + "echoMap": {}, + "alarmNo": "1850293631", + "alarmDate": "1769984333790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601081", + "createdBy": null, + "createdTime": "2026-02-02 06:18:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:00", + "echoMap": {}, + "alarmNo": "1850293632", + "alarmDate": "1769984339239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601125", + "createdBy": null, + "createdTime": "2026-02-02 06:19:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:35", + "echoMap": {}, + "alarmNo": "1850293633", + "alarmDate": "1769984355800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601140", + "createdBy": null, + "createdTime": "2026-02-02 06:19:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:33", + "echoMap": {}, + "alarmNo": "1850293634", + "alarmDate": "1769984359819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601161", + "createdBy": null, + "createdTime": "2026-02-02 06:19:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:25", + "echoMap": {}, + "alarmNo": "1850293635", + "alarmDate": "1769984364446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601241", + "createdBy": null, + "createdTime": "2026-02-02 06:19:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:11", + "echoMap": {}, + "alarmNo": "1850293636", + "alarmDate": "1769984384990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601249", + "createdBy": null, + "createdTime": "2026-02-02 06:19:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:48", + "echoMap": {}, + "alarmNo": "1850293637", + "alarmDate": "1769984386632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601252", + "createdBy": null, + "createdTime": "2026-02-02 06:19:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:00", + "echoMap": {}, + "alarmNo": "1850293638", + "alarmDate": "1769984386863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535415", + "createdBy": null, + "createdTime": "2026-02-02 06:29:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:24", + "echoMap": {}, + "alarmNo": "1850293639", + "alarmDate": "1769984952146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535464", + "createdBy": null, + "createdTime": "2026-02-02 06:29:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:35", + "echoMap": {}, + "alarmNo": "1850293640", + "alarmDate": "1769984969102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535501", + "createdBy": null, + "createdTime": "2026-02-02 06:29:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:43", + "echoMap": {}, + "alarmNo": "1850293641", + "alarmDate": "1769984983111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535674", + "createdBy": null, + "createdTime": "2026-02-02 06:39:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:20", + "echoMap": {}, + "alarmNo": "1850293642", + "alarmDate": "1769985548351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535743", + "createdBy": null, + "createdTime": "2026-02-02 06:39:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:28", + "echoMap": {}, + "alarmNo": "1850293643", + "alarmDate": "1769985566796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535748", + "createdBy": null, + "createdTime": "2026-02-02 06:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:29", + "echoMap": {}, + "alarmNo": "1850293644", + "alarmDate": "1769985567596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535761", + "createdBy": null, + "createdTime": "2026-02-02 06:39:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:45", + "echoMap": {}, + "alarmNo": "1850293645", + "alarmDate": "1769985572322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113364114502742", + "createdBy": null, + "createdTime": "2026-02-02 06:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:59", + "echoMap": {}, + "alarmNo": "1850293646", + "alarmDate": "1769986133600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113364114502785", + "createdBy": null, + "createdTime": "2026-02-02 06:49:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:31", + "echoMap": {}, + "alarmNo": "1850293647", + "alarmDate": "1769986151611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409469973", + "createdBy": null, + "createdTime": "2026-02-02 06:49:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:20", + "echoMap": {}, + "alarmNo": "1850293648", + "alarmDate": "1769986159346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470001", + "createdBy": null, + "createdTime": "2026-02-02 06:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:28", + "echoMap": {}, + "alarmNo": "1850293649", + "alarmDate": "1769986167415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470053", + "createdBy": null, + "createdTime": "2026-02-02 06:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:50", + "echoMap": {}, + "alarmNo": "1850293650", + "alarmDate": "1769986189751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470178", + "createdBy": null, + "createdTime": "2026-02-02 06:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:51", + "echoMap": {}, + "alarmNo": "1850293651", + "alarmDate": "1769986734902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470196", + "createdBy": null, + "createdTime": "2026-02-02 06:59:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:08", + "echoMap": {}, + "alarmNo": "1850293652", + "alarmDate": "1769986742113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470233", + "createdBy": null, + "createdTime": "2026-02-02 06:59:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:22", + "echoMap": {}, + "alarmNo": "1850293653", + "alarmDate": "1769986756158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470314", + "createdBy": null, + "createdTime": "2026-02-02 06:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:09", + "echoMap": {}, + "alarmNo": "1850293654", + "alarmDate": "1769986792141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437263", + "createdBy": null, + "createdTime": "2026-02-02 07:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:12", + "echoMap": {}, + "alarmNo": "1850293655", + "alarmDate": "1769987338458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437287", + "createdBy": null, + "createdTime": "2026-02-02 07:09:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:07", + "echoMap": {}, + "alarmNo": "1850293656", + "alarmDate": "1769987345586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437320", + "createdBy": null, + "createdTime": "2026-02-02 07:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:17", + "echoMap": {}, + "alarmNo": "1850293657", + "alarmDate": "1769987356414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437334", + "createdBy": null, + "createdTime": "2026-02-02 07:09:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:19", + "echoMap": {}, + "alarmNo": "1850293658", + "alarmDate": "1769987361422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437361", + "createdBy": null, + "createdTime": "2026-02-02 07:09:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:42", + "echoMap": {}, + "alarmNo": "1850293659", + "alarmDate": "1769987369448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404736", + "createdBy": null, + "createdTime": "2026-02-02 07:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:13", + "echoMap": {}, + "alarmNo": "1850293660", + "alarmDate": "1769987933632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404762", + "createdBy": null, + "createdTime": "2026-02-02 07:19:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:42", + "echoMap": {}, + "alarmNo": "1850293661", + "alarmDate": "1769987939877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404806", + "createdBy": null, + "createdTime": "2026-02-02 07:19:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:09", + "echoMap": {}, + "alarmNo": "1850293662", + "alarmDate": "1769987948251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404839", + "createdBy": null, + "createdTime": "2026-02-02 07:19:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:15", + "echoMap": {}, + "alarmNo": "1850293663", + "alarmDate": "1769987954311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404885", + "createdBy": null, + "createdTime": "2026-02-02 07:19:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:44", + "echoMap": {}, + "alarmNo": "1850293664", + "alarmDate": "1769987964718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113381294371924", + "createdBy": null, + "createdTime": "2026-02-02 07:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:58", + "echoMap": {}, + "alarmNo": "1850293665", + "alarmDate": "1769988533005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113381294371931", + "createdBy": null, + "createdTime": "2026-02-02 07:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:35", + "echoMap": {}, + "alarmNo": "1850293666", + "alarmDate": "1769988535245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339164", + "createdBy": null, + "createdTime": "2026-02-02 07:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:22", + "echoMap": {}, + "alarmNo": "1850293667", + "alarmDate": "1769988550091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339276", + "createdBy": null, + "createdTime": "2026-02-02 07:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:16", + "echoMap": {}, + "alarmNo": "1850293668", + "alarmDate": "1769988574063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339294", + "createdBy": null, + "createdTime": "2026-02-02 07:29:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:38", + "echoMap": {}, + "alarmNo": "1850293669", + "alarmDate": "1769988577190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339550", + "createdBy": null, + "createdTime": "2026-02-02 07:39:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:10", + "echoMap": {}, + "alarmNo": "1850293670", + "alarmDate": "1769989149223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113389884306455", + "createdBy": null, + "createdTime": "2026-02-02 07:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:41", + "echoMap": {}, + "alarmNo": "1850293671", + "alarmDate": "1769989168440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113389884306500", + "createdBy": null, + "createdTime": "2026-02-02 07:39:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:38", + "echoMap": {}, + "alarmNo": "1850293672", + "alarmDate": "1769989176742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113389884306525", + "createdBy": null, + "createdTime": "2026-02-02 07:39:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:42", + "echoMap": {}, + "alarmNo": "1850293673", + "alarmDate": "1769989180913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179273868", + "createdBy": null, + "createdTime": "2026-02-02 07:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:26", + "echoMap": {}, + "alarmNo": "1850293674", + "alarmDate": "1769989733604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179273875", + "createdBy": null, + "createdTime": "2026-02-02 07:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:15", + "echoMap": {}, + "alarmNo": "1850293675", + "alarmDate": "1769989734989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179274006", + "createdBy": null, + "createdTime": "2026-02-02 07:49:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:23", + "echoMap": {}, + "alarmNo": "1850293676", + "alarmDate": "1769989762175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179274032", + "createdBy": null, + "createdTime": "2026-02-02 07:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:14", + "echoMap": {}, + "alarmNo": "1850293677", + "alarmDate": "1769989766980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179274081", + "createdBy": null, + "createdTime": "2026-02-02 07:49:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:35", + "echoMap": {}, + "alarmNo": "1850293678", + "alarmDate": "1769989778726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208359", + "createdBy": null, + "createdTime": "2026-02-02 07:59:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:19", + "echoMap": {}, + "alarmNo": "1850293679", + "alarmDate": "1769990358305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208400", + "createdBy": null, + "createdTime": "2026-02-02 07:59:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:29", + "echoMap": {}, + "alarmNo": "1850293680", + "alarmDate": "1769990367934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208642", + "createdBy": null, + "createdTime": "2026-02-02 08:08:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:36", + "echoMap": {}, + "alarmNo": "1850293681", + "alarmDate": "1769990933302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208692", + "createdBy": null, + "createdTime": "2026-02-02 08:09:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:05", + "echoMap": {}, + "alarmNo": "1850293682", + "alarmDate": "1769990944022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208778", + "createdBy": null, + "createdTime": "2026-02-02 08:09:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:23", + "echoMap": {}, + "alarmNo": "1850293683", + "alarmDate": "1769990961639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113407064175655", + "createdBy": null, + "createdTime": "2026-02-02 08:09:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:15", + "echoMap": {}, + "alarmNo": "1850293684", + "alarmDate": "1769990978364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113407064175701", + "createdBy": null, + "createdTime": "2026-02-02 08:09:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:12", + "echoMap": {}, + "alarmNo": "1850293685", + "alarmDate": "1769990989361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113411359143062", + "createdBy": null, + "createdTime": "2026-02-02 08:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:02", + "echoMap": {}, + "alarmNo": "1850293686", + "alarmDate": "1769991540690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113411359143200", + "createdBy": null, + "createdTime": "2026-02-02 08:19:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:27", + "echoMap": {}, + "alarmNo": "1850293687", + "alarmDate": "1769991566065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113411359143205", + "createdBy": null, + "createdTime": "2026-02-02 08:19:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:21", + "echoMap": {}, + "alarmNo": "1850293688", + "alarmDate": "1769991566557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113415654110294", + "createdBy": null, + "createdTime": "2026-02-02 08:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:54", + "echoMap": {}, + "alarmNo": "1850293689", + "alarmDate": "1769992132898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077561", + "createdBy": null, + "createdTime": "2026-02-02 08:29:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:13", + "echoMap": {}, + "alarmNo": "1850293690", + "alarmDate": "1769992151816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077595", + "createdBy": null, + "createdTime": "2026-02-02 08:29:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:25", + "echoMap": {}, + "alarmNo": "1850293691", + "alarmDate": "1769992157938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077650", + "createdBy": null, + "createdTime": "2026-02-02 08:29:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:29", + "echoMap": {}, + "alarmNo": "1850293692", + "alarmDate": "1769992168108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077671", + "createdBy": null, + "createdTime": "2026-02-02 08:29:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:39:27", + "echoMap": {}, + "alarmNo": "1850293693", + "alarmDate": "1769992172860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077717", + "createdBy": null, + "createdTime": "2026-02-02 08:29:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:43", + "echoMap": {}, + "alarmNo": "1850293694", + "alarmDate": "1769992181598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077724", + "createdBy": null, + "createdTime": "2026-02-02 08:29:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:48", + "echoMap": {}, + "alarmNo": "1850293695", + "alarmDate": "1769992182041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077991", + "createdBy": null, + "createdTime": "2026-02-02 08:39:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:39:10", + "echoMap": {}, + "alarmNo": "1850293696", + "alarmDate": "1769992748622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113428539012154", + "createdBy": null, + "createdTime": "2026-02-02 08:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:09", + "echoMap": {}, + "alarmNo": "1850293697", + "alarmDate": "1769992791133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113437128946767", + "createdBy": null, + "createdTime": "2026-02-02 08:49:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:51", + "echoMap": {}, + "alarmNo": "1850293698", + "alarmDate": "1769993361248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113437128946827", + "createdBy": null, + "createdTime": "2026-02-02 08:49:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:32", + "echoMap": {}, + "alarmNo": "1850293699", + "alarmDate": "1769993370971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113441423914009", + "createdBy": null, + "createdTime": "2026-02-02 08:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:51", + "echoMap": {}, + "alarmNo": "1850293700", + "alarmDate": "1769993390308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113445718881369", + "createdBy": null, + "createdTime": "2026-02-02 08:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:00", + "echoMap": {}, + "alarmNo": "1850293701", + "alarmDate": "1769993933568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113445718881378", + "createdBy": null, + "createdTime": "2026-02-02 08:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:44", + "echoMap": {}, + "alarmNo": "1850293702", + "alarmDate": "1769993935428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113445718881399", + "createdBy": null, + "createdTime": "2026-02-02 08:58:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:00", + "echoMap": {}, + "alarmNo": "1850293703", + "alarmDate": "1769993938521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113450013848635", + "createdBy": null, + "createdTime": "2026-02-02 08:59:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:31", + "echoMap": {}, + "alarmNo": "1850293704", + "alarmDate": "1769993970366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113450013848665", + "createdBy": null, + "createdTime": "2026-02-02 08:59:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:00", + "echoMap": {}, + "alarmNo": "1850293705", + "alarmDate": "1769993975754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113454308815910", + "createdBy": null, + "createdTime": "2026-02-02 08:59:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:44", + "echoMap": {}, + "alarmNo": "1850293706", + "alarmDate": "1769993983183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113454308816084", + "createdBy": null, + "createdTime": "2026-02-02 09:08:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:09:04", + "echoMap": {}, + "alarmNo": "1850293707", + "alarmDate": "1769994535672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113458603783227", + "createdBy": null, + "createdTime": "2026-02-02 09:09:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:09:17", + "echoMap": {}, + "alarmNo": "1850293708", + "alarmDate": "1769994551521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060047", + "deviceName": "[333](10)航中5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113458603783251", + "createdBy": null, + "createdTime": "2026-02-02 09:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:10", + "echoMap": {}, + "alarmNo": "1850293709", + "alarmDate": "1769994555800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113471488685179", + "createdBy": null, + "createdTime": "2026-02-02 09:19:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:34", + "echoMap": {}, + "alarmNo": "1850293710", + "alarmDate": "1769995161845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113471488685254", + "createdBy": null, + "createdTime": "2026-02-02 09:19:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:38", + "echoMap": {}, + "alarmNo": "1850293711", + "alarmDate": "1769995177196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113471488685260", + "createdBy": null, + "createdTime": "2026-02-02 09:19:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:39", + "echoMap": {}, + "alarmNo": "1850293712", + "alarmDate": "1769995177930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113475783652372", + "createdBy": null, + "createdTime": "2026-02-02 09:19:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:22", + "echoMap": {}, + "alarmNo": "1850293713", + "alarmDate": "1769995185849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113480078619898", + "createdBy": null, + "createdTime": "2026-02-02 09:29:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:26", + "echoMap": {}, + "alarmNo": "1850293714", + "alarmDate": "1769995764939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113480078619905", + "createdBy": null, + "createdTime": "2026-02-02 09:29:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:26", + "echoMap": {}, + "alarmNo": "1850293715", + "alarmDate": "1769995765247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113484373586959", + "createdBy": null, + "createdTime": "2026-02-02 09:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:46", + "echoMap": {}, + "alarmNo": "1850293716", + "alarmDate": "1769995774018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113488668554367", + "createdBy": null, + "createdTime": "2026-02-02 09:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:39:28", + "echoMap": {}, + "alarmNo": "1850293718", + "alarmDate": "1769996335208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113497258488866", + "createdBy": null, + "createdTime": "2026-02-02 09:39:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:34", + "echoMap": {}, + "alarmNo": "1850293719", + "alarmDate": "1769996379245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423432", + "createdBy": null, + "createdTime": "2026-02-02 09:49:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:18", + "echoMap": {}, + "alarmNo": "1850293720", + "alarmDate": "1769996956900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423501", + "createdBy": null, + "createdTime": "2026-02-02 09:49:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:49", + "echoMap": {}, + "alarmNo": "1850293721", + "alarmDate": "1769996969725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423536", + "createdBy": null, + "createdTime": "2026-02-02 09:49:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:36", + "echoMap": {}, + "alarmNo": "1850293722", + "alarmDate": "1769996975362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423552", + "createdBy": null, + "createdTime": "2026-02-02 09:49:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:38", + "echoMap": {}, + "alarmNo": "1850293723", + "alarmDate": "1769996976907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358019", + "createdBy": null, + "createdTime": "2026-02-02 09:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:47", + "echoMap": {}, + "alarmNo": "1850293724", + "alarmDate": "1769997534916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358060", + "createdBy": null, + "createdTime": "2026-02-02 09:59:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:06", + "echoMap": {}, + "alarmNo": "1850293725", + "alarmDate": "1769997544726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358067", + "createdBy": null, + "createdTime": "2026-02-02 09:59:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:11", + "echoMap": {}, + "alarmNo": "1850293726", + "alarmDate": "1769997545068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358127", + "createdBy": null, + "createdTime": "2026-02-02 09:59:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:19", + "echoMap": {}, + "alarmNo": "1850293727", + "alarmDate": "1769997558016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113531618227233", + "createdBy": null, + "createdTime": "2026-02-02 10:09:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:50", + "echoMap": {}, + "alarmNo": "1850293728", + "alarmDate": "1769998188600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113531618227364", + "createdBy": null, + "createdTime": "2026-02-02 10:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:10", + "echoMap": {}, + "alarmNo": "1850293729", + "alarmDate": "1769998734975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113531618227370", + "createdBy": null, + "createdTime": "2026-02-02 10:18:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:57", + "echoMap": {}, + "alarmNo": "1850293730", + "alarmDate": "1769998735609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113535913194539", + "createdBy": null, + "createdTime": "2026-02-02 10:19:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:24", + "echoMap": {}, + "alarmNo": "1850293731", + "alarmDate": "1769998751575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161824", + "createdBy": null, + "createdTime": "2026-02-02 10:19:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:04", + "echoMap": {}, + "alarmNo": "1850293732", + "alarmDate": "1769998768118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161857", + "createdBy": null, + "createdTime": "2026-02-02 10:19:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:37", + "echoMap": {}, + "alarmNo": "1850293733", + "alarmDate": "1769998775726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161866", + "createdBy": null, + "createdTime": "2026-02-02 10:19:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:38", + "echoMap": {}, + "alarmNo": "1850293734", + "alarmDate": "1769998777287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161915", + "createdBy": null, + "createdTime": "2026-02-02 10:19:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:23", + "echoMap": {}, + "alarmNo": "1850293735", + "alarmDate": "1769998787769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161938", + "createdBy": null, + "createdTime": "2026-02-02 10:19:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:24", + "echoMap": {}, + "alarmNo": "1850293736", + "alarmDate": "1769998793605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096424", + "createdBy": null, + "createdTime": "2026-02-02 10:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:10", + "echoMap": {}, + "alarmNo": "1850293737", + "alarmDate": "1769999348819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096462", + "createdBy": null, + "createdTime": "2026-02-02 10:29:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:22", + "echoMap": {}, + "alarmNo": "1850293738", + "alarmDate": "1769999355825", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096542", + "createdBy": null, + "createdTime": "2026-02-02 10:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:40", + "echoMap": {}, + "alarmNo": "1850293739", + "alarmDate": "1769999373550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096551", + "createdBy": null, + "createdTime": "2026-02-02 10:29:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:04", + "echoMap": {}, + "alarmNo": "1850293740", + "alarmDate": "1769999375108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031033", + "createdBy": null, + "createdTime": "2026-02-02 10:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:59", + "echoMap": {}, + "alarmNo": "1850293741", + "alarmDate": "1769999935201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031118", + "createdBy": null, + "createdTime": "2026-02-02 10:39:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:23", + "echoMap": {}, + "alarmNo": "1850293742", + "alarmDate": "1769999957407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031152", + "createdBy": null, + "createdTime": "2026-02-02 10:39:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:27", + "echoMap": {}, + "alarmNo": "1850293743", + "alarmDate": "1769999966303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031181", + "createdBy": null, + "createdTime": "2026-02-02 10:39:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:59:16", + "echoMap": {}, + "alarmNo": "1850293744", + "alarmDate": "1769999974444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031185", + "createdBy": null, + "createdTime": "2026-02-02 10:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:47", + "echoMap": {}, + "alarmNo": "1850293745", + "alarmDate": "1769999975295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965696", + "createdBy": null, + "createdTime": "2026-02-02 10:49:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:19", + "echoMap": {}, + "alarmNo": "1850293746", + "alarmDate": "1770000558085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965746", + "createdBy": null, + "createdTime": "2026-02-02 10:49:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:31", + "echoMap": {}, + "alarmNo": "1850293747", + "alarmDate": "1770000569595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965760", + "createdBy": null, + "createdTime": "2026-02-02 10:49:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:33", + "echoMap": {}, + "alarmNo": "1850293748", + "alarmDate": "1770000572030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965829", + "createdBy": null, + "createdTime": "2026-02-02 10:49:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:50", + "echoMap": {}, + "alarmNo": "1850293749", + "alarmDate": "1770000584469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965837", + "createdBy": null, + "createdTime": "2026-02-02 10:49:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:46", + "echoMap": {}, + "alarmNo": "1850293750", + "alarmDate": "1770000585366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113574567900180", + "createdBy": null, + "createdTime": "2026-02-02 10:58:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:57", + "echoMap": {}, + "alarmNo": "1850293751", + "alarmDate": "1770001135525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113574567900259", + "createdBy": null, + "createdTime": "2026-02-02 10:59:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:59:34", + "echoMap": {}, + "alarmNo": "1850293752", + "alarmDate": "1770001168111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113574567900318", + "createdBy": null, + "createdTime": "2026-02-02 10:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:59:52", + "echoMap": {}, + "alarmNo": "1850293753", + "alarmDate": "1770001186089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113578862867484", + "createdBy": null, + "createdTime": "2026-02-02 11:09:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:08", + "echoMap": {}, + "alarmNo": "1850293754", + "alarmDate": "1770001746915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113578862867505", + "createdBy": null, + "createdTime": "2026-02-02 11:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:21", + "echoMap": {}, + "alarmNo": "1850293755", + "alarmDate": "1770001755511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113578862867512", + "createdBy": null, + "createdTime": "2026-02-02 11:09:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:24", + "echoMap": {}, + "alarmNo": "1850293756", + "alarmDate": "1770001757120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834760", + "createdBy": null, + "createdTime": "2026-02-02 11:09:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:29", + "echoMap": {}, + "alarmNo": "1850293757", + "alarmDate": "1770001763473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834804", + "createdBy": null, + "createdTime": "2026-02-02 11:09:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:45", + "echoMap": {}, + "alarmNo": "1850293758", + "alarmDate": "1770001773462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834840", + "createdBy": null, + "createdTime": "2026-02-02 11:09:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:40", + "echoMap": {}, + "alarmNo": "1850293759", + "alarmDate": "1770001785290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834864", + "createdBy": null, + "createdTime": "2026-02-02 11:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:54", + "echoMap": {}, + "alarmNo": "1850293760", + "alarmDate": "1770001792643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834992", + "createdBy": null, + "createdTime": "2026-02-02 11:19:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:01", + "echoMap": {}, + "alarmNo": "1850293761", + "alarmDate": "1770002339829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157835011", + "createdBy": null, + "createdTime": "2026-02-02 11:19:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:16", + "echoMap": {}, + "alarmNo": "1850293762", + "alarmDate": "1770002349739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157835026", + "createdBy": null, + "createdTime": "2026-02-02 11:19:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:40", + "echoMap": {}, + "alarmNo": "1850293763", + "alarmDate": "1770002356198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113587452802057", + "createdBy": null, + "createdTime": "2026-02-02 11:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:30", + "echoMap": {}, + "alarmNo": "1850293764", + "alarmDate": "1770002369550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113587452802060", + "createdBy": null, + "createdTime": "2026-02-02 11:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:31", + "echoMap": {}, + "alarmNo": "1850293765", + "alarmDate": "1770002369836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113587452802069", + "createdBy": null, + "createdTime": "2026-02-02 11:19:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:32", + "echoMap": {}, + "alarmNo": "1850293766", + "alarmDate": "1770002371180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113591747769418", + "createdBy": null, + "createdTime": "2026-02-02 11:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:52", + "echoMap": {}, + "alarmNo": "1850293767", + "alarmDate": "1770002935324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113591747769495", + "createdBy": null, + "createdTime": "2026-02-02 11:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:08", + "echoMap": {}, + "alarmNo": "1850293768", + "alarmDate": "1770002964030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113591747769556", + "createdBy": null, + "createdTime": "2026-02-02 11:29:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:40", + "echoMap": {}, + "alarmNo": "1850293769", + "alarmDate": "1770002978603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113600337703944", + "createdBy": null, + "createdTime": "2026-02-02 11:38:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:39:10", + "echoMap": {}, + "alarmNo": "1850293770", + "alarmDate": "1770003537760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113600337704031", + "createdBy": null, + "createdTime": "2026-02-02 11:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:39:36", + "echoMap": {}, + "alarmNo": "1850293771", + "alarmDate": "1770003575493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113600337704037", + "createdBy": null, + "createdTime": "2026-02-02 11:39:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:05", + "echoMap": {}, + "alarmNo": "1850293772", + "alarmDate": "1770003576487", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671244", + "createdBy": null, + "createdTime": "2026-02-02 11:49:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:10", + "echoMap": {}, + "alarmNo": "1850293773", + "alarmDate": "1770004143989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671268", + "createdBy": null, + "createdTime": "2026-02-02 11:49:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:16", + "echoMap": {}, + "alarmNo": "1850293774", + "alarmDate": "1770004154890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671277", + "createdBy": null, + "createdTime": "2026-02-02 11:49:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:20", + "echoMap": {}, + "alarmNo": "1850293775", + "alarmDate": "1770004159632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671293", + "createdBy": null, + "createdTime": "2026-02-02 11:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:28", + "echoMap": {}, + "alarmNo": "1850293776", + "alarmDate": "1770004166533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671307", + "createdBy": null, + "createdTime": "2026-02-02 11:49:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:32", + "echoMap": {}, + "alarmNo": "1850293777", + "alarmDate": "1770004171323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671345", + "createdBy": null, + "createdTime": "2026-02-02 11:49:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:24", + "echoMap": {}, + "alarmNo": "1850293778", + "alarmDate": "1770004188409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113608927638697", + "createdBy": null, + "createdTime": "2026-02-02 11:59:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:59:22", + "echoMap": {}, + "alarmNo": "1850293779", + "alarmDate": "1770004761320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113608927638785", + "createdBy": null, + "createdTime": "2026-02-02 11:59:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:59:52", + "echoMap": {}, + "alarmNo": "1850293780", + "alarmDate": "1770004790961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113613222605898", + "createdBy": null, + "createdTime": "2026-02-02 12:09:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:06", + "echoMap": {}, + "alarmNo": "1850293781", + "alarmDate": "1770005345125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113613222605941", + "createdBy": null, + "createdTime": "2026-02-02 12:09:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:19", + "echoMap": {}, + "alarmNo": "1850293782", + "alarmDate": "1770005358290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113617517573335", + "createdBy": null, + "createdTime": "2026-02-02 12:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:24", + "echoMap": {}, + "alarmNo": "1850293783", + "alarmDate": "1770005933889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113617517573341", + "createdBy": null, + "createdTime": "2026-02-02 12:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:31", + "echoMap": {}, + "alarmNo": "1850293784", + "alarmDate": "1770005935222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113617517573388", + "createdBy": null, + "createdTime": "2026-02-02 12:19:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:08", + "echoMap": {}, + "alarmNo": "1850293785", + "alarmDate": "1770005946723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113621812540465", + "createdBy": null, + "createdTime": "2026-02-02 12:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:31", + "echoMap": {}, + "alarmNo": "1850293786", + "alarmDate": "1770005970222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113621812540478", + "createdBy": null, + "createdTime": "2026-02-02 12:19:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:46", + "echoMap": {}, + "alarmNo": "1850293787", + "alarmDate": "1770005973655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507721", + "createdBy": null, + "createdTime": "2026-02-02 12:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:53", + "echoMap": {}, + "alarmNo": "1850293788", + "alarmDate": "1770005991915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507856", + "createdBy": null, + "createdTime": "2026-02-02 12:28:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:00", + "echoMap": {}, + "alarmNo": "1850293789", + "alarmDate": "1770006539053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507871", + "createdBy": null, + "createdTime": "2026-02-02 12:29:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:09", + "echoMap": {}, + "alarmNo": "1850293790", + "alarmDate": "1770006542656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507971", + "createdBy": null, + "createdTime": "2026-02-02 12:29:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:51", + "echoMap": {}, + "alarmNo": "1850293791", + "alarmDate": "1770006572693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113630402475051", + "createdBy": null, + "createdTime": "2026-02-02 12:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:53", + "echoMap": {}, + "alarmNo": "1850293792", + "alarmDate": "1770006591834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442364", + "createdBy": null, + "createdTime": "2026-02-02 12:38:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:39:00", + "echoMap": {}, + "alarmNo": "1850293793", + "alarmDate": "1770007139008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442453", + "createdBy": null, + "createdTime": "2026-02-02 12:39:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:39:42", + "echoMap": {}, + "alarmNo": "1850293794", + "alarmDate": "1770007181398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442585", + "createdBy": null, + "createdTime": "2026-02-02 12:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:32", + "echoMap": {}, + "alarmNo": "1850293795", + "alarmDate": "1770007735296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442596", + "createdBy": null, + "createdTime": "2026-02-02 12:48:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:05", + "echoMap": {}, + "alarmNo": "1850293796", + "alarmDate": "1770007735797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409642", + "createdBy": null, + "createdTime": "2026-02-02 12:49:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:40", + "echoMap": {}, + "alarmNo": "1850293797", + "alarmDate": "1770007756893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409696", + "createdBy": null, + "createdTime": "2026-02-02 12:49:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:30", + "echoMap": {}, + "alarmNo": "1850293798", + "alarmDate": "1770007769128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409710", + "createdBy": null, + "createdTime": "2026-02-02 12:49:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:03", + "echoMap": {}, + "alarmNo": "1850293799", + "alarmDate": "1770007771520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409712", + "createdBy": null, + "createdTime": "2026-02-02 12:49:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:33", + "echoMap": {}, + "alarmNo": "1850293800", + "alarmDate": "1770007771687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113643287377109", + "createdBy": null, + "createdTime": "2026-02-02 12:59:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:59:01", + "echoMap": {}, + "alarmNo": "1850293801", + "alarmDate": "1770008339620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113647582344193", + "createdBy": null, + "createdTime": "2026-02-02 12:59:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:59:33", + "echoMap": {}, + "alarmNo": "1850293802", + "alarmDate": "1770008371703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113651877311757", + "createdBy": null, + "createdTime": "2026-02-02 13:09:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:36", + "echoMap": {}, + "alarmNo": "1850293803", + "alarmDate": "1770008975270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113656172278791", + "createdBy": null, + "createdTime": "2026-02-02 13:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:59", + "echoMap": {}, + "alarmNo": "1850293804", + "alarmDate": "1770008992302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113660467246152", + "createdBy": null, + "createdTime": "2026-02-02 13:19:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:15", + "echoMap": {}, + "alarmNo": "1850293805", + "alarmDate": "1770009554414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113660467246155", + "createdBy": null, + "createdTime": "2026-02-02 13:19:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:19", + "echoMap": {}, + "alarmNo": "1850293806", + "alarmDate": "1770009554598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113660467246178", + "createdBy": null, + "createdTime": "2026-02-02 13:19:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:22", + "echoMap": {}, + "alarmNo": "1850293807", + "alarmDate": "1770009561039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213398", + "createdBy": null, + "createdTime": "2026-02-02 13:28:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:04", + "echoMap": {}, + "alarmNo": "1850293808", + "alarmDate": "1770010137942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213407", + "createdBy": null, + "createdTime": "2026-02-02 13:29:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:12", + "echoMap": {}, + "alarmNo": "1850293809", + "alarmDate": "1770010140059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213441", + "createdBy": null, + "createdTime": "2026-02-02 13:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:11", + "echoMap": {}, + "alarmNo": "1850293810", + "alarmDate": "1770010149501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213456", + "createdBy": null, + "createdTime": "2026-02-02 13:29:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:14", + "echoMap": {}, + "alarmNo": "1850293811", + "alarmDate": "1770010153377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213466", + "createdBy": null, + "createdTime": "2026-02-02 13:29:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:28", + "echoMap": {}, + "alarmNo": "1850293812", + "alarmDate": "1770010155937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180861", + "createdBy": null, + "createdTime": "2026-02-02 13:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:58", + "echoMap": {}, + "alarmNo": "1850293813", + "alarmDate": "1770010733122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180863", + "createdBy": null, + "createdTime": "2026-02-02 13:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:00", + "echoMap": {}, + "alarmNo": "1850293814", + "alarmDate": "1770010733271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180922", + "createdBy": null, + "createdTime": "2026-02-02 13:39:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:16", + "echoMap": {}, + "alarmNo": "1850293815", + "alarmDate": "1770010750099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180933", + "createdBy": null, + "createdTime": "2026-02-02 13:39:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:18", + "echoMap": {}, + "alarmNo": "1850293816", + "alarmDate": "1770010752279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352147974", + "createdBy": null, + "createdTime": "2026-02-02 13:39:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:31", + "echoMap": {}, + "alarmNo": "1850293817", + "alarmDate": "1770010765366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352147979", + "createdBy": null, + "createdTime": "2026-02-02 13:39:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:27", + "echoMap": {}, + "alarmNo": "1850293818", + "alarmDate": "1770010765937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352147992", + "createdBy": null, + "createdTime": "2026-02-02 13:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:34", + "echoMap": {}, + "alarmNo": "1850293819", + "alarmDate": "1770010768215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352148020", + "createdBy": null, + "createdTime": "2026-02-02 13:39:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:35", + "echoMap": {}, + "alarmNo": "1850293820", + "alarmDate": "1770010773821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352148049", + "createdBy": null, + "createdTime": "2026-02-02 13:39:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:43", + "echoMap": {}, + "alarmNo": "1850293821", + "alarmDate": "1770010782103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115402", + "createdBy": null, + "createdTime": "2026-02-02 13:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:10", + "echoMap": {}, + "alarmNo": "1850293822", + "alarmDate": "1770011333294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115404", + "createdBy": null, + "createdTime": "2026-02-02 13:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:12", + "echoMap": {}, + "alarmNo": "1850293823", + "alarmDate": "1770011333494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115480", + "createdBy": null, + "createdTime": "2026-02-02 13:49:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:28", + "echoMap": {}, + "alarmNo": "1850293824", + "alarmDate": "1770011349955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115536", + "createdBy": null, + "createdTime": "2026-02-02 13:49:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:19", + "echoMap": {}, + "alarmNo": "1850293825", + "alarmDate": "1770011357960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113681942082597", + "createdBy": null, + "createdTime": "2026-02-02 13:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:43", + "echoMap": {}, + "alarmNo": "1850293826", + "alarmDate": "1770011376479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113681942082620", + "createdBy": null, + "createdTime": "2026-02-02 13:49:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "alarmNo": "1850293827", + "alarmDate": "1770011382048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113681942082636", + "createdBy": null, + "createdTime": "2026-02-02 13:49:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:46", + "echoMap": {}, + "alarmNo": "1850293828", + "alarmDate": "1770011385129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113686237049986", + "createdBy": null, + "createdTime": "2026-02-02 13:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:11", + "echoMap": {}, + "alarmNo": "1850293829", + "alarmDate": "1770011935151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113686237050086", + "createdBy": null, + "createdTime": "2026-02-02 13:59:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:13", + "echoMap": {}, + "alarmNo": "1850293830", + "alarmDate": "1770011952469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113686237050141", + "createdBy": null, + "createdTime": "2026-02-02 13:59:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:29", + "echoMap": {}, + "alarmNo": "1850293831", + "alarmDate": "1770011969236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984512", + "createdBy": null, + "createdTime": "2026-02-02 14:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:16", + "echoMap": {}, + "alarmNo": "1850293832", + "alarmDate": "1770012537760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984653", + "createdBy": null, + "createdTime": "2026-02-02 14:09:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:22", + "echoMap": {}, + "alarmNo": "1850293833", + "alarmDate": "1770012560774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984669", + "createdBy": null, + "createdTime": "2026-02-02 14:09:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:25", + "echoMap": {}, + "alarmNo": "1850293834", + "alarmDate": "1770012563757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984689", + "createdBy": null, + "createdTime": "2026-02-02 14:09:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:28", + "echoMap": {}, + "alarmNo": "1850293835", + "alarmDate": "1770012567734", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060085", + "deviceName": "[311](10)航中2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984714", + "createdBy": null, + "createdTime": "2026-02-02 14:09:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:50", + "echoMap": {}, + "alarmNo": "1850293836", + "alarmDate": "1770012572111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113703416919181", + "createdBy": null, + "createdTime": "2026-02-02 14:18:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:58", + "echoMap": {}, + "alarmNo": "1850293837", + "alarmDate": "1770013132916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113703416919250", + "createdBy": null, + "createdTime": "2026-02-02 14:19:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:28", + "echoMap": {}, + "alarmNo": "1850293838", + "alarmDate": "1770013149906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113703416919275", + "createdBy": null, + "createdTime": "2026-02-02 14:19:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:16", + "echoMap": {}, + "alarmNo": "1850293839", + "alarmDate": "1770013154808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113707711886353", + "createdBy": null, + "createdTime": "2026-02-02 14:19:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:26", + "echoMap": {}, + "alarmNo": "1850293840", + "alarmDate": "1770013164881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113707711886382", + "createdBy": null, + "createdTime": "2026-02-02 14:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:36", + "echoMap": {}, + "alarmNo": "1850293841", + "alarmDate": "1770013170067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853652", + "createdBy": null, + "createdTime": "2026-02-02 14:19:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:43", + "echoMap": {}, + "alarmNo": "1850293842", + "alarmDate": "1770013183230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853665", + "createdBy": null, + "createdTime": "2026-02-02 14:19:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:28", + "echoMap": {}, + "alarmNo": "1850293843", + "alarmDate": "1770013186081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853821", + "createdBy": null, + "createdTime": "2026-02-02 14:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:18", + "echoMap": {}, + "alarmNo": "1850293844", + "alarmDate": "1770013733203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853891", + "createdBy": null, + "createdTime": "2026-02-02 14:29:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:14", + "echoMap": {}, + "alarmNo": "1850293845", + "alarmDate": "1770013747503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060033", + "deviceName": "[408](10)航中3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113720596788305", + "createdBy": null, + "createdTime": "2026-02-02 14:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "alarmNo": "1850293846", + "alarmDate": "1770013793414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113720596788493", + "createdBy": null, + "createdTime": "2026-02-02 14:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:14", + "echoMap": {}, + "alarmNo": "1850293848", + "alarmDate": "1770014352607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113724891755539", + "createdBy": null, + "createdTime": "2026-02-02 14:39:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:27", + "echoMap": {}, + "alarmNo": "1850293849", + "alarmDate": "1770014366543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113724891755544", + "createdBy": null, + "createdTime": "2026-02-02 14:39:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:27", + "echoMap": {}, + "alarmNo": "1850293850", + "alarmDate": "1770014367088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113488668554312", + "createdBy": null, + "createdTime": "2026-02-02 09:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:41", + "echoMap": {}, + "alarmNo": "1850293717", + "alarmDate": "1769996142167", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1029030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1029" + }, + { + "id": "723113720596788334", + "createdBy": null, + "createdTime": "2026-02-02 14:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:41", + "echoMap": {}, + "alarmNo": "1850293847", + "alarmDate": "1770013842082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1029030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1029" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113724891755544", + "createdBy": null, + "createdTime": "2026-02-02 14:39:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:27", + "echoMap": {}, + "alarmNo": "1850293850", + "alarmDate": "1770014367088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113724891755539", + "createdBy": null, + "createdTime": "2026-02-02 14:39:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:27", + "echoMap": {}, + "alarmNo": "1850293849", + "alarmDate": "1770014366543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113720596788493", + "createdBy": null, + "createdTime": "2026-02-02 14:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:14", + "echoMap": {}, + "alarmNo": "1850293848", + "alarmDate": "1770014352607", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113720596788334", + "createdBy": null, + "createdTime": "2026-02-02 14:30:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:41", + "echoMap": {}, + "alarmNo": "1850293847", + "alarmDate": "1770013842082", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1029030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1029" + }, + { + "id": "723113720596788305", + "createdBy": null, + "createdTime": "2026-02-02 14:29:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "alarmNo": "1850293846", + "alarmDate": "1770013793414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853891", + "createdBy": null, + "createdTime": "2026-02-02 14:29:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:14", + "echoMap": {}, + "alarmNo": "1850293845", + "alarmDate": "1770013747503", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060033", + "deviceName": "[408](10)航中3#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853821", + "createdBy": null, + "createdTime": "2026-02-02 14:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:18", + "echoMap": {}, + "alarmNo": "1850293844", + "alarmDate": "1770013733203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853665", + "createdBy": null, + "createdTime": "2026-02-02 14:19:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:29:28", + "echoMap": {}, + "alarmNo": "1850293843", + "alarmDate": "1770013186081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113712006853652", + "createdBy": null, + "createdTime": "2026-02-02 14:19:43", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:43", + "echoMap": {}, + "alarmNo": "1850293842", + "alarmDate": "1770013183230", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113707711886382", + "createdBy": null, + "createdTime": "2026-02-02 14:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:36", + "echoMap": {}, + "alarmNo": "1850293841", + "alarmDate": "1770013170067", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113707711886353", + "createdBy": null, + "createdTime": "2026-02-02 14:19:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:26", + "echoMap": {}, + "alarmNo": "1850293840", + "alarmDate": "1770013164881", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113703416919275", + "createdBy": null, + "createdTime": "2026-02-02 14:19:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:16", + "echoMap": {}, + "alarmNo": "1850293839", + "alarmDate": "1770013154808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113703416919250", + "createdBy": null, + "createdTime": "2026-02-02 14:19:10", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:28", + "echoMap": {}, + "alarmNo": "1850293838", + "alarmDate": "1770013149906", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113703416919181", + "createdBy": null, + "createdTime": "2026-02-02 14:18:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:18:58", + "echoMap": {}, + "alarmNo": "1850293837", + "alarmDate": "1770013132916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984714", + "createdBy": null, + "createdTime": "2026-02-02 14:09:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:50", + "echoMap": {}, + "alarmNo": "1850293836", + "alarmDate": "1770012572111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984689", + "createdBy": null, + "createdTime": "2026-02-02 14:09:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:28", + "echoMap": {}, + "alarmNo": "1850293835", + "alarmDate": "1770012567734", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060085", + "deviceName": "[311](10)航中2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984669", + "createdBy": null, + "createdTime": "2026-02-02 14:09:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:25", + "echoMap": {}, + "alarmNo": "1850293834", + "alarmDate": "1770012563757", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984653", + "createdBy": null, + "createdTime": "2026-02-02 14:09:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:22", + "echoMap": {}, + "alarmNo": "1850293833", + "alarmDate": "1770012560774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113694826984512", + "createdBy": null, + "createdTime": "2026-02-02 14:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:16", + "echoMap": {}, + "alarmNo": "1850293832", + "alarmDate": "1770012537760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113686237050141", + "createdBy": null, + "createdTime": "2026-02-02 13:59:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:29", + "echoMap": {}, + "alarmNo": "1850293831", + "alarmDate": "1770011969236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113686237050086", + "createdBy": null, + "createdTime": "2026-02-02 13:59:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:13", + "echoMap": {}, + "alarmNo": "1850293830", + "alarmDate": "1770011952469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113686237049986", + "createdBy": null, + "createdTime": "2026-02-02 13:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:11", + "echoMap": {}, + "alarmNo": "1850293829", + "alarmDate": "1770011935151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113681942082636", + "createdBy": null, + "createdTime": "2026-02-02 13:49:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:46", + "echoMap": {}, + "alarmNo": "1850293828", + "alarmDate": "1770011385129", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113681942082620", + "createdBy": null, + "createdTime": "2026-02-02 13:49:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "alarmNo": "1850293827", + "alarmDate": "1770011382048", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113681942082597", + "createdBy": null, + "createdTime": "2026-02-02 13:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:43", + "echoMap": {}, + "alarmNo": "1850293826", + "alarmDate": "1770011376479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115536", + "createdBy": null, + "createdTime": "2026-02-02 13:49:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:19", + "echoMap": {}, + "alarmNo": "1850293825", + "alarmDate": "1770011357960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115480", + "createdBy": null, + "createdTime": "2026-02-02 13:49:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:28", + "echoMap": {}, + "alarmNo": "1850293824", + "alarmDate": "1770011349955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115404", + "createdBy": null, + "createdTime": "2026-02-02 13:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:12", + "echoMap": {}, + "alarmNo": "1850293823", + "alarmDate": "1770011333494", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113677647115402", + "createdBy": null, + "createdTime": "2026-02-02 13:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:59:10", + "echoMap": {}, + "alarmNo": "1850293822", + "alarmDate": "1770011333294", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352148049", + "createdBy": null, + "createdTime": "2026-02-02 13:39:42", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:43", + "echoMap": {}, + "alarmNo": "1850293821", + "alarmDate": "1770010782103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352148020", + "createdBy": null, + "createdTime": "2026-02-02 13:39:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:35", + "echoMap": {}, + "alarmNo": "1850293820", + "alarmDate": "1770010773821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352147992", + "createdBy": null, + "createdTime": "2026-02-02 13:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:34", + "echoMap": {}, + "alarmNo": "1850293819", + "alarmDate": "1770010768215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352147979", + "createdBy": null, + "createdTime": "2026-02-02 13:39:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:27", + "echoMap": {}, + "alarmNo": "1850293818", + "alarmDate": "1770010765937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113673352147974", + "createdBy": null, + "createdTime": "2026-02-02 13:39:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:31", + "echoMap": {}, + "alarmNo": "1850293817", + "alarmDate": "1770010765366", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180933", + "createdBy": null, + "createdTime": "2026-02-02 13:39:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:18", + "echoMap": {}, + "alarmNo": "1850293816", + "alarmDate": "1770010752279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180922", + "createdBy": null, + "createdTime": "2026-02-02 13:39:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:16", + "echoMap": {}, + "alarmNo": "1850293815", + "alarmDate": "1770010750099", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180863", + "createdBy": null, + "createdTime": "2026-02-02 13:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:39:00", + "echoMap": {}, + "alarmNo": "1850293814", + "alarmDate": "1770010733271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113669057180861", + "createdBy": null, + "createdTime": "2026-02-02 13:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:38:58", + "echoMap": {}, + "alarmNo": "1850293813", + "alarmDate": "1770010733122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213466", + "createdBy": null, + "createdTime": "2026-02-02 13:29:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:28", + "echoMap": {}, + "alarmNo": "1850293812", + "alarmDate": "1770010155937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213456", + "createdBy": null, + "createdTime": "2026-02-02 13:29:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:14", + "echoMap": {}, + "alarmNo": "1850293811", + "alarmDate": "1770010153377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213441", + "createdBy": null, + "createdTime": "2026-02-02 13:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:11", + "echoMap": {}, + "alarmNo": "1850293810", + "alarmDate": "1770010149501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213407", + "createdBy": null, + "createdTime": "2026-02-02 13:29:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:12", + "echoMap": {}, + "alarmNo": "1850293809", + "alarmDate": "1770010140059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113664762213398", + "createdBy": null, + "createdTime": "2026-02-02 13:28:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:29:04", + "echoMap": {}, + "alarmNo": "1850293808", + "alarmDate": "1770010137942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113660467246178", + "createdBy": null, + "createdTime": "2026-02-02 13:19:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:22", + "echoMap": {}, + "alarmNo": "1850293807", + "alarmDate": "1770009561039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113660467246155", + "createdBy": null, + "createdTime": "2026-02-02 13:19:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:19", + "echoMap": {}, + "alarmNo": "1850293806", + "alarmDate": "1770009554598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113660467246152", + "createdBy": null, + "createdTime": "2026-02-02 13:19:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:15", + "echoMap": {}, + "alarmNo": "1850293805", + "alarmDate": "1770009554414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113656172278791", + "createdBy": null, + "createdTime": "2026-02-02 13:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:48:59", + "echoMap": {}, + "alarmNo": "1850293804", + "alarmDate": "1770008992302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113651877311757", + "createdBy": null, + "createdTime": "2026-02-02 13:09:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:36", + "echoMap": {}, + "alarmNo": "1850293803", + "alarmDate": "1770008975270", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113647582344193", + "createdBy": null, + "createdTime": "2026-02-02 12:59:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:59:33", + "echoMap": {}, + "alarmNo": "1850293802", + "alarmDate": "1770008371703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113643287377109", + "createdBy": null, + "createdTime": "2026-02-02 12:59:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:59:01", + "echoMap": {}, + "alarmNo": "1850293801", + "alarmDate": "1770008339620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409712", + "createdBy": null, + "createdTime": "2026-02-02 12:49:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:33", + "echoMap": {}, + "alarmNo": "1850293800", + "alarmDate": "1770007771687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409710", + "createdBy": null, + "createdTime": "2026-02-02 12:49:32", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:03", + "echoMap": {}, + "alarmNo": "1850293799", + "alarmDate": "1770007771520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409696", + "createdBy": null, + "createdTime": "2026-02-02 12:49:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:30", + "echoMap": {}, + "alarmNo": "1850293798", + "alarmDate": "1770007769128", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113638992409642", + "createdBy": null, + "createdTime": "2026-02-02 12:49:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:09:40", + "echoMap": {}, + "alarmNo": "1850293797", + "alarmDate": "1770007756893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442596", + "createdBy": null, + "createdTime": "2026-02-02 12:48:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:05", + "echoMap": {}, + "alarmNo": "1850293796", + "alarmDate": "1770007735797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442585", + "createdBy": null, + "createdTime": "2026-02-02 12:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:32", + "echoMap": {}, + "alarmNo": "1850293795", + "alarmDate": "1770007735296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442453", + "createdBy": null, + "createdTime": "2026-02-02 12:39:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:39:42", + "echoMap": {}, + "alarmNo": "1850293794", + "alarmDate": "1770007181398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113634697442364", + "createdBy": null, + "createdTime": "2026-02-02 12:38:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:39:00", + "echoMap": {}, + "alarmNo": "1850293793", + "alarmDate": "1770007139008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113630402475051", + "createdBy": null, + "createdTime": "2026-02-02 12:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:53", + "echoMap": {}, + "alarmNo": "1850293792", + "alarmDate": "1770006591834", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507971", + "createdBy": null, + "createdTime": "2026-02-02 12:29:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:51", + "echoMap": {}, + "alarmNo": "1850293791", + "alarmDate": "1770006572693", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507871", + "createdBy": null, + "createdTime": "2026-02-02 12:29:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:09", + "echoMap": {}, + "alarmNo": "1850293790", + "alarmDate": "1770006542656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507856", + "createdBy": null, + "createdTime": "2026-02-02 12:28:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:00", + "echoMap": {}, + "alarmNo": "1850293789", + "alarmDate": "1770006539053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113626107507721", + "createdBy": null, + "createdTime": "2026-02-02 12:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:53", + "echoMap": {}, + "alarmNo": "1850293788", + "alarmDate": "1770005991915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113621812540478", + "createdBy": null, + "createdTime": "2026-02-02 12:19:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:46", + "echoMap": {}, + "alarmNo": "1850293787", + "alarmDate": "1770005973655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113621812540465", + "createdBy": null, + "createdTime": "2026-02-02 12:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:31", + "echoMap": {}, + "alarmNo": "1850293786", + "alarmDate": "1770005970222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113617517573388", + "createdBy": null, + "createdTime": "2026-02-02 12:19:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:08", + "echoMap": {}, + "alarmNo": "1850293785", + "alarmDate": "1770005946723", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113617517573341", + "createdBy": null, + "createdTime": "2026-02-02 12:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:19:31", + "echoMap": {}, + "alarmNo": "1850293784", + "alarmDate": "1770005935222", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113617517573335", + "createdBy": null, + "createdTime": "2026-02-02 12:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:24", + "echoMap": {}, + "alarmNo": "1850293783", + "alarmDate": "1770005933889", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113613222605941", + "createdBy": null, + "createdTime": "2026-02-02 12:09:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:19", + "echoMap": {}, + "alarmNo": "1850293782", + "alarmDate": "1770005358290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113613222605898", + "createdBy": null, + "createdTime": "2026-02-02 12:09:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:06", + "echoMap": {}, + "alarmNo": "1850293781", + "alarmDate": "1770005345125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113608927638785", + "createdBy": null, + "createdTime": "2026-02-02 11:59:51", + "updatedBy": null, + "updatedTime": "2026-02-02 11:59:52", + "echoMap": {}, + "alarmNo": "1850293780", + "alarmDate": "1770004790961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113608927638697", + "createdBy": null, + "createdTime": "2026-02-02 11:59:21", + "updatedBy": null, + "updatedTime": "2026-02-02 11:59:22", + "echoMap": {}, + "alarmNo": "1850293779", + "alarmDate": "1770004761320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671345", + "createdBy": null, + "createdTime": "2026-02-02 11:49:48", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:24", + "echoMap": {}, + "alarmNo": "1850293778", + "alarmDate": "1770004188409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671307", + "createdBy": null, + "createdTime": "2026-02-02 11:49:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:32", + "echoMap": {}, + "alarmNo": "1850293777", + "alarmDate": "1770004171323", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671293", + "createdBy": null, + "createdTime": "2026-02-02 11:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:28", + "echoMap": {}, + "alarmNo": "1850293776", + "alarmDate": "1770004166533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671277", + "createdBy": null, + "createdTime": "2026-02-02 11:49:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:49:20", + "echoMap": {}, + "alarmNo": "1850293775", + "alarmDate": "1770004159632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671268", + "createdBy": null, + "createdTime": "2026-02-02 11:49:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:16", + "echoMap": {}, + "alarmNo": "1850293774", + "alarmDate": "1770004154890", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113604632671244", + "createdBy": null, + "createdTime": "2026-02-02 11:49:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:10", + "echoMap": {}, + "alarmNo": "1850293773", + "alarmDate": "1770004143989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113600337704037", + "createdBy": null, + "createdTime": "2026-02-02 11:39:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:09:05", + "echoMap": {}, + "alarmNo": "1850293772", + "alarmDate": "1770003576487", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113600337704031", + "createdBy": null, + "createdTime": "2026-02-02 11:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:39:36", + "echoMap": {}, + "alarmNo": "1850293771", + "alarmDate": "1770003575493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113600337703944", + "createdBy": null, + "createdTime": "2026-02-02 11:38:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:39:10", + "echoMap": {}, + "alarmNo": "1850293770", + "alarmDate": "1770003537760", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113591747769556", + "createdBy": null, + "createdTime": "2026-02-02 11:29:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:40", + "echoMap": {}, + "alarmNo": "1850293769", + "alarmDate": "1770002978603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113591747769495", + "createdBy": null, + "createdTime": "2026-02-02 11:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 11:49:08", + "echoMap": {}, + "alarmNo": "1850293768", + "alarmDate": "1770002964030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113591747769418", + "createdBy": null, + "createdTime": "2026-02-02 11:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:19:52", + "echoMap": {}, + "alarmNo": "1850293767", + "alarmDate": "1770002935324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113587452802069", + "createdBy": null, + "createdTime": "2026-02-02 11:19:31", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:32", + "echoMap": {}, + "alarmNo": "1850293766", + "alarmDate": "1770002371180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113587452802060", + "createdBy": null, + "createdTime": "2026-02-02 11:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:31", + "echoMap": {}, + "alarmNo": "1850293765", + "alarmDate": "1770002369836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113587452802057", + "createdBy": null, + "createdTime": "2026-02-02 11:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:30", + "echoMap": {}, + "alarmNo": "1850293764", + "alarmDate": "1770002369550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157835026", + "createdBy": null, + "createdTime": "2026-02-02 11:19:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:40", + "echoMap": {}, + "alarmNo": "1850293763", + "alarmDate": "1770002356198", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157835011", + "createdBy": null, + "createdTime": "2026-02-02 11:19:10", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:16", + "echoMap": {}, + "alarmNo": "1850293762", + "alarmDate": "1770002349739", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834992", + "createdBy": null, + "createdTime": "2026-02-02 11:19:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:01", + "echoMap": {}, + "alarmNo": "1850293761", + "alarmDate": "1770002339829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834864", + "createdBy": null, + "createdTime": "2026-02-02 11:09:53", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:54", + "echoMap": {}, + "alarmNo": "1850293760", + "alarmDate": "1770001792643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834840", + "createdBy": null, + "createdTime": "2026-02-02 11:09:45", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:40", + "echoMap": {}, + "alarmNo": "1850293759", + "alarmDate": "1770001785290", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834804", + "createdBy": null, + "createdTime": "2026-02-02 11:09:33", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:45", + "echoMap": {}, + "alarmNo": "1850293758", + "alarmDate": "1770001773462", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113583157834760", + "createdBy": null, + "createdTime": "2026-02-02 11:09:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:29", + "echoMap": {}, + "alarmNo": "1850293757", + "alarmDate": "1770001763473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060020", + "deviceName": "[324](10)航中4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113578862867512", + "createdBy": null, + "createdTime": "2026-02-02 11:09:17", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:24", + "echoMap": {}, + "alarmNo": "1850293756", + "alarmDate": "1770001757120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113578862867505", + "createdBy": null, + "createdTime": "2026-02-02 11:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:21", + "echoMap": {}, + "alarmNo": "1850293755", + "alarmDate": "1770001755511", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113578862867484", + "createdBy": null, + "createdTime": "2026-02-02 11:09:07", + "updatedBy": null, + "updatedTime": "2026-02-02 11:09:08", + "echoMap": {}, + "alarmNo": "1850293754", + "alarmDate": "1770001746915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113574567900318", + "createdBy": null, + "createdTime": "2026-02-02 10:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 10:59:52", + "echoMap": {}, + "alarmNo": "1850293753", + "alarmDate": "1770001186089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113574567900259", + "createdBy": null, + "createdTime": "2026-02-02 10:59:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:59:34", + "echoMap": {}, + "alarmNo": "1850293752", + "alarmDate": "1770001168111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113574567900180", + "createdBy": null, + "createdTime": "2026-02-02 10:58:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:57", + "echoMap": {}, + "alarmNo": "1850293751", + "alarmDate": "1770001135525", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965837", + "createdBy": null, + "createdTime": "2026-02-02 10:49:45", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:46", + "echoMap": {}, + "alarmNo": "1850293750", + "alarmDate": "1770000585366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965829", + "createdBy": null, + "createdTime": "2026-02-02 10:49:44", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:50", + "echoMap": {}, + "alarmNo": "1850293749", + "alarmDate": "1770000584469", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965760", + "createdBy": null, + "createdTime": "2026-02-02 10:49:32", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:33", + "echoMap": {}, + "alarmNo": "1850293748", + "alarmDate": "1770000572030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965746", + "createdBy": null, + "createdTime": "2026-02-02 10:49:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:31", + "echoMap": {}, + "alarmNo": "1850293747", + "alarmDate": "1770000569595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113565977965696", + "createdBy": null, + "createdTime": "2026-02-02 10:49:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:49:19", + "echoMap": {}, + "alarmNo": "1850293746", + "alarmDate": "1770000558085", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031185", + "createdBy": null, + "createdTime": "2026-02-02 10:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:47", + "echoMap": {}, + "alarmNo": "1850293745", + "alarmDate": "1769999975295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031181", + "createdBy": null, + "createdTime": "2026-02-02 10:39:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:59:16", + "echoMap": {}, + "alarmNo": "1850293744", + "alarmDate": "1769999974444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031152", + "createdBy": null, + "createdTime": "2026-02-02 10:39:26", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:27", + "echoMap": {}, + "alarmNo": "1850293743", + "alarmDate": "1769999966303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031118", + "createdBy": null, + "createdTime": "2026-02-02 10:39:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:23", + "echoMap": {}, + "alarmNo": "1850293742", + "alarmDate": "1769999957407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113557388031033", + "createdBy": null, + "createdTime": "2026-02-02 10:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:59", + "echoMap": {}, + "alarmNo": "1850293741", + "alarmDate": "1769999935201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096551", + "createdBy": null, + "createdTime": "2026-02-02 10:29:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:39:04", + "echoMap": {}, + "alarmNo": "1850293740", + "alarmDate": "1769999375108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096542", + "createdBy": null, + "createdTime": "2026-02-02 10:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:40", + "echoMap": {}, + "alarmNo": "1850293739", + "alarmDate": "1769999373550", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060019", + "deviceName": "[323](10)航中4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096462", + "createdBy": null, + "createdTime": "2026-02-02 10:29:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:22", + "echoMap": {}, + "alarmNo": "1850293738", + "alarmDate": "1769999355825", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113548798096424", + "createdBy": null, + "createdTime": "2026-02-02 10:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:10", + "echoMap": {}, + "alarmNo": "1850293737", + "alarmDate": "1769999348819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161938", + "createdBy": null, + "createdTime": "2026-02-02 10:19:54", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:24", + "echoMap": {}, + "alarmNo": "1850293736", + "alarmDate": "1769998793605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161915", + "createdBy": null, + "createdTime": "2026-02-02 10:19:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:29:23", + "echoMap": {}, + "alarmNo": "1850293735", + "alarmDate": "1769998787769", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161866", + "createdBy": null, + "createdTime": "2026-02-02 10:19:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:38", + "echoMap": {}, + "alarmNo": "1850293734", + "alarmDate": "1769998777287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161857", + "createdBy": null, + "createdTime": "2026-02-02 10:19:36", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:37", + "echoMap": {}, + "alarmNo": "1850293733", + "alarmDate": "1769998775726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113540208161824", + "createdBy": null, + "createdTime": "2026-02-02 10:19:28", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:04", + "echoMap": {}, + "alarmNo": "1850293732", + "alarmDate": "1769998768118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113535913194539", + "createdBy": null, + "createdTime": "2026-02-02 10:19:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:24", + "echoMap": {}, + "alarmNo": "1850293731", + "alarmDate": "1769998751575", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113531618227370", + "createdBy": null, + "createdTime": "2026-02-02 10:18:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:57", + "echoMap": {}, + "alarmNo": "1850293730", + "alarmDate": "1769998735609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113531618227364", + "createdBy": null, + "createdTime": "2026-02-02 10:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:10", + "echoMap": {}, + "alarmNo": "1850293729", + "alarmDate": "1769998734975", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113531618227233", + "createdBy": null, + "createdTime": "2026-02-02 10:09:49", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:50", + "echoMap": {}, + "alarmNo": "1850293728", + "alarmDate": "1769998188600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358127", + "createdBy": null, + "createdTime": "2026-02-02 09:59:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:19", + "echoMap": {}, + "alarmNo": "1850293727", + "alarmDate": "1769997558016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358067", + "createdBy": null, + "createdTime": "2026-02-02 09:59:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:11", + "echoMap": {}, + "alarmNo": "1850293726", + "alarmDate": "1769997545068", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358060", + "createdBy": null, + "createdTime": "2026-02-02 09:59:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:59:06", + "echoMap": {}, + "alarmNo": "1850293725", + "alarmDate": "1769997544726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113514438358019", + "createdBy": null, + "createdTime": "2026-02-02 09:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:47", + "echoMap": {}, + "alarmNo": "1850293724", + "alarmDate": "1769997534916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423552", + "createdBy": null, + "createdTime": "2026-02-02 09:49:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:38", + "echoMap": {}, + "alarmNo": "1850293723", + "alarmDate": "1769996976907", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423536", + "createdBy": null, + "createdTime": "2026-02-02 09:49:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:36", + "echoMap": {}, + "alarmNo": "1850293722", + "alarmDate": "1769996975362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423501", + "createdBy": null, + "createdTime": "2026-02-02 09:49:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:49", + "echoMap": {}, + "alarmNo": "1850293721", + "alarmDate": "1769996969725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113505848423432", + "createdBy": null, + "createdTime": "2026-02-02 09:49:17", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:18", + "echoMap": {}, + "alarmNo": "1850293720", + "alarmDate": "1769996956900", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113497258488866", + "createdBy": null, + "createdTime": "2026-02-02 09:39:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:09:34", + "echoMap": {}, + "alarmNo": "1850293719", + "alarmDate": "1769996379245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113488668554367", + "createdBy": null, + "createdTime": "2026-02-02 09:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:39:28", + "echoMap": {}, + "alarmNo": "1850293718", + "alarmDate": "1769996335208", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113488668554312", + "createdBy": null, + "createdTime": "2026-02-02 09:35:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:41", + "echoMap": {}, + "alarmNo": "1850293717", + "alarmDate": "1769996142167", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1029030003", + "deviceName": "安防箱3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1029" + }, + { + "id": "723113484373586959", + "createdBy": null, + "createdTime": "2026-02-02 09:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:46", + "echoMap": {}, + "alarmNo": "1850293716", + "alarmDate": "1769995774018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113480078619905", + "createdBy": null, + "createdTime": "2026-02-02 09:29:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:26", + "echoMap": {}, + "alarmNo": "1850293715", + "alarmDate": "1769995765247", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113480078619898", + "createdBy": null, + "createdTime": "2026-02-02 09:29:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:26", + "echoMap": {}, + "alarmNo": "1850293714", + "alarmDate": "1769995764939", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113475783652372", + "createdBy": null, + "createdTime": "2026-02-02 09:19:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:22", + "echoMap": {}, + "alarmNo": "1850293713", + "alarmDate": "1769995185849", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113471488685260", + "createdBy": null, + "createdTime": "2026-02-02 09:19:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:39", + "echoMap": {}, + "alarmNo": "1850293712", + "alarmDate": "1769995177930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113471488685254", + "createdBy": null, + "createdTime": "2026-02-02 09:19:37", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:38", + "echoMap": {}, + "alarmNo": "1850293711", + "alarmDate": "1769995177196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113471488685179", + "createdBy": null, + "createdTime": "2026-02-02 09:19:22", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:34", + "echoMap": {}, + "alarmNo": "1850293710", + "alarmDate": "1769995161845", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113458603783251", + "createdBy": null, + "createdTime": "2026-02-02 09:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:19:10", + "echoMap": {}, + "alarmNo": "1850293709", + "alarmDate": "1769994555800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113458603783227", + "createdBy": null, + "createdTime": "2026-02-02 09:09:12", + "updatedBy": null, + "updatedTime": "2026-02-02 09:09:17", + "echoMap": {}, + "alarmNo": "1850293708", + "alarmDate": "1769994551521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060047", + "deviceName": "[333](10)航中5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113454308816084", + "createdBy": null, + "createdTime": "2026-02-02 09:08:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:09:04", + "echoMap": {}, + "alarmNo": "1850293707", + "alarmDate": "1769994535672", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113454308815910", + "createdBy": null, + "createdTime": "2026-02-02 08:59:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:44", + "echoMap": {}, + "alarmNo": "1850293706", + "alarmDate": "1769993983183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113450013848665", + "createdBy": null, + "createdTime": "2026-02-02 08:59:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:29:00", + "echoMap": {}, + "alarmNo": "1850293705", + "alarmDate": "1769993975754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113450013848635", + "createdBy": null, + "createdTime": "2026-02-02 08:59:30", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:31", + "echoMap": {}, + "alarmNo": "1850293704", + "alarmDate": "1769993970366", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113445718881399", + "createdBy": null, + "createdTime": "2026-02-02 08:58:59", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:00", + "echoMap": {}, + "alarmNo": "1850293703", + "alarmDate": "1769993938521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113445718881378", + "createdBy": null, + "createdTime": "2026-02-02 08:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:44", + "echoMap": {}, + "alarmNo": "1850293702", + "alarmDate": "1769993935428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113445718881369", + "createdBy": null, + "createdTime": "2026-02-02 08:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:59:00", + "echoMap": {}, + "alarmNo": "1850293701", + "alarmDate": "1769993933568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113441423914009", + "createdBy": null, + "createdTime": "2026-02-02 08:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:51", + "echoMap": {}, + "alarmNo": "1850293700", + "alarmDate": "1769993390308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113437128946827", + "createdBy": null, + "createdTime": "2026-02-02 08:49:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:32", + "echoMap": {}, + "alarmNo": "1850293699", + "alarmDate": "1769993370971", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113437128946767", + "createdBy": null, + "createdTime": "2026-02-02 08:49:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:51", + "echoMap": {}, + "alarmNo": "1850293698", + "alarmDate": "1769993361248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113428539012154", + "createdBy": null, + "createdTime": "2026-02-02 08:39:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:49:09", + "echoMap": {}, + "alarmNo": "1850293697", + "alarmDate": "1769992791133", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077991", + "createdBy": null, + "createdTime": "2026-02-02 08:39:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:39:10", + "echoMap": {}, + "alarmNo": "1850293696", + "alarmDate": "1769992748622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077724", + "createdBy": null, + "createdTime": "2026-02-02 08:29:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:48", + "echoMap": {}, + "alarmNo": "1850293695", + "alarmDate": "1769992182041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077717", + "createdBy": null, + "createdTime": "2026-02-02 08:29:42", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:43", + "echoMap": {}, + "alarmNo": "1850293694", + "alarmDate": "1769992181598", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077671", + "createdBy": null, + "createdTime": "2026-02-02 08:29:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:39:27", + "echoMap": {}, + "alarmNo": "1850293693", + "alarmDate": "1769992172860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077650", + "createdBy": null, + "createdTime": "2026-02-02 08:29:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:29", + "echoMap": {}, + "alarmNo": "1850293692", + "alarmDate": "1769992168108", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077595", + "createdBy": null, + "createdTime": "2026-02-02 08:29:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:25", + "echoMap": {}, + "alarmNo": "1850293691", + "alarmDate": "1769992157938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113419949077561", + "createdBy": null, + "createdTime": "2026-02-02 08:29:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:13", + "echoMap": {}, + "alarmNo": "1850293690", + "alarmDate": "1769992151816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113415654110294", + "createdBy": null, + "createdTime": "2026-02-02 08:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:28:54", + "echoMap": {}, + "alarmNo": "1850293689", + "alarmDate": "1769992132898", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060017", + "deviceName": "[330](10)航中4#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113411359143205", + "createdBy": null, + "createdTime": "2026-02-02 08:19:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:29:21", + "echoMap": {}, + "alarmNo": "1850293688", + "alarmDate": "1769991566557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113411359143200", + "createdBy": null, + "createdTime": "2026-02-02 08:19:26", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:27", + "echoMap": {}, + "alarmNo": "1850293687", + "alarmDate": "1769991566065", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113411359143062", + "createdBy": null, + "createdTime": "2026-02-02 08:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:02", + "echoMap": {}, + "alarmNo": "1850293686", + "alarmDate": "1769991540690", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113407064175701", + "createdBy": null, + "createdTime": "2026-02-02 08:09:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:29:12", + "echoMap": {}, + "alarmNo": "1850293685", + "alarmDate": "1769990989361", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113407064175655", + "createdBy": null, + "createdTime": "2026-02-02 08:09:38", + "updatedBy": null, + "updatedTime": "2026-02-02 08:19:15", + "echoMap": {}, + "alarmNo": "1850293684", + "alarmDate": "1769990978364", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208778", + "createdBy": null, + "createdTime": "2026-02-02 08:09:22", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:23", + "echoMap": {}, + "alarmNo": "1850293683", + "alarmDate": "1769990961639", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208692", + "createdBy": null, + "createdTime": "2026-02-02 08:09:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:05", + "echoMap": {}, + "alarmNo": "1850293682", + "alarmDate": "1769990944022", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208642", + "createdBy": null, + "createdTime": "2026-02-02 08:08:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:36", + "echoMap": {}, + "alarmNo": "1850293681", + "alarmDate": "1769990933302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208400", + "createdBy": null, + "createdTime": "2026-02-02 07:59:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:29", + "echoMap": {}, + "alarmNo": "1850293680", + "alarmDate": "1769990367934", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113402769208359", + "createdBy": null, + "createdTime": "2026-02-02 07:59:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:19", + "echoMap": {}, + "alarmNo": "1850293679", + "alarmDate": "1769990358305", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179274081", + "createdBy": null, + "createdTime": "2026-02-02 07:49:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:59:35", + "echoMap": {}, + "alarmNo": "1850293678", + "alarmDate": "1769989778726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179274032", + "createdBy": null, + "createdTime": "2026-02-02 07:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 08:09:14", + "echoMap": {}, + "alarmNo": "1850293677", + "alarmDate": "1769989766980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179274006", + "createdBy": null, + "createdTime": "2026-02-02 07:49:22", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:23", + "echoMap": {}, + "alarmNo": "1850293676", + "alarmDate": "1769989762175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179273875", + "createdBy": null, + "createdTime": "2026-02-02 07:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:15", + "echoMap": {}, + "alarmNo": "1850293675", + "alarmDate": "1769989734989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113394179273868", + "createdBy": null, + "createdTime": "2026-02-02 07:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:49:26", + "echoMap": {}, + "alarmNo": "1850293674", + "alarmDate": "1769989733604", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113389884306525", + "createdBy": null, + "createdTime": "2026-02-02 07:39:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:42", + "echoMap": {}, + "alarmNo": "1850293673", + "alarmDate": "1769989180913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113389884306500", + "createdBy": null, + "createdTime": "2026-02-02 07:39:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:38", + "echoMap": {}, + "alarmNo": "1850293672", + "alarmDate": "1769989176742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060021", + "deviceName": "[201](10)航中厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113389884306455", + "createdBy": null, + "createdTime": "2026-02-02 07:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:41", + "echoMap": {}, + "alarmNo": "1850293671", + "alarmDate": "1769989168440", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339550", + "createdBy": null, + "createdTime": "2026-02-02 07:39:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:10", + "echoMap": {}, + "alarmNo": "1850293670", + "alarmDate": "1769989149223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339294", + "createdBy": null, + "createdTime": "2026-02-02 07:29:37", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:38", + "echoMap": {}, + "alarmNo": "1850293669", + "alarmDate": "1769988577190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339276", + "createdBy": null, + "createdTime": "2026-02-02 07:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:16", + "echoMap": {}, + "alarmNo": "1850293668", + "alarmDate": "1769988574063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113385589339164", + "createdBy": null, + "createdTime": "2026-02-02 07:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 07:29:22", + "echoMap": {}, + "alarmNo": "1850293667", + "alarmDate": "1769988550091", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113381294371931", + "createdBy": null, + "createdTime": "2026-02-02 07:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:19:35", + "echoMap": {}, + "alarmNo": "1850293666", + "alarmDate": "1769988535245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113381294371924", + "createdBy": null, + "createdTime": "2026-02-02 07:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:58", + "echoMap": {}, + "alarmNo": "1850293665", + "alarmDate": "1769988533005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404885", + "createdBy": null, + "createdTime": "2026-02-02 07:19:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:44", + "echoMap": {}, + "alarmNo": "1850293664", + "alarmDate": "1769987964718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404839", + "createdBy": null, + "createdTime": "2026-02-02 07:19:14", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:15", + "echoMap": {}, + "alarmNo": "1850293663", + "alarmDate": "1769987954311", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404806", + "createdBy": null, + "createdTime": "2026-02-02 07:19:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:09", + "echoMap": {}, + "alarmNo": "1850293662", + "alarmDate": "1769987948251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404762", + "createdBy": null, + "createdTime": "2026-02-02 07:19:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:42", + "echoMap": {}, + "alarmNo": "1850293661", + "alarmDate": "1769987939877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060084", + "deviceName": "[304](10)航中1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113376999404736", + "createdBy": null, + "createdTime": "2026-02-02 07:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:13", + "echoMap": {}, + "alarmNo": "1850293660", + "alarmDate": "1769987933632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437361", + "createdBy": null, + "createdTime": "2026-02-02 07:09:29", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:42", + "echoMap": {}, + "alarmNo": "1850293659", + "alarmDate": "1769987369448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437334", + "createdBy": null, + "createdTime": "2026-02-02 07:09:21", + "updatedBy": null, + "updatedTime": "2026-02-02 09:49:19", + "echoMap": {}, + "alarmNo": "1850293658", + "alarmDate": "1769987361422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437320", + "createdBy": null, + "createdTime": "2026-02-02 07:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:17", + "echoMap": {}, + "alarmNo": "1850293657", + "alarmDate": "1769987356414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437287", + "createdBy": null, + "createdTime": "2026-02-02 07:09:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:07", + "echoMap": {}, + "alarmNo": "1850293656", + "alarmDate": "1769987345586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113372704437263", + "createdBy": null, + "createdTime": "2026-02-02 07:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:12", + "echoMap": {}, + "alarmNo": "1850293655", + "alarmDate": "1769987338458", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470314", + "createdBy": null, + "createdTime": "2026-02-02 06:59:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:09:09", + "echoMap": {}, + "alarmNo": "1850293654", + "alarmDate": "1769986792141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470233", + "createdBy": null, + "createdTime": "2026-02-02 06:59:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:22", + "echoMap": {}, + "alarmNo": "1850293653", + "alarmDate": "1769986756158", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060083", + "deviceName": "[305](10)航中1#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470196", + "createdBy": null, + "createdTime": "2026-02-02 06:59:02", + "updatedBy": null, + "updatedTime": "2026-02-02 06:59:08", + "echoMap": {}, + "alarmNo": "1850293652", + "alarmDate": "1769986742113", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060013", + "deviceName": "[327](10)航中4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470178", + "createdBy": null, + "createdTime": "2026-02-02 06:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:39:51", + "echoMap": {}, + "alarmNo": "1850293651", + "alarmDate": "1769986734902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060091", + "deviceName": "[308](10)航中2#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470053", + "createdBy": null, + "createdTime": "2026-02-02 06:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:50", + "echoMap": {}, + "alarmNo": "1850293650", + "alarmDate": "1769986189751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409470001", + "createdBy": null, + "createdTime": "2026-02-02 06:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:28", + "echoMap": {}, + "alarmNo": "1850293649", + "alarmDate": "1769986167415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113368409469973", + "createdBy": null, + "createdTime": "2026-02-02 06:49:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:20", + "echoMap": {}, + "alarmNo": "1850293648", + "alarmDate": "1769986159346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113364114502785", + "createdBy": null, + "createdTime": "2026-02-02 06:49:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:49:31", + "echoMap": {}, + "alarmNo": "1850293647", + "alarmDate": "1769986151611", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113364114502742", + "createdBy": null, + "createdTime": "2026-02-02 06:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:59", + "echoMap": {}, + "alarmNo": "1850293646", + "alarmDate": "1769986133600", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535761", + "createdBy": null, + "createdTime": "2026-02-02 06:39:32", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:45", + "echoMap": {}, + "alarmNo": "1850293645", + "alarmDate": "1769985572322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535748", + "createdBy": null, + "createdTime": "2026-02-02 06:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:29", + "echoMap": {}, + "alarmNo": "1850293644", + "alarmDate": "1769985567596", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535743", + "createdBy": null, + "createdTime": "2026-02-02 06:39:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:28", + "echoMap": {}, + "alarmNo": "1850293643", + "alarmDate": "1769985566796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535674", + "createdBy": null, + "createdTime": "2026-02-02 06:39:08", + "updatedBy": null, + "updatedTime": "2026-02-02 06:39:20", + "echoMap": {}, + "alarmNo": "1850293642", + "alarmDate": "1769985548351", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535501", + "createdBy": null, + "createdTime": "2026-02-02 06:29:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:43", + "echoMap": {}, + "alarmNo": "1850293641", + "alarmDate": "1769984983111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535464", + "createdBy": null, + "createdTime": "2026-02-02 06:29:29", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:35", + "echoMap": {}, + "alarmNo": "1850293640", + "alarmDate": "1769984969102", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113359819535415", + "createdBy": null, + "createdTime": "2026-02-02 06:29:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:24", + "echoMap": {}, + "alarmNo": "1850293639", + "alarmDate": "1769984952146", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601252", + "createdBy": null, + "createdTime": "2026-02-02 06:19:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:00", + "echoMap": {}, + "alarmNo": "1850293638", + "alarmDate": "1769984386863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601249", + "createdBy": null, + "createdTime": "2026-02-02 06:19:47", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:48", + "echoMap": {}, + "alarmNo": "1850293637", + "alarmDate": "1769984386632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601241", + "createdBy": null, + "createdTime": "2026-02-02 06:19:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:29:11", + "echoMap": {}, + "alarmNo": "1850293636", + "alarmDate": "1769984384990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601161", + "createdBy": null, + "createdTime": "2026-02-02 06:19:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:25", + "echoMap": {}, + "alarmNo": "1850293635", + "alarmDate": "1769984364446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601140", + "createdBy": null, + "createdTime": "2026-02-02 06:19:20", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:33", + "echoMap": {}, + "alarmNo": "1850293634", + "alarmDate": "1769984359819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601125", + "createdBy": null, + "createdTime": "2026-02-02 06:19:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:35", + "echoMap": {}, + "alarmNo": "1850293633", + "alarmDate": "1769984355800", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601081", + "createdBy": null, + "createdTime": "2026-02-02 06:18:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:00", + "echoMap": {}, + "alarmNo": "1850293632", + "alarmDate": "1769984339239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601059", + "createdBy": null, + "createdTime": "2026-02-02 06:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:04", + "echoMap": {}, + "alarmNo": "1850293631", + "alarmDate": "1769984333790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229601056", + "createdBy": null, + "createdTime": "2026-02-02 06:18:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:54", + "echoMap": {}, + "alarmNo": "1850293630", + "alarmDate": "1769984333003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600938", + "createdBy": null, + "createdTime": "2026-02-02 06:09:52", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:53", + "echoMap": {}, + "alarmNo": "1850293629", + "alarmDate": "1769983792066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600913", + "createdBy": null, + "createdTime": "2026-02-02 06:09:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:47", + "echoMap": {}, + "alarmNo": "1850293628", + "alarmDate": "1769983785888", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600896", + "createdBy": null, + "createdTime": "2026-02-02 06:09:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:19:02", + "echoMap": {}, + "alarmNo": "1850293627", + "alarmDate": "1769983782685", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600892", + "createdBy": null, + "createdTime": "2026-02-02 06:09:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:43", + "echoMap": {}, + "alarmNo": "1850293626", + "alarmDate": "1769983782278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600866", + "createdBy": null, + "createdTime": "2026-02-02 06:09:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:48", + "echoMap": {}, + "alarmNo": "1850293625", + "alarmDate": "1769983774541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113351229600789", + "createdBy": null, + "createdTime": "2026-02-02 06:09:11", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:24", + "echoMap": {}, + "alarmNo": "1850293624", + "alarmDate": "1769983750603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666588", + "createdBy": null, + "createdTime": "2026-02-02 05:59:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:09:23", + "echoMap": {}, + "alarmNo": "1850293623", + "alarmDate": "1769983179306", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666542", + "createdBy": null, + "createdTime": "2026-02-02 05:59:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:59:38", + "echoMap": {}, + "alarmNo": "1850293622", + "alarmDate": "1769983165343", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666504", + "createdBy": null, + "createdTime": "2026-02-02 05:59:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:59:15", + "echoMap": {}, + "alarmNo": "1850293621", + "alarmDate": "1769983153987", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666242", + "createdBy": null, + "createdTime": "2026-02-02 05:49:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:38", + "echoMap": {}, + "alarmNo": "1850293620", + "alarmDate": "1769982576553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666236", + "createdBy": null, + "createdTime": "2026-02-02 05:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:59:27", + "echoMap": {}, + "alarmNo": "1850293619", + "alarmDate": "1769982576061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666208", + "createdBy": null, + "createdTime": "2026-02-02 05:49:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:43", + "echoMap": {}, + "alarmNo": "1850293618", + "alarmDate": "1769982571066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113342639666182", + "createdBy": null, + "createdTime": "2026-02-02 05:49:23", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:24", + "echoMap": {}, + "alarmNo": "1850293617", + "alarmDate": "1769982563455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698969", + "createdBy": null, + "createdTime": "2026-02-02 05:49:13", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:14", + "echoMap": {}, + "alarmNo": "1850293616", + "alarmDate": "1769982553183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698920", + "createdBy": null, + "createdTime": "2026-02-02 05:49:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:23", + "echoMap": {}, + "alarmNo": "1850293615", + "alarmDate": "1769982543921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698913", + "createdBy": null, + "createdTime": "2026-02-02 05:49:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:04", + "echoMap": {}, + "alarmNo": "1850293614", + "alarmDate": "1769982542643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113338344698905", + "createdBy": null, + "createdTime": "2026-02-02 05:49:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:13", + "echoMap": {}, + "alarmNo": "1850293613", + "alarmDate": "1769982541008", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731948", + "createdBy": null, + "createdTime": "2026-02-02 05:39:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:54", + "echoMap": {}, + "alarmNo": "1850293612", + "alarmDate": "1769981992541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731874", + "createdBy": null, + "createdTime": "2026-02-02 05:39:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:51", + "echoMap": {}, + "alarmNo": "1850293611", + "alarmDate": "1769981971780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731865", + "createdBy": null, + "createdTime": "2026-02-02 05:39:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:42", + "echoMap": {}, + "alarmNo": "1850293610", + "alarmDate": "1769981969783", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731770", + "createdBy": null, + "createdTime": "2026-02-02 05:39:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:20", + "echoMap": {}, + "alarmNo": "1850293609", + "alarmDate": "1769981939638", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113334049731624", + "createdBy": null, + "createdTime": "2026-02-02 05:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:39:18", + "echoMap": {}, + "alarmNo": "1850293608", + "alarmDate": "1769981391620", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764423", + "createdBy": null, + "createdTime": "2026-02-02 05:29:36", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:37", + "echoMap": {}, + "alarmNo": "1850293607", + "alarmDate": "1769981376288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764412", + "createdBy": null, + "createdTime": "2026-02-02 05:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:47", + "echoMap": {}, + "alarmNo": "1850293606", + "alarmDate": "1769981373524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764324", + "createdBy": null, + "createdTime": "2026-02-02 05:29:00", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:01", + "echoMap": {}, + "alarmNo": "1850293605", + "alarmDate": "1769981339940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764304", + "createdBy": null, + "createdTime": "2026-02-02 05:28:56", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:57", + "echoMap": {}, + "alarmNo": "1850293604", + "alarmDate": "1769981335838", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764299", + "createdBy": null, + "createdTime": "2026-02-02 05:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:15", + "echoMap": {}, + "alarmNo": "1850293603", + "alarmDate": "1769981335330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113329754764293", + "createdBy": null, + "createdTime": "2026-02-02 05:28:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:29:01", + "echoMap": {}, + "alarmNo": "1850293602", + "alarmDate": "1769981333497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797347", + "createdBy": null, + "createdTime": "2026-02-02 05:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:52", + "echoMap": {}, + "alarmNo": "1850293601", + "alarmDate": "1769980790767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797339", + "createdBy": null, + "createdTime": "2026-02-02 05:19:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:50", + "echoMap": {}, + "alarmNo": "1850293600", + "alarmDate": "1769980788691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797294", + "createdBy": null, + "createdTime": "2026-02-02 05:19:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:41", + "echoMap": {}, + "alarmNo": "1850293599", + "alarmDate": "1769980774393", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797281", + "createdBy": null, + "createdTime": "2026-02-02 05:19:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:33", + "echoMap": {}, + "alarmNo": "1850293598", + "alarmDate": "1769980771507", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797250", + "createdBy": null, + "createdTime": "2026-02-02 05:19:22", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:41", + "echoMap": {}, + "alarmNo": "1850293597", + "alarmDate": "1769980762202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797236", + "createdBy": null, + "createdTime": "2026-02-02 05:19:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:18", + "echoMap": {}, + "alarmNo": "1850293596", + "alarmDate": "1769980756899", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113325459797182", + "createdBy": null, + "createdTime": "2026-02-02 05:19:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:15", + "echoMap": {}, + "alarmNo": "1850293595", + "alarmDate": "1769980742201", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113321164829781", + "createdBy": null, + "createdTime": "2026-02-02 05:09:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:19:10", + "echoMap": {}, + "alarmNo": "1850293594", + "alarmDate": "1769980164959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113321164829775", + "createdBy": null, + "createdTime": "2026-02-02 05:09:24", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:36", + "echoMap": {}, + "alarmNo": "1850293593", + "alarmDate": "1769980164004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113321164829729", + "createdBy": null, + "createdTime": "2026-02-02 05:09:07", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:08", + "echoMap": {}, + "alarmNo": "1850293592", + "alarmDate": "1769980146593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862899", + "createdBy": null, + "createdTime": "2026-02-02 05:08:55", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:13", + "echoMap": {}, + "alarmNo": "1850293591", + "alarmDate": "1769980134867", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862762", + "createdBy": null, + "createdTime": "2026-02-02 04:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:09:05", + "echoMap": {}, + "alarmNo": "1850293590", + "alarmDate": "1769979585862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862666", + "createdBy": null, + "createdTime": "2026-02-02 04:59:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:49", + "echoMap": {}, + "alarmNo": "1850293589", + "alarmDate": "1769979562711", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862656", + "createdBy": null, + "createdTime": "2026-02-02 04:59:21", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:22", + "echoMap": {}, + "alarmNo": "1850293588", + "alarmDate": "1769979561120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862641", + "createdBy": null, + "createdTime": "2026-02-02 04:59:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:18", + "echoMap": {}, + "alarmNo": "1850293587", + "alarmDate": "1769979557124", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862628", + "createdBy": null, + "createdTime": "2026-02-02 04:59:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:20", + "echoMap": {}, + "alarmNo": "1850293586", + "alarmDate": "1769979554132", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060047", + "deviceName": "[333](10)航中5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862580", + "createdBy": null, + "createdTime": "2026-02-02 04:58:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:59", + "echoMap": {}, + "alarmNo": "1850293585", + "alarmDate": "1769979537816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862568", + "createdBy": null, + "createdTime": "2026-02-02 04:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:10", + "echoMap": {}, + "alarmNo": "1850293584", + "alarmDate": "1769979534621", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862564", + "createdBy": null, + "createdTime": "2026-02-02 04:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:49:47", + "echoMap": {}, + "alarmNo": "1850293583", + "alarmDate": "1769979533545", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060032", + "deviceName": "[406](10)航中2#闸出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862459", + "createdBy": null, + "createdTime": "2026-02-02 04:49:50", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:51", + "echoMap": {}, + "alarmNo": "1850293582", + "alarmDate": "1769978990122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060023", + "deviceName": "[601](10)航中车控室", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862422", + "createdBy": null, + "createdTime": "2026-02-02 04:49:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:59:34", + "echoMap": {}, + "alarmNo": "1850293581", + "alarmDate": "1769978976941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113316869862414", + "createdBy": null, + "createdTime": "2026-02-02 04:49:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:36", + "echoMap": {}, + "alarmNo": "1850293580", + "alarmDate": "1769978974443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113312574895183", + "createdBy": null, + "createdTime": "2026-02-02 04:49:13", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:26", + "echoMap": {}, + "alarmNo": "1850293579", + "alarmDate": "1769978953293", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279928163", + "createdBy": null, + "createdTime": "2026-02-02 04:39:44", + "updatedBy": null, + "updatedTime": "2026-02-02 04:49:45", + "echoMap": {}, + "alarmNo": "1850293578", + "alarmDate": "1769978384160", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279928146", + "createdBy": null, + "createdTime": "2026-02-02 04:39:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:55", + "echoMap": {}, + "alarmNo": "1850293577", + "alarmDate": "1769978382362", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279928043", + "createdBy": null, + "createdTime": "2026-02-02 04:39:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:30", + "echoMap": {}, + "alarmNo": "1850293576", + "alarmDate": "1769978368916", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279927950", + "createdBy": null, + "createdTime": "2026-02-02 04:39:20", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:32", + "echoMap": {}, + "alarmNo": "1850293575", + "alarmDate": "1769978360145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113308279927932", + "createdBy": null, + "createdTime": "2026-02-02 04:39:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:30", + "echoMap": {}, + "alarmNo": "1850293574", + "alarmDate": "1769978358251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113303984960557", + "createdBy": null, + "createdTime": "2026-02-02 04:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:08", + "echoMap": {}, + "alarmNo": "1850293573", + "alarmDate": "1769978334059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993604", + "createdBy": null, + "createdTime": "2026-02-02 04:29:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:39:00", + "echoMap": {}, + "alarmNo": "1850293572", + "alarmDate": "1769977789042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993557", + "createdBy": null, + "createdTime": "2026-02-02 04:29:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:44", + "echoMap": {}, + "alarmNo": "1850293571", + "alarmDate": "1769977783342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993486", + "createdBy": null, + "createdTime": "2026-02-02 04:29:35", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:36", + "echoMap": {}, + "alarmNo": "1850293570", + "alarmDate": "1769977775320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993452", + "createdBy": null, + "createdTime": "2026-02-02 04:29:32", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:45", + "echoMap": {}, + "alarmNo": "1850293569", + "alarmDate": "1769977771863", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113299689993388", + "createdBy": null, + "createdTime": "2026-02-02 04:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:37", + "echoMap": {}, + "alarmNo": "1850293568", + "alarmDate": "1769977763954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113295395025995", + "createdBy": null, + "createdTime": "2026-02-02 04:28:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:59", + "echoMap": {}, + "alarmNo": "1850293567", + "alarmDate": "1769977737521", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113295395025961", + "createdBy": null, + "createdTime": "2026-02-02 04:28:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:06", + "echoMap": {}, + "alarmNo": "1850293566", + "alarmDate": "1769977733902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113291100059032", + "createdBy": null, + "createdTime": "2026-02-02 04:19:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:29:20", + "echoMap": {}, + "alarmNo": "1850293565", + "alarmDate": "1769977190585", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113291100059007", + "createdBy": null, + "createdTime": "2026-02-02 04:19:47", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:48", + "echoMap": {}, + "alarmNo": "1850293564", + "alarmDate": "1769977187303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113291100058800", + "createdBy": null, + "createdTime": "2026-02-02 04:19:23", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:35", + "echoMap": {}, + "alarmNo": "1850293563", + "alarmDate": "1769977162651", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113286805091432", + "createdBy": null, + "createdTime": "2026-02-02 04:18:59", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:05", + "echoMap": {}, + "alarmNo": "1850293562", + "alarmDate": "1769977138686", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113286805091426", + "createdBy": null, + "createdTime": "2026-02-02 04:18:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:59", + "echoMap": {}, + "alarmNo": "1850293561", + "alarmDate": "1769977138245", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113286805091393", + "createdBy": null, + "createdTime": "2026-02-02 04:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:19:39", + "echoMap": {}, + "alarmNo": "1850293560", + "alarmDate": "1769977134438", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124459", + "createdBy": null, + "createdTime": "2026-02-02 04:09:51", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:52", + "echoMap": {}, + "alarmNo": "1850293559", + "alarmDate": "1769976591080", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124349", + "createdBy": null, + "createdTime": "2026-02-02 04:09:38", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:51", + "echoMap": {}, + "alarmNo": "1850293558", + "alarmDate": "1769976578292", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124267", + "createdBy": null, + "createdTime": "2026-02-02 04:09:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:40", + "echoMap": {}, + "alarmNo": "1850293557", + "alarmDate": "1769976568441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124165", + "createdBy": null, + "createdTime": "2026-02-02 04:09:16", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:17", + "echoMap": {}, + "alarmNo": "1850293556", + "alarmDate": "1769976555688", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124064", + "createdBy": null, + "createdTime": "2026-02-02 04:09:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:10", + "echoMap": {}, + "alarmNo": "1850293555", + "alarmDate": "1769976544443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113282510124040", + "createdBy": null, + "createdTime": "2026-02-02 04:09:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:03", + "echoMap": {}, + "alarmNo": "1850293554", + "alarmDate": "1769976541625", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113278215156811", + "createdBy": null, + "createdTime": "2026-02-02 04:08:54", + "updatedBy": null, + "updatedTime": "2026-02-02 04:09:27", + "echoMap": {}, + "alarmNo": "1850293553", + "alarmDate": "1769976534330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189735", + "createdBy": null, + "createdTime": "2026-02-02 03:59:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:47", + "echoMap": {}, + "alarmNo": "1850293552", + "alarmDate": "1769975975180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189668", + "createdBy": null, + "createdTime": "2026-02-02 03:59:27", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:45", + "echoMap": {}, + "alarmNo": "1850293551", + "alarmDate": "1769975967014", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189552", + "createdBy": null, + "createdTime": "2026-02-02 03:59:13", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:14", + "echoMap": {}, + "alarmNo": "1850293550", + "alarmDate": "1769975952795", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113273920189524", + "createdBy": null, + "createdTime": "2026-02-02 03:59:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:23", + "echoMap": {}, + "alarmNo": "1850293549", + "alarmDate": "1769975950059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255262", + "createdBy": null, + "createdTime": "2026-02-02 03:49:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:59:15", + "echoMap": {}, + "alarmNo": "1850293548", + "alarmDate": "1769975385749", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255216", + "createdBy": null, + "createdTime": "2026-02-02 03:49:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:52", + "echoMap": {}, + "alarmNo": "1850293547", + "alarmDate": "1769975380041", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255053", + "createdBy": null, + "createdTime": "2026-02-02 03:49:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:34", + "echoMap": {}, + "alarmNo": "1850293546", + "alarmDate": "1769975361735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330255039", + "createdBy": null, + "createdTime": "2026-02-02 03:49:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:22", + "echoMap": {}, + "alarmNo": "1850293545", + "alarmDate": "1769975360581", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113265330254998", + "createdBy": null, + "createdTime": "2026-02-02 03:49:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:28", + "echoMap": {}, + "alarmNo": "1850293544", + "alarmDate": "1769975355797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113261035287621", + "createdBy": null, + "createdTime": "2026-02-02 03:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:49:10", + "echoMap": {}, + "alarmNo": "1850293543", + "alarmDate": "1769975333727", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113261035287614", + "createdBy": null, + "createdTime": "2026-02-02 03:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:48:58", + "echoMap": {}, + "alarmNo": "1850293542", + "alarmDate": "1769975332738", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320627", + "createdBy": null, + "createdTime": "2026-02-02 03:39:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:43", + "echoMap": {}, + "alarmNo": "1850293541", + "alarmDate": "1769974781998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320596", + "createdBy": null, + "createdTime": "2026-02-02 03:39:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:51", + "echoMap": {}, + "alarmNo": "1850293540", + "alarmDate": "1769974778737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320560", + "createdBy": null, + "createdTime": "2026-02-02 03:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:46", + "echoMap": {}, + "alarmNo": "1850293539", + "alarmDate": "1769974774533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320439", + "createdBy": null, + "createdTime": "2026-02-02 03:39:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:20", + "echoMap": {}, + "alarmNo": "1850293538", + "alarmDate": "1769974758780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320401", + "createdBy": null, + "createdTime": "2026-02-02 03:39:15", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:21", + "echoMap": {}, + "alarmNo": "1850293537", + "alarmDate": "1769974754542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113256740320366", + "createdBy": null, + "createdTime": "2026-02-02 03:39:11", + "updatedBy": null, + "updatedTime": "2026-02-02 03:39:22", + "echoMap": {}, + "alarmNo": "1850293536", + "alarmDate": "1769974750500", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113252445353067", + "createdBy": null, + "createdTime": "2026-02-02 03:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:56", + "echoMap": {}, + "alarmNo": "1850293535", + "alarmDate": "1769974733603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150386146", + "createdBy": null, + "createdTime": "2026-02-02 03:29:52", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:59", + "echoMap": {}, + "alarmNo": "1850293534", + "alarmDate": "1769974192395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150386001", + "createdBy": null, + "createdTime": "2026-02-02 03:29:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:48", + "echoMap": {}, + "alarmNo": "1850293533", + "alarmDate": "1769974176441", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385952", + "createdBy": null, + "createdTime": "2026-02-02 03:29:31", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:32", + "echoMap": {}, + "alarmNo": "1850293532", + "alarmDate": "1769974171010", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385882", + "createdBy": null, + "createdTime": "2026-02-02 03:29:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:40", + "echoMap": {}, + "alarmNo": "1850293531", + "alarmDate": "1769974162348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385753", + "createdBy": null, + "createdTime": "2026-02-02 03:29:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:17", + "echoMap": {}, + "alarmNo": "1850293530", + "alarmDate": "1769974146287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113248150385686", + "createdBy": null, + "createdTime": "2026-02-02 03:28:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:29:10", + "echoMap": {}, + "alarmNo": "1850293529", + "alarmDate": "1769974138207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113243855418478", + "createdBy": null, + "createdTime": "2026-02-02 03:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:54", + "echoMap": {}, + "alarmNo": "1850293528", + "alarmDate": "1769974133286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451455", + "createdBy": null, + "createdTime": "2026-02-02 03:19:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:53", + "echoMap": {}, + "alarmNo": "1850293527", + "alarmDate": "1769973581000", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451447", + "createdBy": null, + "createdTime": "2026-02-02 03:19:41", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:42", + "echoMap": {}, + "alarmNo": "1850293526", + "alarmDate": "1769973580700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451401", + "createdBy": null, + "createdTime": "2026-02-02 03:19:35", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:47", + "echoMap": {}, + "alarmNo": "1850293525", + "alarmDate": "1769973575056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451243", + "createdBy": null, + "createdTime": "2026-02-02 03:19:17", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:29", + "echoMap": {}, + "alarmNo": "1850293524", + "alarmDate": "1769973557075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451216", + "createdBy": null, + "createdTime": "2026-02-02 03:19:14", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:15", + "echoMap": {}, + "alarmNo": "1850293523", + "alarmDate": "1769973554340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113239560451178", + "createdBy": null, + "createdTime": "2026-02-02 03:19:10", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:22", + "echoMap": {}, + "alarmNo": "1850293522", + "alarmDate": "1769973549924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113235265483884", + "createdBy": null, + "createdTime": "2026-02-02 03:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:19:05", + "echoMap": {}, + "alarmNo": "1850293521", + "alarmDate": "1769973534056", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516849", + "createdBy": null, + "createdTime": "2026-02-02 03:09:39", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:40", + "echoMap": {}, + "alarmNo": "1850293520", + "alarmDate": "1769972978884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516792", + "createdBy": null, + "createdTime": "2026-02-02 03:09:33", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:45", + "echoMap": {}, + "alarmNo": "1850293519", + "alarmDate": "1769972972780", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516765", + "createdBy": null, + "createdTime": "2026-02-02 03:09:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:42", + "echoMap": {}, + "alarmNo": "1850293518", + "alarmDate": "1769972969743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516572", + "createdBy": null, + "createdTime": "2026-02-02 03:09:06", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:18", + "echoMap": {}, + "alarmNo": "1850293517", + "alarmDate": "1769972945694", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516537", + "createdBy": null, + "createdTime": "2026-02-02 03:09:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:09:15", + "echoMap": {}, + "alarmNo": "1850293516", + "alarmDate": "1769972941640", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113230970516481", + "createdBy": null, + "createdTime": "2026-02-02 03:08:55", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:56", + "echoMap": {}, + "alarmNo": "1850293515", + "alarmDate": "1769972935442", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582330", + "createdBy": null, + "createdTime": "2026-02-02 02:59:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:54", + "echoMap": {}, + "alarmNo": "1850293514", + "alarmDate": "1769972388498", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582309", + "createdBy": null, + "createdTime": "2026-02-02 02:59:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:47", + "echoMap": {}, + "alarmNo": "1850293513", + "alarmDate": "1769972386286", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582235", + "createdBy": null, + "createdTime": "2026-02-02 02:59:38", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:51", + "echoMap": {}, + "alarmNo": "1850293512", + "alarmDate": "1769972377504", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582129", + "createdBy": null, + "createdTime": "2026-02-02 02:59:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:36", + "echoMap": {}, + "alarmNo": "1850293511", + "alarmDate": "1769972364412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380582005", + "createdBy": null, + "createdTime": "2026-02-02 02:59:09", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:10", + "echoMap": {}, + "alarmNo": "1850293510", + "alarmDate": "1769972349239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113222380581997", + "createdBy": null, + "createdTime": "2026-02-02 02:59:08", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:20", + "echoMap": {}, + "alarmNo": "1850293509", + "alarmDate": "1769972348447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113218085614718", + "createdBy": null, + "createdTime": "2026-02-02 02:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 02:59:12", + "echoMap": {}, + "alarmNo": "1850293508", + "alarmDate": "1769972334456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113218085614708", + "createdBy": null, + "createdTime": "2026-02-02 02:58:53", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:56", + "echoMap": {}, + "alarmNo": "1850293507", + "alarmDate": "1769972333472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647660", + "createdBy": null, + "createdTime": "2026-02-02 02:49:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:43", + "echoMap": {}, + "alarmNo": "1850293506", + "alarmDate": "1769971781637", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647611", + "createdBy": null, + "createdTime": "2026-02-02 02:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:48", + "echoMap": {}, + "alarmNo": "1850293505", + "alarmDate": "1769971776150", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647561", + "createdBy": null, + "createdTime": "2026-02-02 02:49:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:49", + "echoMap": {}, + "alarmNo": "1850293504", + "alarmDate": "1769971770255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647414", + "createdBy": null, + "createdTime": "2026-02-02 02:49:12", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:25", + "echoMap": {}, + "alarmNo": "1850293503", + "alarmDate": "1769971752342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647361", + "createdBy": null, + "createdTime": "2026-02-02 02:49:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:07", + "echoMap": {}, + "alarmNo": "1850293502", + "alarmDate": "1769971746329", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113213790647360", + "createdBy": null, + "createdTime": "2026-02-02 02:49:06", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:17", + "echoMap": {}, + "alarmNo": "1850293501", + "alarmDate": "1769971746154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712991", + "createdBy": null, + "createdTime": "2026-02-02 02:39:35", + "updatedBy": null, + "updatedTime": "2026-02-02 02:48:54", + "echoMap": {}, + "alarmNo": "1850293500", + "alarmDate": "1769971174950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712908", + "createdBy": null, + "createdTime": "2026-02-02 02:39:25", + "updatedBy": null, + "updatedTime": "2026-02-02 02:49:00", + "echoMap": {}, + "alarmNo": "1850293499", + "alarmDate": "1769971164897", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712793", + "createdBy": null, + "createdTime": "2026-02-02 02:39:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:23", + "echoMap": {}, + "alarmNo": "1850293498", + "alarmDate": "1769971150850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113205200712777", + "createdBy": null, + "createdTime": "2026-02-02 02:39:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:11", + "echoMap": {}, + "alarmNo": "1850293497", + "alarmDate": "1769971149594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778582", + "createdBy": null, + "createdTime": "2026-02-02 02:29:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:39:13", + "echoMap": {}, + "alarmNo": "1850293496", + "alarmDate": "1769970582708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778507", + "createdBy": null, + "createdTime": "2026-02-02 02:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:59", + "echoMap": {}, + "alarmNo": "1850293495", + "alarmDate": "1769970573699", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778469", + "createdBy": null, + "createdTime": "2026-02-02 02:29:29", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:30", + "echoMap": {}, + "alarmNo": "1850293494", + "alarmDate": "1769970569345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778336", + "createdBy": null, + "createdTime": "2026-02-02 02:29:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:15", + "echoMap": {}, + "alarmNo": "1850293493", + "alarmDate": "1769970554191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778293", + "createdBy": null, + "createdTime": "2026-02-02 02:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:22", + "echoMap": {}, + "alarmNo": "1850293492", + "alarmDate": "1769970549553", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113196610778158", + "createdBy": null, + "createdTime": "2026-02-02 02:28:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:29:32", + "echoMap": {}, + "alarmNo": "1850293491", + "alarmDate": "1769970534679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020844070", + "createdBy": null, + "createdTime": "2026-02-02 02:19:39", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:51", + "echoMap": {}, + "alarmNo": "1850293490", + "alarmDate": "1769969979386", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020844002", + "createdBy": null, + "createdTime": "2026-02-02 02:19:31", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:43", + "echoMap": {}, + "alarmNo": "1850293489", + "alarmDate": "1769969971279", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020843945", + "createdBy": null, + "createdTime": "2026-02-02 02:19:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:25", + "echoMap": {}, + "alarmNo": "1850293488", + "alarmDate": "1769969964352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113188020843866", + "createdBy": null, + "createdTime": "2026-02-02 02:19:15", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:27", + "echoMap": {}, + "alarmNo": "1850293487", + "alarmDate": "1769969955356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113183725876342", + "createdBy": null, + "createdTime": "2026-02-02 02:09:46", + "updatedBy": null, + "updatedTime": "2026-02-02 02:18:57", + "echoMap": {}, + "alarmNo": "1850293486", + "alarmDate": "1769969386138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909363", + "createdBy": null, + "createdTime": "2026-02-02 02:09:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:09:25", + "echoMap": {}, + "alarmNo": "1850293485", + "alarmDate": "1769969363825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909337", + "createdBy": null, + "createdTime": "2026-02-02 02:09:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:09:34", + "echoMap": {}, + "alarmNo": "1850293484", + "alarmDate": "1769969361096", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909120", + "createdBy": null, + "createdTime": "2026-02-02 02:08:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:59", + "echoMap": {}, + "alarmNo": "1850293483", + "alarmDate": "1769969337673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430909104", + "createdBy": null, + "createdTime": "2026-02-02 02:08:56", + "updatedBy": null, + "updatedTime": "2026-02-02 02:19:19", + "echoMap": {}, + "alarmNo": "1850293482", + "alarmDate": "1769969336013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430908969", + "createdBy": null, + "createdTime": "2026-02-02 01:59:51", + "updatedBy": null, + "updatedTime": "2026-02-02 02:09:09", + "echoMap": {}, + "alarmNo": "1850293481", + "alarmDate": "1769968790861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113179430908954", + "createdBy": null, + "createdTime": "2026-02-02 01:59:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:51", + "echoMap": {}, + "alarmNo": "1850293480", + "alarmDate": "1769968789516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113175135941679", + "createdBy": null, + "createdTime": "2026-02-02 01:59:41", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:42", + "echoMap": {}, + "alarmNo": "1850293479", + "alarmDate": "1769968781345", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113175135941656", + "createdBy": null, + "createdTime": "2026-02-02 01:59:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:51", + "echoMap": {}, + "alarmNo": "1850293478", + "alarmDate": "1769968778901", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113170840974442", + "createdBy": null, + "createdTime": "2026-02-02 01:59:20", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:39", + "echoMap": {}, + "alarmNo": "1850293477", + "alarmDate": "1769968759820", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113162251039815", + "createdBy": null, + "createdTime": "2026-02-02 01:49:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:08", + "echoMap": {}, + "alarmNo": "1850293476", + "alarmDate": "1769968188676", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113162251039776", + "createdBy": null, + "createdTime": "2026-02-02 01:49:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:45", + "echoMap": {}, + "alarmNo": "1850293475", + "alarmDate": "1769968184497", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113153661105346", + "createdBy": null, + "createdTime": "2026-02-02 01:49:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:59:27", + "echoMap": {}, + "alarmNo": "1850293474", + "alarmDate": "1769968167480", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113153661105310", + "createdBy": null, + "createdTime": "2026-02-02 01:49:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:31", + "echoMap": {}, + "alarmNo": "1850293473", + "alarmDate": "1769968164574", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113149366137867", + "createdBy": null, + "createdTime": "2026-02-02 01:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:07", + "echoMap": {}, + "alarmNo": "1850293472", + "alarmDate": "1769968134514", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113145071170584", + "createdBy": null, + "createdTime": "2026-02-02 01:39:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:41", + "echoMap": {}, + "alarmNo": "1850293471", + "alarmDate": "1769967580141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113136481236090", + "createdBy": null, + "createdTime": "2026-02-02 01:39:17", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:18", + "echoMap": {}, + "alarmNo": "1850293470", + "alarmDate": "1769967556962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113136481236083", + "createdBy": null, + "createdTime": "2026-02-02 01:39:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:35", + "echoMap": {}, + "alarmNo": "1850293469", + "alarmDate": "1769967556278", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113136481236051", + "createdBy": null, + "createdTime": "2026-02-02 01:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:14", + "echoMap": {}, + "alarmNo": "1850293468", + "alarmDate": "1769967552777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113132186268681", + "createdBy": null, + "createdTime": "2026-02-02 01:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:49:15", + "echoMap": {}, + "alarmNo": "1850293467", + "alarmDate": "1769967534337", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113127891301637", + "createdBy": null, + "createdTime": "2026-02-02 01:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:39:04", + "echoMap": {}, + "alarmNo": "1850293466", + "alarmDate": "1769967533178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113119301366959", + "createdBy": null, + "createdTime": "2026-02-02 01:29:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:34", + "echoMap": {}, + "alarmNo": "1850293465", + "alarmDate": "1769966961983", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113119301366855", + "createdBy": null, + "createdTime": "2026-02-02 01:29:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:11", + "echoMap": {}, + "alarmNo": "1850293464", + "alarmDate": "1769966949819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113110711432312", + "createdBy": null, + "createdTime": "2026-02-02 01:19:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:10", + "echoMap": {}, + "alarmNo": "1850293463", + "alarmDate": "1769966391839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113106416464912", + "createdBy": null, + "createdTime": "2026-02-02 01:19:28", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:40", + "echoMap": {}, + "alarmNo": "1850293462", + "alarmDate": "1769966367742", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113102121497674", + "createdBy": null, + "createdTime": "2026-02-02 01:19:06", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:07", + "echoMap": {}, + "alarmNo": "1850293461", + "alarmDate": "1769966346488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113097826530361", + "createdBy": null, + "createdTime": "2026-02-02 01:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 01:29:46", + "echoMap": {}, + "alarmNo": "1850293460", + "alarmDate": "1769966333632", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563150", + "createdBy": null, + "createdTime": "2026-02-02 01:09:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:19:15", + "echoMap": {}, + "alarmNo": "1850293459", + "alarmDate": "1769965789486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563075", + "createdBy": null, + "createdTime": "2026-02-02 01:09:40", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:52", + "echoMap": {}, + "alarmNo": "1850293458", + "alarmDate": "1769965780475", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563062", + "createdBy": null, + "createdTime": "2026-02-02 01:09:39", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:40", + "echoMap": {}, + "alarmNo": "1850293457", + "alarmDate": "1769965779125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113093531563027", + "createdBy": null, + "createdTime": "2026-02-02 01:09:35", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:36", + "echoMap": {}, + "alarmNo": "1850293456", + "alarmDate": "1769965775033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113089236595744", + "createdBy": null, + "createdTime": "2026-02-02 01:09:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:38", + "echoMap": {}, + "alarmNo": "1850293455", + "alarmDate": "1769965765484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113076351694007", + "createdBy": null, + "createdTime": "2026-02-02 00:59:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:13", + "echoMap": {}, + "alarmNo": "1850293454", + "alarmDate": "1769965188191", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113076351693844", + "createdBy": null, + "createdTime": "2026-02-02 00:59:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:31", + "echoMap": {}, + "alarmNo": "1850293453", + "alarmDate": "1769965169994", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113076351693834", + "createdBy": null, + "createdTime": "2026-02-02 00:59:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:09:28", + "echoMap": {}, + "alarmNo": "1850293452", + "alarmDate": "1769965169143", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113072056726581", + "createdBy": null, + "createdTime": "2026-02-02 00:59:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:29", + "echoMap": {}, + "alarmNo": "1850293451", + "alarmDate": "1769965163165", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113067761759263", + "createdBy": null, + "createdTime": "2026-02-02 00:58:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:04", + "echoMap": {}, + "alarmNo": "1850293450", + "alarmDate": "1769965133074", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113059171824850", + "createdBy": null, + "createdTime": "2026-02-02 00:49:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:59:17", + "echoMap": {}, + "alarmNo": "1850293449", + "alarmDate": "1769964587880", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113059171824657", + "createdBy": null, + "createdTime": "2026-02-02 00:49:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:36", + "echoMap": {}, + "alarmNo": "1850293448", + "alarmDate": "1769964563893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113054876857424", + "createdBy": null, + "createdTime": "2026-02-02 00:49:22", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:34", + "echoMap": {}, + "alarmNo": "1850293447", + "alarmDate": "1769964561909", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113054876857399", + "createdBy": null, + "createdTime": "2026-02-02 00:49:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:20", + "echoMap": {}, + "alarmNo": "1850293446", + "alarmDate": "1769964558768", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113050581890246", + "createdBy": null, + "createdTime": "2026-02-02 00:49:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:09", + "echoMap": {}, + "alarmNo": "1850293445", + "alarmDate": "1769964547523", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113050581890242", + "createdBy": null, + "createdTime": "2026-02-02 00:49:07", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:08", + "echoMap": {}, + "alarmNo": "1850293444", + "alarmDate": "1769964547416", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113050581890121", + "createdBy": null, + "createdTime": "2026-02-02 00:48:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:12", + "echoMap": {}, + "alarmNo": "1850293443", + "alarmDate": "1769964533767", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113046286922759", + "createdBy": null, + "createdTime": "2026-02-02 00:39:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:49:10", + "echoMap": {}, + "alarmNo": "1850293442", + "alarmDate": "1769963991705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113041991955563", + "createdBy": null, + "createdTime": "2026-02-02 00:39:37", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:49", + "echoMap": {}, + "alarmNo": "1850293441", + "alarmDate": "1769963976677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113041991955487", + "createdBy": null, + "createdTime": "2026-02-02 00:39:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:40", + "echoMap": {}, + "alarmNo": "1850293440", + "alarmDate": "1769963967660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113033402021116", + "createdBy": null, + "createdTime": "2026-02-02 00:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:25", + "echoMap": {}, + "alarmNo": "1850293439", + "alarmDate": "1769963952506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113033402020978", + "createdBy": null, + "createdTime": "2026-02-02 00:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:56", + "echoMap": {}, + "alarmNo": "1850293438", + "alarmDate": "1769963935298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113033402020968", + "createdBy": null, + "createdTime": "2026-02-02 00:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:00", + "echoMap": {}, + "alarmNo": "1850293437", + "alarmDate": "1769963934506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113029107053627", + "createdBy": null, + "createdTime": "2026-02-02 00:29:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:39:16", + "echoMap": {}, + "alarmNo": "1850293436", + "alarmDate": "1769963390389", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113029107053607", + "createdBy": null, + "createdTime": "2026-02-02 00:29:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:49", + "echoMap": {}, + "alarmNo": "1850293435", + "alarmDate": "1769963388095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113024812086335", + "createdBy": null, + "createdTime": "2026-02-02 00:29:26", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:37", + "echoMap": {}, + "alarmNo": "1850293434", + "alarmDate": "1769963366381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113024812086315", + "createdBy": null, + "createdTime": "2026-02-02 00:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:42", + "echoMap": {}, + "alarmNo": "1850293433", + "alarmDate": "1769963364339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113011927184388", + "createdBy": null, + "createdTime": "2026-02-02 00:19:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:14", + "echoMap": {}, + "alarmNo": "1850293432", + "alarmDate": "1769962788151", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217248", + "createdBy": null, + "createdTime": "2026-02-02 00:19:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:29:13", + "echoMap": {}, + "alarmNo": "1850293431", + "alarmDate": "1769962783139", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217182", + "createdBy": null, + "createdTime": "2026-02-02 00:19:35", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:36", + "echoMap": {}, + "alarmNo": "1850293430", + "alarmDate": "1769962774808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060065", + "deviceName": "[206](10)航中厅6球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217139", + "createdBy": null, + "createdTime": "2026-02-02 00:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:31", + "echoMap": {}, + "alarmNo": "1850293429", + "alarmDate": "1769962770003", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060072", + "deviceName": "[214](10)航中3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113007632217132", + "createdBy": null, + "createdTime": "2026-02-02 00:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:31", + "echoMap": {}, + "alarmNo": "1850293428", + "alarmDate": "1769962769712", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060067", + "deviceName": "[207](10)航中厅7球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723113003337249856", + "createdBy": null, + "createdTime": "2026-02-02 00:19:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:36", + "echoMap": {}, + "alarmNo": "1850293427", + "alarmDate": "1769962763122", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112999042282641", + "createdBy": null, + "createdTime": "2026-02-02 00:19:13", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:31", + "echoMap": {}, + "alarmNo": "1850293426", + "alarmDate": "1769962753005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112994747315270", + "createdBy": null, + "createdTime": "2026-02-02 00:18:54", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:01", + "echoMap": {}, + "alarmNo": "1850293425", + "alarmDate": "1769962734016", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112994747315261", + "createdBy": null, + "createdTime": "2026-02-02 00:18:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:19:05", + "echoMap": {}, + "alarmNo": "1850293424", + "alarmDate": "1769962732981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112981862413438", + "createdBy": null, + "createdTime": "2026-02-02 00:09:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:44", + "echoMap": {}, + "alarmNo": "1850293423", + "alarmDate": "1769962171777", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112981862413364", + "createdBy": null, + "createdTime": "2026-02-02 00:09:23", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:34", + "echoMap": {}, + "alarmNo": "1850293422", + "alarmDate": "1769962162846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060014", + "deviceName": "[328](10)航中4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112977567446084", + "createdBy": null, + "createdTime": "2026-02-02 00:09:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:16", + "echoMap": {}, + "alarmNo": "1850293421", + "alarmDate": "1769962155449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060100", + "deviceName": "[209](10)航中上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + }, + { + "id": "723112973272478887", + "createdBy": null, + "createdTime": "2026-02-02 00:09:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:20", + "echoMap": {}, + "alarmNo": "1850293420", + "alarmDate": "1769962147728", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1029060046", + "deviceName": "[334](10)航中5#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1029" + } + ] + }, + "1030": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113076351542650", + "createdBy": null, + "createdTime": "2026-02-02 00:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:49", + "echoMap": {}, + "alarmNo": "1870248028", + "alarmDate": "1769962008332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113089236444207", + "createdBy": null, + "createdTime": "2026-02-02 00:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:20", + "echoMap": {}, + "alarmNo": "1870248029", + "alarmDate": "1769962580202", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060026", + "deviceName": "[404](10)紫藤3#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113115006247950", + "createdBy": null, + "createdTime": "2026-02-02 00:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:42", + "echoMap": {}, + "alarmNo": "1870248030", + "alarmDate": "1769963800950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113127891149864", + "createdBy": null, + "createdTime": "2026-02-02 00:46:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:51", + "echoMap": {}, + "alarmNo": "1870248031", + "alarmDate": "1769964392516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060019", + "deviceName": "[310](10)紫藤2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113145071019437", + "createdBy": null, + "createdTime": "2026-02-02 01:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:30", + "echoMap": {}, + "alarmNo": "1870248032", + "alarmDate": "1769965588937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113179430757434", + "createdBy": null, + "createdTime": "2026-02-02 01:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:17", + "echoMap": {}, + "alarmNo": "1870248033", + "alarmDate": "1769967375784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113196610627111", + "createdBy": null, + "createdTime": "2026-02-02 01:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:53", + "echoMap": {}, + "alarmNo": "1870248034", + "alarmDate": "1769968612446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113222380430572", + "createdBy": null, + "createdTime": "2026-02-02 02:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:41", + "echoMap": {}, + "alarmNo": "1870248035", + "alarmDate": "1769970399791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113248150234199", + "createdBy": null, + "createdTime": "2026-02-02 02:56:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:26", + "echoMap": {}, + "alarmNo": "1870248036", + "alarmDate": "1769972184291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113265330103820", + "createdBy": null, + "createdTime": "2026-02-02 03:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:01", + "echoMap": {}, + "alarmNo": "1870248037", + "alarmDate": "1769973419895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113269625070604", + "createdBy": null, + "createdTime": "2026-02-02 03:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:10", + "echoMap": {}, + "alarmNo": "1870248038", + "alarmDate": "1769973969125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113291099907546", + "createdBy": null, + "createdTime": "2026-02-02 03:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:43", + "echoMap": {}, + "alarmNo": "1870248039", + "alarmDate": "1769975201743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113316869711100", + "createdBy": null, + "createdTime": "2026-02-02 04:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:31", + "echoMap": {}, + "alarmNo": "1870248040", + "alarmDate": "1769976989656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113334049580707", + "createdBy": null, + "createdTime": "2026-02-02 04:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:16", + "echoMap": {}, + "alarmNo": "1870248041", + "alarmDate": "1769978775456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113351229449228", + "createdBy": null, + "createdTime": "2026-02-02 04:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:04", + "echoMap": {}, + "alarmNo": "1870248042", + "alarmDate": "1769979404162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060041", + "deviceName": "[408](10)紫藤3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113351229449811", + "createdBy": null, + "createdTime": "2026-02-02 05:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:55", + "echoMap": {}, + "alarmNo": "1870248043", + "alarmDate": "1769980014183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819383816", + "createdBy": null, + "createdTime": "2026-02-02 05:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:11", + "echoMap": {}, + "alarmNo": "1870248044", + "alarmDate": "1769980564773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384024", + "createdBy": null, + "createdTime": "2026-02-02 05:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:35", + "echoMap": {}, + "alarmNo": "1870248045", + "alarmDate": "1769980588735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384101", + "createdBy": null, + "createdTime": "2026-02-02 05:16:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:50", + "echoMap": {}, + "alarmNo": "1870248046", + "alarmDate": "1769980597679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384237", + "createdBy": null, + "createdTime": "2026-02-02 05:16:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:59", + "echoMap": {}, + "alarmNo": "1870248047", + "alarmDate": "1769980612819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384317", + "createdBy": null, + "createdTime": "2026-02-02 05:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:13", + "echoMap": {}, + "alarmNo": "1870248048", + "alarmDate": "1769980621778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113364114351137", + "createdBy": null, + "createdTime": "2026-02-02 05:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:29", + "echoMap": {}, + "alarmNo": "1870248049", + "alarmDate": "1769981177140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318448", + "createdBy": null, + "createdTime": "2026-02-02 05:26:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:38", + "echoMap": {}, + "alarmNo": "1870248050", + "alarmDate": "1769981184959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318588", + "createdBy": null, + "createdTime": "2026-02-02 05:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:47", + "echoMap": {}, + "alarmNo": "1870248051", + "alarmDate": "1769981201049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318613", + "createdBy": null, + "createdTime": "2026-02-02 05:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:27", + "echoMap": {}, + "alarmNo": "1870248052", + "alarmDate": "1769981203839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318663", + "createdBy": null, + "createdTime": "2026-02-02 05:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:02", + "echoMap": {}, + "alarmNo": "1870248053", + "alarmDate": "1769981209197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318872", + "createdBy": null, + "createdTime": "2026-02-02 05:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:09", + "echoMap": {}, + "alarmNo": "1870248054", + "alarmDate": "1769981763217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318877", + "createdBy": null, + "createdTime": "2026-02-02 05:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:10", + "echoMap": {}, + "alarmNo": "1870248055", + "alarmDate": "1769981763391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409319043", + "createdBy": null, + "createdTime": "2026-02-02 05:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:33", + "echoMap": {}, + "alarmNo": "1870248056", + "alarmDate": "1769981781255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409319048", + "createdBy": null, + "createdTime": "2026-02-02 05:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:34", + "echoMap": {}, + "alarmNo": "1870248057", + "alarmDate": "1769981781414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253074", + "createdBy": null, + "createdTime": "2026-02-02 05:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:42", + "echoMap": {}, + "alarmNo": "1870248058", + "alarmDate": "1769981801053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253120", + "createdBy": null, + "createdTime": "2026-02-02 05:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:57", + "echoMap": {}, + "alarmNo": "1870248059", + "alarmDate": "1769981805209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253125", + "createdBy": null, + "createdTime": "2026-02-02 05:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:57", + "echoMap": {}, + "alarmNo": "1870248060", + "alarmDate": "1769981805468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253353", + "createdBy": null, + "createdTime": "2026-02-02 05:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:17", + "echoMap": {}, + "alarmNo": "1870248061", + "alarmDate": "1769982363673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253397", + "createdBy": null, + "createdTime": "2026-02-02 05:46:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:21", + "echoMap": {}, + "alarmNo": "1870248062", + "alarmDate": "1769982369478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253451", + "createdBy": null, + "createdTime": "2026-02-02 05:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:06", + "echoMap": {}, + "alarmNo": "1870248063", + "alarmDate": "1769982375962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060041", + "deviceName": "[408](10)紫藤3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253593", + "createdBy": null, + "createdTime": "2026-02-02 05:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:53", + "echoMap": {}, + "alarmNo": "1870248064", + "alarmDate": "1769982394536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253655", + "createdBy": null, + "createdTime": "2026-02-02 05:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:54", + "echoMap": {}, + "alarmNo": "1870248065", + "alarmDate": "1769982400793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187647", + "createdBy": null, + "createdTime": "2026-02-02 05:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:22", + "echoMap": {}, + "alarmNo": "1870248066", + "alarmDate": "1769982418870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187764", + "createdBy": null, + "createdTime": "2026-02-02 05:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:11", + "echoMap": {}, + "alarmNo": "1870248067", + "alarmDate": "1769982964731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060046", + "deviceName": "[301](10)紫藤1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187765", + "createdBy": null, + "createdTime": "2026-02-02 05:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:17", + "echoMap": {}, + "alarmNo": "1870248068", + "alarmDate": "1769982964781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187771", + "createdBy": null, + "createdTime": "2026-02-02 05:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:17", + "echoMap": {}, + "alarmNo": "1870248069", + "alarmDate": "1769982965006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187868", + "createdBy": null, + "createdTime": "2026-02-02 05:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:21", + "echoMap": {}, + "alarmNo": "1870248070", + "alarmDate": "1769982974713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187966", + "createdBy": null, + "createdTime": "2026-02-02 05:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:41", + "echoMap": {}, + "alarmNo": "1870248071", + "alarmDate": "1769982988827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187969", + "createdBy": null, + "createdTime": "2026-02-02 05:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:41", + "echoMap": {}, + "alarmNo": "1870248072", + "alarmDate": "1769982989035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589188004", + "createdBy": null, + "createdTime": "2026-02-02 05:56:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:11", + "echoMap": {}, + "alarmNo": "1870248073", + "alarmDate": "1769982992762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589188171", + "createdBy": null, + "createdTime": "2026-02-02 05:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:04", + "echoMap": {}, + "alarmNo": "1870248074", + "alarmDate": "1769983012921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589188173", + "createdBy": null, + "createdTime": "2026-02-02 05:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:20", + "echoMap": {}, + "alarmNo": "1870248075", + "alarmDate": "1769983013021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122319", + "createdBy": null, + "createdTime": "2026-02-02 06:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:28", + "echoMap": {}, + "alarmNo": "1870248076", + "alarmDate": "1769983576140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122465", + "createdBy": null, + "createdTime": "2026-02-02 06:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:37", + "echoMap": {}, + "alarmNo": "1870248077", + "alarmDate": "1769983596009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122488", + "createdBy": null, + "createdTime": "2026-02-02 06:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:45", + "echoMap": {}, + "alarmNo": "1870248078", + "alarmDate": "1769983599291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122498", + "createdBy": null, + "createdTime": "2026-02-02 06:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:23", + "echoMap": {}, + "alarmNo": "1870248079", + "alarmDate": "1769983600083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122786", + "createdBy": null, + "createdTime": "2026-02-02 06:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:46", + "echoMap": {}, + "alarmNo": "1870248080", + "alarmDate": "1769984163287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122789", + "createdBy": null, + "createdTime": "2026-02-02 06:16:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:09", + "echoMap": {}, + "alarmNo": "1870248081", + "alarmDate": "1769984163547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769056813", + "createdBy": null, + "createdTime": "2026-02-02 06:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:39", + "echoMap": {}, + "alarmNo": "1870248082", + "alarmDate": "1769984186594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769056887", + "createdBy": null, + "createdTime": "2026-02-02 06:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:47", + "echoMap": {}, + "alarmNo": "1870248083", + "alarmDate": "1769984195373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057007", + "createdBy": null, + "createdTime": "2026-02-02 06:16:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:03", + "echoMap": {}, + "alarmNo": "1870248084", + "alarmDate": "1769984210605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057067", + "createdBy": null, + "createdTime": "2026-02-02 06:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:34", + "echoMap": {}, + "alarmNo": "1870248085", + "alarmDate": "1769984218456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057079", + "createdBy": null, + "createdTime": "2026-02-02 06:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:12", + "echoMap": {}, + "alarmNo": "1870248086", + "alarmDate": "1769984219508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057200", + "createdBy": null, + "createdTime": "2026-02-02 06:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:03", + "echoMap": {}, + "alarmNo": "1870248087", + "alarmDate": "1769984763457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060046", + "deviceName": "[301](10)紫藤1#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057311", + "createdBy": null, + "createdTime": "2026-02-02 06:26:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:26", + "echoMap": {}, + "alarmNo": "1870248088", + "alarmDate": "1769984774933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113407064024104", + "createdBy": null, + "createdTime": "2026-02-02 06:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:36", + "echoMap": {}, + "alarmNo": "1870248089", + "alarmDate": "1769984789565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991469", + "createdBy": null, + "createdTime": "2026-02-02 06:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:50", + "echoMap": {}, + "alarmNo": "1870248090", + "alarmDate": "1769984803954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991505", + "createdBy": null, + "createdTime": "2026-02-02 06:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:06", + "echoMap": {}, + "alarmNo": "1870248091", + "alarmDate": "1769984807594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991637", + "createdBy": null, + "createdTime": "2026-02-02 06:27:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:28", + "echoMap": {}, + "alarmNo": "1870248092", + "alarmDate": "1769984821973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991838", + "createdBy": null, + "createdTime": "2026-02-02 06:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:31", + "echoMap": {}, + "alarmNo": "1870248093", + "alarmDate": "1769985377821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948925956", + "createdBy": null, + "createdTime": "2026-02-02 06:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:54", + "echoMap": {}, + "alarmNo": "1870248094", + "alarmDate": "1769985402883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948926199", + "createdBy": null, + "createdTime": "2026-02-02 06:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:29", + "echoMap": {}, + "alarmNo": "1870248095", + "alarmDate": "1769985963913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948926229", + "createdBy": null, + "createdTime": "2026-02-02 06:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:13", + "echoMap": {}, + "alarmNo": "1870248096", + "alarmDate": "1769985967103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948926542", + "createdBy": null, + "createdTime": "2026-02-02 06:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:55", + "echoMap": {}, + "alarmNo": "1870248097", + "alarmDate": "1769986001543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538860726", + "createdBy": null, + "createdTime": "2026-02-02 06:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:07", + "echoMap": {}, + "alarmNo": "1870248098", + "alarmDate": "1769986562666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538860734", + "createdBy": null, + "createdTime": "2026-02-02 06:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:52", + "echoMap": {}, + "alarmNo": "1870248099", + "alarmDate": "1769986563100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538860879", + "createdBy": null, + "createdTime": "2026-02-02 06:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:52", + "echoMap": {}, + "alarmNo": "1870248100", + "alarmDate": "1769986575559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538861000", + "createdBy": null, + "createdTime": "2026-02-02 06:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:37", + "echoMap": {}, + "alarmNo": "1870248101", + "alarmDate": "1769986585408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113437128795216", + "createdBy": null, + "createdTime": "2026-02-02 06:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:01", + "echoMap": {}, + "alarmNo": "1870248102", + "alarmDate": "1769986609459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113437128795458", + "createdBy": null, + "createdTime": "2026-02-02 07:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:17", + "echoMap": {}, + "alarmNo": "1870248103", + "alarmDate": "1769987163264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113437128795649", + "createdBy": null, + "createdTime": "2026-02-02 07:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:32", + "echoMap": {}, + "alarmNo": "1870248104", + "alarmDate": "1769987178981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060070", + "deviceName": "[317](10)紫藤3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113445718729785", + "createdBy": null, + "createdTime": "2026-02-02 07:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:42", + "echoMap": {}, + "alarmNo": "1870248105", + "alarmDate": "1769987196004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113445718729967", + "createdBy": null, + "createdTime": "2026-02-02 07:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:56", + "echoMap": {}, + "alarmNo": "1870248106", + "alarmDate": "1769987210088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060070", + "deviceName": "[317](10)紫藤3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113454308664335", + "createdBy": null, + "createdTime": "2026-02-02 07:16:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:49", + "echoMap": {}, + "alarmNo": "1870248107", + "alarmDate": "1769987764236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113454308664365", + "createdBy": null, + "createdTime": "2026-02-02 07:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:18", + "echoMap": {}, + "alarmNo": "1870248108", + "alarmDate": "1769987766341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060070", + "deviceName": "[317](10)紫藤3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113454308664773", + "createdBy": null, + "createdTime": "2026-02-02 07:16:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:29", + "echoMap": {}, + "alarmNo": "1870248109", + "alarmDate": "1769987800568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113462898599262", + "createdBy": null, + "createdTime": "2026-02-02 07:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:34", + "echoMap": {}, + "alarmNo": "1870248110", + "alarmDate": "1769988368539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113467193566246", + "createdBy": null, + "createdTime": "2026-02-02 07:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:33", + "echoMap": {}, + "alarmNo": "1870248111", + "alarmDate": "1769988387094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113471488533783", + "createdBy": null, + "createdTime": "2026-02-02 07:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:07", + "echoMap": {}, + "alarmNo": "1870248112", + "alarmDate": "1769988411537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113471488533877", + "createdBy": null, + "createdTime": "2026-02-02 07:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:11", + "echoMap": {}, + "alarmNo": "1870248113", + "alarmDate": "1769988418854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113471488534015", + "createdBy": null, + "createdTime": "2026-02-02 07:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:27", + "echoMap": {}, + "alarmNo": "1870248115", + "alarmDate": "1769988963308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113480078468249", + "createdBy": null, + "createdTime": "2026-02-02 07:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:43", + "echoMap": {}, + "alarmNo": "1870248116", + "alarmDate": "1769988984932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113480078468364", + "createdBy": null, + "createdTime": "2026-02-02 07:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:16", + "echoMap": {}, + "alarmNo": "1870248117", + "alarmDate": "1769988994062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113480078468434", + "createdBy": null, + "createdTime": "2026-02-02 07:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:52", + "echoMap": {}, + "alarmNo": "1870248118", + "alarmDate": "1769988999353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113488668402748", + "createdBy": null, + "createdTime": "2026-02-02 07:46:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:28", + "echoMap": {}, + "alarmNo": "1870248119", + "alarmDate": "1769989562136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113488668402760", + "createdBy": null, + "createdTime": "2026-02-02 07:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:04", + "echoMap": {}, + "alarmNo": "1870248120", + "alarmDate": "1769989563579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113488668403146", + "createdBy": null, + "createdTime": "2026-02-02 07:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:05", + "echoMap": {}, + "alarmNo": "1870248121", + "alarmDate": "1769989594298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113497258337611", + "createdBy": null, + "createdTime": "2026-02-02 07:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:53", + "echoMap": {}, + "alarmNo": "1870248122", + "alarmDate": "1769989854309", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1030060028", + "deviceName": "[332](10)紫藤#2厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848271945", + "createdBy": null, + "createdTime": "2026-02-02 07:56:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:38", + "echoMap": {}, + "alarmNo": "1870248123", + "alarmDate": "1769990186268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060014", + "deviceName": "[312](10)紫藤2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848271974", + "createdBy": null, + "createdTime": "2026-02-02 07:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:17", + "echoMap": {}, + "alarmNo": "1870248124", + "alarmDate": "1769990188254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848271993", + "createdBy": null, + "createdTime": "2026-02-02 07:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:31", + "echoMap": {}, + "alarmNo": "1870248125", + "alarmDate": "1769990189489", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848272130", + "createdBy": null, + "createdTime": "2026-02-02 07:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:51", + "echoMap": {}, + "alarmNo": "1870248126", + "alarmDate": "1769990199204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848272242", + "createdBy": null, + "createdTime": "2026-02-02 07:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:59", + "echoMap": {}, + "alarmNo": "1870248127", + "alarmDate": "1769990206923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848272298", + "createdBy": null, + "createdTime": "2026-02-02 07:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:50", + "echoMap": {}, + "alarmNo": "1870248128", + "alarmDate": "1769990210428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060014", + "deviceName": "[312](10)紫藤2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206602", + "createdBy": null, + "createdTime": "2026-02-02 08:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:08", + "echoMap": {}, + "alarmNo": "1870248129", + "alarmDate": "1769990764060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206645", + "createdBy": null, + "createdTime": "2026-02-02 08:06:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:22", + "echoMap": {}, + "alarmNo": "1870248130", + "alarmDate": "1769990768703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206926", + "createdBy": null, + "createdTime": "2026-02-02 08:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:43", + "echoMap": {}, + "alarmNo": "1870248131", + "alarmDate": "1769990797042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206987", + "createdBy": null, + "createdTime": "2026-02-02 08:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:01", + "echoMap": {}, + "alarmNo": "1870248132", + "alarmDate": "1769990802763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141114", + "createdBy": null, + "createdTime": "2026-02-02 08:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:19", + "echoMap": {}, + "alarmNo": "1870248133", + "alarmDate": "1769990815130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141308", + "createdBy": null, + "createdTime": "2026-02-02 08:16:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:13", + "echoMap": {}, + "alarmNo": "1870248134", + "alarmDate": "1769991366988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141441", + "createdBy": null, + "createdTime": "2026-02-02 08:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:33", + "echoMap": {}, + "alarmNo": "1870248135", + "alarmDate": "1769991380850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141530", + "createdBy": null, + "createdTime": "2026-02-02 08:16:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:38", + "echoMap": {}, + "alarmNo": "1870248136", + "alarmDate": "1769991391368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141558", + "createdBy": null, + "createdTime": "2026-02-02 08:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:20", + "echoMap": {}, + "alarmNo": "1870248137", + "alarmDate": "1769991394332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141610", + "createdBy": null, + "createdTime": "2026-02-02 08:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:46", + "echoMap": {}, + "alarmNo": "1870248138", + "alarmDate": "1769991399539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113527323108376", + "createdBy": null, + "createdTime": "2026-02-02 08:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:02", + "echoMap": {}, + "alarmNo": "1870248139", + "alarmDate": "1769991404879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113531618075694", + "createdBy": null, + "createdTime": "2026-02-02 08:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:58", + "echoMap": {}, + "alarmNo": "1870248140", + "alarmDate": "1769991412420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113531618075952", + "createdBy": null, + "createdTime": "2026-02-02 08:26:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:08", + "echoMap": {}, + "alarmNo": "1870248141", + "alarmDate": "1769991963618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113531618075968", + "createdBy": null, + "createdTime": "2026-02-02 08:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:17", + "echoMap": {}, + "alarmNo": "1870248142", + "alarmDate": "1769991965328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113540208010330", + "createdBy": null, + "createdTime": "2026-02-02 08:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:17", + "echoMap": {}, + "alarmNo": "1870248143", + "alarmDate": "1769992000938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113540208010336", + "createdBy": null, + "createdTime": "2026-02-02 08:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:53", + "echoMap": {}, + "alarmNo": "1870248144", + "alarmDate": "1769992001413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113540208010372", + "createdBy": null, + "createdTime": "2026-02-02 08:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:14", + "echoMap": {}, + "alarmNo": "1870248145", + "alarmDate": "1769992004652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113544502977536", + "createdBy": null, + "createdTime": "2026-02-02 08:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:36", + "echoMap": {}, + "alarmNo": "1870248146", + "alarmDate": "1769992583655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945043", + "createdBy": null, + "createdTime": "2026-02-02 08:36:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:59", + "echoMap": {}, + "alarmNo": "1870248147", + "alarmDate": "1769992613203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945281", + "createdBy": null, + "createdTime": "2026-02-02 08:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:16", + "echoMap": {}, + "alarmNo": "1870248148", + "alarmDate": "1769993170015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945335", + "createdBy": null, + "createdTime": "2026-02-02 08:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:22", + "echoMap": {}, + "alarmNo": "1870248149", + "alarmDate": "1769993175922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060038", + "deviceName": "[322](10)紫藤4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945376", + "createdBy": null, + "createdTime": "2026-02-02 08:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:33", + "echoMap": {}, + "alarmNo": "1870248150", + "alarmDate": "1769993180483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945471", + "createdBy": null, + "createdTime": "2026-02-02 08:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1870248151", + "alarmDate": "1769993191930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945475", + "createdBy": null, + "createdTime": "2026-02-02 08:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:57", + "echoMap": {}, + "alarmNo": "1870248152", + "alarmDate": "1769993192079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945478", + "createdBy": null, + "createdTime": "2026-02-02 08:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1870248153", + "alarmDate": "1769993192178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060041", + "deviceName": "[408](10)紫藤3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945503", + "createdBy": null, + "createdTime": "2026-02-02 08:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:40", + "echoMap": {}, + "alarmNo": "1870248154", + "alarmDate": "1769993194082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113553092912150", + "createdBy": null, + "createdTime": "2026-02-02 08:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:03", + "echoMap": {}, + "alarmNo": "1870248155", + "alarmDate": "1769993204586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879670", + "createdBy": null, + "createdTime": "2026-02-02 08:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:17", + "echoMap": {}, + "alarmNo": "1870248156", + "alarmDate": "1769993763398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879671", + "createdBy": null, + "createdTime": "2026-02-02 08:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:08", + "echoMap": {}, + "alarmNo": "1870248157", + "alarmDate": "1769993763402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879870", + "createdBy": null, + "createdTime": "2026-02-02 08:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:40", + "echoMap": {}, + "alarmNo": "1870248158", + "alarmDate": "1769993788412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879908", + "createdBy": null, + "createdTime": "2026-02-02 08:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:15", + "echoMap": {}, + "alarmNo": "1870248159", + "alarmDate": "1769993792339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879963", + "createdBy": null, + "createdTime": "2026-02-02 08:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:43", + "echoMap": {}, + "alarmNo": "1870248160", + "alarmDate": "1769993797406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387880119", + "createdBy": null, + "createdTime": "2026-02-02 08:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:41", + "echoMap": {}, + "alarmNo": "1870248161", + "alarmDate": "1769993812532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113565977814356", + "createdBy": null, + "createdTime": "2026-02-02 09:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:31", + "echoMap": {}, + "alarmNo": "1870248162", + "alarmDate": "1769994384573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113565977814377", + "createdBy": null, + "createdTime": "2026-02-02 09:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:44", + "echoMap": {}, + "alarmNo": "1870248163", + "alarmDate": "1769994386624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113565977814699", + "createdBy": null, + "createdTime": "2026-02-02 09:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:23", + "echoMap": {}, + "alarmNo": "1870248164", + "alarmDate": "1769994421697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567748814", + "createdBy": null, + "createdTime": "2026-02-02 09:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:51", + "echoMap": {}, + "alarmNo": "1870248165", + "alarmDate": "1769994987002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567748888", + "createdBy": null, + "createdTime": "2026-02-02 09:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:01", + "echoMap": {}, + "alarmNo": "1870248166", + "alarmDate": "1769994994896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567749073", + "createdBy": null, + "createdTime": "2026-02-02 09:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1870248167", + "alarmDate": "1769995014009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567749147", + "createdBy": null, + "createdTime": "2026-02-02 09:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:21", + "echoMap": {}, + "alarmNo": "1870248168", + "alarmDate": "1769995022039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567749360", + "createdBy": null, + "createdTime": "2026-02-02 09:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:28", + "echoMap": {}, + "alarmNo": "1870248169", + "alarmDate": "1769995575952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113583157683508", + "createdBy": null, + "createdTime": "2026-02-02 09:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:56", + "echoMap": {}, + "alarmNo": "1870248170", + "alarmDate": "1769995617250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113583157683658", + "createdBy": null, + "createdTime": "2026-02-02 09:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:23", + "echoMap": {}, + "alarmNo": "1870248171", + "alarmDate": "1769996164583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113591747617863", + "createdBy": null, + "createdTime": "2026-02-02 09:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:06", + "echoMap": {}, + "alarmNo": "1870248172", + "alarmDate": "1769996209424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113591747618105", + "createdBy": null, + "createdTime": "2026-02-02 09:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:08", + "echoMap": {}, + "alarmNo": "1870248173", + "alarmDate": "1769996762708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113591747618419", + "createdBy": null, + "createdTime": "2026-02-02 09:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:33", + "echoMap": {}, + "alarmNo": "1870248174", + "alarmDate": "1769996794814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337552580", + "createdBy": null, + "createdTime": "2026-02-02 09:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:09", + "echoMap": {}, + "alarmNo": "1870248175", + "alarmDate": "1769997362614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337552768", + "createdBy": null, + "createdTime": "2026-02-02 09:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:33", + "echoMap": {}, + "alarmNo": "1870248176", + "alarmDate": "1769997386807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337552981", + "createdBy": null, + "createdTime": "2026-02-02 09:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:59", + "echoMap": {}, + "alarmNo": "1870248177", + "alarmDate": "1769997413425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060055", + "deviceName": "[323](10)紫藤4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337553015", + "createdBy": null, + "createdTime": "2026-02-02 09:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:06", + "echoMap": {}, + "alarmNo": "1870248178", + "alarmDate": "1769997417214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337553153", + "createdBy": null, + "createdTime": "2026-02-02 10:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:09", + "echoMap": {}, + "alarmNo": "1870248179", + "alarmDate": "1769997962940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337553223", + "createdBy": null, + "createdTime": "2026-02-02 10:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:24", + "echoMap": {}, + "alarmNo": "1870248180", + "alarmDate": "1769997971791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113608927487109", + "createdBy": null, + "createdTime": "2026-02-02 10:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:51", + "echoMap": {}, + "alarmNo": "1870248181", + "alarmDate": "1769997998962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113608927487444", + "createdBy": null, + "createdTime": "2026-02-02 10:16:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:15", + "echoMap": {}, + "alarmNo": "1870248182", + "alarmDate": "1769998569064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113613222454277", + "createdBy": null, + "createdTime": "2026-02-02 10:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:45", + "echoMap": {}, + "alarmNo": "1870248183", + "alarmDate": "1769998587141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113617517421700", + "createdBy": null, + "createdTime": "2026-02-02 10:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:36", + "echoMap": {}, + "alarmNo": "1870248184", + "alarmDate": "1769998608087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113617517421964", + "createdBy": null, + "createdTime": "2026-02-02 10:26:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:09", + "echoMap": {}, + "alarmNo": "1870248185", + "alarmDate": "1769999164381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060071", + "deviceName": "[318](10)紫藤3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113617517422200", + "createdBy": null, + "createdTime": "2026-02-02 10:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:35", + "echoMap": {}, + "alarmNo": "1870248186", + "alarmDate": "1769999189035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113621812388870", + "createdBy": null, + "createdTime": "2026-02-02 10:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:48", + "echoMap": {}, + "alarmNo": "1870248187", + "alarmDate": "1769999190121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113621812388901", + "createdBy": null, + "createdTime": "2026-02-02 10:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:52", + "echoMap": {}, + "alarmNo": "1870248188", + "alarmDate": "1769999192956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113626107356499", + "createdBy": null, + "createdTime": "2026-02-02 10:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:45", + "echoMap": {}, + "alarmNo": "1870248189", + "alarmDate": "1769999764058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113626107356538", + "createdBy": null, + "createdTime": "2026-02-02 10:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:33", + "echoMap": {}, + "alarmNo": "1870248190", + "alarmDate": "1769999768436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113626107356629", + "createdBy": null, + "createdTime": "2026-02-02 10:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:24", + "echoMap": {}, + "alarmNo": "1870248191", + "alarmDate": "1769999778190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113634697291173", + "createdBy": null, + "createdTime": "2026-02-02 10:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:59", + "echoMap": {}, + "alarmNo": "1870248192", + "alarmDate": "1770000378541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113643287225426", + "createdBy": null, + "createdTime": "2026-02-02 10:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:58", + "echoMap": {}, + "alarmNo": "1870248193", + "alarmDate": "1770000411666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113651877160137", + "createdBy": null, + "createdTime": "2026-02-02 11:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:22", + "echoMap": {}, + "alarmNo": "1870248194", + "alarmDate": "1770001562075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113651877160151", + "createdBy": null, + "createdTime": "2026-02-02 11:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:23", + "echoMap": {}, + "alarmNo": "1870248195", + "alarmDate": "1770001563998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113651877160428", + "createdBy": null, + "createdTime": "2026-02-02 11:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:10", + "echoMap": {}, + "alarmNo": "1870248196", + "alarmDate": "1770001594996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094610", + "createdBy": null, + "createdTime": "2026-02-02 11:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:17", + "echoMap": {}, + "alarmNo": "1870248197", + "alarmDate": "1770002162340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094617", + "createdBy": null, + "createdTime": "2026-02-02 11:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:42", + "echoMap": {}, + "alarmNo": "1870248198", + "alarmDate": "1770002163268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094820", + "createdBy": null, + "createdTime": "2026-02-02 11:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:11", + "echoMap": {}, + "alarmNo": "1870248199", + "alarmDate": "1770002189348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094914", + "createdBy": null, + "createdTime": "2026-02-02 11:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:46", + "echoMap": {}, + "alarmNo": "1870248200", + "alarmDate": "1770002200342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467095070", + "createdBy": null, + "createdTime": "2026-02-02 11:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:23", + "echoMap": {}, + "alarmNo": "1870248201", + "alarmDate": "1770002218459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029292", + "createdBy": null, + "createdTime": "2026-02-02 11:26:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:29", + "echoMap": {}, + "alarmNo": "1870248202", + "alarmDate": "1770002783448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029403", + "createdBy": null, + "createdTime": "2026-02-02 11:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:01", + "echoMap": {}, + "alarmNo": "1870248203", + "alarmDate": "1770002800524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029413", + "createdBy": null, + "createdTime": "2026-02-02 11:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:23", + "echoMap": {}, + "alarmNo": "1870248204", + "alarmDate": "1770002801449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029523", + "createdBy": null, + "createdTime": "2026-02-02 11:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:01", + "echoMap": {}, + "alarmNo": "1870248205", + "alarmDate": "1770002815088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029581", + "createdBy": null, + "createdTime": "2026-02-02 11:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:38", + "echoMap": {}, + "alarmNo": "1870248206", + "alarmDate": "1770002821310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029693", + "createdBy": null, + "createdTime": "2026-02-02 11:36:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:03", + "echoMap": {}, + "alarmNo": "1870248207", + "alarmDate": "1770003361875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029697", + "createdBy": null, + "createdTime": "2026-02-02 11:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:33", + "echoMap": {}, + "alarmNo": "1870248208", + "alarmDate": "1770003362782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029703", + "createdBy": null, + "createdTime": "2026-02-02 11:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:08", + "echoMap": {}, + "alarmNo": "1870248209", + "alarmDate": "1770003363823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113673351996418", + "createdBy": null, + "createdTime": "2026-02-02 11:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:12", + "echoMap": {}, + "alarmNo": "1870248210", + "alarmDate": "1770003364264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113677646963790", + "createdBy": null, + "createdTime": "2026-02-02 11:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:44", + "echoMap": {}, + "alarmNo": "1870248211", + "alarmDate": "1770003379808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113677646963959", + "createdBy": null, + "createdTime": "2026-02-02 11:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:44", + "echoMap": {}, + "alarmNo": "1870248212", + "alarmDate": "1770003397296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113686236898321", + "createdBy": null, + "createdTime": "2026-02-02 11:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:59", + "echoMap": {}, + "alarmNo": "1870248213", + "alarmDate": "1770003964001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113686236898627", + "createdBy": null, + "createdTime": "2026-02-02 11:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:38", + "echoMap": {}, + "alarmNo": "1870248214", + "alarmDate": "1770004001658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113694826833178", + "createdBy": null, + "createdTime": "2026-02-02 11:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:26", + "echoMap": {}, + "alarmNo": "1870248215", + "alarmDate": "1770004612271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113694826833484", + "createdBy": null, + "createdTime": "2026-02-02 12:03:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:53", + "echoMap": {}, + "alarmNo": "1870248216", + "alarmDate": "1770005034093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1030060028", + "deviceName": "[332](10)紫藤#2厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767493", + "createdBy": null, + "createdTime": "2026-02-02 12:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:27", + "echoMap": {}, + "alarmNo": "1870248217", + "alarmDate": "1770005180725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767613", + "createdBy": null, + "createdTime": "2026-02-02 12:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:41", + "echoMap": {}, + "alarmNo": "1870248218", + "alarmDate": "1770005194655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767700", + "createdBy": null, + "createdTime": "2026-02-02 12:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:04", + "echoMap": {}, + "alarmNo": "1870248219", + "alarmDate": "1770005205466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767769", + "createdBy": null, + "createdTime": "2026-02-02 12:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:47", + "echoMap": {}, + "alarmNo": "1870248220", + "alarmDate": "1770005213753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416768004", + "createdBy": null, + "createdTime": "2026-02-02 12:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:29", + "echoMap": {}, + "alarmNo": "1870248221", + "alarmDate": "1770005762796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113712006702319", + "createdBy": null, + "createdTime": "2026-02-02 12:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:00", + "echoMap": {}, + "alarmNo": "1870248222", + "alarmDate": "1770005795418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113712006702545", + "createdBy": null, + "createdTime": "2026-02-02 12:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:05", + "echoMap": {}, + "alarmNo": "1870248223", + "alarmDate": "1770005820299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113729186571391", + "createdBy": null, + "createdTime": "2026-02-02 12:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:18", + "echoMap": {}, + "alarmNo": "1870248224", + "alarmDate": "1770006972284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060055", + "deviceName": "[323](10)紫藤4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113729186571774", + "createdBy": null, + "createdTime": "2026-02-02 12:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:20", + "echoMap": {}, + "alarmNo": "1870248225", + "alarmDate": "1770007016218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113733481538609", + "createdBy": null, + "createdTime": "2026-02-02 12:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:42", + "echoMap": {}, + "alarmNo": "1870248226", + "alarmDate": "1770007566002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113737776506253", + "createdBy": null, + "createdTime": "2026-02-02 12:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:24", + "echoMap": {}, + "alarmNo": "1870248227", + "alarmDate": "1770007613988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113737776506285", + "createdBy": null, + "createdTime": "2026-02-02 12:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:06", + "echoMap": {}, + "alarmNo": "1870248228", + "alarmDate": "1770007617484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113746366440506", + "createdBy": null, + "createdTime": "2026-02-02 12:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:38", + "echoMap": {}, + "alarmNo": "1870248229", + "alarmDate": "1770008177756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113754956375462", + "createdBy": null, + "createdTime": "2026-02-02 13:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:47", + "echoMap": {}, + "alarmNo": "1870248230", + "alarmDate": "1770008816083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113763546309937", + "createdBy": null, + "createdTime": "2026-02-02 13:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:56", + "echoMap": {}, + "alarmNo": "1870248231", + "alarmDate": "1770009402528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113763546310183", + "createdBy": null, + "createdTime": "2026-02-02 13:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:41", + "echoMap": {}, + "alarmNo": "1870248232", + "alarmDate": "1770009962680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244268", + "createdBy": null, + "createdTime": "2026-02-02 13:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:20", + "echoMap": {}, + "alarmNo": "1870248233", + "alarmDate": "1770009979227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060068", + "deviceName": "[211](10)紫藤3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244419", + "createdBy": null, + "createdTime": "2026-02-02 13:26:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:44", + "echoMap": {}, + "alarmNo": "1870248234", + "alarmDate": "1770009997680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244449", + "createdBy": null, + "createdTime": "2026-02-02 13:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:53", + "echoMap": {}, + "alarmNo": "1870248235", + "alarmDate": "1770010000885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244519", + "createdBy": null, + "createdTime": "2026-02-02 13:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:34", + "echoMap": {}, + "alarmNo": "1870248236", + "alarmDate": "1770010009683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244569", + "createdBy": null, + "createdTime": "2026-02-02 13:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:09", + "echoMap": {}, + "alarmNo": "1870248237", + "alarmDate": "1770010015649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244580", + "createdBy": null, + "createdTime": "2026-02-02 13:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:32", + "echoMap": {}, + "alarmNo": "1870248238", + "alarmDate": "1770010016931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113776431211527", + "createdBy": null, + "createdTime": "2026-02-02 13:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:09", + "echoMap": {}, + "alarmNo": "1870248239", + "alarmDate": "1770010565032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113780726179141", + "createdBy": null, + "createdTime": "2026-02-02 13:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:57", + "echoMap": {}, + "alarmNo": "1870248240", + "alarmDate": "1770010617299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113780726179274", + "createdBy": null, + "createdTime": "2026-02-02 13:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:14", + "echoMap": {}, + "alarmNo": "1870248241", + "alarmDate": "1770011164259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113789316113420", + "createdBy": null, + "createdTime": "2026-02-02 13:46:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:24", + "echoMap": {}, + "alarmNo": "1870248242", + "alarmDate": "1770011178033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113789316113488", + "createdBy": null, + "createdTime": "2026-02-02 13:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:32", + "echoMap": {}, + "alarmNo": "1870248243", + "alarmDate": "1770011186385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113789316113640", + "createdBy": null, + "createdTime": "2026-02-02 13:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:46", + "echoMap": {}, + "alarmNo": "1870248244", + "alarmDate": "1770011205346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113793611080772", + "createdBy": null, + "createdTime": "2026-02-02 13:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:33", + "echoMap": {}, + "alarmNo": "1870248245", + "alarmDate": "1770011787447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113797906048068", + "createdBy": null, + "createdTime": "2026-02-02 13:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:43", + "echoMap": {}, + "alarmNo": "1870248246", + "alarmDate": "1770011796383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113797906048377", + "createdBy": null, + "createdTime": "2026-02-02 14:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:28", + "echoMap": {}, + "alarmNo": "1870248247", + "alarmDate": "1770012362726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113797906048386", + "createdBy": null, + "createdTime": "2026-02-02 14:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:54", + "echoMap": {}, + "alarmNo": "1870248248", + "alarmDate": "1770012363937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113802201015356", + "createdBy": null, + "createdTime": "2026-02-02 14:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:52", + "echoMap": {}, + "alarmNo": "1870248249", + "alarmDate": "1770012399902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113806495982852", + "createdBy": null, + "createdTime": "2026-02-02 14:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:03", + "echoMap": {}, + "alarmNo": "1870248250", + "alarmDate": "1770012962954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113806495983045", + "createdBy": null, + "createdTime": "2026-02-02 14:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:57", + "echoMap": {}, + "alarmNo": "1870248251", + "alarmDate": "1770012987030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113815085917215", + "createdBy": null, + "createdTime": "2026-02-02 14:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:59", + "echoMap": {}, + "alarmNo": "1870248252", + "alarmDate": "1770013019180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113815085917486", + "createdBy": null, + "createdTime": "2026-02-02 14:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:44", + "echoMap": {}, + "alarmNo": "1870248253", + "alarmDate": "1770013579318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113815085917604", + "createdBy": null, + "createdTime": "2026-02-02 14:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:31", + "echoMap": {}, + "alarmNo": "1870248254", + "alarmDate": "1770013590997", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675851808", + "createdBy": null, + "createdTime": "2026-02-02 14:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:57", + "echoMap": {}, + "alarmNo": "1870248255", + "alarmDate": "1770013617465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675851952", + "createdBy": null, + "createdTime": "2026-02-02 14:36:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:09", + "echoMap": {}, + "alarmNo": "1870248256", + "alarmDate": "1770014162377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675852089", + "createdBy": null, + "createdTime": "2026-02-02 14:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "alarmNo": "1870248257", + "alarmDate": "1770014181363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675852185", + "createdBy": null, + "createdTime": "2026-02-02 14:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:33", + "echoMap": {}, + "alarmNo": "1870248258", + "alarmDate": "1770014192995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [ + { + "id": "723113471488533920", + "createdBy": null, + "createdTime": "2026-02-02 07:27:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:14", + "echoMap": {}, + "alarmNo": "1870248114", + "alarmDate": "1769988437622", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1030040007", + "deviceName": "H3C前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1030" + } + ], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113823675852185", + "createdBy": null, + "createdTime": "2026-02-02 14:36:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:33", + "echoMap": {}, + "alarmNo": "1870248258", + "alarmDate": "1770014192995", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675852089", + "createdBy": null, + "createdTime": "2026-02-02 14:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "alarmNo": "1870248257", + "alarmDate": "1770014181363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675851952", + "createdBy": null, + "createdTime": "2026-02-02 14:36:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:09", + "echoMap": {}, + "alarmNo": "1870248256", + "alarmDate": "1770014162377", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113823675851808", + "createdBy": null, + "createdTime": "2026-02-02 14:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:57", + "echoMap": {}, + "alarmNo": "1870248255", + "alarmDate": "1770013617465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113815085917604", + "createdBy": null, + "createdTime": "2026-02-02 14:26:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:31", + "echoMap": {}, + "alarmNo": "1870248254", + "alarmDate": "1770013590997", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113815085917486", + "createdBy": null, + "createdTime": "2026-02-02 14:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:44", + "echoMap": {}, + "alarmNo": "1870248253", + "alarmDate": "1770013579318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113815085917215", + "createdBy": null, + "createdTime": "2026-02-02 14:16:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:59", + "echoMap": {}, + "alarmNo": "1870248252", + "alarmDate": "1770013019180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113806495983045", + "createdBy": null, + "createdTime": "2026-02-02 14:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:57", + "echoMap": {}, + "alarmNo": "1870248251", + "alarmDate": "1770012987030", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113806495982852", + "createdBy": null, + "createdTime": "2026-02-02 14:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:03", + "echoMap": {}, + "alarmNo": "1870248250", + "alarmDate": "1770012962954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113802201015356", + "createdBy": null, + "createdTime": "2026-02-02 14:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:52", + "echoMap": {}, + "alarmNo": "1870248249", + "alarmDate": "1770012399902", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113797906048386", + "createdBy": null, + "createdTime": "2026-02-02 14:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:54", + "echoMap": {}, + "alarmNo": "1870248248", + "alarmDate": "1770012363937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113797906048377", + "createdBy": null, + "createdTime": "2026-02-02 14:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:28", + "echoMap": {}, + "alarmNo": "1870248247", + "alarmDate": "1770012362726", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113797906048068", + "createdBy": null, + "createdTime": "2026-02-02 13:56:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:43", + "echoMap": {}, + "alarmNo": "1870248246", + "alarmDate": "1770011796383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113793611080772", + "createdBy": null, + "createdTime": "2026-02-02 13:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:33", + "echoMap": {}, + "alarmNo": "1870248245", + "alarmDate": "1770011787447", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113789316113640", + "createdBy": null, + "createdTime": "2026-02-02 13:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:46", + "echoMap": {}, + "alarmNo": "1870248244", + "alarmDate": "1770011205346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113789316113488", + "createdBy": null, + "createdTime": "2026-02-02 13:46:26", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:32", + "echoMap": {}, + "alarmNo": "1870248243", + "alarmDate": "1770011186385", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113789316113420", + "createdBy": null, + "createdTime": "2026-02-02 13:46:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:24", + "echoMap": {}, + "alarmNo": "1870248242", + "alarmDate": "1770011178033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113780726179274", + "createdBy": null, + "createdTime": "2026-02-02 13:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:14", + "echoMap": {}, + "alarmNo": "1870248241", + "alarmDate": "1770011164259", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113780726179141", + "createdBy": null, + "createdTime": "2026-02-02 13:36:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:57", + "echoMap": {}, + "alarmNo": "1870248240", + "alarmDate": "1770010617299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113776431211527", + "createdBy": null, + "createdTime": "2026-02-02 13:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:09", + "echoMap": {}, + "alarmNo": "1870248239", + "alarmDate": "1770010565032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244580", + "createdBy": null, + "createdTime": "2026-02-02 13:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:32", + "echoMap": {}, + "alarmNo": "1870248238", + "alarmDate": "1770010016931", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244569", + "createdBy": null, + "createdTime": "2026-02-02 13:26:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:09", + "echoMap": {}, + "alarmNo": "1870248237", + "alarmDate": "1770010015649", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244519", + "createdBy": null, + "createdTime": "2026-02-02 13:26:50", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:34", + "echoMap": {}, + "alarmNo": "1870248236", + "alarmDate": "1770010009683", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244449", + "createdBy": null, + "createdTime": "2026-02-02 13:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:53", + "echoMap": {}, + "alarmNo": "1870248235", + "alarmDate": "1770010000885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244419", + "createdBy": null, + "createdTime": "2026-02-02 13:26:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:44", + "echoMap": {}, + "alarmNo": "1870248234", + "alarmDate": "1770009997680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113772136244268", + "createdBy": null, + "createdTime": "2026-02-02 13:26:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:20", + "echoMap": {}, + "alarmNo": "1870248233", + "alarmDate": "1770009979227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060068", + "deviceName": "[211](10)紫藤3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113763546310183", + "createdBy": null, + "createdTime": "2026-02-02 13:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:41", + "echoMap": {}, + "alarmNo": "1870248232", + "alarmDate": "1770009962680", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113763546309937", + "createdBy": null, + "createdTime": "2026-02-02 13:16:43", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:56", + "echoMap": {}, + "alarmNo": "1870248231", + "alarmDate": "1770009402528", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113754956375462", + "createdBy": null, + "createdTime": "2026-02-02 13:06:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:47", + "echoMap": {}, + "alarmNo": "1870248230", + "alarmDate": "1770008816083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113746366440506", + "createdBy": null, + "createdTime": "2026-02-02 12:56:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:38", + "echoMap": {}, + "alarmNo": "1870248229", + "alarmDate": "1770008177756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113737776506285", + "createdBy": null, + "createdTime": "2026-02-02 12:46:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:56:06", + "echoMap": {}, + "alarmNo": "1870248228", + "alarmDate": "1770007617484", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113737776506253", + "createdBy": null, + "createdTime": "2026-02-02 12:46:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:56:24", + "echoMap": {}, + "alarmNo": "1870248227", + "alarmDate": "1770007613988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113733481538609", + "createdBy": null, + "createdTime": "2026-02-02 12:46:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:42", + "echoMap": {}, + "alarmNo": "1870248226", + "alarmDate": "1770007566002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113729186571774", + "createdBy": null, + "createdTime": "2026-02-02 12:36:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:46:20", + "echoMap": {}, + "alarmNo": "1870248225", + "alarmDate": "1770007016218", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113729186571391", + "createdBy": null, + "createdTime": "2026-02-02 12:36:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:18", + "echoMap": {}, + "alarmNo": "1870248224", + "alarmDate": "1770006972284", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060055", + "deviceName": "[323](10)紫藤4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113712006702545", + "createdBy": null, + "createdTime": "2026-02-02 12:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:46:05", + "echoMap": {}, + "alarmNo": "1870248223", + "alarmDate": "1770005820299", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113712006702319", + "createdBy": null, + "createdTime": "2026-02-02 12:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:27:00", + "echoMap": {}, + "alarmNo": "1870248222", + "alarmDate": "1770005795418", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416768004", + "createdBy": null, + "createdTime": "2026-02-02 12:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:29", + "echoMap": {}, + "alarmNo": "1870248221", + "alarmDate": "1770005762796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767769", + "createdBy": null, + "createdTime": "2026-02-02 12:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:06:47", + "echoMap": {}, + "alarmNo": "1870248220", + "alarmDate": "1770005213753", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767700", + "createdBy": null, + "createdTime": "2026-02-02 12:06:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:06:04", + "echoMap": {}, + "alarmNo": "1870248219", + "alarmDate": "1770005205466", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767613", + "createdBy": null, + "createdTime": "2026-02-02 12:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:41", + "echoMap": {}, + "alarmNo": "1870248218", + "alarmDate": "1770005194655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113703416767493", + "createdBy": null, + "createdTime": "2026-02-02 12:06:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:27", + "echoMap": {}, + "alarmNo": "1870248217", + "alarmDate": "1770005180725", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113694826833484", + "createdBy": null, + "createdTime": "2026-02-02 12:03:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:53", + "echoMap": {}, + "alarmNo": "1870248216", + "alarmDate": "1770005034093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1030060028", + "deviceName": "[332](10)紫藤#2厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113694826833178", + "createdBy": null, + "createdTime": "2026-02-02 11:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:16:26", + "echoMap": {}, + "alarmNo": "1870248215", + "alarmDate": "1770004612271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113686236898627", + "createdBy": null, + "createdTime": "2026-02-02 11:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:36:38", + "echoMap": {}, + "alarmNo": "1870248214", + "alarmDate": "1770004001658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113686236898321", + "createdBy": null, + "createdTime": "2026-02-02 11:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:46:59", + "echoMap": {}, + "alarmNo": "1870248213", + "alarmDate": "1770003964001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113677646963959", + "createdBy": null, + "createdTime": "2026-02-02 11:36:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:44", + "echoMap": {}, + "alarmNo": "1870248212", + "alarmDate": "1770003397296", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113677646963790", + "createdBy": null, + "createdTime": "2026-02-02 11:36:20", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:44", + "echoMap": {}, + "alarmNo": "1870248211", + "alarmDate": "1770003379808", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113673351996418", + "createdBy": null, + "createdTime": "2026-02-02 11:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:12", + "echoMap": {}, + "alarmNo": "1870248210", + "alarmDate": "1770003364264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029703", + "createdBy": null, + "createdTime": "2026-02-02 11:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:08", + "echoMap": {}, + "alarmNo": "1870248209", + "alarmDate": "1770003363823", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029697", + "createdBy": null, + "createdTime": "2026-02-02 11:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:33", + "echoMap": {}, + "alarmNo": "1870248208", + "alarmDate": "1770003362782", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029693", + "createdBy": null, + "createdTime": "2026-02-02 11:36:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:06:03", + "echoMap": {}, + "alarmNo": "1870248207", + "alarmDate": "1770003361875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029581", + "createdBy": null, + "createdTime": "2026-02-02 11:27:01", + "updatedBy": null, + "updatedTime": "2026-02-02 11:36:38", + "echoMap": {}, + "alarmNo": "1870248206", + "alarmDate": "1770002821310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029523", + "createdBy": null, + "createdTime": "2026-02-02 11:26:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:01", + "echoMap": {}, + "alarmNo": "1870248205", + "alarmDate": "1770002815088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029413", + "createdBy": null, + "createdTime": "2026-02-02 11:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:16:23", + "echoMap": {}, + "alarmNo": "1870248204", + "alarmDate": "1770002801449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029403", + "createdBy": null, + "createdTime": "2026-02-02 11:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:01", + "echoMap": {}, + "alarmNo": "1870248203", + "alarmDate": "1770002800524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113669057029292", + "createdBy": null, + "createdTime": "2026-02-02 11:26:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:29", + "echoMap": {}, + "alarmNo": "1870248202", + "alarmDate": "1770002783448", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467095070", + "createdBy": null, + "createdTime": "2026-02-02 11:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:23", + "echoMap": {}, + "alarmNo": "1870248201", + "alarmDate": "1770002218459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094914", + "createdBy": null, + "createdTime": "2026-02-02 11:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:46", + "echoMap": {}, + "alarmNo": "1870248200", + "alarmDate": "1770002200342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094820", + "createdBy": null, + "createdTime": "2026-02-02 11:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:11", + "echoMap": {}, + "alarmNo": "1870248199", + "alarmDate": "1770002189348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094617", + "createdBy": null, + "createdTime": "2026-02-02 11:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:42", + "echoMap": {}, + "alarmNo": "1870248198", + "alarmDate": "1770002163268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113660467094610", + "createdBy": null, + "createdTime": "2026-02-02 11:16:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:17", + "echoMap": {}, + "alarmNo": "1870248197", + "alarmDate": "1770002162340", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113651877160428", + "createdBy": null, + "createdTime": "2026-02-02 11:06:35", + "updatedBy": null, + "updatedTime": "2026-02-02 11:16:10", + "echoMap": {}, + "alarmNo": "1870248196", + "alarmDate": "1770001594996", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113651877160151", + "createdBy": null, + "createdTime": "2026-02-02 11:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:23", + "echoMap": {}, + "alarmNo": "1870248195", + "alarmDate": "1770001563998", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113651877160137", + "createdBy": null, + "createdTime": "2026-02-02 11:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:26:22", + "echoMap": {}, + "alarmNo": "1870248194", + "alarmDate": "1770001562075", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113643287225426", + "createdBy": null, + "createdTime": "2026-02-02 10:46:52", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:58", + "echoMap": {}, + "alarmNo": "1870248193", + "alarmDate": "1770000411666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113634697291173", + "createdBy": null, + "createdTime": "2026-02-02 10:46:19", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:59", + "echoMap": {}, + "alarmNo": "1870248192", + "alarmDate": "1770000378541", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113626107356629", + "createdBy": null, + "createdTime": "2026-02-02 10:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 10:36:24", + "echoMap": {}, + "alarmNo": "1870248191", + "alarmDate": "1769999778190", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113626107356538", + "createdBy": null, + "createdTime": "2026-02-02 10:36:08", + "updatedBy": null, + "updatedTime": "2026-02-02 10:56:33", + "echoMap": {}, + "alarmNo": "1870248190", + "alarmDate": "1769999768436", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113626107356499", + "createdBy": null, + "createdTime": "2026-02-02 10:36:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:26:45", + "echoMap": {}, + "alarmNo": "1870248189", + "alarmDate": "1769999764058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113621812388901", + "createdBy": null, + "createdTime": "2026-02-02 10:26:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:52", + "echoMap": {}, + "alarmNo": "1870248188", + "alarmDate": "1769999192956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113621812388870", + "createdBy": null, + "createdTime": "2026-02-02 10:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:48", + "echoMap": {}, + "alarmNo": "1870248187", + "alarmDate": "1769999190121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113617517422200", + "createdBy": null, + "createdTime": "2026-02-02 10:26:29", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:35", + "echoMap": {}, + "alarmNo": "1870248186", + "alarmDate": "1769999189035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113617517421964", + "createdBy": null, + "createdTime": "2026-02-02 10:26:04", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:09", + "echoMap": {}, + "alarmNo": "1870248185", + "alarmDate": "1769999164381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060071", + "deviceName": "[318](10)紫藤3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113617517421700", + "createdBy": null, + "createdTime": "2026-02-02 10:16:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:36", + "echoMap": {}, + "alarmNo": "1870248184", + "alarmDate": "1769998608087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113613222454277", + "createdBy": null, + "createdTime": "2026-02-02 10:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:45", + "echoMap": {}, + "alarmNo": "1870248183", + "alarmDate": "1769998587141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113608927487444", + "createdBy": null, + "createdTime": "2026-02-02 10:16:09", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:15", + "echoMap": {}, + "alarmNo": "1870248182", + "alarmDate": "1769998569064", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113608927487109", + "createdBy": null, + "createdTime": "2026-02-02 10:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:51", + "echoMap": {}, + "alarmNo": "1870248181", + "alarmDate": "1769997998962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337553223", + "createdBy": null, + "createdTime": "2026-02-02 10:06:12", + "updatedBy": null, + "updatedTime": "2026-02-02 10:16:24", + "echoMap": {}, + "alarmNo": "1870248180", + "alarmDate": "1769997971791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337553153", + "createdBy": null, + "createdTime": "2026-02-02 10:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:06:09", + "echoMap": {}, + "alarmNo": "1870248179", + "alarmDate": "1769997962940", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337553015", + "createdBy": null, + "createdTime": "2026-02-02 09:56:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:06", + "echoMap": {}, + "alarmNo": "1870248178", + "alarmDate": "1769997417214", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337552981", + "createdBy": null, + "createdTime": "2026-02-02 09:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:59", + "echoMap": {}, + "alarmNo": "1870248177", + "alarmDate": "1769997413425", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060055", + "deviceName": "[323](10)紫藤4#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337552768", + "createdBy": null, + "createdTime": "2026-02-02 09:56:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:33", + "echoMap": {}, + "alarmNo": "1870248176", + "alarmDate": "1769997386807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113600337552580", + "createdBy": null, + "createdTime": "2026-02-02 09:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:09", + "echoMap": {}, + "alarmNo": "1870248175", + "alarmDate": "1769997362614", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113591747618419", + "createdBy": null, + "createdTime": "2026-02-02 09:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:33", + "echoMap": {}, + "alarmNo": "1870248174", + "alarmDate": "1769996794814", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113591747618105", + "createdBy": null, + "createdTime": "2026-02-02 09:46:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:08", + "echoMap": {}, + "alarmNo": "1870248173", + "alarmDate": "1769996762708", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113591747617863", + "createdBy": null, + "createdTime": "2026-02-02 09:36:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:06:06", + "echoMap": {}, + "alarmNo": "1870248172", + "alarmDate": "1769996209424", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113583157683658", + "createdBy": null, + "createdTime": "2026-02-02 09:36:05", + "updatedBy": null, + "updatedTime": "2026-02-02 09:46:23", + "echoMap": {}, + "alarmNo": "1870248171", + "alarmDate": "1769996164583", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113583157683508", + "createdBy": null, + "createdTime": "2026-02-02 09:26:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:36:56", + "echoMap": {}, + "alarmNo": "1870248170", + "alarmDate": "1769995617250", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567749360", + "createdBy": null, + "createdTime": "2026-02-02 09:26:16", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:28", + "echoMap": {}, + "alarmNo": "1870248169", + "alarmDate": "1769995575952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567749147", + "createdBy": null, + "createdTime": "2026-02-02 09:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:26:21", + "echoMap": {}, + "alarmNo": "1870248168", + "alarmDate": "1769995022039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567749073", + "createdBy": null, + "createdTime": "2026-02-02 09:16:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:56:06", + "echoMap": {}, + "alarmNo": "1870248167", + "alarmDate": "1769995014009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567748888", + "createdBy": null, + "createdTime": "2026-02-02 09:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:27:01", + "echoMap": {}, + "alarmNo": "1870248166", + "alarmDate": "1769994994896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113574567748814", + "createdBy": null, + "createdTime": "2026-02-02 09:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:51", + "echoMap": {}, + "alarmNo": "1870248165", + "alarmDate": "1769994987002", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113565977814699", + "createdBy": null, + "createdTime": "2026-02-02 09:07:02", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:23", + "echoMap": {}, + "alarmNo": "1870248164", + "alarmDate": "1769994421697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113565977814377", + "createdBy": null, + "createdTime": "2026-02-02 09:06:27", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:44", + "echoMap": {}, + "alarmNo": "1870248163", + "alarmDate": "1769994386624", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113565977814356", + "createdBy": null, + "createdTime": "2026-02-02 09:06:25", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:31", + "echoMap": {}, + "alarmNo": "1870248162", + "alarmDate": "1769994384573", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387880119", + "createdBy": null, + "createdTime": "2026-02-02 08:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:41", + "echoMap": {}, + "alarmNo": "1870248161", + "alarmDate": "1769993812532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879963", + "createdBy": null, + "createdTime": "2026-02-02 08:56:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:43", + "echoMap": {}, + "alarmNo": "1870248160", + "alarmDate": "1769993797406", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879908", + "createdBy": null, + "createdTime": "2026-02-02 08:56:32", + "updatedBy": null, + "updatedTime": "2026-02-02 09:06:15", + "echoMap": {}, + "alarmNo": "1870248159", + "alarmDate": "1769993792339", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879870", + "createdBy": null, + "createdTime": "2026-02-02 08:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:40", + "echoMap": {}, + "alarmNo": "1870248158", + "alarmDate": "1769993788412", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879671", + "createdBy": null, + "createdTime": "2026-02-02 08:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:08", + "echoMap": {}, + "alarmNo": "1870248157", + "alarmDate": "1769993763402", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113557387879670", + "createdBy": null, + "createdTime": "2026-02-02 08:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 08:56:17", + "echoMap": {}, + "alarmNo": "1870248156", + "alarmDate": "1769993763398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113553092912150", + "createdBy": null, + "createdTime": "2026-02-02 08:46:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:16:03", + "echoMap": {}, + "alarmNo": "1870248155", + "alarmDate": "1769993204586", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945503", + "createdBy": null, + "createdTime": "2026-02-02 08:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:40", + "echoMap": {}, + "alarmNo": "1870248154", + "alarmDate": "1769993194082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945478", + "createdBy": null, + "createdTime": "2026-02-02 08:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1870248153", + "alarmDate": "1769993192178", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060041", + "deviceName": "[408](10)紫藤3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945475", + "createdBy": null, + "createdTime": "2026-02-02 08:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:57", + "echoMap": {}, + "alarmNo": "1870248152", + "alarmDate": "1769993192079", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945471", + "createdBy": null, + "createdTime": "2026-02-02 08:46:32", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:38", + "echoMap": {}, + "alarmNo": "1870248151", + "alarmDate": "1769993191930", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945376", + "createdBy": null, + "createdTime": "2026-02-02 08:46:20", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:33", + "echoMap": {}, + "alarmNo": "1870248150", + "alarmDate": "1769993180483", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945335", + "createdBy": null, + "createdTime": "2026-02-02 08:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:22", + "echoMap": {}, + "alarmNo": "1870248149", + "alarmDate": "1769993175922", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060038", + "deviceName": "[322](10)紫藤4#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945281", + "createdBy": null, + "createdTime": "2026-02-02 08:46:10", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:16", + "echoMap": {}, + "alarmNo": "1870248148", + "alarmDate": "1769993170015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113548797945043", + "createdBy": null, + "createdTime": "2026-02-02 08:36:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:59", + "echoMap": {}, + "alarmNo": "1870248147", + "alarmDate": "1769992613203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113544502977536", + "createdBy": null, + "createdTime": "2026-02-02 08:36:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:36", + "echoMap": {}, + "alarmNo": "1870248146", + "alarmDate": "1769992583655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113540208010372", + "createdBy": null, + "createdTime": "2026-02-02 08:26:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:14", + "echoMap": {}, + "alarmNo": "1870248145", + "alarmDate": "1769992004652", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113540208010336", + "createdBy": null, + "createdTime": "2026-02-02 08:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:53", + "echoMap": {}, + "alarmNo": "1870248144", + "alarmDate": "1769992001413", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113540208010330", + "createdBy": null, + "createdTime": "2026-02-02 08:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:17", + "echoMap": {}, + "alarmNo": "1870248143", + "alarmDate": "1769992000938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113531618075968", + "createdBy": null, + "createdTime": "2026-02-02 08:26:05", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:17", + "echoMap": {}, + "alarmNo": "1870248142", + "alarmDate": "1769991965328", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113531618075952", + "createdBy": null, + "createdTime": "2026-02-02 08:26:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:26:08", + "echoMap": {}, + "alarmNo": "1870248141", + "alarmDate": "1769991963618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113531618075694", + "createdBy": null, + "createdTime": "2026-02-02 08:16:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:58", + "echoMap": {}, + "alarmNo": "1870248140", + "alarmDate": "1769991412420", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113527323108376", + "createdBy": null, + "createdTime": "2026-02-02 08:16:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:36:02", + "echoMap": {}, + "alarmNo": "1870248139", + "alarmDate": "1769991404879", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141610", + "createdBy": null, + "createdTime": "2026-02-02 08:16:40", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:46", + "echoMap": {}, + "alarmNo": "1870248138", + "alarmDate": "1769991399539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141558", + "createdBy": null, + "createdTime": "2026-02-02 08:16:34", + "updatedBy": null, + "updatedTime": "2026-02-02 10:26:20", + "echoMap": {}, + "alarmNo": "1870248137", + "alarmDate": "1769991394332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060095", + "deviceName": "[102](10)紫藤上行2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141530", + "createdBy": null, + "createdTime": "2026-02-02 08:16:31", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:38", + "echoMap": {}, + "alarmNo": "1870248136", + "alarmDate": "1769991391368", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141441", + "createdBy": null, + "createdTime": "2026-02-02 08:16:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:33", + "echoMap": {}, + "alarmNo": "1870248135", + "alarmDate": "1769991380850", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060020", + "deviceName": "[309](10)紫藤2#口出1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141308", + "createdBy": null, + "createdTime": "2026-02-02 08:16:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:13", + "echoMap": {}, + "alarmNo": "1870248134", + "alarmDate": "1769991366988", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113523028141114", + "createdBy": null, + "createdTime": "2026-02-02 08:06:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:19", + "echoMap": {}, + "alarmNo": "1870248133", + "alarmDate": "1769990815130", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206987", + "createdBy": null, + "createdTime": "2026-02-02 08:06:43", + "updatedBy": null, + "updatedTime": "2026-02-02 08:07:01", + "echoMap": {}, + "alarmNo": "1870248132", + "alarmDate": "1769990802763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206926", + "createdBy": null, + "createdTime": "2026-02-02 08:06:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:43", + "echoMap": {}, + "alarmNo": "1870248131", + "alarmDate": "1769990797042", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060037", + "deviceName": "[321](10)紫藤4#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206645", + "createdBy": null, + "createdTime": "2026-02-02 08:06:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:22", + "echoMap": {}, + "alarmNo": "1870248130", + "alarmDate": "1769990768703", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060089", + "deviceName": "[112](10)紫藤下行6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113514438206602", + "createdBy": null, + "createdTime": "2026-02-02 08:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:08", + "echoMap": {}, + "alarmNo": "1870248129", + "alarmDate": "1769990764060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848272298", + "createdBy": null, + "createdTime": "2026-02-02 07:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:50", + "echoMap": {}, + "alarmNo": "1870248128", + "alarmDate": "1769990210428", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060014", + "deviceName": "[312](10)紫藤2#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848272242", + "createdBy": null, + "createdTime": "2026-02-02 07:56:47", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:59", + "echoMap": {}, + "alarmNo": "1870248127", + "alarmDate": "1769990206923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848272130", + "createdBy": null, + "createdTime": "2026-02-02 07:56:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:51", + "echoMap": {}, + "alarmNo": "1870248126", + "alarmDate": "1769990199204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060013", + "deviceName": "[308](10)紫藤2#口入2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848271993", + "createdBy": null, + "createdTime": "2026-02-02 07:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:06:31", + "echoMap": {}, + "alarmNo": "1870248125", + "alarmDate": "1769990189489", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848271974", + "createdBy": null, + "createdTime": "2026-02-02 07:56:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:16:17", + "echoMap": {}, + "alarmNo": "1870248124", + "alarmDate": "1769990188254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113505848271945", + "createdBy": null, + "createdTime": "2026-02-02 07:56:26", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:38", + "echoMap": {}, + "alarmNo": "1870248123", + "alarmDate": "1769990186268", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060014", + "deviceName": "[312](10)紫藤2#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113497258337611", + "createdBy": null, + "createdTime": "2026-02-02 07:50:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:51:53", + "echoMap": {}, + "alarmNo": "1870248122", + "alarmDate": "1769989854309", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1030060028", + "deviceName": "[332](10)紫藤#2厅楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113488668403146", + "createdBy": null, + "createdTime": "2026-02-02 07:46:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:05", + "echoMap": {}, + "alarmNo": "1870248121", + "alarmDate": "1769989594298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113488668402760", + "createdBy": null, + "createdTime": "2026-02-02 07:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:46:04", + "echoMap": {}, + "alarmNo": "1870248120", + "alarmDate": "1769989563579", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113488668402748", + "createdBy": null, + "createdTime": "2026-02-02 07:46:02", + "updatedBy": null, + "updatedTime": "2026-02-02 11:56:28", + "echoMap": {}, + "alarmNo": "1870248119", + "alarmDate": "1769989562136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060018", + "deviceName": "[314](10)紫藤2#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113480078468434", + "createdBy": null, + "createdTime": "2026-02-02 07:36:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:52", + "echoMap": {}, + "alarmNo": "1870248118", + "alarmDate": "1769988999353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113480078468364", + "createdBy": null, + "createdTime": "2026-02-02 07:36:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:16", + "echoMap": {}, + "alarmNo": "1870248117", + "alarmDate": "1769988994062", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113480078468249", + "createdBy": null, + "createdTime": "2026-02-02 07:36:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:43", + "echoMap": {}, + "alarmNo": "1870248116", + "alarmDate": "1769988984932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113471488534015", + "createdBy": null, + "createdTime": "2026-02-02 07:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:27", + "echoMap": {}, + "alarmNo": "1870248115", + "alarmDate": "1769988963308", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113471488533920", + "createdBy": null, + "createdTime": "2026-02-02 07:27:18", + "updatedBy": null, + "updatedTime": "2026-02-02 07:32:14", + "echoMap": {}, + "alarmNo": "1870248114", + "alarmDate": "1769988437622", + "faultLocation": "999999999", + "faultDescription": "端口状态更新", + "faultLevel": "3", + "faultCode": "5", + "deviceId": "1030040007", + "deviceName": "H3C前端交换机6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查交换机端口流量异常原因", + "impactService": "2", + "alarmType": "3", + "deviceType": "220", + "stationCode": "1030" + }, + { + "id": "723113471488533877", + "createdBy": null, + "createdTime": "2026-02-02 07:26:59", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:11", + "echoMap": {}, + "alarmNo": "1870248113", + "alarmDate": "1769988418854", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113471488533783", + "createdBy": null, + "createdTime": "2026-02-02 07:26:52", + "updatedBy": null, + "updatedTime": "2026-02-02 07:36:07", + "echoMap": {}, + "alarmNo": "1870248112", + "alarmDate": "1769988411537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113467193566246", + "createdBy": null, + "createdTime": "2026-02-02 07:26:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:33", + "echoMap": {}, + "alarmNo": "1870248111", + "alarmDate": "1769988387094", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113462898599262", + "createdBy": null, + "createdTime": "2026-02-02 07:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:34", + "echoMap": {}, + "alarmNo": "1870248110", + "alarmDate": "1769988368539", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113454308664773", + "createdBy": null, + "createdTime": "2026-02-02 07:16:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:26:29", + "echoMap": {}, + "alarmNo": "1870248109", + "alarmDate": "1769987800568", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113454308664365", + "createdBy": null, + "createdTime": "2026-02-02 07:16:06", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:18", + "echoMap": {}, + "alarmNo": "1870248108", + "alarmDate": "1769987766341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060070", + "deviceName": "[317](10)紫藤3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113454308664335", + "createdBy": null, + "createdTime": "2026-02-02 07:16:04", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:49", + "echoMap": {}, + "alarmNo": "1870248107", + "alarmDate": "1769987764236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113445718729967", + "createdBy": null, + "createdTime": "2026-02-02 07:06:50", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:56", + "echoMap": {}, + "alarmNo": "1870248106", + "alarmDate": "1769987210088", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060070", + "deviceName": "[317](10)紫藤3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113445718729785", + "createdBy": null, + "createdTime": "2026-02-02 07:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:42", + "echoMap": {}, + "alarmNo": "1870248105", + "alarmDate": "1769987196004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113437128795649", + "createdBy": null, + "createdTime": "2026-02-02 07:06:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:06:32", + "echoMap": {}, + "alarmNo": "1870248104", + "alarmDate": "1769987178981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060070", + "deviceName": "[317](10)紫藤3#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113437128795458", + "createdBy": null, + "createdTime": "2026-02-02 07:06:03", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:17", + "echoMap": {}, + "alarmNo": "1870248103", + "alarmDate": "1769987163264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113437128795216", + "createdBy": null, + "createdTime": "2026-02-02 06:56:49", + "updatedBy": null, + "updatedTime": "2026-02-02 06:57:01", + "echoMap": {}, + "alarmNo": "1870248102", + "alarmDate": "1769986609459", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538861000", + "createdBy": null, + "createdTime": "2026-02-02 06:56:25", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:37", + "echoMap": {}, + "alarmNo": "1870248101", + "alarmDate": "1769986585408", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538860879", + "createdBy": null, + "createdTime": "2026-02-02 06:56:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:52", + "echoMap": {}, + "alarmNo": "1870248100", + "alarmDate": "1769986575559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538860734", + "createdBy": null, + "createdTime": "2026-02-02 06:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:52", + "echoMap": {}, + "alarmNo": "1870248099", + "alarmDate": "1769986563100", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113428538860726", + "createdBy": null, + "createdTime": "2026-02-02 06:56:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:46:07", + "echoMap": {}, + "alarmNo": "1870248098", + "alarmDate": "1769986562666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948926542", + "createdBy": null, + "createdTime": "2026-02-02 06:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:55", + "echoMap": {}, + "alarmNo": "1870248097", + "alarmDate": "1769986001543", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060015", + "deviceName": "[311](10)紫藤2#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948926229", + "createdBy": null, + "createdTime": "2026-02-02 06:46:07", + "updatedBy": null, + "updatedTime": "2026-02-02 06:56:13", + "echoMap": {}, + "alarmNo": "1870248096", + "alarmDate": "1769985967103", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948926199", + "createdBy": null, + "createdTime": "2026-02-02 06:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:29", + "echoMap": {}, + "alarmNo": "1870248095", + "alarmDate": "1769985963913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113419948925956", + "createdBy": null, + "createdTime": "2026-02-02 06:36:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:54", + "echoMap": {}, + "alarmNo": "1870248094", + "alarmDate": "1769985402883", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991838", + "createdBy": null, + "createdTime": "2026-02-02 06:36:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:31", + "echoMap": {}, + "alarmNo": "1870248093", + "alarmDate": "1769985377821", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991637", + "createdBy": null, + "createdTime": "2026-02-02 06:27:02", + "updatedBy": null, + "updatedTime": "2026-02-02 07:56:28", + "echoMap": {}, + "alarmNo": "1870248092", + "alarmDate": "1769984821973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991505", + "createdBy": null, + "createdTime": "2026-02-02 06:26:48", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:06", + "echoMap": {}, + "alarmNo": "1870248091", + "alarmDate": "1769984807594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113411358991469", + "createdBy": null, + "createdTime": "2026-02-02 06:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:50", + "echoMap": {}, + "alarmNo": "1870248090", + "alarmDate": "1769984803954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113407064024104", + "createdBy": null, + "createdTime": "2026-02-02 06:26:30", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:36", + "echoMap": {}, + "alarmNo": "1870248089", + "alarmDate": "1769984789565", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057311", + "createdBy": null, + "createdTime": "2026-02-02 06:26:15", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:26", + "echoMap": {}, + "alarmNo": "1870248088", + "alarmDate": "1769984774933", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057200", + "createdBy": null, + "createdTime": "2026-02-02 06:26:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:03", + "echoMap": {}, + "alarmNo": "1870248087", + "alarmDate": "1769984763457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060046", + "deviceName": "[301](10)紫藤1#口入1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057079", + "createdBy": null, + "createdTime": "2026-02-02 06:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 06:26:12", + "echoMap": {}, + "alarmNo": "1870248086", + "alarmDate": "1769984219508", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057067", + "createdBy": null, + "createdTime": "2026-02-02 06:16:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:36:34", + "echoMap": {}, + "alarmNo": "1870248085", + "alarmDate": "1769984218456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769057007", + "createdBy": null, + "createdTime": "2026-02-02 06:16:51", + "updatedBy": null, + "updatedTime": "2026-02-02 06:17:03", + "echoMap": {}, + "alarmNo": "1870248084", + "alarmDate": "1769984210605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769056887", + "createdBy": null, + "createdTime": "2026-02-02 06:16:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:47", + "echoMap": {}, + "alarmNo": "1870248083", + "alarmDate": "1769984195373", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113402769056813", + "createdBy": null, + "createdTime": "2026-02-02 06:16:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:39", + "echoMap": {}, + "alarmNo": "1870248082", + "alarmDate": "1769984186594", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122789", + "createdBy": null, + "createdTime": "2026-02-02 06:16:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:09", + "echoMap": {}, + "alarmNo": "1870248081", + "alarmDate": "1769984163547", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122786", + "createdBy": null, + "createdTime": "2026-02-02 06:16:03", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:46", + "echoMap": {}, + "alarmNo": "1870248080", + "alarmDate": "1769984163287", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122498", + "createdBy": null, + "createdTime": "2026-02-02 06:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:16:23", + "echoMap": {}, + "alarmNo": "1870248079", + "alarmDate": "1769983600083", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122488", + "createdBy": null, + "createdTime": "2026-02-02 06:06:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:45", + "echoMap": {}, + "alarmNo": "1870248078", + "alarmDate": "1769983599291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122465", + "createdBy": null, + "createdTime": "2026-02-02 06:06:36", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:37", + "echoMap": {}, + "alarmNo": "1870248077", + "alarmDate": "1769983596009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113394179122319", + "createdBy": null, + "createdTime": "2026-02-02 06:06:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:28", + "echoMap": {}, + "alarmNo": "1870248076", + "alarmDate": "1769983576140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589188173", + "createdBy": null, + "createdTime": "2026-02-02 05:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:20", + "echoMap": {}, + "alarmNo": "1870248075", + "alarmDate": "1769983013021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589188171", + "createdBy": null, + "createdTime": "2026-02-02 05:56:53", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:04", + "echoMap": {}, + "alarmNo": "1870248074", + "alarmDate": "1769983012921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589188004", + "createdBy": null, + "createdTime": "2026-02-02 05:56:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:46:11", + "echoMap": {}, + "alarmNo": "1870248073", + "alarmDate": "1769982992762", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187969", + "createdBy": null, + "createdTime": "2026-02-02 05:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:41", + "echoMap": {}, + "alarmNo": "1870248072", + "alarmDate": "1769982989035", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187966", + "createdBy": null, + "createdTime": "2026-02-02 05:56:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:41", + "echoMap": {}, + "alarmNo": "1870248071", + "alarmDate": "1769982988827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187868", + "createdBy": null, + "createdTime": "2026-02-02 05:56:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:21", + "echoMap": {}, + "alarmNo": "1870248070", + "alarmDate": "1769982974713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187771", + "createdBy": null, + "createdTime": "2026-02-02 05:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:17", + "echoMap": {}, + "alarmNo": "1870248069", + "alarmDate": "1769982965006", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187765", + "createdBy": null, + "createdTime": "2026-02-02 05:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:17", + "echoMap": {}, + "alarmNo": "1870248068", + "alarmDate": "1769982964781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187764", + "createdBy": null, + "createdTime": "2026-02-02 05:56:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:56:11", + "echoMap": {}, + "alarmNo": "1870248067", + "alarmDate": "1769982964731", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060046", + "deviceName": "[301](10)紫藤1#口入1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113385589187647", + "createdBy": null, + "createdTime": "2026-02-02 05:46:59", + "updatedBy": null, + "updatedTime": "2026-02-02 06:06:22", + "echoMap": {}, + "alarmNo": "1870248066", + "alarmDate": "1769982418870", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253655", + "createdBy": null, + "createdTime": "2026-02-02 05:46:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:54", + "echoMap": {}, + "alarmNo": "1870248065", + "alarmDate": "1769982400793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253593", + "createdBy": null, + "createdTime": "2026-02-02 05:46:35", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:53", + "echoMap": {}, + "alarmNo": "1870248064", + "alarmDate": "1769982394536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253451", + "createdBy": null, + "createdTime": "2026-02-02 05:46:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:06", + "echoMap": {}, + "alarmNo": "1870248063", + "alarmDate": "1769982375962", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060041", + "deviceName": "[408](10)紫藤3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253397", + "createdBy": null, + "createdTime": "2026-02-02 05:46:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:21", + "echoMap": {}, + "alarmNo": "1870248062", + "alarmDate": "1769982369478", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253353", + "createdBy": null, + "createdTime": "2026-02-02 05:46:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:17", + "echoMap": {}, + "alarmNo": "1870248061", + "alarmDate": "1769982363673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060054", + "deviceName": "[324](10)紫藤4#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253125", + "createdBy": null, + "createdTime": "2026-02-02 05:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:57", + "echoMap": {}, + "alarmNo": "1870248060", + "alarmDate": "1769981805468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253120", + "createdBy": null, + "createdTime": "2026-02-02 05:36:45", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:57", + "echoMap": {}, + "alarmNo": "1870248059", + "alarmDate": "1769981805209", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113376999253074", + "createdBy": null, + "createdTime": "2026-02-02 05:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:42", + "echoMap": {}, + "alarmNo": "1870248058", + "alarmDate": "1769981801053", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409319048", + "createdBy": null, + "createdTime": "2026-02-02 05:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:34", + "echoMap": {}, + "alarmNo": "1870248057", + "alarmDate": "1769981781414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409319043", + "createdBy": null, + "createdTime": "2026-02-02 05:36:21", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:33", + "echoMap": {}, + "alarmNo": "1870248056", + "alarmDate": "1769981781255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318877", + "createdBy": null, + "createdTime": "2026-02-02 05:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:10", + "echoMap": {}, + "alarmNo": "1870248055", + "alarmDate": "1769981763391", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318872", + "createdBy": null, + "createdTime": "2026-02-02 05:36:03", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:09", + "echoMap": {}, + "alarmNo": "1870248054", + "alarmDate": "1769981763217", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318663", + "createdBy": null, + "createdTime": "2026-02-02 05:26:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:27:02", + "echoMap": {}, + "alarmNo": "1870248053", + "alarmDate": "1769981209197", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318613", + "createdBy": null, + "createdTime": "2026-02-02 05:26:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:36:27", + "echoMap": {}, + "alarmNo": "1870248052", + "alarmDate": "1769981203839", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060088", + "deviceName": "[111](10)紫藤下行5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318588", + "createdBy": null, + "createdTime": "2026-02-02 05:26:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:47", + "echoMap": {}, + "alarmNo": "1870248051", + "alarmDate": "1769981201049", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113368409318448", + "createdBy": null, + "createdTime": "2026-02-02 05:26:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:38", + "echoMap": {}, + "alarmNo": "1870248050", + "alarmDate": "1769981184959", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113364114351137", + "createdBy": null, + "createdTime": "2026-02-02 05:26:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:29", + "echoMap": {}, + "alarmNo": "1870248049", + "alarmDate": "1769981177140", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384317", + "createdBy": null, + "createdTime": "2026-02-02 05:17:02", + "updatedBy": null, + "updatedTime": "2026-02-02 05:26:13", + "echoMap": {}, + "alarmNo": "1870248048", + "alarmDate": "1769980621778", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384237", + "createdBy": null, + "createdTime": "2026-02-02 05:16:53", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:59", + "echoMap": {}, + "alarmNo": "1870248047", + "alarmDate": "1769980612819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384101", + "createdBy": null, + "createdTime": "2026-02-02 05:16:38", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:50", + "echoMap": {}, + "alarmNo": "1870248046", + "alarmDate": "1769980597679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060058", + "deviceName": "[306](10)紫藤1#口楼梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819384024", + "createdBy": null, + "createdTime": "2026-02-02 05:16:29", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:35", + "echoMap": {}, + "alarmNo": "1870248045", + "alarmDate": "1769980588735", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113359819383816", + "createdBy": null, + "createdTime": "2026-02-02 05:16:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:16:11", + "echoMap": {}, + "alarmNo": "1870248044", + "alarmDate": "1769980564773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060062", + "deviceName": "[303](10)紫藤1#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113351229449811", + "createdBy": null, + "createdTime": "2026-02-02 05:06:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:06:55", + "echoMap": {}, + "alarmNo": "1870248043", + "alarmDate": "1769980014183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113351229449228", + "createdBy": null, + "createdTime": "2026-02-02 04:56:44", + "updatedBy": null, + "updatedTime": "2026-02-02 05:46:04", + "echoMap": {}, + "alarmNo": "1870248042", + "alarmDate": "1769979404162", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060041", + "deviceName": "[408](10)紫藤3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113334049580707", + "createdBy": null, + "createdTime": "2026-02-02 04:46:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:46:16", + "echoMap": {}, + "alarmNo": "1870248041", + "alarmDate": "1769978775456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113316869711100", + "createdBy": null, + "createdTime": "2026-02-02 04:16:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:16:31", + "echoMap": {}, + "alarmNo": "1870248040", + "alarmDate": "1769976989656", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113291099907546", + "createdBy": null, + "createdTime": "2026-02-02 03:46:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:46:43", + "echoMap": {}, + "alarmNo": "1870248039", + "alarmDate": "1769975201743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113269625070604", + "createdBy": null, + "createdTime": "2026-02-02 03:26:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:26:10", + "echoMap": {}, + "alarmNo": "1870248038", + "alarmDate": "1769973969125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113265330103820", + "createdBy": null, + "createdTime": "2026-02-02 03:17:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:17:01", + "echoMap": {}, + "alarmNo": "1870248037", + "alarmDate": "1769973419895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113248150234199", + "createdBy": null, + "createdTime": "2026-02-02 02:56:24", + "updatedBy": null, + "updatedTime": "2026-02-02 02:56:26", + "echoMap": {}, + "alarmNo": "1870248036", + "alarmDate": "1769972184291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113222380430572", + "createdBy": null, + "createdTime": "2026-02-02 02:26:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:26:41", + "echoMap": {}, + "alarmNo": "1870248035", + "alarmDate": "1769970399791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113196610627111", + "createdBy": null, + "createdTime": "2026-02-02 01:56:52", + "updatedBy": null, + "updatedTime": "2026-02-02 01:56:53", + "echoMap": {}, + "alarmNo": "1870248034", + "alarmDate": "1769968612446", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113179430757434", + "createdBy": null, + "createdTime": "2026-02-02 01:36:16", + "updatedBy": null, + "updatedTime": "2026-02-02 01:36:17", + "echoMap": {}, + "alarmNo": "1870248033", + "alarmDate": "1769967375784", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113145071019437", + "createdBy": null, + "createdTime": "2026-02-02 01:06:29", + "updatedBy": null, + "updatedTime": "2026-02-02 01:06:30", + "echoMap": {}, + "alarmNo": "1870248032", + "alarmDate": "1769965588937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113127891149864", + "createdBy": null, + "createdTime": "2026-02-02 00:46:33", + "updatedBy": null, + "updatedTime": "2026-02-02 08:46:51", + "echoMap": {}, + "alarmNo": "1870248031", + "alarmDate": "1769964392516", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060019", + "deviceName": "[310](10)紫藤2#口出2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113115006247950", + "createdBy": null, + "createdTime": "2026-02-02 00:36:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:36:42", + "echoMap": {}, + "alarmNo": "1870248030", + "alarmDate": "1769963800950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113089236444207", + "createdBy": null, + "createdTime": "2026-02-02 00:16:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:16:20", + "echoMap": {}, + "alarmNo": "1870248029", + "alarmDate": "1769962580202", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060026", + "deviceName": "[404](10)紫藤3#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + }, + { + "id": "723113076351542650", + "createdBy": null, + "createdTime": "2026-02-02 00:06:48", + "updatedBy": null, + "updatedTime": "2026-02-02 00:06:49", + "echoMap": {}, + "alarmNo": "1870248028", + "alarmDate": "1769962008332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1030060060", + "deviceName": "[209](10)紫藤1#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1030" + } + ] + }, + "1031": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723112999042925612", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:43", + "echoMap": {}, + "alarmNo": "1890167215", + "alarmDate": "1769961822633", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060023", + "deviceName": "[404](10)龙柏3#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925613", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:43", + "echoMap": {}, + "alarmNo": "1890167216", + "alarmDate": "1769961822636", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060023", + "deviceName": "[404](10)龙柏3#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925614", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:08", + "echoMap": {}, + "alarmNo": "1890167217", + "alarmDate": "1769961822639", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925621", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:53", + "echoMap": {}, + "alarmNo": "1890167218", + "alarmDate": "1769961822990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925735", + "createdBy": null, + "createdTime": "2026-02-02 00:03:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:28", + "echoMap": {}, + "alarmNo": "1890167219", + "alarmDate": "1769961830240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113007632860246", + "createdBy": null, + "createdTime": "2026-02-02 00:04:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:50", + "echoMap": {}, + "alarmNo": "1890167220", + "alarmDate": "1769961845921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113016222794872", + "createdBy": null, + "createdTime": "2026-02-02 00:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:21", + "echoMap": {}, + "alarmNo": "1890167221", + "alarmDate": "1769961868372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060132", + "deviceName": "[627](10)龙柏下行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113020517762081", + "createdBy": null, + "createdTime": "2026-02-02 00:04:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:23:58", + "echoMap": {}, + "alarmNo": "1890167222", + "alarmDate": "1769961880319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113033402664115", + "createdBy": null, + "createdTime": "2026-02-02 00:14:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:01", + "echoMap": {}, + "alarmNo": "1890167223", + "alarmDate": "1769962439885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113033402664154", + "createdBy": null, + "createdTime": "2026-02-02 00:14:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:23:58", + "echoMap": {}, + "alarmNo": "1890167224", + "alarmDate": "1769962442335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113033402664262", + "createdBy": null, + "createdTime": "2026-02-02 00:14:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:09", + "echoMap": {}, + "alarmNo": "1890167225", + "alarmDate": "1769962447717", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113041992598680", + "createdBy": null, + "createdTime": "2026-02-02 00:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:21", + "echoMap": {}, + "alarmNo": "1890167226", + "alarmDate": "1769962459626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113046287565867", + "createdBy": null, + "createdTime": "2026-02-02 00:14:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:30", + "echoMap": {}, + "alarmNo": "1890167227", + "alarmDate": "1769962469298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113059172467990", + "createdBy": null, + "createdTime": "2026-02-02 00:24:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:16", + "echoMap": {}, + "alarmNo": "1890167228", + "alarmDate": "1769963049493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113059172467992", + "createdBy": null, + "createdTime": "2026-02-02 00:24:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:29", + "echoMap": {}, + "alarmNo": "1890167229", + "alarmDate": "1769963049675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113067762402511", + "createdBy": null, + "createdTime": "2026-02-02 00:24:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:30", + "echoMap": {}, + "alarmNo": "1890167230", + "alarmDate": "1769963068687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113067762402583", + "createdBy": null, + "createdTime": "2026-02-02 00:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:35", + "echoMap": {}, + "alarmNo": "1890167231", + "alarmDate": "1769963073737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113076352337030", + "createdBy": null, + "createdTime": "2026-02-02 00:33:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:42", + "echoMap": {}, + "alarmNo": "1890167232", + "alarmDate": "1769963620928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113080647304207", + "createdBy": null, + "createdTime": "2026-02-02 00:33:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:30", + "echoMap": {}, + "alarmNo": "1890167233", + "alarmDate": "1769963632960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113093532206294", + "createdBy": null, + "createdTime": "2026-02-02 00:34:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:31", + "echoMap": {}, + "alarmNo": "1890167234", + "alarmDate": "1769963670281", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113093532206316", + "createdBy": null, + "createdTime": "2026-02-02 00:34:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:33", + "echoMap": {}, + "alarmNo": "1890167235", + "alarmDate": "1769963671669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113097827173429", + "createdBy": null, + "createdTime": "2026-02-02 00:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:47", + "echoMap": {}, + "alarmNo": "1890167236", + "alarmDate": "1769963681536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060133", + "deviceName": "[626](10)龙柏下行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113097827173431", + "createdBy": null, + "createdTime": "2026-02-02 00:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:57", + "echoMap": {}, + "alarmNo": "1890167237", + "alarmDate": "1769963681875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113102122140811", + "createdBy": null, + "createdTime": "2026-02-02 00:43:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:54", + "echoMap": {}, + "alarmNo": "1890167238", + "alarmDate": "1769964223203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113102122140965", + "createdBy": null, + "createdTime": "2026-02-02 00:43:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:55", + "echoMap": {}, + "alarmNo": "1890167239", + "alarmDate": "1769964233341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075276", + "createdBy": null, + "createdTime": "2026-02-02 00:44:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:02", + "echoMap": {}, + "alarmNo": "1890167240", + "alarmDate": "1769964240354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075403", + "createdBy": null, + "createdTime": "2026-02-02 00:44:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:10", + "echoMap": {}, + "alarmNo": "1890167241", + "alarmDate": "1769964249087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075485", + "createdBy": null, + "createdTime": "2026-02-02 00:44:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:17", + "echoMap": {}, + "alarmNo": "1890167242", + "alarmDate": "1769964255141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075544", + "createdBy": null, + "createdTime": "2026-02-02 00:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:14", + "echoMap": {}, + "alarmNo": "1890167243", + "alarmDate": "1769964259156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113119302010107", + "createdBy": null, + "createdTime": "2026-02-02 00:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:32", + "echoMap": {}, + "alarmNo": "1890167244", + "alarmDate": "1769964390686", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113136481879094", + "createdBy": null, + "createdTime": "2026-02-02 00:54:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:16", + "echoMap": {}, + "alarmNo": "1890167245", + "alarmDate": "1769964854455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113145071813700", + "createdBy": null, + "createdTime": "2026-02-02 00:54:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:07", + "echoMap": {}, + "alarmNo": "1890167246", + "alarmDate": "1769964881733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113145071813850", + "createdBy": null, + "createdTime": "2026-02-02 01:03:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:03", + "echoMap": {}, + "alarmNo": "1890167247", + "alarmDate": "1769965424271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113153661748302", + "createdBy": null, + "createdTime": "2026-02-02 01:03:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:03:58", + "echoMap": {}, + "alarmNo": "1890167248", + "alarmDate": "1769965436860", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113157956715555", + "createdBy": null, + "createdTime": "2026-02-02 01:04:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:13", + "echoMap": {}, + "alarmNo": "1890167249", + "alarmDate": "1769965452370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113162251682929", + "createdBy": null, + "createdTime": "2026-02-02 01:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:39", + "echoMap": {}, + "alarmNo": "1890167250", + "alarmDate": "1769965461682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113162251683147", + "createdBy": null, + "createdTime": "2026-02-02 01:04:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:37", + "echoMap": {}, + "alarmNo": "1890167251", + "alarmDate": "1769965475980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113162251683161", + "createdBy": null, + "createdTime": "2026-02-02 01:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:38", + "echoMap": {}, + "alarmNo": "1890167252", + "alarmDate": "1769965476788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617557", + "createdBy": null, + "createdTime": "2026-02-02 01:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:45", + "echoMap": {}, + "alarmNo": "1890167253", + "alarmDate": "1769966024251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617558", + "createdBy": null, + "createdTime": "2026-02-02 01:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:45", + "echoMap": {}, + "alarmNo": "1890167254", + "alarmDate": "1769966024254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617630", + "createdBy": null, + "createdTime": "2026-02-02 01:13:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:50", + "echoMap": {}, + "alarmNo": "1890167255", + "alarmDate": "1769966028774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617652", + "createdBy": null, + "createdTime": "2026-02-02 01:13:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:51", + "echoMap": {}, + "alarmNo": "1890167256", + "alarmDate": "1769966030276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113179431552008", + "createdBy": null, + "createdTime": "2026-02-02 01:13:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:33", + "echoMap": {}, + "alarmNo": "1890167257", + "alarmDate": "1769966036938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421314", + "createdBy": null, + "createdTime": "2026-02-02 01:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:45", + "echoMap": {}, + "alarmNo": "1890167258", + "alarmDate": "1769966623357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421461", + "createdBy": null, + "createdTime": "2026-02-02 01:23:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:54", + "echoMap": {}, + "alarmNo": "1890167259", + "alarmDate": "1769966633479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421522", + "createdBy": null, + "createdTime": "2026-02-02 01:23:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:09", + "echoMap": {}, + "alarmNo": "1890167260", + "alarmDate": "1769966637540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421869", + "createdBy": null, + "createdTime": "2026-02-02 01:24:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:22", + "echoMap": {}, + "alarmNo": "1890167261", + "alarmDate": "1769966660668", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421887", + "createdBy": null, + "createdTime": "2026-02-02 01:24:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:30", + "echoMap": {}, + "alarmNo": "1890167262", + "alarmDate": "1769966661502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611422178", + "createdBy": null, + "createdTime": "2026-02-02 01:25:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:31", + "echoMap": {}, + "alarmNo": "1890167263", + "alarmDate": "1769966730788", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201355849", + "createdBy": null, + "createdTime": "2026-02-02 01:33:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:33:52", + "echoMap": {}, + "alarmNo": "1890167264", + "alarmDate": "1769967231248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356235", + "createdBy": null, + "createdTime": "2026-02-02 01:34:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:56", + "echoMap": {}, + "alarmNo": "1890167265", + "alarmDate": "1769967258431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356238", + "createdBy": null, + "createdTime": "2026-02-02 01:34:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:20", + "echoMap": {}, + "alarmNo": "1890167266", + "alarmDate": "1769967258635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356284", + "createdBy": null, + "createdTime": "2026-02-02 01:34:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:22", + "echoMap": {}, + "alarmNo": "1890167267", + "alarmDate": "1769967261318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356415", + "createdBy": null, + "createdTime": "2026-02-02 01:34:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:32", + "echoMap": {}, + "alarmNo": "1890167268", + "alarmDate": "1769967270098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356699", + "createdBy": null, + "createdTime": "2026-02-02 01:43:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:44", + "echoMap": {}, + "alarmNo": "1890167269", + "alarmDate": "1769967823330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356711", + "createdBy": null, + "createdTime": "2026-02-02 01:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:48", + "echoMap": {}, + "alarmNo": "1890167270", + "alarmDate": "1769967823848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086257761", + "createdBy": null, + "createdTime": "2026-02-02 01:44:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:20", + "echoMap": {}, + "alarmNo": "1890167271", + "alarmDate": "1769967847684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258036", + "createdBy": null, + "createdTime": "2026-02-02 01:44:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:28", + "echoMap": {}, + "alarmNo": "1890167272", + "alarmDate": "1769967867087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258212", + "createdBy": null, + "createdTime": "2026-02-02 01:44:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:48", + "echoMap": {}, + "alarmNo": "1890167273", + "alarmDate": "1769967883301", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258348", + "createdBy": null, + "createdTime": "2026-02-02 01:53:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:12", + "echoMap": {}, + "alarmNo": "1890167274", + "alarmDate": "1769968423095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258362", + "createdBy": null, + "createdTime": "2026-02-02 01:53:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:20", + "echoMap": {}, + "alarmNo": "1890167275", + "alarmDate": "1769968424033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192581", + "createdBy": null, + "createdTime": "2026-02-02 01:54:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:25", + "echoMap": {}, + "alarmNo": "1890167276", + "alarmDate": "1769968463807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192602", + "createdBy": null, + "createdTime": "2026-02-02 01:54:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:31", + "echoMap": {}, + "alarmNo": "1890167277", + "alarmDate": "1769968465115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192706", + "createdBy": null, + "createdTime": "2026-02-02 01:54:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:03:45", + "echoMap": {}, + "alarmNo": "1890167278", + "alarmDate": "1769968472318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192948", + "createdBy": null, + "createdTime": "2026-02-02 02:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:17", + "echoMap": {}, + "alarmNo": "1890167279", + "alarmDate": "1769969023355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113230971159563", + "createdBy": null, + "createdTime": "2026-02-02 02:04:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:02", + "echoMap": {}, + "alarmNo": "1890167280", + "alarmDate": "1769969041295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113230971159602", + "createdBy": null, + "createdTime": "2026-02-02 02:04:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:04", + "echoMap": {}, + "alarmNo": "1890167281", + "alarmDate": "1769969043622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113235266127098", + "createdBy": null, + "createdTime": "2026-02-02 02:04:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:09", + "echoMap": {}, + "alarmNo": "1890167282", + "alarmDate": "1769969061331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113235266127174", + "createdBy": null, + "createdTime": "2026-02-02 02:04:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:27", + "echoMap": {}, + "alarmNo": "1890167283", + "alarmDate": "1769969066144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113243856061470", + "createdBy": null, + "createdTime": "2026-02-02 02:14:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:08", + "echoMap": {}, + "alarmNo": "1890167284", + "alarmDate": "1769969646885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113243856061541", + "createdBy": null, + "createdTime": "2026-02-02 02:14:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:12", + "echoMap": {}, + "alarmNo": "1890167285", + "alarmDate": "1769969651063", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113243856062106", + "createdBy": null, + "createdTime": "2026-02-02 02:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:23:48", + "echoMap": {}, + "alarmNo": "1890167286", + "alarmDate": "1769970222681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060087", + "deviceName": "[109](10)龙柏下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996058", + "createdBy": null, + "createdTime": "2026-02-02 02:24:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:05", + "echoMap": {}, + "alarmNo": "1890167287", + "alarmDate": "1769970243903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996419", + "createdBy": null, + "createdTime": "2026-02-02 02:24:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:18", + "echoMap": {}, + "alarmNo": "1890167288", + "alarmDate": "1769970268862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996497", + "createdBy": null, + "createdTime": "2026-02-02 02:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:35", + "echoMap": {}, + "alarmNo": "1890167289", + "alarmDate": "1769970273877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996549", + "createdBy": null, + "createdTime": "2026-02-02 02:24:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:38", + "echoMap": {}, + "alarmNo": "1890167290", + "alarmDate": "1769970277070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996754", + "createdBy": null, + "createdTime": "2026-02-02 02:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:33:45", + "echoMap": {}, + "alarmNo": "1890167291", + "alarmDate": "1769970824330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035930775", + "createdBy": null, + "createdTime": "2026-02-02 02:34:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:03:59", + "echoMap": {}, + "alarmNo": "1890167292", + "alarmDate": "1769970852298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035930916", + "createdBy": null, + "createdTime": "2026-02-02 02:34:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:02", + "echoMap": {}, + "alarmNo": "1890167293", + "alarmDate": "1769970861822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035931099", + "createdBy": null, + "createdTime": "2026-02-02 02:34:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:34", + "echoMap": {}, + "alarmNo": "1890167294", + "alarmDate": "1769970873461", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035931465", + "createdBy": null, + "createdTime": "2026-02-02 02:43:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:51", + "echoMap": {}, + "alarmNo": "1890167295", + "alarmDate": "1769971429655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865425", + "createdBy": null, + "createdTime": "2026-02-02 02:44:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:32", + "echoMap": {}, + "alarmNo": "1890167296", + "alarmDate": "1769971454221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865765", + "createdBy": null, + "createdTime": "2026-02-02 02:44:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:38", + "echoMap": {}, + "alarmNo": "1890167297", + "alarmDate": "1769971477101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865838", + "createdBy": null, + "createdTime": "2026-02-02 02:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:29", + "echoMap": {}, + "alarmNo": "1890167298", + "alarmDate": "1769971590372", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865982", + "createdBy": null, + "createdTime": "2026-02-02 02:53:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:53:46", + "echoMap": {}, + "alarmNo": "1890167299", + "alarmDate": "1769972025310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113278215799993", + "createdBy": null, + "createdTime": "2026-02-02 02:54:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:14", + "echoMap": {}, + "alarmNo": "1890167300", + "alarmDate": "1769972053429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113278215800055", + "createdBy": null, + "createdTime": "2026-02-02 02:54:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:19", + "echoMap": {}, + "alarmNo": "1890167301", + "alarmDate": "1769972057567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113278215800698", + "createdBy": null, + "createdTime": "2026-02-02 03:03:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:08", + "echoMap": {}, + "alarmNo": "1890167302", + "alarmDate": "1769972635659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805734407", + "createdBy": null, + "createdTime": "2026-02-02 03:04:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:01", + "echoMap": {}, + "alarmNo": "1890167303", + "alarmDate": "1769972639965", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805734735", + "createdBy": null, + "createdTime": "2026-02-02 03:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:23", + "echoMap": {}, + "alarmNo": "1890167304", + "alarmDate": "1769972662336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805734973", + "createdBy": null, + "createdTime": "2026-02-02 03:04:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:06", + "echoMap": {}, + "alarmNo": "1890167305", + "alarmDate": "1769972681812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805735115", + "createdBy": null, + "createdTime": "2026-02-02 03:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:09", + "echoMap": {}, + "alarmNo": "1890167306", + "alarmDate": "1769973222847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669277", + "createdBy": null, + "createdTime": "2026-02-02 03:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:17", + "echoMap": {}, + "alarmNo": "1890167307", + "alarmDate": "1769973255974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669350", + "createdBy": null, + "createdTime": "2026-02-02 03:14:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:40", + "echoMap": {}, + "alarmNo": "1890167308", + "alarmDate": "1769973260878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669770", + "createdBy": null, + "createdTime": "2026-02-02 03:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:12", + "echoMap": {}, + "alarmNo": "1890167309", + "alarmDate": "1769973823266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669921", + "createdBy": null, + "createdTime": "2026-02-02 03:23:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:23:54", + "echoMap": {}, + "alarmNo": "1890167310", + "alarmDate": "1769973833134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985603585", + "createdBy": null, + "createdTime": "2026-02-02 03:23:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:23:57", + "echoMap": {}, + "alarmNo": "1890167311", + "alarmDate": "1769973836470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985603996", + "createdBy": null, + "createdTime": "2026-02-02 03:24:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:24", + "echoMap": {}, + "alarmNo": "1890167312", + "alarmDate": "1769973863426", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985604232", + "createdBy": null, + "createdTime": "2026-02-02 03:24:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:41", + "echoMap": {}, + "alarmNo": "1890167313", + "alarmDate": "1769973879912", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985604437", + "createdBy": null, + "createdTime": "2026-02-02 03:33:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:33:50", + "echoMap": {}, + "alarmNo": "1890167314", + "alarmDate": "1769974428974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985604499", + "createdBy": null, + "createdTime": "2026-02-02 03:33:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:05", + "echoMap": {}, + "alarmNo": "1890167315", + "alarmDate": "1769974433535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113312575538248", + "createdBy": null, + "createdTime": "2026-02-02 03:34:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:03", + "echoMap": {}, + "alarmNo": "1890167316", + "alarmDate": "1769974442272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113312575538974", + "createdBy": null, + "createdTime": "2026-02-02 03:43:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:43:46", + "echoMap": {}, + "alarmNo": "1890167317", + "alarmDate": "1769975024999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060041", + "deviceName": "[204](10)龙柏厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113316870505518", + "createdBy": null, + "createdTime": "2026-02-02 03:43:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:43:59", + "echoMap": {}, + "alarmNo": "1890167318", + "alarmDate": "1769975037645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473051", + "createdBy": null, + "createdTime": "2026-02-02 03:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:31", + "echoMap": {}, + "alarmNo": "1890167319", + "alarmDate": "1769975058827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473055", + "createdBy": null, + "createdTime": "2026-02-02 03:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:53:56", + "echoMap": {}, + "alarmNo": "1890167320", + "alarmDate": "1769975059018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473161", + "createdBy": null, + "createdTime": "2026-02-02 03:44:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:27", + "echoMap": {}, + "alarmNo": "1890167321", + "alarmDate": "1769975065793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473227", + "createdBy": null, + "createdTime": "2026-02-02 03:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:31", + "echoMap": {}, + "alarmNo": "1890167322", + "alarmDate": "1769975069972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473514", + "createdBy": null, + "createdTime": "2026-02-02 03:53:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:53:57", + "echoMap": {}, + "alarmNo": "1890167323", + "alarmDate": "1769975622759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473628", + "createdBy": null, + "createdTime": "2026-02-02 03:53:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:53:51", + "echoMap": {}, + "alarmNo": "1890167324", + "alarmDate": "1769975630133", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407520", + "createdBy": null, + "createdTime": "2026-02-02 03:54:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:33", + "echoMap": {}, + "alarmNo": "1890167325", + "alarmDate": "1769975648280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407533", + "createdBy": null, + "createdTime": "2026-02-02 03:54:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:21", + "echoMap": {}, + "alarmNo": "1890167326", + "alarmDate": "1769975649009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407820", + "createdBy": null, + "createdTime": "2026-02-02 03:54:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:30", + "echoMap": {}, + "alarmNo": "1890167327", + "alarmDate": "1769975668561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407926", + "createdBy": null, + "createdTime": "2026-02-02 03:54:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:37", + "echoMap": {}, + "alarmNo": "1890167328", + "alarmDate": "1769975675895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755408111", + "createdBy": null, + "createdTime": "2026-02-02 04:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:03:44", + "echoMap": {}, + "alarmNo": "1890167329", + "alarmDate": "1769976223029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755408120", + "createdBy": null, + "createdTime": "2026-02-02 04:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:03:43", + "echoMap": {}, + "alarmNo": "1890167330", + "alarmDate": "1769976223444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755408148", + "createdBy": null, + "createdTime": "2026-02-02 04:03:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:16", + "echoMap": {}, + "alarmNo": "1890167331", + "alarmDate": "1769976225180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342390", + "createdBy": null, + "createdTime": "2026-02-02 04:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:31", + "echoMap": {}, + "alarmNo": "1890167332", + "alarmDate": "1769976270444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342449", + "createdBy": null, + "createdTime": "2026-02-02 04:04:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:34", + "echoMap": {}, + "alarmNo": "1890167333", + "alarmDate": "1769976274354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342668", + "createdBy": null, + "createdTime": "2026-02-02 04:13:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:06", + "echoMap": {}, + "alarmNo": "1890167334", + "alarmDate": "1769976834542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342742", + "createdBy": null, + "createdTime": "2026-02-02 04:14:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:15", + "echoMap": {}, + "alarmNo": "1890167335", + "alarmDate": "1769976853738", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342755", + "createdBy": null, + "createdTime": "2026-02-02 04:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:31", + "echoMap": {}, + "alarmNo": "1890167336", + "alarmDate": "1769976858506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342776", + "createdBy": null, + "createdTime": "2026-02-02 04:14:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:25", + "echoMap": {}, + "alarmNo": "1890167337", + "alarmDate": "1769976864309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113342640309287", + "createdBy": null, + "createdTime": "2026-02-02 04:23:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:23:54", + "echoMap": {}, + "alarmNo": "1890167338", + "alarmDate": "1769977421713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276573", + "createdBy": null, + "createdTime": "2026-02-02 04:23:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:23:59", + "echoMap": {}, + "alarmNo": "1890167339", + "alarmDate": "1769977437654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276600", + "createdBy": null, + "createdTime": "2026-02-02 04:24:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:18", + "echoMap": {}, + "alarmNo": "1890167340", + "alarmDate": "1769977445790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276628", + "createdBy": null, + "createdTime": "2026-02-02 04:24:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:15", + "echoMap": {}, + "alarmNo": "1890167341", + "alarmDate": "1769977454342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276667", + "createdBy": null, + "createdTime": "2026-02-02 04:24:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:05", + "echoMap": {}, + "alarmNo": "1890167342", + "alarmDate": "1769977469797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276905", + "createdBy": null, + "createdTime": "2026-02-02 04:34:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:29", + "echoMap": {}, + "alarmNo": "1890167343", + "alarmDate": "1769978057021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276930", + "createdBy": null, + "createdTime": "2026-02-02 04:34:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:25", + "echoMap": {}, + "alarmNo": "1890167344", + "alarmDate": "1769978064066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276963", + "createdBy": null, + "createdTime": "2026-02-02 04:34:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:37", + "echoMap": {}, + "alarmNo": "1890167345", + "alarmDate": "1769978076228", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276974", + "createdBy": null, + "createdTime": "2026-02-02 04:34:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:43:53", + "echoMap": {}, + "alarmNo": "1890167346", + "alarmDate": "1769978081018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277153", + "createdBy": null, + "createdTime": "2026-02-02 04:44:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:16", + "echoMap": {}, + "alarmNo": "1890167347", + "alarmDate": "1769978644346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277168", + "createdBy": null, + "createdTime": "2026-02-02 04:44:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:10", + "echoMap": {}, + "alarmNo": "1890167348", + "alarmDate": "1769978648956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277220", + "createdBy": null, + "createdTime": "2026-02-02 04:44:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:40", + "echoMap": {}, + "alarmNo": "1890167349", + "alarmDate": "1769978668344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277224", + "createdBy": null, + "createdTime": "2026-02-02 04:44:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:30", + "echoMap": {}, + "alarmNo": "1890167350", + "alarmDate": "1769978669185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277398", + "createdBy": null, + "createdTime": "2026-02-02 04:53:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:05", + "echoMap": {}, + "alarmNo": "1890167351", + "alarmDate": "1769979232481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277437", + "createdBy": null, + "createdTime": "2026-02-02 04:54:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:21", + "echoMap": {}, + "alarmNo": "1890167352", + "alarmDate": "1769979241501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113351230243842", + "createdBy": null, + "createdTime": "2026-02-02 04:54:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:06", + "echoMap": {}, + "alarmNo": "1890167353", + "alarmDate": "1769979245204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113351230243884", + "createdBy": null, + "createdTime": "2026-02-02 04:54:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:29", + "echoMap": {}, + "alarmNo": "1890167354", + "alarmDate": "1769979256658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211158", + "createdBy": null, + "createdTime": "2026-02-02 04:54:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:52", + "echoMap": {}, + "alarmNo": "1890167355", + "alarmDate": "1769979271563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211186", + "createdBy": null, + "createdTime": "2026-02-02 04:54:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:52", + "echoMap": {}, + "alarmNo": "1890167356", + "alarmDate": "1769979280633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211196", + "createdBy": null, + "createdTime": "2026-02-02 04:55:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:29", + "echoMap": {}, + "alarmNo": "1890167357", + "alarmDate": "1769979330236", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211288", + "createdBy": null, + "createdTime": "2026-02-02 05:03:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:29", + "echoMap": {}, + "alarmNo": "1890167358", + "alarmDate": "1769979810209", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211357", + "createdBy": null, + "createdTime": "2026-02-02 05:03:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:53", + "echoMap": {}, + "alarmNo": "1890167359", + "alarmDate": "1769979831946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211408", + "createdBy": null, + "createdTime": "2026-02-02 05:04:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:16", + "echoMap": {}, + "alarmNo": "1890167360", + "alarmDate": "1769979843942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211409", + "createdBy": null, + "createdTime": "2026-02-02 05:04:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:05", + "echoMap": {}, + "alarmNo": "1890167361", + "alarmDate": "1769979843943", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211419", + "createdBy": null, + "createdTime": "2026-02-02 05:04:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:06", + "echoMap": {}, + "alarmNo": "1890167362", + "alarmDate": "1769979844843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211420", + "createdBy": null, + "createdTime": "2026-02-02 05:04:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:58", + "echoMap": {}, + "alarmNo": "1890167363", + "alarmDate": "1769979844905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211529", + "createdBy": null, + "createdTime": "2026-02-02 05:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:03", + "echoMap": {}, + "alarmNo": "1890167364", + "alarmDate": "1769979867941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211596", + "createdBy": null, + "createdTime": "2026-02-02 05:04:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:50", + "echoMap": {}, + "alarmNo": "1890167365", + "alarmDate": "1769979881820", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060126", + "deviceName": "[629](10)龙柏上行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211743", + "createdBy": null, + "createdTime": "2026-02-02 05:13:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:13:55", + "echoMap": {}, + "alarmNo": "1890167366", + "alarmDate": "1769980433710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211822", + "createdBy": null, + "createdTime": "2026-02-02 05:14:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:12", + "echoMap": {}, + "alarmNo": "1890167367", + "alarmDate": "1769980450992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211838", + "createdBy": null, + "createdTime": "2026-02-02 05:14:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:27", + "echoMap": {}, + "alarmNo": "1890167368", + "alarmDate": "1769980455176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211925", + "createdBy": null, + "createdTime": "2026-02-02 05:14:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:57", + "echoMap": {}, + "alarmNo": "1890167369", + "alarmDate": "1769980479196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211928", + "createdBy": null, + "createdTime": "2026-02-02 05:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:41", + "echoMap": {}, + "alarmNo": "1890167370", + "alarmDate": "1769980479746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113359820178466", + "createdBy": null, + "createdTime": "2026-02-02 05:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:52", + "echoMap": {}, + "alarmNo": "1890167371", + "alarmDate": "1769981025913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060132", + "deviceName": "[627](10)龙柏下行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113359820178479", + "createdBy": null, + "createdTime": "2026-02-02 05:23:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:49", + "echoMap": {}, + "alarmNo": "1890167372", + "alarmDate": "1769981028081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145811", + "createdBy": null, + "createdTime": "2026-02-02 05:24:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:22", + "echoMap": {}, + "alarmNo": "1890167373", + "alarmDate": "1769981050381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145878", + "createdBy": null, + "createdTime": "2026-02-02 05:24:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:28", + "echoMap": {}, + "alarmNo": "1890167374", + "alarmDate": "1769981066512", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145916", + "createdBy": null, + "createdTime": "2026-02-02 05:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:47", + "echoMap": {}, + "alarmNo": "1890167375", + "alarmDate": "1769981074367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145931", + "createdBy": null, + "createdTime": "2026-02-02 05:24:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:39", + "echoMap": {}, + "alarmNo": "1890167376", + "alarmDate": "1769981077490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146076", + "createdBy": null, + "createdTime": "2026-02-02 05:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:47", + "echoMap": {}, + "alarmNo": "1890167378", + "alarmDate": "1769981625658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146126", + "createdBy": null, + "createdTime": "2026-02-02 05:33:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:43", + "echoMap": {}, + "alarmNo": "1890167379", + "alarmDate": "1769981638705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146250", + "createdBy": null, + "createdTime": "2026-02-02 05:34:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:29", + "echoMap": {}, + "alarmNo": "1890167380", + "alarmDate": "1769981668313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146453", + "createdBy": null, + "createdTime": "2026-02-02 05:43:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:07", + "echoMap": {}, + "alarmNo": "1890167381", + "alarmDate": "1769982233924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146476", + "createdBy": null, + "createdTime": "2026-02-02 05:43:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:59", + "echoMap": {}, + "alarmNo": "1890167382", + "alarmDate": "1769982237786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146563", + "createdBy": null, + "createdTime": "2026-02-02 05:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:54", + "echoMap": {}, + "alarmNo": "1890167383", + "alarmDate": "1769982258950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146588", + "createdBy": null, + "createdTime": "2026-02-02 05:44:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:26", + "echoMap": {}, + "alarmNo": "1890167384", + "alarmDate": "1769982264609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080399", + "createdBy": null, + "createdTime": "2026-02-02 05:53:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:57", + "echoMap": {}, + "alarmNo": "1890167385", + "alarmDate": "1769982831227", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060133", + "deviceName": "[626](10)龙柏下行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080419", + "createdBy": null, + "createdTime": "2026-02-02 05:53:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:55", + "echoMap": {}, + "alarmNo": "1890167386", + "alarmDate": "1769982834214", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080478", + "createdBy": null, + "createdTime": "2026-02-02 05:54:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:49", + "echoMap": {}, + "alarmNo": "1890167387", + "alarmDate": "1769982846136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080513", + "createdBy": null, + "createdTime": "2026-02-02 05:54:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:44:17", + "echoMap": {}, + "alarmNo": "1890167388", + "alarmDate": "1769982852952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060132", + "deviceName": "[627](10)龙柏下行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080555", + "createdBy": null, + "createdTime": "2026-02-02 05:54:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:20", + "echoMap": {}, + "alarmNo": "1890167389", + "alarmDate": "1769982859182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080712", + "createdBy": null, + "createdTime": "2026-02-02 05:56:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:29", + "echoMap": {}, + "alarmNo": "1890167390", + "alarmDate": "1769982990219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080890", + "createdBy": null, + "createdTime": "2026-02-02 06:04:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:45", + "echoMap": {}, + "alarmNo": "1890167391", + "alarmDate": "1769983441431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080925", + "createdBy": null, + "createdTime": "2026-02-02 06:04:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:21", + "echoMap": {}, + "alarmNo": "1890167392", + "alarmDate": "1769983449544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080955", + "createdBy": null, + "createdTime": "2026-02-02 06:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:23", + "echoMap": {}, + "alarmNo": "1890167393", + "alarmDate": "1769983456304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060007", + "deviceName": "[331](10)龙柏5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080961", + "createdBy": null, + "createdTime": "2026-02-02 06:04:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:18", + "echoMap": {}, + "alarmNo": "1890167394", + "alarmDate": "1769983457204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081026", + "createdBy": null, + "createdTime": "2026-02-02 06:04:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:34", + "echoMap": {}, + "alarmNo": "1890167395", + "alarmDate": "1769983473332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081028", + "createdBy": null, + "createdTime": "2026-02-02 06:04:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:52", + "echoMap": {}, + "alarmNo": "1890167396", + "alarmDate": "1769983473468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081168", + "createdBy": null, + "createdTime": "2026-02-02 06:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:44", + "echoMap": {}, + "alarmNo": "1890167397", + "alarmDate": "1769984023557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081228", + "createdBy": null, + "createdTime": "2026-02-02 06:13:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:41", + "echoMap": {}, + "alarmNo": "1890167398", + "alarmDate": "1769984037714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081232", + "createdBy": null, + "createdTime": "2026-02-02 06:13:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:59", + "echoMap": {}, + "alarmNo": "1890167399", + "alarmDate": "1769984038015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113377000047660", + "createdBy": null, + "createdTime": "2026-02-02 06:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:14", + "echoMap": {}, + "alarmNo": "1890167400", + "alarmDate": "1769984052414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295014926", + "createdBy": null, + "createdTime": "2026-02-02 06:14:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:19", + "echoMap": {}, + "alarmNo": "1890167401", + "alarmDate": "1769984057809", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015131", + "createdBy": null, + "createdTime": "2026-02-02 06:23:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:04", + "echoMap": {}, + "alarmNo": "1890167402", + "alarmDate": "1769984621832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015221", + "createdBy": null, + "createdTime": "2026-02-02 06:24:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:02", + "echoMap": {}, + "alarmNo": "1890167403", + "alarmDate": "1769984641059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015276", + "createdBy": null, + "createdTime": "2026-02-02 06:24:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:43", + "echoMap": {}, + "alarmNo": "1890167404", + "alarmDate": "1769984657036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015493", + "createdBy": null, + "createdTime": "2026-02-02 06:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:50", + "echoMap": {}, + "alarmNo": "1890167405", + "alarmDate": "1769985224291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060127", + "deviceName": "[628](10)龙柏上行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015540", + "createdBy": null, + "createdTime": "2026-02-02 06:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:08", + "echoMap": {}, + "alarmNo": "1890167406", + "alarmDate": "1769985236163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015578", + "createdBy": null, + "createdTime": "2026-02-02 06:34:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:54", + "echoMap": {}, + "alarmNo": "1890167407", + "alarmDate": "1769985244153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015645", + "createdBy": null, + "createdTime": "2026-02-02 06:34:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:25", + "echoMap": {}, + "alarmNo": "1890167408", + "alarmDate": "1769985264148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015658", + "createdBy": null, + "createdTime": "2026-02-02 06:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:40", + "echoMap": {}, + "alarmNo": "1890167409", + "alarmDate": "1769985267310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015682", + "createdBy": null, + "createdTime": "2026-02-02 06:34:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:34", + "echoMap": {}, + "alarmNo": "1890167410", + "alarmDate": "1769985272717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015716", + "createdBy": null, + "createdTime": "2026-02-02 06:34:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:41", + "echoMap": {}, + "alarmNo": "1890167411", + "alarmDate": "1769985280352", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982210", + "createdBy": null, + "createdTime": "2026-02-02 06:43:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:40", + "echoMap": {}, + "alarmNo": "1890167412", + "alarmDate": "1769985821470", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982217", + "createdBy": null, + "createdTime": "2026-02-02 06:43:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:43", + "echoMap": {}, + "alarmNo": "1890167413", + "alarmDate": "1769985822705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060072", + "deviceName": "[306](10)龙柏2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982225", + "createdBy": null, + "createdTime": "2026-02-02 06:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:45", + "echoMap": {}, + "alarmNo": "1890167414", + "alarmDate": "1769985823910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982231", + "createdBy": null, + "createdTime": "2026-02-02 06:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:45", + "echoMap": {}, + "alarmNo": "1890167415", + "alarmDate": "1769985824435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949589", + "createdBy": null, + "createdTime": "2026-02-02 06:44:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:19", + "echoMap": {}, + "alarmNo": "1890167416", + "alarmDate": "1769985846467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949701", + "createdBy": null, + "createdTime": "2026-02-02 06:44:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:31", + "echoMap": {}, + "alarmNo": "1890167417", + "alarmDate": "1769985870526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949726", + "createdBy": null, + "createdTime": "2026-02-02 06:44:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:36", + "echoMap": {}, + "alarmNo": "1890167418", + "alarmDate": "1769985874733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949858", + "createdBy": null, + "createdTime": "2026-02-02 06:53:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:44:12", + "echoMap": {}, + "alarmNo": "1890167419", + "alarmDate": "1769986424324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060133", + "deviceName": "[626](10)龙柏下行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949862", + "createdBy": null, + "createdTime": "2026-02-02 06:53:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:46", + "echoMap": {}, + "alarmNo": "1890167420", + "alarmDate": "1769986424874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949987", + "createdBy": null, + "createdTime": "2026-02-02 06:54:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:18", + "echoMap": {}, + "alarmNo": "1890167421", + "alarmDate": "1769986451976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060127", + "deviceName": "[628](10)龙柏上行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884950347", + "createdBy": null, + "createdTime": "2026-02-02 07:04:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:09", + "echoMap": {}, + "alarmNo": "1890167422", + "alarmDate": "1769987047996", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884950410", + "createdBy": null, + "createdTime": "2026-02-02 07:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:24", + "echoMap": {}, + "alarmNo": "1890167423", + "alarmDate": "1769987062628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884950412", + "createdBy": null, + "createdTime": "2026-02-02 07:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:24", + "echoMap": {}, + "alarmNo": "1890167424", + "alarmDate": "1769987062911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884221", + "createdBy": null, + "createdTime": "2026-02-02 07:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:57", + "echoMap": {}, + "alarmNo": "1890167425", + "alarmDate": "1769987623166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884225", + "createdBy": null, + "createdTime": "2026-02-02 07:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:36", + "echoMap": {}, + "alarmNo": "1890167426", + "alarmDate": "1769987623779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060126", + "deviceName": "[629](10)龙柏上行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884360", + "createdBy": null, + "createdTime": "2026-02-02 07:14:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:25", + "echoMap": {}, + "alarmNo": "1890167427", + "alarmDate": "1769987664477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884686", + "createdBy": null, + "createdTime": "2026-02-02 07:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:00", + "echoMap": {}, + "alarmNo": "1890167428", + "alarmDate": "1769988273939", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884798", + "createdBy": null, + "createdTime": "2026-02-02 07:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:32", + "echoMap": {}, + "alarmNo": "1890167429", + "alarmDate": "1769988750910", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884816", + "createdBy": null, + "createdTime": "2026-02-02 07:33:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:07", + "echoMap": {}, + "alarmNo": "1890167430", + "alarmDate": "1769988823409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060080", + "deviceName": "[316](10)龙柏3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884944", + "createdBy": null, + "createdTime": "2026-02-02 07:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:21", + "echoMap": {}, + "alarmNo": "1890167431", + "alarmDate": "1769988859718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884948", + "createdBy": null, + "createdTime": "2026-02-02 07:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:55", + "echoMap": {}, + "alarmNo": "1890167432", + "alarmDate": "1769988860283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884961", + "createdBy": null, + "createdTime": "2026-02-02 07:34:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:24", + "echoMap": {}, + "alarmNo": "1890167433", + "alarmDate": "1769988862893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884971", + "createdBy": null, + "createdTime": "2026-02-02 07:34:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:25", + "echoMap": {}, + "alarmNo": "1890167434", + "alarmDate": "1769988865353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060080", + "deviceName": "[316](10)龙柏3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064818827", + "createdBy": null, + "createdTime": "2026-02-02 07:44:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:30", + "echoMap": {}, + "alarmNo": "1890167435", + "alarmDate": "1769989447202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064819439", + "createdBy": null, + "createdTime": "2026-02-02 08:03:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:57", + "echoMap": {}, + "alarmNo": "1890167436", + "alarmDate": "1769990635801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064819529", + "createdBy": null, + "createdTime": "2026-02-02 08:04:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:23", + "echoMap": {}, + "alarmNo": "1890167437", + "alarmDate": "1769990661437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064819552", + "createdBy": null, + "createdTime": "2026-02-02 08:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:29", + "echoMap": {}, + "alarmNo": "1890167438", + "alarmDate": "1769990667618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113415654753472", + "createdBy": null, + "createdTime": "2026-02-02 08:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:20", + "echoMap": {}, + "alarmNo": "1890167439", + "alarmDate": "1769991259289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113415654753495", + "createdBy": null, + "createdTime": "2026-02-02 08:14:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:25", + "echoMap": {}, + "alarmNo": "1890167440", + "alarmDate": "1769991263816", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113419949720598", + "createdBy": null, + "createdTime": "2026-02-02 08:14:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:21", + "echoMap": {}, + "alarmNo": "1890167441", + "alarmDate": "1769991269403", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113424244687988", + "createdBy": null, + "createdTime": "2026-02-02 08:23:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:23:41", + "echoMap": {}, + "alarmNo": "1890167442", + "alarmDate": "1769991820829", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060001", + "deviceName": "[330](10)龙柏5#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113432834622481", + "createdBy": null, + "createdTime": "2026-02-02 08:24:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:17", + "echoMap": {}, + "alarmNo": "1890167443", + "alarmDate": "1769991881664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113432834622609", + "createdBy": null, + "createdTime": "2026-02-02 08:33:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:53", + "echoMap": {}, + "alarmNo": "1890167444", + "alarmDate": "1769992427236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113432834622647", + "createdBy": null, + "createdTime": "2026-02-02 08:33:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:58", + "echoMap": {}, + "alarmNo": "1890167445", + "alarmDate": "1769992436643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557090", + "createdBy": null, + "createdTime": "2026-02-02 08:34:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:34:29", + "echoMap": {}, + "alarmNo": "1890167446", + "alarmDate": "1769992468378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557097", + "createdBy": null, + "createdTime": "2026-02-02 08:34:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:34:30", + "echoMap": {}, + "alarmNo": "1890167447", + "alarmDate": "1769992469397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557238", + "createdBy": null, + "createdTime": "2026-02-02 08:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:45", + "echoMap": {}, + "alarmNo": "1890167448", + "alarmDate": "1769993023576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557245", + "createdBy": null, + "createdTime": "2026-02-02 08:43:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:46", + "echoMap": {}, + "alarmNo": "1890167449", + "alarmDate": "1769993024601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557275", + "createdBy": null, + "createdTime": "2026-02-02 08:43:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:52", + "echoMap": {}, + "alarmNo": "1890167450", + "alarmDate": "1769993030619", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113445719524368", + "createdBy": null, + "createdTime": "2026-02-02 08:43:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:02", + "echoMap": {}, + "alarmNo": "1890167451", + "alarmDate": "1769993035915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060098", + "deviceName": "[101](10)龙柏上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113450014491874", + "createdBy": null, + "createdTime": "2026-02-02 08:53:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:03:47", + "echoMap": {}, + "alarmNo": "1890167452", + "alarmDate": "1769993621871", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113458604426270", + "createdBy": null, + "createdTime": "2026-02-02 08:54:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:19", + "echoMap": {}, + "alarmNo": "1890167453", + "alarmDate": "1769993646746", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113458604426564", + "createdBy": null, + "createdTime": "2026-02-02 09:03:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:03:54", + "echoMap": {}, + "alarmNo": "1890167454", + "alarmDate": "1769994233515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113462899393587", + "createdBy": null, + "createdTime": "2026-02-02 09:04:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:14", + "echoMap": {}, + "alarmNo": "1890167455", + "alarmDate": "1769994253073", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194360881", + "createdBy": null, + "createdTime": "2026-02-02 09:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:31", + "echoMap": {}, + "alarmNo": "1890167456", + "alarmDate": "1769994270206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194360888", + "createdBy": null, + "createdTime": "2026-02-02 09:04:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:32", + "echoMap": {}, + "alarmNo": "1890167457", + "alarmDate": "1769994271238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194361046", + "createdBy": null, + "createdTime": "2026-02-02 09:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:47", + "echoMap": {}, + "alarmNo": "1890167458", + "alarmDate": "1769994826352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194361054", + "createdBy": null, + "createdTime": "2026-02-02 09:13:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:48", + "echoMap": {}, + "alarmNo": "1890167459", + "alarmDate": "1769994827520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194361089", + "createdBy": null, + "createdTime": "2026-02-02 09:13:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:09", + "echoMap": {}, + "alarmNo": "1890167460", + "alarmDate": "1769994837077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113475784295491", + "createdBy": null, + "createdTime": "2026-02-02 09:14:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:45", + "echoMap": {}, + "alarmNo": "1890167461", + "alarmDate": "1769994879187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113475784295654", + "createdBy": null, + "createdTime": "2026-02-02 09:23:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:45", + "echoMap": {}, + "alarmNo": "1890167462", + "alarmDate": "1769995437383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113475784295666", + "createdBy": null, + "createdTime": "2026-02-02 09:23:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:03:58", + "echoMap": {}, + "alarmNo": "1890167463", + "alarmDate": "1769995439426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230038", + "createdBy": null, + "createdTime": "2026-02-02 09:24:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:37", + "echoMap": {}, + "alarmNo": "1890167464", + "alarmDate": "1769995476063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230049", + "createdBy": null, + "createdTime": "2026-02-02 09:24:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:39", + "echoMap": {}, + "alarmNo": "1890167465", + "alarmDate": "1769995477643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230190", + "createdBy": null, + "createdTime": "2026-02-02 09:33:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:48", + "echoMap": {}, + "alarmNo": "1890167466", + "alarmDate": "1769996027206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230233", + "createdBy": null, + "createdTime": "2026-02-02 09:33:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:57", + "echoMap": {}, + "alarmNo": "1890167467", + "alarmDate": "1769996036622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164670", + "createdBy": null, + "createdTime": "2026-02-02 09:34:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:35", + "echoMap": {}, + "alarmNo": "1890167468", + "alarmDate": "1769996074050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164680", + "createdBy": null, + "createdTime": "2026-02-02 09:34:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:36", + "echoMap": {}, + "alarmNo": "1890167469", + "alarmDate": "1769996075175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164773", + "createdBy": null, + "createdTime": "2026-02-02 09:39:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:29", + "echoMap": {}, + "alarmNo": "1890167470", + "alarmDate": "1769996370229", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164833", + "createdBy": null, + "createdTime": "2026-02-02 09:43:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:48", + "echoMap": {}, + "alarmNo": "1890167471", + "alarmDate": "1769996627435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164845", + "createdBy": null, + "createdTime": "2026-02-02 09:43:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:50", + "echoMap": {}, + "alarmNo": "1890167472", + "alarmDate": "1769996629157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113501554099550", + "createdBy": null, + "createdTime": "2026-02-02 09:54:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:05", + "echoMap": {}, + "alarmNo": "1890167473", + "alarmDate": "1769997244389", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113510144033824", + "createdBy": null, + "createdTime": "2026-02-02 09:54:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:34", + "echoMap": {}, + "alarmNo": "1890167474", + "alarmDate": "1769997272894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113510144033973", + "createdBy": null, + "createdTime": "2026-02-02 10:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:03:44", + "echoMap": {}, + "alarmNo": "1890167475", + "alarmDate": "1769997823039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113514439001116", + "createdBy": null, + "createdTime": "2026-02-02 10:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:34", + "echoMap": {}, + "alarmNo": "1890167476", + "alarmDate": "1769997867674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968385", + "createdBy": null, + "createdTime": "2026-02-02 10:04:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:36", + "echoMap": {}, + "alarmNo": "1890167477", + "alarmDate": "1769997875005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968393", + "createdBy": null, + "createdTime": "2026-02-02 10:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:38", + "echoMap": {}, + "alarmNo": "1890167478", + "alarmDate": "1769997876846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968520", + "createdBy": null, + "createdTime": "2026-02-02 10:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:10", + "echoMap": {}, + "alarmNo": "1890167479", + "alarmDate": "1769998422809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968545", + "createdBy": null, + "createdTime": "2026-02-02 10:13:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:49", + "echoMap": {}, + "alarmNo": "1890167480", + "alarmDate": "1769998428310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968559", + "createdBy": null, + "createdTime": "2026-02-02 10:13:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:52", + "echoMap": {}, + "alarmNo": "1890167481", + "alarmDate": "1769998431011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968634", + "createdBy": null, + "createdTime": "2026-02-02 10:14:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:07", + "echoMap": {}, + "alarmNo": "1890167482", + "alarmDate": "1769998445961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113523028935680", + "createdBy": null, + "createdTime": "2026-02-02 10:14:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:33", + "echoMap": {}, + "alarmNo": "1890167483", + "alarmDate": "1769998460825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113523028935712", + "createdBy": null, + "createdTime": "2026-02-02 10:14:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:29", + "echoMap": {}, + "alarmNo": "1890167484", + "alarmDate": "1769998467995", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113527323903057", + "createdBy": null, + "createdTime": "2026-02-02 10:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:29", + "echoMap": {}, + "alarmNo": "1890167485", + "alarmDate": "1769998770249", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113527323903102", + "createdBy": null, + "createdTime": "2026-02-02 10:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:41", + "echoMap": {}, + "alarmNo": "1890167486", + "alarmDate": "1769999023111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113531618870287", + "createdBy": null, + "createdTime": "2026-02-02 10:24:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:24", + "echoMap": {}, + "alarmNo": "1890167487", + "alarmDate": "1769999062718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113531618870311", + "createdBy": null, + "createdTime": "2026-02-02 10:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:29", + "echoMap": {}, + "alarmNo": "1890167488", + "alarmDate": "1769999067961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113535913837701", + "createdBy": null, + "createdTime": "2026-02-02 10:33:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:05", + "echoMap": {}, + "alarmNo": "1890167489", + "alarmDate": "1769999622456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113535913837854", + "createdBy": null, + "createdTime": "2026-02-02 10:34:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:30", + "echoMap": {}, + "alarmNo": "1890167490", + "alarmDate": "1769999657449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772162", + "createdBy": null, + "createdTime": "2026-02-02 10:34:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:34", + "echoMap": {}, + "alarmNo": "1890167491", + "alarmDate": "1769999672946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772180", + "createdBy": null, + "createdTime": "2026-02-02 10:34:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:39", + "echoMap": {}, + "alarmNo": "1890167492", + "alarmDate": "1769999677562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772296", + "createdBy": null, + "createdTime": "2026-02-02 10:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:38", + "echoMap": {}, + "alarmNo": "1890167493", + "alarmDate": "1770000223713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772312", + "createdBy": null, + "createdTime": "2026-02-02 10:43:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:48", + "echoMap": {}, + "alarmNo": "1890167494", + "alarmDate": "1770000227242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772332", + "createdBy": null, + "createdTime": "2026-02-02 10:43:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:52", + "echoMap": {}, + "alarmNo": "1890167495", + "alarmDate": "1770000230848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772351", + "createdBy": null, + "createdTime": "2026-02-02 10:43:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:56", + "echoMap": {}, + "alarmNo": "1890167496", + "alarmDate": "1770000234667", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113553093706976", + "createdBy": null, + "createdTime": "2026-02-02 10:54:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:54:11", + "echoMap": {}, + "alarmNo": "1890167497", + "alarmDate": "1770000849603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113561683641621", + "createdBy": null, + "createdTime": "2026-02-02 11:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:19", + "echoMap": {}, + "alarmNo": "1890167498", + "alarmDate": "1770001458220", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113565978608688", + "createdBy": null, + "createdTime": "2026-02-02 11:04:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:37", + "echoMap": {}, + "alarmNo": "1890167499", + "alarmDate": "1770001475743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273575941", + "createdBy": null, + "createdTime": "2026-02-02 11:04:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:39", + "echoMap": {}, + "alarmNo": "1890167500", + "alarmDate": "1770001478388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273576064", + "createdBy": null, + "createdTime": "2026-02-02 11:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:43", + "echoMap": {}, + "alarmNo": "1890167501", + "alarmDate": "1770002022571", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273576112", + "createdBy": null, + "createdTime": "2026-02-02 11:13:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:53", + "echoMap": {}, + "alarmNo": "1890167502", + "alarmDate": "1770002031668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273576115", + "createdBy": null, + "createdTime": "2026-02-02 11:13:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:53", + "echoMap": {}, + "alarmNo": "1890167503", + "alarmDate": "1770002032110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113587453445138", + "createdBy": null, + "createdTime": "2026-02-02 11:23:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:58", + "echoMap": {}, + "alarmNo": "1890167504", + "alarmDate": "1770002637312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113587453445333", + "createdBy": null, + "createdTime": "2026-02-02 11:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:42", + "echoMap": {}, + "alarmNo": "1890167505", + "alarmDate": "1770002680743", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113596043379720", + "createdBy": null, + "createdTime": "2026-02-02 11:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:33:45", + "echoMap": {}, + "alarmNo": "1890167506", + "alarmDate": "1770003223887", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113596043379948", + "createdBy": null, + "createdTime": "2026-02-02 11:34:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:38", + "echoMap": {}, + "alarmNo": "1890167507", + "alarmDate": "1770003276697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113596043379962", + "createdBy": null, + "createdTime": "2026-02-02 11:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:40", + "echoMap": {}, + "alarmNo": "1890167508", + "alarmDate": "1770003279324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113604633314368", + "createdBy": null, + "createdTime": "2026-02-02 11:43:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:49", + "echoMap": {}, + "alarmNo": "1890167509", + "alarmDate": "1770003827894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113604633314400", + "createdBy": null, + "createdTime": "2026-02-02 11:43:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:56", + "echoMap": {}, + "alarmNo": "1890167510", + "alarmDate": "1770003834533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113608928281629", + "createdBy": null, + "createdTime": "2026-02-02 11:44:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:38", + "echoMap": {}, + "alarmNo": "1890167511", + "alarmDate": "1770003877118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113613223249016", + "createdBy": null, + "createdTime": "2026-02-02 11:53:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:48", + "echoMap": {}, + "alarmNo": "1890167512", + "alarmDate": "1770004427142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113621813183788", + "createdBy": null, + "createdTime": "2026-02-02 12:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:23", + "echoMap": {}, + "alarmNo": "1890167513", + "alarmDate": "1770005061754", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113626108150825", + "createdBy": null, + "createdTime": "2026-02-02 12:04:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:33", + "echoMap": {}, + "alarmNo": "1890167514", + "alarmDate": "1770005071610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118104", + "createdBy": null, + "createdTime": "2026-02-02 12:04:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:42", + "echoMap": {}, + "alarmNo": "1890167515", + "alarmDate": "1770005081119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118228", + "createdBy": null, + "createdTime": "2026-02-02 12:13:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:46", + "echoMap": {}, + "alarmNo": "1890167516", + "alarmDate": "1770005624801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118271", + "createdBy": null, + "createdTime": "2026-02-02 12:13:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:55", + "echoMap": {}, + "alarmNo": "1890167517", + "alarmDate": "1770005634356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118284", + "createdBy": null, + "createdTime": "2026-02-02 12:13:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:57", + "echoMap": {}, + "alarmNo": "1890167518", + "alarmDate": "1770005636310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113638993052708", + "createdBy": null, + "createdTime": "2026-02-02 12:14:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:29", + "echoMap": {}, + "alarmNo": "1890167519", + "alarmDate": "1770005667775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113638993052737", + "createdBy": null, + "createdTime": "2026-02-02 12:14:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:35", + "echoMap": {}, + "alarmNo": "1890167520", + "alarmDate": "1770005674003", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113656172921924", + "createdBy": null, + "createdTime": "2026-02-02 12:34:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:24", + "echoMap": {}, + "alarmNo": "1890167521", + "alarmDate": "1770006862595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113656172922089", + "createdBy": null, + "createdTime": "2026-02-02 12:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:29", + "echoMap": {}, + "alarmNo": "1890167522", + "alarmDate": "1770007350291", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113660467889199", + "createdBy": null, + "createdTime": "2026-02-02 12:44:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:02", + "echoMap": {}, + "alarmNo": "1890167523", + "alarmDate": "1770007440592", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113664762856452", + "createdBy": null, + "createdTime": "2026-02-02 12:44:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:03", + "echoMap": {}, + "alarmNo": "1890167524", + "alarmDate": "1770007442223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113664762856481", + "createdBy": null, + "createdTime": "2026-02-02 12:44:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:08", + "echoMap": {}, + "alarmNo": "1890167525", + "alarmDate": "1770007447298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113664762856536", + "createdBy": null, + "createdTime": "2026-02-02 12:44:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:19", + "echoMap": {}, + "alarmNo": "1890167526", + "alarmDate": "1770007457674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113677647758347", + "createdBy": null, + "createdTime": "2026-02-02 12:57:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:29", + "echoMap": {}, + "alarmNo": "1890167527", + "alarmDate": "1770008250316", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725683", + "createdBy": null, + "createdTime": "2026-02-02 13:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:52", + "echoMap": {}, + "alarmNo": "1890167528", + "alarmDate": "1770008626023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725840", + "createdBy": null, + "createdTime": "2026-02-02 13:04:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:14", + "echoMap": {}, + "alarmNo": "1890167529", + "alarmDate": "1770008653473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725892", + "createdBy": null, + "createdTime": "2026-02-02 13:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:29", + "echoMap": {}, + "alarmNo": "1890167530", + "alarmDate": "1770008663181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725907", + "createdBy": null, + "createdTime": "2026-02-02 13:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:26", + "echoMap": {}, + "alarmNo": "1890167531", + "alarmDate": "1770008665291", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113690532660469", + "createdBy": null, + "createdTime": "2026-02-02 13:14:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:04", + "echoMap": {}, + "alarmNo": "1890167532", + "alarmDate": "1770009243431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113690532660476", + "createdBy": null, + "createdTime": "2026-02-02 13:14:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:05", + "echoMap": {}, + "alarmNo": "1890167533", + "alarmDate": "1770009244024", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113690532660572", + "createdBy": null, + "createdTime": "2026-02-02 13:14:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:23", + "echoMap": {}, + "alarmNo": "1890167534", + "alarmDate": "1770009262114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113694827627573", + "createdBy": null, + "createdTime": "2026-02-02 13:14:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:35", + "echoMap": {}, + "alarmNo": "1890167535", + "alarmDate": "1770009273846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113699122594879", + "createdBy": null, + "createdTime": "2026-02-02 13:18:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:29", + "echoMap": {}, + "alarmNo": "1890167536", + "alarmDate": "1770009510218", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113707712529467", + "createdBy": null, + "createdTime": "2026-02-02 13:33:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:54", + "echoMap": {}, + "alarmNo": "1890167537", + "alarmDate": "1770010432914", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113707712529525", + "createdBy": null, + "createdTime": "2026-02-02 13:34:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:14", + "echoMap": {}, + "alarmNo": "1890167538", + "alarmDate": "1770010453530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113712007496709", + "createdBy": null, + "createdTime": "2026-02-02 13:43:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:57", + "echoMap": {}, + "alarmNo": "1890167539", + "alarmDate": "1770011036256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113712007496747", + "createdBy": null, + "createdTime": "2026-02-02 13:44:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:09", + "echoMap": {}, + "alarmNo": "1890167540", + "alarmDate": "1770011047862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113716302464058", + "createdBy": null, + "createdTime": "2026-02-02 13:44:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:35", + "echoMap": {}, + "alarmNo": "1890167541", + "alarmDate": "1770011073989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113716302464204", + "createdBy": null, + "createdTime": "2026-02-02 13:53:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:53:52", + "echoMap": {}, + "alarmNo": "1890167542", + "alarmDate": "1770011631226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113720597431298", + "createdBy": null, + "createdTime": "2026-02-02 13:54:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:18", + "echoMap": {}, + "alarmNo": "1890167543", + "alarmDate": "1770011656561", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113724892398756", + "createdBy": null, + "createdTime": "2026-02-02 14:04:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:07", + "echoMap": {}, + "alarmNo": "1890167544", + "alarmDate": "1770012246322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113724892398831", + "createdBy": null, + "createdTime": "2026-02-02 14:04:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:35", + "echoMap": {}, + "alarmNo": "1890167545", + "alarmDate": "1770012273937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333195", + "createdBy": null, + "createdTime": "2026-02-02 14:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:47", + "echoMap": {}, + "alarmNo": "1890167546", + "alarmDate": "1770012826086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333261", + "createdBy": null, + "createdTime": "2026-02-02 14:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:13", + "echoMap": {}, + "alarmNo": "1890167547", + "alarmDate": "1770012851660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333328", + "createdBy": null, + "createdTime": "2026-02-02 14:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:41", + "echoMap": {}, + "alarmNo": "1890167548", + "alarmDate": "1770012880111", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333450", + "createdBy": null, + "createdTime": "2026-02-02 14:23:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:45", + "echoMap": {}, + "alarmNo": "1890167549", + "alarmDate": "1770013424196", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113737777300496", + "createdBy": null, + "createdTime": "2026-02-02 14:23:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:00", + "echoMap": {}, + "alarmNo": "1890167550", + "alarmDate": "1770013439196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072267932", + "createdBy": null, + "createdTime": "2026-02-02 14:30:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:29", + "echoMap": {}, + "alarmNo": "1890167552", + "alarmDate": "1770013830429", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072268001", + "createdBy": null, + "createdTime": "2026-02-02 14:33:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:54", + "echoMap": {}, + "alarmNo": "1890167553", + "alarmDate": "1770014032970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072268012", + "createdBy": null, + "createdTime": "2026-02-02 14:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:57", + "echoMap": {}, + "alarmNo": "1890167554", + "alarmDate": "1770014036182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113746367235101", + "createdBy": null, + "createdTime": "2026-02-02 14:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:28", + "echoMap": {}, + "alarmNo": "1890167555", + "alarmDate": "1770014066700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113750662202372", + "createdBy": null, + "createdTime": "2026-02-02 14:34:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:38", + "echoMap": {}, + "alarmNo": "1890167556", + "alarmDate": "1770014077831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "723113364115146011", + "createdBy": null, + "createdTime": "2026-02-02 05:30:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:29", + "echoMap": {}, + "alarmNo": "1890167377", + "alarmDate": "1769981430668", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1031030017", + "deviceName": "安防箱17", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1031" + }, + { + "id": "723113742072267872", + "createdBy": null, + "createdTime": "2026-02-02 14:25:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:29", + "echoMap": {}, + "alarmNo": "1890167551", + "alarmDate": "1770013530457", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1031030017", + "deviceName": "安防箱17", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1031" + } + ], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113750662202372", + "createdBy": null, + "createdTime": "2026-02-02 14:34:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:38", + "echoMap": {}, + "alarmNo": "1890167556", + "alarmDate": "1770014077831", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113746367235101", + "createdBy": null, + "createdTime": "2026-02-02 14:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:28", + "echoMap": {}, + "alarmNo": "1890167555", + "alarmDate": "1770014066700", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072268012", + "createdBy": null, + "createdTime": "2026-02-02 14:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:57", + "echoMap": {}, + "alarmNo": "1890167554", + "alarmDate": "1770014036182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072268001", + "createdBy": null, + "createdTime": "2026-02-02 14:33:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:54", + "echoMap": {}, + "alarmNo": "1890167553", + "alarmDate": "1770014032970", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072267932", + "createdBy": null, + "createdTime": "2026-02-02 14:30:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:29", + "echoMap": {}, + "alarmNo": "1890167552", + "alarmDate": "1770013830429", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113742072267872", + "createdBy": null, + "createdTime": "2026-02-02 14:25:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:26:29", + "echoMap": {}, + "alarmNo": "1890167551", + "alarmDate": "1770013530457", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1031030017", + "deviceName": "安防箱17", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1031" + }, + { + "id": "723113737777300496", + "createdBy": null, + "createdTime": "2026-02-02 14:23:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:00", + "echoMap": {}, + "alarmNo": "1890167550", + "alarmDate": "1770013439196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333450", + "createdBy": null, + "createdTime": "2026-02-02 14:23:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:45", + "echoMap": {}, + "alarmNo": "1890167549", + "alarmDate": "1770013424196", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333328", + "createdBy": null, + "createdTime": "2026-02-02 14:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:41", + "echoMap": {}, + "alarmNo": "1890167548", + "alarmDate": "1770012880111", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333261", + "createdBy": null, + "createdTime": "2026-02-02 14:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:13", + "echoMap": {}, + "alarmNo": "1890167547", + "alarmDate": "1770012851660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113733482333195", + "createdBy": null, + "createdTime": "2026-02-02 14:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:47", + "echoMap": {}, + "alarmNo": "1890167546", + "alarmDate": "1770012826086", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113724892398831", + "createdBy": null, + "createdTime": "2026-02-02 14:04:34", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:35", + "echoMap": {}, + "alarmNo": "1890167545", + "alarmDate": "1770012273937", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113724892398756", + "createdBy": null, + "createdTime": "2026-02-02 14:04:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:07", + "echoMap": {}, + "alarmNo": "1890167544", + "alarmDate": "1770012246322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113720597431298", + "createdBy": null, + "createdTime": "2026-02-02 13:54:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:54:18", + "echoMap": {}, + "alarmNo": "1890167543", + "alarmDate": "1770011656561", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113716302464204", + "createdBy": null, + "createdTime": "2026-02-02 13:53:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:53:52", + "echoMap": {}, + "alarmNo": "1890167542", + "alarmDate": "1770011631226", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113716302464058", + "createdBy": null, + "createdTime": "2026-02-02 13:44:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:35", + "echoMap": {}, + "alarmNo": "1890167541", + "alarmDate": "1770011073989", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113712007496747", + "createdBy": null, + "createdTime": "2026-02-02 13:44:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:09", + "echoMap": {}, + "alarmNo": "1890167540", + "alarmDate": "1770011047862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113712007496709", + "createdBy": null, + "createdTime": "2026-02-02 13:43:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:43:57", + "echoMap": {}, + "alarmNo": "1890167539", + "alarmDate": "1770011036256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113707712529525", + "createdBy": null, + "createdTime": "2026-02-02 13:34:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:14", + "echoMap": {}, + "alarmNo": "1890167538", + "alarmDate": "1770010453530", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113707712529467", + "createdBy": null, + "createdTime": "2026-02-02 13:33:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:54", + "echoMap": {}, + "alarmNo": "1890167537", + "alarmDate": "1770010432914", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113699122594879", + "createdBy": null, + "createdTime": "2026-02-02 13:18:30", + "updatedBy": null, + "updatedTime": "2026-02-02 13:19:29", + "echoMap": {}, + "alarmNo": "1890167536", + "alarmDate": "1770009510218", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113694827627573", + "createdBy": null, + "createdTime": "2026-02-02 13:14:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:35", + "echoMap": {}, + "alarmNo": "1890167535", + "alarmDate": "1770009273846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113690532660572", + "createdBy": null, + "createdTime": "2026-02-02 13:14:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:23", + "echoMap": {}, + "alarmNo": "1890167534", + "alarmDate": "1770009262114", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113690532660476", + "createdBy": null, + "createdTime": "2026-02-02 13:14:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:05", + "echoMap": {}, + "alarmNo": "1890167533", + "alarmDate": "1770009244024", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113690532660469", + "createdBy": null, + "createdTime": "2026-02-02 13:14:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:14:04", + "echoMap": {}, + "alarmNo": "1890167532", + "alarmDate": "1770009243431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725907", + "createdBy": null, + "createdTime": "2026-02-02 13:04:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:26", + "echoMap": {}, + "alarmNo": "1890167531", + "alarmDate": "1770008665291", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725892", + "createdBy": null, + "createdTime": "2026-02-02 13:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:29", + "echoMap": {}, + "alarmNo": "1890167530", + "alarmDate": "1770008663181", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725840", + "createdBy": null, + "createdTime": "2026-02-02 13:04:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:04:14", + "echoMap": {}, + "alarmNo": "1890167529", + "alarmDate": "1770008653473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113681942725683", + "createdBy": null, + "createdTime": "2026-02-02 13:03:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:52", + "echoMap": {}, + "alarmNo": "1890167528", + "alarmDate": "1770008626023", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113677647758347", + "createdBy": null, + "createdTime": "2026-02-02 12:57:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:58:29", + "echoMap": {}, + "alarmNo": "1890167527", + "alarmDate": "1770008250316", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113664762856536", + "createdBy": null, + "createdTime": "2026-02-02 12:44:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:19", + "echoMap": {}, + "alarmNo": "1890167526", + "alarmDate": "1770007457674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113664762856481", + "createdBy": null, + "createdTime": "2026-02-02 12:44:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:08", + "echoMap": {}, + "alarmNo": "1890167525", + "alarmDate": "1770007447298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113664762856452", + "createdBy": null, + "createdTime": "2026-02-02 12:44:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:03", + "echoMap": {}, + "alarmNo": "1890167524", + "alarmDate": "1770007442223", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113660467889199", + "createdBy": null, + "createdTime": "2026-02-02 12:44:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:44:02", + "echoMap": {}, + "alarmNo": "1890167523", + "alarmDate": "1770007440592", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113656172922089", + "createdBy": null, + "createdTime": "2026-02-02 12:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:29", + "echoMap": {}, + "alarmNo": "1890167522", + "alarmDate": "1770007350291", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113656172921924", + "createdBy": null, + "createdTime": "2026-02-02 12:34:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:24", + "echoMap": {}, + "alarmNo": "1890167521", + "alarmDate": "1770006862595", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113638993052737", + "createdBy": null, + "createdTime": "2026-02-02 12:14:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:35", + "echoMap": {}, + "alarmNo": "1890167520", + "alarmDate": "1770005674003", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113638993052708", + "createdBy": null, + "createdTime": "2026-02-02 12:14:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:14:29", + "echoMap": {}, + "alarmNo": "1890167519", + "alarmDate": "1770005667775", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118284", + "createdBy": null, + "createdTime": "2026-02-02 12:13:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:57", + "echoMap": {}, + "alarmNo": "1890167518", + "alarmDate": "1770005636310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118271", + "createdBy": null, + "createdTime": "2026-02-02 12:13:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:55", + "echoMap": {}, + "alarmNo": "1890167517", + "alarmDate": "1770005634356", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118228", + "createdBy": null, + "createdTime": "2026-02-02 12:13:45", + "updatedBy": null, + "updatedTime": "2026-02-02 12:13:46", + "echoMap": {}, + "alarmNo": "1890167516", + "alarmDate": "1770005624801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113630403118104", + "createdBy": null, + "createdTime": "2026-02-02 12:04:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:42", + "echoMap": {}, + "alarmNo": "1890167515", + "alarmDate": "1770005081119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113626108150825", + "createdBy": null, + "createdTime": "2026-02-02 12:04:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:33", + "echoMap": {}, + "alarmNo": "1890167514", + "alarmDate": "1770005071610", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113621813183788", + "createdBy": null, + "createdTime": "2026-02-02 12:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:23", + "echoMap": {}, + "alarmNo": "1890167513", + "alarmDate": "1770005061754", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113613223249016", + "createdBy": null, + "createdTime": "2026-02-02 11:53:47", + "updatedBy": null, + "updatedTime": "2026-02-02 11:53:48", + "echoMap": {}, + "alarmNo": "1890167512", + "alarmDate": "1770004427142", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113608928281629", + "createdBy": null, + "createdTime": "2026-02-02 11:44:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:44:38", + "echoMap": {}, + "alarmNo": "1890167511", + "alarmDate": "1770003877118", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113604633314400", + "createdBy": null, + "createdTime": "2026-02-02 11:43:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:56", + "echoMap": {}, + "alarmNo": "1890167510", + "alarmDate": "1770003834533", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113604633314368", + "createdBy": null, + "createdTime": "2026-02-02 11:43:48", + "updatedBy": null, + "updatedTime": "2026-02-02 11:43:49", + "echoMap": {}, + "alarmNo": "1890167509", + "alarmDate": "1770003827894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113596043379962", + "createdBy": null, + "createdTime": "2026-02-02 11:34:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:40", + "echoMap": {}, + "alarmNo": "1890167508", + "alarmDate": "1770003279324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113596043379948", + "createdBy": null, + "createdTime": "2026-02-02 11:34:37", + "updatedBy": null, + "updatedTime": "2026-02-02 11:34:38", + "echoMap": {}, + "alarmNo": "1890167507", + "alarmDate": "1770003276697", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113596043379720", + "createdBy": null, + "createdTime": "2026-02-02 11:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:33:45", + "echoMap": {}, + "alarmNo": "1890167506", + "alarmDate": "1770003223887", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113587453445333", + "createdBy": null, + "createdTime": "2026-02-02 11:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 11:24:42", + "echoMap": {}, + "alarmNo": "1890167505", + "alarmDate": "1770002680743", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113587453445138", + "createdBy": null, + "createdTime": "2026-02-02 11:23:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:23:58", + "echoMap": {}, + "alarmNo": "1890167504", + "alarmDate": "1770002637312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273576115", + "createdBy": null, + "createdTime": "2026-02-02 11:13:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:53", + "echoMap": {}, + "alarmNo": "1890167503", + "alarmDate": "1770002032110", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273576112", + "createdBy": null, + "createdTime": "2026-02-02 11:13:52", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:53", + "echoMap": {}, + "alarmNo": "1890167502", + "alarmDate": "1770002031668", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273576064", + "createdBy": null, + "createdTime": "2026-02-02 11:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 11:13:43", + "echoMap": {}, + "alarmNo": "1890167501", + "alarmDate": "1770002022571", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113570273575941", + "createdBy": null, + "createdTime": "2026-02-02 11:04:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:39", + "echoMap": {}, + "alarmNo": "1890167500", + "alarmDate": "1770001478388", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113565978608688", + "createdBy": null, + "createdTime": "2026-02-02 11:04:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:37", + "echoMap": {}, + "alarmNo": "1890167499", + "alarmDate": "1770001475743", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113561683641621", + "createdBy": null, + "createdTime": "2026-02-02 11:04:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:04:19", + "echoMap": {}, + "alarmNo": "1890167498", + "alarmDate": "1770001458220", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113553093706976", + "createdBy": null, + "createdTime": "2026-02-02 10:54:10", + "updatedBy": null, + "updatedTime": "2026-02-02 10:54:11", + "echoMap": {}, + "alarmNo": "1890167497", + "alarmDate": "1770000849603", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772351", + "createdBy": null, + "createdTime": "2026-02-02 10:43:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:56", + "echoMap": {}, + "alarmNo": "1890167496", + "alarmDate": "1770000234667", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772332", + "createdBy": null, + "createdTime": "2026-02-02 10:43:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:52", + "echoMap": {}, + "alarmNo": "1890167495", + "alarmDate": "1770000230848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772312", + "createdBy": null, + "createdTime": "2026-02-02 10:43:47", + "updatedBy": null, + "updatedTime": "2026-02-02 10:43:48", + "echoMap": {}, + "alarmNo": "1890167494", + "alarmDate": "1770000227242", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772296", + "createdBy": null, + "createdTime": "2026-02-02 10:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:38", + "echoMap": {}, + "alarmNo": "1890167493", + "alarmDate": "1770000223713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772180", + "createdBy": null, + "createdTime": "2026-02-02 10:34:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:39", + "echoMap": {}, + "alarmNo": "1890167492", + "alarmDate": "1769999677562", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113544503772162", + "createdBy": null, + "createdTime": "2026-02-02 10:34:33", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:34", + "echoMap": {}, + "alarmNo": "1890167491", + "alarmDate": "1769999672946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113535913837854", + "createdBy": null, + "createdTime": "2026-02-02 10:34:17", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:30", + "echoMap": {}, + "alarmNo": "1890167490", + "alarmDate": "1769999657449", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113535913837701", + "createdBy": null, + "createdTime": "2026-02-02 10:33:42", + "updatedBy": null, + "updatedTime": "2026-02-02 10:34:05", + "echoMap": {}, + "alarmNo": "1890167489", + "alarmDate": "1769999622456", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113531618870311", + "createdBy": null, + "createdTime": "2026-02-02 10:24:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:29", + "echoMap": {}, + "alarmNo": "1890167488", + "alarmDate": "1769999067961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113531618870287", + "createdBy": null, + "createdTime": "2026-02-02 10:24:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:24", + "echoMap": {}, + "alarmNo": "1890167487", + "alarmDate": "1769999062718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113527323903102", + "createdBy": null, + "createdTime": "2026-02-02 10:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:24:41", + "echoMap": {}, + "alarmNo": "1890167486", + "alarmDate": "1769999023111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113527323903057", + "createdBy": null, + "createdTime": "2026-02-02 10:19:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:20:29", + "echoMap": {}, + "alarmNo": "1890167485", + "alarmDate": "1769998770249", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113523028935712", + "createdBy": null, + "createdTime": "2026-02-02 10:14:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:29", + "echoMap": {}, + "alarmNo": "1890167484", + "alarmDate": "1769998467995", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113523028935680", + "createdBy": null, + "createdTime": "2026-02-02 10:14:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:33", + "echoMap": {}, + "alarmNo": "1890167483", + "alarmDate": "1769998460825", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968634", + "createdBy": null, + "createdTime": "2026-02-02 10:14:06", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:07", + "echoMap": {}, + "alarmNo": "1890167482", + "alarmDate": "1769998445961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060079", + "deviceName": "[210](10)龙柏3#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968559", + "createdBy": null, + "createdTime": "2026-02-02 10:13:51", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:52", + "echoMap": {}, + "alarmNo": "1890167481", + "alarmDate": "1769998431011", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968545", + "createdBy": null, + "createdTime": "2026-02-02 10:13:48", + "updatedBy": null, + "updatedTime": "2026-02-02 10:13:49", + "echoMap": {}, + "alarmNo": "1890167480", + "alarmDate": "1769998428310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968520", + "createdBy": null, + "createdTime": "2026-02-02 10:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:14:10", + "echoMap": {}, + "alarmNo": "1890167479", + "alarmDate": "1769998422809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968393", + "createdBy": null, + "createdTime": "2026-02-02 10:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:38", + "echoMap": {}, + "alarmNo": "1890167478", + "alarmDate": "1769997876846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113518733968385", + "createdBy": null, + "createdTime": "2026-02-02 10:04:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:36", + "echoMap": {}, + "alarmNo": "1890167477", + "alarmDate": "1769997875005", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113514439001116", + "createdBy": null, + "createdTime": "2026-02-02 10:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 10:04:34", + "echoMap": {}, + "alarmNo": "1890167476", + "alarmDate": "1769997867674", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113510144033973", + "createdBy": null, + "createdTime": "2026-02-02 10:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 10:03:44", + "echoMap": {}, + "alarmNo": "1890167475", + "alarmDate": "1769997823039", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113510144033824", + "createdBy": null, + "createdTime": "2026-02-02 09:54:33", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:34", + "echoMap": {}, + "alarmNo": "1890167474", + "alarmDate": "1769997272894", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113501554099550", + "createdBy": null, + "createdTime": "2026-02-02 09:54:04", + "updatedBy": null, + "updatedTime": "2026-02-02 09:54:05", + "echoMap": {}, + "alarmNo": "1890167473", + "alarmDate": "1769997244389", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164845", + "createdBy": null, + "createdTime": "2026-02-02 09:43:49", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:50", + "echoMap": {}, + "alarmNo": "1890167472", + "alarmDate": "1769996629157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164833", + "createdBy": null, + "createdTime": "2026-02-02 09:43:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:43:48", + "echoMap": {}, + "alarmNo": "1890167471", + "alarmDate": "1769996627435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164773", + "createdBy": null, + "createdTime": "2026-02-02 09:39:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:40:29", + "echoMap": {}, + "alarmNo": "1890167470", + "alarmDate": "1769996370229", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164680", + "createdBy": null, + "createdTime": "2026-02-02 09:34:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:36", + "echoMap": {}, + "alarmNo": "1890167469", + "alarmDate": "1769996075175", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113492964164670", + "createdBy": null, + "createdTime": "2026-02-02 09:34:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:34:35", + "echoMap": {}, + "alarmNo": "1890167468", + "alarmDate": "1769996074050", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230233", + "createdBy": null, + "createdTime": "2026-02-02 09:33:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:57", + "echoMap": {}, + "alarmNo": "1890167467", + "alarmDate": "1769996036622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230190", + "createdBy": null, + "createdTime": "2026-02-02 09:33:47", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:48", + "echoMap": {}, + "alarmNo": "1890167466", + "alarmDate": "1769996027206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230049", + "createdBy": null, + "createdTime": "2026-02-02 09:24:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:39", + "echoMap": {}, + "alarmNo": "1890167465", + "alarmDate": "1769995477643", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113484374230038", + "createdBy": null, + "createdTime": "2026-02-02 09:24:36", + "updatedBy": null, + "updatedTime": "2026-02-02 09:24:37", + "echoMap": {}, + "alarmNo": "1890167464", + "alarmDate": "1769995476063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113475784295666", + "createdBy": null, + "createdTime": "2026-02-02 09:23:59", + "updatedBy": null, + "updatedTime": "2026-02-02 10:03:58", + "echoMap": {}, + "alarmNo": "1890167463", + "alarmDate": "1769995439426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060085", + "deviceName": "[319](10)龙柏3#口扶梯5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113475784295654", + "createdBy": null, + "createdTime": "2026-02-02 09:23:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:33:45", + "echoMap": {}, + "alarmNo": "1890167462", + "alarmDate": "1769995437383", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113475784295491", + "createdBy": null, + "createdTime": "2026-02-02 09:14:39", + "updatedBy": null, + "updatedTime": "2026-02-02 09:23:45", + "echoMap": {}, + "alarmNo": "1890167461", + "alarmDate": "1769994879187", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194361089", + "createdBy": null, + "createdTime": "2026-02-02 09:13:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:09", + "echoMap": {}, + "alarmNo": "1890167460", + "alarmDate": "1769994837077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060070", + "deviceName": "[308](10)龙柏2#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194361054", + "createdBy": null, + "createdTime": "2026-02-02 09:13:48", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:48", + "echoMap": {}, + "alarmNo": "1890167459", + "alarmDate": "1769994827520", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194361046", + "createdBy": null, + "createdTime": "2026-02-02 09:13:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:13:47", + "echoMap": {}, + "alarmNo": "1890167458", + "alarmDate": "1769994826352", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194360888", + "createdBy": null, + "createdTime": "2026-02-02 09:04:31", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:32", + "echoMap": {}, + "alarmNo": "1890167457", + "alarmDate": "1769994271238", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113467194360881", + "createdBy": null, + "createdTime": "2026-02-02 09:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:31", + "echoMap": {}, + "alarmNo": "1890167456", + "alarmDate": "1769994270206", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113462899393587", + "createdBy": null, + "createdTime": "2026-02-02 09:04:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:04:14", + "echoMap": {}, + "alarmNo": "1890167455", + "alarmDate": "1769994253073", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113458604426564", + "createdBy": null, + "createdTime": "2026-02-02 09:03:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:03:54", + "echoMap": {}, + "alarmNo": "1890167454", + "alarmDate": "1769994233515", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113458604426270", + "createdBy": null, + "createdTime": "2026-02-02 08:54:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:54:19", + "echoMap": {}, + "alarmNo": "1890167453", + "alarmDate": "1769993646746", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113450014491874", + "createdBy": null, + "createdTime": "2026-02-02 08:53:42", + "updatedBy": null, + "updatedTime": "2026-02-02 11:03:47", + "echoMap": {}, + "alarmNo": "1890167452", + "alarmDate": "1769993621871", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113445719524368", + "createdBy": null, + "createdTime": "2026-02-02 08:43:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:02", + "echoMap": {}, + "alarmNo": "1890167451", + "alarmDate": "1769993035915", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060098", + "deviceName": "[101](10)龙柏上行1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557275", + "createdBy": null, + "createdTime": "2026-02-02 08:43:51", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:52", + "echoMap": {}, + "alarmNo": "1890167450", + "alarmDate": "1769993030619", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557245", + "createdBy": null, + "createdTime": "2026-02-02 08:43:45", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:46", + "echoMap": {}, + "alarmNo": "1890167449", + "alarmDate": "1769993024601", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557238", + "createdBy": null, + "createdTime": "2026-02-02 08:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 08:43:45", + "echoMap": {}, + "alarmNo": "1890167448", + "alarmDate": "1769993023576", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557097", + "createdBy": null, + "createdTime": "2026-02-02 08:34:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:34:30", + "echoMap": {}, + "alarmNo": "1890167447", + "alarmDate": "1769992469397", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113441424557090", + "createdBy": null, + "createdTime": "2026-02-02 08:34:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:34:29", + "echoMap": {}, + "alarmNo": "1890167446", + "alarmDate": "1769992468378", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113432834622647", + "createdBy": null, + "createdTime": "2026-02-02 08:33:57", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:58", + "echoMap": {}, + "alarmNo": "1890167445", + "alarmDate": "1769992436643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113432834622609", + "createdBy": null, + "createdTime": "2026-02-02 08:33:47", + "updatedBy": null, + "updatedTime": "2026-02-02 08:33:53", + "echoMap": {}, + "alarmNo": "1890167444", + "alarmDate": "1769992427236", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113432834622481", + "createdBy": null, + "createdTime": "2026-02-02 08:24:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:14:17", + "echoMap": {}, + "alarmNo": "1890167443", + "alarmDate": "1769991881664", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113424244687988", + "createdBy": null, + "createdTime": "2026-02-02 08:23:41", + "updatedBy": null, + "updatedTime": "2026-02-02 08:23:41", + "echoMap": {}, + "alarmNo": "1890167442", + "alarmDate": "1769991820829", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060001", + "deviceName": "[330](10)龙柏5#口出1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113419949720598", + "createdBy": null, + "createdTime": "2026-02-02 08:14:29", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:21", + "echoMap": {}, + "alarmNo": "1890167441", + "alarmDate": "1769991269403", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113415654753495", + "createdBy": null, + "createdTime": "2026-02-02 08:14:24", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:25", + "echoMap": {}, + "alarmNo": "1890167440", + "alarmDate": "1769991263816", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113415654753472", + "createdBy": null, + "createdTime": "2026-02-02 08:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:20", + "echoMap": {}, + "alarmNo": "1890167439", + "alarmDate": "1769991259289", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064819552", + "createdBy": null, + "createdTime": "2026-02-02 08:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:29", + "echoMap": {}, + "alarmNo": "1890167438", + "alarmDate": "1769990667618", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064819529", + "createdBy": null, + "createdTime": "2026-02-02 08:04:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:04:23", + "echoMap": {}, + "alarmNo": "1890167437", + "alarmDate": "1769990661437", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064819439", + "createdBy": null, + "createdTime": "2026-02-02 08:03:56", + "updatedBy": null, + "updatedTime": "2026-02-02 08:03:57", + "echoMap": {}, + "alarmNo": "1890167436", + "alarmDate": "1769990635801", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113407064818827", + "createdBy": null, + "createdTime": "2026-02-02 07:44:07", + "updatedBy": null, + "updatedTime": "2026-02-02 08:14:30", + "echoMap": {}, + "alarmNo": "1890167435", + "alarmDate": "1769989447202", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884971", + "createdBy": null, + "createdTime": "2026-02-02 07:34:25", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:25", + "echoMap": {}, + "alarmNo": "1890167434", + "alarmDate": "1769988865353", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060080", + "deviceName": "[316](10)龙柏3#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884961", + "createdBy": null, + "createdTime": "2026-02-02 07:34:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:24", + "echoMap": {}, + "alarmNo": "1890167433", + "alarmDate": "1769988862893", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884948", + "createdBy": null, + "createdTime": "2026-02-02 07:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:43:55", + "echoMap": {}, + "alarmNo": "1890167432", + "alarmDate": "1769988860283", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884944", + "createdBy": null, + "createdTime": "2026-02-02 07:34:20", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:21", + "echoMap": {}, + "alarmNo": "1890167431", + "alarmDate": "1769988859718", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884816", + "createdBy": null, + "createdTime": "2026-02-02 07:33:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:34:07", + "echoMap": {}, + "alarmNo": "1890167430", + "alarmDate": "1769988823409", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060080", + "deviceName": "[316](10)龙柏3#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884798", + "createdBy": null, + "createdTime": "2026-02-02 07:32:31", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:32", + "echoMap": {}, + "alarmNo": "1890167429", + "alarmDate": "1769988750910", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884686", + "createdBy": null, + "createdTime": "2026-02-02 07:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 07:54:00", + "echoMap": {}, + "alarmNo": "1890167428", + "alarmDate": "1769988273939", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884360", + "createdBy": null, + "createdTime": "2026-02-02 07:14:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:14:25", + "echoMap": {}, + "alarmNo": "1890167427", + "alarmDate": "1769987664477", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884225", + "createdBy": null, + "createdTime": "2026-02-02 07:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:36", + "echoMap": {}, + "alarmNo": "1890167426", + "alarmDate": "1769987623779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060126", + "deviceName": "[629](10)龙柏上行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113398474884221", + "createdBy": null, + "createdTime": "2026-02-02 07:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 07:33:57", + "echoMap": {}, + "alarmNo": "1890167425", + "alarmDate": "1769987623166", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060084", + "deviceName": "[320](10)龙柏3#口扶梯6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884950412", + "createdBy": null, + "createdTime": "2026-02-02 07:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:24", + "echoMap": {}, + "alarmNo": "1890167424", + "alarmDate": "1769987062911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884950410", + "createdBy": null, + "createdTime": "2026-02-02 07:04:23", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:24", + "echoMap": {}, + "alarmNo": "1890167423", + "alarmDate": "1769987062628", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884950347", + "createdBy": null, + "createdTime": "2026-02-02 07:04:08", + "updatedBy": null, + "updatedTime": "2026-02-02 07:04:09", + "echoMap": {}, + "alarmNo": "1890167422", + "alarmDate": "1769987047996", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949987", + "createdBy": null, + "createdTime": "2026-02-02 06:54:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:54:18", + "echoMap": {}, + "alarmNo": "1890167421", + "alarmDate": "1769986451976", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060127", + "deviceName": "[628](10)龙柏上行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949862", + "createdBy": null, + "createdTime": "2026-02-02 06:53:45", + "updatedBy": null, + "updatedTime": "2026-02-02 06:53:46", + "echoMap": {}, + "alarmNo": "1890167420", + "alarmDate": "1769986424874", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949858", + "createdBy": null, + "createdTime": "2026-02-02 06:53:44", + "updatedBy": null, + "updatedTime": "2026-02-02 09:44:12", + "echoMap": {}, + "alarmNo": "1890167419", + "alarmDate": "1769986424324", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060133", + "deviceName": "[626](10)龙柏下行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949726", + "createdBy": null, + "createdTime": "2026-02-02 06:44:35", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:36", + "echoMap": {}, + "alarmNo": "1890167418", + "alarmDate": "1769985874733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949701", + "createdBy": null, + "createdTime": "2026-02-02 06:44:31", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:31", + "echoMap": {}, + "alarmNo": "1890167417", + "alarmDate": "1769985870526", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113389884949589", + "createdBy": null, + "createdTime": "2026-02-02 06:44:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:44:19", + "echoMap": {}, + "alarmNo": "1890167416", + "alarmDate": "1769985846467", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982231", + "createdBy": null, + "createdTime": "2026-02-02 06:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:45", + "echoMap": {}, + "alarmNo": "1890167415", + "alarmDate": "1769985824435", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982225", + "createdBy": null, + "createdTime": "2026-02-02 06:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:45", + "echoMap": {}, + "alarmNo": "1890167414", + "alarmDate": "1769985823910", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982217", + "createdBy": null, + "createdTime": "2026-02-02 06:43:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:43", + "echoMap": {}, + "alarmNo": "1890167413", + "alarmDate": "1769985822705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060072", + "deviceName": "[306](10)龙柏2#口扶梯1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113385589982210", + "createdBy": null, + "createdTime": "2026-02-02 06:43:41", + "updatedBy": null, + "updatedTime": "2026-02-02 07:44:40", + "echoMap": {}, + "alarmNo": "1890167412", + "alarmDate": "1769985821470", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015716", + "createdBy": null, + "createdTime": "2026-02-02 06:34:40", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:41", + "echoMap": {}, + "alarmNo": "1890167411", + "alarmDate": "1769985280352", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015682", + "createdBy": null, + "createdTime": "2026-02-02 06:34:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:34", + "echoMap": {}, + "alarmNo": "1890167410", + "alarmDate": "1769985272717", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015658", + "createdBy": null, + "createdTime": "2026-02-02 06:34:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:40", + "echoMap": {}, + "alarmNo": "1890167409", + "alarmDate": "1769985267310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015645", + "createdBy": null, + "createdTime": "2026-02-02 06:34:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:25", + "echoMap": {}, + "alarmNo": "1890167408", + "alarmDate": "1769985264148", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015578", + "createdBy": null, + "createdTime": "2026-02-02 06:34:04", + "updatedBy": null, + "updatedTime": "2026-02-02 06:43:54", + "echoMap": {}, + "alarmNo": "1890167407", + "alarmDate": "1769985244153", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015540", + "createdBy": null, + "createdTime": "2026-02-02 06:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:34:08", + "echoMap": {}, + "alarmNo": "1890167406", + "alarmDate": "1769985236163", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015493", + "createdBy": null, + "createdTime": "2026-02-02 06:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:50", + "echoMap": {}, + "alarmNo": "1890167405", + "alarmDate": "1769985224291", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060127", + "deviceName": "[628](10)龙柏上行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015276", + "createdBy": null, + "createdTime": "2026-02-02 06:24:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:43", + "echoMap": {}, + "alarmNo": "1890167404", + "alarmDate": "1769984657036", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015221", + "createdBy": null, + "createdTime": "2026-02-02 06:24:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:02", + "echoMap": {}, + "alarmNo": "1890167403", + "alarmDate": "1769984641059", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295015131", + "createdBy": null, + "createdTime": "2026-02-02 06:23:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:24:04", + "echoMap": {}, + "alarmNo": "1890167402", + "alarmDate": "1769984621832", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113381295014926", + "createdBy": null, + "createdTime": "2026-02-02 06:14:18", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:19", + "echoMap": {}, + "alarmNo": "1890167401", + "alarmDate": "1769984057809", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113377000047660", + "createdBy": null, + "createdTime": "2026-02-02 06:14:12", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:14", + "echoMap": {}, + "alarmNo": "1890167400", + "alarmDate": "1769984052414", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081232", + "createdBy": null, + "createdTime": "2026-02-02 06:13:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:59", + "echoMap": {}, + "alarmNo": "1890167399", + "alarmDate": "1769984038015", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081228", + "createdBy": null, + "createdTime": "2026-02-02 06:13:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:14:41", + "echoMap": {}, + "alarmNo": "1890167398", + "alarmDate": "1769984037714", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081168", + "createdBy": null, + "createdTime": "2026-02-02 06:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:44", + "echoMap": {}, + "alarmNo": "1890167397", + "alarmDate": "1769984023557", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081028", + "createdBy": null, + "createdTime": "2026-02-02 06:04:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:52", + "echoMap": {}, + "alarmNo": "1890167396", + "alarmDate": "1769983473468", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705081026", + "createdBy": null, + "createdTime": "2026-02-02 06:04:33", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:34", + "echoMap": {}, + "alarmNo": "1890167395", + "alarmDate": "1769983473332", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080961", + "createdBy": null, + "createdTime": "2026-02-02 06:04:17", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:18", + "echoMap": {}, + "alarmNo": "1890167394", + "alarmDate": "1769983457204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080955", + "createdBy": null, + "createdTime": "2026-02-02 06:04:16", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:23", + "echoMap": {}, + "alarmNo": "1890167393", + "alarmDate": "1769983456304", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060007", + "deviceName": "[331](10)龙柏5#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080925", + "createdBy": null, + "createdTime": "2026-02-02 06:04:10", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:21", + "echoMap": {}, + "alarmNo": "1890167392", + "alarmDate": "1769983449544", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080890", + "createdBy": null, + "createdTime": "2026-02-02 06:04:01", + "updatedBy": null, + "updatedTime": "2026-02-02 06:13:45", + "echoMap": {}, + "alarmNo": "1890167391", + "alarmDate": "1769983441431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080712", + "createdBy": null, + "createdTime": "2026-02-02 05:56:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:57:29", + "echoMap": {}, + "alarmNo": "1890167390", + "alarmDate": "1769982990219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080555", + "createdBy": null, + "createdTime": "2026-02-02 05:54:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:54:20", + "echoMap": {}, + "alarmNo": "1890167389", + "alarmDate": "1769982859182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080513", + "createdBy": null, + "createdTime": "2026-02-02 05:54:13", + "updatedBy": null, + "updatedTime": "2026-02-02 09:44:17", + "echoMap": {}, + "alarmNo": "1890167388", + "alarmDate": "1769982852952", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060132", + "deviceName": "[627](10)龙柏下行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080478", + "createdBy": null, + "createdTime": "2026-02-02 05:54:06", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:49", + "echoMap": {}, + "alarmNo": "1890167387", + "alarmDate": "1769982846136", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080419", + "createdBy": null, + "createdTime": "2026-02-02 05:53:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:55", + "echoMap": {}, + "alarmNo": "1890167386", + "alarmDate": "1769982834214", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113372705080399", + "createdBy": null, + "createdTime": "2026-02-02 05:53:51", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:57", + "echoMap": {}, + "alarmNo": "1890167385", + "alarmDate": "1769982831227", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060133", + "deviceName": "[626](10)龙柏下行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146588", + "createdBy": null, + "createdTime": "2026-02-02 05:44:25", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:26", + "echoMap": {}, + "alarmNo": "1890167384", + "alarmDate": "1769982264609", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146563", + "createdBy": null, + "createdTime": "2026-02-02 05:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 05:53:54", + "echoMap": {}, + "alarmNo": "1890167383", + "alarmDate": "1769982258950", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146476", + "createdBy": null, + "createdTime": "2026-02-02 05:43:58", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:59", + "echoMap": {}, + "alarmNo": "1890167382", + "alarmDate": "1769982237786", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146453", + "createdBy": null, + "createdTime": "2026-02-02 05:43:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:44:07", + "echoMap": {}, + "alarmNo": "1890167381", + "alarmDate": "1769982233924", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146250", + "createdBy": null, + "createdTime": "2026-02-02 05:34:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:34:29", + "echoMap": {}, + "alarmNo": "1890167380", + "alarmDate": "1769981668313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146126", + "createdBy": null, + "createdTime": "2026-02-02 05:33:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:43:43", + "echoMap": {}, + "alarmNo": "1890167379", + "alarmDate": "1769981638705", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146076", + "createdBy": null, + "createdTime": "2026-02-02 05:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:47", + "echoMap": {}, + "alarmNo": "1890167378", + "alarmDate": "1769981625658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115146011", + "createdBy": null, + "createdTime": "2026-02-02 05:30:31", + "updatedBy": null, + "updatedTime": "2026-02-02 05:31:29", + "echoMap": {}, + "alarmNo": "1890167377", + "alarmDate": "1769981430668", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "1", + "faultCode": "5", + "deviceId": "1031030017", + "deviceName": "安防箱17", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "222", + "stationCode": "1031" + }, + { + "id": "723113364115145931", + "createdBy": null, + "createdTime": "2026-02-02 05:24:37", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:39", + "echoMap": {}, + "alarmNo": "1890167376", + "alarmDate": "1769981077490", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145916", + "createdBy": null, + "createdTime": "2026-02-02 05:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:47", + "echoMap": {}, + "alarmNo": "1890167375", + "alarmDate": "1769981074367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145878", + "createdBy": null, + "createdTime": "2026-02-02 05:24:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:28", + "echoMap": {}, + "alarmNo": "1890167374", + "alarmDate": "1769981066512", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113364115145811", + "createdBy": null, + "createdTime": "2026-02-02 05:24:10", + "updatedBy": null, + "updatedTime": "2026-02-02 05:24:22", + "echoMap": {}, + "alarmNo": "1890167373", + "alarmDate": "1769981050381", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113359820178479", + "createdBy": null, + "createdTime": "2026-02-02 05:23:48", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:49", + "echoMap": {}, + "alarmNo": "1890167372", + "alarmDate": "1769981028081", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113359820178466", + "createdBy": null, + "createdTime": "2026-02-02 05:23:46", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:52", + "echoMap": {}, + "alarmNo": "1890167371", + "alarmDate": "1769981025913", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060132", + "deviceName": "[627](10)龙柏下行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211928", + "createdBy": null, + "createdTime": "2026-02-02 05:14:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:41", + "echoMap": {}, + "alarmNo": "1890167370", + "alarmDate": "1769980479746", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211925", + "createdBy": null, + "createdTime": "2026-02-02 05:14:39", + "updatedBy": null, + "updatedTime": "2026-02-02 06:03:57", + "echoMap": {}, + "alarmNo": "1890167369", + "alarmDate": "1769980479196", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211838", + "createdBy": null, + "createdTime": "2026-02-02 05:14:15", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:27", + "echoMap": {}, + "alarmNo": "1890167368", + "alarmDate": "1769980455176", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211822", + "createdBy": null, + "createdTime": "2026-02-02 05:14:11", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:12", + "echoMap": {}, + "alarmNo": "1890167367", + "alarmDate": "1769980450992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211743", + "createdBy": null, + "createdTime": "2026-02-02 05:13:54", + "updatedBy": null, + "updatedTime": "2026-02-02 05:13:55", + "echoMap": {}, + "alarmNo": "1890167366", + "alarmDate": "1769980433710", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211596", + "createdBy": null, + "createdTime": "2026-02-02 05:04:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:33:50", + "echoMap": {}, + "alarmNo": "1890167365", + "alarmDate": "1769979881820", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060126", + "deviceName": "[629](10)龙柏上行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211529", + "createdBy": null, + "createdTime": "2026-02-02 05:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 05:14:03", + "echoMap": {}, + "alarmNo": "1890167364", + "alarmDate": "1769979867941", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211420", + "createdBy": null, + "createdTime": "2026-02-02 05:04:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:23:58", + "echoMap": {}, + "alarmNo": "1890167363", + "alarmDate": "1769979844905", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211419", + "createdBy": null, + "createdTime": "2026-02-02 05:04:05", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:06", + "echoMap": {}, + "alarmNo": "1890167362", + "alarmDate": "1769979844843", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211409", + "createdBy": null, + "createdTime": "2026-02-02 05:04:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:05", + "echoMap": {}, + "alarmNo": "1890167361", + "alarmDate": "1769979843943", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211408", + "createdBy": null, + "createdTime": "2026-02-02 05:04:04", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:16", + "echoMap": {}, + "alarmNo": "1890167360", + "alarmDate": "1769979843942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211357", + "createdBy": null, + "createdTime": "2026-02-02 05:03:52", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:53", + "echoMap": {}, + "alarmNo": "1890167359", + "alarmDate": "1769979831946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211288", + "createdBy": null, + "createdTime": "2026-02-02 05:03:30", + "updatedBy": null, + "updatedTime": "2026-02-02 05:04:29", + "echoMap": {}, + "alarmNo": "1890167358", + "alarmDate": "1769979810209", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211196", + "createdBy": null, + "createdTime": "2026-02-02 04:55:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:56:29", + "echoMap": {}, + "alarmNo": "1890167357", + "alarmDate": "1769979330236", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211186", + "createdBy": null, + "createdTime": "2026-02-02 04:54:41", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:52", + "echoMap": {}, + "alarmNo": "1890167356", + "alarmDate": "1769979280633", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113355525211158", + "createdBy": null, + "createdTime": "2026-02-02 04:54:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:03:52", + "echoMap": {}, + "alarmNo": "1890167355", + "alarmDate": "1769979271563", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113351230243884", + "createdBy": null, + "createdTime": "2026-02-02 04:54:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:29", + "echoMap": {}, + "alarmNo": "1890167354", + "alarmDate": "1769979256658", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113351230243842", + "createdBy": null, + "createdTime": "2026-02-02 04:54:05", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:06", + "echoMap": {}, + "alarmNo": "1890167353", + "alarmDate": "1769979245204", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277437", + "createdBy": null, + "createdTime": "2026-02-02 04:54:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:21", + "echoMap": {}, + "alarmNo": "1890167352", + "alarmDate": "1769979241501", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060058", + "deviceName": "[324](10)龙柏4#口扶梯1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277398", + "createdBy": null, + "createdTime": "2026-02-02 04:53:52", + "updatedBy": null, + "updatedTime": "2026-02-02 04:54:05", + "echoMap": {}, + "alarmNo": "1890167351", + "alarmDate": "1769979232481", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277224", + "createdBy": null, + "createdTime": "2026-02-02 04:44:29", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:30", + "echoMap": {}, + "alarmNo": "1890167350", + "alarmDate": "1769978669185", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277220", + "createdBy": null, + "createdTime": "2026-02-02 04:44:28", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:40", + "echoMap": {}, + "alarmNo": "1890167349", + "alarmDate": "1769978668344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277168", + "createdBy": null, + "createdTime": "2026-02-02 04:44:09", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:10", + "echoMap": {}, + "alarmNo": "1890167348", + "alarmDate": "1769978648956", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935277153", + "createdBy": null, + "createdTime": "2026-02-02 04:44:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:44:16", + "echoMap": {}, + "alarmNo": "1890167347", + "alarmDate": "1769978644346", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276974", + "createdBy": null, + "createdTime": "2026-02-02 04:34:41", + "updatedBy": null, + "updatedTime": "2026-02-02 04:43:53", + "echoMap": {}, + "alarmNo": "1890167346", + "alarmDate": "1769978081018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276963", + "createdBy": null, + "createdTime": "2026-02-02 04:34:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:37", + "echoMap": {}, + "alarmNo": "1890167345", + "alarmDate": "1769978076228", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276930", + "createdBy": null, + "createdTime": "2026-02-02 04:34:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:25", + "echoMap": {}, + "alarmNo": "1890167344", + "alarmDate": "1769978064066", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060012", + "deviceName": "[201](10)龙柏厅1球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276905", + "createdBy": null, + "createdTime": "2026-02-02 04:34:17", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:29", + "echoMap": {}, + "alarmNo": "1890167343", + "alarmDate": "1769978057021", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276667", + "createdBy": null, + "createdTime": "2026-02-02 04:24:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:34:05", + "echoMap": {}, + "alarmNo": "1890167342", + "alarmDate": "1769977469797", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276628", + "createdBy": null, + "createdTime": "2026-02-02 04:24:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:15", + "echoMap": {}, + "alarmNo": "1890167341", + "alarmDate": "1769977454342", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276600", + "createdBy": null, + "createdTime": "2026-02-02 04:24:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:24:18", + "echoMap": {}, + "alarmNo": "1890167340", + "alarmDate": "1769977445790", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113346935276573", + "createdBy": null, + "createdTime": "2026-02-02 04:23:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:23:59", + "echoMap": {}, + "alarmNo": "1890167339", + "alarmDate": "1769977437654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060107", + "deviceName": "[206](10)龙柏上行球2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113342640309287", + "createdBy": null, + "createdTime": "2026-02-02 04:23:42", + "updatedBy": null, + "updatedTime": "2026-02-02 04:23:54", + "echoMap": {}, + "alarmNo": "1890167338", + "alarmDate": "1769977421713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342776", + "createdBy": null, + "createdTime": "2026-02-02 04:14:24", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:25", + "echoMap": {}, + "alarmNo": "1890167337", + "alarmDate": "1769976864309", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060004", + "deviceName": "[212](10)龙柏5#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342755", + "createdBy": null, + "createdTime": "2026-02-02 04:14:19", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:31", + "echoMap": {}, + "alarmNo": "1890167336", + "alarmDate": "1769976858506", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342742", + "createdBy": null, + "createdTime": "2026-02-02 04:14:14", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:15", + "echoMap": {}, + "alarmNo": "1890167335", + "alarmDate": "1769976853738", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342668", + "createdBy": null, + "createdTime": "2026-02-02 04:13:55", + "updatedBy": null, + "updatedTime": "2026-02-02 04:14:06", + "echoMap": {}, + "alarmNo": "1890167334", + "alarmDate": "1769976834542", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060057", + "deviceName": "[325](10)龙柏4#口扶梯2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342449", + "createdBy": null, + "createdTime": "2026-02-02 04:04:34", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:34", + "echoMap": {}, + "alarmNo": "1890167333", + "alarmDate": "1769976274354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113338345342390", + "createdBy": null, + "createdTime": "2026-02-02 04:04:30", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:31", + "echoMap": {}, + "alarmNo": "1890167332", + "alarmDate": "1769976270444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755408148", + "createdBy": null, + "createdTime": "2026-02-02 04:03:45", + "updatedBy": null, + "updatedTime": "2026-02-02 04:04:16", + "echoMap": {}, + "alarmNo": "1890167331", + "alarmDate": "1769976225180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755408120", + "createdBy": null, + "createdTime": "2026-02-02 04:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:03:43", + "echoMap": {}, + "alarmNo": "1890167330", + "alarmDate": "1769976223444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755408111", + "createdBy": null, + "createdTime": "2026-02-02 04:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 04:03:44", + "echoMap": {}, + "alarmNo": "1890167329", + "alarmDate": "1769976223029", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407926", + "createdBy": null, + "createdTime": "2026-02-02 03:54:36", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:37", + "echoMap": {}, + "alarmNo": "1890167328", + "alarmDate": "1769975675895", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407820", + "createdBy": null, + "createdTime": "2026-02-02 03:54:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:30", + "echoMap": {}, + "alarmNo": "1890167327", + "alarmDate": "1769975668561", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407533", + "createdBy": null, + "createdTime": "2026-02-02 03:54:09", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:21", + "echoMap": {}, + "alarmNo": "1890167326", + "alarmDate": "1769975649009", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113329755407520", + "createdBy": null, + "createdTime": "2026-02-02 03:54:08", + "updatedBy": null, + "updatedTime": "2026-02-02 03:54:33", + "echoMap": {}, + "alarmNo": "1890167325", + "alarmDate": "1769975648280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473628", + "createdBy": null, + "createdTime": "2026-02-02 03:53:50", + "updatedBy": null, + "updatedTime": "2026-02-02 03:53:51", + "echoMap": {}, + "alarmNo": "1890167324", + "alarmDate": "1769975630133", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473514", + "createdBy": null, + "createdTime": "2026-02-02 03:53:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:53:57", + "echoMap": {}, + "alarmNo": "1890167323", + "alarmDate": "1769975622759", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473227", + "createdBy": null, + "createdTime": "2026-02-02 03:44:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:31", + "echoMap": {}, + "alarmNo": "1890167322", + "alarmDate": "1769975069972", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473161", + "createdBy": null, + "createdTime": "2026-02-02 03:44:26", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:27", + "echoMap": {}, + "alarmNo": "1890167321", + "alarmDate": "1769975065793", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473055", + "createdBy": null, + "createdTime": "2026-02-02 03:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:53:56", + "echoMap": {}, + "alarmNo": "1890167320", + "alarmDate": "1769975059018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113321165473051", + "createdBy": null, + "createdTime": "2026-02-02 03:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:31", + "echoMap": {}, + "alarmNo": "1890167319", + "alarmDate": "1769975058827", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113316870505518", + "createdBy": null, + "createdTime": "2026-02-02 03:43:58", + "updatedBy": null, + "updatedTime": "2026-02-02 03:43:59", + "echoMap": {}, + "alarmNo": "1890167318", + "alarmDate": "1769975037645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113312575538974", + "createdBy": null, + "createdTime": "2026-02-02 03:43:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:43:46", + "echoMap": {}, + "alarmNo": "1890167317", + "alarmDate": "1769975024999", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060041", + "deviceName": "[204](10)龙柏厅4球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113312575538248", + "createdBy": null, + "createdTime": "2026-02-02 03:34:02", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:03", + "echoMap": {}, + "alarmNo": "1890167316", + "alarmDate": "1769974442272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985604499", + "createdBy": null, + "createdTime": "2026-02-02 03:33:54", + "updatedBy": null, + "updatedTime": "2026-02-02 03:34:05", + "echoMap": {}, + "alarmNo": "1890167315", + "alarmDate": "1769974433535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985604437", + "createdBy": null, + "createdTime": "2026-02-02 03:33:49", + "updatedBy": null, + "updatedTime": "2026-02-02 03:33:50", + "echoMap": {}, + "alarmNo": "1890167314", + "alarmDate": "1769974428974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985604232", + "createdBy": null, + "createdTime": "2026-02-02 03:24:40", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:41", + "echoMap": {}, + "alarmNo": "1890167313", + "alarmDate": "1769973879912", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985603996", + "createdBy": null, + "createdTime": "2026-02-02 03:24:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:24", + "echoMap": {}, + "alarmNo": "1890167312", + "alarmDate": "1769973863426", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113303985603585", + "createdBy": null, + "createdTime": "2026-02-02 03:23:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:23:57", + "echoMap": {}, + "alarmNo": "1890167311", + "alarmDate": "1769973836470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669921", + "createdBy": null, + "createdTime": "2026-02-02 03:23:53", + "updatedBy": null, + "updatedTime": "2026-02-02 03:23:54", + "echoMap": {}, + "alarmNo": "1890167310", + "alarmDate": "1769973833134", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669770", + "createdBy": null, + "createdTime": "2026-02-02 03:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:24:12", + "echoMap": {}, + "alarmNo": "1890167309", + "alarmDate": "1769973823266", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669350", + "createdBy": null, + "createdTime": "2026-02-02 03:14:21", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:40", + "echoMap": {}, + "alarmNo": "1890167308", + "alarmDate": "1769973260878", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113295395669277", + "createdBy": null, + "createdTime": "2026-02-02 03:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:17", + "echoMap": {}, + "alarmNo": "1890167307", + "alarmDate": "1769973255974", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805735115", + "createdBy": null, + "createdTime": "2026-02-02 03:13:43", + "updatedBy": null, + "updatedTime": "2026-02-02 03:14:09", + "echoMap": {}, + "alarmNo": "1890167306", + "alarmDate": "1769973222847", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805734973", + "createdBy": null, + "createdTime": "2026-02-02 03:04:42", + "updatedBy": null, + "updatedTime": "2026-02-02 03:44:06", + "echoMap": {}, + "alarmNo": "1890167305", + "alarmDate": "1769972681812", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805734735", + "createdBy": null, + "createdTime": "2026-02-02 03:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:23", + "echoMap": {}, + "alarmNo": "1890167304", + "alarmDate": "1769972662336", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113286805734407", + "createdBy": null, + "createdTime": "2026-02-02 03:04:00", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:01", + "echoMap": {}, + "alarmNo": "1890167303", + "alarmDate": "1769972639965", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113278215800698", + "createdBy": null, + "createdTime": "2026-02-02 03:03:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:08", + "echoMap": {}, + "alarmNo": "1890167302", + "alarmDate": "1769972635659", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113278215800055", + "createdBy": null, + "createdTime": "2026-02-02 02:54:18", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:19", + "echoMap": {}, + "alarmNo": "1890167301", + "alarmDate": "1769972057567", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113278215799993", + "createdBy": null, + "createdTime": "2026-02-02 02:54:13", + "updatedBy": null, + "updatedTime": "2026-02-02 02:54:14", + "echoMap": {}, + "alarmNo": "1890167300", + "alarmDate": "1769972053429", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865982", + "createdBy": null, + "createdTime": "2026-02-02 02:53:45", + "updatedBy": null, + "updatedTime": "2026-02-02 02:53:46", + "echoMap": {}, + "alarmNo": "1890167299", + "alarmDate": "1769972025310", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865838", + "createdBy": null, + "createdTime": "2026-02-02 02:46:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:47:29", + "echoMap": {}, + "alarmNo": "1890167298", + "alarmDate": "1769971590372", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865765", + "createdBy": null, + "createdTime": "2026-02-02 02:44:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:38", + "echoMap": {}, + "alarmNo": "1890167297", + "alarmDate": "1769971477101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113269625865425", + "createdBy": null, + "createdTime": "2026-02-02 02:44:14", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:32", + "echoMap": {}, + "alarmNo": "1890167296", + "alarmDate": "1769971454221", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035931465", + "createdBy": null, + "createdTime": "2026-02-02 02:43:50", + "updatedBy": null, + "updatedTime": "2026-02-02 02:43:51", + "echoMap": {}, + "alarmNo": "1890167295", + "alarmDate": "1769971429655", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035931099", + "createdBy": null, + "createdTime": "2026-02-02 02:34:33", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:34", + "echoMap": {}, + "alarmNo": "1890167294", + "alarmDate": "1769970873461", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035930916", + "createdBy": null, + "createdTime": "2026-02-02 02:34:22", + "updatedBy": null, + "updatedTime": "2026-02-02 02:44:02", + "echoMap": {}, + "alarmNo": "1890167293", + "alarmDate": "1769970861822", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113261035930775", + "createdBy": null, + "createdTime": "2026-02-02 02:34:12", + "updatedBy": null, + "updatedTime": "2026-02-02 03:03:59", + "echoMap": {}, + "alarmNo": "1890167292", + "alarmDate": "1769970852298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996754", + "createdBy": null, + "createdTime": "2026-02-02 02:33:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:33:45", + "echoMap": {}, + "alarmNo": "1890167291", + "alarmDate": "1769970824330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996549", + "createdBy": null, + "createdTime": "2026-02-02 02:24:37", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:38", + "echoMap": {}, + "alarmNo": "1890167290", + "alarmDate": "1769970277070", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996497", + "createdBy": null, + "createdTime": "2026-02-02 02:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:35", + "echoMap": {}, + "alarmNo": "1890167289", + "alarmDate": "1769970273877", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996419", + "createdBy": null, + "createdTime": "2026-02-02 02:24:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:04:18", + "echoMap": {}, + "alarmNo": "1890167288", + "alarmDate": "1769970268862", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113252445996058", + "createdBy": null, + "createdTime": "2026-02-02 02:24:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:05", + "echoMap": {}, + "alarmNo": "1890167287", + "alarmDate": "1769970243903", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113243856062106", + "createdBy": null, + "createdTime": "2026-02-02 02:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:23:48", + "echoMap": {}, + "alarmNo": "1890167286", + "alarmDate": "1769970222681", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060087", + "deviceName": "[109](10)龙柏下行3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113243856061541", + "createdBy": null, + "createdTime": "2026-02-02 02:14:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:12", + "echoMap": {}, + "alarmNo": "1890167285", + "alarmDate": "1769969651063", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113243856061470", + "createdBy": null, + "createdTime": "2026-02-02 02:14:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:14:08", + "echoMap": {}, + "alarmNo": "1890167284", + "alarmDate": "1769969646885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113235266127174", + "createdBy": null, + "createdTime": "2026-02-02 02:04:26", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:27", + "echoMap": {}, + "alarmNo": "1890167283", + "alarmDate": "1769969066144", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113235266127098", + "createdBy": null, + "createdTime": "2026-02-02 02:04:21", + "updatedBy": null, + "updatedTime": "2026-02-02 02:34:09", + "echoMap": {}, + "alarmNo": "1890167282", + "alarmDate": "1769969061331", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113230971159602", + "createdBy": null, + "createdTime": "2026-02-02 02:04:04", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:04", + "echoMap": {}, + "alarmNo": "1890167281", + "alarmDate": "1769969043622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113230971159563", + "createdBy": null, + "createdTime": "2026-02-02 02:04:01", + "updatedBy": null, + "updatedTime": "2026-02-02 02:04:02", + "echoMap": {}, + "alarmNo": "1890167280", + "alarmDate": "1769969041295", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192948", + "createdBy": null, + "createdTime": "2026-02-02 02:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 02:24:17", + "echoMap": {}, + "alarmNo": "1890167279", + "alarmDate": "1769969023355", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192706", + "createdBy": null, + "createdTime": "2026-02-02 01:54:32", + "updatedBy": null, + "updatedTime": "2026-02-02 02:03:45", + "echoMap": {}, + "alarmNo": "1890167278", + "alarmDate": "1769968472318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192602", + "createdBy": null, + "createdTime": "2026-02-02 01:54:25", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:31", + "echoMap": {}, + "alarmNo": "1890167277", + "alarmDate": "1769968465115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113226676192581", + "createdBy": null, + "createdTime": "2026-02-02 01:54:24", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:25", + "echoMap": {}, + "alarmNo": "1890167276", + "alarmDate": "1769968463807", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258362", + "createdBy": null, + "createdTime": "2026-02-02 01:53:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:20", + "echoMap": {}, + "alarmNo": "1890167275", + "alarmDate": "1769968424033", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258348", + "createdBy": null, + "createdTime": "2026-02-02 01:53:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:54:12", + "echoMap": {}, + "alarmNo": "1890167274", + "alarmDate": "1769968423095", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258212", + "createdBy": null, + "createdTime": "2026-02-02 01:44:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:53:48", + "echoMap": {}, + "alarmNo": "1890167273", + "alarmDate": "1769967883301", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086258036", + "createdBy": null, + "createdTime": "2026-02-02 01:44:27", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:28", + "echoMap": {}, + "alarmNo": "1890167272", + "alarmDate": "1769967867087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113218086257761", + "createdBy": null, + "createdTime": "2026-02-02 01:44:08", + "updatedBy": null, + "updatedTime": "2026-02-02 01:44:20", + "echoMap": {}, + "alarmNo": "1890167271", + "alarmDate": "1769967847684", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356711", + "createdBy": null, + "createdTime": "2026-02-02 01:43:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:48", + "echoMap": {}, + "alarmNo": "1890167270", + "alarmDate": "1769967823848", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356699", + "createdBy": null, + "createdTime": "2026-02-02 01:43:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:44", + "echoMap": {}, + "alarmNo": "1890167269", + "alarmDate": "1769967823330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356415", + "createdBy": null, + "createdTime": "2026-02-02 01:34:30", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:32", + "echoMap": {}, + "alarmNo": "1890167268", + "alarmDate": "1769967270098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356284", + "createdBy": null, + "createdTime": "2026-02-02 01:34:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:22", + "echoMap": {}, + "alarmNo": "1890167267", + "alarmDate": "1769967261318", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356238", + "createdBy": null, + "createdTime": "2026-02-02 01:34:19", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:20", + "echoMap": {}, + "alarmNo": "1890167266", + "alarmDate": "1769967258635", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201356235", + "createdBy": null, + "createdTime": "2026-02-02 01:34:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:43:56", + "echoMap": {}, + "alarmNo": "1890167265", + "alarmDate": "1769967258431", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113205201355849", + "createdBy": null, + "createdTime": "2026-02-02 01:33:51", + "updatedBy": null, + "updatedTime": "2026-02-02 01:33:52", + "echoMap": {}, + "alarmNo": "1890167264", + "alarmDate": "1769967231248", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611422178", + "createdBy": null, + "createdTime": "2026-02-02 01:25:31", + "updatedBy": null, + "updatedTime": "2026-02-02 01:26:31", + "echoMap": {}, + "alarmNo": "1890167263", + "alarmDate": "1769966730788", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421887", + "createdBy": null, + "createdTime": "2026-02-02 01:24:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:30", + "echoMap": {}, + "alarmNo": "1890167262", + "alarmDate": "1769966661502", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421869", + "createdBy": null, + "createdTime": "2026-02-02 01:24:21", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:22", + "echoMap": {}, + "alarmNo": "1890167261", + "alarmDate": "1769966660668", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421522", + "createdBy": null, + "createdTime": "2026-02-02 01:23:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:24:09", + "echoMap": {}, + "alarmNo": "1890167260", + "alarmDate": "1769966637540", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421461", + "createdBy": null, + "createdTime": "2026-02-02 01:23:53", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:54", + "echoMap": {}, + "alarmNo": "1890167259", + "alarmDate": "1769966633479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113196611421314", + "createdBy": null, + "createdTime": "2026-02-02 01:23:43", + "updatedBy": null, + "updatedTime": "2026-02-02 01:23:45", + "echoMap": {}, + "alarmNo": "1890167258", + "alarmDate": "1769966623357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113179431552008", + "createdBy": null, + "createdTime": "2026-02-02 01:13:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:14:33", + "echoMap": {}, + "alarmNo": "1890167257", + "alarmDate": "1769966036938", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617652", + "createdBy": null, + "createdTime": "2026-02-02 01:13:50", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:51", + "echoMap": {}, + "alarmNo": "1890167256", + "alarmDate": "1769966030276", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617630", + "createdBy": null, + "createdTime": "2026-02-02 01:13:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:50", + "echoMap": {}, + "alarmNo": "1890167255", + "alarmDate": "1769966028774", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617558", + "createdBy": null, + "createdTime": "2026-02-02 01:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:45", + "echoMap": {}, + "alarmNo": "1890167254", + "alarmDate": "1769966024254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113170841617557", + "createdBy": null, + "createdTime": "2026-02-02 01:13:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:13:45", + "echoMap": {}, + "alarmNo": "1890167253", + "alarmDate": "1769966024251", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113162251683161", + "createdBy": null, + "createdTime": "2026-02-02 01:04:37", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:38", + "echoMap": {}, + "alarmNo": "1890167252", + "alarmDate": "1769965476788", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113162251683147", + "createdBy": null, + "createdTime": "2026-02-02 01:04:36", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:37", + "echoMap": {}, + "alarmNo": "1890167251", + "alarmDate": "1769965475980", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113162251682929", + "createdBy": null, + "createdTime": "2026-02-02 01:04:22", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:39", + "echoMap": {}, + "alarmNo": "1890167250", + "alarmDate": "1769965461682", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113157956715555", + "createdBy": null, + "createdTime": "2026-02-02 01:04:12", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:13", + "echoMap": {}, + "alarmNo": "1890167249", + "alarmDate": "1769965452370", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113153661748302", + "createdBy": null, + "createdTime": "2026-02-02 01:03:57", + "updatedBy": null, + "updatedTime": "2026-02-02 01:03:58", + "echoMap": {}, + "alarmNo": "1890167248", + "alarmDate": "1769965436860", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113145071813850", + "createdBy": null, + "createdTime": "2026-02-02 01:03:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:04:03", + "echoMap": {}, + "alarmNo": "1890167247", + "alarmDate": "1769965424271", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113145071813700", + "createdBy": null, + "createdTime": "2026-02-02 00:54:42", + "updatedBy": null, + "updatedTime": "2026-02-02 01:34:07", + "echoMap": {}, + "alarmNo": "1890167246", + "alarmDate": "1769964881733", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113136481879094", + "createdBy": null, + "createdTime": "2026-02-02 00:54:14", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:16", + "echoMap": {}, + "alarmNo": "1890167245", + "alarmDate": "1769964854455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113119302010107", + "createdBy": null, + "createdTime": "2026-02-02 00:46:31", + "updatedBy": null, + "updatedTime": "2026-02-02 00:47:32", + "echoMap": {}, + "alarmNo": "1890167244", + "alarmDate": "1769964390686", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1031060008", + "deviceName": "[333](10)龙柏5#口扶梯3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075544", + "createdBy": null, + "createdTime": "2026-02-02 00:44:19", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:14", + "echoMap": {}, + "alarmNo": "1890167243", + "alarmDate": "1769964259156", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075485", + "createdBy": null, + "createdTime": "2026-02-02 00:44:15", + "updatedBy": null, + "updatedTime": "2026-02-02 00:54:17", + "echoMap": {}, + "alarmNo": "1890167242", + "alarmDate": "1769964255141", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075403", + "createdBy": null, + "createdTime": "2026-02-02 00:44:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:10", + "echoMap": {}, + "alarmNo": "1890167241", + "alarmDate": "1769964249087", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113110712075276", + "createdBy": null, + "createdTime": "2026-02-02 00:44:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:44:02", + "echoMap": {}, + "alarmNo": "1890167240", + "alarmDate": "1769964240354", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113102122140965", + "createdBy": null, + "createdTime": "2026-02-02 00:43:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:55", + "echoMap": {}, + "alarmNo": "1890167239", + "alarmDate": "1769964233341", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060068", + "deviceName": "[209](10)龙柏2#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113102122140811", + "createdBy": null, + "createdTime": "2026-02-02 00:43:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:54", + "echoMap": {}, + "alarmNo": "1890167238", + "alarmDate": "1769964223203", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113097827173431", + "createdBy": null, + "createdTime": "2026-02-02 00:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 00:43:57", + "echoMap": {}, + "alarmNo": "1890167237", + "alarmDate": "1769963681875", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113097827173429", + "createdBy": null, + "createdTime": "2026-02-02 00:34:42", + "updatedBy": null, + "updatedTime": "2026-02-02 05:33:47", + "echoMap": {}, + "alarmNo": "1890167236", + "alarmDate": "1769963681536", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060133", + "deviceName": "[626](10)龙柏下行峒口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113093532206316", + "createdBy": null, + "createdTime": "2026-02-02 00:34:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:33", + "echoMap": {}, + "alarmNo": "1890167235", + "alarmDate": "1769963671669", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113093532206294", + "createdBy": null, + "createdTime": "2026-02-02 00:34:30", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:31", + "echoMap": {}, + "alarmNo": "1890167234", + "alarmDate": "1769963670281", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113080647304207", + "createdBy": null, + "createdTime": "2026-02-02 00:33:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:30", + "echoMap": {}, + "alarmNo": "1890167233", + "alarmDate": "1769963632960", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113076352337030", + "createdBy": null, + "createdTime": "2026-02-02 00:33:41", + "updatedBy": null, + "updatedTime": "2026-02-02 00:33:42", + "echoMap": {}, + "alarmNo": "1890167232", + "alarmDate": "1769963620928", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113067762402583", + "createdBy": null, + "createdTime": "2026-02-02 00:24:34", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:35", + "echoMap": {}, + "alarmNo": "1890167231", + "alarmDate": "1769963073737", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060021", + "deviceName": "[202](10)龙柏厅2球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113067762402511", + "createdBy": null, + "createdTime": "2026-02-02 00:24:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:30", + "echoMap": {}, + "alarmNo": "1890167230", + "alarmDate": "1769963068687", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113059172467992", + "createdBy": null, + "createdTime": "2026-02-02 00:24:10", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:29", + "echoMap": {}, + "alarmNo": "1890167229", + "alarmDate": "1769963049675", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113059172467990", + "createdBy": null, + "createdTime": "2026-02-02 00:24:09", + "updatedBy": null, + "updatedTime": "2026-02-02 00:24:16", + "echoMap": {}, + "alarmNo": "1890167228", + "alarmDate": "1769963049493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113046287565867", + "createdBy": null, + "createdTime": "2026-02-02 00:14:29", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:30", + "echoMap": {}, + "alarmNo": "1890167227", + "alarmDate": "1769962469298", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060034", + "deviceName": "[203](10)龙柏厅3球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113041992598680", + "createdBy": null, + "createdTime": "2026-02-02 00:14:20", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:21", + "echoMap": {}, + "alarmNo": "1890167226", + "alarmDate": "1769962459626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060053", + "deviceName": "[211](10)龙柏4#口球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113033402664262", + "createdBy": null, + "createdTime": "2026-02-02 00:14:08", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:09", + "echoMap": {}, + "alarmNo": "1890167225", + "alarmDate": "1769962447717", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060116", + "deviceName": "[708](10)龙柏龙柏紫藤下行旁通道", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113033402664154", + "createdBy": null, + "createdTime": "2026-02-02 00:14:02", + "updatedBy": null, + "updatedTime": "2026-02-02 00:23:58", + "echoMap": {}, + "alarmNo": "1890167224", + "alarmDate": "1769962442335", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113033402664115", + "createdBy": null, + "createdTime": "2026-02-02 00:14:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:14:01", + "echoMap": {}, + "alarmNo": "1890167223", + "alarmDate": "1769962439885", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060099", + "deviceName": "[207](10)龙柏下行球1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113020517762081", + "createdBy": null, + "createdTime": "2026-02-02 00:04:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:23:58", + "echoMap": {}, + "alarmNo": "1890167222", + "alarmDate": "1769961880319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113016222794872", + "createdBy": null, + "createdTime": "2026-02-02 00:04:28", + "updatedBy": null, + "updatedTime": "2026-02-02 00:34:21", + "echoMap": {}, + "alarmNo": "1890167221", + "alarmDate": "1769961868372", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060132", + "deviceName": "[627](10)龙柏下行峒口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723113007632860246", + "createdBy": null, + "createdTime": "2026-02-02 00:04:06", + "updatedBy": null, + "updatedTime": "2026-02-02 00:13:50", + "echoMap": {}, + "alarmNo": "1890167220", + "alarmDate": "1769961845921", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925735", + "createdBy": null, + "createdTime": "2026-02-02 00:03:50", + "updatedBy": null, + "updatedTime": "2026-02-02 00:04:28", + "echoMap": {}, + "alarmNo": "1890167219", + "alarmDate": "1769961830240", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060101", + "deviceName": "[110](10)龙柏下行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925621", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:53", + "echoMap": {}, + "alarmNo": "1890167218", + "alarmDate": "1769961822990", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060095", + "deviceName": "[104](10)龙柏上行4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925614", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 06:04:08", + "echoMap": {}, + "alarmNo": "1890167217", + "alarmDate": "1769961822639", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060032", + "deviceName": "[409](10)龙柏3#闸出4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925613", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:43", + "echoMap": {}, + "alarmNo": "1890167216", + "alarmDate": "1769961822636", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060023", + "deviceName": "[404](10)龙柏3#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + }, + { + "id": "723112999042925612", + "createdBy": null, + "createdTime": "2026-02-02 00:03:43", + "updatedBy": null, + "updatedTime": "2026-02-02 00:03:43", + "echoMap": {}, + "alarmNo": "1890167215", + "alarmDate": "1769961822633", + "faultLocation": "999999999", + "faultDescription": "图像过暗", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1031060023", + "deviceName": "[404](10)龙柏3#闸入2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1031" + } + ] + }, + "1032": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "723113226669165856", + "createdBy": null, + "createdTime": "2026-02-02 00:08:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:41", + "echoMap": {}, + "alarmNo": "2440077062", + "alarmDate": "1769962120303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113235259100634", + "createdBy": null, + "createdTime": "2026-02-02 00:18:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:18:53", + "echoMap": {}, + "alarmNo": "2440077063", + "alarmDate": "1769962731654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113243849034932", + "createdBy": null, + "createdTime": "2026-02-02 00:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:01", + "echoMap": {}, + "alarmNo": "2440077064", + "alarmDate": "1769963279798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113243849035259", + "createdBy": null, + "createdTime": "2026-02-02 00:28:38", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:08", + "echoMap": {}, + "alarmNo": "2440077065", + "alarmDate": "1769963318435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113252438969839", + "createdBy": null, + "createdTime": "2026-02-02 00:38:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:34", + "echoMap": {}, + "alarmNo": "2440077066", + "alarmDate": "1769963913058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113261028904473", + "createdBy": null, + "createdTime": "2026-02-02 00:48:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:50", + "echoMap": {}, + "alarmNo": "2440077067", + "alarmDate": "1769964511840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113265323871235", + "createdBy": null, + "createdTime": "2026-02-02 00:48:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:33", + "echoMap": {}, + "alarmNo": "2440077068", + "alarmDate": "1769964512422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113269618838913", + "createdBy": null, + "createdTime": "2026-02-02 00:58:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:10", + "echoMap": {}, + "alarmNo": "2440077069", + "alarmDate": "1769965084077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113278208773565", + "createdBy": null, + "createdTime": "2026-02-02 01:08:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:31", + "echoMap": {}, + "alarmNo": "2440077070", + "alarmDate": "1769965693145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113278208773681", + "createdBy": null, + "createdTime": "2026-02-02 01:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:27", + "echoMap": {}, + "alarmNo": "2440077071", + "alarmDate": "1769965705858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113282503740465", + "createdBy": null, + "createdTime": "2026-02-02 01:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:52", + "echoMap": {}, + "alarmNo": "2440077072", + "alarmDate": "1769965726395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113282503740497", + "createdBy": null, + "createdTime": "2026-02-02 01:08:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:12", + "echoMap": {}, + "alarmNo": "2440077073", + "alarmDate": "1769965729183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113282503740583", + "createdBy": null, + "createdTime": "2026-02-02 01:09:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:57", + "echoMap": {}, + "alarmNo": "2440077074", + "alarmDate": "1769965798288", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060203", + "deviceName": "[011](10)吴中路基地停车2库C区2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113286798707969", + "createdBy": null, + "createdTime": "2026-02-02 01:18:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:15", + "echoMap": {}, + "alarmNo": "2440077075", + "alarmDate": "1769966283486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113286798708074", + "createdBy": null, + "createdTime": "2026-02-02 01:18:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:14", + "echoMap": {}, + "alarmNo": "2440077076", + "alarmDate": "1769966293312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113295388642910", + "createdBy": null, + "createdTime": "2026-02-02 01:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:52", + "echoMap": {}, + "alarmNo": "2440077077", + "alarmDate": "1769966924622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113303978577123", + "createdBy": null, + "createdTime": "2026-02-02 01:38:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:09", + "echoMap": {}, + "alarmNo": "2440077078", + "alarmDate": "1769967482785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113303978577258", + "createdBy": null, + "createdTime": "2026-02-02 01:38:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:19", + "echoMap": {}, + "alarmNo": "2440077079", + "alarmDate": "1769967497702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113303978577501", + "createdBy": null, + "createdTime": "2026-02-02 01:38:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:49", + "echoMap": {}, + "alarmNo": "2440077080", + "alarmDate": "1769967527919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113312568511637", + "createdBy": null, + "createdTime": "2026-02-02 01:47:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:56", + "echoMap": {}, + "alarmNo": "2440077081", + "alarmDate": "1769968075089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113312568511976", + "createdBy": null, + "createdTime": "2026-02-02 01:48:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:50", + "echoMap": {}, + "alarmNo": "2440077082", + "alarmDate": "1769968123957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113316863478870", + "createdBy": null, + "createdTime": "2026-02-02 01:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:55", + "echoMap": {}, + "alarmNo": "2440077083", + "alarmDate": "1769968316147", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060134", + "deviceName": "[075](10)吴中路基地停车1库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113321158446234", + "createdBy": null, + "createdTime": "2026-02-02 01:58:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:14", + "echoMap": {}, + "alarmNo": "2440077084", + "alarmDate": "1769968682199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748380907", + "createdBy": null, + "createdTime": "2026-02-02 02:08:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:13", + "echoMap": {}, + "alarmNo": "2440077085", + "alarmDate": "1769969287348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748380939", + "createdBy": null, + "createdTime": "2026-02-02 02:08:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:12", + "echoMap": {}, + "alarmNo": "2440077086", + "alarmDate": "1769969290535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748381085", + "createdBy": null, + "createdTime": "2026-02-02 02:08:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:34", + "echoMap": {}, + "alarmNo": "2440077087", + "alarmDate": "1769969308261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748381103", + "createdBy": null, + "createdTime": "2026-02-02 02:08:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:31", + "echoMap": {}, + "alarmNo": "2440077088", + "alarmDate": "1769969309860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113338338315526", + "createdBy": null, + "createdTime": "2026-02-02 02:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:12", + "echoMap": {}, + "alarmNo": "2440077091", + "alarmDate": "1769969874517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113346928250205", + "createdBy": null, + "createdTime": "2026-02-02 02:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:03", + "echoMap": {}, + "alarmNo": "2440077092", + "alarmDate": "1769970478486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113351223217288", + "createdBy": null, + "createdTime": "2026-02-02 02:28:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:52", + "echoMap": {}, + "alarmNo": "2440077093", + "alarmDate": "1769970519653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113355518184560", + "createdBy": null, + "createdTime": "2026-02-02 02:28:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:04", + "echoMap": {}, + "alarmNo": "2440077094", + "alarmDate": "1769970532111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113355518184963", + "createdBy": null, + "createdTime": "2026-02-02 02:38:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:11", + "echoMap": {}, + "alarmNo": "2440077095", + "alarmDate": "1769971089833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113372698053787", + "createdBy": null, + "createdTime": "2026-02-02 02:48:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:11", + "echoMap": {}, + "alarmNo": "2440077108", + "alarmDate": "1769971721063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988226", + "createdBy": null, + "createdTime": "2026-02-02 02:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:29", + "echoMap": {}, + "alarmNo": "2440077109", + "alarmDate": "1769972303227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988386", + "createdBy": null, + "createdTime": "2026-02-02 02:58:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:43", + "echoMap": {}, + "alarmNo": "2440077110", + "alarmDate": "1769972322400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988402", + "createdBy": null, + "createdTime": "2026-02-02 02:58:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:45", + "echoMap": {}, + "alarmNo": "2440077111", + "alarmDate": "1769972323942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988766", + "createdBy": null, + "createdTime": "2026-02-02 03:07:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:57", + "echoMap": {}, + "alarmNo": "2440077112", + "alarmDate": "1769972876082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113389877922989", + "createdBy": null, + "createdTime": "2026-02-02 03:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:52", + "echoMap": {}, + "alarmNo": "2440077113", + "alarmDate": "1769972926444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113389877923383", + "createdBy": null, + "createdTime": "2026-02-02 03:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:11", + "echoMap": {}, + "alarmNo": "2440077114", + "alarmDate": "1769973483677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113398467857421", + "createdBy": null, + "createdTime": "2026-02-02 03:18:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:40", + "echoMap": {}, + "alarmNo": "2440077115", + "alarmDate": "1769973508626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113402762824821", + "createdBy": null, + "createdTime": "2026-02-02 03:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:24", + "echoMap": {}, + "alarmNo": "2440077116", + "alarmDate": "1769974103357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113407057792056", + "createdBy": null, + "createdTime": "2026-02-02 03:28:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:38", + "echoMap": {}, + "alarmNo": "2440077117", + "alarmDate": "1769974116794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113407057792131", + "createdBy": null, + "createdTime": "2026-02-02 03:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:52", + "echoMap": {}, + "alarmNo": "2440077118", + "alarmDate": "1769974125781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113411352759301", + "createdBy": null, + "createdTime": "2026-02-02 03:38:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:16", + "echoMap": {}, + "alarmNo": "2440077119", + "alarmDate": "1769974682954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113424237661422", + "createdBy": null, + "createdTime": "2026-02-02 03:48:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:14", + "echoMap": {}, + "alarmNo": "2440077120", + "alarmDate": "1769975325119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113424237661833", + "createdBy": null, + "createdTime": "2026-02-02 03:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:04", + "echoMap": {}, + "alarmNo": "2440077121", + "alarmDate": "1769975883137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113432827595846", + "createdBy": null, + "createdTime": "2026-02-02 03:58:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:31", + "echoMap": {}, + "alarmNo": "2440077122", + "alarmDate": "1769975909645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113432827596003", + "createdBy": null, + "createdTime": "2026-02-02 03:58:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:13", + "echoMap": {}, + "alarmNo": "2440077123", + "alarmDate": "1769975929182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113437122563206", + "createdBy": null, + "createdTime": "2026-02-02 04:08:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:34", + "echoMap": {}, + "alarmNo": "2440077124", + "alarmDate": "1769976511936", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113441417530461", + "createdBy": null, + "createdTime": "2026-02-02 04:08:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:43", + "echoMap": {}, + "alarmNo": "2440077125", + "alarmDate": "1769976528695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113441417530860", + "createdBy": null, + "createdTime": "2026-02-02 04:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:14", + "echoMap": {}, + "alarmNo": "2440077126", + "alarmDate": "1769977081524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113445712497767", + "createdBy": null, + "createdTime": "2026-02-02 04:18:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:38", + "echoMap": {}, + "alarmNo": "2440077127", + "alarmDate": "1769977116911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465389", + "createdBy": null, + "createdTime": "2026-02-02 04:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:10", + "echoMap": {}, + "alarmNo": "2440077128", + "alarmDate": "1769977683593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465412", + "createdBy": null, + "createdTime": "2026-02-02 04:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:13", + "echoMap": {}, + "alarmNo": "2440077129", + "alarmDate": "1769977686679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465453", + "createdBy": null, + "createdTime": "2026-02-02 04:28:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:24", + "echoMap": {}, + "alarmNo": "2440077130", + "alarmDate": "1769977691946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465548", + "createdBy": null, + "createdTime": "2026-02-02 04:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:23", + "echoMap": {}, + "alarmNo": "2440077131", + "alarmDate": "1769977702400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113458597399875", + "createdBy": null, + "createdTime": "2026-02-02 04:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:28", + "echoMap": {}, + "alarmNo": "2440077132", + "alarmDate": "1769978277842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113458597399880", + "createdBy": null, + "createdTime": "2026-02-02 04:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:06", + "echoMap": {}, + "alarmNo": "2440077133", + "alarmDate": "1769978278125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113462892366893", + "createdBy": null, + "createdTime": "2026-02-02 04:38:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:14", + "echoMap": {}, + "alarmNo": "2440077134", + "alarmDate": "1769978325932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113462892366911", + "createdBy": null, + "createdTime": "2026-02-02 04:38:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:41", + "echoMap": {}, + "alarmNo": "2440077135", + "alarmDate": "1769978328269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113467187334530", + "createdBy": null, + "createdTime": "2026-02-02 04:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:19", + "echoMap": {}, + "alarmNo": "2440077136", + "alarmDate": "1769978897660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113467187334634", + "createdBy": null, + "createdTime": "2026-02-02 04:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:42", + "echoMap": {}, + "alarmNo": "2440077137", + "alarmDate": "1769978916215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113475777268909", + "createdBy": null, + "createdTime": "2026-02-02 04:58:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:23", + "echoMap": {}, + "alarmNo": "2440077138", + "alarmDate": "1769979486313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113475777268945", + "createdBy": null, + "createdTime": "2026-02-02 04:58:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:24", + "echoMap": {}, + "alarmNo": "2440077139", + "alarmDate": "1769979490457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113475777268987", + "createdBy": null, + "createdTime": "2026-02-02 04:58:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:16", + "echoMap": {}, + "alarmNo": "2440077140", + "alarmDate": "1769979495149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203403", + "createdBy": null, + "createdTime": "2026-02-02 05:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:26", + "echoMap": {}, + "alarmNo": "2440077141", + "alarmDate": "1769980094367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203422", + "createdBy": null, + "createdTime": "2026-02-02 05:08:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:23", + "echoMap": {}, + "alarmNo": "2440077142", + "alarmDate": "1769980096666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203594", + "createdBy": null, + "createdTime": "2026-02-02 05:08:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:52", + "echoMap": {}, + "alarmNo": "2440077143", + "alarmDate": "1769980126773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203613", + "createdBy": null, + "createdTime": "2026-02-02 05:08:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:50", + "echoMap": {}, + "alarmNo": "2440077144", + "alarmDate": "1769980129426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203622", + "createdBy": null, + "createdTime": "2026-02-02 05:08:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:56", + "echoMap": {}, + "alarmNo": "2440077145", + "alarmDate": "1769980130479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203968", + "createdBy": null, + "createdTime": "2026-02-02 05:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:00", + "echoMap": {}, + "alarmNo": "2440077146", + "alarmDate": "1769980678605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113492957138418", + "createdBy": null, + "createdTime": "2026-02-02 05:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:07", + "echoMap": {}, + "alarmNo": "2440077147", + "alarmDate": "1769981278004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113492957138500", + "createdBy": null, + "createdTime": "2026-02-02 05:28:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:09", + "echoMap": {}, + "alarmNo": "2440077148", + "alarmDate": "1769981287992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113501547072516", + "createdBy": null, + "createdTime": "2026-02-02 05:28:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:46", + "echoMap": {}, + "alarmNo": "2440077149", + "alarmDate": "1769981319892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113501547073121", + "createdBy": null, + "createdTime": "2026-02-02 05:38:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:33", + "echoMap": {}, + "alarmNo": "2440077150", + "alarmDate": "1769981912320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113510137007385", + "createdBy": null, + "createdTime": "2026-02-02 05:48:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:15", + "echoMap": {}, + "alarmNo": "2440077151", + "alarmDate": "1769982489137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113510137007501", + "createdBy": null, + "createdTime": "2026-02-02 05:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:33", + "echoMap": {}, + "alarmNo": "2440077152", + "alarmDate": "1769982507262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113510137007653", + "createdBy": null, + "createdTime": "2026-02-02 05:48:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:50", + "echoMap": {}, + "alarmNo": "2440077153", + "alarmDate": "1769982528756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113518726941777", + "createdBy": null, + "createdTime": "2026-02-02 05:58:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:02", + "echoMap": {}, + "alarmNo": "2440077154", + "alarmDate": "1769983080836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113518726942146", + "createdBy": null, + "createdTime": "2026-02-02 05:59:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:55", + "echoMap": {}, + "alarmNo": "2440077155", + "alarmDate": "1769983196108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060100", + "deviceName": "[066](10)吴中路基地停车1库H区12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113527316876364", + "createdBy": null, + "createdTime": "2026-02-02 06:08:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:14", + "echoMap": {}, + "alarmNo": "2440077168", + "alarmDate": "1769983693120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906810929", + "createdBy": null, + "createdTime": "2026-02-02 06:18:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:43", + "echoMap": {}, + "alarmNo": "2440077169", + "alarmDate": "1769984321524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811250", + "createdBy": null, + "createdTime": "2026-02-02 06:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:43", + "echoMap": {}, + "alarmNo": "2440077170", + "alarmDate": "1769984874472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811252", + "createdBy": null, + "createdTime": "2026-02-02 06:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077171", + "alarmDate": "1769984874873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811437", + "createdBy": null, + "createdTime": "2026-02-02 06:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:12", + "echoMap": {}, + "alarmNo": "2440077172", + "alarmDate": "1769984899145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811438", + "createdBy": null, + "createdTime": "2026-02-02 06:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077173", + "alarmDate": "1769984899154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745557", + "createdBy": null, + "createdTime": "2026-02-02 06:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:47", + "echoMap": {}, + "alarmNo": "2440077174", + "alarmDate": "1769984925819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745907", + "createdBy": null, + "createdTime": "2026-02-02 06:37:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:08:12", + "echoMap": {}, + "alarmNo": "2440077176", + "alarmDate": "1769985474013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745923", + "createdBy": null, + "createdTime": "2026-02-02 06:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:09", + "echoMap": {}, + "alarmNo": "2440077177", + "alarmDate": "1769985477330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060142", + "deviceName": "[160](10)吴中路基地纬二路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745926", + "createdBy": null, + "createdTime": "2026-02-02 06:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "alarmNo": "2440077178", + "alarmDate": "1769985477453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060129", + "deviceName": "[147](10)吴中路基地东北铁门1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113548791712895", + "createdBy": null, + "createdTime": "2026-02-02 06:38:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:54", + "echoMap": {}, + "alarmNo": "2440077179", + "alarmDate": "1769985504322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113561676614787", + "createdBy": null, + "createdTime": "2026-02-02 06:48:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:35", + "echoMap": {}, + "alarmNo": "2440077193", + "alarmDate": "1769986114400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113570266549413", + "createdBy": null, + "createdTime": "2026-02-02 06:58:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:28", + "echoMap": {}, + "alarmNo": "2440077203", + "alarmDate": "1769986706592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113570266549615", + "createdBy": null, + "createdTime": "2026-02-02 06:58:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:54", + "echoMap": {}, + "alarmNo": "2440077204", + "alarmDate": "1769986730677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113574561516662", + "createdBy": null, + "createdTime": "2026-02-02 07:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:08:03", + "echoMap": {}, + "alarmNo": "2440077205", + "alarmDate": "1769987278272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060158", + "deviceName": "[181](10)吴中路基地经一路", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113578856483950", + "createdBy": null, + "createdTime": "2026-02-02 07:08:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:08:36", + "echoMap": {}, + "alarmNo": "2440077206", + "alarmDate": "1769987303846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113583151451237", + "createdBy": null, + "createdTime": "2026-02-02 07:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:00", + "echoMap": {}, + "alarmNo": "2440077207", + "alarmDate": "1769987875239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113583151451248", + "createdBy": null, + "createdTime": "2026-02-02 07:17:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:58", + "echoMap": {}, + "alarmNo": "2440077208", + "alarmDate": "1769987877532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060158", + "deviceName": "[181](10)吴中路基地经一路", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113587446418614", + "createdBy": null, + "createdTime": "2026-02-02 07:18:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:28", + "echoMap": {}, + "alarmNo": "2440077209", + "alarmDate": "1769987907235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113587446418739", + "createdBy": null, + "createdTime": "2026-02-02 07:18:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:26", + "echoMap": {}, + "alarmNo": "2440077210", + "alarmDate": "1769987924074", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060139", + "deviceName": "[165](10)吴中路基地镟轮库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113596036353041", + "createdBy": null, + "createdTime": "2026-02-02 07:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:40", + "echoMap": {}, + "alarmNo": "2440077211", + "alarmDate": "1769988474288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113596036353135", + "createdBy": null, + "createdTime": "2026-02-02 07:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:08", + "echoMap": {}, + "alarmNo": "2440077212", + "alarmDate": "1769988486764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113596036353206", + "createdBy": null, + "createdTime": "2026-02-02 07:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:09", + "echoMap": {}, + "alarmNo": "2440077213", + "alarmDate": "1769988495244", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113617511189523", + "createdBy": null, + "createdTime": "2026-02-02 07:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:20", + "echoMap": {}, + "alarmNo": "2440077214", + "alarmDate": "1769989698981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113621806156896", + "createdBy": null, + "createdTime": "2026-02-02 07:48:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:40", + "echoMap": {}, + "alarmNo": "2440077215", + "alarmDate": "1769989719321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113630396091689", + "createdBy": null, + "createdTime": "2026-02-02 07:58:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:52", + "echoMap": {}, + "alarmNo": "2440077224", + "alarmDate": "1769990326398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113638986026042", + "createdBy": null, + "createdTime": "2026-02-02 08:07:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:15", + "echoMap": {}, + "alarmNo": "2440077236", + "alarmDate": "1769990875457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113638986026072", + "createdBy": null, + "createdTime": "2026-02-02 08:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:06", + "echoMap": {}, + "alarmNo": "2440077237", + "alarmDate": "1769990880026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113638986026224", + "createdBy": null, + "createdTime": "2026-02-02 08:08:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:36", + "echoMap": {}, + "alarmNo": "2440077238", + "alarmDate": "1769990898001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113647575960956", + "createdBy": null, + "createdTime": "2026-02-02 08:18:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:13", + "echoMap": {}, + "alarmNo": "2440077247", + "alarmDate": "1769991491816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113647575961019", + "createdBy": null, + "createdTime": "2026-02-02 08:18:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:22", + "echoMap": {}, + "alarmNo": "2440077248", + "alarmDate": "1769991501061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113656165895305", + "createdBy": null, + "createdTime": "2026-02-02 08:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077249", + "alarmDate": "1769992074213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113664755829797", + "createdBy": null, + "createdTime": "2026-02-02 08:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:19", + "echoMap": {}, + "alarmNo": "2440077250", + "alarmDate": "1769992681925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113664755830241", + "createdBy": null, + "createdTime": "2026-02-02 08:38:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:06", + "echoMap": {}, + "alarmNo": "2440077251", + "alarmDate": "1769992732470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113664755830250", + "createdBy": null, + "createdTime": "2026-02-02 08:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:04", + "echoMap": {}, + "alarmNo": "2440077252", + "alarmDate": "1769992733751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113673345764413", + "createdBy": null, + "createdTime": "2026-02-02 08:48:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:40", + "echoMap": {}, + "alarmNo": "2440077253", + "alarmDate": "1769993289470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113673345764637", + "createdBy": null, + "createdTime": "2026-02-02 08:48:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:49", + "echoMap": {}, + "alarmNo": "2440077254", + "alarmDate": "1769993317199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113677640731700", + "createdBy": null, + "createdTime": "2026-02-02 08:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:54", + "echoMap": {}, + "alarmNo": "2440077255", + "alarmDate": "1769993875302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935698968", + "createdBy": null, + "createdTime": "2026-02-02 08:58:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:29", + "echoMap": {}, + "alarmNo": "2440077256", + "alarmDate": "1769993891167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699007", + "createdBy": null, + "createdTime": "2026-02-02 08:58:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:28", + "echoMap": {}, + "alarmNo": "2440077257", + "alarmDate": "1769993895791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699176", + "createdBy": null, + "createdTime": "2026-02-02 08:58:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:41", + "echoMap": {}, + "alarmNo": "2440077258", + "alarmDate": "1769993915160", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699226", + "createdBy": null, + "createdTime": "2026-02-02 08:58:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:10", + "echoMap": {}, + "alarmNo": "2440077259", + "alarmDate": "1769993921180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699323", + "createdBy": null, + "createdTime": "2026-02-02 08:58:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:22", + "echoMap": {}, + "alarmNo": "2440077260", + "alarmDate": "1769993933236", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113690525633875", + "createdBy": null, + "createdTime": "2026-02-02 09:08:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:39", + "echoMap": {}, + "alarmNo": "2440077267", + "alarmDate": "1769994517551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113690525633941", + "createdBy": null, + "createdTime": "2026-02-02 09:08:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:46", + "echoMap": {}, + "alarmNo": "2440077268", + "alarmDate": "1769994525157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113699115568202", + "createdBy": null, + "createdTime": "2026-02-02 09:17:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:58", + "echoMap": {}, + "alarmNo": "2440077269", + "alarmDate": "1769995077445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113703410535555", + "createdBy": null, + "createdTime": "2026-02-02 09:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:24", + "echoMap": {}, + "alarmNo": "2440077270", + "alarmDate": "1769995675826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705502908", + "createdBy": null, + "createdTime": "2026-02-02 09:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:08", + "echoMap": {}, + "alarmNo": "2440077271", + "alarmDate": "1769995701796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705503010", + "createdBy": null, + "createdTime": "2026-02-02 09:28:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:40", + "echoMap": {}, + "alarmNo": "2440077272", + "alarmDate": "1769995713681", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705503024", + "createdBy": null, + "createdTime": "2026-02-02 09:28:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:41", + "echoMap": {}, + "alarmNo": "2440077273", + "alarmDate": "1769995715073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705503094", + "createdBy": null, + "createdTime": "2026-02-02 09:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:59", + "echoMap": {}, + "alarmNo": "2440077274", + "alarmDate": "1769995721923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437332", + "createdBy": null, + "createdTime": "2026-02-02 09:38:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:16", + "echoMap": {}, + "alarmNo": "2440077275", + "alarmDate": "1769996289847", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437338", + "createdBy": null, + "createdTime": "2026-02-02 09:38:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:16", + "echoMap": {}, + "alarmNo": "2440077276", + "alarmDate": "1769996290255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437346", + "createdBy": null, + "createdTime": "2026-02-02 09:38:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:18", + "echoMap": {}, + "alarmNo": "2440077277", + "alarmDate": "1769996291025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437418", + "createdBy": null, + "createdTime": "2026-02-02 09:38:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:20", + "echoMap": {}, + "alarmNo": "2440077278", + "alarmDate": "1769996298493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437489", + "createdBy": null, + "createdTime": "2026-02-02 09:38:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:40", + "echoMap": {}, + "alarmNo": "2440077279", + "alarmDate": "1769996308261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437574", + "createdBy": null, + "createdTime": "2026-02-02 09:38:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:39", + "echoMap": {}, + "alarmNo": "2440077280", + "alarmDate": "1769996318018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437602", + "createdBy": null, + "createdTime": "2026-02-02 09:38:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:52", + "echoMap": {}, + "alarmNo": "2440077281", + "alarmDate": "1769996321164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437650", + "createdBy": null, + "createdTime": "2026-02-02 09:38:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:52", + "echoMap": {}, + "alarmNo": "2440077282", + "alarmDate": "1769996325799", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113720590404666", + "createdBy": null, + "createdTime": "2026-02-02 09:47:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:04", + "echoMap": {}, + "alarmNo": "2440077283", + "alarmDate": "1769996874041", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372095", + "createdBy": null, + "createdTime": "2026-02-02 09:48:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:40", + "echoMap": {}, + "alarmNo": "2440077284", + "alarmDate": "1769996914454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372220", + "createdBy": null, + "createdTime": "2026-02-02 09:48:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:57", + "echoMap": {}, + "alarmNo": "2440077285", + "alarmDate": "1769996931023", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372461", + "createdBy": null, + "createdTime": "2026-02-02 09:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:02", + "echoMap": {}, + "alarmNo": "2440077286", + "alarmDate": "1769997423147", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060224", + "deviceName": "[029](10)吴中路基地停车1库E区8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372528", + "createdBy": null, + "createdTime": "2026-02-02 09:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:58", + "echoMap": {}, + "alarmNo": "2440077287", + "alarmDate": "1769997477653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372539", + "createdBy": null, + "createdTime": "2026-02-02 09:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:03", + "echoMap": {}, + "alarmNo": "2440077288", + "alarmDate": "1769997479165", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113733475306767", + "createdBy": null, + "createdTime": "2026-02-02 09:58:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:53", + "echoMap": {}, + "alarmNo": "2440077289", + "alarmDate": "1769997532207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113733475307063", + "createdBy": null, + "createdTime": "2026-02-02 10:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:27", + "echoMap": {}, + "alarmNo": "2440077290", + "alarmDate": "1769998077569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113733475307095", + "createdBy": null, + "createdTime": "2026-02-02 10:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:02", + "echoMap": {}, + "alarmNo": "2440077291", + "alarmDate": "1769998081319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113737770273949", + "createdBy": null, + "createdTime": "2026-02-02 10:08:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:31", + "echoMap": {}, + "alarmNo": "2440077292", + "alarmDate": "1769998109884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113742065241232", + "createdBy": null, + "createdTime": "2026-02-02 10:08:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:32", + "echoMap": {}, + "alarmNo": "2440077293", + "alarmDate": "1769998129519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113750655175899", + "createdBy": null, + "createdTime": "2026-02-02 10:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:55", + "echoMap": {}, + "alarmNo": "2440077294", + "alarmDate": "1769998734704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113759245110353", + "createdBy": null, + "createdTime": "2026-02-02 10:28:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:36", + "echoMap": {}, + "alarmNo": "2440077295", + "alarmDate": "1769999315076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113759245110599", + "createdBy": null, + "createdTime": "2026-02-02 10:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:55", + "echoMap": {}, + "alarmNo": "2440077296", + "alarmDate": "1769999516136", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060056", + "deviceName": "[097](10)吴中路基地洗车库北道路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113763540077635", + "createdBy": null, + "createdTime": "2026-02-02 10:38:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:24", + "echoMap": {}, + "alarmNo": "2440077300", + "alarmDate": "1769999902730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113767835045276", + "createdBy": null, + "createdTime": "2026-02-02 10:47:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:57", + "echoMap": {}, + "alarmNo": "2440077301", + "alarmDate": "1770000477488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113767835045283", + "createdBy": null, + "createdTime": "2026-02-02 10:47:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:31", + "echoMap": {}, + "alarmNo": "2440077302", + "alarmDate": "1770000478473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113776424979523", + "createdBy": null, + "createdTime": "2026-02-02 10:48:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:06", + "echoMap": {}, + "alarmNo": "2440077303", + "alarmDate": "1770000518273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113780719946799", + "createdBy": null, + "createdTime": "2026-02-02 10:58:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:17", + "echoMap": {}, + "alarmNo": "2440077304", + "alarmDate": "1770001095961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113785014914152", + "createdBy": null, + "createdTime": "2026-02-02 10:58:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:49", + "echoMap": {}, + "alarmNo": "2440077305", + "alarmDate": "1770001117731", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113785014914567", + "createdBy": null, + "createdTime": "2026-02-02 11:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:12", + "echoMap": {}, + "alarmNo": "2440077306", + "alarmDate": "1770001679486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113789309881386", + "createdBy": null, + "createdTime": "2026-02-02 11:08:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:17", + "echoMap": {}, + "alarmNo": "2440077307", + "alarmDate": "1770001696493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113793604849099", + "createdBy": null, + "createdTime": "2026-02-02 11:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:23", + "echoMap": {}, + "alarmNo": "2440077308", + "alarmDate": "1770002278704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783295", + "createdBy": null, + "createdTime": "2026-02-02 11:18:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:50", + "echoMap": {}, + "alarmNo": "2440077309", + "alarmDate": "1770002328559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783587", + "createdBy": null, + "createdTime": "2026-02-02 11:27:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:58", + "echoMap": {}, + "alarmNo": "2440077310", + "alarmDate": "1770002876713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783594", + "createdBy": null, + "createdTime": "2026-02-02 11:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:04", + "echoMap": {}, + "alarmNo": "2440077311", + "alarmDate": "1770002877846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783708", + "createdBy": null, + "createdTime": "2026-02-02 11:28:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:24", + "echoMap": {}, + "alarmNo": "2440077312", + "alarmDate": "1770002897955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783802", + "createdBy": null, + "createdTime": "2026-02-02 11:28:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:18", + "echoMap": {}, + "alarmNo": "2440077313", + "alarmDate": "1770002915973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113806489750550", + "createdBy": null, + "createdTime": "2026-02-02 11:28:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:54", + "echoMap": {}, + "alarmNo": "2440077314", + "alarmDate": "1770002930332", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060139", + "deviceName": "[165](10)吴中路基地镟轮库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113810784718086", + "createdBy": null, + "createdTime": "2026-02-02 11:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:10", + "echoMap": {}, + "alarmNo": "2440077315", + "alarmDate": "1770003489344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652438", + "createdBy": null, + "createdTime": "2026-02-02 11:47:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:41", + "echoMap": {}, + "alarmNo": "2440077316", + "alarmDate": "1770004075254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652450", + "createdBy": null, + "createdTime": "2026-02-02 11:47:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:31", + "echoMap": {}, + "alarmNo": "2440077317", + "alarmDate": "1770004077696", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652670", + "createdBy": null, + "createdTime": "2026-02-02 11:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:30", + "echoMap": {}, + "alarmNo": "2440077318", + "alarmDate": "1770004109423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652806", + "createdBy": null, + "createdTime": "2026-02-02 11:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:47", + "echoMap": {}, + "alarmNo": "2440077319", + "alarmDate": "1770004133407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587168", + "createdBy": null, + "createdTime": "2026-02-02 11:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:50", + "echoMap": {}, + "alarmNo": "2440077320", + "alarmDate": "1770004719465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587247", + "createdBy": null, + "createdTime": "2026-02-02 11:58:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:51", + "echoMap": {}, + "alarmNo": "2440077321", + "alarmDate": "1770004729861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587492", + "createdBy": null, + "createdTime": "2026-02-02 12:07:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077322", + "alarmDate": "1770005274101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587504", + "createdBy": null, + "createdTime": "2026-02-02 12:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:10", + "echoMap": {}, + "alarmNo": "2440077323", + "alarmDate": "1770005277513", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587533", + "createdBy": null, + "createdTime": "2026-02-02 12:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:03", + "echoMap": {}, + "alarmNo": "2440077324", + "alarmDate": "1770005282060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113836554521999", + "createdBy": null, + "createdTime": "2026-02-02 12:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:58", + "echoMap": {}, + "alarmNo": "2440077325", + "alarmDate": "1770005875829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113836554522012", + "createdBy": null, + "createdTime": "2026-02-02 12:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:59", + "echoMap": {}, + "alarmNo": "2440077326", + "alarmDate": "1770005878776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060179", + "deviceName": "[217](10)吴中路基地博物馆走廊", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113836554522075", + "createdBy": null, + "createdTime": "2026-02-02 12:18:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:11", + "echoMap": {}, + "alarmNo": "2440077327", + "alarmDate": "1770005890280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113840849489007", + "createdBy": null, + "createdTime": "2026-02-02 12:18:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:55", + "echoMap": {}, + "alarmNo": "2440077328", + "alarmDate": "1770005923304", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456438", + "createdBy": null, + "createdTime": "2026-02-02 12:25:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:19", + "echoMap": {}, + "alarmNo": "2440077337", + "alarmDate": "1770006356100", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456440", + "createdBy": null, + "createdTime": "2026-02-02 12:25:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:19", + "echoMap": {}, + "alarmNo": "2440077338", + "alarmDate": "1770006357195", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456443", + "createdBy": null, + "createdTime": "2026-02-02 12:25:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:19", + "echoMap": {}, + "alarmNo": "2440077339", + "alarmDate": "1770006358271", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456447", + "createdBy": null, + "createdTime": "2026-02-02 12:25:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:38", + "echoMap": {}, + "alarmNo": "2440077340", + "alarmDate": "1770006359370", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456519", + "createdBy": null, + "createdTime": "2026-02-02 12:27:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:05", + "echoMap": {}, + "alarmNo": "2440077358", + "alarmDate": "1770006471121", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456537", + "createdBy": null, + "createdTime": "2026-02-02 12:27:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:05", + "echoMap": {}, + "alarmNo": "2440077359", + "alarmDate": "1770006472261", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060009", + "deviceName": "[143](10)吴中路基地检修库101仓库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456541", + "createdBy": null, + "createdTime": "2026-02-02 12:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:05", + "echoMap": {}, + "alarmNo": "2440077360", + "alarmDate": "1770006474400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456545", + "createdBy": null, + "createdTime": "2026-02-02 12:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:09", + "echoMap": {}, + "alarmNo": "2440077361", + "alarmDate": "1770006481509", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456547", + "createdBy": null, + "createdTime": "2026-02-02 12:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077362", + "alarmDate": "1770006482547", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456553", + "createdBy": null, + "createdTime": "2026-02-02 12:28:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077363", + "alarmDate": "1770006487786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456555", + "createdBy": null, + "createdTime": "2026-02-02 12:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077364", + "alarmDate": "1770006492862", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456557", + "createdBy": null, + "createdTime": "2026-02-02 12:28:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077365", + "alarmDate": "1770006493898", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456559", + "createdBy": null, + "createdTime": "2026-02-02 12:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077366", + "alarmDate": "1770006495011", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456561", + "createdBy": null, + "createdTime": "2026-02-02 12:28:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077367", + "alarmDate": "1770006496062", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456564", + "createdBy": null, + "createdTime": "2026-02-02 12:28:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077368", + "alarmDate": "1770006497108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456566", + "createdBy": null, + "createdTime": "2026-02-02 12:28:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077369", + "alarmDate": "1770006498147", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456568", + "createdBy": null, + "createdTime": "2026-02-02 12:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077370", + "alarmDate": "1770006499192", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456570", + "createdBy": null, + "createdTime": "2026-02-02 12:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077371", + "alarmDate": "1770006500230", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060121", + "deviceName": "[080](10)吴中路基地纬1路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456572", + "createdBy": null, + "createdTime": "2026-02-02 12:28:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077372", + "alarmDate": "1770006501305", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456574", + "createdBy": null, + "createdTime": "2026-02-02 12:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077373", + "alarmDate": "1770006502352", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456576", + "createdBy": null, + "createdTime": "2026-02-02 12:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077374", + "alarmDate": "1770006503432", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060128", + "deviceName": "[150](10)吴中路基地纬二路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456578", + "createdBy": null, + "createdTime": "2026-02-02 12:28:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:38", + "echoMap": {}, + "alarmNo": "2440077375", + "alarmDate": "1770006504481", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060150", + "deviceName": "[182](10)吴中路基地经一路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456582", + "createdBy": null, + "createdTime": "2026-02-02 12:28:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:29", + "echoMap": {}, + "alarmNo": "2440077377", + "alarmDate": "1770006509280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060139", + "deviceName": "[165](10)吴中路基地镟轮库3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456585", + "createdBy": null, + "createdTime": "2026-02-02 12:28:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:06", + "echoMap": {}, + "alarmNo": "2440077378", + "alarmDate": "1770006509461", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456650", + "createdBy": null, + "createdTime": "2026-02-02 12:28:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:44", + "echoMap": {}, + "alarmNo": "2440077382", + "alarmDate": "1770006522754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456671", + "createdBy": null, + "createdTime": "2026-02-02 12:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:04", + "echoMap": {}, + "alarmNo": "2440077386", + "alarmDate": "1770006526025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390803", + "createdBy": null, + "createdTime": "2026-02-02 12:29:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077396", + "alarmDate": "1770006569349", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060123", + "deviceName": "[081](10)吴中路基地纬1路5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390805", + "createdBy": null, + "createdTime": "2026-02-02 12:29:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077397", + "alarmDate": "1770006571431", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060125", + "deviceName": "[078](10)吴中路基地纬1路马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390807", + "createdBy": null, + "createdTime": "2026-02-02 12:29:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077398", + "alarmDate": "1770006572539", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060126", + "deviceName": "[148](10)吴中路基地东北铁门2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390809", + "createdBy": null, + "createdTime": "2026-02-02 12:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077399", + "alarmDate": "1770006573577", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060127", + "deviceName": "[079](10)吴中路基地停车2库平交道南", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390811", + "createdBy": null, + "createdTime": "2026-02-02 12:29:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077400", + "alarmDate": "1770006575670", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060130", + "deviceName": "[157](10)吴中路基地仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390813", + "createdBy": null, + "createdTime": "2026-02-02 12:29:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:13", + "echoMap": {}, + "alarmNo": "2440077401", + "alarmDate": "1770006576728", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060131", + "deviceName": "[155](10)吴中路基地试车线平交道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390816", + "createdBy": null, + "createdTime": "2026-02-02 12:29:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:13", + "echoMap": {}, + "alarmNo": "2440077402", + "alarmDate": "1770006577770", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060132", + "deviceName": "[156](10)吴中路基地试车线平交道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391142", + "createdBy": null, + "createdTime": "2026-02-02 12:38:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:09", + "echoMap": {}, + "alarmNo": "2440077417", + "alarmDate": "1770007131017", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060003", + "deviceName": "[144](10)吴中路基地检修库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391145", + "createdBy": null, + "createdTime": "2026-02-02 12:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077418", + "alarmDate": "1770007133117", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391147", + "createdBy": null, + "createdTime": "2026-02-02 12:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077419", + "alarmDate": "1770007134157", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060009", + "deviceName": "[143](10)吴中路基地检修库101仓库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391149", + "createdBy": null, + "createdTime": "2026-02-02 12:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077420", + "alarmDate": "1770007135186", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060013", + "deviceName": "[170](10)吴中路基地东门人闸", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391151", + "createdBy": null, + "createdTime": "2026-02-02 12:38:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077421", + "alarmDate": "1770007136219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391153", + "createdBy": null, + "createdTime": "2026-02-02 12:38:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077422", + "alarmDate": "1770007137282", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391155", + "createdBy": null, + "createdTime": "2026-02-02 12:38:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077423", + "alarmDate": "1770007138355", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391157", + "createdBy": null, + "createdTime": "2026-02-02 12:39:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:14", + "echoMap": {}, + "alarmNo": "2440077424", + "alarmDate": "1770007143389", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391159", + "createdBy": null, + "createdTime": "2026-02-02 12:39:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:14", + "echoMap": {}, + "alarmNo": "2440077425", + "alarmDate": "1770007144419", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391161", + "createdBy": null, + "createdTime": "2026-02-02 12:39:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:14", + "echoMap": {}, + "alarmNo": "2440077426", + "alarmDate": "1770007145493", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391165", + "createdBy": null, + "createdTime": "2026-02-02 12:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077428", + "alarmDate": "1770007146527", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391167", + "createdBy": null, + "createdTime": "2026-02-02 12:39:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077429", + "alarmDate": "1770007147596", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391169", + "createdBy": null, + "createdTime": "2026-02-02 12:39:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077430", + "alarmDate": "1770007148632", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391171", + "createdBy": null, + "createdTime": "2026-02-02 12:39:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077431", + "alarmDate": "1770007149675", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391177", + "createdBy": null, + "createdTime": "2026-02-02 12:39:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077432", + "alarmDate": "1770007151820", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391179", + "createdBy": null, + "createdTime": "2026-02-02 12:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077433", + "alarmDate": "1770007152995", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391181", + "createdBy": null, + "createdTime": "2026-02-02 12:39:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077434", + "alarmDate": "1770007154093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391183", + "createdBy": null, + "createdTime": "2026-02-02 12:39:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077435", + "alarmDate": "1770007155154", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391185", + "createdBy": null, + "createdTime": "2026-02-02 12:39:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077436", + "alarmDate": "1770007156219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391187", + "createdBy": null, + "createdTime": "2026-02-02 12:39:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077437", + "alarmDate": "1770007157318", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391189", + "createdBy": null, + "createdTime": "2026-02-02 12:39:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077438", + "alarmDate": "1770007158361", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391196", + "createdBy": null, + "createdTime": "2026-02-02 12:39:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077439", + "alarmDate": "1770007159566", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060121", + "deviceName": "[080](10)吴中路基地纬1路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391204", + "createdBy": null, + "createdTime": "2026-02-02 12:39:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077440", + "alarmDate": "1770007160608", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391206", + "createdBy": null, + "createdTime": "2026-02-02 12:39:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077441", + "alarmDate": "1770007161705", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391208", + "createdBy": null, + "createdTime": "2026-02-02 12:39:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077442", + "alarmDate": "1770007162743", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060126", + "deviceName": "[148](10)吴中路基地东北铁门2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391213", + "createdBy": null, + "createdTime": "2026-02-02 12:39:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077443", + "alarmDate": "1770007163797", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060128", + "deviceName": "[150](10)吴中路基地纬二路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391218", + "createdBy": null, + "createdTime": "2026-02-02 12:39:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077444", + "alarmDate": "1770007164895", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060147", + "deviceName": "[168](10)吴中路基地东门人闸2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391225", + "createdBy": null, + "createdTime": "2026-02-02 12:39:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:28", + "echoMap": {}, + "alarmNo": "2440077445", + "alarmDate": "1770007172083", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060220", + "deviceName": "[197](10)吴中路基地周界16", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391227", + "createdBy": null, + "createdTime": "2026-02-02 12:39:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:29", + "echoMap": {}, + "alarmNo": "2440077446", + "alarmDate": "1770007174120", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391283", + "createdBy": null, + "createdTime": "2026-02-02 12:40:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:13", + "echoMap": {}, + "alarmNo": "2440077467", + "alarmDate": "1770007212138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391294", + "createdBy": null, + "createdTime": "2026-02-02 12:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:58", + "echoMap": {}, + "alarmNo": "2440077468", + "alarmDate": "1770007216891", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391296", + "createdBy": null, + "createdTime": "2026-02-02 12:40:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:58", + "echoMap": {}, + "alarmNo": "2440077469", + "alarmDate": "1770007217927", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391298", + "createdBy": null, + "createdTime": "2026-02-02 12:40:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:59", + "echoMap": {}, + "alarmNo": "2440077470", + "alarmDate": "1770007218998", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391313", + "createdBy": null, + "createdTime": "2026-02-02 12:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:59", + "echoMap": {}, + "alarmNo": "2440077471", + "alarmDate": "1770007221510", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391326", + "createdBy": null, + "createdTime": "2026-02-02 12:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077472", + "alarmDate": "1770007240347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391328", + "createdBy": null, + "createdTime": "2026-02-02 12:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077473", + "alarmDate": "1770007240809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113858029358117", + "createdBy": null, + "createdTime": "2026-02-02 12:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:04", + "echoMap": {}, + "alarmNo": "2440077474", + "alarmDate": "1770007251421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113858029358190", + "createdBy": null, + "createdTime": "2026-02-02 12:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:02", + "echoMap": {}, + "alarmNo": "2440077475", + "alarmDate": "1770007261264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325454", + "createdBy": null, + "createdTime": "2026-02-02 12:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:21", + "echoMap": {}, + "alarmNo": "2440077476", + "alarmDate": "1770007275512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325615", + "createdBy": null, + "createdTime": "2026-02-02 12:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077477", + "alarmDate": "1770007311108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060003", + "deviceName": "[144](10)吴中路基地检修库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325617", + "createdBy": null, + "createdTime": "2026-02-02 12:41:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077478", + "alarmDate": "1770007312137", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060005", + "deviceName": "[145](10)吴中路基地检修库101仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325619", + "createdBy": null, + "createdTime": "2026-02-02 12:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077479", + "alarmDate": "1770007313183", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325621", + "createdBy": null, + "createdTime": "2026-02-02 12:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077480", + "alarmDate": "1770007314224", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325624", + "createdBy": null, + "createdTime": "2026-02-02 12:41:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077481", + "alarmDate": "1770007316328", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325626", + "createdBy": null, + "createdTime": "2026-02-02 12:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:11", + "echoMap": {}, + "alarmNo": "2440077482", + "alarmDate": "1770007321374", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325628", + "createdBy": null, + "createdTime": "2026-02-02 12:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:11", + "echoMap": {}, + "alarmNo": "2440077483", + "alarmDate": "1770007322412", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325631", + "createdBy": null, + "createdTime": "2026-02-02 12:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077484", + "alarmDate": "1770007324576", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325633", + "createdBy": null, + "createdTime": "2026-02-02 12:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077485", + "alarmDate": "1770007325621", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325635", + "createdBy": null, + "createdTime": "2026-02-02 12:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077486", + "alarmDate": "1770007326670", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325637", + "createdBy": null, + "createdTime": "2026-02-02 12:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077487", + "alarmDate": "1770007327762", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325639", + "createdBy": null, + "createdTime": "2026-02-02 12:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:16", + "echoMap": {}, + "alarmNo": "2440077488", + "alarmDate": "1770007332889", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325641", + "createdBy": null, + "createdTime": "2026-02-02 12:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:16", + "echoMap": {}, + "alarmNo": "2440077489", + "alarmDate": "1770007333965", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325643", + "createdBy": null, + "createdTime": "2026-02-02 12:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:16", + "echoMap": {}, + "alarmNo": "2440077490", + "alarmDate": "1770007335065", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325645", + "createdBy": null, + "createdTime": "2026-02-02 12:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077491", + "alarmDate": "1770007336108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325647", + "createdBy": null, + "createdTime": "2026-02-02 12:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077492", + "alarmDate": "1770007337173", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325649", + "createdBy": null, + "createdTime": "2026-02-02 12:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077493", + "alarmDate": "1770007338218", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325651", + "createdBy": null, + "createdTime": "2026-02-02 12:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077494", + "alarmDate": "1770007339257", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325653", + "createdBy": null, + "createdTime": "2026-02-02 12:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077495", + "alarmDate": "1770007340293", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060121", + "deviceName": "[080](10)吴中路基地纬1路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325655", + "createdBy": null, + "createdTime": "2026-02-02 12:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077496", + "alarmDate": "1770007341350", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325657", + "createdBy": null, + "createdTime": "2026-02-02 12:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077497", + "alarmDate": "1770007342376", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060123", + "deviceName": "[081](10)吴中路基地纬1路5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325659", + "createdBy": null, + "createdTime": "2026-02-02 12:42:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077498", + "alarmDate": "1770007343419", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325662", + "createdBy": null, + "createdTime": "2026-02-02 12:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077499", + "alarmDate": "1770007344585", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060125", + "deviceName": "[078](10)吴中路基地纬1路马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325664", + "createdBy": null, + "createdTime": "2026-02-02 12:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "alarmNo": "2440077500", + "alarmDate": "1770007345619", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060126", + "deviceName": "[148](10)吴中路基地东北铁门2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325667", + "createdBy": null, + "createdTime": "2026-02-02 12:42:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "alarmNo": "2440077501", + "alarmDate": "1770007347720", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060144", + "deviceName": "[158](10)吴中路基地仓库外球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325669", + "createdBy": null, + "createdTime": "2026-02-02 12:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:19", + "echoMap": {}, + "alarmNo": "2440077502", + "alarmDate": "1770007349765", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113866619292694", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:06", + "echoMap": {}, + "alarmNo": "2440077503", + "alarmDate": "1770007846028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113866619292696", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077504", + "alarmDate": "1770007846487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914259982", + "createdBy": null, + "createdTime": "2026-02-02 12:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:14", + "echoMap": {}, + "alarmNo": "2440077505", + "alarmDate": "1770007867748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260043", + "createdBy": null, + "createdTime": "2026-02-02 12:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:19", + "echoMap": {}, + "alarmNo": "2440077506", + "alarmDate": "1770007873155", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260090", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:38", + "echoMap": {}, + "alarmNo": "2440077507", + "alarmDate": "1770007879657", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260175", + "createdBy": null, + "createdTime": "2026-02-02 12:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:39", + "echoMap": {}, + "alarmNo": "2440077508", + "alarmDate": "1770007892755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260246", + "createdBy": null, + "createdTime": "2026-02-02 12:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:43", + "echoMap": {}, + "alarmNo": "2440077509", + "alarmDate": "1770007901643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260392", + "createdBy": null, + "createdTime": "2026-02-02 12:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "alarmNo": "2440077510", + "alarmDate": "1770008271033", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060003", + "deviceName": "[144](10)吴中路基地检修库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260394", + "createdBy": null, + "createdTime": "2026-02-02 12:57:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077511", + "alarmDate": "1770008272114", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060005", + "deviceName": "[145](10)吴中路基地检修库101仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260396", + "createdBy": null, + "createdTime": "2026-02-02 12:57:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077512", + "alarmDate": "1770008273158", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260425", + "createdBy": null, + "createdTime": "2026-02-02 12:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077513", + "alarmDate": "1770008334033", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060009", + "deviceName": "[143](10)吴中路基地检修库101仓库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260427", + "createdBy": null, + "createdTime": "2026-02-02 12:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077514", + "alarmDate": "1770008335134", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060013", + "deviceName": "[170](10)吴中路基地东门人闸", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260429", + "createdBy": null, + "createdTime": "2026-02-02 12:58:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:59", + "echoMap": {}, + "alarmNo": "2440077515", + "alarmDate": "1770008336167", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260432", + "createdBy": null, + "createdTime": "2026-02-02 12:58:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:06", + "echoMap": {}, + "alarmNo": "2440077516", + "alarmDate": "1770008338298", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260436", + "createdBy": null, + "createdTime": "2026-02-02 12:59:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "alarmNo": "2440077517", + "alarmDate": "1770008343365", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260438", + "createdBy": null, + "createdTime": "2026-02-02 12:59:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "alarmNo": "2440077518", + "alarmDate": "1770008344420", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260454", + "createdBy": null, + "createdTime": "2026-02-02 12:59:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077519", + "alarmDate": "1770008346681", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260464", + "createdBy": null, + "createdTime": "2026-02-02 12:59:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077520", + "alarmDate": "1770008347726", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260466", + "createdBy": null, + "createdTime": "2026-02-02 12:59:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077521", + "alarmDate": "1770008348794", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260468", + "createdBy": null, + "createdTime": "2026-02-02 12:59:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077522", + "alarmDate": "1770008349879", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260470", + "createdBy": null, + "createdTime": "2026-02-02 12:59:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "alarmNo": "2440077523", + "alarmDate": "1770008352047", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260472", + "createdBy": null, + "createdTime": "2026-02-02 12:59:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "alarmNo": "2440077524", + "alarmDate": "1770008353140", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260478", + "createdBy": null, + "createdTime": "2026-02-02 12:59:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077525", + "alarmDate": "1770008354272", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260483", + "createdBy": null, + "createdTime": "2026-02-02 12:59:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077526", + "alarmDate": "1770008355339", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260486", + "createdBy": null, + "createdTime": "2026-02-02 12:59:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077527", + "alarmDate": "1770008356377", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260488", + "createdBy": null, + "createdTime": "2026-02-02 12:59:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077528", + "alarmDate": "1770008357421", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260490", + "createdBy": null, + "createdTime": "2026-02-02 12:59:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077529", + "alarmDate": "1770008358524", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260492", + "createdBy": null, + "createdTime": "2026-02-02 12:59:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077530", + "alarmDate": "1770008359555", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260494", + "createdBy": null, + "createdTime": "2026-02-02 12:59:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077531", + "alarmDate": "1770008360593", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260499", + "createdBy": null, + "createdTime": "2026-02-02 12:59:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077532", + "alarmDate": "1770008361637", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060129", + "deviceName": "[147](10)吴中路基地东北铁门1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260501", + "createdBy": null, + "createdTime": "2026-02-02 12:59:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077533", + "alarmDate": "1770008362673", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060130", + "deviceName": "[157](10)吴中路基地仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260503", + "createdBy": null, + "createdTime": "2026-02-02 12:59:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077534", + "alarmDate": "1770008363713", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060131", + "deviceName": "[155](10)吴中路基地试车线平交道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260562", + "createdBy": null, + "createdTime": "2026-02-02 13:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077552", + "alarmDate": "1770008413219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260564", + "createdBy": null, + "createdTime": "2026-02-02 13:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077553", + "alarmDate": "1770008414321", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260566", + "createdBy": null, + "createdTime": "2026-02-02 13:00:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077554", + "alarmDate": "1770008415349", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260581", + "createdBy": null, + "createdTime": "2026-02-02 13:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077555", + "alarmDate": "1770008417644", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260583", + "createdBy": null, + "createdTime": "2026-02-02 13:00:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:23", + "echoMap": {}, + "alarmNo": "2440077556", + "alarmDate": "1770008420795", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060173", + "deviceName": "[228](10)吴中路基地南围墙东2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260585", + "createdBy": null, + "createdTime": "2026-02-02 13:00:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077557", + "alarmDate": "1770008421837", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260589", + "createdBy": null, + "createdTime": "2026-02-02 13:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077558", + "alarmDate": "1770008425102", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060184", + "deviceName": "[192](10)吴中路基地南围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260592", + "createdBy": null, + "createdTime": "2026-02-02 13:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077559", + "alarmDate": "1770008427222", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060187", + "deviceName": "[016](10)吴中路基地停车1库F区1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227266", + "createdBy": null, + "createdTime": "2026-02-02 13:00:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077560", + "alarmDate": "1770008429369", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060192", + "deviceName": "[191](10)吴中路基地周界10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227274", + "createdBy": null, + "createdTime": "2026-02-02 13:00:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "2440077561", + "alarmDate": "1770008431481", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060198", + "deviceName": "[188](10)吴中路基地易燃品库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227277", + "createdBy": null, + "createdTime": "2026-02-02 13:00:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "2440077562", + "alarmDate": "1770008432523", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060202", + "deviceName": "[185](10)吴中路基地纬二路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227279", + "createdBy": null, + "createdTime": "2026-02-02 13:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "2440077563", + "alarmDate": "1770008433561", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227281", + "createdBy": null, + "createdTime": "2026-02-02 13:00:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "alarmNo": "2440077564", + "alarmDate": "1770008438671", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060220", + "deviceName": "[197](10)吴中路基地周界16", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227283", + "createdBy": null, + "createdTime": "2026-02-02 13:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:30", + "echoMap": {}, + "alarmNo": "2440077565", + "alarmDate": "1770008440766", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227295", + "createdBy": null, + "createdTime": "2026-02-02 13:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "alarmNo": "2440077566", + "alarmDate": "1770008472954", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060005", + "deviceName": "[145](10)吴中路基地检修库101仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227298", + "createdBy": null, + "createdTime": "2026-02-02 13:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "alarmNo": "2440077567", + "alarmDate": "1770008473998", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227302", + "createdBy": null, + "createdTime": "2026-02-02 13:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:59", + "echoMap": {}, + "alarmNo": "2440077568", + "alarmDate": "1770008476060", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227305", + "createdBy": null, + "createdTime": "2026-02-02 13:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:18", + "echoMap": {}, + "alarmNo": "2440077569", + "alarmDate": "1770008478303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227307", + "createdBy": null, + "createdTime": "2026-02-02 13:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:19", + "echoMap": {}, + "alarmNo": "2440077570", + "alarmDate": "1770008478691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227311", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:44", + "echoMap": {}, + "alarmNo": "2440077571", + "alarmDate": "1770008479896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113879504194611", + "createdBy": null, + "createdTime": "2026-02-02 13:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:36", + "echoMap": {}, + "alarmNo": "2440077572", + "alarmDate": "1770008494951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113883799161877", + "createdBy": null, + "createdTime": "2026-02-02 13:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:50", + "echoMap": {}, + "alarmNo": "2440077582", + "alarmDate": "1770009051019", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113883799161910", + "createdBy": null, + "createdTime": "2026-02-02 13:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:45", + "echoMap": {}, + "alarmNo": "2440077583", + "alarmDate": "1770009083493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113883799161980", + "createdBy": null, + "createdTime": "2026-02-02 13:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:02", + "echoMap": {}, + "alarmNo": "2440077584", + "alarmDate": "1770009098092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113888094129399", + "createdBy": null, + "createdTime": "2026-02-02 13:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:16", + "echoMap": {}, + "alarmNo": "2440077585", + "alarmDate": "1770009143572", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113888094129698", + "createdBy": null, + "createdTime": "2026-02-02 13:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:49", + "echoMap": {}, + "alarmNo": "2440077596", + "alarmDate": "1770009685255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113892389096490", + "createdBy": null, + "createdTime": "2026-02-02 13:21:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:37", + "echoMap": {}, + "alarmNo": "2440077597", + "alarmDate": "1770009695559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113896684063800", + "createdBy": null, + "createdTime": "2026-02-02 13:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:01", + "echoMap": {}, + "alarmNo": "2440077598", + "alarmDate": "1770009721455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113896684063839", + "createdBy": null, + "createdTime": "2026-02-02 13:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:09", + "echoMap": {}, + "alarmNo": "2440077599", + "alarmDate": "1770009727590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113896684064174", + "createdBy": null, + "createdTime": "2026-02-02 13:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:13", + "echoMap": {}, + "alarmNo": "2440077600", + "alarmDate": "1770010283794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113900979031051", + "createdBy": null, + "createdTime": "2026-02-02 13:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:13", + "echoMap": {}, + "alarmNo": "2440077601", + "alarmDate": "1770010301412", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113900979031147", + "createdBy": null, + "createdTime": "2026-02-02 13:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:57", + "echoMap": {}, + "alarmNo": "2440077602", + "alarmDate": "1770010314116", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998597", + "createdBy": null, + "createdTime": "2026-02-02 13:33:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:50", + "echoMap": {}, + "alarmNo": "2440077603", + "alarmDate": "1770010431047", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998599", + "createdBy": null, + "createdTime": "2026-02-02 13:33:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:50", + "echoMap": {}, + "alarmNo": "2440077604", + "alarmDate": "1770010432167", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060019", + "deviceName": "[174](10)吴中路基地周界9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998601", + "createdBy": null, + "createdTime": "2026-02-02 13:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:53", + "echoMap": {}, + "alarmNo": "2440077605", + "alarmDate": "1770010436211", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998603", + "createdBy": null, + "createdTime": "2026-02-02 13:33:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:57", + "echoMap": {}, + "alarmNo": "2440077606", + "alarmDate": "1770010437294", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998606", + "createdBy": null, + "createdTime": "2026-02-02 13:33:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "alarmNo": "2440077607", + "alarmDate": "1770010438507", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060166", + "deviceName": "[171](10)吴中路基地周界7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998608", + "createdBy": null, + "createdTime": "2026-02-02 13:34:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "alarmNo": "2440077608", + "alarmDate": "1770010439558", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060169", + "deviceName": "[172](10)吴中路基地周界6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998625", + "createdBy": null, + "createdTime": "2026-02-02 13:34:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:53", + "echoMap": {}, + "alarmNo": "2440077611", + "alarmDate": "1770010497138", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998632", + "createdBy": null, + "createdTime": "2026-02-02 13:35:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "alarmNo": "2440077612", + "alarmDate": "1770010500491", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060175", + "deviceName": "[002](10)吴中路基地停车2库A区1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998676", + "createdBy": null, + "createdTime": "2026-02-02 13:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:53", + "echoMap": {}, + "alarmNo": "2440077613", + "alarmDate": "1770010554345", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060102", + "deviceName": "[067](10)吴中路基地停车1库H区13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998678", + "createdBy": null, + "createdTime": "2026-02-02 13:35:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:53", + "echoMap": {}, + "alarmNo": "2440077614", + "alarmDate": "1770010555438", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060135", + "deviceName": "[076](10)吴中路基地纬1路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998790", + "createdBy": null, + "createdTime": "2026-02-02 13:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:50", + "echoMap": {}, + "alarmNo": "2440077616", + "alarmDate": "1770010851040", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998792", + "createdBy": null, + "createdTime": "2026-02-02 13:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:50", + "echoMap": {}, + "alarmNo": "2440077617", + "alarmDate": "1770010852131", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060019", + "deviceName": "[174](10)吴中路基地周界9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113909568965633", + "createdBy": null, + "createdTime": "2026-02-02 13:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:55", + "echoMap": {}, + "alarmNo": "2440077618", + "alarmDate": "1770010856243", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060166", + "deviceName": "[171](10)吴中路基地周界7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113909568965635", + "createdBy": null, + "createdTime": "2026-02-02 13:40:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:55", + "echoMap": {}, + "alarmNo": "2440077619", + "alarmDate": "1770010857285", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060169", + "deviceName": "[172](10)吴中路基地周界6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113913863932972", + "createdBy": null, + "createdTime": "2026-02-02 13:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:01", + "echoMap": {}, + "alarmNo": "2440077621", + "alarmDate": "1770010908588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113913863933152", + "createdBy": null, + "createdTime": "2026-02-02 13:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:17", + "echoMap": {}, + "alarmNo": "2440077622", + "alarmDate": "1770010936115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113913863933366", + "createdBy": null, + "createdTime": "2026-02-02 13:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:50", + "echoMap": {}, + "alarmNo": "2440077631", + "alarmDate": "1770011211059", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060019", + "deviceName": "[174](10)吴中路基地周界9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900277", + "createdBy": null, + "createdTime": "2026-02-02 13:48:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:50", + "echoMap": {}, + "alarmNo": "2440077632", + "alarmDate": "1770011331220", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900300", + "createdBy": null, + "createdTime": "2026-02-02 13:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:52", + "echoMap": {}, + "alarmNo": "2440077633", + "alarmDate": "1770011335317", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060033", + "deviceName": "[200](10)吴中路基地北围墙西1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900302", + "createdBy": null, + "createdTime": "2026-02-02 13:48:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:53", + "echoMap": {}, + "alarmNo": "2440077634", + "alarmDate": "1770011336507", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060166", + "deviceName": "[171](10)吴中路基地周界7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900304", + "createdBy": null, + "createdTime": "2026-02-02 13:48:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:55", + "echoMap": {}, + "alarmNo": "2440077635", + "alarmDate": "1770011337803", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060169", + "deviceName": "[172](10)吴中路基地周界6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900306", + "createdBy": null, + "createdTime": "2026-02-02 13:49:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:54", + "echoMap": {}, + "alarmNo": "2440077636", + "alarmDate": "1770011340968", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060211", + "deviceName": "[201](10)吴中路基地轨道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900308", + "createdBy": null, + "createdTime": "2026-02-02 13:49:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:54", + "echoMap": {}, + "alarmNo": "2440077637", + "alarmDate": "1770011342065", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060215", + "deviceName": "[199](10)吴中路基地轨道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900310", + "createdBy": null, + "createdTime": "2026-02-02 13:49:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:55", + "echoMap": {}, + "alarmNo": "2440077638", + "alarmDate": "1770011343145", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060222", + "deviceName": "[198](10)吴中路基地周界4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900340", + "createdBy": null, + "createdTime": "2026-02-02 13:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:53", + "echoMap": {}, + "alarmNo": "2440077645", + "alarmDate": "1770011394250", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060038", + "deviceName": "[096](10)吴中路基地基地洗车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867567", + "createdBy": null, + "createdTime": "2026-02-02 13:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:47", + "echoMap": {}, + "alarmNo": "2440077647", + "alarmDate": "1770011484256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867570", + "createdBy": null, + "createdTime": "2026-02-02 13:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:36", + "echoMap": {}, + "alarmNo": "2440077648", + "alarmDate": "1770011484764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867581", + "createdBy": null, + "createdTime": "2026-02-02 13:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:20", + "echoMap": {}, + "alarmNo": "2440077649", + "alarmDate": "1770011487158", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867588", + "createdBy": null, + "createdTime": "2026-02-02 13:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:29", + "echoMap": {}, + "alarmNo": "2440077650", + "alarmDate": "1770011487978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867594", + "createdBy": null, + "createdTime": "2026-02-02 13:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:29", + "echoMap": {}, + "alarmNo": "2440077651", + "alarmDate": "1770011488415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867726", + "createdBy": null, + "createdTime": "2026-02-02 13:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:49", + "echoMap": {}, + "alarmNo": "2440077652", + "alarmDate": "1770011508476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867868", + "createdBy": null, + "createdTime": "2026-02-02 13:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:40", + "echoMap": {}, + "alarmNo": "2440077653", + "alarmDate": "1770011531121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834889", + "createdBy": null, + "createdTime": "2026-02-02 13:54:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:50", + "echoMap": {}, + "alarmNo": "2440077662", + "alarmDate": "1770011691140", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060020", + "deviceName": "[202](10)吴中路基地周界3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834892", + "createdBy": null, + "createdTime": "2026-02-02 13:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:50", + "echoMap": {}, + "alarmNo": "2440077663", + "alarmDate": "1770011692172", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060021", + "deviceName": "[203](10)吴中路基地周界1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834894", + "createdBy": null, + "createdTime": "2026-02-02 13:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:50", + "echoMap": {}, + "alarmNo": "2440077664", + "alarmDate": "1770011693255", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060033", + "deviceName": "[200](10)吴中路基地北围墙西1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834896", + "createdBy": null, + "createdTime": "2026-02-02 13:54:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:51", + "echoMap": {}, + "alarmNo": "2440077665", + "alarmDate": "1770011696475", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060211", + "deviceName": "[201](10)吴中路基地轨道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834898", + "createdBy": null, + "createdTime": "2026-02-02 13:54:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:52", + "echoMap": {}, + "alarmNo": "2440077666", + "alarmDate": "1770011697513", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060215", + "deviceName": "[199](10)吴中路基地轨道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834900", + "createdBy": null, + "createdTime": "2026-02-02 13:54:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:52", + "echoMap": {}, + "alarmNo": "2440077667", + "alarmDate": "1770011698576", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060222", + "deviceName": "[198](10)吴中路基地周界4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802295", + "createdBy": null, + "createdTime": "2026-02-02 14:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:57", + "echoMap": {}, + "alarmNo": "2440077680", + "alarmDate": "1770012083363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802416", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:50", + "echoMap": {}, + "alarmNo": "2440077681", + "alarmDate": "1770012111067", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060033", + "deviceName": "[200](10)吴中路基地北围墙西1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802426", + "createdBy": null, + "createdTime": "2026-02-02 14:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:57", + "echoMap": {}, + "alarmNo": "2440077682", + "alarmDate": "1770012113253", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060222", + "deviceName": "[198](10)吴中路基地周界4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802466", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:00", + "echoMap": {}, + "alarmNo": "2440077683", + "alarmDate": "1770012118032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113935338769498", + "createdBy": null, + "createdTime": "2026-02-02 14:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:59", + "echoMap": {}, + "alarmNo": "2440077684", + "alarmDate": "1770012137098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633736788", + "createdBy": null, + "createdTime": "2026-02-02 14:02:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:40", + "echoMap": {}, + "alarmNo": "2440077685", + "alarmDate": "1770012153448", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737030", + "createdBy": null, + "createdTime": "2026-02-02 14:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "alarmNo": "2440077686", + "alarmDate": "1770012171172", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060074", + "deviceName": "[107](10)吴中路基地弱电电源室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737046", + "createdBy": null, + "createdTime": "2026-02-02 14:02:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "alarmNo": "2440077687", + "alarmDate": "1770012172224", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060084", + "deviceName": "[039](10)吴中路基地停车1库G区4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737064", + "createdBy": null, + "createdTime": "2026-02-02 14:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "alarmNo": "2440077688", + "alarmDate": "1770012173439", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060167", + "deviceName": "[005](10)吴中路基地停车2库D区1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737096", + "createdBy": null, + "createdTime": "2026-02-02 14:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:51", + "echoMap": {}, + "alarmNo": "2440077689", + "alarmDate": "1770012175506", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060211", + "deviceName": "[201](10)吴中路基地轨道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737110", + "createdBy": null, + "createdTime": "2026-02-02 14:02:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:51", + "echoMap": {}, + "alarmNo": "2440077690", + "alarmDate": "1770012176543", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060215", + "deviceName": "[199](10)吴中路基地轨道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737125", + "createdBy": null, + "createdTime": "2026-02-02 14:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:59", + "echoMap": {}, + "alarmNo": "2440077691", + "alarmDate": "1770012177779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113943928704015", + "createdBy": null, + "createdTime": "2026-02-02 14:03:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:17", + "echoMap": {}, + "alarmNo": "2440077692", + "alarmDate": "1770012191184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113943928704036", + "createdBy": null, + "createdTime": "2026-02-02 14:03:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:49", + "echoMap": {}, + "alarmNo": "2440077693", + "alarmDate": "1770012193945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113948223671648", + "createdBy": null, + "createdTime": "2026-02-02 14:04:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:11", + "echoMap": {}, + "alarmNo": "2440077698", + "alarmDate": "1770012245212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113952518638613", + "createdBy": null, + "createdTime": "2026-02-02 14:04:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "alarmNo": "2440077699", + "alarmDate": "1770012291112", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060020", + "deviceName": "[202](10)吴中路基地周界3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113952518638616", + "createdBy": null, + "createdTime": "2026-02-02 14:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "alarmNo": "2440077700", + "alarmDate": "1770012292174", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060021", + "deviceName": "[203](10)吴中路基地周界1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113952518638620", + "createdBy": null, + "createdTime": "2026-02-02 14:04:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "alarmNo": "2440077701", + "alarmDate": "1770012293360", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813605890", + "createdBy": null, + "createdTime": "2026-02-02 14:07:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:51", + "echoMap": {}, + "alarmNo": "2440077711", + "alarmDate": "1770012471168", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813605958", + "createdBy": null, + "createdTime": "2026-02-02 14:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:50", + "echoMap": {}, + "alarmNo": "2440077712", + "alarmDate": "1770012651174", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060207", + "deviceName": "[205](10)吴中路基地峒口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606053", + "createdBy": null, + "createdTime": "2026-02-02 14:13:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:35", + "echoMap": {}, + "alarmNo": "2440077713", + "alarmDate": "1770012805453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606175", + "createdBy": null, + "createdTime": "2026-02-02 14:13:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:12", + "echoMap": {}, + "alarmNo": "2440077714", + "alarmDate": "1770012822305", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606212", + "createdBy": null, + "createdTime": "2026-02-02 14:13:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:59", + "echoMap": {}, + "alarmNo": "2440077715", + "alarmDate": "1770012827427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606243", + "createdBy": null, + "createdTime": "2026-02-02 14:13:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:50", + "echoMap": {}, + "alarmNo": "2440077716", + "alarmDate": "1770012831207", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606249", + "createdBy": null, + "createdTime": "2026-02-02 14:13:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:04", + "echoMap": {}, + "alarmNo": "2440077717", + "alarmDate": "1770012831689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113961108573228", + "createdBy": null, + "createdTime": "2026-02-02 14:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:16", + "echoMap": {}, + "alarmNo": "2440077718", + "alarmDate": "1770012855673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113961108573278", + "createdBy": null, + "createdTime": "2026-02-02 14:14:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:47", + "echoMap": {}, + "alarmNo": "2440077719", + "alarmDate": "1770012862537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113965403540510", + "createdBy": null, + "createdTime": "2026-02-02 14:15:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:50", + "echoMap": {}, + "alarmNo": "2440077721", + "alarmDate": "1770012951120", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113969698507859", + "createdBy": null, + "createdTime": "2026-02-02 14:23:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:39", + "echoMap": {}, + "alarmNo": "2440077728", + "alarmDate": "1770013418443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113969698508007", + "createdBy": null, + "createdTime": "2026-02-02 14:24:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:23", + "echoMap": {}, + "alarmNo": "2440077729", + "alarmDate": "1770013444597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113973993475166", + "createdBy": null, + "createdTime": "2026-02-02 14:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:53", + "echoMap": {}, + "alarmNo": "2440077731", + "alarmDate": "1770014025763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113978288442443", + "createdBy": null, + "createdTime": "2026-02-02 14:34:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:11", + "echoMap": {}, + "alarmNo": "2440077732", + "alarmDate": "1770014045344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113978288442503", + "createdBy": null, + "createdTime": "2026-02-02 14:34:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:13", + "echoMap": {}, + "alarmNo": "2440077733", + "alarmDate": "1770014053196", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113978288442641", + "createdBy": null, + "createdTime": "2026-02-02 14:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:50", + "echoMap": {}, + "alarmNo": "2440077734", + "alarmDate": "1770014211110", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + } + ], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [ + { + "id": "723113978288442641", + "createdBy": null, + "createdTime": "2026-02-02 14:36:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:50", + "echoMap": {}, + "alarmNo": "2440077734", + "alarmDate": "1770014211110", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113978288442503", + "createdBy": null, + "createdTime": "2026-02-02 14:34:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:13", + "echoMap": {}, + "alarmNo": "2440077733", + "alarmDate": "1770014053196", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113978288442443", + "createdBy": null, + "createdTime": "2026-02-02 14:34:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:11", + "echoMap": {}, + "alarmNo": "2440077732", + "alarmDate": "1770014045344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113973993475166", + "createdBy": null, + "createdTime": "2026-02-02 14:33:46", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:53", + "echoMap": {}, + "alarmNo": "2440077731", + "alarmDate": "1770014025763", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113969698508007", + "createdBy": null, + "createdTime": "2026-02-02 14:24:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:23", + "echoMap": {}, + "alarmNo": "2440077729", + "alarmDate": "1770013444597", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113969698507859", + "createdBy": null, + "createdTime": "2026-02-02 14:23:38", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:39", + "echoMap": {}, + "alarmNo": "2440077728", + "alarmDate": "1770013418443", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113965403540510", + "createdBy": null, + "createdTime": "2026-02-02 14:15:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:16:50", + "echoMap": {}, + "alarmNo": "2440077721", + "alarmDate": "1770012951120", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113961108573278", + "createdBy": null, + "createdTime": "2026-02-02 14:14:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:47", + "echoMap": {}, + "alarmNo": "2440077719", + "alarmDate": "1770012862537", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113961108573228", + "createdBy": null, + "createdTime": "2026-02-02 14:14:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:16", + "echoMap": {}, + "alarmNo": "2440077718", + "alarmDate": "1770012855673", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606249", + "createdBy": null, + "createdTime": "2026-02-02 14:13:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:04", + "echoMap": {}, + "alarmNo": "2440077717", + "alarmDate": "1770012831689", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606243", + "createdBy": null, + "createdTime": "2026-02-02 14:13:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:50", + "echoMap": {}, + "alarmNo": "2440077716", + "alarmDate": "1770012831207", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606212", + "createdBy": null, + "createdTime": "2026-02-02 14:13:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:59", + "echoMap": {}, + "alarmNo": "2440077715", + "alarmDate": "1770012827427", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606175", + "createdBy": null, + "createdTime": "2026-02-02 14:13:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:14:12", + "echoMap": {}, + "alarmNo": "2440077714", + "alarmDate": "1770012822305", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813606053", + "createdBy": null, + "createdTime": "2026-02-02 14:13:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:35", + "echoMap": {}, + "alarmNo": "2440077713", + "alarmDate": "1770012805453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813605958", + "createdBy": null, + "createdTime": "2026-02-02 14:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:50", + "echoMap": {}, + "alarmNo": "2440077712", + "alarmDate": "1770012651174", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060207", + "deviceName": "[205](10)吴中路基地峒口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113956813605890", + "createdBy": null, + "createdTime": "2026-02-02 14:07:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:11:51", + "echoMap": {}, + "alarmNo": "2440077711", + "alarmDate": "1770012471168", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113952518638620", + "createdBy": null, + "createdTime": "2026-02-02 14:04:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "alarmNo": "2440077701", + "alarmDate": "1770012293360", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060209", + "deviceName": "[204](10)吴中路基地周界2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113952518638616", + "createdBy": null, + "createdTime": "2026-02-02 14:04:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "alarmNo": "2440077700", + "alarmDate": "1770012292174", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060021", + "deviceName": "[203](10)吴中路基地周界1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113952518638613", + "createdBy": null, + "createdTime": "2026-02-02 14:04:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "alarmNo": "2440077699", + "alarmDate": "1770012291112", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060020", + "deviceName": "[202](10)吴中路基地周界3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113948223671648", + "createdBy": null, + "createdTime": "2026-02-02 14:04:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:04:11", + "echoMap": {}, + "alarmNo": "2440077698", + "alarmDate": "1770012245212", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113943928704036", + "createdBy": null, + "createdTime": "2026-02-02 14:03:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:23:49", + "echoMap": {}, + "alarmNo": "2440077693", + "alarmDate": "1770012193945", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113943928704015", + "createdBy": null, + "createdTime": "2026-02-02 14:03:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:17", + "echoMap": {}, + "alarmNo": "2440077692", + "alarmDate": "1770012191184", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737125", + "createdBy": null, + "createdTime": "2026-02-02 14:02:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:59", + "echoMap": {}, + "alarmNo": "2440077691", + "alarmDate": "1770012177779", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737110", + "createdBy": null, + "createdTime": "2026-02-02 14:02:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:51", + "echoMap": {}, + "alarmNo": "2440077690", + "alarmDate": "1770012176543", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060215", + "deviceName": "[199](10)吴中路基地轨道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737096", + "createdBy": null, + "createdTime": "2026-02-02 14:02:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:51", + "echoMap": {}, + "alarmNo": "2440077689", + "alarmDate": "1770012175506", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060211", + "deviceName": "[201](10)吴中路基地轨道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737064", + "createdBy": null, + "createdTime": "2026-02-02 14:02:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "alarmNo": "2440077688", + "alarmDate": "1770012173439", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060167", + "deviceName": "[005](10)吴中路基地停车2库D区1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737046", + "createdBy": null, + "createdTime": "2026-02-02 14:02:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "alarmNo": "2440077687", + "alarmDate": "1770012172224", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060084", + "deviceName": "[039](10)吴中路基地停车1库G区4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633737030", + "createdBy": null, + "createdTime": "2026-02-02 14:02:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "alarmNo": "2440077686", + "alarmDate": "1770012171172", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060074", + "deviceName": "[107](10)吴中路基地弱电电源室3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113939633736788", + "createdBy": null, + "createdTime": "2026-02-02 14:02:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:40", + "echoMap": {}, + "alarmNo": "2440077685", + "alarmDate": "1770012153448", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113935338769498", + "createdBy": null, + "createdTime": "2026-02-02 14:02:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:59", + "echoMap": {}, + "alarmNo": "2440077684", + "alarmDate": "1770012137098", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802466", + "createdBy": null, + "createdTime": "2026-02-02 14:01:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:00", + "echoMap": {}, + "alarmNo": "2440077683", + "alarmDate": "1770012118032", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802426", + "createdBy": null, + "createdTime": "2026-02-02 14:01:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:57", + "echoMap": {}, + "alarmNo": "2440077682", + "alarmDate": "1770012113253", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060222", + "deviceName": "[198](10)吴中路基地周界4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802416", + "createdBy": null, + "createdTime": "2026-02-02 14:01:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:50", + "echoMap": {}, + "alarmNo": "2440077681", + "alarmDate": "1770012111067", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060033", + "deviceName": "[200](10)吴中路基地北围墙西1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113931043802295", + "createdBy": null, + "createdTime": "2026-02-02 14:01:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:01:57", + "echoMap": {}, + "alarmNo": "2440077680", + "alarmDate": "1770012083363", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834900", + "createdBy": null, + "createdTime": "2026-02-02 13:54:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:52", + "echoMap": {}, + "alarmNo": "2440077667", + "alarmDate": "1770011698576", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060222", + "deviceName": "[198](10)吴中路基地周界4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834898", + "createdBy": null, + "createdTime": "2026-02-02 13:54:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:52", + "echoMap": {}, + "alarmNo": "2440077666", + "alarmDate": "1770011697513", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060215", + "deviceName": "[199](10)吴中路基地轨道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834896", + "createdBy": null, + "createdTime": "2026-02-02 13:54:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:51", + "echoMap": {}, + "alarmNo": "2440077665", + "alarmDate": "1770011696475", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060211", + "deviceName": "[201](10)吴中路基地轨道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834894", + "createdBy": null, + "createdTime": "2026-02-02 13:54:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:50", + "echoMap": {}, + "alarmNo": "2440077664", + "alarmDate": "1770011693255", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060033", + "deviceName": "[200](10)吴中路基地北围墙西1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834892", + "createdBy": null, + "createdTime": "2026-02-02 13:54:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:50", + "echoMap": {}, + "alarmNo": "2440077663", + "alarmDate": "1770011692172", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060021", + "deviceName": "[203](10)吴中路基地周界1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113926748834889", + "createdBy": null, + "createdTime": "2026-02-02 13:54:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:50", + "echoMap": {}, + "alarmNo": "2440077662", + "alarmDate": "1770011691140", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060020", + "deviceName": "[202](10)吴中路基地周界3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867868", + "createdBy": null, + "createdTime": "2026-02-02 13:52:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:40", + "echoMap": {}, + "alarmNo": "2440077653", + "alarmDate": "1770011531121", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867726", + "createdBy": null, + "createdTime": "2026-02-02 13:51:48", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:49", + "echoMap": {}, + "alarmNo": "2440077652", + "alarmDate": "1770011508476", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867594", + "createdBy": null, + "createdTime": "2026-02-02 13:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:29", + "echoMap": {}, + "alarmNo": "2440077651", + "alarmDate": "1770011488415", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867588", + "createdBy": null, + "createdTime": "2026-02-02 13:51:28", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:29", + "echoMap": {}, + "alarmNo": "2440077650", + "alarmDate": "1770011487978", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867581", + "createdBy": null, + "createdTime": "2026-02-02 13:51:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:20", + "echoMap": {}, + "alarmNo": "2440077649", + "alarmDate": "1770011487158", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867570", + "createdBy": null, + "createdTime": "2026-02-02 13:51:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:51:36", + "echoMap": {}, + "alarmNo": "2440077648", + "alarmDate": "1770011484764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113922453867567", + "createdBy": null, + "createdTime": "2026-02-02 13:51:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:47", + "echoMap": {}, + "alarmNo": "2440077647", + "alarmDate": "1770011484256", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900340", + "createdBy": null, + "createdTime": "2026-02-02 13:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:53", + "echoMap": {}, + "alarmNo": "2440077645", + "alarmDate": "1770011394250", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060038", + "deviceName": "[096](10)吴中路基地基地洗车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900310", + "createdBy": null, + "createdTime": "2026-02-02 13:49:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:55", + "echoMap": {}, + "alarmNo": "2440077638", + "alarmDate": "1770011343145", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060222", + "deviceName": "[198](10)吴中路基地周界4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900308", + "createdBy": null, + "createdTime": "2026-02-02 13:49:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:54", + "echoMap": {}, + "alarmNo": "2440077637", + "alarmDate": "1770011342065", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060215", + "deviceName": "[199](10)吴中路基地轨道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900306", + "createdBy": null, + "createdTime": "2026-02-02 13:49:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:54", + "echoMap": {}, + "alarmNo": "2440077636", + "alarmDate": "1770011340968", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060211", + "deviceName": "[201](10)吴中路基地轨道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900304", + "createdBy": null, + "createdTime": "2026-02-02 13:48:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:55", + "echoMap": {}, + "alarmNo": "2440077635", + "alarmDate": "1770011337803", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060169", + "deviceName": "[172](10)吴中路基地周界6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900302", + "createdBy": null, + "createdTime": "2026-02-02 13:48:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:53", + "echoMap": {}, + "alarmNo": "2440077634", + "alarmDate": "1770011336507", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060166", + "deviceName": "[171](10)吴中路基地周界7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900300", + "createdBy": null, + "createdTime": "2026-02-02 13:48:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:52:52", + "echoMap": {}, + "alarmNo": "2440077633", + "alarmDate": "1770011335317", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060033", + "deviceName": "[200](10)吴中路基地北围墙西1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113918158900277", + "createdBy": null, + "createdTime": "2026-02-02 13:48:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:50", + "echoMap": {}, + "alarmNo": "2440077632", + "alarmDate": "1770011331220", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113913863933366", + "createdBy": null, + "createdTime": "2026-02-02 13:46:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:50", + "echoMap": {}, + "alarmNo": "2440077631", + "alarmDate": "1770011211059", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060019", + "deviceName": "[174](10)吴中路基地周界9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113913863933152", + "createdBy": null, + "createdTime": "2026-02-02 13:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:17", + "echoMap": {}, + "alarmNo": "2440077622", + "alarmDate": "1770010936115", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113913863932972", + "createdBy": null, + "createdTime": "2026-02-02 13:41:49", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:01", + "echoMap": {}, + "alarmNo": "2440077621", + "alarmDate": "1770010908588", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113909568965635", + "createdBy": null, + "createdTime": "2026-02-02 13:40:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:55", + "echoMap": {}, + "alarmNo": "2440077619", + "alarmDate": "1770010857285", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060169", + "deviceName": "[172](10)吴中路基地周界6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113909568965633", + "createdBy": null, + "createdTime": "2026-02-02 13:40:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:41:55", + "echoMap": {}, + "alarmNo": "2440077618", + "alarmDate": "1770010856243", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060166", + "deviceName": "[171](10)吴中路基地周界7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998792", + "createdBy": null, + "createdTime": "2026-02-02 13:40:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:50", + "echoMap": {}, + "alarmNo": "2440077617", + "alarmDate": "1770010852131", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060019", + "deviceName": "[174](10)吴中路基地周界9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998790", + "createdBy": null, + "createdTime": "2026-02-02 13:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:50", + "echoMap": {}, + "alarmNo": "2440077616", + "alarmDate": "1770010851040", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998678", + "createdBy": null, + "createdTime": "2026-02-02 13:35:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:53", + "echoMap": {}, + "alarmNo": "2440077614", + "alarmDate": "1770010555438", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060135", + "deviceName": "[076](10)吴中路基地纬1路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998676", + "createdBy": null, + "createdTime": "2026-02-02 13:35:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:53", + "echoMap": {}, + "alarmNo": "2440077613", + "alarmDate": "1770010554345", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060102", + "deviceName": "[067](10)吴中路基地停车1库H区13", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998632", + "createdBy": null, + "createdTime": "2026-02-02 13:35:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "alarmNo": "2440077612", + "alarmDate": "1770010500491", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060175", + "deviceName": "[002](10)吴中路基地停车2库A区1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998625", + "createdBy": null, + "createdTime": "2026-02-02 13:34:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:53", + "echoMap": {}, + "alarmNo": "2440077611", + "alarmDate": "1770010497138", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998608", + "createdBy": null, + "createdTime": "2026-02-02 13:34:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "alarmNo": "2440077608", + "alarmDate": "1770010439558", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060169", + "deviceName": "[172](10)吴中路基地周界6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998606", + "createdBy": null, + "createdTime": "2026-02-02 13:33:59", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "alarmNo": "2440077607", + "alarmDate": "1770010438507", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060166", + "deviceName": "[171](10)吴中路基地周界7", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998603", + "createdBy": null, + "createdTime": "2026-02-02 13:33:57", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:57", + "echoMap": {}, + "alarmNo": "2440077606", + "alarmDate": "1770010437294", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998601", + "createdBy": null, + "createdTime": "2026-02-02 13:33:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:53", + "echoMap": {}, + "alarmNo": "2440077605", + "alarmDate": "1770010436211", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998599", + "createdBy": null, + "createdTime": "2026-02-02 13:33:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:50", + "echoMap": {}, + "alarmNo": "2440077604", + "alarmDate": "1770010432167", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060019", + "deviceName": "[174](10)吴中路基地周界9", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113905273998597", + "createdBy": null, + "createdTime": "2026-02-02 13:33:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:50", + "echoMap": {}, + "alarmNo": "2440077603", + "alarmDate": "1770010431047", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113900979031147", + "createdBy": null, + "createdTime": "2026-02-02 13:31:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:57", + "echoMap": {}, + "alarmNo": "2440077602", + "alarmDate": "1770010314116", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113900979031051", + "createdBy": null, + "createdTime": "2026-02-02 13:31:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:13", + "echoMap": {}, + "alarmNo": "2440077601", + "alarmDate": "1770010301412", + "faultLocation": "999999999", + "faultDescription": "图像失焦", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113896684064174", + "createdBy": null, + "createdTime": "2026-02-02 13:31:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:13", + "echoMap": {}, + "alarmNo": "2440077600", + "alarmDate": "1770010283794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113896684063839", + "createdBy": null, + "createdTime": "2026-02-02 13:22:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:22:09", + "echoMap": {}, + "alarmNo": "2440077599", + "alarmDate": "1770009727590", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113896684063800", + "createdBy": null, + "createdTime": "2026-02-02 13:22:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:32:01", + "echoMap": {}, + "alarmNo": "2440077598", + "alarmDate": "1770009721455", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113892389096490", + "createdBy": null, + "createdTime": "2026-02-02 13:21:36", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:37", + "echoMap": {}, + "alarmNo": "2440077597", + "alarmDate": "1770009695559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113888094129698", + "createdBy": null, + "createdTime": "2026-02-02 13:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:21:49", + "echoMap": {}, + "alarmNo": "2440077596", + "alarmDate": "1770009685255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113888094129399", + "createdBy": null, + "createdTime": "2026-02-02 13:12:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:42:16", + "echoMap": {}, + "alarmNo": "2440077585", + "alarmDate": "1770009143572", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113883799161980", + "createdBy": null, + "createdTime": "2026-02-02 13:11:38", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:02", + "echoMap": {}, + "alarmNo": "2440077584", + "alarmDate": "1770009098092", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113883799161910", + "createdBy": null, + "createdTime": "2026-02-02 13:11:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:11:45", + "echoMap": {}, + "alarmNo": "2440077583", + "alarmDate": "1770009083493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113883799161877", + "createdBy": null, + "createdTime": "2026-02-02 13:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:50", + "echoMap": {}, + "alarmNo": "2440077582", + "alarmDate": "1770009051019", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060018", + "deviceName": "[173](10)吴中路基地周界8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113879504194611", + "createdBy": null, + "createdTime": "2026-02-02 13:01:35", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:36", + "echoMap": {}, + "alarmNo": "2440077572", + "alarmDate": "1770008494951", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227311", + "createdBy": null, + "createdTime": "2026-02-02 13:01:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:44", + "echoMap": {}, + "alarmNo": "2440077571", + "alarmDate": "1770008479896", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227307", + "createdBy": null, + "createdTime": "2026-02-02 13:01:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:19", + "echoMap": {}, + "alarmNo": "2440077570", + "alarmDate": "1770008478691", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227305", + "createdBy": null, + "createdTime": "2026-02-02 13:01:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:18", + "echoMap": {}, + "alarmNo": "2440077569", + "alarmDate": "1770008478303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227302", + "createdBy": null, + "createdTime": "2026-02-02 13:01:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:59", + "echoMap": {}, + "alarmNo": "2440077568", + "alarmDate": "1770008476060", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227298", + "createdBy": null, + "createdTime": "2026-02-02 13:01:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "alarmNo": "2440077567", + "alarmDate": "1770008473998", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227295", + "createdBy": null, + "createdTime": "2026-02-02 13:01:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "alarmNo": "2440077566", + "alarmDate": "1770008472954", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060005", + "deviceName": "[145](10)吴中路基地检修库101仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227283", + "createdBy": null, + "createdTime": "2026-02-02 13:00:41", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:30", + "echoMap": {}, + "alarmNo": "2440077565", + "alarmDate": "1770008440766", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227281", + "createdBy": null, + "createdTime": "2026-02-02 13:00:39", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "alarmNo": "2440077564", + "alarmDate": "1770008438671", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060220", + "deviceName": "[197](10)吴中路基地周界16", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227279", + "createdBy": null, + "createdTime": "2026-02-02 13:00:34", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "2440077563", + "alarmDate": "1770008433561", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227277", + "createdBy": null, + "createdTime": "2026-02-02 13:00:33", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "2440077562", + "alarmDate": "1770008432523", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060202", + "deviceName": "[185](10)吴中路基地纬二路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227274", + "createdBy": null, + "createdTime": "2026-02-02 13:00:31", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "alarmNo": "2440077561", + "alarmDate": "1770008431481", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060198", + "deviceName": "[188](10)吴中路基地易燃品库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113875209227266", + "createdBy": null, + "createdTime": "2026-02-02 13:00:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077560", + "alarmDate": "1770008429369", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060192", + "deviceName": "[191](10)吴中路基地周界10", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260592", + "createdBy": null, + "createdTime": "2026-02-02 13:00:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077559", + "alarmDate": "1770008427222", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060187", + "deviceName": "[016](10)吴中路基地停车1库F区1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260589", + "createdBy": null, + "createdTime": "2026-02-02 13:00:25", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077558", + "alarmDate": "1770008425102", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060184", + "deviceName": "[192](10)吴中路基地南围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260585", + "createdBy": null, + "createdTime": "2026-02-02 13:00:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077557", + "alarmDate": "1770008421837", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260583", + "createdBy": null, + "createdTime": "2026-02-02 13:00:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:23", + "echoMap": {}, + "alarmNo": "2440077556", + "alarmDate": "1770008420795", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060173", + "deviceName": "[228](10)吴中路基地南围墙东2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260581", + "createdBy": null, + "createdTime": "2026-02-02 13:00:18", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077555", + "alarmDate": "1770008417644", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260566", + "createdBy": null, + "createdTime": "2026-02-02 13:00:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077554", + "alarmDate": "1770008415349", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260564", + "createdBy": null, + "createdTime": "2026-02-02 13:00:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077553", + "alarmDate": "1770008414321", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260562", + "createdBy": null, + "createdTime": "2026-02-02 13:00:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:21", + "echoMap": {}, + "alarmNo": "2440077552", + "alarmDate": "1770008413219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260503", + "createdBy": null, + "createdTime": "2026-02-02 12:59:24", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077534", + "alarmDate": "1770008363713", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060131", + "deviceName": "[155](10)吴中路基地试车线平交道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260501", + "createdBy": null, + "createdTime": "2026-02-02 12:59:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077533", + "alarmDate": "1770008362673", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060130", + "deviceName": "[157](10)吴中路基地仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260499", + "createdBy": null, + "createdTime": "2026-02-02 12:59:22", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077532", + "alarmDate": "1770008361637", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060129", + "deviceName": "[147](10)吴中路基地东北铁门1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260494", + "createdBy": null, + "createdTime": "2026-02-02 12:59:21", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077531", + "alarmDate": "1770008360593", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260492", + "createdBy": null, + "createdTime": "2026-02-02 12:59:20", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077530", + "alarmDate": "1770008359555", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260490", + "createdBy": null, + "createdTime": "2026-02-02 12:59:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077529", + "alarmDate": "1770008358524", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260488", + "createdBy": null, + "createdTime": "2026-02-02 12:59:17", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077528", + "alarmDate": "1770008357421", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260486", + "createdBy": null, + "createdTime": "2026-02-02 12:59:16", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077527", + "alarmDate": "1770008356377", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260483", + "createdBy": null, + "createdTime": "2026-02-02 12:59:15", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077526", + "alarmDate": "1770008355339", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260478", + "createdBy": null, + "createdTime": "2026-02-02 12:59:14", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "alarmNo": "2440077525", + "alarmDate": "1770008354272", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260472", + "createdBy": null, + "createdTime": "2026-02-02 12:59:13", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "alarmNo": "2440077524", + "alarmDate": "1770008353140", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260470", + "createdBy": null, + "createdTime": "2026-02-02 12:59:12", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "alarmNo": "2440077523", + "alarmDate": "1770008352047", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260468", + "createdBy": null, + "createdTime": "2026-02-02 12:59:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077522", + "alarmDate": "1770008349879", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260466", + "createdBy": null, + "createdTime": "2026-02-02 12:59:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077521", + "alarmDate": "1770008348794", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260464", + "createdBy": null, + "createdTime": "2026-02-02 12:59:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077520", + "alarmDate": "1770008347726", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260454", + "createdBy": null, + "createdTime": "2026-02-02 12:59:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077519", + "alarmDate": "1770008346681", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260438", + "createdBy": null, + "createdTime": "2026-02-02 12:59:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "alarmNo": "2440077518", + "alarmDate": "1770008344420", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260436", + "createdBy": null, + "createdTime": "2026-02-02 12:59:03", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "alarmNo": "2440077517", + "alarmDate": "1770008343365", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260432", + "createdBy": null, + "createdTime": "2026-02-02 12:58:58", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:06", + "echoMap": {}, + "alarmNo": "2440077516", + "alarmDate": "1770008338298", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260429", + "createdBy": null, + "createdTime": "2026-02-02 12:58:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:59", + "echoMap": {}, + "alarmNo": "2440077515", + "alarmDate": "1770008336167", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260427", + "createdBy": null, + "createdTime": "2026-02-02 12:58:55", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077514", + "alarmDate": "1770008335134", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060013", + "deviceName": "[170](10)吴中路基地东门人闸", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260425", + "createdBy": null, + "createdTime": "2026-02-02 12:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077513", + "alarmDate": "1770008334033", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060009", + "deviceName": "[143](10)吴中路基地检修库101仓库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260396", + "createdBy": null, + "createdTime": "2026-02-02 12:57:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077512", + "alarmDate": "1770008273158", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260394", + "createdBy": null, + "createdTime": "2026-02-02 12:57:52", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "alarmNo": "2440077511", + "alarmDate": "1770008272114", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060005", + "deviceName": "[145](10)吴中路基地检修库101仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260392", + "createdBy": null, + "createdTime": "2026-02-02 12:57:51", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "alarmNo": "2440077510", + "alarmDate": "1770008271033", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060003", + "deviceName": "[144](10)吴中路基地检修库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260246", + "createdBy": null, + "createdTime": "2026-02-02 12:51:42", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:43", + "echoMap": {}, + "alarmNo": "2440077509", + "alarmDate": "1770007901643", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260175", + "createdBy": null, + "createdTime": "2026-02-02 12:51:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:39", + "echoMap": {}, + "alarmNo": "2440077508", + "alarmDate": "1770007892755", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260090", + "createdBy": null, + "createdTime": "2026-02-02 12:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:38", + "echoMap": {}, + "alarmNo": "2440077507", + "alarmDate": "1770007879657", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914260043", + "createdBy": null, + "createdTime": "2026-02-02 12:51:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:19", + "echoMap": {}, + "alarmNo": "2440077506", + "alarmDate": "1770007873155", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113870914259982", + "createdBy": null, + "createdTime": "2026-02-02 12:51:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:14", + "echoMap": {}, + "alarmNo": "2440077505", + "alarmDate": "1770007867748", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113866619292696", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "alarmNo": "2440077504", + "alarmDate": "1770007846487", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113866619292694", + "createdBy": null, + "createdTime": "2026-02-02 12:50:46", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:06", + "echoMap": {}, + "alarmNo": "2440077503", + "alarmDate": "1770007846028", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325669", + "createdBy": null, + "createdTime": "2026-02-02 12:42:30", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:19", + "echoMap": {}, + "alarmNo": "2440077502", + "alarmDate": "1770007349765", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325667", + "createdBy": null, + "createdTime": "2026-02-02 12:42:28", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "alarmNo": "2440077501", + "alarmDate": "1770007347720", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060144", + "deviceName": "[158](10)吴中路基地仓库外球", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325664", + "createdBy": null, + "createdTime": "2026-02-02 12:42:26", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "alarmNo": "2440077500", + "alarmDate": "1770007345619", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060126", + "deviceName": "[148](10)吴中路基地东北铁门2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325662", + "createdBy": null, + "createdTime": "2026-02-02 12:42:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077499", + "alarmDate": "1770007344585", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060125", + "deviceName": "[078](10)吴中路基地纬1路马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325659", + "createdBy": null, + "createdTime": "2026-02-02 12:42:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077498", + "alarmDate": "1770007343419", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325657", + "createdBy": null, + "createdTime": "2026-02-02 12:42:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077497", + "alarmDate": "1770007342376", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060123", + "deviceName": "[081](10)吴中路基地纬1路5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325655", + "createdBy": null, + "createdTime": "2026-02-02 12:42:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077496", + "alarmDate": "1770007341350", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325653", + "createdBy": null, + "createdTime": "2026-02-02 12:42:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077495", + "alarmDate": "1770007340293", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060121", + "deviceName": "[080](10)吴中路基地纬1路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325651", + "createdBy": null, + "createdTime": "2026-02-02 12:42:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077494", + "alarmDate": "1770007339257", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325649", + "createdBy": null, + "createdTime": "2026-02-02 12:42:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077493", + "alarmDate": "1770007338218", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325647", + "createdBy": null, + "createdTime": "2026-02-02 12:42:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077492", + "alarmDate": "1770007337173", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325645", + "createdBy": null, + "createdTime": "2026-02-02 12:42:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "alarmNo": "2440077491", + "alarmDate": "1770007336108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325643", + "createdBy": null, + "createdTime": "2026-02-02 12:42:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:16", + "echoMap": {}, + "alarmNo": "2440077490", + "alarmDate": "1770007335065", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325641", + "createdBy": null, + "createdTime": "2026-02-02 12:42:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:16", + "echoMap": {}, + "alarmNo": "2440077489", + "alarmDate": "1770007333965", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325639", + "createdBy": null, + "createdTime": "2026-02-02 12:42:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:16", + "echoMap": {}, + "alarmNo": "2440077488", + "alarmDate": "1770007332889", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325637", + "createdBy": null, + "createdTime": "2026-02-02 12:42:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077487", + "alarmDate": "1770007327762", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325635", + "createdBy": null, + "createdTime": "2026-02-02 12:42:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077486", + "alarmDate": "1770007326670", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325633", + "createdBy": null, + "createdTime": "2026-02-02 12:42:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077485", + "alarmDate": "1770007325621", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325631", + "createdBy": null, + "createdTime": "2026-02-02 12:42:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077484", + "alarmDate": "1770007324576", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325628", + "createdBy": null, + "createdTime": "2026-02-02 12:42:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:11", + "echoMap": {}, + "alarmNo": "2440077483", + "alarmDate": "1770007322412", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325626", + "createdBy": null, + "createdTime": "2026-02-02 12:42:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:11", + "echoMap": {}, + "alarmNo": "2440077482", + "alarmDate": "1770007321374", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325624", + "createdBy": null, + "createdTime": "2026-02-02 12:41:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077481", + "alarmDate": "1770007316328", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325621", + "createdBy": null, + "createdTime": "2026-02-02 12:41:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077480", + "alarmDate": "1770007314224", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325619", + "createdBy": null, + "createdTime": "2026-02-02 12:41:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077479", + "alarmDate": "1770007313183", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325617", + "createdBy": null, + "createdTime": "2026-02-02 12:41:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077478", + "alarmDate": "1770007312137", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060005", + "deviceName": "[145](10)吴中路基地检修库101仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325615", + "createdBy": null, + "createdTime": "2026-02-02 12:41:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077477", + "alarmDate": "1770007311108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060003", + "deviceName": "[144](10)吴中路基地检修库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113862324325454", + "createdBy": null, + "createdTime": "2026-02-02 12:41:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:51:21", + "echoMap": {}, + "alarmNo": "2440077476", + "alarmDate": "1770007275512", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113858029358190", + "createdBy": null, + "createdTime": "2026-02-02 12:41:01", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:02", + "echoMap": {}, + "alarmNo": "2440077475", + "alarmDate": "1770007261264", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113858029358117", + "createdBy": null, + "createdTime": "2026-02-02 12:40:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:41:04", + "echoMap": {}, + "alarmNo": "2440077474", + "alarmDate": "1770007251421", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391328", + "createdBy": null, + "createdTime": "2026-02-02 12:40:41", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:07", + "echoMap": {}, + "alarmNo": "2440077473", + "alarmDate": "1770007240809", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391326", + "createdBy": null, + "createdTime": "2026-02-02 12:40:40", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:12", + "echoMap": {}, + "alarmNo": "2440077472", + "alarmDate": "1770007240347", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391313", + "createdBy": null, + "createdTime": "2026-02-02 12:40:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:59", + "echoMap": {}, + "alarmNo": "2440077471", + "alarmDate": "1770007221510", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391298", + "createdBy": null, + "createdTime": "2026-02-02 12:40:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:59", + "echoMap": {}, + "alarmNo": "2440077470", + "alarmDate": "1770007218998", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391296", + "createdBy": null, + "createdTime": "2026-02-02 12:40:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:58", + "echoMap": {}, + "alarmNo": "2440077469", + "alarmDate": "1770007217927", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391294", + "createdBy": null, + "createdTime": "2026-02-02 12:40:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:57:58", + "echoMap": {}, + "alarmNo": "2440077468", + "alarmDate": "1770007216891", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391283", + "createdBy": null, + "createdTime": "2026-02-02 12:40:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:13", + "echoMap": {}, + "alarmNo": "2440077467", + "alarmDate": "1770007212138", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391227", + "createdBy": null, + "createdTime": "2026-02-02 12:39:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:29", + "echoMap": {}, + "alarmNo": "2440077446", + "alarmDate": "1770007174120", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391225", + "createdBy": null, + "createdTime": "2026-02-02 12:39:32", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:28", + "echoMap": {}, + "alarmNo": "2440077445", + "alarmDate": "1770007172083", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060220", + "deviceName": "[197](10)吴中路基地周界16", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391218", + "createdBy": null, + "createdTime": "2026-02-02 12:39:25", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077444", + "alarmDate": "1770007164895", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060147", + "deviceName": "[168](10)吴中路基地东门人闸2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391213", + "createdBy": null, + "createdTime": "2026-02-02 12:39:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077443", + "alarmDate": "1770007163797", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060128", + "deviceName": "[150](10)吴中路基地纬二路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391208", + "createdBy": null, + "createdTime": "2026-02-02 12:39:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077442", + "alarmDate": "1770007162743", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060126", + "deviceName": "[148](10)吴中路基地东北铁门2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391206", + "createdBy": null, + "createdTime": "2026-02-02 12:39:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077441", + "alarmDate": "1770007161705", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391204", + "createdBy": null, + "createdTime": "2026-02-02 12:39:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077440", + "alarmDate": "1770007160608", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391196", + "createdBy": null, + "createdTime": "2026-02-02 12:39:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077439", + "alarmDate": "1770007159566", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060121", + "deviceName": "[080](10)吴中路基地纬1路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391189", + "createdBy": null, + "createdTime": "2026-02-02 12:39:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077438", + "alarmDate": "1770007158361", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391187", + "createdBy": null, + "createdTime": "2026-02-02 12:39:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "alarmNo": "2440077437", + "alarmDate": "1770007157318", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391185", + "createdBy": null, + "createdTime": "2026-02-02 12:39:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077436", + "alarmDate": "1770007156219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391183", + "createdBy": null, + "createdTime": "2026-02-02 12:39:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077435", + "alarmDate": "1770007155154", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391181", + "createdBy": null, + "createdTime": "2026-02-02 12:39:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077434", + "alarmDate": "1770007154093", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391179", + "createdBy": null, + "createdTime": "2026-02-02 12:39:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077433", + "alarmDate": "1770007152995", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391177", + "createdBy": null, + "createdTime": "2026-02-02 12:39:12", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:19", + "echoMap": {}, + "alarmNo": "2440077432", + "alarmDate": "1770007151820", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391171", + "createdBy": null, + "createdTime": "2026-02-02 12:39:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077431", + "alarmDate": "1770007149675", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391169", + "createdBy": null, + "createdTime": "2026-02-02 12:39:09", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077430", + "alarmDate": "1770007148632", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391167", + "createdBy": null, + "createdTime": "2026-02-02 12:39:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077429", + "alarmDate": "1770007147596", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391165", + "createdBy": null, + "createdTime": "2026-02-02 12:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:15", + "echoMap": {}, + "alarmNo": "2440077428", + "alarmDate": "1770007146527", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391161", + "createdBy": null, + "createdTime": "2026-02-02 12:39:05", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:14", + "echoMap": {}, + "alarmNo": "2440077426", + "alarmDate": "1770007145493", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060028", + "deviceName": "[146](10)吴中路基地检修库北绿化1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391159", + "createdBy": null, + "createdTime": "2026-02-02 12:39:04", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:14", + "echoMap": {}, + "alarmNo": "2440077425", + "alarmDate": "1770007144419", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391157", + "createdBy": null, + "createdTime": "2026-02-02 12:39:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:14", + "echoMap": {}, + "alarmNo": "2440077424", + "alarmDate": "1770007143389", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391155", + "createdBy": null, + "createdTime": "2026-02-02 12:38:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077423", + "alarmDate": "1770007138355", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060017", + "deviceName": "[207](10)吴中路基地联合车库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391153", + "createdBy": null, + "createdTime": "2026-02-02 12:38:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077422", + "alarmDate": "1770007137282", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060016", + "deviceName": "[206](10)吴中路基地联合车库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391151", + "createdBy": null, + "createdTime": "2026-02-02 12:38:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077421", + "alarmDate": "1770007136219", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391149", + "createdBy": null, + "createdTime": "2026-02-02 12:38:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077420", + "alarmDate": "1770007135186", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060013", + "deviceName": "[170](10)吴中路基地东门人闸", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391147", + "createdBy": null, + "createdTime": "2026-02-02 12:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077419", + "alarmDate": "1770007134157", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060009", + "deviceName": "[143](10)吴中路基地检修库101仓库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391145", + "createdBy": null, + "createdTime": "2026-02-02 12:38:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:10", + "echoMap": {}, + "alarmNo": "2440077418", + "alarmDate": "1770007133117", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734391142", + "createdBy": null, + "createdTime": "2026-02-02 12:38:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:09", + "echoMap": {}, + "alarmNo": "2440077417", + "alarmDate": "1770007131017", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060003", + "deviceName": "[144](10)吴中路基地检修库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390816", + "createdBy": null, + "createdTime": "2026-02-02 12:29:38", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:13", + "echoMap": {}, + "alarmNo": "2440077402", + "alarmDate": "1770006577770", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060132", + "deviceName": "[156](10)吴中路基地试车线平交道2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390813", + "createdBy": null, + "createdTime": "2026-02-02 12:29:37", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:13", + "echoMap": {}, + "alarmNo": "2440077401", + "alarmDate": "1770006576728", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060131", + "deviceName": "[155](10)吴中路基地试车线平交道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390811", + "createdBy": null, + "createdTime": "2026-02-02 12:29:36", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077400", + "alarmDate": "1770006575670", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060130", + "deviceName": "[157](10)吴中路基地仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390809", + "createdBy": null, + "createdTime": "2026-02-02 12:29:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077399", + "alarmDate": "1770006573577", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060127", + "deviceName": "[079](10)吴中路基地停车2库平交道南", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390807", + "createdBy": null, + "createdTime": "2026-02-02 12:29:33", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077398", + "alarmDate": "1770006572539", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060126", + "deviceName": "[148](10)吴中路基地东北铁门2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390805", + "createdBy": null, + "createdTime": "2026-02-02 12:29:31", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077397", + "alarmDate": "1770006571431", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060125", + "deviceName": "[078](10)吴中路基地纬1路马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113853734390803", + "createdBy": null, + "createdTime": "2026-02-02 12:29:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077396", + "alarmDate": "1770006569349", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060123", + "deviceName": "[081](10)吴中路基地纬1路5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456671", + "createdBy": null, + "createdTime": "2026-02-02 12:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:04", + "echoMap": {}, + "alarmNo": "2440077386", + "alarmDate": "1770006526025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456650", + "createdBy": null, + "createdTime": "2026-02-02 12:28:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:44", + "echoMap": {}, + "alarmNo": "2440077382", + "alarmDate": "1770006522754", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456585", + "createdBy": null, + "createdTime": "2026-02-02 12:28:29", + "updatedBy": null, + "updatedTime": "2026-02-02 13:12:06", + "echoMap": {}, + "alarmNo": "2440077378", + "alarmDate": "1770006509461", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456582", + "createdBy": null, + "createdTime": "2026-02-02 12:28:29", + "updatedBy": null, + "updatedTime": "2026-02-02 12:28:29", + "echoMap": {}, + "alarmNo": "2440077377", + "alarmDate": "1770006509280", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060139", + "deviceName": "[165](10)吴中路基地镟轮库3", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456578", + "createdBy": null, + "createdTime": "2026-02-02 12:28:24", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:38", + "echoMap": {}, + "alarmNo": "2440077375", + "alarmDate": "1770006504481", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060150", + "deviceName": "[182](10)吴中路基地经一路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456576", + "createdBy": null, + "createdTime": "2026-02-02 12:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077374", + "alarmDate": "1770006503432", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060128", + "deviceName": "[150](10)吴中路基地纬二路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456574", + "createdBy": null, + "createdTime": "2026-02-02 12:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077373", + "alarmDate": "1770006502352", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060124", + "deviceName": "[152](10)吴中路基地物资仓库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456572", + "createdBy": null, + "createdTime": "2026-02-02 12:28:21", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077372", + "alarmDate": "1770006501305", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060122", + "deviceName": "[151](10)吴中路基地十号楼出入口", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456570", + "createdBy": null, + "createdTime": "2026-02-02 12:28:20", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077371", + "alarmDate": "1770006500230", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060121", + "deviceName": "[080](10)吴中路基地纬1路4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456568", + "createdBy": null, + "createdTime": "2026-02-02 12:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "alarmNo": "2440077370", + "alarmDate": "1770006499192", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060120", + "deviceName": "[154](10)吴中路基地纬二路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456566", + "createdBy": null, + "createdTime": "2026-02-02 12:28:18", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077369", + "alarmDate": "1770006498147", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060118", + "deviceName": "[153](10)吴中路基地物资仓库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456564", + "createdBy": null, + "createdTime": "2026-02-02 12:28:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077368", + "alarmDate": "1770006497108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060110", + "deviceName": "[140](10)吴中路基地出入场线", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456561", + "createdBy": null, + "createdTime": "2026-02-02 12:28:16", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077367", + "alarmDate": "1770006496062", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060108", + "deviceName": "[142](10)吴中路基地检修库北马路2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456559", + "createdBy": null, + "createdTime": "2026-02-02 12:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077366", + "alarmDate": "1770006495011", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060107", + "deviceName": "[141](10)吴中路基地检修库北马路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456557", + "createdBy": null, + "createdTime": "2026-02-02 12:28:14", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077365", + "alarmDate": "1770006493898", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060077", + "deviceName": "[123](10)吴中路基地牵引变B1出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456555", + "createdBy": null, + "createdTime": "2026-02-02 12:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:11", + "echoMap": {}, + "alarmNo": "2440077364", + "alarmDate": "1770006492862", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060076", + "deviceName": "[122](10)吴中路基地牵引变B1出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456553", + "createdBy": null, + "createdTime": "2026-02-02 12:28:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077363", + "alarmDate": "1770006487786", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456547", + "createdBy": null, + "createdTime": "2026-02-02 12:28:03", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077362", + "alarmDate": "1770006482547", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456545", + "createdBy": null, + "createdTime": "2026-02-02 12:28:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:09", + "echoMap": {}, + "alarmNo": "2440077361", + "alarmDate": "1770006481509", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060023", + "deviceName": "[184](10)吴中路基地洗车库北道路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456541", + "createdBy": null, + "createdTime": "2026-02-02 12:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:05", + "echoMap": {}, + "alarmNo": "2440077360", + "alarmDate": "1770006474400", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060014", + "deviceName": "[208](10)吴中路基地联合车库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456537", + "createdBy": null, + "createdTime": "2026-02-02 12:27:52", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:05", + "echoMap": {}, + "alarmNo": "2440077359", + "alarmDate": "1770006472261", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060009", + "deviceName": "[143](10)吴中路基地检修库101仓库1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456519", + "createdBy": null, + "createdTime": "2026-02-02 12:27:51", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:05", + "echoMap": {}, + "alarmNo": "2440077358", + "alarmDate": "1770006471121", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060007", + "deviceName": "[149](10)吴中路基地检修库东北出入口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456447", + "createdBy": null, + "createdTime": "2026-02-02 12:25:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:38", + "echoMap": {}, + "alarmNo": "2440077340", + "alarmDate": "1770006359370", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060161", + "deviceName": "[175](10)吴中路基地列检库2外出入口6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456443", + "createdBy": null, + "createdTime": "2026-02-02 12:25:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:19", + "echoMap": {}, + "alarmNo": "2440077339", + "alarmDate": "1770006358271", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060036", + "deviceName": "[176](10)吴中路基地北围墙西2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456440", + "createdBy": null, + "createdTime": "2026-02-02 12:25:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:19", + "echoMap": {}, + "alarmNo": "2440077338", + "alarmDate": "1770006357195", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060035", + "deviceName": "[178](10)吴中路基地北围墙西4", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113845144456438", + "createdBy": null, + "createdTime": "2026-02-02 12:25:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:19", + "echoMap": {}, + "alarmNo": "2440077337", + "alarmDate": "1770006356100", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060034", + "deviceName": "[177](10)吴中路基地北围墙西3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113840849489007", + "createdBy": null, + "createdTime": "2026-02-02 12:18:43", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:55", + "echoMap": {}, + "alarmNo": "2440077328", + "alarmDate": "1770005923304", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113836554522075", + "createdBy": null, + "createdTime": "2026-02-02 12:18:10", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:11", + "echoMap": {}, + "alarmNo": "2440077327", + "alarmDate": "1770005890280", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113836554522012", + "createdBy": null, + "createdTime": "2026-02-02 12:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:59", + "echoMap": {}, + "alarmNo": "2440077326", + "alarmDate": "1770005878776", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060179", + "deviceName": "[217](10)吴中路基地博物馆走廊", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113836554521999", + "createdBy": null, + "createdTime": "2026-02-02 12:17:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:17:58", + "echoMap": {}, + "alarmNo": "2440077325", + "alarmDate": "1770005875829", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587533", + "createdBy": null, + "createdTime": "2026-02-02 12:08:02", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:03", + "echoMap": {}, + "alarmNo": "2440077324", + "alarmDate": "1770005282060", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587504", + "createdBy": null, + "createdTime": "2026-02-02 12:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:10", + "echoMap": {}, + "alarmNo": "2440077323", + "alarmDate": "1770005277513", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587492", + "createdBy": null, + "createdTime": "2026-02-02 12:07:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077322", + "alarmDate": "1770005274101", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060030", + "deviceName": "[227](10)吴中路基地南围墙东1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587247", + "createdBy": null, + "createdTime": "2026-02-02 11:58:50", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:51", + "echoMap": {}, + "alarmNo": "2440077321", + "alarmDate": "1770004729861", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113827964587168", + "createdBy": null, + "createdTime": "2026-02-02 11:58:39", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:50", + "echoMap": {}, + "alarmNo": "2440077320", + "alarmDate": "1770004719465", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652806", + "createdBy": null, + "createdTime": "2026-02-02 11:48:53", + "updatedBy": null, + "updatedTime": "2026-02-02 12:08:47", + "echoMap": {}, + "alarmNo": "2440077319", + "alarmDate": "1770004133407", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652670", + "createdBy": null, + "createdTime": "2026-02-02 11:48:29", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:30", + "echoMap": {}, + "alarmNo": "2440077318", + "alarmDate": "1770004109423", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652450", + "createdBy": null, + "createdTime": "2026-02-02 11:47:58", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:31", + "echoMap": {}, + "alarmNo": "2440077317", + "alarmDate": "1770004077696", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113819374652438", + "createdBy": null, + "createdTime": "2026-02-02 11:47:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:41", + "echoMap": {}, + "alarmNo": "2440077316", + "alarmDate": "1770004075254", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113810784718086", + "createdBy": null, + "createdTime": "2026-02-02 11:38:09", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:10", + "echoMap": {}, + "alarmNo": "2440077315", + "alarmDate": "1770003489344", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113806489750550", + "createdBy": null, + "createdTime": "2026-02-02 11:28:50", + "updatedBy": null, + "updatedTime": "2026-02-02 12:18:54", + "echoMap": {}, + "alarmNo": "2440077314", + "alarmDate": "1770002930332", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060139", + "deviceName": "[165](10)吴中路基地镟轮库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783802", + "createdBy": null, + "createdTime": "2026-02-02 11:28:36", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:18", + "echoMap": {}, + "alarmNo": "2440077313", + "alarmDate": "1770002915973", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783708", + "createdBy": null, + "createdTime": "2026-02-02 11:28:18", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:24", + "echoMap": {}, + "alarmNo": "2440077312", + "alarmDate": "1770002897955", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783594", + "createdBy": null, + "createdTime": "2026-02-02 11:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:04", + "echoMap": {}, + "alarmNo": "2440077311", + "alarmDate": "1770002877846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783587", + "createdBy": null, + "createdTime": "2026-02-02 11:27:57", + "updatedBy": null, + "updatedTime": "2026-02-02 11:27:58", + "echoMap": {}, + "alarmNo": "2440077310", + "alarmDate": "1770002876713", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113802194783295", + "createdBy": null, + "createdTime": "2026-02-02 11:18:49", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:50", + "echoMap": {}, + "alarmNo": "2440077309", + "alarmDate": "1770002328559", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113793604849099", + "createdBy": null, + "createdTime": "2026-02-02 11:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:18:23", + "echoMap": {}, + "alarmNo": "2440077308", + "alarmDate": "1770002278704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113789309881386", + "createdBy": null, + "createdTime": "2026-02-02 11:08:16", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:17", + "echoMap": {}, + "alarmNo": "2440077307", + "alarmDate": "1770001696493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113785014914567", + "createdBy": null, + "createdTime": "2026-02-02 11:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 11:08:12", + "echoMap": {}, + "alarmNo": "2440077306", + "alarmDate": "1770001679486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113785014914152", + "createdBy": null, + "createdTime": "2026-02-02 10:58:38", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:49", + "echoMap": {}, + "alarmNo": "2440077305", + "alarmDate": "1770001117731", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060226", + "deviceName": "[196](10)吴中路基地南围墙6", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113780719946799", + "createdBy": null, + "createdTime": "2026-02-02 10:58:16", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:17", + "echoMap": {}, + "alarmNo": "2440077304", + "alarmDate": "1770001095961", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113776424979523", + "createdBy": null, + "createdTime": "2026-02-02 10:48:38", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:06", + "echoMap": {}, + "alarmNo": "2440077303", + "alarmDate": "1770000518273", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113767835045283", + "createdBy": null, + "createdTime": "2026-02-02 10:47:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:58:31", + "echoMap": {}, + "alarmNo": "2440077302", + "alarmDate": "1770000478473", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113767835045276", + "createdBy": null, + "createdTime": "2026-02-02 10:47:57", + "updatedBy": null, + "updatedTime": "2026-02-02 10:47:57", + "echoMap": {}, + "alarmNo": "2440077301", + "alarmDate": "1770000477488", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113763540077635", + "createdBy": null, + "createdTime": "2026-02-02 10:38:23", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:24", + "echoMap": {}, + "alarmNo": "2440077300", + "alarmDate": "1769999902730", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113759245110599", + "createdBy": null, + "createdTime": "2026-02-02 10:31:56", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:55", + "echoMap": {}, + "alarmNo": "2440077296", + "alarmDate": "1769999516136", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060056", + "deviceName": "[097](10)吴中路基地洗车库北道路3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113759245110353", + "createdBy": null, + "createdTime": "2026-02-02 10:28:35", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:36", + "echoMap": {}, + "alarmNo": "2440077295", + "alarmDate": "1769999315076", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113750655175899", + "createdBy": null, + "createdTime": "2026-02-02 10:18:55", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:55", + "echoMap": {}, + "alarmNo": "2440077294", + "alarmDate": "1769998734704", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113742065241232", + "createdBy": null, + "createdTime": "2026-02-02 10:08:50", + "updatedBy": null, + "updatedTime": "2026-02-02 10:18:32", + "echoMap": {}, + "alarmNo": "2440077293", + "alarmDate": "1769998129519", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113737770273949", + "createdBy": null, + "createdTime": "2026-02-02 10:08:30", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:31", + "echoMap": {}, + "alarmNo": "2440077292", + "alarmDate": "1769998109884", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113733475307095", + "createdBy": null, + "createdTime": "2026-02-02 10:08:01", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:02", + "echoMap": {}, + "alarmNo": "2440077291", + "alarmDate": "1769998081319", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113733475307063", + "createdBy": null, + "createdTime": "2026-02-02 10:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 10:38:27", + "echoMap": {}, + "alarmNo": "2440077290", + "alarmDate": "1769998077569", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113733475306767", + "createdBy": null, + "createdTime": "2026-02-02 09:58:52", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:53", + "echoMap": {}, + "alarmNo": "2440077289", + "alarmDate": "1769997532207", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372539", + "createdBy": null, + "createdTime": "2026-02-02 09:57:59", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:03", + "echoMap": {}, + "alarmNo": "2440077288", + "alarmDate": "1769997479165", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372528", + "createdBy": null, + "createdTime": "2026-02-02 09:57:58", + "updatedBy": null, + "updatedTime": "2026-02-02 09:57:58", + "echoMap": {}, + "alarmNo": "2440077287", + "alarmDate": "1769997477653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372461", + "createdBy": null, + "createdTime": "2026-02-02 09:57:03", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:02", + "echoMap": {}, + "alarmNo": "2440077286", + "alarmDate": "1769997423147", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060224", + "deviceName": "[029](10)吴中路基地停车1库E区8", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372220", + "createdBy": null, + "createdTime": "2026-02-02 09:48:51", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:57", + "echoMap": {}, + "alarmNo": "2440077285", + "alarmDate": "1769996931023", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113724885372095", + "createdBy": null, + "createdTime": "2026-02-02 09:48:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:40", + "echoMap": {}, + "alarmNo": "2440077284", + "alarmDate": "1769996914454", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113720590404666", + "createdBy": null, + "createdTime": "2026-02-02 09:47:54", + "updatedBy": null, + "updatedTime": "2026-02-02 09:48:04", + "echoMap": {}, + "alarmNo": "2440077283", + "alarmDate": "1769996874041", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437650", + "createdBy": null, + "createdTime": "2026-02-02 09:38:46", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:52", + "echoMap": {}, + "alarmNo": "2440077282", + "alarmDate": "1769996325799", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437602", + "createdBy": null, + "createdTime": "2026-02-02 09:38:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:52", + "echoMap": {}, + "alarmNo": "2440077281", + "alarmDate": "1769996321164", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437574", + "createdBy": null, + "createdTime": "2026-02-02 09:38:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:39", + "echoMap": {}, + "alarmNo": "2440077280", + "alarmDate": "1769996318018", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437489", + "createdBy": null, + "createdTime": "2026-02-02 09:38:28", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:40", + "echoMap": {}, + "alarmNo": "2440077279", + "alarmDate": "1769996308261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437418", + "createdBy": null, + "createdTime": "2026-02-02 09:38:18", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:20", + "echoMap": {}, + "alarmNo": "2440077278", + "alarmDate": "1769996298493", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437346", + "createdBy": null, + "createdTime": "2026-02-02 09:38:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:18", + "echoMap": {}, + "alarmNo": "2440077277", + "alarmDate": "1769996291025", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437338", + "createdBy": null, + "createdTime": "2026-02-02 09:38:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:16", + "echoMap": {}, + "alarmNo": "2440077276", + "alarmDate": "1769996290255", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113716295437332", + "createdBy": null, + "createdTime": "2026-02-02 09:38:10", + "updatedBy": null, + "updatedTime": "2026-02-02 09:38:16", + "echoMap": {}, + "alarmNo": "2440077275", + "alarmDate": "1769996289847", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705503094", + "createdBy": null, + "createdTime": "2026-02-02 09:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 09:37:59", + "echoMap": {}, + "alarmNo": "2440077274", + "alarmDate": "1769995721923", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705503024", + "createdBy": null, + "createdTime": "2026-02-02 09:28:35", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:41", + "echoMap": {}, + "alarmNo": "2440077273", + "alarmDate": "1769995715073", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060143", + "deviceName": "[161](10)吴中路基地镟轮库东", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705503010", + "createdBy": null, + "createdTime": "2026-02-02 09:28:34", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:40", + "echoMap": {}, + "alarmNo": "2440077272", + "alarmDate": "1769995713681", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113707705502908", + "createdBy": null, + "createdTime": "2026-02-02 09:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 10:08:08", + "echoMap": {}, + "alarmNo": "2440077271", + "alarmDate": "1769995701796", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113703410535555", + "createdBy": null, + "createdTime": "2026-02-02 09:27:56", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:24", + "echoMap": {}, + "alarmNo": "2440077270", + "alarmDate": "1769995675826", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113699115568202", + "createdBy": null, + "createdTime": "2026-02-02 09:17:57", + "updatedBy": null, + "updatedTime": "2026-02-02 09:17:58", + "echoMap": {}, + "alarmNo": "2440077269", + "alarmDate": "1769995077445", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113690525633941", + "createdBy": null, + "createdTime": "2026-02-02 09:08:45", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:46", + "echoMap": {}, + "alarmNo": "2440077268", + "alarmDate": "1769994525157", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113690525633875", + "createdBy": null, + "createdTime": "2026-02-02 09:08:38", + "updatedBy": null, + "updatedTime": "2026-02-02 09:08:39", + "echoMap": {}, + "alarmNo": "2440077267", + "alarmDate": "1769994517551", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699323", + "createdBy": null, + "createdTime": "2026-02-02 08:58:53", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:22", + "echoMap": {}, + "alarmNo": "2440077260", + "alarmDate": "1769993933236", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699226", + "createdBy": null, + "createdTime": "2026-02-02 08:58:41", + "updatedBy": null, + "updatedTime": "2026-02-02 09:28:10", + "echoMap": {}, + "alarmNo": "2440077259", + "alarmDate": "1769993921180", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699176", + "createdBy": null, + "createdTime": "2026-02-02 08:58:35", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:41", + "echoMap": {}, + "alarmNo": "2440077258", + "alarmDate": "1769993915160", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935699007", + "createdBy": null, + "createdTime": "2026-02-02 08:58:16", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:28", + "echoMap": {}, + "alarmNo": "2440077257", + "alarmDate": "1769993895791", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113681935698968", + "createdBy": null, + "createdTime": "2026-02-02 08:58:11", + "updatedBy": null, + "updatedTime": "2026-02-02 08:58:29", + "echoMap": {}, + "alarmNo": "2440077256", + "alarmDate": "1769993891167", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060174", + "deviceName": "[169](10)吴中路基地东门人闸3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113677640731700", + "createdBy": null, + "createdTime": "2026-02-02 08:57:55", + "updatedBy": null, + "updatedTime": "2026-02-02 09:18:54", + "echoMap": {}, + "alarmNo": "2440077255", + "alarmDate": "1769993875302", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113673345764637", + "createdBy": null, + "createdTime": "2026-02-02 08:48:37", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:49", + "echoMap": {}, + "alarmNo": "2440077254", + "alarmDate": "1769993317199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113673345764413", + "createdBy": null, + "createdTime": "2026-02-02 08:48:09", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:40", + "echoMap": {}, + "alarmNo": "2440077253", + "alarmDate": "1769993289470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113664755830250", + "createdBy": null, + "createdTime": "2026-02-02 08:38:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:04", + "echoMap": {}, + "alarmNo": "2440077252", + "alarmDate": "1769992733751", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113664755830241", + "createdBy": null, + "createdTime": "2026-02-02 08:38:52", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:06", + "echoMap": {}, + "alarmNo": "2440077251", + "alarmDate": "1769992732470", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113664755829797", + "createdBy": null, + "createdTime": "2026-02-02 08:38:02", + "updatedBy": null, + "updatedTime": "2026-02-02 08:48:19", + "echoMap": {}, + "alarmNo": "2440077250", + "alarmDate": "1769992681925", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113656165895305", + "createdBy": null, + "createdTime": "2026-02-02 08:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077249", + "alarmDate": "1769992074213", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113647575961019", + "createdBy": null, + "createdTime": "2026-02-02 08:18:21", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:22", + "echoMap": {}, + "alarmNo": "2440077248", + "alarmDate": "1769991501061", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113647575960956", + "createdBy": null, + "createdTime": "2026-02-02 08:18:12", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:13", + "echoMap": {}, + "alarmNo": "2440077247", + "alarmDate": "1769991491816", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113638986026224", + "createdBy": null, + "createdTime": "2026-02-02 08:08:18", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:36", + "echoMap": {}, + "alarmNo": "2440077238", + "alarmDate": "1769990898001", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113638986026072", + "createdBy": null, + "createdTime": "2026-02-02 08:08:00", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:06", + "echoMap": {}, + "alarmNo": "2440077237", + "alarmDate": "1769990880026", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113638986026042", + "createdBy": null, + "createdTime": "2026-02-02 08:07:55", + "updatedBy": null, + "updatedTime": "2026-02-02 08:18:15", + "echoMap": {}, + "alarmNo": "2440077236", + "alarmDate": "1769990875457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113630396091689", + "createdBy": null, + "createdTime": "2026-02-02 07:58:46", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:52", + "echoMap": {}, + "alarmNo": "2440077224", + "alarmDate": "1769990326398", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113621806156896", + "createdBy": null, + "createdTime": "2026-02-02 07:48:39", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:40", + "echoMap": {}, + "alarmNo": "2440077215", + "alarmDate": "1769989719321", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113617511189523", + "createdBy": null, + "createdTime": "2026-02-02 07:48:19", + "updatedBy": null, + "updatedTime": "2026-02-02 07:48:20", + "echoMap": {}, + "alarmNo": "2440077214", + "alarmDate": "1769989698981", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113596036353206", + "createdBy": null, + "createdTime": "2026-02-02 07:28:15", + "updatedBy": null, + "updatedTime": "2026-02-02 11:38:09", + "echoMap": {}, + "alarmNo": "2440077213", + "alarmDate": "1769988495244", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060138", + "deviceName": "[164](10)吴中路基地镟轮库2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113596036353135", + "createdBy": null, + "createdTime": "2026-02-02 07:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:28:08", + "echoMap": {}, + "alarmNo": "2440077212", + "alarmDate": "1769988486764", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113596036353041", + "createdBy": null, + "createdTime": "2026-02-02 07:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 08:08:40", + "echoMap": {}, + "alarmNo": "2440077211", + "alarmDate": "1769988474288", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113587446418739", + "createdBy": null, + "createdTime": "2026-02-02 07:18:44", + "updatedBy": null, + "updatedTime": "2026-02-02 11:28:26", + "echoMap": {}, + "alarmNo": "2440077210", + "alarmDate": "1769987924074", + "faultLocation": "999999999", + "faultDescription": "图像过亮", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060139", + "deviceName": "[165](10)吴中路基地镟轮库3", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113587446418614", + "createdBy": null, + "createdTime": "2026-02-02 07:18:27", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:28", + "echoMap": {}, + "alarmNo": "2440077209", + "alarmDate": "1769987907235", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113583151451248", + "createdBy": null, + "createdTime": "2026-02-02 07:17:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:17:58", + "echoMap": {}, + "alarmNo": "2440077208", + "alarmDate": "1769987877532", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060158", + "deviceName": "[181](10)吴中路基地经一路", + "alarmCategory": "1", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113583151451237", + "createdBy": null, + "createdTime": "2026-02-02 07:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 07:18:00", + "echoMap": {}, + "alarmNo": "2440077207", + "alarmDate": "1769987875239", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060031", + "deviceName": "[225](10)吴中路基地东围墙1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113578856483950", + "createdBy": null, + "createdTime": "2026-02-02 07:08:24", + "updatedBy": null, + "updatedTime": "2026-02-02 07:08:36", + "echoMap": {}, + "alarmNo": "2440077206", + "alarmDate": "1769987303846", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113574561516662", + "createdBy": null, + "createdTime": "2026-02-02 07:07:58", + "updatedBy": null, + "updatedTime": "2026-02-02 07:08:03", + "echoMap": {}, + "alarmNo": "2440077205", + "alarmDate": "1769987278272", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060158", + "deviceName": "[181](10)吴中路基地经一路", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113570266549615", + "createdBy": null, + "createdTime": "2026-02-02 06:58:51", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:54", + "echoMap": {}, + "alarmNo": "2440077204", + "alarmDate": "1769986730677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060155", + "deviceName": "[180](10)吴中路基地西北门2(需要对焦", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113570266549413", + "createdBy": null, + "createdTime": "2026-02-02 06:58:27", + "updatedBy": null, + "updatedTime": "2026-02-02 06:58:28", + "echoMap": {}, + "alarmNo": "2440077203", + "alarmDate": "1769986706592", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113561676614787", + "createdBy": null, + "createdTime": "2026-02-02 06:48:34", + "updatedBy": null, + "updatedTime": "2026-02-02 06:48:35", + "echoMap": {}, + "alarmNo": "2440077193", + "alarmDate": "1769986114400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113548791712895", + "createdBy": null, + "createdTime": "2026-02-02 06:38:24", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:54", + "echoMap": {}, + "alarmNo": "2440077179", + "alarmDate": "1769985504322", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745926", + "createdBy": null, + "createdTime": "2026-02-02 06:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "alarmNo": "2440077178", + "alarmDate": "1769985477453", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060129", + "deviceName": "[147](10)吴中路基地东北铁门1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745923", + "createdBy": null, + "createdTime": "2026-02-02 06:37:57", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:09", + "echoMap": {}, + "alarmNo": "2440077177", + "alarmDate": "1769985477330", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060142", + "deviceName": "[160](10)吴中路基地纬二路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745907", + "createdBy": null, + "createdTime": "2026-02-02 06:37:54", + "updatedBy": null, + "updatedTime": "2026-02-02 07:08:12", + "echoMap": {}, + "alarmNo": "2440077176", + "alarmDate": "1769985474013", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060032", + "deviceName": "[082](10)吴中路基地纬一路1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113544496745557", + "createdBy": null, + "createdTime": "2026-02-02 06:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:47", + "echoMap": {}, + "alarmNo": "2440077174", + "alarmDate": "1769984925819", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811438", + "createdBy": null, + "createdTime": "2026-02-02 06:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "alarmNo": "2440077173", + "alarmDate": "1769984899154", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060181", + "deviceName": "[195](10)吴中路基地南围墙5", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811437", + "createdBy": null, + "createdTime": "2026-02-02 06:28:19", + "updatedBy": null, + "updatedTime": "2026-02-02 06:38:12", + "echoMap": {}, + "alarmNo": "2440077172", + "alarmDate": "1769984899145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811252", + "createdBy": null, + "createdTime": "2026-02-02 06:27:55", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:10", + "echoMap": {}, + "alarmNo": "2440077171", + "alarmDate": "1769984874873", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906811250", + "createdBy": null, + "createdTime": "2026-02-02 06:27:54", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:43", + "echoMap": {}, + "alarmNo": "2440077170", + "alarmDate": "1769984874472", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060025", + "deviceName": "[189](10)吴中路基地垃圾房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113535906810929", + "createdBy": null, + "createdTime": "2026-02-02 06:18:42", + "updatedBy": null, + "updatedTime": "2026-02-02 06:18:43", + "echoMap": {}, + "alarmNo": "2440077169", + "alarmDate": "1769984321524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113527316876364", + "createdBy": null, + "createdTime": "2026-02-02 06:08:13", + "updatedBy": null, + "updatedTime": "2026-02-02 06:08:14", + "echoMap": {}, + "alarmNo": "2440077168", + "alarmDate": "1769983693120", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113518726942146", + "createdBy": null, + "createdTime": "2026-02-02 05:59:56", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:55", + "echoMap": {}, + "alarmNo": "2440077155", + "alarmDate": "1769983196108", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060100", + "deviceName": "[066](10)吴中路基地停车1库H区12", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113518726941777", + "createdBy": null, + "createdTime": "2026-02-02 05:58:01", + "updatedBy": null, + "updatedTime": "2026-02-02 05:58:02", + "echoMap": {}, + "alarmNo": "2440077154", + "alarmDate": "1769983080836", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113510137007653", + "createdBy": null, + "createdTime": "2026-02-02 05:48:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:50", + "echoMap": {}, + "alarmNo": "2440077153", + "alarmDate": "1769982528756", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113510137007501", + "createdBy": null, + "createdTime": "2026-02-02 05:48:27", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:33", + "echoMap": {}, + "alarmNo": "2440077152", + "alarmDate": "1769982507262", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113510137007385", + "createdBy": null, + "createdTime": "2026-02-02 05:48:09", + "updatedBy": null, + "updatedTime": "2026-02-02 05:48:15", + "echoMap": {}, + "alarmNo": "2440077151", + "alarmDate": "1769982489137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113501547073121", + "createdBy": null, + "createdTime": "2026-02-02 05:38:32", + "updatedBy": null, + "updatedTime": "2026-02-02 05:38:33", + "echoMap": {}, + "alarmNo": "2440077150", + "alarmDate": "1769981912320", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113501547072516", + "createdBy": null, + "createdTime": "2026-02-02 05:28:40", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:46", + "echoMap": {}, + "alarmNo": "2440077149", + "alarmDate": "1769981319892", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113492957138500", + "createdBy": null, + "createdTime": "2026-02-02 05:28:08", + "updatedBy": null, + "updatedTime": "2026-02-02 05:28:09", + "echoMap": {}, + "alarmNo": "2440077148", + "alarmDate": "1769981287992", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113492957138418", + "createdBy": null, + "createdTime": "2026-02-02 05:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 06:28:07", + "echoMap": {}, + "alarmNo": "2440077147", + "alarmDate": "1769981278004", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203968", + "createdBy": null, + "createdTime": "2026-02-02 05:17:59", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:00", + "echoMap": {}, + "alarmNo": "2440077146", + "alarmDate": "1769980678605", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203622", + "createdBy": null, + "createdTime": "2026-02-02 05:08:50", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:56", + "echoMap": {}, + "alarmNo": "2440077145", + "alarmDate": "1769980130479", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203613", + "createdBy": null, + "createdTime": "2026-02-02 05:08:49", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:50", + "echoMap": {}, + "alarmNo": "2440077144", + "alarmDate": "1769980129426", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203594", + "createdBy": null, + "createdTime": "2026-02-02 05:08:47", + "updatedBy": null, + "updatedTime": "2026-02-02 05:18:52", + "echoMap": {}, + "alarmNo": "2440077143", + "alarmDate": "1769980126773", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203422", + "createdBy": null, + "createdTime": "2026-02-02 05:08:17", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:23", + "echoMap": {}, + "alarmNo": "2440077142", + "alarmDate": "1769980096666", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113484367203403", + "createdBy": null, + "createdTime": "2026-02-02 05:08:14", + "updatedBy": null, + "updatedTime": "2026-02-02 05:08:26", + "echoMap": {}, + "alarmNo": "2440077141", + "alarmDate": "1769980094367", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113475777268987", + "createdBy": null, + "createdTime": "2026-02-02 04:58:15", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:16", + "echoMap": {}, + "alarmNo": "2440077140", + "alarmDate": "1769979495149", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113475777268945", + "createdBy": null, + "createdTime": "2026-02-02 04:58:10", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:24", + "echoMap": {}, + "alarmNo": "2440077139", + "alarmDate": "1769979490457", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113475777268909", + "createdBy": null, + "createdTime": "2026-02-02 04:58:06", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:23", + "echoMap": {}, + "alarmNo": "2440077138", + "alarmDate": "1769979486313", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113467187334634", + "createdBy": null, + "createdTime": "2026-02-02 04:48:36", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:42", + "echoMap": {}, + "alarmNo": "2440077137", + "alarmDate": "1769978916215", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113467187334530", + "createdBy": null, + "createdTime": "2026-02-02 04:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:19", + "echoMap": {}, + "alarmNo": "2440077136", + "alarmDate": "1769978897660", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113462892366911", + "createdBy": null, + "createdTime": "2026-02-02 04:38:48", + "updatedBy": null, + "updatedTime": "2026-02-02 04:48:41", + "echoMap": {}, + "alarmNo": "2440077135", + "alarmDate": "1769978328269", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113462892366893", + "createdBy": null, + "createdTime": "2026-02-02 04:38:46", + "updatedBy": null, + "updatedTime": "2026-02-02 04:58:14", + "echoMap": {}, + "alarmNo": "2440077134", + "alarmDate": "1769978325932", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113458597399880", + "createdBy": null, + "createdTime": "2026-02-02 04:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:06", + "echoMap": {}, + "alarmNo": "2440077133", + "alarmDate": "1769978278125", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113458597399875", + "createdBy": null, + "createdTime": "2026-02-02 04:37:58", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:28", + "echoMap": {}, + "alarmNo": "2440077132", + "alarmDate": "1769978277842", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465548", + "createdBy": null, + "createdTime": "2026-02-02 04:28:22", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:23", + "echoMap": {}, + "alarmNo": "2440077131", + "alarmDate": "1769977702400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465453", + "createdBy": null, + "createdTime": "2026-02-02 04:28:12", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:24", + "echoMap": {}, + "alarmNo": "2440077130", + "alarmDate": "1769977691946", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465412", + "createdBy": null, + "createdTime": "2026-02-02 04:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:38:13", + "echoMap": {}, + "alarmNo": "2440077129", + "alarmDate": "1769977686679", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113450007465389", + "createdBy": null, + "createdTime": "2026-02-02 04:28:04", + "updatedBy": null, + "updatedTime": "2026-02-02 04:28:10", + "echoMap": {}, + "alarmNo": "2440077128", + "alarmDate": "1769977683593", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113445712497767", + "createdBy": null, + "createdTime": "2026-02-02 04:18:37", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:38", + "echoMap": {}, + "alarmNo": "2440077127", + "alarmDate": "1769977116911", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113441417530860", + "createdBy": null, + "createdTime": "2026-02-02 04:18:02", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:14", + "echoMap": {}, + "alarmNo": "2440077126", + "alarmDate": "1769977081524", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113441417530461", + "createdBy": null, + "createdTime": "2026-02-02 04:08:49", + "updatedBy": null, + "updatedTime": "2026-02-02 04:18:43", + "echoMap": {}, + "alarmNo": "2440077125", + "alarmDate": "1769976528695", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060164", + "deviceName": "[179](10)吴中路基地停车场主出口1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113437122563206", + "createdBy": null, + "createdTime": "2026-02-02 04:08:32", + "updatedBy": null, + "updatedTime": "2026-02-02 07:58:34", + "echoMap": {}, + "alarmNo": "2440077124", + "alarmDate": "1769976511936", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060072", + "deviceName": "[212](10)吴中路基地调度大厅外走廊", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113432827596003", + "createdBy": null, + "createdTime": "2026-02-02 03:58:49", + "updatedBy": null, + "updatedTime": "2026-02-02 08:38:13", + "echoMap": {}, + "alarmNo": "2440077123", + "alarmDate": "1769975929182", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060204", + "deviceName": "[186](10)吴中路基地易燃品库大门", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113432827595846", + "createdBy": null, + "createdTime": "2026-02-02 03:58:30", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:31", + "echoMap": {}, + "alarmNo": "2440077122", + "alarmDate": "1769975909645", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113424237661833", + "createdBy": null, + "createdTime": "2026-02-02 03:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:04", + "echoMap": {}, + "alarmNo": "2440077121", + "alarmDate": "1769975883137", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113424237661422", + "createdBy": null, + "createdTime": "2026-02-02 03:48:45", + "updatedBy": null, + "updatedTime": "2026-02-02 03:58:14", + "echoMap": {}, + "alarmNo": "2440077120", + "alarmDate": "1769975325119", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113411352759301", + "createdBy": null, + "createdTime": "2026-02-02 03:38:03", + "updatedBy": null, + "updatedTime": "2026-02-02 03:38:16", + "echoMap": {}, + "alarmNo": "2440077119", + "alarmDate": "1769974682954", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113407057792131", + "createdBy": null, + "createdTime": "2026-02-02 03:28:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:52", + "echoMap": {}, + "alarmNo": "2440077118", + "alarmDate": "1769974125781", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113407057792056", + "createdBy": null, + "createdTime": "2026-02-02 03:28:37", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:38", + "echoMap": {}, + "alarmNo": "2440077117", + "alarmDate": "1769974116794", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113402762824821", + "createdBy": null, + "createdTime": "2026-02-02 03:28:23", + "updatedBy": null, + "updatedTime": "2026-02-02 03:28:24", + "echoMap": {}, + "alarmNo": "2440077116", + "alarmDate": "1769974103357", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113398467857421", + "createdBy": null, + "createdTime": "2026-02-02 03:18:29", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:40", + "echoMap": {}, + "alarmNo": "2440077115", + "alarmDate": "1769973508626", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113389877923383", + "createdBy": null, + "createdTime": "2026-02-02 03:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 03:18:11", + "echoMap": {}, + "alarmNo": "2440077114", + "alarmDate": "1769973483677", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113389877922989", + "createdBy": null, + "createdTime": "2026-02-02 03:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 03:08:52", + "echoMap": {}, + "alarmNo": "2440077113", + "alarmDate": "1769972926444", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988766", + "createdBy": null, + "createdTime": "2026-02-02 03:07:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:07:57", + "echoMap": {}, + "alarmNo": "2440077112", + "alarmDate": "1769972876082", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988402", + "createdBy": null, + "createdTime": "2026-02-02 02:58:44", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:45", + "echoMap": {}, + "alarmNo": "2440077111", + "alarmDate": "1769972323942", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988386", + "createdBy": null, + "createdTime": "2026-02-02 02:58:42", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:43", + "echoMap": {}, + "alarmNo": "2440077110", + "alarmDate": "1769972322400", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113381287988226", + "createdBy": null, + "createdTime": "2026-02-02 02:58:23", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:29", + "echoMap": {}, + "alarmNo": "2440077109", + "alarmDate": "1769972303227", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113372698053787", + "createdBy": null, + "createdTime": "2026-02-02 02:48:41", + "updatedBy": null, + "updatedTime": "2026-02-02 02:58:11", + "echoMap": {}, + "alarmNo": "2440077108", + "alarmDate": "1769971721063", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113355518184963", + "createdBy": null, + "createdTime": "2026-02-02 02:38:10", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:11", + "echoMap": {}, + "alarmNo": "2440077095", + "alarmDate": "1769971089833", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113355518184560", + "createdBy": null, + "createdTime": "2026-02-02 02:28:52", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:04", + "echoMap": {}, + "alarmNo": "2440077094", + "alarmDate": "1769970532111", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113351223217288", + "createdBy": null, + "createdTime": "2026-02-02 02:28:40", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:52", + "echoMap": {}, + "alarmNo": "2440077093", + "alarmDate": "1769970519653", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113346928250205", + "createdBy": null, + "createdTime": "2026-02-02 02:27:58", + "updatedBy": null, + "updatedTime": "2026-02-02 02:28:03", + "echoMap": {}, + "alarmNo": "2440077092", + "alarmDate": "1769970478486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113338338315526", + "createdBy": null, + "createdTime": "2026-02-02 02:17:55", + "updatedBy": null, + "updatedTime": "2026-02-02 02:38:12", + "echoMap": {}, + "alarmNo": "2440077091", + "alarmDate": "1769969874517", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748381103", + "createdBy": null, + "createdTime": "2026-02-02 02:08:30", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:31", + "echoMap": {}, + "alarmNo": "2440077088", + "alarmDate": "1769969309860", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748381085", + "createdBy": null, + "createdTime": "2026-02-02 02:08:28", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:34", + "echoMap": {}, + "alarmNo": "2440077087", + "alarmDate": "1769969308261", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748380939", + "createdBy": null, + "createdTime": "2026-02-02 02:08:11", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:12", + "echoMap": {}, + "alarmNo": "2440077086", + "alarmDate": "1769969290535", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113329748380907", + "createdBy": null, + "createdTime": "2026-02-02 02:08:07", + "updatedBy": null, + "updatedTime": "2026-02-02 02:08:13", + "echoMap": {}, + "alarmNo": "2440077085", + "alarmDate": "1769969287348", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113321158446234", + "createdBy": null, + "createdTime": "2026-02-02 01:58:02", + "updatedBy": null, + "updatedTime": "2026-02-02 01:58:14", + "echoMap": {}, + "alarmNo": "2440077084", + "alarmDate": "1769968682199", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113316863478870", + "createdBy": null, + "createdTime": "2026-02-02 01:51:56", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:55", + "echoMap": {}, + "alarmNo": "2440077083", + "alarmDate": "1769968316147", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060134", + "deviceName": "[075](10)吴中路基地停车1库平交道北", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113312568511976", + "createdBy": null, + "createdTime": "2026-02-02 01:48:44", + "updatedBy": null, + "updatedTime": "2026-02-02 01:48:50", + "echoMap": {}, + "alarmNo": "2440077082", + "alarmDate": "1769968123957", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113312568511637", + "createdBy": null, + "createdTime": "2026-02-02 01:47:55", + "updatedBy": null, + "updatedTime": "2026-02-02 01:47:56", + "echoMap": {}, + "alarmNo": "2440077081", + "alarmDate": "1769968075089", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113303978577501", + "createdBy": null, + "createdTime": "2026-02-02 01:38:48", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:49", + "echoMap": {}, + "alarmNo": "2440077080", + "alarmDate": "1769967527919", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113303978577258", + "createdBy": null, + "createdTime": "2026-02-02 01:38:18", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:19", + "echoMap": {}, + "alarmNo": "2440077079", + "alarmDate": "1769967497702", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113303978577123", + "createdBy": null, + "createdTime": "2026-02-02 01:38:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:09", + "echoMap": {}, + "alarmNo": "2440077078", + "alarmDate": "1769967482785", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113295388642910", + "createdBy": null, + "createdTime": "2026-02-02 01:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 01:28:52", + "echoMap": {}, + "alarmNo": "2440077077", + "alarmDate": "1769966924622", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113286798708074", + "createdBy": null, + "createdTime": "2026-02-02 01:18:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:14", + "echoMap": {}, + "alarmNo": "2440077076", + "alarmDate": "1769966293312", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113286798707969", + "createdBy": null, + "createdTime": "2026-02-02 01:18:03", + "updatedBy": null, + "updatedTime": "2026-02-02 01:18:15", + "echoMap": {}, + "alarmNo": "2440077075", + "alarmDate": "1769966283486", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113282503740583", + "createdBy": null, + "createdTime": "2026-02-02 01:09:58", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:57", + "echoMap": {}, + "alarmNo": "2440077074", + "alarmDate": "1769965798288", + "faultLocation": "999999999", + "faultDescription": "网络连接不可达", + "faultLevel": "2", + "faultCode": "5", + "deviceId": "1032060203", + "deviceName": "[011](10)吴中路基地停车2库C区2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "检查网络连接情况", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113282503740497", + "createdBy": null, + "createdTime": "2026-02-02 01:08:49", + "updatedBy": null, + "updatedTime": "2026-02-02 01:38:12", + "echoMap": {}, + "alarmNo": "2440077073", + "alarmDate": "1769965729183", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113282503740465", + "createdBy": null, + "createdTime": "2026-02-02 01:08:46", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:52", + "echoMap": {}, + "alarmNo": "2440077072", + "alarmDate": "1769965726395", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113278208773681", + "createdBy": null, + "createdTime": "2026-02-02 01:08:26", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:27", + "echoMap": {}, + "alarmNo": "2440077071", + "alarmDate": "1769965705858", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113278208773565", + "createdBy": null, + "createdTime": "2026-02-02 01:08:13", + "updatedBy": null, + "updatedTime": "2026-02-02 01:08:31", + "echoMap": {}, + "alarmNo": "2440077070", + "alarmDate": "1769965693145", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113269618838913", + "createdBy": null, + "createdTime": "2026-02-02 00:58:04", + "updatedBy": null, + "updatedTime": "2026-02-02 00:58:10", + "echoMap": {}, + "alarmNo": "2440077069", + "alarmDate": "1769965084077", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060029", + "deviceName": "[226](10)吴中路基地东围墙2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113265323871235", + "createdBy": null, + "createdTime": "2026-02-02 00:48:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:33", + "echoMap": {}, + "alarmNo": "2440077068", + "alarmDate": "1769964512422", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113261028904473", + "createdBy": null, + "createdTime": "2026-02-02 00:48:32", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:50", + "echoMap": {}, + "alarmNo": "2440077067", + "alarmDate": "1769964511840", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113252438969839", + "createdBy": null, + "createdTime": "2026-02-02 00:38:33", + "updatedBy": null, + "updatedTime": "2026-02-02 00:38:34", + "echoMap": {}, + "alarmNo": "2440077066", + "alarmDate": "1769963913058", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113243849035259", + "createdBy": null, + "createdTime": "2026-02-02 00:28:38", + "updatedBy": null, + "updatedTime": "2026-02-02 00:48:08", + "echoMap": {}, + "alarmNo": "2440077065", + "alarmDate": "1769963318435", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060168", + "deviceName": "[024](10)吴中路基地停车1库西通道1", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113243849034932", + "createdBy": null, + "createdTime": "2026-02-02 00:28:00", + "updatedBy": null, + "updatedTime": "2026-02-02 00:28:01", + "echoMap": {}, + "alarmNo": "2440077064", + "alarmDate": "1769963279798", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113235259100634", + "createdBy": null, + "createdTime": "2026-02-02 00:18:52", + "updatedBy": null, + "updatedTime": "2026-02-02 00:18:53", + "echoMap": {}, + "alarmNo": "2440077063", + "alarmDate": "1769962731654", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060054", + "deviceName": "[101](10)吴中路基地控制中心出入口2", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + }, + { + "id": "723113226669165856", + "createdBy": null, + "createdTime": "2026-02-02 00:08:40", + "updatedBy": null, + "updatedTime": "2026-02-02 00:08:41", + "echoMap": {}, + "alarmNo": "2440077062", + "alarmDate": "1769962120303", + "faultLocation": "999999999", + "faultDescription": "图像偏色", + "faultLevel": "4", + "faultCode": "5", + "deviceId": "1032060026", + "deviceName": "[121](10)吴中路基地综合楼机房泵房", + "alarmCategory": "2", + "alarmConfirm": "2", + "alarmRepairSuggestion": "无", + "impactService": "2", + "alarmType": "1", + "deviceType": "132", + "stationCode": "1032" + } + ] + }, + "1075": { + "ndmAlarmHost": [], + "ndmCamera": [], + "ndmDecoder": [], + "ndmKeyboard": [], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [], + "ndmVideoServer": [], + "unclassified": [] + } + } +} \ No newline at end of file diff --git a/docs/data/ndm-device-store.json b/docs/data/ndm-device-store.json new file mode 100644 index 0000000..1e6e137 --- /dev/null +++ b/docs/data/ndm-device-store.json @@ -0,0 +1,195971 @@ +{ + "lineDevices": { + "1001": { + "ndmAlarmHost": [ + { + "id": "687483371982496782", + "createdBy": null, + "createdTime": "2025-10-18 10:23:33", + "updatedBy": null, + "updatedTime": "2025-12-27 18:37:58", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.129.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "687483573845959695", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1001060001", + "name": "[610](10)虹桥火车站变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103021006001610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959696", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1001060002", + "name": "[611](10)虹桥火车站变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103021006001611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959697", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1001060003", + "name": "[601](10)虹桥火车站弱电综合室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103048005001601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959698", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1001060004", + "name": "[602](10)虹桥火车站弱电综合室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103048005001602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959699", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1001060005", + "name": "[603](10)虹桥火车站弱电综合室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103048005001603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959700", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1001060006", + "name": "[604](10)虹桥火车站弱电综合室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103048005001604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959701", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1001060007", + "name": "[608](10)虹桥火车站内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103021006001608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959702", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1001060008", + "name": "[306](10)虹桥火车站B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102002006001306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959703", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1001060009", + "name": "[107](10)虹桥火车站上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102007006001107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959704", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060010", + "name": "[108](10)虹桥火车站上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102007006001108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959705", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060011", + "name": "[110](10)虹桥火车站上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102007006001110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959706", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1001060012", + "name": "[703](10)虹桥火车站12#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483573845959707", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1001060013", + "name": "[607](10)虹桥火车站环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103053005001607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926976", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1001060014", + "name": "[304](10)虹桥火车站#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102017006001304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926977", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1001060015", + "name": "[203](10)虹桥火车站下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102001004001203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926978", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060016", + "name": "[202](10)虹桥火车站下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102001004001202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926979", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1001060017", + "name": "[305](10)虹桥火车站#3台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102017006001305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926980", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060018", + "name": "[106](10)虹桥火车站下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102012006001106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926981", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060019", + "name": "[105](10)虹桥火车站下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102012006001105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926982", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1001060020", + "name": "[704](10)虹桥火车站14#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926983", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060021", + "name": "[111](10)虹桥火车站上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102007006001111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926984", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060022", + "name": "[112](10)虹桥火车站上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102007006001112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926985", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1001060023", + "name": "[109](10)虹桥火车站上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102007006001109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926986", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1001060024", + "name": "[301](10)虹桥火车站#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102017006001301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926987", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1001060025", + "name": "[605](10)虹桥火车站屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103048005001605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926988", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1001060026", + "name": "[201](10)虹桥火车站上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102001004001201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926989", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1001060027", + "name": "[303](10)虹桥火车站#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102017006001303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926990", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1001060028", + "name": "[302](10)虹桥火车站#1台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102017006001302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926991", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1001060029", + "name": "[102](10)虹桥火车站下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102012006001102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926992", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1001060030", + "name": "[101](10)虹桥火车站下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102012006001101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926993", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1001060031", + "name": "[104](10)虹桥火车站下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102012006001104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926994", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1001060032", + "name": "[103](10)虹桥火车站下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060102012006001103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926995", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1001060033", + "name": "[609](10)虹桥火车站内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103021006001609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926996", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1001060034", + "name": "[606](10)虹桥火车站环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103053005001606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926997", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1001060035", + "name": "[718](10)虹桥火车站下行存车线5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104009006001718", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926998", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1001060036", + "name": "[717](10)虹桥火车站下行存车线4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104009006001717", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140926999", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060037", + "name": "[716](10)虹桥火车站下行存车线3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104009006001716", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140927000", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1001060038", + "name": "[715](10)虹桥火车站下行存车线2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104009006001715", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140927001", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1001060039", + "name": "[714](10)虹桥火车站下行存车线1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104009006001714", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140927002", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1001060040", + "name": "[707](10)虹桥火车站4#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483578140927003", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060041", + "name": "[705](10)虹桥火车站4#、8#交叉渡线-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894272", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1001060042", + "name": "[706](10)虹桥火车站4#、8#交叉渡线-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894273", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1001060043", + "name": "[713](10)虹桥火车站上行存车线5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104008006001713", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894274", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1001060044", + "name": "[712](10)虹桥火车站上行存车线4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104008006001712", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894275", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1001060045", + "name": "[711](10)虹桥火车站上行存车线3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104008006001711", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894276", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060046", + "name": "[710](10)虹桥火车站上行存车线2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104008006001710", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894277", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060047", + "name": "[708](10)虹桥火车站8#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001720", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894278", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060048", + "name": "[709](10)虹桥火车站上行存车线1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104008006001709", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894279", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1001060049", + "name": "[702](10)虹桥火车站3#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894280", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1001060050", + "name": "[701](10)虹桥火车站1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894281", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1001060051", + "name": "[612](10)虹桥火车站通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103048005001612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894282", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1001060052", + "name": "[613](10)虹桥火车站气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103067005001613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894283", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1001060053", + "name": "[614](10)虹桥火车站气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060103067005001614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894284", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1001060054", + "name": "[719](10)虹桥火车站10#道岔1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001719", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894285", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1001060055", + "name": "[720](10)虹桥火车站6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894286", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1001060056", + "name": "[721](10)虹桥火车站10#道岔2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001721", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483582435894287", + "createdBy": "0", + "createdTime": "2025-10-18 14:21:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1001060057", + "name": "[722](10)虹桥火车站2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.129.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060104013006001722", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585061407133814792", + "createdBy": "0", + "createdTime": "2025-01-21 11:13:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1001070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.129.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112106\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"570290175\",\"inUcastPkts\":\"1213015636\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"d4:43:0e:44:83:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3293594062\",\"outQLen\":\"0\",\"outUcastPkts\":\"294339616\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.129.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:54\",\"stCommonInfo\":{\"设备ID\":\"AA097DEPAZ93EE1\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"41\",\"CPU使用率\":\"28\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585061445788520450", + "createdBy": "2", + "createdTime": "2025-01-21 11:20:29", + "updatedBy": null, + "updatedTime": "2026-01-27 14:06:38", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.129.51", + "manageUrl": "http:\\\\10.18.129.51", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585061445788520452", + "createdBy": "2", + "createdTime": "2025-01-21 11:21:19", + "updatedBy": null, + "updatedTime": "2026-01-27 14:06:28", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.129.52", + "manageUrl": "http:\\\\10.18.129.52", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "566453650302445582", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1001090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.129.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.03\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"229 days, 22:29:05.12\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3920376\",\"inErrors\":\"0\",\"inNUcastPkts\":\"10506402\",\"inOctets\":\"3449982330\",\"inUcastPkts\":\"4203588806\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"1 day, 22:57:53.56\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:42:14\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"964945260\",\"outQLen\":\"0\",\"outUcastPkts\":\"2548007889\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.129.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "566453650302445755", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2024-11-19 13:48:49", + "echoMap": {}, + "deviceId": "1001050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.129.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.129.22;10.18.129.23" + }, + { + "id": "566453650302445756", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1001050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.129.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060100000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26373958\",\"inErrors\":\"0\",\"inNUcastPkts\":\"46457351\",\"inOctets\":\"4109943794\",\"inUcastPkts\":\"3197720753\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:72:3d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3104959165\",\"outQLen\":\"0\",\"outUcastPkts\":\"199367110\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.129.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:55\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":1100183169,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node12922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"62\",\"CPU使用率\":\"14\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.129.22" + }, + { + "id": "566453650302445757", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:57", + "echoMap": {}, + "deviceId": "1001050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.129.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060100000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26372975\",\"inErrors\":\"2\",\"inNUcastPkts\":\"58813991\",\"inOctets\":\"961713465\",\"inUcastPkts\":\"3075458\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:c3:c6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"524794003\",\"outQLen\":\"0\",\"outUcastPkts\":\"3053346888\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3240\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3250\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.129.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:56\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":1100183169,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node12923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"66\",\"CPU使用率\":\"13\"}}", + "lastDiagTime": "2026-02-02 14:34:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.129.23" + } + ], + "ndmSecurityBox": [ + { + "id": "598043976578127929", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:02", + "echoMap": {}, + "deviceId": "1001030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127930", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:03", + "echoMap": {}, + "deviceId": "1001030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15018408\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"838942423\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 10:36:32.92\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15018413\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:0a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24300002,\"status\":1,\"voltage\":25.981},{\"current\":0.25500003,\"status\":1,\"voltage\":25.981},{\"current\":0.264,\"status\":1,\"voltage\":25.981},{\"current\":0.224,\"status\":1,\"voltage\":25.981},{\"current\":0.29200003,\"status\":1,\"voltage\":25.981},{\"current\":0.22000001,\"status\":1,\"voltage\":25.981},{\"current\":0.324,\"status\":1,\"voltage\":25.981},{\"current\":0.001,\"status\":1,\"voltage\":25.981},{\"current\":0.50100005,\"status\":1,\"voltage\":25.981},{\"current\":0.531,\"status\":1,\"voltage\":26.718},{\"current\":0.003,\"status\":1,\"voltage\":26.718},{\"current\":0.323,\"status\":1,\"voltage\":26.718},{\"current\":0.245,\"status\":1,\"voltage\":26.718},{\"current\":0.256,\"status\":1,\"voltage\":26.718},{\"current\":0.277,\"status\":1,\"voltage\":26.718},{\"current\":0.001,\"status\":1,\"voltage\":26.718}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303594\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127931", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:04", + "echoMap": {}, + "deviceId": "1001030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9423392\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"525195184\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 10:39:07.83\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9423397\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:63\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.317,\"status\":1,\"voltage\":26.495},{\"current\":0.27600002,\"status\":1,\"voltage\":26.495},{\"current\":0.24000001,\"status\":1,\"voltage\":26.495},{\"current\":0.36,\"status\":1,\"voltage\":26.495},{\"current\":0.22600001,\"status\":1,\"voltage\":26.495},{\"current\":0.521,\"status\":1,\"voltage\":26.495},{\"current\":0.316,\"status\":1,\"voltage\":26.495},{\"current\":0.333,\"status\":1,\"voltage\":26.495},{\"current\":0.29200003,\"status\":1,\"voltage\":26.495},{\"current\":0.25800002,\"status\":1,\"voltage\":26.162},{\"current\":0.003,\"status\":1,\"voltage\":26.162},{\"current\":0.23400001,\"status\":1,\"voltage\":26.162},{\"current\":0.223,\"status\":1,\"voltage\":26.162},{\"current\":0.001,\"status\":1,\"voltage\":26.162},{\"current\":0.001,\"status\":1,\"voltage\":26.162},{\"current\":0.001,\"status\":1,\"voltage\":26.162}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303683\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127932", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:04", + "echoMap": {}, + "deviceId": "1001030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9423259\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"525190637\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 11:11:16.88\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9423264\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:7c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27600002,\"status\":1,\"voltage\":28.496002},{\"current\":0.23400001,\"status\":1,\"voltage\":28.496002},{\"current\":0.22800002,\"status\":1,\"voltage\":28.496002},{\"current\":0.23600002,\"status\":1,\"voltage\":28.496002},{\"current\":0.001,\"status\":1,\"voltage\":28.496002},{\"current\":0.001,\"status\":1,\"voltage\":28.496002},{\"current\":0.001,\"status\":1,\"voltage\":28.496002},{\"current\":0.001,\"status\":1,\"voltage\":28.496002},{\"current\":0.001,\"status\":1,\"voltage\":28.496002},{\"current\":0.001,\"status\":1,\"voltage\":28.898},{\"current\":0.002,\"status\":1,\"voltage\":28.898},{\"current\":0.001,\"status\":1,\"voltage\":28.898},{\"current\":0.001,\"status\":1,\"voltage\":28.898},{\"current\":0.001,\"status\":1,\"voltage\":28.898},{\"current\":0.001,\"status\":1,\"voltage\":28.898},{\"current\":0.001,\"status\":1,\"voltage\":28.898}],\"fanSpeeds\":[3360,3390],\"humidity\":62,\"switches\":[0,0,0,0],\"temperature\":32}],\"stCommonInfo\":{\"设备ID\":\"0001512208301595\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127933", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:05", + "echoMap": {}, + "deviceId": "1001030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9423222\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"525186961\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 14:28:45.96\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9423227\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:2f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.544},{\"current\":0.001,\"status\":1,\"voltage\":26.544},{\"current\":0.294,\"status\":1,\"voltage\":26.544},{\"current\":0.29700002,\"status\":1,\"voltage\":26.544},{\"current\":0.001,\"status\":1,\"voltage\":26.544},{\"current\":0.0,\"status\":1,\"voltage\":26.544},{\"current\":0.0,\"status\":1,\"voltage\":26.544},{\"current\":0.0,\"status\":1,\"voltage\":26.544},{\"current\":0.0,\"status\":0,\"voltage\":26.544},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[1,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301518\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127934", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:13", + "echoMap": {}, + "deviceId": "1001030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:13", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127935", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:13", + "echoMap": {}, + "deviceId": "1001030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9235264\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"514649074\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9235269\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:c9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.433},{\"current\":0.001,\"status\":1,\"voltage\":26.433},{\"current\":0.30600002,\"status\":1,\"voltage\":26.433},{\"current\":0.23600002,\"status\":1,\"voltage\":26.433},{\"current\":0.287,\"status\":1,\"voltage\":26.433},{\"current\":0.001,\"status\":1,\"voltage\":26.433},{\"current\":0.001,\"status\":1,\"voltage\":26.433},{\"current\":0.001,\"status\":1,\"voltage\":26.433},{\"current\":0.001,\"status\":0,\"voltage\":26.433},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302249\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:13", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127936", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:14", + "echoMap": {}, + "deviceId": "1001030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9416511\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"524810306\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 13:17:08.70\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9416516\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:44\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.107},{\"current\":0.001,\"status\":1,\"voltage\":27.107},{\"current\":0.29000002,\"status\":1,\"voltage\":27.107},{\"current\":0.28300002,\"status\":1,\"voltage\":27.107},{\"current\":0.293,\"status\":1,\"voltage\":27.107},{\"current\":0.0,\"status\":1,\"voltage\":27.107},{\"current\":0.0,\"status\":1,\"voltage\":27.107},{\"current\":0.0,\"status\":1,\"voltage\":27.107},{\"current\":0.0,\"status\":0,\"voltage\":27.107},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301539\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043976578127937", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:14", + "echoMap": {}, + "deviceId": "1001030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9416511\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"524813043\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 13:52:38.49\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9416516\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:bb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":1,\"voltage\":27.275002},{\"current\":0.30200002,\"status\":1,\"voltage\":27.275002},{\"current\":0.294,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":0,\"voltage\":27.275002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301402\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095168", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:15", + "echoMap": {}, + "deviceId": "1001030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9416511\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"524813085\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 13:18:43.74\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9416516\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:a6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.37},{\"current\":0.001,\"status\":1,\"voltage\":26.37},{\"current\":0.293,\"status\":1,\"voltage\":26.37},{\"current\":0.29700002,\"status\":1,\"voltage\":26.37},{\"current\":0.0,\"status\":1,\"voltage\":26.37},{\"current\":0.0,\"status\":1,\"voltage\":26.37},{\"current\":0.0,\"status\":1,\"voltage\":26.37},{\"current\":0.0,\"status\":1,\"voltage\":26.37},{\"current\":0.0,\"status\":0,\"voltage\":26.37},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301381\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095169", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:15", + "echoMap": {}, + "deviceId": "1001030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9416511\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"524813791\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:58.50\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9416516\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:05\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.893002},{\"current\":0.001,\"status\":1,\"voltage\":26.893002},{\"current\":0.23,\"status\":1,\"voltage\":26.893002},{\"current\":0.293,\"status\":1,\"voltage\":26.893002},{\"current\":0.293,\"status\":1,\"voltage\":26.893002},{\"current\":0.001,\"status\":1,\"voltage\":26.893002},{\"current\":0.001,\"status\":1,\"voltage\":26.893002},{\"current\":0.001,\"status\":1,\"voltage\":26.893002},{\"current\":0.001,\"status\":0,\"voltage\":26.893002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301476\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095170", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1001030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9416511\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"524812557\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 13:39:03.87\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9416516\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:a8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.31100002,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":0,\"voltage\":26.709002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301383\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095171", + "createdBy": "0", + "createdTime": "2025-03-07 13:38:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1001030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.130.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9417164\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"524850157\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 16:16:43.84\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9417169\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:c7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.653002},{\"current\":0.001,\"status\":1,\"voltage\":26.653002},{\"current\":0.307,\"status\":1,\"voltage\":26.653002},{\"current\":0.001,\"status\":1,\"voltage\":26.653002},{\"current\":0.001,\"status\":1,\"voltage\":26.653002},{\"current\":0.0,\"status\":1,\"voltage\":26.653002},{\"current\":0.0,\"status\":1,\"voltage\":26.653002},{\"current\":0.0,\"status\":1,\"voltage\":26.653002},{\"current\":0.0,\"status\":0,\"voltage\":26.653002},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302247\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "598043980873095172", + "createdBy": "2", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1001040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.129.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif129\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:07.29\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:1b:ca\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"41\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.129.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"59\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:09\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40680,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":512,\"opticalVoltage\":3242,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33450,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":613,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34979,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":562,\"opticalVoltage\":3257,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33810,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":613,\"opticalVoltage\":3257,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34860,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":651,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34470,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":648,\"opticalVoltage\":3290,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35369,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":598,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34860,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":612,\"opticalVoltage\":3291,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34080,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":575,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35220,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":619,\"opticalVoltage\":3267,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42720,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":504,\"opticalVoltage\":3258,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34319,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":598,\"opticalVoltage\":3293,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":27214948,\"inBytes\":3694524358,\"inFlow\":836499,\"lastChangeTime\":\"0:04:12.52\",\"lastInBytes\":3694524358,\"lastOutBytes\":3769565857,\"opticalBiasCurrent\":35279,\"opticalReceivePower\":368,\"opticalTemperature\":54,\"opticalTransmitPower\":633,\"opticalVoltage\":3332,\"outBytes\":3769565857,\"outFlow\":26378448,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36389,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":559,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40229,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":562,\"opticalVoltage\":3377,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40080,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":563,\"opticalVoltage\":3411,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36810,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":683,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37770,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":558,\"opticalVoltage\":3346,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36630,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":620,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43349,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":558,\"opticalVoltage\":3359,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":79830,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":2,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37439,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":561,\"opticalVoltage\":3394,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":5165187,\"inBytes\":1412157762,\"inFlow\":3905,\"lastChangeTime\":\"0:04:12.57\",\"lastInBytes\":1412157762,\"lastOutBytes\":4196871493,\"opticalBiasCurrent\":37560,\"opticalReceivePower\":470,\"opticalTemperature\":54,\"opticalTransmitPower\":555,\"opticalVoltage\":3365,\"outBytes\":4196871493,\"outFlow\":5161282,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2716292,\"inBytes\":2835022866,\"inFlow\":52226,\"lastChangeTime\":\"0:04:12.66\",\"lastInBytes\":2835022866,\"lastOutBytes\":3919760088,\"opticalBiasCurrent\":38849,\"opticalReceivePower\":478,\"opticalTemperature\":54,\"opticalTransmitPower\":559,\"opticalVoltage\":3318,\"outBytes\":3919760088,\"outFlow\":2664066,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":5985924,\"inBytes\":777335550,\"inFlow\":5795870,\"lastChangeTime\":\"0:39:55.11\",\"lastInBytes\":777335550,\"lastOutBytes\":1796950381,\"opticalBiasCurrent\":14373,\"opticalReceivePower\":126,\"opticalTemperature\":46,\"opticalTransmitPower\":288,\"opticalVoltage\":3325,\"outBytes\":1796950381,\"outFlow\":190053,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":22409344,\"inBytes\":1730515001,\"inFlow\":21706424,\"lastChangeTime\":\"0:04:11.75\",\"lastInBytes\":1730515001,\"lastOutBytes\":2314040454,\"opticalBiasCurrent\":12972,\"opticalReceivePower\":84,\"opticalTemperature\":47,\"opticalTransmitPower\":279,\"opticalVoltage\":3333,\"outBytes\":2314040454,\"outFlow\":702920,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18992094,\"inBytes\":623394929,\"inFlow\":18394075,\"lastChangeTime\":\"0:04:11.78\",\"lastInBytes\":623394929,\"lastOutBytes\":2041121617,\"opticalBiasCurrent\":13609,\"opticalReceivePower\":77,\"opticalTemperature\":48,\"opticalTransmitPower\":266,\"opticalVoltage\":3325,\"outBytes\":2041121617,\"outFlow\":598019,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3276085,\"inBytes\":828370475,\"inFlow\":3171207,\"lastChangeTime\":\"0:04:11.88\",\"lastInBytes\":828370475,\"lastOutBytes\":2719537359,\"opticalBiasCurrent\":13578,\"opticalReceivePower\":146,\"opticalTemperature\":48,\"opticalTransmitPower\":267,\"opticalVoltage\":3325,\"outBytes\":2719537359,\"outFlow\":104878,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2246244,\"inBytes\":3501010463,\"inFlow\":2174181,\"lastChangeTime\":\"0:04:11.90\",\"lastInBytes\":3501010463,\"lastOutBytes\":2274346372,\"opticalBiasCurrent\":14024,\"opticalReceivePower\":8,\"opticalTemperature\":50,\"opticalTransmitPower\":286,\"opticalVoltage\":3318,\"outBytes\":2274346372,\"outFlow\":72062,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2795424,\"inBytes\":1405088016,\"inFlow\":2706808,\"lastChangeTime\":\"0:04:11.91\",\"lastInBytes\":1405088016,\"lastOutBytes\":2537360577,\"opticalBiasCurrent\":14088,\"opticalReceivePower\":175,\"opticalTemperature\":49,\"opticalTransmitPower\":257,\"opticalVoltage\":3318,\"outBytes\":2537360577,\"outFlow\":88616,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3456294,\"inBytes\":2935402417,\"inFlow\":3345784,\"lastChangeTime\":\"0:04:11.93\",\"lastInBytes\":2935402417,\"lastOutBytes\":3057279754,\"opticalBiasCurrent\":13800,\"opticalReceivePower\":102,\"opticalTemperature\":49,\"opticalTransmitPower\":250,\"opticalVoltage\":3318,\"outBytes\":3057279754,\"outFlow\":110510,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2917101,\"inBytes\":1062519305,\"inFlow\":2818060,\"lastChangeTime\":\"0:04:11.94\",\"lastInBytes\":1062519305,\"lastOutBytes\":4143466058,\"opticalBiasCurrent\":13545,\"opticalReceivePower\":71,\"opticalTemperature\":49,\"opticalTransmitPower\":287,\"opticalVoltage\":3325,\"outBytes\":4143466058,\"outFlow\":99040,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2248506,\"inBytes\":1563131836,\"inFlow\":2175694,\"lastChangeTime\":\"0:04:11.98\",\"lastInBytes\":1563131836,\"lastOutBytes\":3560348746,\"opticalBiasCurrent\":14947,\"opticalReceivePower\":164,\"opticalTemperature\":51,\"opticalTransmitPower\":272,\"opticalVoltage\":3318,\"outBytes\":3560348746,\"outFlow\":72811,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2253309,\"inBytes\":301373900,\"inFlow\":2179939,\"lastChangeTime\":\"0:04:12.00\",\"lastInBytes\":301373900,\"lastOutBytes\":3024898095,\"opticalBiasCurrent\":13131,\"opticalReceivePower\":25,\"opticalTemperature\":48,\"opticalTransmitPower\":266,\"opticalVoltage\":3325,\"outBytes\":3024898095,\"outFlow\":73369,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3459932,\"inBytes\":2630677691,\"inFlow\":3348202,\"lastChangeTime\":\"17 days, 14:30:29.93\",\"lastInBytes\":2630677691,\"lastOutBytes\":2162169476,\"opticalBiasCurrent\":13482,\"opticalReceivePower\":68,\"opticalTemperature\":47,\"opticalTransmitPower\":251,\"opticalVoltage\":3318,\"outBytes\":2162169476,\"outFlow\":111729,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1780081,\"inBytes\":270099600,\"inFlow\":1721320,\"lastChangeTime\":\"0:04:12.03\",\"lastInBytes\":270099600,\"lastOutBytes\":1938985926,\"opticalBiasCurrent\":13163,\"opticalReceivePower\":34,\"opticalTemperature\":47,\"opticalTransmitPower\":270,\"opticalVoltage\":3318,\"outBytes\":1938985926,\"outFlow\":58760,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1125537,\"inBytes\":268779056,\"inFlow\":1088466,\"lastChangeTime\":\"0:04:12.05\",\"lastInBytes\":268779056,\"lastOutBytes\":810358104,\"opticalBiasCurrent\":14024,\"opticalReceivePower\":192,\"opticalTemperature\":47,\"opticalTransmitPower\":287,\"opticalVoltage\":3318,\"outBytes\":810358104,\"outFlow\":37071,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10645,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":257,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14248,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":258,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12779,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":291,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13163,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":283,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12876,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":250,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12907,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":281,\"opticalVoltage\":3333,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13196,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":291,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13673,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":281,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13864,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":281,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14152,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":282,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":531,\"inBytes\":1407618745,\"inFlow\":91,\"lastChangeTime\":\"0:04:12.06\",\"lastInBytes\":1407618745,\"lastOutBytes\":2538527086,\"opticalBiasCurrent\":10434,\"opticalReceivePower\":133,\"opticalTemperature\":46,\"opticalTransmitPower\":258,\"opticalVoltage\":3372,\"outBytes\":2538527086,\"outFlow\":439,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":19780,\"inBytes\":1023269109,\"inFlow\":9685,\"lastChangeTime\":\"9 days, 3:57:03.36\",\"lastInBytes\":1023269109,\"lastOutBytes\":3878930904,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3878930904,\"outFlow\":10095,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":30345273,\"inBytes\":3397025257,\"inFlow\":15621839,\"lastChangeTime\":\"10 days, 4:39:53.28\",\"lastInBytes\":3397025257,\"lastOutBytes\":4157567018,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4157567018,\"outFlow\":14723434,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":32823,\"inBytes\":3594710375,\"inFlow\":16116,\"lastChangeTime\":\"0:03:07.28\",\"lastInBytes\":3594710375,\"lastOutBytes\":3843532773,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3843532773,\"outFlow\":16707,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":388,\"inBytes\":230222274,\"inFlow\":28,\"lastChangeTime\":\"111 days, 4:58:52.09\",\"lastInBytes\":230222274,\"lastOutBytes\":3051248608,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3051248608,\"outFlow\":360,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":388,\"inBytes\":273293954,\"inFlow\":28,\"lastChangeTime\":\"231 days, 14:29:59.78\",\"lastInBytes\":273293954,\"lastOutBytes\":1675121140,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1675121140,\"outFlow\":360,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":718,\"inBytes\":1670894261,\"inFlow\":208,\"lastChangeTime\":\"111 days, 5:30:57.77\",\"lastInBytes\":1670894261,\"lastOutBytes\":4246533376,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4246533376,\"outFlow\":509,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1107,\"inBytes\":2811109977,\"inFlow\":305,\"lastChangeTime\":\"94 days, 15:40:45.70\",\"lastInBytes\":2811109977,\"lastOutBytes\":3113104412,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3113104412,\"outFlow\":802,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":2419338,\"inBytes\":2462639842,\"inFlow\":796333,\"lastChangeTime\":\"111 days, 5:02:00.07\",\"lastInBytes\":2462639842,\"lastOutBytes\":3653831093,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3653831093,\"outFlow\":1623005,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13306438,\"inBytes\":3599905363,\"inFlow\":712637,\"lastChangeTime\":\"0:03:07.97\",\"lastInBytes\":3599905363,\"lastOutBytes\":2336584926,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2336584926,\"outFlow\":12593800,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15214092,\"inBytes\":3142001893,\"inFlow\":307943,\"lastChangeTime\":\"0:03:08.00\",\"lastInBytes\":3142001893,\"lastOutBytes\":2446701945,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2446701945,\"outFlow\":14906149,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":294699,\"inBytes\":3157079008,\"inFlow\":294253,\"lastChangeTime\":\"17 days, 16:49:13.38\",\"lastInBytes\":3157079008,\"lastOutBytes\":1165316098,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1165316098,\"outFlow\":446,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9010157,\"inBytes\":1574059539,\"inFlow\":93349,\"lastChangeTime\":\"17 days, 16:49:21.84\",\"lastInBytes\":1574059539,\"lastOutBytes\":969868305,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":969868305,\"outFlow\":8916807,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":771,\"inBytes\":3152454181,\"inFlow\":115,\"lastChangeTime\":\"232 days, 22:07:14.68\",\"lastInBytes\":3152454181,\"lastOutBytes\":2249113808,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2249113808,\"outFlow\":655,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":12019,\"inFlow\":0,\"lastChangeTime\":\"93 days, 15:23:59.57\",\"lastInBytes\":12019,\"lastOutBytes\":8940,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8940,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":278124,\"inFlow\":0,\"lastChangeTime\":\"111 days, 5:31:35.60\",\"lastInBytes\":278124,\"lastOutBytes\":4846573,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4846573,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":45,\"inBytes\":9696320,\"inFlow\":21,\"lastChangeTime\":\"231 days, 5:40:21.39\",\"lastInBytes\":9696320,\"lastOutBytes\":11357326,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":11357326,\"outFlow\":24,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":169,\"inBytes\":64678229,\"inFlow\":144,\"lastChangeTime\":\"231 days, 5:40:26.72\",\"lastInBytes\":64678229,\"lastOutBytes\":11310752,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":11310752,\"outFlow\":24,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:50.641018000\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095173", + "createdBy": "2", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1001040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"65\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface130\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"188314\",\"inUnknownProtos\":\"3899179104\",\"index\":\"634\",\"lastChange\":\"362 days, 8:24:08.38\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:d0:e2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4278894905\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"240922193\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":851393,\"inBytes\":505666108,\"inFlow\":830492,\"lastChangeTime\":\"26 days, 20:15:51.06\",\"lastInBytes\":505666108,\"lastOutBytes\":2972542348,\"outBytes\":2972542348,\"outFlow\":20901,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":846449,\"inBytes\":1810576546,\"inFlow\":825709,\"lastChangeTime\":\"147 days, 7:45:58.63\",\"lastInBytes\":1810576546,\"lastOutBytes\":903663103,\"outBytes\":903663103,\"outFlow\":20740,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":564410,\"inBytes\":2714120249,\"inFlow\":550369,\"lastChangeTime\":\"383 days, 8:48:46.03\",\"lastInBytes\":2714120249,\"lastOutBytes\":4218910245,\"outBytes\":4218910245,\"outFlow\":14040,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":386771,\"inBytes\":4176026022,\"inFlow\":376868,\"lastChangeTime\":\"103 days, 9:40:21.70\",\"lastInBytes\":4176026022,\"lastOutBytes\":4287857008,\"outBytes\":4287857008,\"outFlow\":9903,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":563700,\"inBytes\":2249853197,\"inFlow\":550091,\"lastChangeTime\":\"383 days, 8:48:42.10\",\"lastInBytes\":2249853197,\"lastOutBytes\":3899179104,\"outBytes\":3899179104,\"outFlow\":13609,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":563659,\"inBytes\":4100701873,\"inFlow\":549688,\"lastChangeTime\":\"383 days, 8:48:50.21\",\"lastInBytes\":4100701873,\"lastOutBytes\":3907052243,\"outBytes\":3907052243,\"outFlow\":13970,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":789716,\"inBytes\":2464096933,\"inFlow\":770340,\"lastChangeTime\":\"147 days, 7:45:58.01\",\"lastInBytes\":2464096933,\"lastOutBytes\":1765907990,\"outBytes\":1765907990,\"outFlow\":19375,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1644648,\"inFlow\":0,\"lastChangeTime\":\"81 days, 5:02:24.96\",\"lastInBytes\":1644648,\"lastOutBytes\":83275895,\"outBytes\":83275895,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2604159,\"inFlow\":0,\"lastChangeTime\":\"139 days, 23:55:00.26\",\"lastInBytes\":2604159,\"lastOutBytes\":124368600,\"outBytes\":124368600,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":873200337,\"inFlow\":0,\"lastChangeTime\":\"362 days, 8:17:42.78\",\"lastInBytes\":873200337,\"lastOutBytes\":3404493070,\"outBytes\":3404493070,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4319000,\"inBytes\":3036658806,\"inFlow\":111065,\"lastChangeTime\":\"362 days, 8:24:08.37\",\"lastInBytes\":3036658806,\"lastOutBytes\":1786455156,\"outBytes\":1786455156,\"outFlow\":4207935,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.040474000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095174", + "createdBy": "2", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1001040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface130\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"185360\",\"inUnknownProtos\":\"1367838938\",\"index\":\"634\",\"lastChange\":\"0:01:21.35\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:e3:22\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3564886217\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"239482266\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":1344135,\"inBytes\":2623769589,\"inFlow\":1310475,\"lastChangeTime\":\"138 days, 7:46:31.09\",\"lastInBytes\":2623769589,\"lastOutBytes\":559579133,\"outBytes\":559579133,\"outFlow\":33660,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1344251,\"inBytes\":57526686,\"inFlow\":1310682,\"lastChangeTime\":\"17 days, 20:16:40.85\",\"lastInBytes\":57526686,\"lastOutBytes\":3280649727,\"outBytes\":3280649727,\"outFlow\":33568,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1348045,\"inBytes\":69857932,\"inFlow\":1313663,\"lastChangeTime\":\"17 days, 20:16:42.53\",\"lastInBytes\":69857932,\"lastOutBytes\":2196107912,\"outBytes\":2196107912,\"outFlow\":34381,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1351714,\"inBytes\":2029202709,\"inFlow\":1317271,\"lastChangeTime\":\"17 days, 20:16:40.09\",\"lastInBytes\":2029202709,\"lastOutBytes\":3094899220,\"outBytes\":3094899220,\"outFlow\":34442,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1344726,\"inBytes\":1679513010,\"inFlow\":1311561,\"lastChangeTime\":\"447 days, 21:57:03.42\",\"lastInBytes\":1679513010,\"lastOutBytes\":1367838938,\"outBytes\":1367838938,\"outFlow\":33165,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":564211,\"inBytes\":684978184,\"inFlow\":550191,\"lastChangeTime\":\"374 days, 8:49:36.36\",\"lastInBytes\":684978184,\"lastOutBytes\":2110638504,\"outBytes\":2110638504,\"outFlow\":14020,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1342896,\"inBytes\":2924402575,\"inFlow\":1315191,\"lastChangeTime\":\"235 days, 14:59:56.26\",\"lastInBytes\":2924402575,\"lastOutBytes\":4191000972,\"outBytes\":4191000972,\"outFlow\":27705,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1257615,\"inFlow\":0,\"lastChangeTime\":\"130 days, 21:54:58.41\",\"lastInBytes\":1257615,\"lastOutBytes\":72606282,\"outBytes\":72606282,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1404781,\"inBytes\":4058129135,\"inFlow\":1372092,\"lastChangeTime\":\"446 days, 17:47:04.47\",\"lastInBytes\":4058129135,\"lastOutBytes\":2558848227,\"outBytes\":2558848227,\"outFlow\":32688,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1394993,\"inBytes\":1842164454,\"inFlow\":1362440,\"lastChangeTime\":\"446 days, 17:47:03.00\",\"lastInBytes\":1842164454,\"lastOutBytes\":3786447507,\"outBytes\":3786447507,\"outFlow\":32552,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1884674,\"inBytes\":1354560616,\"inFlow\":1846031,\"lastChangeTime\":\"235 days, 14:59:26.50\",\"lastInBytes\":1354560616,\"lastOutBytes\":1662076133,\"outBytes\":1662076133,\"outFlow\":38643,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1247480,\"inBytes\":2110665950,\"inFlow\":1216346,\"lastChangeTime\":\"17 days, 20:16:37.53\",\"lastInBytes\":2110665950,\"lastOutBytes\":2750392907,\"outBytes\":2750392907,\"outFlow\":31134,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":793844,\"inBytes\":2473408896,\"inFlow\":773733,\"lastChangeTime\":\"17 days, 20:16:33.99\",\"lastInBytes\":2473408896,\"lastOutBytes\":1735669750,\"outBytes\":1735669750,\"outFlow\":20110,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":1241207,\"inBytes\":2219261423,\"inFlow\":1210625,\"lastChangeTime\":\"447 days, 22:37:15.39\",\"lastInBytes\":2219261423,\"lastOutBytes\":4035552910,\"outBytes\":4035552910,\"outFlow\":30581,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":261505,\"inBytes\":1102440217,\"inFlow\":255082,\"lastChangeTime\":\"374 days, 8:49:19.74\",\"lastInBytes\":1102440217,\"lastOutBytes\":3730099400,\"outBytes\":3730099400,\"outFlow\":6422,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":84,\"inBytes\":1549094046,\"inFlow\":1,\"lastChangeTime\":\"130 days, 22:36:21.33\",\"lastInBytes\":1549094046,\"lastOutBytes\":1448891706,\"outBytes\":1448891706,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":17601245,\"inBytes\":830688593,\"inFlow\":439706,\"lastChangeTime\":\"353 days, 7:49:11.76\",\"lastInBytes\":830688593,\"lastOutBytes\":809143950,\"outBytes\":809143950,\"outFlow\":17161538,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.045301000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095175", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1001040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface130\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"186180\",\"inUnknownProtos\":\"1743438014\",\"index\":\"634\",\"lastChange\":\"2 days, 1:04:50.79\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:c2:a2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"135206688\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"240456677\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":859998,\"inBytes\":2785937632,\"inFlow\":837571,\"lastChangeTime\":\"19 days, 21:39:08.01\",\"lastInBytes\":2785937632,\"lastOutBytes\":1793610791,\"outBytes\":1793610791,\"outFlow\":22427,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1353477,\"inBytes\":3034310344,\"inFlow\":1318636,\"lastChangeTime\":\"19 days, 21:39:10.18\",\"lastInBytes\":3034310344,\"lastOutBytes\":2968300325,\"outBytes\":2968300325,\"outFlow\":34840,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":858349,\"inBytes\":3487002683,\"inFlow\":836085,\"lastChangeTime\":\"19 days, 21:39:03.47\",\"lastInBytes\":3487002683,\"lastOutBytes\":3058702180,\"outBytes\":3058702180,\"outFlow\":22264,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":2445989,\"inBytes\":1176523873,\"inFlow\":2396783,\"lastChangeTime\":\"237 days, 16:22:02.22\",\"lastInBytes\":1176523873,\"lastOutBytes\":2526399050,\"outBytes\":2526399050,\"outFlow\":49206,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":562500,\"inBytes\":65767123,\"inFlow\":548577,\"lastChangeTime\":\"376 days, 10:11:53.29\",\"lastInBytes\":65767123,\"lastOutBytes\":1743438014,\"outBytes\":1743438014,\"outFlow\":13922,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1546717,\"inBytes\":3331045191,\"inFlow\":1510156,\"lastChangeTime\":\"448 days, 19:09:33.47\",\"lastInBytes\":3331045191,\"lastOutBytes\":1199130526,\"outBytes\":1199130526,\"outFlow\":36560,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1344313,\"inBytes\":4170931638,\"inFlow\":1315292,\"lastChangeTime\":\"237 days, 16:22:09.64\",\"lastInBytes\":4170931638,\"lastOutBytes\":1640664980,\"outBytes\":1640664980,\"outFlow\":29020,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1320948,\"inBytes\":482927315,\"inFlow\":1292212,\"lastChangeTime\":\"237 days, 16:22:13.55\",\"lastInBytes\":482927315,\"lastOutBytes\":1848744438,\"outBytes\":1848744438,\"outFlow\":28735,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1353182,\"inBytes\":2605222548,\"inFlow\":1318462,\"lastChangeTime\":\"19 days, 21:39:09.31\",\"lastInBytes\":2605222548,\"lastOutBytes\":2684106852,\"outBytes\":2684106852,\"outFlow\":34719,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1348136,\"inBytes\":2152927990,\"inFlow\":1313926,\"lastChangeTime\":\"19 days, 21:39:10.27\",\"lastInBytes\":2152927990,\"lastOutBytes\":4071629756,\"outBytes\":4071629756,\"outFlow\":34209,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1341432,\"inBytes\":1033638644,\"inFlow\":1307841,\"lastChangeTime\":\"19 days, 21:39:03.89\",\"lastInBytes\":1033638644,\"lastOutBytes\":1858771805,\"outBytes\":1858771805,\"outFlow\":33591,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1347742,\"inBytes\":1363683002,\"inFlow\":1313741,\"lastChangeTime\":\"19 days, 21:39:08.84\",\"lastInBytes\":1363683002,\"lastOutBytes\":1315248088,\"outBytes\":1315248088,\"outFlow\":34001,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":295352,\"inFlow\":0,\"lastChangeTime\":\"132 days, 23:00:49.65\",\"lastInBytes\":295352,\"lastOutBytes\":30278999,\"outBytes\":30278999,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":974647237,\"inFlow\":1,\"lastChangeTime\":\"132 days, 23:39:12.92\",\"lastInBytes\":974647237,\"lastOutBytes\":898005367,\"outBytes\":898005367,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":15766971,\"inBytes\":2435489144,\"inFlow\":392790,\"lastChangeTime\":\"355 days, 9:11:36.99\",\"lastInBytes\":2435489144,\"lastOutBytes\":1034304635,\"outBytes\":1034304635,\"outFlow\":15374180,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.154162000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095176", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1001040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface130\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"186084\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"2 days, 1:29:50.28\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:e6:a2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":1340643,\"inBytes\":125101969,\"inFlow\":1307660,\"lastChangeTime\":\"140 days, 9:12:29.55\",\"lastInBytes\":125101969,\"lastOutBytes\":2159483485,\"outBytes\":2159483485,\"outFlow\":32983,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":563830,\"inBytes\":4148433902,\"inFlow\":550021,\"lastChangeTime\":\"376 days, 10:07:22.27\",\"lastInBytes\":4148433902,\"lastOutBytes\":1888210132,\"outBytes\":1888210132,\"outFlow\":13808,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":282145,\"inBytes\":3737093937,\"inFlow\":275131,\"lastChangeTime\":\"376 days, 10:07:21.81\",\"lastInBytes\":3737093937,\"lastOutBytes\":4109675882,\"outBytes\":4109675882,\"outFlow\":7014,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":282088,\"inBytes\":1068999568,\"inFlow\":274978,\"lastChangeTime\":\"376 days, 10:07:27.99\",\"lastInBytes\":1068999568,\"lastOutBytes\":3648430766,\"outBytes\":3648430766,\"outFlow\":7110,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2229332,\"inFlow\":0,\"lastChangeTime\":\"132 days, 23:03:56.62\",\"lastInBytes\":2229332,\"lastOutBytes\":184847167,\"outBytes\":184847167,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":974637659,\"inFlow\":1,\"lastChangeTime\":\"134 days, 23:17:16.74\",\"lastInBytes\":974637659,\"lastOutBytes\":900846783,\"outBytes\":900846783,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2301907,\"inBytes\":3012442647,\"inFlow\":59570,\"lastChangeTime\":\"355 days, 9:07:10.35\",\"lastInBytes\":3012442647,\"lastOutBytes\":78480256,\"outBytes\":78480256,\"outFlow\":2242336,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.031786000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095177", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1001040006", + "name": "华为前端交换机5", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"7 days, 0:50:34.48\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:95\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.135\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":817453,\"inBytes\":2503762937,\"inFlow\":798464,\"lastChangeTime\":\"24 days, 21:37:58.56\",\"lastInBytes\":2503762937,\"lastOutBytes\":3880234665,\"outBytes\":3880234665,\"outFlow\":18988,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":819126,\"inBytes\":252940614,\"inFlow\":800108,\"lastChangeTime\":\"24 days, 21:37:55.71\",\"lastInBytes\":252940614,\"lastOutBytes\":3708454403,\"outBytes\":3708454403,\"outFlow\":19017,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"2:06:04.72\",\"lastInBytes\":0,\"lastOutBytes\":454137,\"outBytes\":454137,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":606819,\"inFlow\":0,\"lastChangeTime\":\"7 days, 0:53:48.99\",\"lastInBytes\":606819,\"lastOutBytes\":2096133,\"outBytes\":2096133,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":161680535,\"inFlow\":0,\"lastChangeTime\":\"7 days, 0:46:57.51\",\"lastInBytes\":161680535,\"lastOutBytes\":15083732,\"outBytes\":15083732,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":328,\"inBytes\":936197644,\"inFlow\":122,\"lastChangeTime\":\"140 days, 0:20:42.18\",\"lastInBytes\":936197644,\"lastOutBytes\":1413146866,\"outBytes\":1413146866,\"outFlow\":205,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1649983,\"inBytes\":1500634378,\"inFlow\":40540,\"lastChangeTime\":\"360 days, 9:18:06.09\",\"lastInBytes\":1500634378,\"lastOutBytes\":2903057759,\"outBytes\":2903057759,\"outFlow\":1609442,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:07.568587000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095178", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:41", + "echoMap": {}, + "deviceId": "1001040007", + "name": "华为前端交换机6", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"360 days, 9:11:38.73\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:3c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.136\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:40\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":819365,\"inBytes\":3216399648,\"inFlow\":800464,\"lastChangeTime\":\"24 days, 21:31:27.55\",\"lastInBytes\":3216399648,\"lastOutBytes\":713751036,\"outBytes\":713751036,\"outFlow\":18900,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":818791,\"inBytes\":2762851266,\"inFlow\":799878,\"lastChangeTime\":\"24 days, 21:31:20.08\",\"lastInBytes\":2762851266,\"lastOutBytes\":1906300049,\"outBytes\":1906300049,\"outFlow\":18913,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409439,\"inBytes\":3753065307,\"inFlow\":400101,\"lastChangeTime\":\"454 days, 23:44:41.94\",\"lastInBytes\":3753065307,\"lastOutBytes\":2690611253,\"outBytes\":2690611253,\"outFlow\":9337,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":531438,\"inFlow\":0,\"lastChangeTime\":\"7 days, 0:57:18.02\",\"lastInBytes\":531438,\"lastOutBytes\":4464419,\"outBytes\":4464419,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":169146258,\"inFlow\":0,\"lastChangeTime\":\"7 days, 0:50:29.45\",\"lastInBytes\":169146258,\"lastOutBytes\":40673456,\"outBytes\":40673456,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2052932,\"inBytes\":2139262802,\"inFlow\":49963,\"lastChangeTime\":\"360 days, 9:11:37.00\",\"lastInBytes\":2139262802,\"lastOutBytes\":1376846083,\"outBytes\":1376846083,\"outFlow\":2002969,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:08.347206000\"}}", + "lastDiagTime": "2026-02-02 14:38:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095179", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:41", + "echoMap": {}, + "deviceId": "1001040008", + "name": "华为前端交换机7", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:9f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.137\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:40\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1294328,\"inBytes\":1656515812,\"inFlow\":1264322,\"lastChangeTime\":\"97 days, 23:59:26.56\",\"lastInBytes\":1656515812,\"lastOutBytes\":3516604979,\"outBytes\":3516604979,\"outFlow\":30005,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":819235,\"inBytes\":525642573,\"inFlow\":800062,\"lastChangeTime\":\"242 days, 0:25:30.19\",\"lastInBytes\":525642573,\"lastOutBytes\":2998551703,\"outBytes\":2998551703,\"outFlow\":19173,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":410395,\"inBytes\":2531976499,\"inFlow\":401057,\"lastChangeTime\":\"174 days, 23:57:51.42\",\"lastInBytes\":2531976499,\"lastOutBytes\":2135107820,\"outBytes\":2135107820,\"outFlow\":9338,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":917059091,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":917059091,\"lastOutBytes\":3314858355,\"outBytes\":3314858355,\"outFlow\":88,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2529510,\"inBytes\":3307871119,\"inFlow\":61973,\"lastChangeTime\":\"80 days, 9:37:32.67\",\"lastInBytes\":3307871119,\"lastOutBytes\":3503632269,\"outBytes\":3503632269,\"outFlow\":2467537,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:08.641463000\"}}", + "lastDiagTime": "2026-02-02 14:38:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095180", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:58", + "echoMap": {}, + "deviceId": "1001040009", + "name": "华为前端交换机8", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"6 days, 23:16:34.12\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:87\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"17\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.138\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:57\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1294594,\"inBytes\":2886976984,\"inFlow\":1264051,\"lastChangeTime\":\"145 days, 9:03:45.13\",\"lastInBytes\":2886976984,\"lastOutBytes\":1331059776,\"outBytes\":1331059776,\"outFlow\":30543,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":821059,\"inBytes\":909648972,\"inFlow\":801905,\"lastChangeTime\":\"145 days, 9:02:46.89\",\"lastInBytes\":909648972,\"lastOutBytes\":3810642171,\"outBytes\":3810642171,\"outFlow\":19153,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":11755,\"inBytes\":1136799739,\"inFlow\":8289,\"lastChangeTime\":\"454 days, 22:57:34.02\",\"lastInBytes\":1136799739,\"lastOutBytes\":3613289578,\"outBytes\":3613289578,\"outFlow\":3466,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":935520253,\"inFlow\":1,\"lastChangeTime\":\"139 days, 23:52:36.28\",\"lastInBytes\":935520253,\"lastOutBytes\":1100242290,\"outBytes\":1100242290,\"outFlow\":88,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":161570,\"inFlow\":0,\"lastChangeTime\":\"6 days, 23:26:48.55\",\"lastInBytes\":161570,\"lastOutBytes\":5571,\"outBytes\":5571,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":149478619,\"inFlow\":0,\"lastChangeTime\":\"137 days, 23:02:51.01\",\"lastInBytes\":149478619,\"lastOutBytes\":33842246,\"outBytes\":33842246,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2132723,\"inBytes\":3353991975,\"inFlow\":56155,\"lastChangeTime\":\"360 days, 8:43:22.84\",\"lastInBytes\":3353991975,\"lastOutBytes\":2171959597,\"outBytes\":2171959597,\"outFlow\":2076568,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.476149000\"}}", + "lastDiagTime": "2026-02-02 14:38:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095181", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:37", + "echoMap": {}, + "deviceId": "1001040010", + "name": "华为前端交换机9", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"6 days, 23:31:00.67\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:7c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.139\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:37\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":820844,\"inBytes\":2651416980,\"inFlow\":801771,\"lastChangeTime\":\"24 days, 20:28:29.95\",\"lastInBytes\":2651416980,\"lastOutBytes\":1357019310,\"outBytes\":1357019310,\"outFlow\":19073,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":816134,\"inBytes\":2890664765,\"inFlow\":796921,\"lastChangeTime\":\"24 days, 20:28:35.96\",\"lastInBytes\":2890664765,\"lastOutBytes\":2534573073,\"outBytes\":2534573073,\"outFlow\":19213,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:59:33.87\",\"lastInBytes\":0,\"lastOutBytes\":204716,\"outBytes\":204716,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":380584,\"inFlow\":0,\"lastChangeTime\":\"6 days, 23:33:59.24\",\"lastInBytes\":380584,\"lastOutBytes\":1218809,\"outBytes\":1218809,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":156893171,\"inFlow\":0,\"lastChangeTime\":\"6 days, 23:27:42.22\",\"lastInBytes\":156893171,\"lastOutBytes\":18868332,\"outBytes\":18868332,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":935522966,\"inFlow\":1,\"lastChangeTime\":\"139 days, 22:58:46.37\",\"lastInBytes\":935522966,\"lastOutBytes\":1402024116,\"outBytes\":1402024116,\"outFlow\":88,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1646246,\"inBytes\":3252380155,\"inFlow\":40817,\"lastChangeTime\":\"360 days, 8:08:21.29\",\"lastInBytes\":3252380155,\"lastOutBytes\":3526728282,\"outBytes\":3526728282,\"outFlow\":1605428,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:07.965849000\"}}", + "lastDiagTime": "2026-02-02 14:38:37", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095182", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:38", + "echoMap": {}, + "deviceId": "1001040011", + "name": "华为前端交换机10", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"6 days, 23:31:29.87\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:fa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.140\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:38\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":817438,\"inBytes\":4213732598,\"inFlow\":798178,\"lastChangeTime\":\"24 days, 20:38:27.91\",\"lastInBytes\":4213732598,\"lastOutBytes\":4199197243,\"outBytes\":4199197243,\"outFlow\":19260,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":821987,\"inBytes\":2034613045,\"inFlow\":802735,\"lastChangeTime\":\"24 days, 20:38:38.66\",\"lastInBytes\":2034613045,\"lastOutBytes\":1110686027,\"outBytes\":1110686027,\"outFlow\":19251,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"1:12:46.21\",\"lastInBytes\":0,\"lastOutBytes\":252795,\"outBytes\":252795,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":445898,\"inFlow\":0,\"lastChangeTime\":\"6 days, 23:36:25.85\",\"lastInBytes\":445898,\"lastOutBytes\":1308883,\"outBytes\":1308883,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":153116777,\"inFlow\":0,\"lastChangeTime\":\"6 days, 23:27:19.81\",\"lastInBytes\":153116777,\"lastOutBytes\":14708426,\"outBytes\":14708426,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":935522888,\"inFlow\":1,\"lastChangeTime\":\"139 days, 23:05:07.14\",\"lastInBytes\":935522888,\"lastOutBytes\":1392755220,\"outBytes\":1392755220,\"outFlow\":88,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1642951,\"inBytes\":1493229634,\"inFlow\":40867,\"lastChangeTime\":\"360 days, 8:18:38.18\",\"lastInBytes\":1493229634,\"lastOutBytes\":1601831635,\"outBytes\":1601831635,\"outFlow\":1602083,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:08.099234000\"}}", + "lastDiagTime": "2026-02-02 14:38:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095183", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:39", + "echoMap": {}, + "deviceId": "1001040012", + "name": "华为前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:03:47.61\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:1f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:39\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":816103,\"inBytes\":190132952,\"inFlow\":797070,\"lastChangeTime\":\"138 days, 9:24:48.02\",\"lastInBytes\":190132952,\"lastOutBytes\":271262631,\"outBytes\":271262631,\"outFlow\":19032,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":814645,\"inBytes\":749103716,\"inFlow\":795270,\"lastChangeTime\":\"17 days, 21:21:02.30\",\"lastInBytes\":749103716,\"lastOutBytes\":3001565061,\"outBytes\":3001565061,\"outFlow\":19374,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":879176,\"inBytes\":1536751257,\"inFlow\":858827,\"lastChangeTime\":\"377 days, 13:03:12.11\",\"lastInBytes\":1536751257,\"lastOutBytes\":4077328811,\"outBytes\":4077328811,\"outFlow\":20349,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":486523,\"inFlow\":0,\"lastChangeTime\":\"0:09:30.19\",\"lastInBytes\":486523,\"lastOutBytes\":1305994,\"outBytes\":1305994,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":935523544,\"inFlow\":1,\"lastChangeTime\":\"132 days, 23:44:37.74\",\"lastInBytes\":935523544,\"lastOutBytes\":1137555788,\"outBytes\":1137555788,\"outFlow\":89,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2531166,\"inBytes\":900189305,\"inFlow\":62354,\"lastChangeTime\":\"370 days, 23:27:45.50\",\"lastInBytes\":900189305,\"lastOutBytes\":3334508799,\"outBytes\":3334508799,\"outFlow\":2468811,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:08.128347000\"}}", + "lastDiagTime": "2026-02-02 14:38:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095184", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:38", + "echoMap": {}, + "deviceId": "1001040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"6 days, 23:55:51.60\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:61\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:37\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1291787,\"inBytes\":4242371456,\"inFlow\":1261115,\"lastChangeTime\":\"145 days, 7:53:48.30\",\"lastInBytes\":4242371456,\"lastOutBytes\":1839754313,\"outBytes\":1839754313,\"outFlow\":30671,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":421061,\"inFlow\":0,\"lastChangeTime\":\"6 days, 23:59:11.53\",\"lastInBytes\":421061,\"lastOutBytes\":1286872,\"outBytes\":1286872,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":935522564,\"inFlow\":1,\"lastChangeTime\":\"139 days, 22:02:54.47\",\"lastInBytes\":935522564,\"lastOutBytes\":1397352268,\"outBytes\":1397352268,\"outFlow\":88,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1297561,\"inBytes\":2943536530,\"inFlow\":32864,\"lastChangeTime\":\"360 days, 7:30:35.84\",\"lastInBytes\":2943536530,\"lastOutBytes\":3208522090,\"outBytes\":3208522090,\"outFlow\":1264696,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:07.989827000\"}}", + "lastDiagTime": "2026-02-02 14:38:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598043980873095185", + "createdBy": "0", + "createdTime": "2025-03-07 13:39:07", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1001040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.130.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif130\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"7 days, 0:00:58.86\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:65\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.130.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:42\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":816029,\"inBytes\":55821346,\"inFlow\":796762,\"lastChangeTime\":\"145 days, 8:10:58.39\",\"lastInBytes\":55821346,\"lastOutBytes\":2342472678,\"outBytes\":2342472678,\"outFlow\":19266,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":719892,\"inFlow\":0,\"lastChangeTime\":\"7 days, 0:04:16.16\",\"lastInBytes\":719892,\"lastOutBytes\":9788969,\"outBytes\":9788969,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":96,\"inBytes\":935588010,\"inFlow\":1,\"lastChangeTime\":\"139 days, 22:11:14.06\",\"lastInBytes\":935588010,\"lastOutBytes\":1402419845,\"outBytes\":1402419845,\"outFlow\":94,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":825350,\"inBytes\":800809379,\"inFlow\":20781,\"lastChangeTime\":\"360 days, 7:47:21.31\",\"lastInBytes\":800809379,\"lastOutBytes\":2574376323,\"outBytes\":2574376323,\"outFlow\":804568,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:09.067891000\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "566453650302445583", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1001110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.129.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"5.24\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"229 days, 0:10:21.16\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3936260\",\"inErrors\":\"0\",\"inNUcastPkts\":\"10553843\",\"inOctets\":\"962023054\",\"inUcastPkts\":\"396510523\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:43:48\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3137842695\",\"outQLen\":\"0\",\"outUcastPkts\":\"408538918\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.129.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1002": { + "ndmAlarmHost": [ + { + "id": "687483616795621376", + "createdBy": null, + "createdTime": "2025-10-18 14:28:40", + "updatedBy": null, + "updatedTime": "2025-10-18 14:28:40", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.131.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "687483586730850307", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060001", + "name": "[404](10)2号航站楼1#闸入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850308", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060002", + "name": "[405](10)2号航站楼1#闸入5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850309", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060003", + "name": "[302](10)2号航站楼1#厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201050006002302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850310", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2026-01-15 00:00:00", + "echoMap": {}, + "deviceId": "1002060004", + "name": "[323](10)2号航站楼公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201040006002323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850311", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060005", + "name": "[406](10)2号航站楼1#闸入6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850312", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060006", + "name": "[504](10)2号航站楼票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201030006002504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850313", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060007", + "name": "[401](10)2号航站楼1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850314", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060008", + "name": "[407](10)2号航站楼1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850315", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060009", + "name": "[321](10)2号航站楼1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201036005002321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850316", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060010", + "name": "[402](10)2号航站楼1#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483586730850317", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060011", + "name": "[408](10)2号航站楼1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817600", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060012", + "name": "[301](10)2号航站楼1#厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201050006002301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817601", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060013", + "name": "[403](10)2号航站楼1#闸入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817602", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060014", + "name": "[409](10)2号航站楼1#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201005006002409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817603", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060015", + "name": "[501](10)2号航站楼客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201001006002501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817604", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060016", + "name": "[201](10)2号航站楼厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201035004002201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817605", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060017", + "name": "[317](10)2号航站楼1F垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201040006002317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817606", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2026-01-12 15:37:33", + "echoMap": {}, + "deviceId": "1002060018", + "name": "[416](10)2号航站楼2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002416", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817607", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:01:04", + "echoMap": {}, + "deviceId": "1002060019", + "name": "[417](10)2号航站楼2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002417", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817608", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060020", + "name": "[303](10)2号航站楼2#厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201050006002303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817609", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060021", + "name": "[318](10)2号航站楼1F垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201040006002318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817610", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060022", + "name": "[322](10)2号航站楼2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201036005002322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817611", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060023", + "name": "[410](10)2号航站楼2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817612", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060024", + "name": "[411](10)2号航站楼2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002411", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817613", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060025", + "name": "[304](10)2号航站楼2#厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201050006002304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817614", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060026", + "name": "[503](10)2号航站楼客服3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201001006002503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817615", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060027", + "name": "[202](10)2号航站楼厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201035004002202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817616", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060028", + "name": "[412](10)2号航站楼2#闸入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002412", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817617", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2026-01-15 00:00:00", + "echoMap": {}, + "deviceId": "1002060029", + "name": "[324](10)2号航站楼安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201085006002324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483591025817618", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060030", + "name": "[502](10)2号航站楼客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201001006002502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784896", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060031", + "name": "[305](10)2号航站楼3#厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201050006002305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784897", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060032", + "name": "[414](10)2号航站楼2#闸入5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002414", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784898", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060033", + "name": "[306](10)2号航站楼3#厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201050006002306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784899", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060034", + "name": "[203](10)2号航站楼厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201035004002203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784900", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060035", + "name": "[413](10)2号航站楼2#闸入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201006006002413", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784901", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060036", + "name": "[505](10)2号航站楼票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060201030006002505", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784902", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060037", + "name": "[618](10)2号航站楼内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784903", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060038", + "name": "[619](10)2号航站楼内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784904", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060039", + "name": "[611](10)2号航站楼民用通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203051005002611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784905", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060040", + "name": "[612](10)2号航站楼公网引入室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203051005002612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784906", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060041", + "name": "[607](10)2号航站楼弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203048005002607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784907", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060042", + "name": "[608](10)2号航站楼弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203048005002608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784908", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060043", + "name": "[605](10)2号航站楼弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203048005002605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784909", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060044", + "name": "[613](10)2号航站楼气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203067005002613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784910", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060045", + "name": "[606](10)2号航站楼弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203048005002606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483595320784911", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060046", + "name": "[609](10)2号航站楼屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203048005002609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752192", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060047", + "name": "[615](10)2号航站楼内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752193", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060048", + "name": "[616](10)2号航站楼内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021005002616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752194", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060049", + "name": "[602](10)2号航站楼编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203041005002602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752195", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060050", + "name": "[603](10)2号航站楼编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203041005002603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752196", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060051", + "name": "[601](10)2号航站楼车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203042004002601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752197", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1002060052", + "name": "[604](10)2号航站楼编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203041005002604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752198", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060053", + "name": "[617](10)2号航站楼内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752199", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1002060054", + "name": "[207](10)2号航站楼上行球1-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752200", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060055", + "name": "[319](10)2号航站楼B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202002006002319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752201", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060056", + "name": "[206](10)2号航站楼上行球1-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752202", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060057", + "name": "[308](10)2号航站楼1#台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752203", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060058", + "name": "[307](10)2号航站楼1#台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752204", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060059", + "name": "[310](10)2号航站楼1#台扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752205", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-12-17 05:42:37", + "echoMap": {}, + "deviceId": "1002060060", + "name": "[309](10)2号航站楼1#台扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752206", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060061", + "name": "[208](10)2号航站楼上行球1-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483599615752207", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060062", + "name": "[105](10)2号航站楼上行1-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719488", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060063", + "name": "[103](10)2号航站楼上行1-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719489", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060064", + "name": "[106](10)2号航站楼上行1-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719490", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060065", + "name": "[104](10)2号航站楼上行1-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719491", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060066", + "name": "[622](10)2号航站楼内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719492", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-12-12 15:05:37", + "echoMap": {}, + "deviceId": "1002060067", + "name": "[205](10)2号航站楼上行球1-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719493", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-12-12 15:05:37", + "echoMap": {}, + "deviceId": "1002060068", + "name": "[204](10)2号航站楼上行球1-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719494", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060069", + "name": "[623](10)2号航站楼内通道9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719495", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1002060070", + "name": "[624](10)2号航站楼内通道10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719496", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060071", + "name": "[101](10)2号航站楼上行1-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719497", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060072", + "name": "[102](10)2号航站楼上行1-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719498", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060073", + "name": "[625](10)2号航站楼内通道11", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021004002625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719499", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060074", + "name": "[111](10)2号航站楼上行2-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719500", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060075", + "name": "[109](10)2号航站楼上行2-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483603910719501", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1002060076", + "name": "[112](10)2号航站楼上行2-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686784", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060077", + "name": "[210](10)2号航站楼上行球2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686785", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060078", + "name": "[620](10)2号航站楼内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021005002620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686786", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060079", + "name": "[311](10)2号航站楼2#台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686787", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060080", + "name": "[320](10)2号航站楼B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202002006002320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686788", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060081", + "name": "[313](10)2号航站楼2#台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686789", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060082", + "name": "[621](10)2号航站楼内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686790", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060083", + "name": "[114](10)2号航站楼下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202012006002114", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686791", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060084", + "name": "[116](10)2号航站楼下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202012006002116", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686792", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060085", + "name": "[113](10)2号航站楼下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202012006002113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686793", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1002060086", + "name": "[211](10)2号航站楼下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686794", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060087", + "name": "[312](10)2号航站楼2#台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686795", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060088", + "name": "[107](10)2号航站楼上行2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686796", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060089", + "name": "[110](10)2号航站楼上行2-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686797", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060090", + "name": "[108](10)2号航站楼上行2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202007006002108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686798", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060091", + "name": "[209](10)2号航站楼上行球2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483608205686799", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060092", + "name": "[626](10)2号航站楼内通道12", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654080", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060093", + "name": "[314](10)2号航站楼3#台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654081", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060094", + "name": "[316](10)2号航站楼3#台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654082", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1002060095", + "name": "[627](10)2号航站楼内通道13", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203021006002627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654083", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1002060096", + "name": "[118](10)2号航站楼下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202012006002118", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654084", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060097", + "name": "[115](10)2号航站楼下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202012006002115", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654085", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060098", + "name": "[117](10)2号航站楼下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202012006002117", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654086", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060099", + "name": "[212](10)2号航站楼下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202001004002212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654087", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1002060100", + "name": "[315](10)2号航站楼3#台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060202017006002315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654088", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-12-12 15:06:37", + "echoMap": {}, + "deviceId": "1002060101", + "name": "[614](10)2号航站楼气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.131.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203067005002614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654089", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060102", + "name": "[628](10)2号航站楼上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.132.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060204013006002628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654090", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060103", + "name": "[629](10)2号航站楼下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.132.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060204013006002629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654091", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060104", + "name": "[630](10)2号航站楼T2-T1上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.132.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060204012004002630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483612500654092", + "createdBy": "0", + "createdTime": "2025-10-18 14:27:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060105", + "name": "[631](10)2号航站楼T2-T1下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.132.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060204012004002631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693430853715430410", + "createdBy": null, + "createdTime": "2025-11-06 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1002060106", + "name": "[632](10)2号航站楼车控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.132.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060203042005002632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585048230174137915", + "createdBy": "0", + "createdTime": "2025-01-21 13:01:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1002070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.131.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"392419\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3986453019\",\"inUcastPkts\":\"914319642\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:00\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2849730865\",\"outQLen\":\"0\",\"outUcastPkts\":\"286883266\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.131.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:42\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ1195F\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585048230174137916", + "createdBy": "2", + "createdTime": "2025-01-21 13:02:55", + "updatedBy": null, + "updatedTime": "2026-01-15 09:40:34", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.131.52", + "manageUrl": "http:\\\\10.18.131.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585048230174137917", + "createdBy": "2", + "createdTime": "2025-01-21 13:05:13", + "updatedBy": null, + "updatedTime": "2025-12-23 10:04:49", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.131.51", + "manageUrl": "http:\\\\10.18.131.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585048230174137851", + "createdBy": "0", + "createdTime": "2025-01-21 13:01:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1002090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.131.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.08\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"430 days, 11:20:21.69\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"19708999\",\"inErrors\":\"0\",\"inNUcastPkts\":\"19837126\",\"inOctets\":\"805353172\",\"inUcastPkts\":\"3373763107\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:95:03\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2726293701\",\"outQLen\":\"0\",\"outUcastPkts\":\"1908069014\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.131.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585048230174137344", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1002050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.131.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060200000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"52798074\",\"inErrors\":\"0\",\"inNUcastPkts\":\"44445365\",\"inOctets\":\"3736201889\",\"inUcastPkts\":\"397402265\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ae:5f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2108934720\",\"outQLen\":\"0\",\"outUcastPkts\":\"1733728824\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.131.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:43\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":927353949,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13123\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"55\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.131.23" + }, + { + "id": "585048230174137345", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1002050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.131.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060200000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"52801898\",\"inErrors\":\"0\",\"inNUcastPkts\":\"35131346\",\"inOctets\":\"3910276208\",\"inUcastPkts\":\"1599669397\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ad:11\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2850254478\",\"outQLen\":\"0\",\"outUcastPkts\":\"1898522337\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4360\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.131.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:44\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":927353949,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13122\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.131.22" + }, + { + "id": "585048230174137346", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-06-09 14:00:24", + "echoMap": {}, + "deviceId": "1002050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.131.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060200000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.131.22;10.18.131.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589936212194631680", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1002030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2530912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139144880\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"131 days, 1:13:33.75\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2530917\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:14:75\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.245,\"status\":1,\"voltage\":25.746},{\"current\":0.24700001,\"status\":1,\"voltage\":25.746},{\"current\":0.22800002,\"status\":1,\"voltage\":25.746},{\"current\":0.279,\"status\":1,\"voltage\":25.746},{\"current\":0.246,\"status\":1,\"voltage\":25.746},{\"current\":0.333,\"status\":1,\"voltage\":25.746},{\"current\":0.001,\"status\":1,\"voltage\":25.746},{\"current\":0.001,\"status\":1,\"voltage\":25.746},{\"current\":0.001,\"status\":1,\"voltage\":25.746},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.003,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304713\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631681", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1002030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2530910\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139145939\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"131 days, 2:52:07.25\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2530915\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:14:36\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25500003,\"status\":1,\"voltage\":25.782001},{\"current\":0.26000002,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":25.782001},{\"current\":0.256,\"status\":1,\"voltage\":25.782001},{\"current\":0.252,\"status\":1,\"voltage\":25.782001},{\"current\":0.231,\"status\":1,\"voltage\":25.782001},{\"current\":0.25300002,\"status\":1,\"voltage\":25.782001},{\"current\":0.25300002,\"status\":1,\"voltage\":25.782001},{\"current\":0.25100002,\"status\":1,\"voltage\":25.782001},{\"current\":0.509,\"status\":1,\"voltage\":26.663002},{\"current\":0.003,\"status\":1,\"voltage\":26.663002},{\"current\":0.23600002,\"status\":1,\"voltage\":26.663002},{\"current\":0.001,\"status\":1,\"voltage\":26.663002},{\"current\":0.001,\"status\":1,\"voltage\":26.663002},{\"current\":0.001,\"status\":1,\"voltage\":26.663002},{\"current\":0.001,\"status\":1,\"voltage\":26.663002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304714\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631682", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1002030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2530910\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139144705\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"104 days, 17:09:49.73\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2530915\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:14:88\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23400001,\"status\":1,\"voltage\":25.747002},{\"current\":0.23300001,\"status\":1,\"voltage\":25.747002},{\"current\":0.23300001,\"status\":1,\"voltage\":25.747002},{\"current\":0.23200001,\"status\":1,\"voltage\":25.747002},{\"current\":0.001,\"status\":1,\"voltage\":25.747002},{\"current\":0.001,\"status\":1,\"voltage\":25.747002},{\"current\":0.246,\"status\":1,\"voltage\":25.747002},{\"current\":0.24700001,\"status\":1,\"voltage\":25.747002},{\"current\":0.24000001,\"status\":1,\"voltage\":25.747002},{\"current\":0.22800002,\"status\":1,\"voltage\":26.481},{\"current\":0.002,\"status\":1,\"voltage\":26.481},{\"current\":0.50100005,\"status\":1,\"voltage\":26.481},{\"current\":0.24000001,\"status\":1,\"voltage\":26.481},{\"current\":0.261,\"status\":1,\"voltage\":26.481},{\"current\":0.22900002,\"status\":1,\"voltage\":26.481},{\"current\":0.001,\"status\":1,\"voltage\":26.481}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304724\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631683", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1002030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2531244\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139162407\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"131 days, 0:48:58.57\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2531249\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:8a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.793001},{\"current\":0.22100002,\"status\":1,\"voltage\":25.793001},{\"current\":0.23600002,\"status\":1,\"voltage\":25.793001},{\"current\":0.001,\"status\":1,\"voltage\":25.793001},{\"current\":0.224,\"status\":1,\"voltage\":25.793001},{\"current\":0.50100005,\"status\":1,\"voltage\":25.793001},{\"current\":0.23600002,\"status\":1,\"voltage\":25.793001},{\"current\":0.34300002,\"status\":1,\"voltage\":25.793001},{\"current\":0.001,\"status\":1,\"voltage\":25.793001},{\"current\":0.001,\"status\":1,\"voltage\":25.979002},{\"current\":0.003,\"status\":1,\"voltage\":25.979002},{\"current\":0.001,\"status\":1,\"voltage\":25.979002},{\"current\":0.001,\"status\":1,\"voltage\":25.979002},{\"current\":0.001,\"status\":1,\"voltage\":25.979002},{\"current\":0.001,\"status\":1,\"voltage\":25.979002},{\"current\":0.001,\"status\":1,\"voltage\":25.979002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0012512208304723\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631684", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1002030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4407573\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"244168315\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"132 days, 3:55:17.81\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4407578\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:d2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24000001,\"status\":1,\"voltage\":25.745},{\"current\":0.23,\"status\":1,\"voltage\":25.745},{\"current\":0.231,\"status\":1,\"voltage\":25.745},{\"current\":0.001,\"status\":1,\"voltage\":25.745},{\"current\":0.23400001,\"status\":1,\"voltage\":25.745},{\"current\":0.246,\"status\":1,\"voltage\":25.745},{\"current\":0.24200001,\"status\":1,\"voltage\":25.745},{\"current\":0.246,\"status\":1,\"voltage\":25.745},{\"current\":0.23600002,\"status\":1,\"voltage\":25.745},{\"current\":0.24300002,\"status\":1,\"voltage\":26.356},{\"current\":0.003,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356}],\"fanSpeeds\":[3210,3210],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":29}],\"stCommonInfo\":{\"设备ID\":\"0012512208304715\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631685", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1002030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4407426\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"244159819\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"132 days, 15:11:08.75\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4407431\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:13:ef\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.231,\"status\":1,\"voltage\":26.141},{\"current\":0.001,\"status\":1,\"voltage\":26.141},{\"current\":0.23700002,\"status\":1,\"voltage\":26.141},{\"current\":0.23400001,\"status\":1,\"voltage\":26.141},{\"current\":0.22600001,\"status\":1,\"voltage\":26.141},{\"current\":0.535,\"status\":1,\"voltage\":26.141},{\"current\":0.231,\"status\":1,\"voltage\":26.141},{\"current\":0.48900002,\"status\":1,\"voltage\":26.141},{\"current\":0.432,\"status\":1,\"voltage\":26.141},{\"current\":0.0,\"status\":1,\"voltage\":25.797},{\"current\":0.003,\"status\":1,\"voltage\":25.797},{\"current\":0.001,\"status\":1,\"voltage\":25.797},{\"current\":0.001,\"status\":1,\"voltage\":25.797},{\"current\":0.001,\"status\":1,\"voltage\":25.797},{\"current\":0.001,\"status\":1,\"voltage\":25.797},{\"current\":0.001,\"status\":1,\"voltage\":25.797}],\"fanSpeeds\":[3390,3450],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":29}],\"stCommonInfo\":{\"设备ID\":\"0012512208304711\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631686", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1002030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2503021\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"137611466\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2503026\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:14:5a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.514,\"status\":1,\"voltage\":25.592001},{\"current\":0.30800003,\"status\":1,\"voltage\":25.592001},{\"current\":0.50200003,\"status\":1,\"voltage\":25.592001},{\"current\":0.30100003,\"status\":1,\"voltage\":25.592001},{\"current\":0.319,\"status\":1,\"voltage\":25.592001},{\"current\":0.305,\"status\":1,\"voltage\":25.592001},{\"current\":0.305,\"status\":1,\"voltage\":25.592001},{\"current\":0.55700004,\"status\":1,\"voltage\":25.592001},{\"current\":0.30100003,\"status\":1,\"voltage\":25.592001},{\"current\":0.25500003,\"status\":1,\"voltage\":25.710001},{\"current\":0.003,\"status\":1,\"voltage\":25.710001},{\"current\":0.289,\"status\":1,\"voltage\":25.710001},{\"current\":0.25100002,\"status\":1,\"voltage\":25.710001},{\"current\":0.24700001,\"status\":1,\"voltage\":25.710001},{\"current\":0.001,\"status\":1,\"voltage\":25.710001},{\"current\":0.001,\"status\":1,\"voltage\":25.710001}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304710\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631687", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1002030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2503021\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"137610633\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"131 days, 7:34:15.77\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2503026\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:1a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.208,\"status\":1,\"voltage\":25.881},{\"current\":0.21900001,\"status\":1,\"voltage\":25.881},{\"current\":0.001,\"status\":1,\"voltage\":25.881},{\"current\":0.001,\"status\":1,\"voltage\":25.881},{\"current\":0.0,\"status\":1,\"voltage\":25.881},{\"current\":0.0,\"status\":1,\"voltage\":25.881},{\"current\":0.513,\"status\":1,\"voltage\":25.881},{\"current\":0.52400005,\"status\":1,\"voltage\":25.881},{\"current\":0.28100002,\"status\":1,\"voltage\":25.881},{\"current\":0.31100002,\"status\":1,\"voltage\":26.490002},{\"current\":0.003,\"status\":1,\"voltage\":26.490002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.490002},{\"current\":0.25,\"status\":1,\"voltage\":26.490002},{\"current\":0.238,\"status\":1,\"voltage\":26.490002},{\"current\":0.231,\"status\":1,\"voltage\":26.490002},{\"current\":0.001,\"status\":1,\"voltage\":26.490002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304721\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631688", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1002030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2503021\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"137611622\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"131 days, 2:23:27.89\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2503026\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:14:8a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.653002},{\"current\":0.25500003,\"status\":1,\"voltage\":25.653002},{\"current\":0.28300002,\"status\":1,\"voltage\":25.653002},{\"current\":0.569,\"status\":1,\"voltage\":25.653002},{\"current\":0.23600002,\"status\":1,\"voltage\":25.653002},{\"current\":0.29900002,\"status\":1,\"voltage\":25.653002},{\"current\":0.259,\"status\":1,\"voltage\":25.653002},{\"current\":0.28100002,\"status\":1,\"voltage\":25.653002},{\"current\":0.335,\"status\":1,\"voltage\":25.653002},{\"current\":0.279,\"status\":1,\"voltage\":25.935001},{\"current\":0.003,\"status\":1,\"voltage\":25.935001},{\"current\":0.24300002,\"status\":1,\"voltage\":25.935001},{\"current\":0.26700002,\"status\":1,\"voltage\":25.935001},{\"current\":0.517,\"status\":1,\"voltage\":25.935001},{\"current\":0.282,\"status\":1,\"voltage\":25.935001},{\"current\":0.41400003,\"status\":1,\"voltage\":25.935001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304712\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631689", + "createdBy": "0", + "createdTime": "2025-03-07 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:54", + "echoMap": {}, + "deviceId": "1002030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:35:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483616795621393", + "createdBy": null, + "createdTime": "2025-10-18 14:30:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:02", + "echoMap": {}, + "deviceId": null, + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483616795621394", + "createdBy": null, + "createdTime": "2025-10-18 14:30:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:10", + "echoMap": {}, + "deviceId": null, + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.132.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589936212194631778", + "createdBy": "2", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:42", + "echoMap": {}, + "deviceId": "1002040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.131.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif131\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"55\",\"lastChange\":\"0:03:05.50\",\"mTU\":\"1500\",\"macAddress\":\"48:dc:2d:15:e9:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"7\",\"temperature\":\"41\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.131.64\",\"index\":\"55\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"438\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:42\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:03.41\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":19247,\"inBytes\":1337965882,\"inFlow\":8875,\"lastChangeTime\":\"18 days, 7:21:16.36\",\"lastInBytes\":1337965882,\"lastOutBytes\":237077669,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":237077669,\"outFlow\":10372,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18357437,\"inBytes\":2019610222,\"inFlow\":8366641,\"lastChangeTime\":\"18 days, 6:41:36.96\",\"lastInBytes\":2019610222,\"lastOutBytes\":204527351,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":204527351,\"outFlow\":9990795,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":34486,\"inBytes\":1837244703,\"inFlow\":17199,\"lastChangeTime\":\"0:03:08.41\",\"lastInBytes\":1837244703,\"lastOutBytes\":864934407,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":864934407,\"outFlow\":17287,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":478,\"inBytes\":187673788,\"inFlow\":16,\"lastChangeTime\":\"277 days, 8:18:25.45\",\"lastInBytes\":187673788,\"lastOutBytes\":3597674574,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3597674574,\"outFlow\":462,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2103796,\"inBytes\":4119994575,\"inFlow\":39302,\"lastChangeTime\":\"423 days, 23:06:32.57\",\"lastInBytes\":4119994575,\"lastOutBytes\":2410301843,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2410301843,\"outFlow\":2064494,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":11844678,\"inBytes\":485174068,\"inFlow\":507740,\"lastChangeTime\":\"192 days, 10:42:50.92\",\"lastInBytes\":485174068,\"lastOutBytes\":1661226092,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1661226092,\"outFlow\":11336938,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9963378,\"inBytes\":1350205965,\"inFlow\":571789,\"lastChangeTime\":\"192 days, 10:42:50.97\",\"lastInBytes\":1350205965,\"lastOutBytes\":4081460128,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4081460128,\"outFlow\":9391589,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":20623137,\"inBytes\":878265804,\"inFlow\":383077,\"lastChangeTime\":\"192 days, 10:43:05.62\",\"lastInBytes\":878265804,\"lastOutBytes\":3298412823,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3298412823,\"outFlow\":20240059,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":383796,\"inBytes\":679158767,\"inFlow\":383350,\"lastChangeTime\":\"192 days, 10:43:04.65\",\"lastInBytes\":679158767,\"lastOutBytes\":2310206139,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2310206139,\"outFlow\":445,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":976,\"inBytes\":2988409775,\"inFlow\":220,\"lastChangeTime\":\"277 days, 6:02:52.00\",\"lastInBytes\":2988409775,\"lastOutBytes\":1662471637,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1662471637,\"outFlow\":756,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":695,\"inBytes\":2024386012,\"inFlow\":148,\"lastChangeTime\":\"277 days, 6:01:25.78\",\"lastInBytes\":2024386012,\"lastOutBytes\":3141276179,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3141276179,\"outFlow\":546,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":1798850,\"inBytes\":3815288528,\"inFlow\":12871,\"lastChangeTime\":\"366 days, 8:23:19.84\",\"lastInBytes\":3815288528,\"lastOutBytes\":92727344,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":92727344,\"outFlow\":1785979,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":523,\"inBytes\":1181951416,\"inFlow\":59,\"lastChangeTime\":\"221 days, 20:39:33.32\",\"lastInBytes\":1181951416,\"lastOutBytes\":195036652,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":195036652,\"outFlow\":464,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":690,\"inBytes\":2012287640,\"inFlow\":146,\"lastChangeTime\":\"409 days, 11:52:37.50\",\"lastInBytes\":2012287640,\"lastOutBytes\":2977475094,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2977475094,\"outFlow\":544,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":476,\"inBytes\":403027861,\"inFlow\":16,\"lastChangeTime\":\"412 days, 6:29:17.01\",\"lastInBytes\":403027861,\"lastOutBytes\":2827533390,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2827533390,\"outFlow\":459,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":768811,\"inBytes\":2368684431,\"inFlow\":4410,\"lastChangeTime\":\"430 days, 4:34:36.68\",\"lastInBytes\":2368684431,\"lastOutBytes\":1155822033,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1155822033,\"outFlow\":764400,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1826299,\"inFlow\":0,\"lastChangeTime\":\"277 days, 8:11:25.18\",\"lastInBytes\":1826299,\"lastOutBytes\":6449323,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6449323,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":120,\"inBytes\":65777491,\"inFlow\":103,\"lastChangeTime\":\"423 days, 7:47:40.74\",\"lastInBytes\":65777491,\"lastOutBytes\":10918310,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":10918310,\"outFlow\":17,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":31,\"inBytes\":9021350,\"inFlow\":14,\"lastChangeTime\":\"423 days, 7:48:18.33\",\"lastInBytes\":9021350,\"lastOutBytes\":10871144,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":10871144,\"outFlow\":17,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33394,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":524,\"opticalVoltage\":3293,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34319,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":472,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35939,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":571,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36119,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":466,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36141,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":571,\"opticalVoltage\":3287,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36599,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":480,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37919,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":619,\"opticalVoltage\":3268,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36332,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":376,\"opticalVoltage\":3284,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38400,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":595,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37796,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":530,\"opticalVoltage\":3293,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37349,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":474,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35340,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":528,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":31514104,\"inBytes\":289840831,\"inFlow\":975780,\"lastChangeTime\":\"186 days, 7:01:06.00\",\"lastInBytes\":289840831,\"lastOutBytes\":428705087,\"opticalBiasCurrent\":39360,\"opticalReceivePower\":578,\"opticalTemperature\":59,\"opticalTransmitPower\":517,\"opticalVoltage\":3340,\"outBytes\":428705087,\"outFlow\":30538324,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37560,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":451,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40560,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":533,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40439,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":665,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39262,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":466,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39737,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":552,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38490,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":329,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38706,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":487,\"opticalVoltage\":3361,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":637,\"inBytes\":2655034410,\"inFlow\":71,\"lastChangeTime\":\"192 days, 11:49:20.85\",\"lastInBytes\":2655034410,\"lastOutBytes\":423965703,\"opticalBiasCurrent\":14279,\"opticalReceivePower\":192,\"opticalTemperature\":54,\"opticalTransmitPower\":276,\"opticalVoltage\":3302,\"outBytes\":423965703,\"outFlow\":566,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39695,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":554,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":3082265,\"inBytes\":2236304888,\"inFlow\":3295,\"lastChangeTime\":\"213 days, 10:09:02.26\",\"lastInBytes\":2236304888,\"lastOutBytes\":3147887034,\"opticalBiasCurrent\":35526,\"opticalReceivePower\":368,\"opticalTemperature\":57,\"opticalTransmitPower\":483,\"opticalVoltage\":3342,\"outBytes\":3147887034,\"outFlow\":3078970,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":398312,\"inBytes\":1167866919,\"inFlow\":10692,\"lastChangeTime\":\"0:06:14.16\",\"lastInBytes\":1167866919,\"lastOutBytes\":806909048,\"opticalBiasCurrent\":37200,\"opticalReceivePower\":406,\"opticalTemperature\":55,\"opticalTransmitPower\":510,\"opticalVoltage\":3351,\"outBytes\":806909048,\"outFlow\":387620,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4471269,\"inBytes\":3306612686,\"inFlow\":4326154,\"lastChangeTime\":\"221 days, 21:40:06.07\",\"lastInBytes\":3306612686,\"lastOutBytes\":1889106446,\"opticalBiasCurrent\":14824,\"opticalReceivePower\":123,\"opticalTemperature\":51,\"opticalTransmitPower\":266,\"opticalVoltage\":3349,\"outBytes\":1889106446,\"outFlow\":145114,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8225437,\"inBytes\":1321089760,\"inFlow\":7955410,\"lastChangeTime\":\"378 days, 11:11:09.14\",\"lastInBytes\":1321089760,\"lastOutBytes\":2828593228,\"opticalBiasCurrent\":15975,\"opticalReceivePower\":171,\"opticalTemperature\":51,\"opticalTransmitPower\":268,\"opticalVoltage\":3349,\"outBytes\":2828593228,\"outFlow\":270026,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5289618,\"inBytes\":3781333645,\"inFlow\":5118105,\"lastChangeTime\":\"230 days, 0:34:35.33\",\"lastInBytes\":3781333645,\"lastOutBytes\":3099461714,\"opticalBiasCurrent\":12135,\"opticalReceivePower\":94,\"opticalTemperature\":52,\"opticalTransmitPower\":263,\"opticalVoltage\":3362,\"outBytes\":3099461714,\"outFlow\":171513,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3637675,\"inBytes\":119481050,\"inFlow\":3522657,\"lastChangeTime\":\"241 days, 11:44:50.21\",\"lastInBytes\":119481050,\"lastOutBytes\":2034901643,\"opticalBiasCurrent\":13288,\"opticalReceivePower\":6,\"opticalTemperature\":54,\"opticalTransmitPower\":263,\"opticalVoltage\":3305,\"outBytes\":2034901643,\"outFlow\":115018,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5397732,\"inBytes\":3727280166,\"inFlow\":5226196,\"lastChangeTime\":\"241 days, 11:20:10.70\",\"lastInBytes\":3727280166,\"lastOutBytes\":2716707502,\"opticalBiasCurrent\":15592,\"opticalReceivePower\":3,\"opticalTemperature\":48,\"opticalTransmitPower\":265,\"opticalVoltage\":3315,\"outBytes\":2716707502,\"outFlow\":171536,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5495454,\"inBytes\":1800866943,\"inFlow\":5318867,\"lastChangeTime\":\"237 days, 6:35:20.17\",\"lastInBytes\":1800866943,\"lastOutBytes\":2097880101,\"opticalBiasCurrent\":14439,\"opticalReceivePower\":22,\"opticalTemperature\":51,\"opticalTransmitPower\":262,\"opticalVoltage\":3352,\"outBytes\":2097880101,\"outFlow\":176586,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13973362,\"inBytes\":3505385906,\"inFlow\":13545186,\"lastChangeTime\":\"192 days, 10:43:12.20\",\"lastInBytes\":3505385906,\"lastOutBytes\":2401911025,\"opticalBiasCurrent\":13288,\"opticalReceivePower\":284,\"opticalTemperature\":55,\"opticalTransmitPower\":271,\"opticalVoltage\":3331,\"outBytes\":2401911025,\"outFlow\":428176,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8347181,\"inBytes\":2161072120,\"inFlow\":8085714,\"lastChangeTime\":\"192 days, 10:43:11.73\",\"lastInBytes\":2161072120,\"lastOutBytes\":1449211500,\"opticalBiasCurrent\":15208,\"opticalReceivePower\":36,\"opticalTemperature\":53,\"opticalTransmitPower\":270,\"opticalVoltage\":3322,\"outBytes\":1449211500,\"outFlow\":261467,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14342319,\"inBytes\":1599428122,\"inFlow\":13881172,\"lastChangeTime\":\"192 days, 10:43:19.07\",\"lastInBytes\":1599428122,\"lastOutBytes\":1548181535,\"opticalBiasCurrent\":13671,\"opticalReceivePower\":26,\"opticalTemperature\":48,\"opticalTransmitPower\":271,\"opticalVoltage\":3296,\"outBytes\":1548181535,\"outFlow\":461146,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14057357,\"inBytes\":2808576504,\"inFlow\":13610053,\"lastChangeTime\":\"291 days, 22:44:12.13\",\"lastInBytes\":2808576504,\"lastOutBytes\":540676418,\"opticalBiasCurrent\":15592,\"opticalReceivePower\":142,\"opticalTemperature\":51,\"opticalTransmitPower\":266,\"opticalVoltage\":3349,\"outBytes\":540676418,\"outFlow\":447304,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":282409,\"inBytes\":3552856314,\"inFlow\":271303,\"lastChangeTime\":\"263 days, 23:15:48.72\",\"lastInBytes\":3552856314,\"lastOutBytes\":3059573968,\"opticalBiasCurrent\":14055,\"opticalReceivePower\":7,\"opticalTemperature\":52,\"opticalTransmitPower\":277,\"opticalVoltage\":3309,\"outBytes\":3059573968,\"outFlow\":11106,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":282413,\"inBytes\":4069756090,\"inFlow\":271381,\"lastChangeTime\":\"270 days, 11:23:37.88\",\"lastInBytes\":4069756090,\"lastOutBytes\":1684406638,\"opticalBiasCurrent\":15975,\"opticalReceivePower\":190,\"opticalTemperature\":48,\"opticalTransmitPower\":271,\"opticalVoltage\":3322,\"outBytes\":1684406638,\"outFlow\":11031,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13671,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":269,\"opticalVoltage\":3349,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14439,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":269,\"opticalVoltage\":3347,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14055,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":267,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13288,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":260,\"opticalVoltage\":3375,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12520,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":269,\"opticalVoltage\":3357,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13288,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":260,\"opticalVoltage\":3388,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13288,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":267,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14439,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":261,\"opticalVoltage\":3375,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13288,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":270,\"opticalVoltage\":3336,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14439,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":262,\"opticalVoltage\":3361,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14439,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":269,\"opticalVoltage\":3349,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10984,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":261,\"opticalVoltage\":3401,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:24.047690000\"}}", + "lastDiagTime": "2026-02-02 14:37:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631779", + "createdBy": "2", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:20", + "echoMap": {}, + "deviceId": "1002040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"75006\",\"inUnknownProtos\":\"924614419\",\"index\":\"634\",\"lastChange\":\"0:01:19.27\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:bc:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2429631069\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":803272,\"inBytes\":1289922214,\"inFlow\":782617,\"lastChangeTime\":\"35 days, 21:05:19.74\",\"lastInBytes\":1289922214,\"lastOutBytes\":2264612454,\"outBytes\":2264612454,\"outFlow\":20654,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":802206,\"inBytes\":2714661864,\"inFlow\":781376,\"lastChangeTime\":\"35 days, 21:05:18.51\",\"lastInBytes\":2714661864,\"lastOutBytes\":2968329313,\"outBytes\":2968329313,\"outFlow\":20829,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":790979,\"inBytes\":3740255184,\"inFlow\":772056,\"lastChangeTime\":\"37 days, 22:16:12.04\",\"lastInBytes\":3740255184,\"lastOutBytes\":2748267336,\"outBytes\":2748267336,\"outFlow\":18923,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":396560,\"inBytes\":2620704007,\"inFlow\":386683,\"lastChangeTime\":\"35 days, 21:05:12.70\",\"lastInBytes\":2620704007,\"lastOutBytes\":2980962562,\"outBytes\":2980962562,\"outFlow\":9876,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":398286,\"inBytes\":194501794,\"inFlow\":388266,\"lastChangeTime\":\"150 days, 1:13:59.25\",\"lastInBytes\":194501794,\"lastOutBytes\":924514112,\"outBytes\":924514112,\"outFlow\":10019,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1201535,\"inBytes\":1556040705,\"inFlow\":1171945,\"lastChangeTime\":\"35 days, 21:02:06.93\",\"lastInBytes\":1556040705,\"lastOutBytes\":1649811523,\"outBytes\":1649811523,\"outFlow\":29590,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":9505951,\"inFlow\":0,\"lastChangeTime\":\"186 days, 0:42:32.27\",\"lastInBytes\":9505951,\"lastOutBytes\":438471951,\"outBytes\":438471951,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":84,\"inBytes\":262561579,\"inFlow\":1,\"lastChangeTime\":\"186 days, 0:34:25.64\",\"lastInBytes\":262561579,\"lastOutBytes\":1873823437,\"outBytes\":1873823437,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4407682,\"inBytes\":3484961352,\"inFlow\":114919,\"lastChangeTime\":\"186 days, 23:19:32.52\",\"lastInBytes\":3484961352,\"lastOutBytes\":497016253,\"outBytes\":497016253,\"outFlow\":4292762,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:16.573711000\"}}", + "lastDiagTime": "2026-02-02 14:37:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631780", + "createdBy": "2", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"75187\",\"inUnknownProtos\":\"2098120783\",\"index\":\"636\",\"lastChange\":\"186 days, 0:36:30.95\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:aa:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2399033556\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166878917\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.132\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:21\",\"info\":{\"portInfoList\":[{\"flow\":861957,\"inBytes\":3519914147,\"inFlow\":840150,\"lastChangeTime\":\"150 days, 1:27:31.28\",\"lastInBytes\":3519914147,\"lastOutBytes\":1024358306,\"outBytes\":1024358306,\"outFlow\":21807,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1372906,\"inBytes\":4084232739,\"inFlow\":1337363,\"lastChangeTime\":\"35 days, 21:01:48.12\",\"lastInBytes\":4084232739,\"lastOutBytes\":2941526375,\"outBytes\":2941526375,\"outFlow\":35542,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":862085,\"inBytes\":3418549954,\"inFlow\":840336,\"lastChangeTime\":\"150 days, 1:25:12.94\",\"lastInBytes\":3418549954,\"lastOutBytes\":1559168716,\"outBytes\":1559168716,\"outFlow\":21749,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":865236,\"inBytes\":3492735152,\"inFlow\":843610,\"lastChangeTime\":\"150 days, 1:25:30.66\",\"lastInBytes\":3492735152,\"lastOutBytes\":2956647736,\"outBytes\":2956647736,\"outFlow\":21626,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":431959,\"inBytes\":657912353,\"inFlow\":421438,\"lastChangeTime\":\"37 days, 22:15:43.05\",\"lastInBytes\":657912353,\"lastOutBytes\":2098120783,\"outBytes\":2098120783,\"outFlow\":10520,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":864623,\"inBytes\":2498672260,\"inFlow\":842562,\"lastChangeTime\":\"150 days, 1:25:56.47\",\"lastInBytes\":2498672260,\"lastOutBytes\":4207192119,\"outBytes\":4207192119,\"outFlow\":22061,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":867712,\"inBytes\":863451205,\"inFlow\":845606,\"lastChangeTime\":\"35 days, 21:01:07.87\",\"lastInBytes\":863451205,\"lastOutBytes\":1750939697,\"outBytes\":1750939697,\"outFlow\":22106,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1338505,\"inBytes\":3330096662,\"inFlow\":1303183,\"lastChangeTime\":\"35 days, 21:01:05.33\",\"lastInBytes\":3330096662,\"lastOutBytes\":697947342,\"outBytes\":697947342,\"outFlow\":35321,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":857801,\"inBytes\":942366041,\"inFlow\":837411,\"lastChangeTime\":\"35 days, 20:41:37.82\",\"lastInBytes\":942366041,\"lastOutBytes\":244790865,\"outBytes\":244790865,\"outFlow\":20390,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":397663,\"inBytes\":626846059,\"inFlow\":387901,\"lastChangeTime\":\"37 days, 22:15:46.46\",\"lastInBytes\":626846059,\"lastOutBytes\":2167657221,\"outBytes\":2167657221,\"outFlow\":9762,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3305930,\"inFlow\":0,\"lastChangeTime\":\"29 days, 11:20:29.91\",\"lastInBytes\":3305930,\"lastOutBytes\":122196132,\"outBytes\":122196132,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":262561654,\"inFlow\":1,\"lastChangeTime\":\"186 days, 0:36:47.60\",\"lastInBytes\":262561654,\"lastOutBytes\":1872917249,\"outBytes\":1872917249,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8780921,\"inBytes\":2174164076,\"inFlow\":214323,\"lastChangeTime\":\"186 days, 0:36:30.94\",\"lastInBytes\":2174164076,\"lastOutBytes\":1333265972,\"outBytes\":1333265972,\"outFlow\":8566598,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:16.711286000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631781", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:20", + "echoMap": {}, + "deviceId": "1002040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"82264\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"6:46:01.67\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:8f:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"73895949\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:19\",\"info\":{\"portInfoList\":[{\"flow\":866334,\"inBytes\":4129360098,\"inFlow\":843937,\"lastChangeTime\":\"179 days, 12:00:23.15\",\"lastInBytes\":4129360098,\"lastOutBytes\":801220407,\"outBytes\":801220407,\"outFlow\":22397,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":429293,\"inBytes\":2189262158,\"inFlow\":418877,\"lastChangeTime\":\"0:01:16.82\",\"lastInBytes\":2189262158,\"lastOutBytes\":2132705129,\"outBytes\":2132705129,\"outFlow\":10416,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":429514,\"inBytes\":1391788918,\"inFlow\":419010,\"lastChangeTime\":\"0:01:16.90\",\"lastInBytes\":1391788918,\"lastOutBytes\":2292604778,\"outBytes\":2292604778,\"outFlow\":10503,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":433863,\"inBytes\":3470216247,\"inFlow\":422865,\"lastChangeTime\":\"112 days, 11:25:39.30\",\"lastInBytes\":3470216247,\"lastOutBytes\":2894554553,\"outBytes\":2894554553,\"outFlow\":10997,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":432402,\"inBytes\":1098953648,\"inFlow\":421598,\"lastChangeTime\":\"112 days, 11:25:40.31\",\"lastInBytes\":1098953648,\"lastOutBytes\":2819198890,\"outBytes\":2819198890,\"outFlow\":10804,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":431343,\"inBytes\":2010840672,\"inFlow\":420880,\"lastChangeTime\":\"8:22:48.13\",\"lastInBytes\":2010840672,\"lastOutBytes\":125556644,\"outBytes\":125556644,\"outFlow\":10463,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":442870,\"inBytes\":4257223860,\"inFlow\":431321,\"lastChangeTime\":\"8:22:44.42\",\"lastInBytes\":4257223860,\"lastOutBytes\":2019738145,\"outBytes\":2019738145,\"outFlow\":11549,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":430154,\"inBytes\":2733107554,\"inFlow\":419589,\"lastChangeTime\":\"8:22:54.95\",\"lastInBytes\":2733107554,\"lastOutBytes\":674593060,\"outBytes\":674593060,\"outFlow\":10564,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":427681,\"inBytes\":1803787038,\"inFlow\":416942,\"lastChangeTime\":\"112 days, 11:32:57.34\",\"lastInBytes\":1803787038,\"lastOutBytes\":3944479059,\"outBytes\":3944479059,\"outFlow\":10738,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":867565,\"inBytes\":3939774449,\"inFlow\":845158,\"lastChangeTime\":\"0:01:47.07\",\"lastInBytes\":3939774449,\"lastOutBytes\":2885161779,\"outBytes\":2885161779,\"outFlow\":22407,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":442804,\"inBytes\":317855887,\"inFlow\":431156,\"lastChangeTime\":\"0:01:48.96\",\"lastInBytes\":317855887,\"lastOutBytes\":3797645582,\"outBytes\":3797645582,\"outFlow\":11647,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":262561002,\"inFlow\":1,\"lastChangeTime\":\"0:01:55.87\",\"lastInBytes\":262561002,\"lastOutBytes\":1744290061,\"outBytes\":1744290061,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5226544,\"inBytes\":2102342270,\"inFlow\":136258,\"lastChangeTime\":\"0:01:16.44\",\"lastInBytes\":2102342270,\"lastOutBytes\":4220110678,\"outBytes\":4220110678,\"outFlow\":5090286,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:16.699881000\"}}", + "lastDiagTime": "2026-02-02 14:37:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631782", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"949302161\",\"index\":\"634\",\"lastChange\":\"0:01:23.71\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:a7:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2439751502\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"152610416\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":431290,\"inBytes\":3608685117,\"inFlow\":420736,\"lastChangeTime\":\"48 days, 20:07:28.70\",\"lastInBytes\":3608685117,\"lastOutBytes\":430196887,\"outBytes\":430196887,\"outFlow\":10554,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2128368695,\"inFlow\":0,\"lastChangeTime\":\"18 days, 11:54:12.64\",\"lastInBytes\":2128368695,\"lastOutBytes\":1232503673,\"outBytes\":1232503673,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":432276,\"inBytes\":1381068117,\"inFlow\":421261,\"lastChangeTime\":\"150 days, 1:18:44.54\",\"lastInBytes\":1381068117,\"lastOutBytes\":2543620062,\"outBytes\":2543620062,\"outFlow\":11014,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":398180,\"inBytes\":192790940,\"inFlow\":388326,\"lastChangeTime\":\"37 days, 22:16:12.90\",\"lastInBytes\":192790940,\"lastOutBytes\":949205147,\"outBytes\":949205147,\"outFlow\":9853,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1190490,\"inBytes\":3024168488,\"inFlow\":1162885,\"lastChangeTime\":\"48 days, 20:05:57.68\",\"lastInBytes\":3024168488,\"lastOutBytes\":1908723539,\"outBytes\":1908723539,\"outFlow\":27604,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":396237,\"inBytes\":3427868677,\"inFlow\":386337,\"lastChangeTime\":\"150 days, 1:26:45.85\",\"lastInBytes\":3427868677,\"lastOutBytes\":718410259,\"outBytes\":718410259,\"outFlow\":9899,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":800855,\"inBytes\":682610392,\"inFlow\":780654,\"lastChangeTime\":\"29 days, 13:29:35.03\",\"lastInBytes\":682610392,\"lastOutBytes\":4130098602,\"outBytes\":4130098602,\"outFlow\":20201,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1585053,\"inFlow\":0,\"lastChangeTime\":\"37 days, 3:06:06.59\",\"lastInBytes\":1585053,\"lastOutBytes\":30341279,\"outBytes\":30341279,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1010531,\"inFlow\":0,\"lastChangeTime\":\"49 days, 1:05:33.86\",\"lastInBytes\":1010531,\"lastOutBytes\":37137078,\"outBytes\":37137078,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":262594556,\"inFlow\":1,\"lastChangeTime\":\"18 days, 11:59:12.15\",\"lastInBytes\":262594556,\"lastOutBytes\":1873339125,\"outBytes\":1873339125,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3595386,\"inBytes\":2980583737,\"inFlow\":91284,\"lastChangeTime\":\"49 days, 1:04:57.65\",\"lastInBytes\":2980583737,\"lastOutBytes\":2073439318,\"outBytes\":2073439318,\"outFlow\":3504102,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:16.561180000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631783", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"3\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"74913\",\"inUnknownProtos\":\"516247777\",\"index\":\"634\",\"lastChange\":\"44 days, 20:05:53.75\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:5c:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3221300281\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166805584\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":794195,\"inBytes\":3273367981,\"inFlow\":775193,\"lastChangeTime\":\"35 days, 20:56:57.65\",\"lastInBytes\":3273367981,\"lastOutBytes\":2883545951,\"outBytes\":2883545951,\"outFlow\":19001,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":794153,\"inBytes\":454594643,\"inFlow\":775175,\"lastChangeTime\":\"35 days, 20:57:01.84\",\"lastInBytes\":454594643,\"lastOutBytes\":1253432739,\"outBytes\":1253432739,\"outFlow\":18977,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":539018,\"inBytes\":3100936991,\"inFlow\":525622,\"lastChangeTime\":\"0:01:33.43\",\"lastInBytes\":3100936991,\"lastOutBytes\":739941884,\"outBytes\":739941884,\"outFlow\":13396,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":17138,\"inFlow\":0,\"lastChangeTime\":\"49 days, 0:40:10.24\",\"lastInBytes\":17138,\"lastOutBytes\":1723239,\"outBytes\":1723239,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":530685,\"inBytes\":3158245780,\"inFlow\":517442,\"lastChangeTime\":\"35 days, 20:45:49.77\",\"lastInBytes\":3158245780,\"lastOutBytes\":516112098,\"outBytes\":516112098,\"outFlow\":13242,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":531037,\"inBytes\":821668342,\"inFlow\":517734,\"lastChangeTime\":\"35 days, 20:45:59.35\",\"lastInBytes\":821668342,\"lastOutBytes\":1416085048,\"outBytes\":1416085048,\"outFlow\":13303,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":530883,\"inBytes\":1777469968,\"inFlow\":517637,\"lastChangeTime\":\"134 days, 22:45:58.58\",\"lastInBytes\":1777469968,\"lastOutBytes\":2734882055,\"outBytes\":2734882055,\"outFlow\":13245,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":530722,\"inBytes\":2071208064,\"inFlow\":517475,\"lastChangeTime\":\"35 days, 20:43:05.68\",\"lastInBytes\":2071208064,\"lastOutBytes\":1178845343,\"outBytes\":1178845343,\"outFlow\":13246,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":530653,\"inBytes\":2476684999,\"inFlow\":517422,\"lastChangeTime\":\"35 days, 20:43:04.97\",\"lastInBytes\":2476684999,\"lastOutBytes\":1344433705,\"outBytes\":1344433705,\"outFlow\":13230,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":531035,\"inBytes\":3510731389,\"inFlow\":517640,\"lastChangeTime\":\"35 days, 20:43:10.16\",\"lastInBytes\":3510731389,\"lastOutBytes\":1576525524,\"outBytes\":1576525524,\"outFlow\":13395,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":923884,\"inFlow\":0,\"lastChangeTime\":\"99 days, 12:16:49.13\",\"lastInBytes\":923884,\"lastOutBytes\":38934745,\"outBytes\":38934745,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":459448570,\"inFlow\":1,\"lastChangeTime\":\"99 days, 10:14:07.80\",\"lastInBytes\":459448570,\"lastOutBytes\":1916074985,\"outBytes\":1916074985,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5332507,\"inBytes\":2513945113,\"inFlow\":136248,\"lastChangeTime\":\"49 days, 0:40:13.32\",\"lastInBytes\":2513945113,\"lastOutBytes\":3421922804,\"outBytes\":3421922804,\"outFlow\":5196259,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:16.559323000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631784", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"75109\",\"inUnknownProtos\":\"2250286471\",\"index\":\"634\",\"lastChange\":\"0:27:45.21\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:d9:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1907782675\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166884296\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":530791,\"inBytes\":221041370,\"inFlow\":517516,\"lastChangeTime\":\"35 days, 20:43:08.55\",\"lastInBytes\":221041370,\"lastOutBytes\":987620609,\"outBytes\":987620609,\"outFlow\":13274,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":794020,\"inBytes\":711168523,\"inFlow\":775068,\"lastChangeTime\":\"44 days, 19:52:31.16\",\"lastInBytes\":711168523,\"lastOutBytes\":2445522170,\"outBytes\":2445522170,\"outFlow\":18951,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":530169,\"inBytes\":3185606861,\"inFlow\":517297,\"lastChangeTime\":\"44 days, 19:52:29.89\",\"lastInBytes\":3185606861,\"lastOutBytes\":1715237471,\"outBytes\":1715237471,\"outFlow\":12871,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":265395,\"inBytes\":1140875831,\"inFlow\":258536,\"lastChangeTime\":\"44 days, 19:52:20.60\",\"lastInBytes\":1140875831,\"lastOutBytes\":1975931134,\"outBytes\":1975931134,\"outFlow\":6859,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":265589,\"inBytes\":3382846443,\"inFlow\":258685,\"lastChangeTime\":\"44 days, 19:52:25.59\",\"lastInBytes\":3382846443,\"lastOutBytes\":2250286471,\"outBytes\":2250286471,\"outFlow\":6903,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":725614,\"inBytes\":913994012,\"inFlow\":705015,\"lastChangeTime\":\"93 days, 6:21:33.29\",\"lastInBytes\":913994012,\"lastOutBytes\":4222450192,\"outBytes\":4222450192,\"outFlow\":20599,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":265857,\"inBytes\":2226146070,\"inFlow\":258956,\"lastChangeTime\":\"44 days, 19:52:26.05\",\"lastInBytes\":2226146070,\"lastOutBytes\":1242525999,\"outBytes\":1242525999,\"outFlow\":6901,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1746192,\"inBytes\":1279772920,\"inFlow\":1704699,\"lastChangeTime\":\"87 days, 20:03:20.14\",\"lastInBytes\":1279772920,\"lastOutBytes\":1029201302,\"outBytes\":1029201302,\"outFlow\":41493,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":264741,\"inBytes\":3236063892,\"inFlow\":258100,\"lastChangeTime\":\"156 days, 20:04:01.48\",\"lastInBytes\":3236063892,\"lastOutBytes\":2194926884,\"outBytes\":2194926884,\"outFlow\":6641,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":7791342,\"inFlow\":0,\"lastChangeTime\":\"186 days, 1:10:04.40\",\"lastInBytes\":7791342,\"lastOutBytes\":323863341,\"outBytes\":323863341,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":458607885,\"inFlow\":1,\"lastChangeTime\":\"186 days, 1:14:29.10\",\"lastInBytes\":458607885,\"lastOutBytes\":1877265037,\"outBytes\":1877265037,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5410869,\"inBytes\":1877229284,\"inFlow\":139969,\"lastChangeTime\":\"44 days, 19:55:11.41\",\"lastInBytes\":1877229284,\"lastOutBytes\":2143039978,\"outBytes\":2143039978,\"outFlow\":5270899,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:16.532034000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631785", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"74882\",\"inUnknownProtos\":\"3502612633\",\"index\":\"634\",\"lastChange\":\"0:01:23.66\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:a8:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3998420098\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166887925\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":791321,\"inBytes\":1104542838,\"inFlow\":772555,\"lastChangeTime\":\"35 days, 20:42:10.01\",\"lastInBytes\":1104542838,\"lastOutBytes\":3831921019,\"outBytes\":3831921019,\"outFlow\":18766,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1261018,\"inBytes\":3143657996,\"inFlow\":1229343,\"lastChangeTime\":\"35 days, 20:57:00.23\",\"lastInBytes\":3143657996,\"lastOutBytes\":1895440767,\"outBytes\":1895440767,\"outFlow\":31675,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":794744,\"inBytes\":1527383765,\"inFlow\":775772,\"lastChangeTime\":\"35 days, 20:42:15.80\",\"lastInBytes\":1527383765,\"lastOutBytes\":935935187,\"outBytes\":935935187,\"outFlow\":18971,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":797489,\"inBytes\":1474583229,\"inFlow\":779912,\"lastChangeTime\":\"23 days, 23:55:15.75\",\"lastInBytes\":1474583229,\"lastOutBytes\":608362864,\"outBytes\":608362864,\"outFlow\":17576,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":792560,\"inBytes\":305160290,\"inFlow\":776400,\"lastChangeTime\":\"0:01:24.44\",\"lastInBytes\":305160290,\"lastOutBytes\":3502612633,\"outBytes\":3502612633,\"outFlow\":16160,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":798636,\"inBytes\":1275797341,\"inFlow\":782736,\"lastChangeTime\":\"0:01:24.64\",\"lastInBytes\":1275797341,\"lastOutBytes\":3283748418,\"outBytes\":3283748418,\"outFlow\":15900,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":801727,\"inBytes\":230815249,\"inFlow\":785327,\"lastChangeTime\":\"23 days, 23:55:01.08\",\"lastInBytes\":230815249,\"lastOutBytes\":1810548727,\"outBytes\":1810548727,\"outFlow\":16400,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1353697,\"inBytes\":2084229344,\"inFlow\":1321931,\"lastChangeTime\":\"35 days, 20:42:13.74\",\"lastInBytes\":2084229344,\"lastOutBytes\":3327240954,\"outBytes\":3327240954,\"outFlow\":31766,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1264027,\"inBytes\":317879445,\"inFlow\":1231901,\"lastChangeTime\":\"161 days, 11:30:38.44\",\"lastInBytes\":317879445,\"lastOutBytes\":2605821364,\"outBytes\":2605821364,\"outFlow\":32125,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1651576,\"inBytes\":3052275725,\"inFlow\":1609705,\"lastChangeTime\":\"161 days, 11:30:33.37\",\"lastInBytes\":3052275725,\"lastOutBytes\":3196262338,\"outBytes\":3196262338,\"outFlow\":41870,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1260168,\"inBytes\":3419331191,\"inFlow\":1228063,\"lastChangeTime\":\"161 days, 11:30:31.20\",\"lastInBytes\":3419331191,\"lastOutBytes\":2297348419,\"outBytes\":2297348419,\"outFlow\":32105,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1257084,\"inBytes\":4210745674,\"inFlow\":1225543,\"lastChangeTime\":\"161 days, 11:30:40.40\",\"lastInBytes\":4210745674,\"lastOutBytes\":3916251141,\"outBytes\":3916251141,\"outFlow\":31541,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":861260,\"inBytes\":958718923,\"inFlow\":840413,\"lastChangeTime\":\"99 days, 12:12:48.40\",\"lastInBytes\":958718923,\"lastOutBytes\":3213468913,\"outBytes\":3213468913,\"outFlow\":20846,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":13811,\"inFlow\":0,\"lastChangeTime\":\"99 days, 11:51:35.71\",\"lastInBytes\":13811,\"lastOutBytes\":167087,\"outBytes\":167087,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":259877097,\"inFlow\":1,\"lastChangeTime\":\"186 days, 1:12:15.06\",\"lastInBytes\":259877097,\"lastOutBytes\":652638842,\"outBytes\":652638842,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14902225,\"inBytes\":3112228305,\"inFlow\":369157,\"lastChangeTime\":\"0:01:23.66\",\"lastInBytes\":3112228305,\"lastOutBytes\":1395990658,\"outBytes\":1395990658,\"outFlow\":14533068,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:16.550241000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631786", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"74902\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:24.55\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:d1:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166888829\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":859454,\"inBytes\":2985534098,\"inFlow\":838949,\"lastChangeTime\":\"35 days, 20:53:00.35\",\"lastInBytes\":2985534098,\"lastOutBytes\":3953410335,\"outBytes\":3953410335,\"outFlow\":20504,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":859582,\"inBytes\":3786746589,\"inFlow\":838858,\"lastChangeTime\":\"186 days, 1:20:19.51\",\"lastInBytes\":3786746589,\"lastOutBytes\":4061943781,\"outBytes\":4061943781,\"outFlow\":20724,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":861940,\"inBytes\":2449952670,\"inFlow\":841268,\"lastChangeTime\":\"186 days, 1:20:22.12\",\"lastInBytes\":2449952670,\"lastOutBytes\":2251397941,\"outBytes\":2251397941,\"outFlow\":20672,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":793816,\"inBytes\":3525408017,\"inFlow\":774940,\"lastChangeTime\":\"35 days, 20:53:06.01\",\"lastInBytes\":3525408017,\"lastOutBytes\":243512102,\"outBytes\":243512102,\"outFlow\":18875,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":794292,\"inBytes\":1339425201,\"inFlow\":775309,\"lastChangeTime\":\"35 days, 20:52:55.94\",\"lastInBytes\":1339425201,\"lastOutBytes\":3225974636,\"outBytes\":3225974636,\"outFlow\":18982,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1260288,\"inBytes\":3009724858,\"inFlow\":1228318,\"lastChangeTime\":\"161 days, 11:30:36.42\",\"lastInBytes\":3009724858,\"lastOutBytes\":682607984,\"outBytes\":682607984,\"outFlow\":31969,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1257414,\"inBytes\":1697164197,\"inFlow\":1225160,\"lastChangeTime\":\"161 days, 11:30:34.57\",\"lastInBytes\":1697164197,\"lastOutBytes\":834914896,\"outBytes\":834914896,\"outFlow\":32254,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":1287951,\"inBytes\":4200722108,\"inFlow\":1258874,\"lastChangeTime\":\"35 days, 20:52:50.55\",\"lastInBytes\":4200722108,\"lastOutBytes\":4289160981,\"outBytes\":4289160981,\"outFlow\":29076,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":575100,\"inBytes\":3437237882,\"inFlow\":560627,\"lastChangeTime\":\"186 days, 1:20:40.54\",\"lastInBytes\":3437237882,\"lastOutBytes\":31224492,\"outBytes\":31224492,\"outFlow\":14473,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":370,\"inBytes\":662224958,\"inFlow\":33,\"lastChangeTime\":\"233 days, 22:26:07.97\",\"lastInBytes\":662224958,\"lastOutBytes\":3634911598,\"outBytes\":3634911598,\"outFlow\":336,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":85,\"inBytes\":259875594,\"inFlow\":1,\"lastChangeTime\":\"186 days, 1:21:36.57\",\"lastInBytes\":259875594,\"lastOutBytes\":653262840,\"outBytes\":653262840,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8942258,\"inBytes\":2525131127,\"inFlow\":226190,\"lastChangeTime\":\"0:01:24.54\",\"lastInBytes\":2525131127,\"lastOutBytes\":2058262033,\"outBytes\":2058262033,\"outFlow\":8716067,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:16.549591000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631787", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:20", + "echoMap": {}, + "deviceId": "1002040010", + "name": "H3C前端交换机9", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"75036\",\"inUnknownProtos\":\"188718055\",\"index\":\"634\",\"lastChange\":\"0:01:30.63\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:bb:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3455090618\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166887687\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":1254358,\"inBytes\":3979405434,\"inFlow\":1222699,\"lastChangeTime\":\"161 days, 11:30:26.57\",\"lastInBytes\":3979405434,\"lastOutBytes\":1129953304,\"outBytes\":1129953304,\"outFlow\":31658,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":795909,\"inBytes\":2443152557,\"inFlow\":775775,\"lastChangeTime\":\"161 days, 11:30:16.87\",\"lastInBytes\":2443152557,\"lastOutBytes\":1705352927,\"outBytes\":1705352927,\"outFlow\":20133,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1256545,\"inBytes\":3727788706,\"inFlow\":1224530,\"lastChangeTime\":\"161 days, 11:30:32.51\",\"lastInBytes\":3727788706,\"lastOutBytes\":3697047181,\"outBytes\":3697047181,\"outFlow\":32014,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":799019,\"inBytes\":1900683798,\"inFlow\":780077,\"lastChangeTime\":\"35 days, 20:42:14.73\",\"lastInBytes\":1900683798,\"lastOutBytes\":289105138,\"outBytes\":289105138,\"outFlow\":18941,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":530971,\"inBytes\":2269344248,\"inFlow\":517706,\"lastChangeTime\":\"35 days, 20:43:13.57\",\"lastInBytes\":2269344248,\"lastOutBytes\":188583776,\"outBytes\":188583776,\"outFlow\":13264,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":788505,\"inBytes\":116984977,\"inFlow\":769716,\"lastChangeTime\":\"35 days, 20:49:02.37\",\"lastInBytes\":116984977,\"lastOutBytes\":747337352,\"outBytes\":747337352,\"outFlow\":18788,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":799442,\"inBytes\":445312809,\"inFlow\":779278,\"lastChangeTime\":\"35 days, 20:48:53.13\",\"lastInBytes\":445312809,\"lastOutBytes\":3279113314,\"outBytes\":3279113314,\"outFlow\":20164,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":796158,\"inBytes\":2711464536,\"inFlow\":776116,\"lastChangeTime\":\"35 days, 20:48:51.79\",\"lastInBytes\":2711464536,\"lastOutBytes\":864802972,\"outBytes\":864802972,\"outFlow\":20042,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":862792,\"inBytes\":2319522600,\"inFlow\":841183,\"lastChangeTime\":\"35 days, 20:48:56.04\",\"lastInBytes\":2319522600,\"lastOutBytes\":2594083238,\"outBytes\":2594083238,\"outFlow\":21609,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1365291,\"inBytes\":3119245692,\"inFlow\":1330803,\"lastChangeTime\":\"161 days, 11:30:22.72\",\"lastInBytes\":3119245692,\"lastOutBytes\":25661246,\"outBytes\":25661246,\"outFlow\":34488,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1807068,\"inBytes\":2856966337,\"inFlow\":1761836,\"lastChangeTime\":\"161 days, 11:30:27.02\",\"lastInBytes\":2856966337,\"lastOutBytes\":846888474,\"outBytes\":846888474,\"outFlow\":45231,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":860876,\"inBytes\":127324465,\"inFlow\":839253,\"lastChangeTime\":\"161 days, 11:30:18.57\",\"lastInBytes\":127324465,\"lastOutBytes\":3810440609,\"outBytes\":3810440609,\"outFlow\":21623,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":1434606,\"inBytes\":1556425398,\"inFlow\":1400819,\"lastChangeTime\":\"37 days, 0:49:06.39\",\"lastInBytes\":1556425398,\"lastOutBytes\":2199216769,\"outBytes\":2199216769,\"outFlow\":33787,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":793964,\"inBytes\":3738347598,\"inFlow\":773970,\"lastChangeTime\":\"37 days, 0:50:20.54\",\"lastInBytes\":3738347598,\"lastOutBytes\":863204942,\"outBytes\":863204942,\"outFlow\":19994,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":287497,\"inBytes\":4188894407,\"inFlow\":280244,\"lastChangeTime\":\"156 days, 19:35:31.26\",\"lastInBytes\":4188894407,\"lastOutBytes\":2520629627,\"outBytes\":2520629627,\"outFlow\":7252,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":90,\"inBytes\":259876833,\"inFlow\":1,\"lastChangeTime\":\"186 days, 1:29:42.78\",\"lastInBytes\":259876833,\"lastOutBytes\":652317719,\"outBytes\":652317719,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14096408,\"inBytes\":843739652,\"inFlow\":364632,\"lastChangeTime\":\"0:01:30.63\",\"lastInBytes\":843739652,\"lastOutBytes\":999339318,\"outBytes\":999339318,\"outFlow\":13731775,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:16.601363000\"}}", + "lastDiagTime": "2026-02-02 14:37:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589936212194631788", + "createdBy": "0", + "createdTime": "2025-03-07 13:44:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:21", + "echoMap": {}, + "deviceId": "1002040011", + "name": "H3C前端交换机10", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface132\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"75495\",\"inUnknownProtos\":\"2809648672\",\"index\":\"634\",\"lastChange\":\"99 days, 12:06:11.39\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:b7:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2119996834\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166851776\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:20\",\"info\":{\"portInfoList\":[{\"flow\":804658,\"inBytes\":3427593611,\"inFlow\":783897,\"lastChangeTime\":\"161 days, 11:30:49.70\",\"lastInBytes\":3427593611,\"lastOutBytes\":302610452,\"outBytes\":302610452,\"outFlow\":20760,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":794391,\"inBytes\":520543332,\"inFlow\":773959,\"lastChangeTime\":\"161 days, 11:30:39.96\",\"lastInBytes\":520543332,\"lastOutBytes\":2535143301,\"outBytes\":2535143301,\"outFlow\":20432,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1262510,\"inBytes\":1247109674,\"inFlow\":1230615,\"lastChangeTime\":\"161 days, 11:30:50.81\",\"lastInBytes\":1247109674,\"lastOutBytes\":3671971006,\"outBytes\":3671971006,\"outFlow\":31894,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":793183,\"inBytes\":688517810,\"inFlow\":774343,\"lastChangeTime\":\"35 days, 20:42:19.29\",\"lastInBytes\":688517810,\"lastOutBytes\":2257089076,\"outBytes\":2257089076,\"outFlow\":18839,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":862516,\"inBytes\":1958719181,\"inFlow\":841177,\"lastChangeTime\":\"35 days, 20:44:50.06\",\"lastInBytes\":1958719181,\"lastOutBytes\":2809648672,\"outBytes\":2809648672,\"outFlow\":21338,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":857983,\"inBytes\":1192124307,\"inFlow\":837466,\"lastChangeTime\":\"35 days, 20:44:36.33\",\"lastInBytes\":1192124307,\"lastOutBytes\":1756639297,\"outBytes\":1756639297,\"outFlow\":20516,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":429209,\"inBytes\":937179782,\"inFlow\":418645,\"lastChangeTime\":\"35 days, 20:44:50.43\",\"lastInBytes\":937179782,\"lastOutBytes\":1537020258,\"outBytes\":1537020258,\"outFlow\":10563,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1740431,\"inBytes\":3652005246,\"inFlow\":1698761,\"lastChangeTime\":\"99 days, 11:44:15.44\",\"lastInBytes\":3652005246,\"lastOutBytes\":3469018985,\"outBytes\":3469018985,\"outFlow\":41669,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1254161,\"inBytes\":629913108,\"inFlow\":1222469,\"lastChangeTime\":\"161 days, 11:30:37.25\",\"lastInBytes\":629913108,\"lastOutBytes\":667935482,\"outBytes\":667935482,\"outFlow\":31691,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":803238,\"inBytes\":2529175381,\"inFlow\":782983,\"lastChangeTime\":\"161 days, 11:30:42.70\",\"lastInBytes\":2529175381,\"lastOutBytes\":1918111457,\"outBytes\":1918111457,\"outFlow\":20255,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":796953,\"inBytes\":1286266486,\"inFlow\":776751,\"lastChangeTime\":\"161 days, 11:30:38.63\",\"lastInBytes\":1286266486,\"lastOutBytes\":4065766081,\"outBytes\":4065766081,\"outFlow\":20202,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1325790,\"inBytes\":810635231,\"inFlow\":1294559,\"lastChangeTime\":\"35 days, 20:42:14.94\",\"lastInBytes\":810635231,\"lastOutBytes\":4048780515,\"outBytes\":4048780515,\"outFlow\":31231,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":799882,\"inBytes\":3873632318,\"inFlow\":779687,\"lastChangeTime\":\"35 days, 20:44:49.72\",\"lastInBytes\":3873632318,\"lastOutBytes\":2241227893,\"outBytes\":2241227893,\"outFlow\":20194,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":804121,\"inBytes\":3794950941,\"inFlow\":785160,\"lastChangeTime\":\"99 days, 11:36:18.25\",\"lastInBytes\":3794950941,\"lastOutBytes\":2952824409,\"outBytes\":2952824409,\"outFlow\":18961,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":804981,\"inBytes\":1955111121,\"inFlow\":786042,\"lastChangeTime\":\"99 days, 11:35:56.80\",\"lastInBytes\":1955111121,\"lastOutBytes\":3286113337,\"outBytes\":3286113337,\"outFlow\":18939,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":15056959,\"inBytes\":3492306176,\"inFlow\":385560,\"lastChangeTime\":\"99 days, 12:06:11.39\",\"lastInBytes\":3492306176,\"lastOutBytes\":3782307290,\"outBytes\":3782307290,\"outFlow\":14671398,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:16.556041000\"}}", + "lastDiagTime": "2026-02-02 14:37:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483621090588681", + "createdBy": null, + "createdTime": "2025-10-18 14:35:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:20", + "echoMap": {}, + "deviceId": "1002040012", + "name": "华为交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif132\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"18 days, 11:49:10.33\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:2a:c6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"22\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:19\",\"info\":{\"portInfoList\":[{\"flow\":283739,\"inBytes\":2840875455,\"inFlow\":276134,\"lastChangeTime\":\"39 days, 22:04:08.25\",\"lastInBytes\":2840875455,\"lastOutBytes\":3425959608,\"outBytes\":3425959608,\"outFlow\":7604,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":469642361,\"inFlow\":0,\"lastChangeTime\":\"11 days, 23:43:26.01\",\"lastInBytes\":469642361,\"lastOutBytes\":1318488686,\"outBytes\":1318488686,\"outFlow\":92,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":285657,\"inBytes\":3087035766,\"inFlow\":8736,\"lastChangeTime\":\"11 days, 23:43:34.61\",\"lastInBytes\":3087035766,\"lastOutBytes\":2468001358,\"outBytes\":2468001358,\"outFlow\":276921,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:42.933872000\"}}", + "lastDiagTime": "2026-02-02 14:39:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483621090588685", + "createdBy": null, + "createdTime": "2025-10-18 14:35:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:12", + "echoMap": {}, + "deviceId": "1002040013", + "name": "华为交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.132.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif132\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"6 days, 13:19:18.97\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:2b:6b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.132.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:12\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":283556,\"inBytes\":3926963957,\"inFlow\":276034,\"lastChangeTime\":\"27 days, 23:22:34.48\",\"lastInBytes\":3926963957,\"lastOutBytes\":2789697147,\"outBytes\":2789697147,\"outFlow\":7522,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":1020,\"inFlow\":0,\"lastChangeTime\":\"27 days, 23:20:20.76\",\"lastInBytes\":1020,\"lastOutBytes\":1317683125,\"outBytes\":1317683125,\"outFlow\":92,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":18508865,\"inFlow\":0,\"lastChangeTime\":\"1:04:46.42\",\"lastInBytes\":18508865,\"lastOutBytes\":50827,\"outBytes\":50827,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":283233,\"inBytes\":2500666262,\"inFlow\":8579,\"lastChangeTime\":\"6 days, 13:13:55.15\",\"lastInBytes\":2500666262,\"lastOutBytes\":3472644738,\"outBytes\":3472644738,\"outFlow\":274654,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:41.444667000\"}}", + "lastDiagTime": "2026-02-02 14:39:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585048230174137839", + "createdBy": "0", + "createdTime": "2025-01-21 13:01:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1002110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.131.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"5.30\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"412 days, 4:03:52.66\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"18603265\",\"inErrors\":\"0\",\"inNUcastPkts\":\"18993271\",\"inOctets\":\"2673941701\",\"inUcastPkts\":\"1372897171\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a0:c3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2827387608\",\"outQLen\":\"0\",\"outUcastPkts\":\"934668760\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.131.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1003": { + "ndmAlarmHost": [ + { + "id": "687485613961871361", + "createdBy": null, + "createdTime": "2025-10-18 14:45:27", + "updatedBy": null, + "updatedTime": "2026-01-15 09:19:33", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.133.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "687485605371936894", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060001", + "name": "[615](10)1号航站楼内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936895", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060002", + "name": "[614](10)1号航站楼内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936896", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060003", + "name": "[605](10)1号航站楼弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936897", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060004", + "name": "[602](10)1号航站楼编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303041005003602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936898", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060005", + "name": "[606](10)1号航站楼弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936899", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060006", + "name": "[607](10)1号航站楼弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936900", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060007", + "name": "[608](10)1号航站楼弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936901", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060008", + "name": "[609](10)1号航站楼弱电综合机房5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936902", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060009", + "name": "[610](10)1号航站楼弱电综合机房6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936903", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060010", + "name": "[603](10)1号航站楼编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303041005003603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936904", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060011", + "name": "[604](10)1号航站楼编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303041005003604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936905", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060012", + "name": "[619](10)1号航站楼消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936906", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1003060013", + "name": "[620](10)1号航站楼消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936907", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1003060014", + "name": "[621](10)1号航站楼变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936908", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1003060015", + "name": "[622](10)1号航站楼变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936909", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1003060016", + "name": "[612](10)1号航站楼环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303053006003612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936910", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060017", + "name": "[616](10)1号航站楼内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936911", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-23 00:58:58", + "echoMap": {}, + "deviceId": "1003060018", + "name": "[311](10)1号航站楼3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936912", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060019", + "name": "[201](10)1号航站楼厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301035004003201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936913", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060020", + "name": "[310](10)1号航站楼3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936914", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060021", + "name": "[315](10)1号航站楼3#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936915", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060022", + "name": "[314](10)1号航站楼3#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936916", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060023", + "name": "[313](10)1号航站楼3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936917", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1003060024", + "name": "[312](10)1号航站楼3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936918", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1003060025", + "name": "[210](10)1号航站楼3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057004003210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936919", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1003060026", + "name": "[316](10)1号航站楼3#口楼梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301057006003316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936920", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1003060027", + "name": "[407](10)1号航站楼3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301007006003407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936921", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1003060028", + "name": "[410](10)1号航站楼3#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301007006003410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936922", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060029", + "name": "[409](10)1号航站楼3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301007006003409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936923", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060030", + "name": "[408](10)1号航站楼3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301007006003408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936924", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2026-01-22 00:24:06", + "echoMap": {}, + "deviceId": "1003060031", + "name": "[501](10)1号航站楼客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301001005003501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936925", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060032", + "name": "[203](10)1号航站楼厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301035004003203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936926", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060033", + "name": "[601](10)1号航站楼车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303042004003601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936927", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060034", + "name": "[320](10)1号航站楼#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301045006003320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936928", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060035", + "name": "[318](10)1号航站楼#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301045006003318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936929", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060036", + "name": "[317](10)1号航站楼#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301045006003317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936930", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060037", + "name": "[321](10)1号航站楼#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301045006003321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936931", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060038", + "name": "[327](10)1号航站楼B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301040006003327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936932", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-12-22 10:54:58", + "echoMap": {}, + "deviceId": "1003060039", + "name": "[330](10)1号航站楼1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301036005003330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936933", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060040", + "name": "[319](10)1号航站楼#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301045006003319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936934", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060041", + "name": "[405](10)1号航站楼3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301007006003405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936935", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060042", + "name": "[406](10)1号航站楼3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301007006003406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936936", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1003060043", + "name": "[502](10)1号航站楼票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301030006003502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936937", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060044", + "name": "[332](10)1号航站楼安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301085006003332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936938", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060045", + "name": "[202](10)1号航站楼厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301035004003202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936939", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060046", + "name": "[401](10)1号航站楼1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301005006003401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936940", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060047", + "name": "[302](10)1号航站楼1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936941", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060048", + "name": "[322](10)1号航站楼#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301045006003322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936942", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060049", + "name": "[204](10)1号航站楼厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301035004003204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936943", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060050", + "name": "[404](10)1号航站楼2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301006006003404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936944", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060051", + "name": "[402](10)1号航站楼2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301006006003402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936945", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060052", + "name": "[503](10)1号航站楼票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301030006003503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936946", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060053", + "name": "[333](10)1号航站楼安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301085006003333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485605371936947", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060054", + "name": "[403](10)1号航站楼2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301006006003403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904064", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1003060055", + "name": "[613](10)1号航站楼环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303053005003613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904065", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060056", + "name": "[617](10)1号航站楼内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001006003617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904066", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060057", + "name": "[309](10)1号航站楼1#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904067", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060058", + "name": "[303](10)1号航站楼1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904068", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060059", + "name": "[306](10)1号航站楼1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904069", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060060", + "name": "[301](10)1号航站楼1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904070", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2026-01-19 12:44:06", + "echoMap": {}, + "deviceId": "1003060061", + "name": "[331](10)1号航站楼2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301036005003331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904071", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060062", + "name": "[308](10)1号航站楼1#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055005003308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904072", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060063", + "name": "[329](10)1号航站楼B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302002006003329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904073", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060064", + "name": "[305](10)1号航站楼1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904074", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060065", + "name": "[307](10)1号航站楼1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904075", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1003060066", + "name": "[304](10)1号航站楼1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904076", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060067", + "name": "[209](10)1号航站楼1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055004003209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904077", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060068", + "name": "[107](10)1号航站楼上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302007006003107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904078", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060069", + "name": "[108](10)1号航站楼上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302007006003108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904079", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060070", + "name": "[109](10)1号航站楼上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302007006003109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904080", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060071", + "name": "[110](10)1号航站楼上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302007006003110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904081", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060072", + "name": "[207](10)1号航站楼下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302001004003207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904082", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1003060073", + "name": "[611](10)1号航站楼屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904083", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060074", + "name": "[323](10)1号航站楼#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302017006003323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904084", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060075", + "name": "[618](10)1号航站楼内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303021006003618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904085", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060076", + "name": "[324](10)1号航站楼#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302017006003324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904086", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060077", + "name": "[106](10)1号航站楼下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302012006003106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904087", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060078", + "name": "[105](10)1号航站楼下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302012006003105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904088", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2026-02-02 13:15:06", + "echoMap": {}, + "deviceId": "1003060079", + "name": "[111](10)1号航站楼上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302007006003111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904089", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2026-01-15 10:01:33", + "echoMap": {}, + "deviceId": "1003060080", + "name": "[112](10)1号航站楼上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302007006003112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904090", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060081", + "name": "[208](10)1号航站楼下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302001004003208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904091", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060082", + "name": "[325](10)1号航站楼#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302017006003325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904092", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060083", + "name": "[328](10)1号航站楼B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302002006003328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904093", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1003060084", + "name": "[326](10)1号航站楼#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302017006003326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904094", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060085", + "name": "[205](10)1号航站楼上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302001004003205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904095", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060086", + "name": "[102](10)1号航站楼下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302012006003102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904096", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060087", + "name": "[101](10)1号航站楼下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302012006003101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904097", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1003060088", + "name": "[104](10)1号航站楼下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302012006003104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904098", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060089", + "name": "[103](10)1号航站楼下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302012006003103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904099", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1003060090", + "name": "[206](10)1号航站楼上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060302001004003206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904100", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1003060091", + "name": "[334](10)1号航站楼1#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904101", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060092", + "name": "[335](10)1号航站楼1#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060301055006003335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904102", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060093", + "name": "[623](10)1号航站楼通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303048005003623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904103", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060094", + "name": "[624](10)1号航站楼消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303068005003624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904104", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060095", + "name": "[625](10)1号航站楼气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303067005003625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485609666904105", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060096", + "name": "[626](10)1号航站楼内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303001005003626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687485613961871360", + "createdBy": "0", + "createdTime": "2025-10-18 14:45:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1003060097", + "name": "[627](10)1号航站楼气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.133.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060303067005003627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585048728390347885", + "createdBy": "0", + "createdTime": "2025-01-21 13:29:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1003070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.133.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"758796\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"217161540\",\"inUcastPkts\":\"973832642\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ee:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"178959274\",\"outQLen\":\"0\",\"outUcastPkts\":\"2116290805\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.133.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:06\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZ7CC4B\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"40\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585048728390347888", + "createdBy": "2", + "createdTime": "2025-01-21 13:32:26", + "updatedBy": null, + "updatedTime": "2026-01-03 09:15:38", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.133.51", + "manageUrl": "http:\\\\10.18.133.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585048728390347999", + "createdBy": "2", + "createdTime": "2025-01-21 13:33:08", + "updatedBy": null, + "updatedTime": "2026-01-19 20:23:07", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.133.52", + "manageUrl": "http:\\\\10.18.133.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585048728390347887", + "createdBy": "0", + "createdTime": "2025-01-21 13:29:32", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1003090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.133.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.88\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"215 days, 1:43:03.78\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3706643\",\"inErrors\":\"0\",\"inNUcastPkts\":\"9911195\",\"inOctets\":\"3783566874\",\"inUcastPkts\":\"1397141584\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a3:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3198826131\",\"outQLen\":\"0\",\"outUcastPkts\":\"2128776124\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.133.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585048728390347776", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1003050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.133.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060300000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18641470\",\"inErrors\":\"0\",\"inNUcastPkts\":\"43223629\",\"inOctets\":\"2781627845\",\"inUcastPkts\":\"3132264654\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8b:53\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1858053732\",\"outQLen\":\"0\",\"outUcastPkts\":\"3874444596\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4380\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.133.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:06\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":974005113,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13323\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"55\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.133.23" + }, + { + "id": "585048728390347777", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1003050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.133.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060300000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18643022\",\"inErrors\":\"0\",\"inNUcastPkts\":\"33909466\",\"inOctets\":\"2750507652\",\"inUcastPkts\":\"799834777\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8b:35\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3128925142\",\"outQLen\":\"0\",\"outUcastPkts\":\"771340607\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4380\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4360\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.133.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:07\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":974005113,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13322\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"54\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.133.22" + }, + { + "id": "585048728390347778", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-04-25 11:24:26", + "echoMap": {}, + "deviceId": "1003050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.133.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060300000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.133.22;10.18.133.23" + } + ], + "ndmSecurityBox": [ + { + "id": "704526910321048874", + "createdBy": "0", + "createdTime": "2025-03-07 13:51:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1003030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10726513\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"598268553\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10726518\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:b2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22800002,\"status\":1,\"voltage\":26.512001},{\"current\":0.259,\"status\":1,\"voltage\":26.512001},{\"current\":0.23400001,\"status\":1,\"voltage\":26.512001},{\"current\":0.23200001,\"status\":1,\"voltage\":26.512001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.512001},{\"current\":0.23,\"status\":1,\"voltage\":26.512001},{\"current\":0.23,\"status\":1,\"voltage\":26.512001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.512001},{\"current\":0.22900002,\"status\":1,\"voltage\":26.512001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.267002},{\"current\":0.002,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.261,\"status\":1,\"voltage\":26.267002},{\"current\":0.231,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002}],\"fanSpeeds\":[3000,3000],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0022512208302215\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048875", + "createdBy": "1", + "createdTime": "2025-03-07 13:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1003030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10497936\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"585452597\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10497941\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:5d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.349,\"status\":1,\"voltage\":26.686},{\"current\":0.07300001,\"status\":1,\"voltage\":26.686},{\"current\":0.26200002,\"status\":1,\"voltage\":26.686},{\"current\":0.32900003,\"status\":1,\"voltage\":26.686},{\"current\":0.23400001,\"status\":1,\"voltage\":26.686},{\"current\":0.28,\"status\":1,\"voltage\":26.686},{\"current\":0.246,\"status\":1,\"voltage\":26.686},{\"current\":0.001,\"status\":1,\"voltage\":26.686},{\"current\":0.001,\"status\":1,\"voltage\":26.686},{\"current\":0.001,\"status\":1,\"voltage\":26.673},{\"current\":0.003,\"status\":1,\"voltage\":26.673},{\"current\":0.001,\"status\":1,\"voltage\":26.673},{\"current\":0.001,\"status\":1,\"voltage\":26.673},{\"current\":0.001,\"status\":1,\"voltage\":26.673},{\"current\":0.001,\"status\":1,\"voltage\":26.673},{\"current\":0.0,\"status\":1,\"voltage\":26.673}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302119\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048876", + "createdBy": "2", + "createdTime": "2025-03-07 13:51:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1003030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15834855\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"884725741\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15834860\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:f2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":24.326},{\"current\":0.634,\"status\":1,\"voltage\":24.326},{\"current\":0.42800003,\"status\":1,\"voltage\":24.326},{\"current\":1.2210001,\"status\":1,\"voltage\":24.326},{\"current\":0.95100003,\"status\":1,\"voltage\":24.326},{\"current\":0.818,\"status\":1,\"voltage\":24.326},{\"current\":0.87000006,\"status\":1,\"voltage\":24.326},{\"current\":0.57500005,\"status\":1,\"voltage\":24.326},{\"current\":1.103,\"status\":1,\"voltage\":24.326},{\"current\":0.001,\"status\":1,\"voltage\":24.995},{\"current\":0.002,\"status\":1,\"voltage\":24.995},{\"current\":0.001,\"status\":1,\"voltage\":24.995},{\"current\":0.001,\"status\":1,\"voltage\":24.995},{\"current\":0.001,\"status\":1,\"voltage\":24.995},{\"current\":0.001,\"status\":1,\"voltage\":24.995},{\"current\":0.001,\"status\":1,\"voltage\":24.995}],\"fanSpeeds\":[3270,3270],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":29}],\"stCommonInfo\":{\"设备ID\":\"0022512208301977\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048877", + "createdBy": "3", + "createdTime": "2025-03-07 13:51:17", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1003030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15833838\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"884668056\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15833843\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:52\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.172},{\"current\":0.568,\"status\":1,\"voltage\":26.172},{\"current\":0.48900002,\"status\":1,\"voltage\":26.172},{\"current\":0.003,\"status\":1,\"voltage\":26.172},{\"current\":0.28,\"status\":1,\"voltage\":26.172},{\"current\":0.569,\"status\":1,\"voltage\":26.172},{\"current\":0.53300005,\"status\":1,\"voltage\":26.172},{\"current\":0.33600003,\"status\":1,\"voltage\":26.172},{\"current\":0.256,\"status\":1,\"voltage\":26.172},{\"current\":0.282,\"status\":1,\"voltage\":26.588001},{\"current\":0.003,\"status\":1,\"voltage\":26.588001},{\"current\":0.34,\"status\":1,\"voltage\":26.588001},{\"current\":0.001,\"status\":1,\"voltage\":26.588001},{\"current\":0.001,\"status\":1,\"voltage\":26.588001},{\"current\":0.001,\"status\":1,\"voltage\":26.588001},{\"current\":0.001,\"status\":1,\"voltage\":26.588001}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302143\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048878", + "createdBy": "4", + "createdTime": "2025-03-07 13:51:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1003030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15833372\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"884641773\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"71 days, 11:45:01.65\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15833377\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:d8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26900002,\"status\":1,\"voltage\":26.867},{\"current\":0.001,\"status\":0,\"voltage\":26.867},{\"current\":0.29200003,\"status\":1,\"voltage\":26.867},{\"current\":0.347,\"status\":1,\"voltage\":26.867},{\"current\":0.33,\"status\":1,\"voltage\":26.867},{\"current\":0.24400002,\"status\":1,\"voltage\":26.867},{\"current\":0.259,\"status\":1,\"voltage\":26.867},{\"current\":0.555,\"status\":1,\"voltage\":26.867},{\"current\":0.344,\"status\":1,\"voltage\":26.867},{\"current\":0.42900002,\"status\":1,\"voltage\":26.1},{\"current\":0.003,\"status\":1,\"voltage\":26.1},{\"current\":0.001,\"status\":1,\"voltage\":26.1},{\"current\":0.001,\"status\":1,\"voltage\":26.1},{\"current\":0.001,\"status\":1,\"voltage\":26.1},{\"current\":0.001,\"status\":1,\"voltage\":26.1},{\"current\":0.0,\"status\":1,\"voltage\":26.1}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302118\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048879", + "createdBy": "5", + "createdTime": "2025-03-07 13:51:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1003030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15469687\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"864242775\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15469692\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:60\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26500002,\"status\":1,\"voltage\":26.308},{\"current\":0.25500003,\"status\":1,\"voltage\":26.308},{\"current\":0.555,\"status\":1,\"voltage\":26.308},{\"current\":0.34800002,\"status\":1,\"voltage\":26.308},{\"current\":0.35000002,\"status\":1,\"voltage\":26.308},{\"current\":0.257,\"status\":1,\"voltage\":26.308},{\"current\":0.305,\"status\":1,\"voltage\":26.308},{\"current\":0.23400001,\"status\":1,\"voltage\":26.308},{\"current\":0.224,\"status\":1,\"voltage\":26.308},{\"current\":0.37100002,\"status\":1,\"voltage\":26.707},{\"current\":0.003,\"status\":1,\"voltage\":26.707},{\"current\":0.001,\"status\":1,\"voltage\":26.707},{\"current\":0.001,\"status\":1,\"voltage\":26.707},{\"current\":0.001,\"status\":1,\"voltage\":26.707},{\"current\":0.001,\"status\":1,\"voltage\":26.707},{\"current\":0.001,\"status\":1,\"voltage\":26.707}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208302136\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048880", + "createdBy": "6", + "createdTime": "2025-03-07 13:51:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1003030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10488753\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"584938878\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10488758\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:32\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26900002,\"status\":1,\"voltage\":27.213001},{\"current\":0.321,\"status\":1,\"voltage\":27.213001},{\"current\":0.28500003,\"status\":1,\"voltage\":27.213001},{\"current\":0.29900002,\"status\":1,\"voltage\":27.213001},{\"current\":0.42200002,\"status\":1,\"voltage\":27.213001},{\"current\":0.22000001,\"status\":1,\"voltage\":27.213001},{\"current\":0.29900002,\"status\":1,\"voltage\":27.213001},{\"current\":0.22900002,\"status\":1,\"voltage\":27.213001},{\"current\":0.21000001,\"status\":1,\"voltage\":27.213001},{\"current\":0.22100002,\"status\":1,\"voltage\":27.034},{\"current\":0.003,\"status\":1,\"voltage\":27.034},{\"current\":0.51100004,\"status\":1,\"voltage\":27.034},{\"current\":0.24300002,\"status\":1,\"voltage\":27.034},{\"current\":0.261,\"status\":1,\"voltage\":27.034},{\"current\":0.223,\"status\":1,\"voltage\":27.034},{\"current\":0.001,\"status\":1,\"voltage\":27.034}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0022512208302128\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048881", + "createdBy": "7", + "createdTime": "2025-03-07 13:51:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1003030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15829802\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"884441082\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"71 days, 20:06:26.58\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15829807\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:fc\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27800003,\"status\":1,\"voltage\":26.259},{\"current\":0.26200002,\"status\":1,\"voltage\":26.259},{\"current\":0.22600001,\"status\":1,\"voltage\":26.259},{\"current\":0.238,\"status\":1,\"voltage\":26.259},{\"current\":0.54200006,\"status\":1,\"voltage\":26.259},{\"current\":0.215,\"status\":1,\"voltage\":26.259},{\"current\":0.263,\"status\":1,\"voltage\":26.259},{\"current\":0.26500002,\"status\":1,\"voltage\":26.259},{\"current\":0.26000002,\"status\":1,\"voltage\":26.259},{\"current\":0.27,\"status\":1,\"voltage\":27.008001},{\"current\":0.002,\"status\":1,\"voltage\":27.008001},{\"current\":0.259,\"status\":1,\"voltage\":27.008001},{\"current\":0.22200002,\"status\":1,\"voltage\":27.008001},{\"current\":0.001,\"status\":1,\"voltage\":27.008001},{\"current\":0.001,\"status\":1,\"voltage\":27.008001},{\"current\":0.001,\"status\":1,\"voltage\":27.008001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302244\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048882", + "createdBy": "8", + "createdTime": "2025-03-07 13:51:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1003030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15490055\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"865388897\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"72 days, 8:10:38.98\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15490060\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:cf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.76500005,\"status\":1,\"voltage\":25.262001},{\"current\":0.80600005,\"status\":1,\"voltage\":25.262001},{\"current\":0.69100004,\"status\":1,\"voltage\":25.262001},{\"current\":0.81500006,\"status\":1,\"voltage\":25.262001},{\"current\":0.776,\"status\":1,\"voltage\":25.262001},{\"current\":0.725,\"status\":1,\"voltage\":25.262001},{\"current\":0.63600004,\"status\":1,\"voltage\":25.262001},{\"current\":0.68600005,\"status\":1,\"voltage\":25.262001},{\"current\":0.69000006,\"status\":1,\"voltage\":25.262001},{\"current\":0.79300004,\"status\":1,\"voltage\":25.827002},{\"current\":0.002,\"status\":1,\"voltage\":25.827002},{\"current\":0.77300006,\"status\":1,\"voltage\":25.827002},{\"current\":0.60300004,\"status\":1,\"voltage\":25.827002},{\"current\":0.23700002,\"status\":1,\"voltage\":25.827002},{\"current\":0.0,\"status\":1,\"voltage\":25.827002},{\"current\":0.0,\"status\":1,\"voltage\":25.827002}],\"fanSpeeds\":[1980,2040],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0022512208302138\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526910321048883", + "createdBy": "9", + "createdTime": "2025-03-07 13:51:23", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1003030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.134.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3176585\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"174901142\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3176590\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:47\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.44},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.003,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302137\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "704526918910983463", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1003040001", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.133.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif133\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"56\",\"lastChange\":\"0:04:08.23\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:00:2e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"27\",\"temperature\":\"44\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.133.64\",\"index\":\"56\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"2279269\",\"0\",\"0\",\"0\",\"0\",\"0\",\"52539996\",\"41584\",\"52825\",\"10214946\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.57\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":79800,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":4,\"opticalVoltage\":3220,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":46409,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":516,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39523,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":716,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35819,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":582,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36720,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":561,\"opticalVoltage\":3265,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":2504,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2504,\"lastOutBytes\":0,\"opticalBiasCurrent\":38759,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":729,\"opticalVoltage\":3273,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40290,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":603,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37229,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":563,\"opticalVoltage\":3275,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40034,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":639,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38549,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":559,\"opticalVoltage\":3285,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40590,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":562,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35430,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":579,\"opticalVoltage\":3225,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39090,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":564,\"opticalVoltage\":3385,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39270,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":490,\"opticalVoltage\":3379,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44159,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":561,\"opticalVoltage\":3405,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40889,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":561,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":77519,\"opticalReceivePower\":0,\"opticalTemperature\":66,\"opticalTransmitPower\":16,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37889,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":559,\"opticalVoltage\":3323,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42074,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":707,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39209,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":610,\"opticalVoltage\":3357,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12300,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":252,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":412,\"inBytes\":3975430351,\"inFlow\":72,\"lastChangeTime\":\"319 days, 14:13:43.96\",\"lastInBytes\":3975430351,\"lastOutBytes\":2082201362,\"opticalBiasCurrent\":40049,\"opticalReceivePower\":461,\"opticalTemperature\":59,\"opticalTransmitPower\":559,\"opticalVoltage\":3328,\"outBytes\":2082201362,\"outFlow\":339,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":1},{\"flow\":8883804,\"inBytes\":4074681461,\"inFlow\":30966,\"lastChangeTime\":\"240 days, 21:20:59.60\",\"lastInBytes\":4074681461,\"lastOutBytes\":2919118234,\"opticalBiasCurrent\":38009,\"opticalReceivePower\":112,\"opticalTemperature\":58,\"opticalTransmitPower\":561,\"opticalVoltage\":3340,\"outBytes\":2919118234,\"outFlow\":8852837,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":231855,\"inBytes\":2719102582,\"inFlow\":2444,\"lastChangeTime\":\"240 days, 22:05:15.19\",\"lastInBytes\":2719102582,\"lastOutBytes\":3057564863,\"opticalBiasCurrent\":43259,\"opticalReceivePower\":349,\"opticalTemperature\":58,\"opticalTransmitPower\":557,\"opticalVoltage\":3335,\"outBytes\":3057564863,\"outFlow\":229410,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4950138,\"inBytes\":2810370806,\"inFlow\":4790543,\"lastChangeTime\":\"258 days, 21:57:29.78\",\"lastInBytes\":2810370806,\"lastOutBytes\":1414777215,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":236,\"opticalTemperature\":57,\"opticalTransmitPower\":239,\"opticalVoltage\":3354,\"outBytes\":1414777215,\"outFlow\":159594,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2647984,\"inBytes\":3875493483,\"inFlow\":2563454,\"lastChangeTime\":\"289 days, 20:23:24.31\",\"lastInBytes\":3875493483,\"lastOutBytes\":1122283451,\"opticalBiasCurrent\":10411,\"opticalReceivePower\":144,\"opticalTemperature\":60,\"opticalTransmitPower\":248,\"opticalVoltage\":3332,\"outBytes\":1122283451,\"outFlow\":84529,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5712210,\"inBytes\":2669744154,\"inFlow\":5541404,\"lastChangeTime\":\"1 day, 2:09:47.73\",\"lastInBytes\":2669744154,\"lastOutBytes\":3781678726,\"opticalBiasCurrent\":14725,\"opticalReceivePower\":151,\"opticalTemperature\":52,\"opticalTransmitPower\":274,\"opticalVoltage\":3318,\"outBytes\":3781678726,\"outFlow\":170805,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6740681,\"inBytes\":131269790,\"inFlow\":6536568,\"lastChangeTime\":\"12 days, 11:58:00.65\",\"lastInBytes\":131269790,\"lastOutBytes\":896898251,\"opticalBiasCurrent\":11095,\"opticalReceivePower\":63,\"opticalTemperature\":56,\"opticalTransmitPower\":242,\"opticalVoltage\":3348,\"outBytes\":896898251,\"outFlow\":204112,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5988123,\"inBytes\":1396598000,\"inFlow\":5806344,\"lastChangeTime\":\"336 days, 21:39:17.44\",\"lastInBytes\":1396598000,\"lastOutBytes\":3636954926,\"opticalBiasCurrent\":11590,\"opticalReceivePower\":173,\"opticalTemperature\":54,\"opticalTransmitPower\":244,\"opticalVoltage\":3328,\"outBytes\":3636954926,\"outFlow\":181778,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5717517,\"inBytes\":437812945,\"inFlow\":5541519,\"lastChangeTime\":\"154 days, 12:08:50.69\",\"lastInBytes\":437812945,\"lastOutBytes\":1887072377,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":149,\"opticalTemperature\":52,\"opticalTransmitPower\":238,\"opticalVoltage\":3338,\"outBytes\":1887072377,\"outFlow\":175998,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6687580,\"inBytes\":728201511,\"inFlow\":6484415,\"lastChangeTime\":\"258 days, 22:28:19.36\",\"lastInBytes\":728201511,\"lastOutBytes\":1735140248,\"opticalBiasCurrent\":11027,\"opticalReceivePower\":112,\"opticalTemperature\":55,\"opticalTransmitPower\":243,\"opticalVoltage\":3348,\"outBytes\":1735140248,\"outFlow\":203164,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7690322,\"inBytes\":2614385561,\"inFlow\":7442970,\"lastChangeTime\":\"1 day, 1:37:51.90\",\"lastInBytes\":2614385561,\"lastOutBytes\":2742311091,\"opticalBiasCurrent\":14406,\"opticalReceivePower\":160,\"opticalTemperature\":52,\"opticalTransmitPower\":262,\"opticalVoltage\":3318,\"outBytes\":2742311091,\"outFlow\":247352,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8566302,\"inBytes\":3851459529,\"inFlow\":8285799,\"lastChangeTime\":\"1 day, 0:19:43.86\",\"lastInBytes\":3851459529,\"lastOutBytes\":2049351914,\"opticalBiasCurrent\":11381,\"opticalReceivePower\":184,\"opticalTemperature\":54,\"opticalTransmitPower\":260,\"opticalVoltage\":3348,\"outBytes\":2049351914,\"outFlow\":280502,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3472344,\"inBytes\":1058783320,\"inFlow\":29123,\"lastChangeTime\":\"258 days, 22:31:47.50\",\"lastInBytes\":1058783320,\"lastOutBytes\":3026302598,\"opticalBiasCurrent\":13545,\"opticalReceivePower\":53,\"opticalTemperature\":52,\"opticalTransmitPower\":259,\"opticalVoltage\":3310,\"outBytes\":3026302598,\"outFlow\":3443220,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14088,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":252,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2114236419,\"inFlow\":0,\"lastChangeTime\":\"12 days, 11:57:31.32\",\"lastInBytes\":2114236419,\"lastOutBytes\":75578154,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":239,\"opticalVoltage\":3354,\"outBytes\":75578154,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13513,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":282,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":233,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":241,\"opticalVoltage\":3374,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":232,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14694,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":287,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":242,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17927,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":246,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":238,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":244,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":238,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":20018,\"inBytes\":1158952274,\"inFlow\":8929,\"lastChangeTime\":\"0:03:02.97\",\"lastInBytes\":1158952274,\"lastOutBytes\":3806441767,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3806441767,\"outFlow\":11089,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":30725949,\"inBytes\":3026232098,\"inFlow\":14721928,\"lastChangeTime\":\"259 days, 0:01:22.25\",\"lastInBytes\":3026232098,\"lastOutBytes\":2841797527,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2841797527,\"outFlow\":16004020,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":49979,\"inBytes\":1364183723,\"inFlow\":25528,\"lastChangeTime\":\"0:03:02.42\",\"lastInBytes\":1364183723,\"lastOutBytes\":1022581526,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1022581526,\"outFlow\":24450,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":345,\"inBytes\":307891880,\"inFlow\":8,\"lastChangeTime\":\"443 days, 20:23:23.37\",\"lastInBytes\":307891880,\"lastOutBytes\":983342063,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":983342063,\"outFlow\":337,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1999480,\"inBytes\":1590790551,\"inFlow\":48323,\"lastChangeTime\":\"429 days, 21:58:38.80\",\"lastInBytes\":1590790551,\"lastOutBytes\":122194792,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":122194792,\"outFlow\":1951156,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2922075,\"inBytes\":3466810403,\"inFlow\":495103,\"lastChangeTime\":\"0:12:59.44\",\"lastInBytes\":3466810403,\"lastOutBytes\":2080385915,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2080385915,\"outFlow\":2426971,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":632164,\"inBytes\":4039920847,\"inFlow\":350001,\"lastChangeTime\":\"21:35:59.89\",\"lastInBytes\":4039920847,\"lastOutBytes\":3086115901,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3086115901,\"outFlow\":282162,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15673492,\"inBytes\":1858591485,\"inFlow\":495505,\"lastChangeTime\":\"21:43:27.26\",\"lastInBytes\":1858591485,\"lastOutBytes\":4083519647,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4083519647,\"outFlow\":15177986,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":19300120,\"inBytes\":1112484910,\"inFlow\":351273,\"lastChangeTime\":\"21:35:56.87\",\"lastInBytes\":1112484910,\"lastOutBytes\":2567047384,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2567047384,\"outFlow\":18948847,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":588,\"inBytes\":2047271093,\"inFlow\":153,\"lastChangeTime\":\"321 days, 0:18:50.73\",\"lastInBytes\":2047271093,\"lastOutBytes\":1851787365,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1851787365,\"outFlow\":434,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":884,\"inBytes\":3069046733,\"inFlow\":233,\"lastChangeTime\":\"455 days, 20:28:02.07\",\"lastInBytes\":3069046733,\"lastOutBytes\":355017707,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":355017707,\"outFlow\":650,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":399868,\"inBytes\":3644207475,\"inFlow\":3112,\"lastChangeTime\":\"453 days, 22:26:08.60\",\"lastInBytes\":3644207475,\"lastOutBytes\":1716655519,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1716655519,\"outFlow\":396756,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":18564423,\"inFlow\":0,\"lastChangeTime\":\"455 days, 20:32:17.42\",\"lastInBytes\":18564423,\"lastOutBytes\":250830137,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":250830137,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":387341,\"inFlow\":0,\"lastChangeTime\":\"336 days, 21:19:17.97\",\"lastInBytes\":387341,\"lastOutBytes\":13438654,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":13438654,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:14.958908000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983464", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040002", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67076\",\"inUnknownProtos\":\"2796929178\",\"index\":\"635\",\"lastChange\":\"0:01:14.41\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:14:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1906926326\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"48518897\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":276314,\"inBytes\":1745395634,\"inFlow\":269434,\"lastChangeTime\":\"0:01:16.33\",\"lastInBytes\":1745395634,\"lastOutBytes\":2972784011,\"outBytes\":2972784011,\"outFlow\":6879,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":897519,\"inBytes\":3747060600,\"inFlow\":875415,\"lastChangeTime\":\"0:01:16.32\",\"lastInBytes\":3747060600,\"lastOutBytes\":4068602012,\"outBytes\":4068602012,\"outFlow\":22104,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":276666,\"inBytes\":2986135464,\"inFlow\":269770,\"lastChangeTime\":\"0:01:16.83\",\"lastInBytes\":2986135464,\"lastOutBytes\":3229902424,\"outBytes\":3229902424,\"outFlow\":6896,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":622671,\"inBytes\":3806322252,\"inFlow\":606428,\"lastChangeTime\":\"0:01:16.34\",\"lastInBytes\":3806322252,\"lastOutBytes\":396602468,\"outBytes\":396602468,\"outFlow\":16242,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276049,\"inBytes\":4142136957,\"inFlow\":269171,\"lastChangeTime\":\"0:01:16.33\",\"lastInBytes\":4142136957,\"lastOutBytes\":3596589198,\"outBytes\":3596589198,\"outFlow\":6878,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":275629,\"inBytes\":3591530512,\"inFlow\":268794,\"lastChangeTime\":\"0:01:16.33\",\"lastInBytes\":3591530512,\"lastOutBytes\":2796929178,\"outBytes\":2796929178,\"outFlow\":6835,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276152,\"inBytes\":1260054083,\"inFlow\":269313,\"lastChangeTime\":\"0:01:16.84\",\"lastInBytes\":1260054083,\"lastOutBytes\":2238471275,\"outBytes\":2238471275,\"outFlow\":6838,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":276456,\"inBytes\":2116889110,\"inFlow\":269569,\"lastChangeTime\":\"0:01:16.83\",\"lastInBytes\":2116889110,\"lastOutBytes\":3304706298,\"outBytes\":3304706298,\"outFlow\":6886,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":280850,\"inBytes\":1431113937,\"inFlow\":273751,\"lastChangeTime\":\"117 days, 15:19:53.54\",\"lastInBytes\":1431113937,\"lastOutBytes\":4265396708,\"outBytes\":4265396708,\"outFlow\":7099,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":276748,\"inBytes\":1752864624,\"inFlow\":269662,\"lastChangeTime\":\"117 days, 15:10:44.04\",\"lastInBytes\":1752864624,\"lastOutBytes\":536879386,\"outBytes\":536879386,\"outFlow\":7085,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":897348,\"inBytes\":108941181,\"inFlow\":875088,\"lastChangeTime\":\"0:01:16.84\",\"lastInBytes\":108941181,\"lastOutBytes\":3028422585,\"outBytes\":3028422585,\"outFlow\":22259,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":276433,\"inBytes\":2474428068,\"inFlow\":269594,\"lastChangeTime\":\"0:01:16.85\",\"lastInBytes\":2474428068,\"lastOutBytes\":3378856336,\"outBytes\":3378856336,\"outFlow\":6839,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":1104105464,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.34\",\"lastInBytes\":1104105464,\"lastOutBytes\":2604357004,\"outBytes\":2604357004,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4925851,\"inBytes\":3274390268,\"inFlow\":127909,\"lastChangeTime\":\"0:01:14.40\",\"lastInBytes\":3274390268,\"lastOutBytes\":1646821234,\"outBytes\":1646821234,\"outFlow\":4797941,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.819144000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983465", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1003040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67113\",\"inUnknownProtos\":\"4049152462\",\"index\":\"634\",\"lastChange\":\"0:01:35.32\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:49:a2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1864042148\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"48515596\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":414125,\"inBytes\":1289872824,\"inFlow\":403912,\"lastChangeTime\":\"0:01:34.81\",\"lastInBytes\":1289872824,\"lastOutBytes\":1490927031,\"outBytes\":1490927031,\"outFlow\":10212,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":415724,\"inBytes\":2576410473,\"inFlow\":405611,\"lastChangeTime\":\"0:01:35.16\",\"lastInBytes\":2576410473,\"lastOutBytes\":1817570968,\"outBytes\":1817570968,\"outFlow\":10112,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413970,\"inBytes\":531787108,\"inFlow\":403895,\"lastChangeTime\":\"0:01:35.53\",\"lastInBytes\":531787108,\"lastOutBytes\":5899968,\"outBytes\":5899968,\"outFlow\":10074,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414347,\"inBytes\":2172965878,\"inFlow\":404210,\"lastChangeTime\":\"117 days, 14:30:12.30\",\"lastInBytes\":2172965878,\"lastOutBytes\":732258469,\"outBytes\":732258469,\"outFlow\":10137,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276300,\"inBytes\":2520510737,\"inFlow\":269473,\"lastChangeTime\":\"0:01:35.53\",\"lastInBytes\":2520510737,\"lastOutBytes\":4049084718,\"outBytes\":4049084718,\"outFlow\":6826,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413799,\"inBytes\":3635980227,\"inFlow\":403779,\"lastChangeTime\":\"129 days, 1:43:26.45\",\"lastInBytes\":3635980227,\"lastOutBytes\":292698665,\"outBytes\":292698665,\"outFlow\":10020,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276531,\"inBytes\":3240349878,\"inFlow\":269554,\"lastChangeTime\":\"7 days, 22:46:37.56\",\"lastInBytes\":3240349878,\"lastOutBytes\":4150719471,\"outBytes\":4150719471,\"outFlow\":6976,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":831140,\"inFlow\":0,\"lastChangeTime\":\"117 days, 14:22:31.82\",\"lastInBytes\":831140,\"lastOutBytes\":85047290,\"outBytes\":85047290,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"117 days, 14:50:23.94\",\"lastInBytes\":0,\"lastOutBytes\":2564,\"outBytes\":2564,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1080776146,\"inFlow\":1,\"lastChangeTime\":\"0:01:36.40\",\"lastInBytes\":1080776146,\"lastOutBytes\":2581137507,\"outBytes\":2581137507,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.65\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2635199,\"inBytes\":2306328547,\"inFlow\":67609,\"lastChangeTime\":\"30 days, 22:23:02.03\",\"lastInBytes\":2306328547,\"lastOutBytes\":1584563211,\"outBytes\":1584563211,\"outFlow\":2567589,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.872561000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983466", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1003040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"148351\",\"inUnknownProtos\":\"1913296390\",\"index\":\"635\",\"lastChange\":\"0:01:19.31\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c2:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"786966282\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"176297819\",\"speed\":\"4294967295\"},\"cpuRatio\":\"11\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":398893,\"inBytes\":1746668648,\"inFlow\":390321,\"lastChangeTime\":\"401 days, 10:22:23.43\",\"lastInBytes\":1746668648,\"lastOutBytes\":2576205050,\"outBytes\":2576205050,\"outFlow\":8571,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1090285,\"inBytes\":3437411850,\"inFlow\":1064969,\"lastChangeTime\":\"328 days, 5:35:48.37\",\"lastInBytes\":3437411850,\"lastOutBytes\":3200892740,\"outBytes\":3200892740,\"outFlow\":25315,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":956524,\"inBytes\":2890947911,\"inFlow\":937294,\"lastChangeTime\":\"117 days, 2:47:42.64\",\"lastInBytes\":2890947911,\"lastOutBytes\":510131587,\"outBytes\":510131587,\"outFlow\":19229,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":400682,\"inBytes\":464001207,\"inFlow\":390873,\"lastChangeTime\":\"396 days, 10:33:11.25\",\"lastInBytes\":464001207,\"lastOutBytes\":1974894932,\"outBytes\":1974894932,\"outFlow\":9809,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":403410,\"inBytes\":3188954031,\"inFlow\":393528,\"lastChangeTime\":\"396 days, 10:33:13.53\",\"lastInBytes\":3188954031,\"lastOutBytes\":4064749399,\"outBytes\":4064749399,\"outFlow\":9882,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406174,\"inBytes\":2276277499,\"inFlow\":396191,\"lastChangeTime\":\"396 days, 10:33:14.15\",\"lastInBytes\":2276277499,\"lastOutBytes\":1913296390,\"outBytes\":1913296390,\"outFlow\":9983,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407700,\"inBytes\":377028169,\"inFlow\":397795,\"lastChangeTime\":\"396 days, 10:33:07.42\",\"lastInBytes\":377028169,\"lastOutBytes\":297241253,\"outBytes\":297241253,\"outFlow\":9905,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1076985,\"inBytes\":654018736,\"inFlow\":1051862,\"lastChangeTime\":\"328 days, 5:35:41.58\",\"lastInBytes\":654018736,\"lastOutBytes\":3098004007,\"outBytes\":3098004007,\"outFlow\":25122,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":405097,\"inBytes\":3041773981,\"inFlow\":395219,\"lastChangeTime\":\"396 days, 10:33:14.25\",\"lastInBytes\":3041773981,\"lastOutBytes\":726596526,\"outBytes\":726596526,\"outFlow\":9878,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1629780404,\"inFlow\":1,\"lastChangeTime\":\"18 days, 8:53:43.51\",\"lastInBytes\":1629780404,\"lastOutBytes\":656035276,\"outBytes\":656035276,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5581723,\"inBytes\":750274277,\"inFlow\":134343,\"lastChangeTime\":\"0:01:19.31\",\"lastInBytes\":750274277,\"lastOutBytes\":2815154226,\"outBytes\":2815154226,\"outFlow\":5447380,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.826420000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983467", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"145014\",\"inUnknownProtos\":\"3632396956\",\"index\":\"634\",\"lastChange\":\"0:01:20.89\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:72:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1690554427\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"166096475\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":1039197,\"inBytes\":830643667,\"inFlow\":1017065,\"lastChangeTime\":\"345 days, 17:57:07.40\",\"lastInBytes\":830643667,\"lastOutBytes\":1353161410,\"outBytes\":1353161410,\"outFlow\":22132,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":562002,\"inBytes\":4250410000,\"inFlow\":548636,\"lastChangeTime\":\"345 days, 17:56:54.94\",\"lastInBytes\":4250410000,\"lastOutBytes\":3407566859,\"outBytes\":3407566859,\"outFlow\":13366,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419028,\"inBytes\":2756106918,\"inFlow\":409269,\"lastChangeTime\":\"345 days, 17:56:59.22\",\"lastInBytes\":2756106918,\"lastOutBytes\":1902187682,\"outBytes\":1902187682,\"outFlow\":9758,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":521355,\"inBytes\":1197076768,\"inFlow\":509706,\"lastChangeTime\":\"345 days, 17:57:00.25\",\"lastInBytes\":1197076768,\"lastOutBytes\":1650551151,\"outBytes\":1650551151,\"outFlow\":11649,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":736244,\"inBytes\":3605047647,\"inFlow\":715663,\"lastChangeTime\":\"450 days, 0:05:31.52\",\"lastInBytes\":3605047647,\"lastOutBytes\":3632396956,\"outBytes\":3632396956,\"outFlow\":20581,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1092358,\"inBytes\":3391261656,\"inFlow\":1066582,\"lastChangeTime\":\"347 days, 22:19:41.20\",\"lastInBytes\":3391261656,\"lastOutBytes\":1046548361,\"outBytes\":1046548361,\"outFlow\":25776,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":993978,\"inBytes\":1337658174,\"inFlow\":970936,\"lastChangeTime\":\"345 days, 17:56:54.42\",\"lastInBytes\":1337658174,\"lastOutBytes\":1584360795,\"outBytes\":1584360795,\"outFlow\":23042,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414472,\"inBytes\":3214731028,\"inFlow\":404311,\"lastChangeTime\":\"345 days, 17:57:06.15\",\"lastInBytes\":3214731028,\"lastOutBytes\":3117104999,\"outBytes\":3117104999,\"outFlow\":10161,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414107,\"inBytes\":734445630,\"inFlow\":404050,\"lastChangeTime\":\"345 days, 17:57:16.14\",\"lastInBytes\":734445630,\"lastOutBytes\":533502287,\"outBytes\":533502287,\"outFlow\":10057,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":414515,\"inBytes\":3365293895,\"inFlow\":404463,\"lastChangeTime\":\"345 days, 18:49:16.20\",\"lastInBytes\":3365293895,\"lastOutBytes\":361539679,\"outBytes\":361539679,\"outFlow\":10052,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":414376,\"inBytes\":1304956664,\"inFlow\":404249,\"lastChangeTime\":\"347 days, 22:47:11.33\",\"lastInBytes\":1304956664,\"lastOutBytes\":1778404498,\"outBytes\":1778404498,\"outFlow\":10126,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":7477170,\"inFlow\":0,\"lastChangeTime\":\"142 days, 0:03:51.77\",\"lastInBytes\":7477170,\"lastOutBytes\":307087804,\"outBytes\":307087804,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":1629573847,\"inFlow\":1,\"lastChangeTime\":\"6 days, 22:59:04.60\",\"lastInBytes\":1629573847,\"lastOutBytes\":570451650,\"outBytes\":570451650,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7051046,\"inBytes\":1053695273,\"inFlow\":174845,\"lastChangeTime\":\"0:13:43.00\",\"lastInBytes\":1053695273,\"lastOutBytes\":1672809253,\"outBytes\":1672809253,\"outFlow\":6876200,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.856891000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983468", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"180314\",\"inUnknownProtos\":\"180730329\",\"index\":\"634\",\"lastChange\":\"101 days, 11:10:38.59\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:6f:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3639756370\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"202167979\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":414778,\"inBytes\":2012305606,\"inFlow\":404625,\"lastChangeTime\":\"357 days, 11:41:02.37\",\"lastInBytes\":2012305606,\"lastOutBytes\":331251634,\"outBytes\":331251634,\"outFlow\":10152,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":618013,\"inBytes\":4103900782,\"inFlow\":602322,\"lastChangeTime\":\"35 days, 6:43:08.73\",\"lastInBytes\":4103900782,\"lastOutBytes\":1070061487,\"outBytes\":1070061487,\"outFlow\":15690,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414844,\"inBytes\":1640504872,\"inFlow\":404638,\"lastChangeTime\":\"357 days, 11:41:00.54\",\"lastInBytes\":1640504872,\"lastOutBytes\":749839737,\"outBytes\":749839737,\"outFlow\":10205,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":438565,\"inBytes\":3602025732,\"inFlow\":428729,\"lastChangeTime\":\"218 days, 15:54:10.05\",\"lastInBytes\":3602025732,\"lastOutBytes\":2429540956,\"outBytes\":2429540956,\"outFlow\":9835,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":908305,\"inBytes\":2479331026,\"inFlow\":889785,\"lastChangeTime\":\"357 days, 12:01:24.69\",\"lastInBytes\":2479331026,\"lastOutBytes\":180730329,\"outBytes\":180730329,\"outFlow\":18520,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":897278,\"inBytes\":3845580585,\"inFlow\":875012,\"lastChangeTime\":\"357 days, 11:40:59.56\",\"lastInBytes\":3845580585,\"lastOutBytes\":1909993363,\"outBytes\":1909993363,\"outFlow\":22265,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":897219,\"inBytes\":4076107867,\"inFlow\":875416,\"lastChangeTime\":\"357 days, 11:41:00.38\",\"lastInBytes\":4076107867,\"lastOutBytes\":2212304785,\"outBytes\":2212304785,\"outFlow\":21802,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414912,\"inBytes\":736164840,\"inFlow\":404879,\"lastChangeTime\":\"429 days, 18:41:48.07\",\"lastInBytes\":736164840,\"lastOutBytes\":2251625483,\"outBytes\":2251625483,\"outFlow\":10032,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1017681,\"inBytes\":304894955,\"inFlow\":994199,\"lastChangeTime\":\"218 days, 15:53:53.60\",\"lastInBytes\":304894955,\"lastOutBytes\":3461492718,\"outBytes\":3461492718,\"outFlow\":23481,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":9756951,\"inFlow\":0,\"lastChangeTime\":\"35 days, 6:54:08.16\",\"lastInBytes\":9756951,\"lastOutBytes\":553565453,\"outBytes\":553565453,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1629628314,\"inFlow\":1,\"lastChangeTime\":\"119 days, 23:03:03.35\",\"lastInBytes\":1629628314,\"lastOutBytes\":500925292,\"outBytes\":500925292,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6009808,\"inBytes\":1662579016,\"inFlow\":147932,\"lastChangeTime\":\"437 days, 8:50:53.39\",\"lastInBytes\":1662579016,\"lastOutBytes\":3510803728,\"outBytes\":3510803728,\"outFlow\":5861875,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.849556000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983469", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"99753\",\"inUnknownProtos\":\"1620633997\",\"index\":\"635\",\"lastChange\":\"0:01:15.31\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:27:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3538427336\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"85236887\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":879737,\"inBytes\":2270105578,\"inFlow\":857924,\"lastChangeTime\":\"243 days, 0:27:12.47\",\"lastInBytes\":2270105578,\"lastOutBytes\":686676746,\"outBytes\":686676746,\"outFlow\":21812,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409289,\"inBytes\":1869213304,\"inFlow\":399255,\"lastChangeTime\":\"102 days, 12:28:57.99\",\"lastInBytes\":1869213304,\"lastOutBytes\":3644171073,\"outBytes\":3644171073,\"outFlow\":10033,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":405670,\"inBytes\":2895133323,\"inFlow\":395967,\"lastChangeTime\":\"174 days, 19:26:14.67\",\"lastInBytes\":2895133323,\"lastOutBytes\":65858083,\"outBytes\":65858083,\"outFlow\":9703,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":410860,\"inBytes\":386603807,\"inFlow\":401874,\"lastChangeTime\":\"0:01:18.02\",\"lastInBytes\":386603807,\"lastOutBytes\":2235658755,\"outBytes\":2235658755,\"outFlow\":8985,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428886,\"inBytes\":2550510318,\"inFlow\":419115,\"lastChangeTime\":\"0:01:17.77\",\"lastInBytes\":2550510318,\"lastOutBytes\":3551621060,\"outBytes\":3551621060,\"outFlow\":9771,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":889405,\"inBytes\":2524117801,\"inFlow\":867597,\"lastChangeTime\":\"102 days, 12:29:24.67\",\"lastInBytes\":2524117801,\"lastOutBytes\":1620633997,\"outBytes\":1620633997,\"outFlow\":21807,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":403586,\"inBytes\":767818096,\"inFlow\":393803,\"lastChangeTime\":\"102 days, 12:34:08.90\",\"lastInBytes\":767818096,\"lastOutBytes\":1512536652,\"outBytes\":1512536652,\"outFlow\":9782,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":893988,\"inBytes\":961335171,\"inFlow\":875421,\"lastChangeTime\":\"0:01:17.77\",\"lastInBytes\":961335171,\"lastOutBytes\":983859339,\"outBytes\":983859339,\"outFlow\":18567,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":271492,\"inBytes\":426492317,\"inFlow\":264845,\"lastChangeTime\":\"0:01:17.21\",\"lastInBytes\":426492317,\"lastOutBytes\":3792264674,\"outBytes\":3792264674,\"outFlow\":6647,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":409877,\"inBytes\":1375662238,\"inFlow\":399888,\"lastChangeTime\":\"102 days, 12:34:15.50\",\"lastInBytes\":1375662238,\"lastOutBytes\":2662565221,\"outBytes\":2662565221,\"outFlow\":9989,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1591472024,\"inFlow\":1,\"lastChangeTime\":\"0:01:17.20\",\"lastInBytes\":1591472024,\"lastOutBytes\":3820778376,\"outBytes\":3820778376,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5428138,\"inBytes\":3942878488,\"inFlow\":133213,\"lastChangeTime\":\"0:01:15.31\",\"lastInBytes\":3942878488,\"lastOutBytes\":1973990781,\"outBytes\":1973990781,\"outFlow\":5294925,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.819497000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983470", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67081\",\"inUnknownProtos\":\"1063727233\",\"index\":\"635\",\"lastChange\":\"0:01:13.02\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b0:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2484682142\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"48764158\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":406094,\"inBytes\":717563891,\"inFlow\":396135,\"lastChangeTime\":\"0:01:15.45\",\"lastInBytes\":717563891,\"lastOutBytes\":1196453838,\"outBytes\":1196453838,\"outFlow\":9959,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":497296,\"inBytes\":3596080236,\"inFlow\":486303,\"lastChangeTime\":\"0:01:15.47\",\"lastInBytes\":3596080236,\"lastOutBytes\":1138683514,\"outBytes\":1138683514,\"outFlow\":10993,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406846,\"inBytes\":2427697121,\"inFlow\":396919,\"lastChangeTime\":\"138 days, 14:03:37.93\",\"lastInBytes\":2427697121,\"lastOutBytes\":1513393265,\"outBytes\":1513393265,\"outFlow\":9926,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":975752,\"inBytes\":3056973787,\"inFlow\":955677,\"lastChangeTime\":\"0:01:15.47\",\"lastInBytes\":3056973787,\"lastOutBytes\":2153270632,\"outBytes\":2153270632,\"outFlow\":20074,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":272772,\"inBytes\":3088619127,\"inFlow\":265996,\"lastChangeTime\":\"201 days, 1:33:12.83\",\"lastInBytes\":3088619127,\"lastOutBytes\":1097050466,\"outBytes\":1097050466,\"outFlow\":6776,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":273467,\"inBytes\":2800043322,\"inFlow\":266616,\"lastChangeTime\":\"0:01:15.46\",\"lastInBytes\":2800043322,\"lastOutBytes\":1063727233,\"outBytes\":1063727233,\"outFlow\":6850,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":406965,\"inBytes\":2716444574,\"inFlow\":397029,\"lastChangeTime\":\"0:01:15.45\",\"lastInBytes\":2716444574,\"lastOutBytes\":545825454,\"outBytes\":545825454,\"outFlow\":9936,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407641,\"inBytes\":1691344188,\"inFlow\":397694,\"lastChangeTime\":\"138 days, 14:03:39.74\",\"lastInBytes\":1691344188,\"lastOutBytes\":1280596113,\"outBytes\":1280596113,\"outFlow\":9947,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":407007,\"inBytes\":3922164367,\"inFlow\":397051,\"lastChangeTime\":\"138 days, 14:03:49.11\",\"lastInBytes\":3922164367,\"lastOutBytes\":1760569919,\"outBytes\":1760569919,\"outFlow\":9955,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":406891,\"inBytes\":2817756383,\"inFlow\":396948,\"lastChangeTime\":\"138 days, 14:03:35.80\",\"lastInBytes\":2817756383,\"lastOutBytes\":3076414607,\"outBytes\":3076414607,\"outFlow\":9942,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1096753,\"inBytes\":1735620006,\"inFlow\":1071134,\"lastChangeTime\":\"70 days, 9:02:50.84\",\"lastInBytes\":1735620006,\"lastOutBytes\":1886908136,\"outBytes\":1886908136,\"outFlow\":25619,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":406804,\"inBytes\":185357934,\"inFlow\":396949,\"lastChangeTime\":\"138 days, 14:03:36.41\",\"lastInBytes\":185357934,\"lastOutBytes\":3003859924,\"outBytes\":3003859924,\"outFlow\":9855,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":407359,\"inBytes\":43619532,\"inFlow\":397416,\"lastChangeTime\":\"138 days, 14:03:31.23\",\"lastInBytes\":43619532,\"lastOutBytes\":3781264307,\"outBytes\":3781264307,\"outFlow\":9942,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":272214,\"inBytes\":1461873676,\"inFlow\":265360,\"lastChangeTime\":\"0:01:15.44\",\"lastInBytes\":1461873676,\"lastOutBytes\":4023401521,\"outBytes\":4023401521,\"outFlow\":6853,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1079835991,\"inFlow\":1,\"lastChangeTime\":\"0:01:14.93\",\"lastInBytes\":1079835991,\"lastOutBytes\":2577324483,\"outBytes\":2577324483,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6702304,\"inBytes\":2272511824,\"inFlow\":164156,\"lastChangeTime\":\"0:01:13.01\",\"lastInBytes\":2272511824,\"lastOutBytes\":3112487812,\"outBytes\":3112487812,\"outFlow\":6538147,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.827998000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983471", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"180534\",\"inUnknownProtos\":\"4080404060\",\"index\":\"634\",\"lastChange\":\"101 days, 11:23:31.35\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:71:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1243617301\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"201907800\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"27\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":897538,\"inBytes\":1370274813,\"inFlow\":874991,\"lastChangeTime\":\"21:11:39.22\",\"lastInBytes\":1370274813,\"lastOutBytes\":2107047027,\"outBytes\":2107047027,\"outFlow\":22546,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":891795,\"inBytes\":1212174726,\"inFlow\":869485,\"lastChangeTime\":\"21:11:42.47\",\"lastInBytes\":1212174726,\"lastOutBytes\":590840825,\"outBytes\":590840825,\"outFlow\":22309,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":895686,\"inBytes\":2229867504,\"inFlow\":873131,\"lastChangeTime\":\"21:11:40.57\",\"lastInBytes\":2229867504,\"lastOutBytes\":288318027,\"outBytes\":288318027,\"outFlow\":22554,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":892838,\"inBytes\":4252211285,\"inFlow\":870533,\"lastChangeTime\":\"21:11:31.31\",\"lastInBytes\":4252211285,\"lastOutBytes\":2871662750,\"outBytes\":2871662750,\"outFlow\":22305,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":417107,\"inBytes\":4073875773,\"inFlow\":407005,\"lastChangeTime\":\"429 days, 18:38:21.77\",\"lastInBytes\":4073875773,\"lastOutBytes\":4080404060,\"outBytes\":4080404060,\"outFlow\":10101,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":276938,\"inBytes\":308235103,\"inFlow\":269990,\"lastChangeTime\":\"120 days, 0:07:59.50\",\"lastInBytes\":308235103,\"lastOutBytes\":936259681,\"outBytes\":936259681,\"outFlow\":6947,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413250,\"inBytes\":2022502868,\"inFlow\":403149,\"lastChangeTime\":\"357 days, 11:51:52.82\",\"lastInBytes\":2022502868,\"lastOutBytes\":2045033235,\"outBytes\":2045033235,\"outFlow\":10101,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414152,\"inBytes\":4216535234,\"inFlow\":403841,\"lastChangeTime\":\"357 days, 11:51:52.20\",\"lastInBytes\":4216535234,\"lastOutBytes\":1655193413,\"outBytes\":1655193413,\"outFlow\":10310,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415271,\"inBytes\":1737700546,\"inFlow\":405159,\"lastChangeTime\":\"357 days, 11:51:55.97\",\"lastInBytes\":1737700546,\"lastOutBytes\":4008819983,\"outBytes\":4008819983,\"outFlow\":10111,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":906518,\"inBytes\":1393390324,\"inFlow\":883579,\"lastChangeTime\":\"21:11:41.35\",\"lastInBytes\":1393390324,\"lastOutBytes\":3003306564,\"outBytes\":3003306564,\"outFlow\":22938,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":900323,\"inBytes\":2596623320,\"inFlow\":877502,\"lastChangeTime\":\"21:11:40.10\",\"lastInBytes\":2596623320,\"lastOutBytes\":1276539836,\"outBytes\":1276539836,\"outFlow\":22821,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":276387,\"inBytes\":3686127831,\"inFlow\":269435,\"lastChangeTime\":\"254 days, 23:04:59.06\",\"lastInBytes\":3686127831,\"lastOutBytes\":3810067545,\"outBytes\":3810067545,\"outFlow\":6951,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1491933,\"inFlow\":0,\"lastChangeTime\":\"254 days, 23:06:59.55\",\"lastInBytes\":1491933,\"lastOutBytes\":60657809,\"outBytes\":60657809,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":1629274500,\"inFlow\":1,\"lastChangeTime\":\"120 days, 0:07:29.47\",\"lastInBytes\":1629274500,\"lastOutBytes\":498736099,\"outBytes\":498736099,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7630267,\"inBytes\":1254289895,\"inFlow\":198953,\"lastChangeTime\":\"101 days, 12:35:41.15\",\"lastInBytes\":1254289895,\"lastOutBytes\":2741015964,\"outBytes\":2741015964,\"outFlow\":7431313,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.989130000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983472", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1003040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"180542\",\"inUnknownProtos\":\"1359771568\",\"index\":\"635\",\"lastChange\":\"101 days, 11:15:44.27\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:ec:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1135185639\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"201902675\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":455447,\"inBytes\":648990394,\"inFlow\":438211,\"lastChangeTime\":\"76 days, 8:43:43.51\",\"lastInBytes\":648990394,\"lastOutBytes\":127315143,\"outBytes\":127315143,\"outFlow\":17236,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":901750,\"inBytes\":3106251599,\"inFlow\":879390,\"lastChangeTime\":\"59 days, 5:58:11.72\",\"lastInBytes\":3106251599,\"lastOutBytes\":3221415412,\"outBytes\":3221415412,\"outFlow\":22359,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1145716,\"inBytes\":1355685097,\"inFlow\":1145716,\"lastChangeTime\":\"429 days, 18:38:16.93\",\"lastInBytes\":1355685097,\"lastOutBytes\":178,\"outBytes\":178,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414094,\"inBytes\":2905441096,\"inFlow\":403978,\"lastChangeTime\":\"357 days, 11:52:00.14\",\"lastInBytes\":2905441096,\"lastOutBytes\":2627952021,\"outBytes\":2627952021,\"outFlow\":10115,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413650,\"inBytes\":1624385296,\"inFlow\":403590,\"lastChangeTime\":\"357 days, 11:52:47.62\",\"lastInBytes\":1624385296,\"lastOutBytes\":2263849345,\"outBytes\":2263849345,\"outFlow\":10060,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413964,\"inBytes\":1163493567,\"inFlow\":403869,\"lastChangeTime\":\"357 days, 11:57:20.67\",\"lastInBytes\":1163493567,\"lastOutBytes\":1359667615,\"outBytes\":1359667615,\"outFlow\":10094,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1113562,\"inBytes\":3546801004,\"inFlow\":1087424,\"lastChangeTime\":\"429 days, 18:38:14.59\",\"lastInBytes\":3546801004,\"lastOutBytes\":3367014703,\"outBytes\":3367014703,\"outFlow\":26137,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":415444,\"inBytes\":3908201741,\"inFlow\":404684,\"lastChangeTime\":\"21:11:36.20\",\"lastInBytes\":3908201741,\"lastOutBytes\":3399312203,\"outBytes\":3399312203,\"outFlow\":10760,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":904259,\"inBytes\":2136309516,\"inFlow\":881454,\"lastChangeTime\":\"21:11:41.27\",\"lastInBytes\":2136309516,\"lastOutBytes\":431400691,\"outBytes\":431400691,\"outFlow\":22805,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":903995,\"inBytes\":885761446,\"inFlow\":881046,\"lastChangeTime\":\"21:11:32.59\",\"lastInBytes\":885761446,\"lastOutBytes\":4190089108,\"outBytes\":4190089108,\"outFlow\":22948,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":901608,\"inBytes\":2164071110,\"inFlow\":878806,\"lastChangeTime\":\"21:11:39.47\",\"lastInBytes\":2164071110,\"lastOutBytes\":991330843,\"outBytes\":991330843,\"outFlow\":22802,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":416649,\"inBytes\":1516243959,\"inFlow\":406624,\"lastChangeTime\":\"429 days, 18:38:11.70\",\"lastInBytes\":1516243959,\"lastOutBytes\":4131416452,\"outBytes\":4131416452,\"outFlow\":10024,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":276321,\"inBytes\":2082663610,\"inFlow\":269415,\"lastChangeTime\":\"119 days, 23:41:28.60\",\"lastInBytes\":2082663610,\"lastOutBytes\":4091646127,\"outBytes\":4091646127,\"outFlow\":6906,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":797233,\"inFlow\":0,\"lastChangeTime\":\"101 days, 11:17:34.85\",\"lastInBytes\":797233,\"lastOutBytes\":87003052,\"outBytes\":87003052,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":122105,\"inFlow\":0,\"lastChangeTime\":\"488 days, 10:32:14.60\",\"lastInBytes\":122105,\"lastOutBytes\":63207,\"outBytes\":63207,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1593627338,\"inFlow\":1,\"lastChangeTime\":\"488 days, 10:26:56.49\",\"lastInBytes\":1593627338,\"lastOutBytes\":3822539117,\"outBytes\":3822539117,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.76\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.76\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.76\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8698393,\"inBytes\":3987985837,\"inFlow\":229079,\"lastChangeTime\":\"101 days, 11:17:32.93\",\"lastInBytes\":3987985837,\"lastOutBytes\":1864808601,\"outBytes\":1864808601,\"outFlow\":8469313,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.969551000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704526918910983473", + "createdBy": "0", + "createdTime": "2025-11-28 10:49:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:12", + "echoMap": {}, + "deviceId": "1003040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.134.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface134\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"10\",\"inUnknownProtos\":\"0\",\"index\":\"636\",\"lastChange\":\"0:01:24.37\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:73:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"9\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.134.140\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":276,\"inBytes\":30460,\"inFlow\":0,\"lastChangeTime\":\"206 days, 12:12:49.25\",\"lastInBytes\":30460,\"lastOutBytes\":540341447,\"outBytes\":540341447,\"outFlow\":276,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":10000000,\"upDown\":1},{\"flow\":477,\"inBytes\":1523178739,\"inFlow\":117,\"lastChangeTime\":\"117 days, 12:42:50.64\",\"lastInBytes\":1523178739,\"lastOutBytes\":1499384348,\"outBytes\":1499384348,\"outFlow\":360,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4189325,\"inFlow\":0,\"lastChangeTime\":\"201 days, 9:08:38.46\",\"lastInBytes\":4189325,\"lastOutBytes\":117631081,\"outBytes\":117631081,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3452116,\"inBytes\":3217762521,\"inFlow\":20198,\"lastChangeTime\":\"213 days, 20:51:07.58\",\"lastInBytes\":3217762521,\"lastOutBytes\":1439915177,\"outBytes\":1439915177,\"outFlow\":3431917,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":329251691,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.53\",\"lastInBytes\":329251691,\"lastOutBytes\":1855393468,\"outBytes\":1855393468,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:45.35\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:45.49\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3468366,\"inBytes\":2114382902,\"inFlow\":3445556,\"lastChangeTime\":\"0:01:24.36\",\"lastInBytes\":2114382902,\"lastOutBytes\":3235388958,\"outBytes\":3235388958,\"outFlow\":22810,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.938534000\"}}", + "lastDiagTime": "2026-02-02 14:39:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585048728390347886", + "createdBy": "0", + "createdTime": "2025-01-21 13:29:24", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1003110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.133.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.79\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"474 days, 4:25:34.07\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"135947\",\"inErrors\":\"0\",\"inNUcastPkts\":\"21859266\",\"inOctets\":\"3774565203\",\"inUcastPkts\":\"1199078958\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a3:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1271825669\",\"outQLen\":\"0\",\"outUcastPkts\":\"1148013090\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.133.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1004": { + "ndmAlarmHost": [ + { + "id": "687483861613757444", + "createdBy": null, + "createdTime": "2025-10-18 14:51:48", + "updatedBy": null, + "updatedTime": "2025-10-18 14:51:48", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.135.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "687483835843953682", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1004060001", + "name": "[605](10)动物园弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483835843953683", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1004060002", + "name": "[606](10)动物园弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483835843953684", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1004060003", + "name": "[624](10)动物园消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001006004624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483835843953685", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060004", + "name": "[607](10)动物园弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483835843953686", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060005", + "name": "[608](10)动物园弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920960", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060006", + "name": "[609](10)动物园弱电综合机房5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920961", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060007", + "name": "[617](10)动物园内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001006004617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920962", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060008", + "name": "[602](10)动物园编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403041005004602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920963", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060009", + "name": "[603](10)动物园编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403041005004603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920964", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060010", + "name": "[604](10)动物园编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403041005004604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920965", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060011", + "name": "[618](10)动物园内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001006004618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920966", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060012", + "name": "[612](10)动物园环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403053005004612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920967", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060013", + "name": "[616](10)动物园消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403068005004616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920968", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060014", + "name": "[619](10)动物园内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001005004619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920969", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-12-12 09:13:51", + "echoMap": {}, + "deviceId": "1004060015", + "name": "[331](10)动物园4#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058005004331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920970", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2026-01-21 10:15:49", + "echoMap": {}, + "deviceId": "1004060016", + "name": "[347](10)动物园2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401036005004347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920971", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-12-12 09:12:53", + "echoMap": {}, + "deviceId": "1004060017", + "name": "[325](10)动物园4#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920972", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-12-12 09:12:53", + "echoMap": {}, + "deviceId": "1004060018", + "name": "[324](10)动物园4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920973", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-12-12 09:12:53", + "echoMap": {}, + "deviceId": "1004060019", + "name": "[328](10)动物园4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920974", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-12-12 09:12:54", + "echoMap": {}, + "deviceId": "1004060020", + "name": "[330](10)动物园4#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920975", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-12-12 09:12:54", + "echoMap": {}, + "deviceId": "1004060021", + "name": "[332](10)动物园4#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920976", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1004060022", + "name": "[327](10)动物园4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920977", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1004060023", + "name": "[329](10)动物园4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920978", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1004060024", + "name": "[203](10)动物园4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058004004203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920979", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1004060025", + "name": "[326](10)动物园4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920980", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060026", + "name": "[601](10)动物园车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403042004004601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483840138920981", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060027", + "name": "[401](10)动物园1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401005006004401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888256", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060028", + "name": "[204](10)动物园厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401035004004203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888257", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060029", + "name": "[501](10)动物园客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401001005004501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888258", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1004060030", + "name": "[333](10)动物园#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401045006004333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888259", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1004060031", + "name": "[404](10)动物园2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401006006004404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888260", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060032", + "name": "[334](10)动物园#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401045006004334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888261", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060033", + "name": "[346](10)动物园1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401036005004346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888262", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060034", + "name": "[343](10)动物园B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401040006004343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888263", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060035", + "name": "[405](10)动物园2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401006006004405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888264", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060036", + "name": "[406](10)动物园3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401007006004406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888265", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060037", + "name": "[345](10)动物园B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402002006004345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888266", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060038", + "name": "[502](10)动物园票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401030006004502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888267", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1004060039", + "name": "[322](10)动物园4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888268", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1004060040", + "name": "[323](10)动物园4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401058006004323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888269", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060041", + "name": "[402](10)动物园1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401005006004402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888270", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1004060042", + "name": "[403](10)动物园1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401005006004403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888271", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1004060043", + "name": "[411](10)动物园5#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401009006004411", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888272", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1004060044", + "name": "[504](10)动物园票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401025006004504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888273", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1004060045", + "name": "[205](10)动物园厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401035004004205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888274", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1004060046", + "name": "[335](10)动物园#1厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401045006004335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483844433888275", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1004060047", + "name": "[348](10)动物园安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401085006004348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855552", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1004060048", + "name": "[505](10)动物园票亭2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401025006004505", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855553", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1004060049", + "name": "[409](10)动物园4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401008006004409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855554", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060050", + "name": "[207](10)动物园厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401035004004207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855555", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1004060051", + "name": "[408](10)动物园4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401008006004408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855556", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1004060052", + "name": "[410](10)动物园4#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401008006004410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855557", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1004060053", + "name": "[302](10)动物园1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855558", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1004060054", + "name": "[301](10)动物园1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855559", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1004060055", + "name": "[407](10)动物园3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401007006004407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855560", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1004060056", + "name": "[336](10)动物园#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401045006004336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855561", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1004060057", + "name": "[337](10)动物园#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401045006004337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855562", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1004060058", + "name": "[206](10)动物园厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401035004004206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855563", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1004060059", + "name": "[338](10)动物园#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401045006004338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855564", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1004060060", + "name": "[208](10)动物园厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401035004004208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855565", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1004060061", + "name": "[313](10)动物园2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855566", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1004060062", + "name": "[312](10)动物园2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855567", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1004060063", + "name": "[349](10)动物园安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401085006004349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855568", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1004060064", + "name": "[503](10)动物园票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401030006004503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855569", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1004060065", + "name": "[314](10)动物园2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855570", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1004060066", + "name": "[315](10)动物园2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855571", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1004060067", + "name": "[304](10)动物园1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855572", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1004060068", + "name": "[303](10)动物园1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855573", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1004060069", + "name": "[305](10)动物园1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483848728855574", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1004060070", + "name": "[306](10)动物园1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822848", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1004060071", + "name": "[307](10)动物园1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822849", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1004060072", + "name": "[613](10)动物园环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403053005004613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822850", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1004060073", + "name": "[201](10)动物园1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055004004201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822851", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1004060074", + "name": "[308](10)动物园1#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822852", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1004060075", + "name": "[311](10)动物园1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822853", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1004060076", + "name": "[622](10)动物园内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001006004622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822854", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1004060077", + "name": "[309](10)动物园1#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822855", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1004060078", + "name": "[310](10)动物园1#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401055006004310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822856", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1004060079", + "name": "[610](10)动物园通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822857", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1004060080", + "name": "[107](10)动物园下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402012006004107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822858", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1004060081", + "name": "[108](10)动物园下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402012006004108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822859", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1004060082", + "name": "[703](10)动物园上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060404013006004703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822860", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1004060083", + "name": "[110](10)动物园下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402012006004110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822861", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1004060084", + "name": "[210](10)动物园上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402001004004210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822862", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1004060085", + "name": "[212](10)动物园下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402001004004212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822863", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1004060086", + "name": "[339](10)动物园#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402017006004339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822864", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1004060087", + "name": "[623](10)动物园内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403021006004623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822865", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1004060088", + "name": "[340](10)动物园#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402017006004340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822866", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1004060089", + "name": "[211](10)动物园下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402001004004211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822867", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1004060090", + "name": "[106](10)动物园上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402007006004106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483853023822868", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1004060091", + "name": "[105](10)动物园上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402007006004105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790144", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1004060092", + "name": "[704](10)动物园下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060404013006004704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790145", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1004060093", + "name": "[611](10)动物园屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403048005004611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790146", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1004060094", + "name": "[614](10)动物园气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403067005004614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790147", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1004060095", + "name": "[111](10)动物园下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402012006004111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790148", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1004060096", + "name": "[112](10)动物园下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402012006004112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790149", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1004060097", + "name": "[341](10)动物园#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402017006004341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790150", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1004060098", + "name": "[344](10)动物园B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402002006004344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790151", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1004060099", + "name": "[342](10)动物园#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402017006004342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790152", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1004060100", + "name": "[209](10)动物园上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402001004004209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790153", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1004060101", + "name": "[213](10)动物园下行球3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402001004004213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790154", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1004060102", + "name": "[104](10)动物园上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402007006004104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790155", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1004060103", + "name": "[103](10)动物园上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402007006004103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790156", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1004060104", + "name": "[102](10)动物园上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402007006004102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790157", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1004060105", + "name": "[101](10)动物园上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.135.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402007006004101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790158", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1004060106", + "name": "[109](10)动物园下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060402012006004109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790159", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1004060107", + "name": "[701](10)动物园龙溪路-动物园上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060404012004004701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790160", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1004060108", + "name": "[702](10)动物园龙溪路-动物园下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060404012004004702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790161", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1004060109", + "name": "[316](10)动物园2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790162", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1004060110", + "name": "[317](10)动物园2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790163", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1004060111", + "name": "[318](10)动物园2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790164", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1004060112", + "name": "[319](10)动物园2#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790165", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1004060113", + "name": "[320](10)动物园2#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790166", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1004060114", + "name": "[321](10)动物园2#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056006004321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483857318790167", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1004060115", + "name": "[202](10)动物园2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401056004004202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483861613757440", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1004060116", + "name": "[620](10)动物园内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001006004620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483861613757441", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1004060117", + "name": "[621](10)动物园内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403001006004621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483861613757442", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1004060118", + "name": "[615](10)动物园气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060403067005004615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "687483861613757443", + "createdBy": "0", + "createdTime": "2025-10-18 14:51:19", + "updatedBy": null, + "updatedTime": "2026-01-14 23:41:34", + "echoMap": {}, + "deviceId": "1004060119", + "name": "[412](10)动物园4#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.136.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060401008006004412", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "571642722415309504", + "createdBy": "0", + "createdTime": "2024-12-03 13:59:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1004070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.135.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060400000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"278739\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4274942401\",\"inUcastPkts\":\"1653463590\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ee:4d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1668769067\",\"outQLen\":\"0\",\"outUcastPkts\":\"734265776\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.135.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:49\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZD00C0\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"39\",\"CPU使用率\":\"8\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589860899943122287", + "createdBy": "2", + "createdTime": "2025-01-21 13:38:24", + "updatedBy": null, + "updatedTime": "2025-12-23 10:07:37", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.135.51", + "manageUrl": "http:\\\\10.18.135.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589860899943122289", + "createdBy": "2", + "createdTime": "2025-01-21 13:38:56", + "updatedBy": null, + "updatedTime": "2025-12-23 10:07:30", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.135.52", + "manageUrl": "http:\\\\10.18.135.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "571642722415309028", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1004090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.135.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.99\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"110 days, 10:50:55.37\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10789488\",\"inErrors\":\"22\",\"inNUcastPkts\":\"27982918\",\"inOctets\":\"3317603381\",\"inUcastPkts\":\"2559560415\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"10 days, 14:09:36.53\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ab:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"367097950\",\"outQLen\":\"0\",\"outUcastPkts\":\"451615569\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.135.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "571642722415309610", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1004050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.135.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060400000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"5139603\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29921569\",\"inOctets\":\"2154124362\",\"inUcastPkts\":\"610050385\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ae:7d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1841291998\",\"outQLen\":\"0\",\"outUcastPkts\":\"729855890\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4380\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.135.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:49\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":915516279,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13523\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"46\",\"CPU使用率\":\"22\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.135.23" + }, + { + "id": "571642722415309611", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1004050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.135.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060400000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"5142158\",\"inErrors\":\"183\",\"inNUcastPkts\":\"23683628\",\"inOctets\":\"2839429075\",\"inUcastPkts\":\"229584329\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"94 days, 22:12:47.28\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ae:b3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1167535023\",\"outQLen\":\"0\",\"outUcastPkts\":\"3988135476\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4350\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.135.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:51\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":915516279,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13522\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"50\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.135.22" + }, + { + "id": "571642722415309612", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-12-19 14:57:00", + "echoMap": {}, + "deviceId": "1004050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.135.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060400000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.135.22;10.18.135.23" + } + ], + "ndmSecurityBox": [ + { + "id": "603876735439641691", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1004030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5974764\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"332388468\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5974769\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:46\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22600001,\"status\":1,\"voltage\":25.027},{\"current\":0.23200001,\"status\":1,\"voltage\":25.027},{\"current\":0.24900001,\"status\":1,\"voltage\":25.027},{\"current\":0.23300001,\"status\":1,\"voltage\":25.027},{\"current\":0.23,\"status\":1,\"voltage\":25.027},{\"current\":0.22500001,\"status\":1,\"voltage\":25.027},{\"current\":0.24900001,\"status\":1,\"voltage\":25.027},{\"current\":0.22800002,\"status\":1,\"voltage\":25.027},{\"current\":0.21900001,\"status\":1,\"voltage\":25.027},{\"current\":0.22700001,\"status\":1,\"voltage\":25.174002},{\"current\":0.003,\"status\":1,\"voltage\":25.174002},{\"current\":0.24700001,\"status\":1,\"voltage\":25.174002},{\"current\":0.21800001,\"status\":1,\"voltage\":25.174002},{\"current\":0.22000001,\"status\":1,\"voltage\":25.174002},{\"current\":0.215,\"status\":1,\"voltage\":25.174002},{\"current\":0.001,\"status\":1,\"voltage\":25.174002}],\"fanSpeeds\":[3570,3540],\"humidity\":18,\"switches\":[0,0,0,0],\"temperature\":32}],\"stCommonInfo\":{\"设备ID\":\"0001512208301094\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641692", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1004030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10101321\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"564095287\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"53 days, 21:46:53.80\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10101326\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:35\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.41400003,\"status\":1,\"voltage\":26.051},{\"current\":0.22500001,\"status\":1,\"voltage\":26.051},{\"current\":0.354,\"status\":1,\"voltage\":26.051},{\"current\":0.38200003,\"status\":1,\"voltage\":26.051},{\"current\":0.29700002,\"status\":1,\"voltage\":26.051},{\"current\":0.29900002,\"status\":1,\"voltage\":26.051},{\"current\":0.323,\"status\":1,\"voltage\":26.051},{\"current\":0.261,\"status\":1,\"voltage\":26.051},{\"current\":0.001,\"status\":1,\"voltage\":26.051},{\"current\":0.532,\"status\":1,\"voltage\":26.058},{\"current\":0.002,\"status\":1,\"voltage\":26.058},{\"current\":0.264,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300053\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641693", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1004030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2526238\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139054302\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"115 days, 5:20:29.27\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2526243\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:2d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.568,\"status\":1,\"voltage\":25.798},{\"current\":0.34800002,\"status\":1,\"voltage\":25.798},{\"current\":0.541,\"status\":1,\"voltage\":25.798},{\"current\":0.282,\"status\":1,\"voltage\":25.798},{\"current\":0.256,\"status\":1,\"voltage\":25.798},{\"current\":0.363,\"status\":1,\"voltage\":25.798},{\"current\":0.26500002,\"status\":1,\"voltage\":25.798},{\"current\":0.411,\"status\":1,\"voltage\":25.798},{\"current\":0.31300002,\"status\":1,\"voltage\":25.798},{\"current\":0.25,\"status\":1,\"voltage\":25.806002},{\"current\":0.003,\"status\":1,\"voltage\":25.806002},{\"current\":0.365,\"status\":1,\"voltage\":25.806002},{\"current\":0.36600003,\"status\":1,\"voltage\":25.806002},{\"current\":0.001,\"status\":1,\"voltage\":25.806002},{\"current\":0.001,\"status\":1,\"voltage\":25.806002},{\"current\":0.001,\"status\":1,\"voltage\":25.806002}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300045\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641694", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1004030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5181797\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"287865096\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5181802\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:22\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":0,\"voltage\":26.486002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.486002},{\"current\":0.354,\"status\":1,\"voltage\":26.486002},{\"current\":0.35200003,\"status\":1,\"voltage\":26.486002},{\"current\":0.38000003,\"status\":1,\"voltage\":26.486002},{\"current\":0.374,\"status\":1,\"voltage\":26.486002},{\"current\":0.448,\"status\":1,\"voltage\":26.486002},{\"current\":0.38000003,\"status\":1,\"voltage\":26.486002},{\"current\":0.657,\"status\":1,\"voltage\":26.486002},{\"current\":0.273,\"status\":1,\"voltage\":25.913002},{\"current\":0.003,\"status\":1,\"voltage\":25.913002},{\"current\":0.323,\"status\":1,\"voltage\":25.913002},{\"current\":0.001,\"status\":1,\"voltage\":25.913002},{\"current\":0.001,\"status\":1,\"voltage\":25.913002},{\"current\":0.001,\"status\":1,\"voltage\":25.913002},{\"current\":0.001,\"status\":1,\"voltage\":25.913002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300034\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641695", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1004030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2526902\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139090794\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"99 days, 15:16:16.98\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2526907\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:50\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34600002,\"status\":1,\"voltage\":26.163002},{\"current\":0.38900003,\"status\":1,\"voltage\":26.163002},{\"current\":0.535,\"status\":1,\"voltage\":26.163002},{\"current\":0.36400002,\"status\":1,\"voltage\":26.163002},{\"current\":0.33600003,\"status\":1,\"voltage\":26.163002},{\"current\":0.33600003,\"status\":1,\"voltage\":26.163002},{\"current\":0.342,\"status\":1,\"voltage\":26.163002},{\"current\":0.33400002,\"status\":1,\"voltage\":26.163002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.163002},{\"current\":0.263,\"status\":1,\"voltage\":25.906002},{\"current\":0.003,\"status\":1,\"voltage\":25.906002},{\"current\":0.001,\"status\":1,\"voltage\":25.906002},{\"current\":0.001,\"status\":1,\"voltage\":25.906002},{\"current\":0.001,\"status\":1,\"voltage\":25.906002},{\"current\":0.001,\"status\":1,\"voltage\":25.906002},{\"current\":0.001,\"status\":1,\"voltage\":25.906002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300336\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641696", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1004030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2527069\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139100183\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"115 days, 20:44:41.42\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2527074\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:6a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.65500003,\"status\":1,\"voltage\":24.489},{\"current\":1.098,\"status\":1,\"voltage\":24.489},{\"current\":0.66700006,\"status\":1,\"voltage\":24.489},{\"current\":1.023,\"status\":1,\"voltage\":24.489},{\"current\":1.021,\"status\":1,\"voltage\":24.489},{\"current\":1.0730001,\"status\":1,\"voltage\":24.489},{\"current\":0.938,\"status\":1,\"voltage\":24.489},{\"current\":0.41200003,\"status\":1,\"voltage\":24.489},{\"current\":0.38700002,\"status\":1,\"voltage\":24.489},{\"current\":0.001,\"status\":1,\"voltage\":25.77},{\"current\":0.002,\"status\":1,\"voltage\":25.77},{\"current\":0.001,\"status\":1,\"voltage\":25.77},{\"current\":0.001,\"status\":1,\"voltage\":25.77},{\"current\":0.001,\"status\":1,\"voltage\":25.77},{\"current\":0.001,\"status\":1,\"voltage\":25.77},{\"current\":0.001,\"status\":1,\"voltage\":25.77}],\"fanSpeeds\":[1890,1860],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0001512208301130\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641697", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1004030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2526911\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"138923982\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"115 days, 3:49:37.68\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2526916\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2b:1b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34100002,\"status\":1,\"voltage\":25.902},{\"current\":0.31500003,\"status\":1,\"voltage\":25.902},{\"current\":0.23,\"status\":1,\"voltage\":25.902},{\"current\":0.22200002,\"status\":1,\"voltage\":25.902},{\"current\":0.24400002,\"status\":1,\"voltage\":25.902},{\"current\":0.26000002,\"status\":1,\"voltage\":25.902},{\"current\":0.505,\"status\":1,\"voltage\":25.902},{\"current\":0.246,\"status\":1,\"voltage\":25.902},{\"current\":0.264,\"status\":1,\"voltage\":25.902},{\"current\":0.27600002,\"status\":1,\"voltage\":25.281002},{\"current\":0.003,\"status\":1,\"voltage\":25.281002},{\"current\":0.22000001,\"status\":1,\"voltage\":25.281002},{\"current\":0.24200001,\"status\":1,\"voltage\":25.281002},{\"current\":0.21900001,\"status\":1,\"voltage\":25.281002},{\"current\":0.001,\"status\":1,\"voltage\":25.281002},{\"current\":0.001,\"status\":1,\"voltage\":25.281002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[1,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0002512208303034\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641698", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1004030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3537252\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"195524833\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3537257\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:65\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.252,\"status\":1,\"voltage\":25.932001},{\"current\":0.254,\"status\":1,\"voltage\":25.932001},{\"current\":0.001,\"status\":1,\"voltage\":25.932001},{\"current\":0.21800001,\"status\":1,\"voltage\":25.932001},{\"current\":0.526,\"status\":1,\"voltage\":25.932001},{\"current\":0.50600004,\"status\":1,\"voltage\":25.932001},{\"current\":0.246,\"status\":1,\"voltage\":25.932001},{\"current\":0.279,\"status\":1,\"voltage\":25.932001},{\"current\":0.21400002,\"status\":1,\"voltage\":25.932001},{\"current\":0.245,\"status\":1,\"voltage\":26.204},{\"current\":0.003,\"status\":1,\"voltage\":26.204},{\"current\":0.54200006,\"status\":1,\"voltage\":26.204},{\"current\":0.27400002,\"status\":1,\"voltage\":26.204},{\"current\":0.25800002,\"status\":1,\"voltage\":26.204},{\"current\":0.22200002,\"status\":1,\"voltage\":26.204},{\"current\":0.22600001,\"status\":1,\"voltage\":26.204}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300101\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641699", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1004030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3537561\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"195543474\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3537566\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:09\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.84900004,\"status\":1,\"voltage\":24.156002},{\"current\":0.84700006,\"status\":1,\"voltage\":24.156002},{\"current\":0.864,\"status\":1,\"voltage\":24.156002},{\"current\":0.873,\"status\":1,\"voltage\":24.156002},{\"current\":0.30800003,\"status\":1,\"voltage\":24.156002},{\"current\":0.652,\"status\":1,\"voltage\":24.156002},{\"current\":0.63100004,\"status\":1,\"voltage\":24.156002},{\"current\":0.97900003,\"status\":1,\"voltage\":24.156002},{\"current\":0.81000006,\"status\":1,\"voltage\":24.156002},{\"current\":0.841,\"status\":1,\"voltage\":25.056002},{\"current\":0.003,\"status\":1,\"voltage\":25.056002},{\"current\":0.93200004,\"status\":1,\"voltage\":25.056002},{\"current\":0.344,\"status\":1,\"voltage\":25.056002},{\"current\":0.001,\"status\":1,\"voltage\":25.056002},{\"current\":0.001,\"status\":1,\"voltage\":25.056002},{\"current\":0.001,\"status\":1,\"voltage\":25.056002}],\"fanSpeeds\":[2640,2700],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0001512208300009\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641701", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:02", + "echoMap": {}, + "deviceId": "1004030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641702", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1004030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641703", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:49", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1004030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.136.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5621814\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"312574750\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"75 days, 11:36:51.63\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5621819\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:8d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.256,\"status\":1,\"voltage\":26.232},{\"current\":0.001,\"status\":1,\"voltage\":26.232},{\"current\":0.252,\"status\":1,\"voltage\":26.232},{\"current\":0.257,\"status\":1,\"voltage\":26.232},{\"current\":0.259,\"status\":1,\"voltage\":26.232},{\"current\":0.277,\"status\":1,\"voltage\":26.232},{\"current\":0.268,\"status\":1,\"voltage\":26.232},{\"current\":0.53400004,\"status\":1,\"voltage\":26.232},{\"current\":0.25100002,\"status\":1,\"voltage\":26.232},{\"current\":0.24300002,\"status\":1,\"voltage\":26.303001},{\"current\":0.003,\"status\":1,\"voltage\":26.303001},{\"current\":0.22100002,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301100\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "603876735439641676", + "createdBy": "2", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1004040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.135.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif135\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:04.31\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:07:01\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"7\",\"temperature\":\"40\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.135.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1658465763\",\"0\",\"96237\",\"0\",\"0\",\"0\",\"2041584\",\"6016470\",\"68365\",\"60728292\",\"810776323\",\"68361\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:47\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38504,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":855,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35340,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":559,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39270,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":616,\"opticalVoltage\":3293,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35610,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":563,\"opticalVoltage\":3269,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41819,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":680,\"opticalVoltage\":3290,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42074,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":554,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42330,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":619,\"opticalVoltage\":3297,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36479,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":613,\"opticalVoltage\":3301,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35610,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":559,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42840,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":663,\"opticalVoltage\":3291,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36540,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":635,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41819,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":736,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38099,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":561,\"opticalVoltage\":3347,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44369,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":805,\"opticalVoltage\":3399,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39959,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":561,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39659,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":562,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42959,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":559,\"opticalVoltage\":3400,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42450,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":562,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41189,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":558,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":46153,\"opticalReceivePower\":0,\"opticalTemperature\":63,\"opticalTransmitPower\":576,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":74970,\"opticalReceivePower\":0,\"opticalTemperature\":64,\"opticalTransmitPower\":22,\"opticalVoltage\":3360,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43094,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":582,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":1520324,\"inBytes\":1583751531,\"inFlow\":33279,\"lastChangeTime\":\"135 days, 13:53:07.25\",\"lastInBytes\":1583751531,\"lastOutBytes\":1500316255,\"opticalBiasCurrent\":39659,\"opticalReceivePower\":385,\"opticalTemperature\":60,\"opticalTransmitPower\":557,\"opticalVoltage\":3364,\"outBytes\":1500316255,\"outFlow\":1487045,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":465819,\"inBytes\":1375203734,\"inFlow\":2970,\"lastChangeTime\":\"135 days, 13:53:24.94\",\"lastInBytes\":1375203734,\"lastOutBytes\":3947207564,\"opticalBiasCurrent\":43094,\"opticalReceivePower\":323,\"opticalTemperature\":59,\"opticalTransmitPower\":570,\"opticalVoltage\":3353,\"outBytes\":3947207564,\"outFlow\":462848,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4027555,\"inBytes\":937713262,\"inFlow\":3899763,\"lastChangeTime\":\"392 days, 9:08:15.97\",\"lastInBytes\":937713262,\"lastOutBytes\":2874290667,\"opticalBiasCurrent\":11199,\"opticalReceivePower\":2,\"opticalTemperature\":55,\"opticalTransmitPower\":247,\"opticalVoltage\":3356,\"outBytes\":2874290667,\"outFlow\":127792,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4039767,\"inBytes\":1936853773,\"inFlow\":3916838,\"lastChangeTime\":\"58 days, 5:32:44.72\",\"lastInBytes\":1936853773,\"lastOutBytes\":500903398,\"opticalBiasCurrent\":11026,\"opticalReceivePower\":149,\"opticalTemperature\":56,\"opticalTransmitPower\":250,\"opticalVoltage\":3356,\"outBytes\":500903398,\"outFlow\":122929,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6492006,\"inBytes\":3835578231,\"inFlow\":6297396,\"lastChangeTime\":\"392 days, 12:46:37.60\",\"lastInBytes\":3835578231,\"lastOutBytes\":344654354,\"opticalBiasCurrent\":10447,\"opticalReceivePower\":22,\"opticalTemperature\":59,\"opticalTransmitPower\":257,\"opticalVoltage\":3348,\"outBytes\":344654354,\"outFlow\":194610,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4897027,\"inBytes\":3153291968,\"inFlow\":4754609,\"lastChangeTime\":\"392 days, 11:39:58.43\",\"lastInBytes\":3153291968,\"lastOutBytes\":2679038062,\"opticalBiasCurrent\":11324,\"opticalReceivePower\":197,\"opticalTemperature\":56,\"opticalTransmitPower\":253,\"opticalVoltage\":3356,\"outBytes\":2679038062,\"outFlow\":142418,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4950717,\"inBytes\":1859844737,\"inFlow\":4802395,\"lastChangeTime\":\"426 days, 8:28:08.95\",\"lastInBytes\":1859844737,\"lastOutBytes\":4271459761,\"opticalBiasCurrent\":11171,\"opticalReceivePower\":199,\"opticalTemperature\":57,\"opticalTransmitPower\":251,\"opticalVoltage\":3340,\"outBytes\":4271459761,\"outFlow\":148322,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4740355,\"inBytes\":3756397370,\"inFlow\":4604380,\"lastChangeTime\":\"414 days, 10:37:33.10\",\"lastInBytes\":3756397370,\"lastOutBytes\":4129489827,\"opticalBiasCurrent\":17927,\"opticalReceivePower\":188,\"opticalTemperature\":50,\"opticalTransmitPower\":246,\"opticalVoltage\":3352,\"outBytes\":4129489827,\"outFlow\":135974,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4875672,\"inBytes\":3155747111,\"inFlow\":4726082,\"lastChangeTime\":\"414 days, 11:03:13.39\",\"lastInBytes\":3155747111,\"lastOutBytes\":3847306668,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":3,\"opticalTemperature\":52,\"opticalTransmitPower\":245,\"opticalVoltage\":3352,\"outBytes\":3847306668,\"outFlow\":149589,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6431503,\"inBytes\":2473374003,\"inFlow\":6227120,\"lastChangeTime\":\"29 days, 21:08:23.44\",\"lastInBytes\":2473374003,\"lastOutBytes\":2710449989,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":108,\"opticalTemperature\":52,\"opticalTransmitPower\":244,\"opticalVoltage\":3336,\"outBytes\":2710449989,\"outFlow\":204382,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6872604,\"inBytes\":4284622113,\"inFlow\":6652610,\"lastChangeTime\":\"29 days, 20:56:52.82\",\"lastInBytes\":4284622113,\"lastOutBytes\":203296766,\"opticalBiasCurrent\":11173,\"opticalReceivePower\":3,\"opticalTemperature\":56,\"opticalTransmitPower\":240,\"opticalVoltage\":3356,\"outBytes\":203296766,\"outFlow\":219994,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":250,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":241772,\"inBytes\":2656259197,\"inFlow\":233334,\"lastChangeTime\":\"169 days, 1:42:16.98\",\"lastInBytes\":2656259197,\"lastOutBytes\":3365322476,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":184,\"opticalTemperature\":51,\"opticalTransmitPower\":240,\"opticalVoltage\":3352,\"outBytes\":3365322476,\"outFlow\":8437,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":241254,\"inBytes\":3225754785,\"inFlow\":232752,\"lastChangeTime\":\"169 days, 1:42:02.59\",\"lastInBytes\":3225754785,\"lastOutBytes\":181388358,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":59,\"opticalTemperature\":51,\"opticalTransmitPower\":241,\"opticalVoltage\":3380,\"outBytes\":181388358,\"outFlow\":8502,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10765,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":252,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3487805,\"inBytes\":3063408083,\"inFlow\":3378614,\"lastChangeTime\":\"169 days, 1:43:21.21\",\"lastInBytes\":3063408083,\"lastOutBytes\":2767886194,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":119,\"opticalTemperature\":50,\"opticalTransmitPower\":241,\"opticalVoltage\":3332,\"outBytes\":2767886194,\"outFlow\":109190,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11090,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":240,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":240,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11385,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":240,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":240,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10574,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":251,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10416,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":250,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405,\"inBytes\":3510871751,\"inFlow\":65,\"lastChangeTime\":\"454 days, 13:57:36.27\",\"lastInBytes\":3510871751,\"lastOutBytes\":1805414353,\"opticalBiasCurrent\":10947,\"opticalReceivePower\":219,\"opticalTemperature\":48,\"opticalTransmitPower\":242,\"opticalVoltage\":3328,\"outBytes\":1805414353,\"outFlow\":339,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":245,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":18082,\"inBytes\":3898503889,\"inFlow\":8423,\"lastChangeTime\":\"18 days, 23:05:56.34\",\"lastInBytes\":3898503889,\"lastOutBytes\":1692706421,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1692706421,\"outFlow\":9659,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14631658,\"inBytes\":3037596391,\"inFlow\":4710922,\"lastChangeTime\":\"18 days, 23:09:09.36\",\"lastInBytes\":3037596391,\"lastOutBytes\":1754966437,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1754966437,\"outFlow\":9920735,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":24067,\"inBytes\":3287976511,\"inFlow\":12172,\"lastChangeTime\":\"454 days, 14:00:17.67\",\"lastInBytes\":3287976511,\"lastOutBytes\":2795428784,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2795428784,\"outFlow\":11894,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":331,\"inBytes\":454600103,\"inFlow\":14,\"lastChangeTime\":\"418 days, 4:59:25.42\",\"lastInBytes\":454600103,\"lastOutBytes\":72664703,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":72664703,\"outFlow\":316,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1388216,\"inBytes\":3891351423,\"inFlow\":10387,\"lastChangeTime\":\"454 days, 14:00:02.14\",\"lastInBytes\":3891351423,\"lastOutBytes\":2154254553,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2154254553,\"outFlow\":1377829,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1401110,\"inBytes\":622636759,\"inFlow\":38127,\"lastChangeTime\":\"94 days, 5:35:44.68\",\"lastInBytes\":622636759,\"lastOutBytes\":3203541834,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3203541834,\"outFlow\":1362983,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8729111,\"inBytes\":1589992742,\"inFlow\":374828,\"lastChangeTime\":\"454 days, 13:59:05.85\",\"lastInBytes\":1589992742,\"lastOutBytes\":2081665716,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2081665716,\"outFlow\":8354282,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":11552266,\"inBytes\":2202833729,\"inFlow\":357537,\"lastChangeTime\":\"65 days, 11:17:33.50\",\"lastInBytes\":2202833729,\"lastOutBytes\":76838565,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":76838565,\"outFlow\":11194728,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":526,\"inBytes\":2040328248,\"inFlow\":133,\"lastChangeTime\":\"454 days, 13:38:52.89\",\"lastInBytes\":2040328248,\"lastOutBytes\":3498715402,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3498715402,\"outFlow\":392,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":6263500,\"inBytes\":2014886406,\"inFlow\":657430,\"lastChangeTime\":\"65 days, 11:16:55.44\",\"lastInBytes\":2014886406,\"lastOutBytes\":3615281169,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3615281169,\"outFlow\":5606069,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15515616,\"inBytes\":4007669586,\"inFlow\":675369,\"lastChangeTime\":\"92 days, 11:02:40.31\",\"lastInBytes\":4007669586,\"lastOutBytes\":1983267495,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1983267495,\"outFlow\":14840247,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":774,\"inBytes\":3066179235,\"inFlow\":198,\"lastChangeTime\":\"454 days, 13:35:34.75\",\"lastInBytes\":3066179235,\"lastOutBytes\":2020447234,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2020447234,\"outFlow\":576,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":347666,\"inBytes\":2529730626,\"inFlow\":2214,\"lastChangeTime\":\"73 days, 9:15:10.66\",\"lastInBytes\":2529730626,\"lastOutBytes\":1861943436,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1861943436,\"outFlow\":345452,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":977782569,\"inFlow\":0,\"lastChangeTime\":\"432 days, 21:56:10.88\",\"lastInBytes\":977782569,\"lastOutBytes\":1809759174,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1809759174,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2574465,\"inFlow\":0,\"lastChangeTime\":\"455 days, 8:54:18.86\",\"lastInBytes\":2574465,\"lastOutBytes\":152988173,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":152988173,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1412136,\"inFlow\":0,\"lastChangeTime\":\"325 days, 13:03:10.87\",\"lastInBytes\":1412136,\"lastOutBytes\":100669557,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":100669557,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":11073002,\"inFlow\":0,\"lastChangeTime\":\"63 days, 11:28:47.65\",\"lastInBytes\":11073002,\"lastOutBytes\":47920066,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":47920066,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":132922382,\"inFlow\":0,\"lastChangeTime\":\"135 days, 13:51:22.02\",\"lastInBytes\":132922382,\"lastOutBytes\":3654693047,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3654693047,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:28.777358000\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641677", + "createdBy": "2", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:24", + "echoMap": {}, + "deviceId": "1004040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67246\",\"inUnknownProtos\":\"2797171296\",\"index\":\"634\",\"lastChange\":\"0:01:29.06\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:85:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1905165724\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52952627\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:24\",\"info\":{\"portInfoList\":[{\"flow\":273918,\"inBytes\":614183388,\"inFlow\":267101,\"lastChangeTime\":\"0:01:29.04\",\"lastInBytes\":614183388,\"lastOutBytes\":2314779805,\"outBytes\":2314779805,\"outFlow\":6816,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":273835,\"inBytes\":3875392829,\"inFlow\":266983,\"lastChangeTime\":\"0:01:28.61\",\"lastInBytes\":3875392829,\"lastOutBytes\":1908218155,\"outBytes\":1908218155,\"outFlow\":6852,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409899,\"inBytes\":809272107,\"inFlow\":399952,\"lastChangeTime\":\"0:01:29.06\",\"lastInBytes\":809272107,\"lastOutBytes\":3757505985,\"outBytes\":3757505985,\"outFlow\":9947,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":273987,\"inBytes\":1686937376,\"inFlow\":267028,\"lastChangeTime\":\"0:01:29.05\",\"lastInBytes\":1686937376,\"lastOutBytes\":4104694803,\"outBytes\":4104694803,\"outFlow\":6959,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":273950,\"inBytes\":1465342006,\"inFlow\":267067,\"lastChangeTime\":\"0:01:29.57\",\"lastInBytes\":1465342006,\"lastOutBytes\":2797171296,\"outBytes\":2797171296,\"outFlow\":6883,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":273822,\"inBytes\":3388693790,\"inFlow\":266980,\"lastChangeTime\":\"134 days, 15:33:16.07\",\"lastInBytes\":3388693790,\"lastOutBytes\":3019119997,\"outBytes\":3019119997,\"outFlow\":6842,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":410933,\"inBytes\":1313760841,\"inFlow\":400812,\"lastChangeTime\":\"0:01:29.56\",\"lastInBytes\":1313760841,\"lastOutBytes\":2286636887,\"outBytes\":2286636887,\"outFlow\":10121,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":617264,\"inBytes\":2256135135,\"inFlow\":601517,\"lastChangeTime\":\"0:01:29.56\",\"lastInBytes\":2256135135,\"lastOutBytes\":1000580814,\"outBytes\":1000580814,\"outFlow\":15747,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":274172,\"inBytes\":562092678,\"inFlow\":267184,\"lastChangeTime\":\"0:01:29.57\",\"lastInBytes\":562092678,\"lastOutBytes\":548836137,\"outBytes\":548836137,\"outFlow\":6987,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":273892,\"inBytes\":3875625713,\"inFlow\":266992,\"lastChangeTime\":\"0:01:29.57\",\"lastInBytes\":3875625713,\"lastOutBytes\":3182386186,\"outBytes\":3182386186,\"outFlow\":6900,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":410121,\"inBytes\":2765452225,\"inFlow\":399991,\"lastChangeTime\":\"0:01:30.11\",\"lastInBytes\":2765452225,\"lastOutBytes\":1978564073,\"outBytes\":1978564073,\"outFlow\":10129,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":273660,\"inBytes\":4055847135,\"inFlow\":267021,\"lastChangeTime\":\"0:01:30.11\",\"lastInBytes\":4055847135,\"lastOutBytes\":2916347364,\"outBytes\":2916347364,\"outFlow\":6638,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":273661,\"inBytes\":1364610746,\"inFlow\":266903,\"lastChangeTime\":\"0:01:30.12\",\"lastInBytes\":1364610746,\"lastOutBytes\":2135303459,\"outBytes\":2135303459,\"outFlow\":6758,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":273985,\"inBytes\":247314463,\"inFlow\":267181,\"lastChangeTime\":\"0:01:30.12\",\"lastInBytes\":247314463,\"lastOutBytes\":4113711746,\"outBytes\":4113711746,\"outFlow\":6803,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":619576023,\"inFlow\":1,\"lastChangeTime\":\"0:01:30.13\",\"lastInBytes\":619576023,\"lastOutBytes\":2257416689,\"outBytes\":2257416689,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4605978,\"inBytes\":115596812,\"inFlow\":117799,\"lastChangeTime\":\"0:01:29.06\",\"lastInBytes\":115596812,\"lastOutBytes\":2984532623,\"outBytes\":2984532623,\"outFlow\":4488178,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.069623000\"}}", + "lastDiagTime": "2026-02-02 14:37:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641678", + "createdBy": "2", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:24", + "echoMap": {}, + "deviceId": "1004040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"185548\",\"inUnknownProtos\":\"3392478136\",\"index\":\"634\",\"lastChange\":\"5 days, 22:06:11.04\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:af:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2447045731\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"406753062\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:24\",\"info\":{\"portInfoList\":[{\"flow\":617248,\"inBytes\":499884250,\"inFlow\":601851,\"lastChangeTime\":\"85 days, 5:04:55.82\",\"lastInBytes\":499884250,\"lastOutBytes\":271072242,\"outBytes\":271072242,\"outFlow\":15397,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":274384,\"inBytes\":3554533350,\"inFlow\":267308,\"lastChangeTime\":\"45 days, 4:00:49.04\",\"lastInBytes\":3554533350,\"lastOutBytes\":3153586050,\"outBytes\":3153586050,\"outFlow\":7075,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":425506,\"inBytes\":3638114164,\"inFlow\":416911,\"lastChangeTime\":\"45 days, 4:00:28.95\",\"lastInBytes\":3638114164,\"lastOutBytes\":3163000204,\"outBytes\":3163000204,\"outFlow\":8594,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":431136,\"inBytes\":3323885730,\"inFlow\":422261,\"lastChangeTime\":\"43 days, 5:46:10.98\",\"lastInBytes\":3323885730,\"lastOutBytes\":2757080328,\"outBytes\":2757080328,\"outFlow\":8874,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410177,\"inBytes\":2361464586,\"inFlow\":400192,\"lastChangeTime\":\"43 days, 5:46:17.48\",\"lastInBytes\":2361464586,\"lastOutBytes\":385473787,\"outBytes\":385473787,\"outFlow\":9984,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410101,\"inBytes\":2392817511,\"inFlow\":400151,\"lastChangeTime\":\"43 days, 5:46:17.39\",\"lastInBytes\":2392817511,\"lastOutBytes\":3392478136,\"outBytes\":3392478136,\"outFlow\":9949,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":409962,\"inBytes\":3389348644,\"inFlow\":399962,\"lastChangeTime\":\"43 days, 5:46:11.90\",\"lastInBytes\":3389348644,\"lastOutBytes\":2915929465,\"outBytes\":2915929465,\"outFlow\":9999,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":410255,\"inBytes\":2570216576,\"inFlow\":400278,\"lastChangeTime\":\"43 days, 5:46:13.35\",\"lastInBytes\":2570216576,\"lastOutBytes\":4282100693,\"outBytes\":4282100693,\"outFlow\":9977,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":409698,\"inBytes\":938439412,\"inFlow\":399768,\"lastChangeTime\":\"43 days, 5:47:27.70\",\"lastInBytes\":938439412,\"lastOutBytes\":3381021282,\"outBytes\":3381021282,\"outFlow\":9930,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":410292,\"inBytes\":3081350125,\"inFlow\":400348,\"lastChangeTime\":\"43 days, 5:47:18.47\",\"lastInBytes\":3081350125,\"lastOutBytes\":2150101041,\"outBytes\":2150101041,\"outFlow\":9944,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":409752,\"inBytes\":1488170713,\"inFlow\":399650,\"lastChangeTime\":\"47 days, 2:20:30.34\",\"lastInBytes\":1488170713,\"lastOutBytes\":316575491,\"outBytes\":316575491,\"outFlow\":10101,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":11319679,\"inFlow\":0,\"lastChangeTime\":\"45 days, 4:01:33.26\",\"lastInBytes\":11319679,\"lastOutBytes\":539681776,\"outBytes\":539681776,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":139432,\"inFlow\":0,\"lastChangeTime\":\"5 days, 21:31:17.65\",\"lastInBytes\":139432,\"lastOutBytes\":38013045,\"outBytes\":38013045,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":9138613,\"inFlow\":0,\"lastChangeTime\":\"122 days, 10:30:40.40\",\"lastInBytes\":9138613,\"lastOutBytes\":490816289,\"outBytes\":490816289,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":13172,\"inFlow\":0,\"lastChangeTime\":\"5 days, 21:31:16.48\",\"lastInBytes\":13172,\"lastOutBytes\":111226,\"outBytes\":111226,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":2},{\"flow\":86,\"inBytes\":1047281550,\"inFlow\":1,\"lastChangeTime\":\"155 days, 20:17:37.36\",\"lastInBytes\":1047281550,\"lastOutBytes\":1233980012,\"outBytes\":1233980012,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4634331,\"inBytes\":1848914177,\"inFlow\":113635,\"lastChangeTime\":\"45 days, 3:59:54.45\",\"lastInBytes\":1848914177,\"lastOutBytes\":2483142287,\"outBytes\":2483142287,\"outFlow\":4520696,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.028609000\"}}", + "lastDiagTime": "2026-02-02 14:37:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641679", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:24", + "echoMap": {}, + "deviceId": "1004040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67149\",\"inUnknownProtos\":\"3211002284\",\"index\":\"635\",\"lastChange\":\"0:01:14.29\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b1:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1089975061\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"49163087\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:24\",\"info\":{\"portInfoList\":[{\"flow\":946904,\"inBytes\":428355046,\"inFlow\":924195,\"lastChangeTime\":\"70 days, 6:23:49.14\",\"lastInBytes\":428355046,\"lastOutBytes\":3126945296,\"outBytes\":3126945296,\"outFlow\":22708,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":910024,\"inBytes\":1114737396,\"inFlow\":891676,\"lastChangeTime\":\"0:01:16.74\",\"lastInBytes\":1114737396,\"lastOutBytes\":623011588,\"outBytes\":623011588,\"outFlow\":18348,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1095517,\"inBytes\":2047440841,\"inFlow\":1069859,\"lastChangeTime\":\"70 days, 6:23:49.82\",\"lastInBytes\":2047440841,\"lastOutBytes\":1160133892,\"outBytes\":1160133892,\"outFlow\":25657,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":649676,\"inBytes\":2775066871,\"inFlow\":630782,\"lastChangeTime\":\"0:01:15.90\",\"lastInBytes\":2775066871,\"lastOutBytes\":2261492125,\"outBytes\":2261492125,\"outFlow\":18893,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":410628,\"inBytes\":1225429432,\"inFlow\":400597,\"lastChangeTime\":\"0:01:16.40\",\"lastInBytes\":1225429432,\"lastOutBytes\":318462204,\"outBytes\":318462204,\"outFlow\":10030,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":997012,\"inBytes\":1913372591,\"inFlow\":975192,\"lastChangeTime\":\"0:01:16.74\",\"lastInBytes\":1913372591,\"lastOutBytes\":3211002284,\"outBytes\":3211002284,\"outFlow\":21819,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410171,\"inBytes\":3294463392,\"inFlow\":400159,\"lastChangeTime\":\"0:01:15.89\",\"lastInBytes\":3294463392,\"lastOutBytes\":3498892904,\"outBytes\":3498892904,\"outFlow\":10012,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":274267,\"inBytes\":4253198747,\"inFlow\":267422,\"lastChangeTime\":\"131 days, 20:16:14.64\",\"lastInBytes\":4253198747,\"lastOutBytes\":2064106912,\"outBytes\":2064106912,\"outFlow\":6844,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":8705582,\"inBytes\":1632684703,\"inFlow\":398710,\"lastChangeTime\":\"196 days, 9:52:18.12\",\"lastInBytes\":1632684703,\"lastOutBytes\":1154655291,\"outBytes\":1154655291,\"outFlow\":8306872,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":380486,\"inBytes\":4054120143,\"inFlow\":371182,\"lastChangeTime\":\"0:01:15.90\",\"lastInBytes\":4054120143,\"lastOutBytes\":159093798,\"outBytes\":159093798,\"outFlow\":9304,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":413551,\"inBytes\":3579669497,\"inFlow\":404233,\"lastChangeTime\":\"0:01:16.60\",\"lastInBytes\":3579669497,\"lastOutBytes\":2303691017,\"outBytes\":2303691017,\"outFlow\":9318,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":430239,\"inBytes\":921307873,\"inFlow\":420585,\"lastChangeTime\":\"0:01:16.60\",\"lastInBytes\":921307873,\"lastOutBytes\":146414895,\"outBytes\":146414895,\"outFlow\":9653,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":17450107,\"inFlow\":0,\"lastChangeTime\":\"162 days, 20:45:04.29\",\"lastInBytes\":17450107,\"lastOutBytes\":810380448,\"outBytes\":810380448,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":262276983,\"inFlow\":1,\"lastChangeTime\":\"0:01:15.91\",\"lastInBytes\":262276983,\"lastOutBytes\":1905392246,\"outBytes\":1905392246,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7422048,\"inBytes\":3628945400,\"inFlow\":179271,\"lastChangeTime\":\"0:01:14.29\",\"lastInBytes\":3628945400,\"lastOutBytes\":3963304843,\"outBytes\":3963304843,\"outFlow\":7242777,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.128399000\"}}", + "lastDiagTime": "2026-02-02 14:37:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641680", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:25", + "echoMap": {}, + "deviceId": "1004040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67189\",\"inUnknownProtos\":\"1023453320\",\"index\":\"635\",\"lastChange\":\"0:01:13.24\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c1:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2738407319\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52919877\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:25\",\"info\":{\"portInfoList\":[{\"flow\":410581,\"inBytes\":2136458223,\"inFlow\":400599,\"lastChangeTime\":\"0:01:15.02\",\"lastInBytes\":2136458223,\"lastOutBytes\":2252280720,\"outBytes\":2252280720,\"outFlow\":9982,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":411913,\"inBytes\":3401519246,\"inFlow\":401877,\"lastChangeTime\":\"81 days, 16:49:32.43\",\"lastInBytes\":3401519246,\"lastOutBytes\":2030582164,\"outBytes\":2030582164,\"outFlow\":10035,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":471616,\"inBytes\":768033404,\"inFlow\":461977,\"lastChangeTime\":\"0:01:15.86\",\"lastInBytes\":768033404,\"lastOutBytes\":4057711451,\"outBytes\":4057711451,\"outFlow\":9638,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":926640,\"inBytes\":3890491080,\"inFlow\":909128,\"lastChangeTime\":\"77 days, 22:23:10.61\",\"lastInBytes\":3890491080,\"lastOutBytes\":804908889,\"outBytes\":804908889,\"outFlow\":17512,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":489470,\"inBytes\":430366398,\"inFlow\":478425,\"lastChangeTime\":\"0:01:15.61\",\"lastInBytes\":430366398,\"lastOutBytes\":225346323,\"outBytes\":225346323,\"outFlow\":11045,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":458450,\"inBytes\":4275555261,\"inFlow\":448299,\"lastChangeTime\":\"0:01:15.61\",\"lastInBytes\":4275555261,\"lastOutBytes\":1023453320,\"outBytes\":1023453320,\"outFlow\":10151,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407153,\"inBytes\":3661413383,\"inFlow\":398378,\"lastChangeTime\":\"0:01:15.85\",\"lastInBytes\":3661413383,\"lastOutBytes\":3812347338,\"outBytes\":3812347338,\"outFlow\":8774,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412268,\"inBytes\":2547277373,\"inFlow\":401981,\"lastChangeTime\":\"0:01:15.02\",\"lastInBytes\":2547277373,\"lastOutBytes\":3927131029,\"outBytes\":3927131029,\"outFlow\":10287,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":407976,\"inBytes\":164821457,\"inFlow\":397973,\"lastChangeTime\":\"70 days, 7:30:26.00\",\"lastInBytes\":164821457,\"lastOutBytes\":1897812585,\"outBytes\":1897812585,\"outFlow\":10002,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":412058,\"inBytes\":982256763,\"inFlow\":401979,\"lastChangeTime\":\"0:01:15.01\",\"lastInBytes\":982256763,\"lastOutBytes\":1375350608,\"outBytes\":1375350608,\"outFlow\":10079,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":893846,\"inBytes\":3734279468,\"inFlow\":871785,\"lastChangeTime\":\"0:01:15.48\",\"lastInBytes\":3734279468,\"lastOutBytes\":2783386016,\"outBytes\":2783386016,\"outFlow\":22061,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":538573779,\"inFlow\":1,\"lastChangeTime\":\"0:01:15.01\",\"lastInBytes\":538573779,\"lastOutBytes\":2182123918,\"outBytes\":2182123918,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5740638,\"inBytes\":3112242313,\"inFlow\":135037,\"lastChangeTime\":\"0:01:13.24\",\"lastInBytes\":3112242313,\"lastOutBytes\":3885154699,\"outBytes\":3885154699,\"outFlow\":5605600,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.046369000\"}}", + "lastDiagTime": "2026-02-02 14:37:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641681", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:26", + "echoMap": {}, + "deviceId": "1004040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"19\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"56840\",\"inUnknownProtos\":\"1090511648\",\"index\":\"636\",\"lastChange\":\"0:07:29.54\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:b6:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1999849938\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"40444657\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.135\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:25\",\"info\":{\"portInfoList\":[{\"flow\":422612,\"inBytes\":2093221393,\"inFlow\":411527,\"lastChangeTime\":\"0:01:26.24\",\"lastInBytes\":2093221393,\"lastOutBytes\":2299666119,\"outBytes\":2299666119,\"outFlow\":11085,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":506558,\"inBytes\":3097578254,\"inFlow\":494559,\"lastChangeTime\":\"0:05:27.91\",\"lastInBytes\":3097578254,\"lastOutBytes\":3853212260,\"outBytes\":3853212260,\"outFlow\":11998,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410881,\"inBytes\":1721023584,\"inFlow\":400865,\"lastChangeTime\":\"36 days, 10:51:09.19\",\"lastInBytes\":1721023584,\"lastOutBytes\":3902506718,\"outBytes\":3902506718,\"outFlow\":10016,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":896535,\"inBytes\":3527721150,\"inFlow\":877757,\"lastChangeTime\":\"0:01:27.42\",\"lastInBytes\":3527721150,\"lastOutBytes\":3886936966,\"outBytes\":3886936966,\"outFlow\":18778,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1017986,\"inBytes\":3301202871,\"inFlow\":991237,\"lastChangeTime\":\"10 days, 11:19:24.24\",\"lastInBytes\":3301202871,\"lastOutBytes\":3902172110,\"outBytes\":3902172110,\"outFlow\":26749,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":423292,\"inBytes\":1070942907,\"inFlow\":414678,\"lastChangeTime\":\"0:01:27.73\",\"lastInBytes\":1070942907,\"lastOutBytes\":1333222603,\"outBytes\":1333222603,\"outFlow\":8614,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":459506,\"inBytes\":1406023074,\"inFlow\":450000,\"lastChangeTime\":\"0:05:24.60\",\"lastInBytes\":1406023074,\"lastOutBytes\":1090511648,\"outBytes\":1090511648,\"outFlow\":9506,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":549913,\"inBytes\":728656639,\"inFlow\":536771,\"lastChangeTime\":\"0:01:28.06\",\"lastInBytes\":728656639,\"lastOutBytes\":2878786529,\"outBytes\":2878786529,\"outFlow\":13142,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":545913,\"inBytes\":1396754436,\"inFlow\":533163,\"lastChangeTime\":\"0:01:27.08\",\"lastInBytes\":1396754436,\"lastOutBytes\":2214312853,\"outBytes\":2214312853,\"outFlow\":12749,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":545479,\"inBytes\":3906626612,\"inFlow\":532771,\"lastChangeTime\":\"0:01:27.27\",\"lastInBytes\":3906626612,\"lastOutBytes\":415392610,\"outBytes\":415392610,\"outFlow\":12708,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1770340,\"inFlow\":0,\"lastChangeTime\":\"129 days, 0:59:14.79\",\"lastInBytes\":1770340,\"lastOutBytes\":93009157,\"outBytes\":93009157,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":262590365,\"inFlow\":1,\"lastChangeTime\":\"0:01:27.81\",\"lastInBytes\":262590365,\"lastOutBytes\":1632348485,\"outBytes\":1632348485,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:48.76\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:48.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.28\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5798026,\"inBytes\":1233863338,\"inFlow\":140879,\"lastChangeTime\":\"0:11:27.50\",\"lastInBytes\":1233863338,\"lastOutBytes\":2373595730,\"outBytes\":2373595730,\"outFlow\":5657146,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.115037000\"}}", + "lastDiagTime": "2026-02-02 14:37:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641682", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:24", + "echoMap": {}, + "deviceId": "1004040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67204\",\"inUnknownProtos\":\"739614236\",\"index\":\"635\",\"lastChange\":\"0:01:13.87\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:6b:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1503878835\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52905217\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:24\",\"info\":{\"portInfoList\":[{\"flow\":1158832,\"inBytes\":2070995365,\"inFlow\":1131614,\"lastChangeTime\":\"70 days, 7:11:29.37\",\"lastInBytes\":2070995365,\"lastOutBytes\":407745639,\"outBytes\":407745639,\"outFlow\":27218,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":411523,\"inBytes\":4287565557,\"inFlow\":401501,\"lastChangeTime\":\"0:01:17.39\",\"lastInBytes\":4287565557,\"lastOutBytes\":1152017619,\"outBytes\":1152017619,\"outFlow\":10022,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":410278,\"inBytes\":3880929415,\"inFlow\":400305,\"lastChangeTime\":\"70 days, 7:11:22.07\",\"lastInBytes\":3880929415,\"lastOutBytes\":3974736458,\"outBytes\":3974736458,\"outFlow\":9973,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":417442,\"inBytes\":482478718,\"inFlow\":409285,\"lastChangeTime\":\"0:01:18.20\",\"lastInBytes\":482478718,\"lastOutBytes\":947450869,\"outBytes\":947450869,\"outFlow\":8156,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":897109,\"inBytes\":993180001,\"inFlow\":880253,\"lastChangeTime\":\"0:01:17.39\",\"lastInBytes\":993180001,\"lastOutBytes\":2838144773,\"outBytes\":2838144773,\"outFlow\":16855,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":896645,\"inBytes\":351272555,\"inFlow\":874533,\"lastChangeTime\":\"0:01:17.38\",\"lastInBytes\":351272555,\"lastOutBytes\":739614236,\"outBytes\":739614236,\"outFlow\":22112,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":409857,\"inBytes\":778530980,\"inFlow\":399856,\"lastChangeTime\":\"0:01:17.37\",\"lastInBytes\":778530980,\"lastOutBytes\":1180759499,\"outBytes\":1180759499,\"outFlow\":10000,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":434545,\"inBytes\":2959948898,\"inFlow\":425902,\"lastChangeTime\":\"0:01:17.39\",\"lastInBytes\":2959948898,\"lastOutBytes\":2280800757,\"outBytes\":2280800757,\"outFlow\":8643,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":445122,\"inBytes\":2775750317,\"inFlow\":436252,\"lastChangeTime\":\"0:01:18.20\",\"lastInBytes\":2775750317,\"lastOutBytes\":3130357900,\"outBytes\":3130357900,\"outFlow\":8869,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1201609,\"inFlow\":0,\"lastChangeTime\":\"21 days, 22:45:10.25\",\"lastInBytes\":1201609,\"lastOutBytes\":41238307,\"outBytes\":41238307,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":262357332,\"inFlow\":1,\"lastChangeTime\":\"21 days, 22:45:22.28\",\"lastInBytes\":262357332,\"lastOutBytes\":1870498587,\"outBytes\":1870498587,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5506650,\"inBytes\":819190578,\"inFlow\":127210,\"lastChangeTime\":\"21 days, 22:40:37.93\",\"lastInBytes\":819190578,\"lastOutBytes\":1117634579,\"outBytes\":1117634579,\"outFlow\":5379439,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.036999000\"}}", + "lastDiagTime": "2026-02-02 14:37:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641683", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:25", + "echoMap": {}, + "deviceId": "1004040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"67283\",\"inUnknownProtos\":\"40409152\",\"index\":\"635\",\"lastChange\":\"0:01:13.02\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:02:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2892200875\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52876100\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:25\",\"info\":{\"portInfoList\":[{\"flow\":502800,\"inBytes\":1878207297,\"inFlow\":492360,\"lastChangeTime\":\"0:01:15.63\",\"lastInBytes\":1878207297,\"lastOutBytes\":2218383467,\"outBytes\":2218383467,\"outFlow\":10439,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":422979,\"inBytes\":280456354,\"inFlow\":414434,\"lastChangeTime\":\"0:01:15.63\",\"lastInBytes\":280456354,\"lastOutBytes\":3448303079,\"outBytes\":3448303079,\"outFlow\":8545,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409122,\"inBytes\":2537058016,\"inFlow\":399026,\"lastChangeTime\":\"138 days, 11:39:19.99\",\"lastInBytes\":2537058016,\"lastOutBytes\":3636205817,\"outBytes\":3636205817,\"outFlow\":10096,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":410211,\"inBytes\":2872424211,\"inFlow\":400064,\"lastChangeTime\":\"138 days, 11:39:31.04\",\"lastInBytes\":2872424211,\"lastOutBytes\":2251525989,\"outBytes\":2251525989,\"outFlow\":10146,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":410129,\"inBytes\":1977398406,\"inFlow\":400176,\"lastChangeTime\":\"138 days, 11:39:31.12\",\"lastInBytes\":1977398406,\"lastOutBytes\":4246834276,\"outBytes\":4246834276,\"outFlow\":9953,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410185,\"inBytes\":1817447584,\"inFlow\":400259,\"lastChangeTime\":\"138 days, 11:39:28.47\",\"lastInBytes\":1817447584,\"lastOutBytes\":40409152,\"outBytes\":40409152,\"outFlow\":9925,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":408689,\"inBytes\":1542185485,\"inFlow\":398899,\"lastChangeTime\":\"70 days, 6:37:53.73\",\"lastInBytes\":1542185485,\"lastOutBytes\":360231151,\"outBytes\":360231151,\"outFlow\":9789,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409793,\"inBytes\":2308690355,\"inFlow\":399807,\"lastChangeTime\":\"138 days, 11:39:20.74\",\"lastInBytes\":2308690355,\"lastOutBytes\":3000020006,\"outBytes\":3000020006,\"outFlow\":9985,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":883598,\"inBytes\":3548957380,\"inFlow\":861679,\"lastChangeTime\":\"138 days, 11:39:31.53\",\"lastInBytes\":3548957380,\"lastOutBytes\":1433344113,\"outBytes\":1433344113,\"outFlow\":21919,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":411995,\"inBytes\":2390147562,\"inFlow\":401833,\"lastChangeTime\":\"0:01:14.73\",\"lastInBytes\":2390147562,\"lastOutBytes\":2465568298,\"outBytes\":2465568298,\"outFlow\":10161,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":273663,\"inBytes\":3457736085,\"inFlow\":266896,\"lastChangeTime\":\"0:01:14.74\",\"lastInBytes\":3457736085,\"lastOutBytes\":3393025849,\"outBytes\":3393025849,\"outFlow\":6767,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":409836,\"inBytes\":3313672513,\"inFlow\":399694,\"lastChangeTime\":\"138 days, 11:39:35.89\",\"lastInBytes\":3313672513,\"lastOutBytes\":2053382725,\"outBytes\":2053382725,\"outFlow\":10141,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":274076,\"inBytes\":3487385358,\"inFlow\":267034,\"lastChangeTime\":\"0:01:14.72\",\"lastInBytes\":3487385358,\"lastOutBytes\":2090396460,\"outBytes\":2090396460,\"outFlow\":7042,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":854668,\"inFlow\":0,\"lastChangeTime\":\"21 days, 22:32:52.20\",\"lastInBytes\":854668,\"lastOutBytes\":29731991,\"outBytes\":29731991,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":262180271,\"inFlow\":1,\"lastChangeTime\":\"0:01:14.72\",\"lastInBytes\":262180271,\"lastOutBytes\":1906079295,\"outBytes\":1906079295,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5668008,\"inBytes\":1997098429,\"inFlow\":139885,\"lastChangeTime\":\"21 days, 22:33:02.81\",\"lastInBytes\":1997098429,\"lastOutBytes\":714520429,\"outBytes\":714520429,\"outFlow\":5528122,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.033316000\"}}", + "lastDiagTime": "2026-02-02 14:37:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641684", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:25", + "echoMap": {}, + "deviceId": "1004040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"25318\",\"inUnknownProtos\":\"473161707\",\"index\":\"635\",\"lastChange\":\"0:01:19.78\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:af:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"951049975\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"20672028\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:25\",\"info\":{\"portInfoList\":[{\"flow\":890682,\"inBytes\":763066423,\"inFlow\":868577,\"lastChangeTime\":\"4 days, 0:30:32.27\",\"lastInBytes\":763066423,\"lastOutBytes\":3384630688,\"outBytes\":3384630688,\"outFlow\":22105,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":894257,\"inBytes\":4165679035,\"inFlow\":871767,\"lastChangeTime\":\"4 days, 0:30:44.91\",\"lastInBytes\":4165679035,\"lastOutBytes\":2650158205,\"outBytes\":2650158205,\"outFlow\":22490,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":273740,\"inBytes\":3516465513,\"inFlow\":266884,\"lastChangeTime\":\"0:01:21.63\",\"lastInBytes\":3516465513,\"lastOutBytes\":668964986,\"outBytes\":668964986,\"outFlow\":6856,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":889090,\"inBytes\":4190486025,\"inFlow\":867032,\"lastChangeTime\":\"4 days, 0:30:50.21\",\"lastInBytes\":4190486025,\"lastOutBytes\":3311957286,\"outBytes\":3311957286,\"outFlow\":22058,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":409853,\"inBytes\":2150667792,\"inFlow\":399942,\"lastChangeTime\":\"0:01:21.63\",\"lastInBytes\":2150667792,\"lastOutBytes\":4123843333,\"outBytes\":4123843333,\"outFlow\":9910,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410533,\"inBytes\":1187332702,\"inFlow\":400543,\"lastChangeTime\":\"0:01:21.62\",\"lastInBytes\":1187332702,\"lastOutBytes\":473161707,\"outBytes\":473161707,\"outFlow\":9990,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":410213,\"inBytes\":2822152875,\"inFlow\":400220,\"lastChangeTime\":\"0:01:21.62\",\"lastInBytes\":2822152875,\"lastOutBytes\":729817780,\"outBytes\":729817780,\"outFlow\":9992,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":410041,\"inBytes\":4287240525,\"inFlow\":399936,\"lastChangeTime\":\"0:01:22.09\",\"lastInBytes\":4287240525,\"lastOutBytes\":1907670333,\"outBytes\":1907670333,\"outFlow\":10104,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":273828,\"inBytes\":3841653520,\"inFlow\":266923,\"lastChangeTime\":\"0:01:22.09\",\"lastInBytes\":3841653520,\"lastOutBytes\":530407058,\"outBytes\":530407058,\"outFlow\":6905,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":410269,\"inBytes\":249078847,\"inFlow\":400213,\"lastChangeTime\":\"0:01:22.06\",\"lastInBytes\":249078847,\"lastOutBytes\":790995776,\"outBytes\":790995776,\"outFlow\":10056,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":411247,\"inBytes\":2637192958,\"inFlow\":401212,\"lastChangeTime\":\"0:01:22.08\",\"lastInBytes\":2637192958,\"lastOutBytes\":1204473047,\"outBytes\":1204473047,\"outFlow\":10034,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":411590,\"inBytes\":2792936379,\"inFlow\":401205,\"lastChangeTime\":\"4 days, 0:30:44.76\",\"lastInBytes\":2792936379,\"lastOutBytes\":2357818682,\"outBytes\":2357818682,\"outFlow\":10385,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":411924,\"inBytes\":3330468745,\"inFlow\":401498,\"lastChangeTime\":\"4 days, 0:30:46.07\",\"lastInBytes\":3330468745,\"lastOutBytes\":2491461685,\"outBytes\":2491461685,\"outFlow\":10426,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":410030,\"inBytes\":3658206159,\"inFlow\":399976,\"lastChangeTime\":\"0:01:22.08\",\"lastInBytes\":3658206159,\"lastOutBytes\":855478436,\"outBytes\":855478436,\"outFlow\":10054,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":410232,\"inBytes\":3952279225,\"inFlow\":400215,\"lastChangeTime\":\"0:01:22.06\",\"lastInBytes\":3952279225,\"lastOutBytes\":492122086,\"outBytes\":492122086,\"outFlow\":10016,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":325,\"inBytes\":366216888,\"inFlow\":122,\"lastChangeTime\":\"0:01:22.06\",\"lastInBytes\":366216888,\"lastOutBytes\":964137304,\"outBytes\":964137304,\"outFlow\":202,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7358389,\"inBytes\":2947547240,\"inFlow\":188140,\"lastChangeTime\":\"0:01:19.78\",\"lastInBytes\":2947547240,\"lastOutBytes\":671845548,\"outBytes\":671845548,\"outFlow\":7170249,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.021152000\"}}", + "lastDiagTime": "2026-02-02 14:37:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641685", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:25", + "echoMap": {}, + "deviceId": "1004040010", + "name": "H3C前端交换机9", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"25311\",\"inUnknownProtos\":\"3144896945\",\"index\":\"635\",\"lastChange\":\"0:01:22.26\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:cc:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"988380270\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"20682505\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:25\",\"info\":{\"portInfoList\":[{\"flow\":410166,\"inBytes\":2220368182,\"inFlow\":399854,\"lastChangeTime\":\"4 days, 0:42:18.64\",\"lastInBytes\":2220368182,\"lastOutBytes\":2942238616,\"outBytes\":2942238616,\"outFlow\":10311,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":886999,\"inBytes\":3693713883,\"inFlow\":865011,\"lastChangeTime\":\"4 days, 0:42:08.39\",\"lastInBytes\":3693713883,\"lastOutBytes\":1455885051,\"outBytes\":1455885051,\"outFlow\":21988,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":410211,\"inBytes\":634813111,\"inFlow\":400247,\"lastChangeTime\":\"0:01:24.79\",\"lastInBytes\":634813111,\"lastOutBytes\":589721675,\"outBytes\":589721675,\"outFlow\":9964,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":411255,\"inBytes\":3323454567,\"inFlow\":401188,\"lastChangeTime\":\"0:01:24.22\",\"lastInBytes\":3323454567,\"lastOutBytes\":1465519212,\"outBytes\":1465519212,\"outFlow\":10067,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":410678,\"inBytes\":4227904731,\"inFlow\":400683,\"lastChangeTime\":\"0:01:24.22\",\"lastInBytes\":4227904731,\"lastOutBytes\":686388977,\"outBytes\":686388977,\"outFlow\":9994,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410231,\"inBytes\":2349753182,\"inFlow\":400231,\"lastChangeTime\":\"0:01:24.23\",\"lastInBytes\":2349753182,\"lastOutBytes\":3144896945,\"outBytes\":3144896945,\"outFlow\":10000,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":411047,\"inBytes\":605666931,\"inFlow\":401049,\"lastChangeTime\":\"0:01:24.23\",\"lastInBytes\":605666931,\"lastOutBytes\":440838295,\"outBytes\":440838295,\"outFlow\":9998,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":891167,\"inBytes\":2474492407,\"inFlow\":868929,\"lastChangeTime\":\"4 days, 0:42:12.58\",\"lastInBytes\":2474492407,\"lastOutBytes\":3432584557,\"outBytes\":3432584557,\"outFlow\":22238,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":895313,\"inBytes\":1884474961,\"inFlow\":872998,\"lastChangeTime\":\"4 days, 0:42:08.35\",\"lastInBytes\":1884474961,\"lastOutBytes\":3550906034,\"outBytes\":3550906034,\"outFlow\":22315,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":891086,\"inBytes\":2301015138,\"inFlow\":868753,\"lastChangeTime\":\"4 days, 0:42:20.61\",\"lastInBytes\":2301015138,\"lastOutBytes\":3542052610,\"outBytes\":3542052610,\"outFlow\":22333,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":892812,\"inBytes\":136562821,\"inFlow\":870467,\"lastChangeTime\":\"4 days, 0:42:08.85\",\"lastInBytes\":136562821,\"lastOutBytes\":3664244062,\"outBytes\":3664244062,\"outFlow\":22345,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":891513,\"inBytes\":4184268426,\"inFlow\":869427,\"lastChangeTime\":\"4 days, 0:42:13.81\",\"lastInBytes\":4184268426,\"lastOutBytes\":2457571847,\"outBytes\":2457571847,\"outFlow\":22086,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":366250205,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.24\",\"lastInBytes\":366250205,\"lastOutBytes\":964811980,\"outBytes\":964811980,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7838248,\"inBytes\":3879606214,\"inFlow\":201989,\"lastChangeTime\":\"0:01:22.26\",\"lastInBytes\":3879606214,\"lastOutBytes\":3389925556,\"outBytes\":3389925556,\"outFlow\":7636258,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.023763000\"}}", + "lastDiagTime": "2026-02-02 14:37:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641687", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:20", + "echoMap": {}, + "deviceId": "1004040012", + "name": "华为前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif136\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"141 days, 2:12:57.24\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:52\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"16\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:19\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":272747,\"inBytes\":1092549632,\"inFlow\":266297,\"lastChangeTime\":\"434 days, 19:26:48.59\",\"lastInBytes\":1092549632,\"lastOutBytes\":3036540154,\"outBytes\":3036540154,\"outFlow\":6450,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":95,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:04:10.47\",\"lastInBytes\":0,\"lastOutBytes\":695894899,\"outBytes\":695894899,\"outFlow\":95,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":274714,\"inBytes\":1912834291,\"inFlow\":7353,\"lastChangeTime\":\"141 days, 2:12:57.20\",\"lastInBytes\":1912834291,\"lastOutBytes\":725731344,\"outBytes\":725731344,\"outFlow\":267361,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:30.969451000\"}}", + "lastDiagTime": "2026-02-02 14:37:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641688", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:12", + "echoMap": {}, + "deviceId": "1004040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif136\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"141 days, 1:47:54.98\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:4c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:11\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":272658,\"inBytes\":1010191684,\"inFlow\":266129,\"lastChangeTime\":\"434 days, 19:03:00.50\",\"lastInBytes\":1010191684,\"lastOutBytes\":3836116288,\"outBytes\":3836116288,\"outFlow\":6529,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":675415340,\"outBytes\":675415340,\"outFlow\":91,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":274724,\"inBytes\":2737218047,\"inFlow\":7438,\"lastChangeTime\":\"141 days, 1:47:54.95\",\"lastInBytes\":2737218047,\"lastOutBytes\":724712248,\"outBytes\":724712248,\"outFlow\":267285,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:29.722679000\"}}", + "lastDiagTime": "2026-02-02 14:37:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603876735439641689", + "createdBy": "0", + "createdTime": "2025-03-07 13:53:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:24", + "echoMap": {}, + "deviceId": "1004040014", + "name": "H3C前端交换机13", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.136.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface136\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"38\",\"inUnknownProtos\":\"3375198928\",\"index\":\"635\",\"lastChange\":\"105 days, 12:27:08.18\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:7e:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"984072692\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"48447528\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.136.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:24\",\"info\":{\"portInfoList\":[{\"flow\":410826,\"inBytes\":195484235,\"inFlow\":400921,\"lastChangeTime\":\"3 days, 22:44:23.89\",\"lastInBytes\":195484235,\"lastOutBytes\":3043736945,\"outBytes\":3043736945,\"outFlow\":9905,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":18161,\"inFlow\":0,\"lastChangeTime\":\"0:03:05.44\",\"lastInBytes\":18161,\"lastOutBytes\":57919,\"outBytes\":57919,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":2},{\"flow\":409532,\"inBytes\":2356890532,\"inFlow\":399677,\"lastChangeTime\":\"3 days, 22:44:26.59\",\"lastInBytes\":2356890532,\"lastOutBytes\":3692006174,\"outBytes\":3692006174,\"outFlow\":9855,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":408953,\"inBytes\":2259926121,\"inFlow\":399176,\"lastChangeTime\":\"3 days, 22:44:22.92\",\"lastInBytes\":2259926121,\"lastOutBytes\":757867046,\"outBytes\":757867046,\"outFlow\":9777,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":409875,\"inBytes\":4189904840,\"inFlow\":400037,\"lastChangeTime\":\"3 days, 22:44:26.09\",\"lastInBytes\":4189904840,\"lastOutBytes\":3099987259,\"outBytes\":3099987259,\"outFlow\":9838,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":408551,\"inBytes\":3920987261,\"inFlow\":398727,\"lastChangeTime\":\"3 days, 22:44:17.76\",\"lastInBytes\":3920987261,\"lastOutBytes\":3375198928,\"outBytes\":3375198928,\"outFlow\":9824,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":410091,\"inBytes\":3167998126,\"inFlow\":400327,\"lastChangeTime\":\"3 days, 22:44:17.11\",\"lastInBytes\":3167998126,\"lastOutBytes\":1875218665,\"outBytes\":1875218665,\"outFlow\":9763,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409738,\"inBytes\":1427331390,\"inFlow\":399986,\"lastChangeTime\":\"432 days, 20:10:27.16\",\"lastInBytes\":1427331390,\"lastOutBytes\":4155850772,\"outBytes\":4155850772,\"outFlow\":9752,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":409814,\"inBytes\":3152712936,\"inFlow\":399960,\"lastChangeTime\":\"144 days, 10:47:45.95\",\"lastInBytes\":3152712936,\"lastOutBytes\":541488043,\"outBytes\":541488043,\"outFlow\":9853,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":408959,\"inBytes\":4211591643,\"inFlow\":399854,\"lastChangeTime\":\"144 days, 10:47:50.07\",\"lastInBytes\":4211591643,\"lastOutBytes\":1277543515,\"outBytes\":1277543515,\"outFlow\":9105,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":253821,\"inBytes\":1120693969,\"inFlow\":247736,\"lastChangeTime\":\"144 days, 10:49:29.73\",\"lastInBytes\":1120693969,\"lastOutBytes\":1872167708,\"outBytes\":1872167708,\"outFlow\":6085,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":30547947,\"inBytes\":1215539,\"inFlow\":0,\"lastChangeTime\":\"33 days, 13:45:10.96\",\"lastInBytes\":1215539,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":30547947,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6605898,\"inFlow\":0,\"lastChangeTime\":\"105 days, 12:09:52.45\",\"lastInBytes\":6605898,\"lastOutBytes\":286373640,\"outBytes\":286373640,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":325,\"inBytes\":587534391,\"inFlow\":122,\"lastChangeTime\":\"139 days, 2:28:33.45\",\"lastInBytes\":587534391,\"lastOutBytes\":2252447864,\"outBytes\":2252447864,\"outFlow\":202,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3981644,\"inBytes\":2928117500,\"inFlow\":100506,\"lastChangeTime\":\"139 days, 2:35:25.71\",\"lastInBytes\":2928117500,\"lastOutBytes\":2418409253,\"outBytes\":2418409253,\"outFlow\":3881138,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:21.028652000\"}}", + "lastDiagTime": "2026-02-02 14:37:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "571642722415309023", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1004110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.135.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.01\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"110 days, 10:50:42.45\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10818988\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28004833\",\"inOctets\":\"1075253361\",\"inUcastPkts\":\"1560703353\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"10 days, 14:06:17.88\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9f:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2213321460\",\"outQLen\":\"0\",\"outUcastPkts\":\"1378366160\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.135.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1005": { + "ndmAlarmHost": [ + { + "id": "689001097467996195", + "createdBy": null, + "createdTime": "2025-10-18 14:57:32", + "updatedBy": null, + "updatedTime": "2025-10-18 14:57:32", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.137.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "689001088878061587", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060001", + "name": "[605](10)龙溪弱电机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503048005005605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061588", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:36:51", + "echoMap": {}, + "deviceId": "1005060002", + "name": "[606](10)龙溪弱电机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503048005005606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061589", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060003", + "name": "[607](10)龙溪弱电机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503048005005607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061590", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060004", + "name": "[609](10)龙溪环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503053005005609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061591", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060005", + "name": "[608](10)龙溪弱电机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503048005005608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061592", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060006", + "name": "[615](10)龙溪内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503001006005615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061593", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060007", + "name": "[616](10)龙溪内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061594", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060008", + "name": "[611](10)龙溪降变所1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503046006005611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061595", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060009", + "name": "[612](10)龙溪降变所2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503046006005612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061596", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060010", + "name": "[613](10)龙溪降变所3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503046006005613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061597", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060011", + "name": "[614](10)龙溪降变所4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503046006005614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061598", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060012", + "name": "[627](10)龙溪消防疏散口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503002006005627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061599", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060013", + "name": "[628](10)龙溪消防疏散口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503002006005628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061600", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060014", + "name": "[617](10)龙溪内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061601", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060015", + "name": "[618](10)龙溪内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503001006005618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061602", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:04:54", + "echoMap": {}, + "deviceId": "1005060016", + "name": "[629](10)龙溪消防疏散口2地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503002006005629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061603", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:55", + "echoMap": {}, + "deviceId": "1005060017", + "name": "[630](10)龙溪消防疏散口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503002006005630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061604", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:55", + "echoMap": {}, + "deviceId": "1005060018", + "name": "[619](10)龙溪内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503001006005619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061605", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:55", + "echoMap": {}, + "deviceId": "1005060019", + "name": "[503](10)龙溪票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501030006005503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061606", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:55", + "echoMap": {}, + "deviceId": "1005060020", + "name": "[307](10)龙溪2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061607", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:55", + "echoMap": {}, + "deviceId": "1005060021", + "name": "[308](10)龙溪2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061608", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:56", + "echoMap": {}, + "deviceId": "1005060022", + "name": "[601](10)龙溪编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503041005005601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061609", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:56", + "echoMap": {}, + "deviceId": "1005060023", + "name": "[206](10)龙溪厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501035004005206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061610", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:56", + "echoMap": {}, + "deviceId": "1005060024", + "name": "[602](10)龙溪编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503041005005602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061611", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:56", + "echoMap": {}, + "deviceId": "1005060025", + "name": "[603](10)龙溪编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503041005005603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061612", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060026", + "name": "[202](10)龙溪2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056004005202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061613", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060027", + "name": "[311](10)龙溪2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061614", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060028", + "name": "[312](10)龙溪2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061615", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060029", + "name": "[314](10)龙溪2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061616", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060030", + "name": "[313](10)龙溪2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061617", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060031", + "name": "[309](10)龙溪2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061618", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060032", + "name": "[310](10)龙溪2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061619", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060033", + "name": "[407](10)龙溪4#闸入", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501008006005407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061620", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060034", + "name": "[331](10)龙溪1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501036005005331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061621", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060035", + "name": "[501](10)龙溪客服01", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501001004005501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061622", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060036", + "name": "[343](10)龙溪#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501045006005343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061623", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060037", + "name": "[341](10)龙溪#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061624", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060038", + "name": "[342](10)龙溪#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061625", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060039", + "name": "[334](10)龙溪B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501040006005334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061626", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060040", + "name": "[347](10)龙溪#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061627", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060041", + "name": "[348](10)龙溪#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061628", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060042", + "name": "[502](10)龙溪客服02", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501001005005502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061629", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060043", + "name": "[408](10)龙溪4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501008006005408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061630", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060044", + "name": "[409](10)龙溪4#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501008006005409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061631", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060045", + "name": "[406](10)龙溪3#闸出", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501007006005406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061632", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060046", + "name": "[323](10)龙溪3#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061633", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1005060047", + "name": "[322](10)龙溪3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061634", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060048", + "name": "[320](10)龙溪3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061635", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060049", + "name": "[203](10)龙溪3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057004005203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061636", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060050", + "name": "[324](10)龙溪3#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057005005324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061637", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060051", + "name": "[319](10)龙溪3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061638", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060052", + "name": "[317](10)龙溪3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061639", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060053", + "name": "[318](10)龙溪3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061640", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060054", + "name": "[332](10)龙溪2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501036005005332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061641", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060055", + "name": "[321](10)龙溪3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061642", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060056", + "name": "[411](10)龙溪安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501085006005411", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061643", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060057", + "name": "[405](10)龙溪2#闸出", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501006006005405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061644", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060058", + "name": "[404](10)龙溪2#闸入", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501006006005404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061645", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060059", + "name": "[208](10)龙溪厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501035004005208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061646", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060060", + "name": "[610](10)龙溪环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503053005005610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061647", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060061", + "name": "[349](10)龙溪#4厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501045006005349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061648", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060062", + "name": "[315](10)龙溪3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061649", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060063", + "name": "[316](10)龙溪3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501057006005316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061650", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060064", + "name": "[210](10)龙溪厅6球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501035004005210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061651", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060065", + "name": "[621](10)龙溪内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503001006005621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061652", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060066", + "name": "[620](10)龙溪内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503001006005620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061653", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060067", + "name": "[306](10)龙溪1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055006005306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061654", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060068", + "name": "[303](10)龙溪1#口出", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055006005303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061655", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060069", + "name": "[301](10)龙溪1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055006005301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061656", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060070", + "name": "[304](10)龙溪1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055006005304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061657", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060071", + "name": "[305](10)龙溪1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055006005305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061658", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060072", + "name": "[201](10)龙溪1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055004005201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061659", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060073", + "name": "[205](10)龙溪厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501035004005205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061660", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060074", + "name": "[302](10)龙溪1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501055006005302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061661", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060075", + "name": "[410](10)龙溪安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501085006005410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061662", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060076", + "name": "[333](10)龙溪3#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501036005005333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061663", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060077", + "name": "[338](10)龙溪#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061664", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060078", + "name": "[339](10)龙溪#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061665", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060079", + "name": "[344](10)龙溪#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061666", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060080", + "name": "[345](10)龙溪#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501050006005345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061667", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060081", + "name": "[340](10)龙溪#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501045006005340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061668", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060082", + "name": "[358](10)龙溪B1费区公厕", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501040006005358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061669", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060083", + "name": "[401](10)龙溪1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501005006005401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061670", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060084", + "name": "[335](10)龙溪B1垂梯口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501040006005335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061671", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060085", + "name": "[402](10)龙溪1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501005006005402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061672", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060086", + "name": "[207](10)龙溪厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501035004005207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061673", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060087", + "name": "[326](10)龙溪4#口出", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058006005326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061674", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 13:44:51", + "echoMap": {}, + "deviceId": "1005060088", + "name": "[204](10)龙溪4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058004005204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061675", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060089", + "name": "[329](10)龙溪4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058006005329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061676", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060090", + "name": "[330](10)龙溪4#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058006005330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061677", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060091", + "name": "[328](10)龙溪4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058006005328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061678", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060092", + "name": "[327](10)龙溪4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058006005327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061679", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060093", + "name": "[346](10)龙溪#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501045006005346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061680", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060094", + "name": "[504](10)龙溪票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501030006005504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061681", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-03 16:01:27", + "echoMap": {}, + "deviceId": "1005060095", + "name": "[209](10)龙溪厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501035004005209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061682", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060096", + "name": "[325](10)龙溪4#口入", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501058006005325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061683", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060097", + "name": "[713](10)龙溪隔断门1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504014006005713", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061684", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060098", + "name": "[714](10)龙溪隔断门2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504014006005714", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061685", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060099", + "name": "[715](10)龙溪隔断门3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504014006005715", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061686", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-02-01 05:06:51", + "echoMap": {}, + "deviceId": "1005060100", + "name": "[622](10)龙溪内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001088878061687", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060101", + "name": "[716](10)龙溪隔断门4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504014006005716", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028864", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060102", + "name": "[107](10)龙溪上行2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028865", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060103", + "name": "[108](10)龙溪上行2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028866", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060104", + "name": "[110](10)龙溪上行2-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028867", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060105", + "name": "[213](10)龙溪下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502001004005213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028868", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060106", + "name": "[604](10)龙溪屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503048005005604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028869", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1005060107", + "name": "[353](10)龙溪#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502017006005353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028870", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1005060108", + "name": "[352](10)龙溪#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502018006005352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028871", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060109", + "name": "[211](10)龙溪上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502001004005211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028872", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060110", + "name": "[101](10)龙溪上行3-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028873", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060111", + "name": "[102](10)龙溪上行3-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028874", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060112", + "name": "[104](10)龙溪上行3-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028875", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060113", + "name": "[112](10)龙溪上行2-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028876", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060114", + "name": "[111](10)龙溪上行2-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028877", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060115", + "name": "[109](10)龙溪上行2-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028878", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060116", + "name": "[214](10)龙溪下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502001004005214", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028879", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060117", + "name": "[336](10)龙溪B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501040006005336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028880", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1005060118", + "name": "[356](10)龙溪#4台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502018006005356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028881", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060119", + "name": "[357](10)龙溪#4台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502017006005357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028882", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060120", + "name": "[212](10)龙溪上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502001004005212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028883", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1005060121", + "name": "[106](10)龙溪上行3-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028884", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060122", + "name": "[105](10)龙溪上行3-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028885", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060123", + "name": "[103](10)龙溪上行3-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502007006005103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028886", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060124", + "name": "[623](10)龙溪内通道9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028887", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060125", + "name": "[624](10)龙溪内通道10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028888", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060126", + "name": "[625](10)龙溪内通道11", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028889", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060127", + "name": "[626](10)龙溪内通道12", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503021006005626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028890", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-02-02 12:55:51", + "echoMap": {}, + "deviceId": "1005060128", + "name": "[350](10)龙溪#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502018006005350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028891", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060129", + "name": "[351](10)龙溪#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502017004005351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028892", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060130", + "name": "[215](10)龙溪下行球3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.32", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502001006005215", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028893", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060131", + "name": "[113](10)龙溪下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502012006005113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028894", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060132", + "name": "[114](10)龙溪下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502012006005114", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028895", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060133", + "name": "[355](10)龙溪#3台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.36", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502017006005355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028896", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060134", + "name": "[354](10)龙溪#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.37", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502018004005354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028897", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060135", + "name": "[216](10)龙溪下行球4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.38", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502001006005216", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028898", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060136", + "name": "[117](10)龙溪下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.39", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502012006005117", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028899", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060137", + "name": "[118](10)龙溪下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.40", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502012006005118", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028900", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060138", + "name": "[115](10)龙溪下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.41", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502012006005115", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028901", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060139", + "name": "[116](10)龙溪下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.42", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060502012006005116", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028902", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1005060140", + "name": "[337](10)龙溪B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.43", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501040006005337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028903", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060141", + "name": "[717](10)龙溪联络通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.48", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504012004005717", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028904", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060142", + "name": "[718](10)龙溪联络通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.49", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504012004005718", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028905", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-01-13 00:36:30", + "echoMap": {}, + "deviceId": "1005060143", + "name": "[719](10)龙溪联络通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.50", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504012004005719", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028906", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-01-13 00:36:30", + "echoMap": {}, + "deviceId": "1005060144", + "name": "[720](10)龙溪联络通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.51", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504012005005720", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001093173028907", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060145", + "name": "[631](10)龙溪通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.53", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503048005005631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996160", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060146", + "name": "[632](10)龙溪气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.54", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503067005005632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996161", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060147", + "name": "[635](10)龙溪弱电机房5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.58", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503068005005635", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996162", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:56", + "echoMap": {}, + "deviceId": "1005060148", + "name": "[633](10)龙溪消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.55", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503068005005633", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996163", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-12-19 09:03:56", + "echoMap": {}, + "deviceId": "1005060149", + "name": "[634](10)龙溪内通道13", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.57", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503001005005634", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996164", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060150", + "name": "[359](10)龙溪2#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.56", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501056006005359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996165", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1005060151", + "name": "[403](10)龙溪1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.52", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060501005006005403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996166", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060152", + "name": "[636](10)龙溪气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.60", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060503067005005636", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996167", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060153", + "name": "[701](10)龙溪3#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996168", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-01-20 23:21:51", + "echoMap": {}, + "deviceId": "1005060154", + "name": "[702](10)龙溪7#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996169", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060155", + "name": "[703](10)龙溪5#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996170", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1005060156", + "name": "[704](10)龙溪1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996171", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1005060157", + "name": "[705](10)龙溪2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.137.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996172", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060158", + "name": "[706](10)龙溪虹火上行方向存车线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996173", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1005060159", + "name": "[707](10)龙溪8#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996174", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1005060160", + "name": "[708](10)龙溪9#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.35", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996175", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1005060161", + "name": "[709](10)龙溪6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.44", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005709", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996176", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060162", + "name": "[710](10)龙溪12#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.45", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005710", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996177", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060163", + "name": "[711](10)龙溪10#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.46", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005711", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996178", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1005060164", + "name": "[712](10)龙溪14#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.47", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013004005712", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996179", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060165", + "name": "[637](10)龙溪4#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.61", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504013006005637", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996180", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2026-01-13 00:36:30", + "echoMap": {}, + "deviceId": "1005060166", + "name": "[638](10)龙溪龙柏-龙溪上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.62", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504012004005638", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996181", + "createdBy": "0", + "createdTime": "2025-10-18 14:56:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1005060167", + "name": "[639](10)龙溪龙柏-龙溪下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.138.63", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060504012004005639", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585047452785070756", + "createdBy": "0", + "createdTime": "2024-12-03 13:59:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1005070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.137.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060500000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"123767\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1166927356\",\"inUcastPkts\":\"3607810112\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:19:3a:70\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3441462773\",\"outQLen\":\"0\",\"outUcastPkts\":\"1008192931\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.137.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:51\",\"stCommonInfo\":{\"设备ID\":\"8L0027FPAZ0A754\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"41\",\"CPU使用率\":\"29\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585047452785070757", + "createdBy": "2", + "createdTime": "2025-01-21 14:07:25", + "updatedBy": null, + "updatedTime": "2025-12-26 23:15:50", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.137.52", + "manageUrl": "http:\\\\10.18.137.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047452785070758", + "createdBy": "2", + "createdTime": "2025-01-21 14:07:55", + "updatedBy": null, + "updatedTime": "2026-01-20 17:02:51", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.137.51", + "manageUrl": "http:\\\\10.18.137.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585047452785070755", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1005090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.137.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.97\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"54 days, 11:55:13.95\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"9571485\",\"inErrors\":\"0\",\"inNUcastPkts\":\"25418928\",\"inOctets\":\"2297652183\",\"inUcastPkts\":\"250816634\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ac:a0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1417976246\",\"outQLen\":\"0\",\"outUcastPkts\":\"2845393251\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.137.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585047452785070080", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-08-27 02:20:53", + "echoMap": {}, + "deviceId": "1005050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.137.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060500000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.137.22;10.18.137.23" + }, + { + "id": "585047452785070081", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1005050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.137.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060500000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26096622\",\"inErrors\":\"14\",\"inNUcastPkts\":\"91490885\",\"inOctets\":\"1960161174\",\"inUcastPkts\":\"1341114481\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:6a:19:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3587039957\",\"outQLen\":\"0\",\"outUcastPkts\":\"841988235\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3690\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3650\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3680\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.137.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:52\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":715961090,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1263695580}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13722\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"49\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.137.22" + }, + { + "id": "585047452785070082", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1005050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.137.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060500000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26095962\",\"inErrors\":\"9\",\"inNUcastPkts\":\"103714499\",\"inOctets\":\"2698032164\",\"inUcastPkts\":\"2618612179\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:6a:1d:3c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932235306\",\"outQLen\":\"0\",\"outUcastPkts\":\"559475595\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3310\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3310\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.137.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:53\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":715961090,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1263695580}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13723\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"59\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.137.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589937693958362134", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "deviceId": "1005030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7321007\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408267414\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7321012\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:37\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23300001,\"status\":1,\"voltage\":26.328001},{\"current\":0.22500001,\"status\":1,\"voltage\":26.328001},{\"current\":0.231,\"status\":1,\"voltage\":26.328001},{\"current\":0.224,\"status\":1,\"voltage\":26.328001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.328001},{\"current\":0.22500001,\"status\":1,\"voltage\":26.328001},{\"current\":0.238,\"status\":1,\"voltage\":26.328001},{\"current\":0.21900001,\"status\":1,\"voltage\":26.328001},{\"current\":0.238,\"status\":1,\"voltage\":26.328001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.254002},{\"current\":0.003,\"status\":1,\"voltage\":26.254002},{\"current\":0.23300001,\"status\":1,\"voltage\":26.254002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.254002},{\"current\":0.231,\"status\":1,\"voltage\":26.254002},{\"current\":0.001,\"status\":1,\"voltage\":26.254002},{\"current\":0.001,\"status\":1,\"voltage\":26.254002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301079\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362135", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "deviceId": "1005030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7320976\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408263731\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7320981\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:b1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25100002,\"status\":1,\"voltage\":26.276001},{\"current\":0.277,\"status\":1,\"voltage\":26.276001},{\"current\":0.31500003,\"status\":1,\"voltage\":26.276001},{\"current\":0.23,\"status\":1,\"voltage\":26.276001},{\"current\":0.272,\"status\":1,\"voltage\":26.276001},{\"current\":0.254,\"status\":1,\"voltage\":26.276001},{\"current\":0.24000001,\"status\":1,\"voltage\":26.276001},{\"current\":0.223,\"status\":1,\"voltage\":26.276001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.276001},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.002,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301201\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:38:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362136", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "deviceId": "1005030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7320815\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408253671\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7320820\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:5f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22700001,\"status\":1,\"voltage\":26.224},{\"current\":0.25800002,\"status\":1,\"voltage\":26.224},{\"current\":0.259,\"status\":1,\"voltage\":26.224},{\"current\":0.23600002,\"status\":1,\"voltage\":26.224},{\"current\":0.3,\"status\":1,\"voltage\":26.224},{\"current\":0.291,\"status\":1,\"voltage\":26.224},{\"current\":0.231,\"status\":1,\"voltage\":26.224},{\"current\":0.61600006,\"status\":1,\"voltage\":26.224},{\"current\":0.22800002,\"status\":1,\"voltage\":26.224},{\"current\":0.21900001,\"status\":1,\"voltage\":25.984001},{\"current\":0.002,\"status\":1,\"voltage\":25.984001},{\"current\":0.26900002,\"status\":1,\"voltage\":25.984001},{\"current\":0.275,\"status\":1,\"voltage\":25.984001},{\"current\":0.001,\"status\":1,\"voltage\":25.984001},{\"current\":0.0,\"status\":1,\"voltage\":25.984001},{\"current\":0.0,\"status\":1,\"voltage\":25.984001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301375\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:38:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362137", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "deviceId": "1005030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7319802\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408198884\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7319807\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:94\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.508,\"status\":1,\"voltage\":26.142002},{\"current\":0.316,\"status\":1,\"voltage\":26.142002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.142002},{\"current\":0.27600002,\"status\":1,\"voltage\":26.142002},{\"current\":0.21800001,\"status\":1,\"voltage\":26.142002},{\"current\":0.324,\"status\":1,\"voltage\":26.142002},{\"current\":0.35900003,\"status\":1,\"voltage\":26.142002},{\"current\":0.27600002,\"status\":1,\"voltage\":26.142002},{\"current\":0.001,\"status\":1,\"voltage\":26.142002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.003,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301172\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:38:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362138", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:24", + "echoMap": {}, + "deviceId": "1005030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7266191\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"405190904\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7266196\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:6c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.33400002,\"status\":1,\"voltage\":26.069002},{\"current\":0.42100003,\"status\":1,\"voltage\":26.069002},{\"current\":0.546,\"status\":1,\"voltage\":26.069002},{\"current\":0.23600002,\"status\":1,\"voltage\":26.069002},{\"current\":0.254,\"status\":1,\"voltage\":26.069002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.069002},{\"current\":0.256,\"status\":1,\"voltage\":26.069002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.069002},{\"current\":0.24800001,\"status\":1,\"voltage\":26.069002},{\"current\":0.26700002,\"status\":1,\"voltage\":25.781002},{\"current\":0.003,\"status\":1,\"voltage\":25.781002},{\"current\":0.36600003,\"status\":1,\"voltage\":25.781002},{\"current\":0.397,\"status\":1,\"voltage\":25.781002},{\"current\":0.39400002,\"status\":1,\"voltage\":25.781002},{\"current\":0.001,\"status\":1,\"voltage\":25.781002},{\"current\":0.001,\"status\":1,\"voltage\":25.781002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300876\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362139", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:24", + "echoMap": {}, + "deviceId": "1005030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7319206\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408166154\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7319211\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:bf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26700002,\"status\":1,\"voltage\":26.282001},{\"current\":0.266,\"status\":1,\"voltage\":26.282001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.282001},{\"current\":0.50200003,\"status\":1,\"voltage\":26.282001},{\"current\":0.21400002,\"status\":1,\"voltage\":26.282001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.282001},{\"current\":0.324,\"status\":1,\"voltage\":26.282001},{\"current\":0.33200002,\"status\":1,\"voltage\":26.282001},{\"current\":0.40800002,\"status\":1,\"voltage\":26.282001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.028002},{\"current\":0.003,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300191\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:38:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362140", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:24", + "echoMap": {}, + "deviceId": "1005030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7318221\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408111124\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7318226\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:11\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.79,\"status\":1,\"voltage\":25.475},{\"current\":0.749,\"status\":1,\"voltage\":25.475},{\"current\":0.795,\"status\":1,\"voltage\":25.475},{\"current\":0.60400003,\"status\":1,\"voltage\":25.475},{\"current\":0.21800001,\"status\":1,\"voltage\":25.475},{\"current\":0.71500003,\"status\":1,\"voltage\":25.475},{\"current\":0.34600002,\"status\":1,\"voltage\":25.475},{\"current\":0.841,\"status\":1,\"voltage\":25.475},{\"current\":0.351,\"status\":1,\"voltage\":25.475},{\"current\":0.56100005,\"status\":1,\"voltage\":25.454},{\"current\":0.003,\"status\":1,\"voltage\":25.454},{\"current\":0.624,\"status\":1,\"voltage\":25.454},{\"current\":0.001,\"status\":1,\"voltage\":25.454},{\"current\":0.001,\"status\":1,\"voltage\":25.454},{\"current\":0.001,\"status\":1,\"voltage\":25.454},{\"current\":0.001,\"status\":1,\"voltage\":25.454}],\"fanSpeeds\":[1770,1740],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0001512208300273\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:38:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362141", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1005030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7318239\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408111314\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7318244\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:fa\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.238,\"status\":1,\"voltage\":26.583002},{\"current\":0.33100003,\"status\":1,\"voltage\":26.583002},{\"current\":0.37,\"status\":1,\"voltage\":26.583002},{\"current\":0.23300001,\"status\":1,\"voltage\":26.583002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.583002},{\"current\":0.503,\"status\":1,\"voltage\":26.583002},{\"current\":0.526,\"status\":1,\"voltage\":26.583002},{\"current\":0.26700002,\"status\":1,\"voltage\":26.583002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.583002},{\"current\":0.0,\"status\":1,\"voltage\":26.807001},{\"current\":0.003,\"status\":1,\"voltage\":26.807001},{\"current\":0.001,\"status\":1,\"voltage\":26.807001},{\"current\":0.001,\"status\":1,\"voltage\":26.807001},{\"current\":0.001,\"status\":1,\"voltage\":26.807001},{\"current\":0.001,\"status\":1,\"voltage\":26.807001},{\"current\":0.0,\"status\":1,\"voltage\":26.807001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208301274\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362142", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1005030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7317953\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"408095626\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7317958\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:da\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.425,\"status\":1,\"voltage\":25.910002},{\"current\":0.29500002,\"status\":1,\"voltage\":25.910002},{\"current\":0.257,\"status\":1,\"voltage\":25.910002},{\"current\":0.277,\"status\":1,\"voltage\":25.910002},{\"current\":0.246,\"status\":1,\"voltage\":25.910002},{\"current\":0.245,\"status\":1,\"voltage\":25.910002},{\"current\":0.24100001,\"status\":1,\"voltage\":25.910002},{\"current\":0.32700002,\"status\":1,\"voltage\":25.910002},{\"current\":0.259,\"status\":1,\"voltage\":25.910002},{\"current\":0.31300002,\"status\":1,\"voltage\":25.802002},{\"current\":0.003,\"status\":1,\"voltage\":25.802002},{\"current\":0.51600003,\"status\":1,\"voltage\":25.802002},{\"current\":0.32700002,\"status\":1,\"voltage\":25.802002},{\"current\":0.001,\"status\":1,\"voltage\":25.802002},{\"current\":0.001,\"status\":1,\"voltage\":25.802002},{\"current\":0.001,\"status\":1,\"voltage\":25.802002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301498\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362143", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:26", + "echoMap": {}, + "deviceId": "1005030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7315923\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"407981106\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7315928\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:84\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.33900002,\"status\":1,\"voltage\":25.975},{\"current\":0.48400003,\"status\":1,\"voltage\":25.975},{\"current\":0.22900002,\"status\":1,\"voltage\":25.975},{\"current\":4.261,\"status\":1,\"voltage\":25.975},{\"current\":0.23300001,\"status\":1,\"voltage\":25.975},{\"current\":0.23200001,\"status\":1,\"voltage\":25.975},{\"current\":0.238,\"status\":1,\"voltage\":25.975},{\"current\":0.53400004,\"status\":1,\"voltage\":25.975},{\"current\":0.259,\"status\":1,\"voltage\":25.975},{\"current\":0.33900002,\"status\":1,\"voltage\":26.023},{\"current\":0.003,\"status\":1,\"voltage\":26.023},{\"current\":0.001,\"status\":1,\"voltage\":26.023},{\"current\":0.001,\"status\":1,\"voltage\":26.023},{\"current\":0.001,\"status\":1,\"voltage\":26.023},{\"current\":0.001,\"status\":1,\"voltage\":26.023},{\"current\":0.001,\"status\":1,\"voltage\":26.023}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301091\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:38:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362144", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:47", + "echoMap": {}, + "deviceId": "1005030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:33:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362145", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:47", + "echoMap": {}, + "deviceId": "1005030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6468817\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"360416616\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6468822\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:ea\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.254,\"status\":1,\"voltage\":25.886002},{\"current\":0.275,\"status\":1,\"voltage\":25.886002},{\"current\":0.21800001,\"status\":1,\"voltage\":25.886002},{\"current\":0.52000004,\"status\":1,\"voltage\":25.886002},{\"current\":0.21300001,\"status\":1,\"voltage\":25.886002},{\"current\":0.24700001,\"status\":1,\"voltage\":25.886002},{\"current\":0.26000002,\"status\":1,\"voltage\":25.886002},{\"current\":0.517,\"status\":1,\"voltage\":25.886002},{\"current\":0.26900002,\"status\":1,\"voltage\":25.886002},{\"current\":0.264,\"status\":1,\"voltage\":26.194002},{\"current\":0.003,\"status\":1,\"voltage\":26.194002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301258\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:33:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362146", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:48", + "echoMap": {}, + "deviceId": "1005030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6468734\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"360413391\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6468739\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:11\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24800001,\"status\":1,\"voltage\":25.925001},{\"current\":0.23700002,\"status\":1,\"voltage\":25.925001},{\"current\":0.245,\"status\":1,\"voltage\":25.925001},{\"current\":0.61800003,\"status\":1,\"voltage\":25.925001},{\"current\":0.246,\"status\":1,\"voltage\":25.925001},{\"current\":0.28,\"status\":1,\"voltage\":25.925001},{\"current\":0.254,\"status\":1,\"voltage\":25.925001},{\"current\":0.50600004,\"status\":1,\"voltage\":25.925001},{\"current\":0.26000002,\"status\":1,\"voltage\":25.925001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.184002},{\"current\":0.003,\"status\":1,\"voltage\":26.184002},{\"current\":0.254,\"status\":1,\"voltage\":26.184002},{\"current\":0.001,\"status\":1,\"voltage\":26.184002},{\"current\":0.001,\"status\":1,\"voltage\":26.184002},{\"current\":0.001,\"status\":1,\"voltage\":26.184002},{\"current\":0.001,\"status\":1,\"voltage\":26.184002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300017\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:33:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362147", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:48", + "echoMap": {}, + "deviceId": "1005030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4533815\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"251767812\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"48 days, 14:36:14.86\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4533820\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:41\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.131},{\"current\":0.268,\"status\":1,\"voltage\":26.131},{\"current\":0.22700001,\"status\":1,\"voltage\":26.131},{\"current\":0.317,\"status\":1,\"voltage\":26.131},{\"current\":0.215,\"status\":1,\"voltage\":26.131},{\"current\":0.21300001,\"status\":1,\"voltage\":26.131},{\"current\":0.24300002,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.658},{\"current\":0.003,\"status\":1,\"voltage\":26.658},{\"current\":0.001,\"status\":1,\"voltage\":26.658},{\"current\":0.001,\"status\":1,\"voltage\":26.658},{\"current\":0.001,\"status\":1,\"voltage\":26.658},{\"current\":0.001,\"status\":1,\"voltage\":26.658},{\"current\":0.001,\"status\":1,\"voltage\":26.658}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301089\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:33:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362148", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:48", + "echoMap": {}, + "deviceId": "1005030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6465179\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"360211886\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6465184\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:60\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.160002},{\"current\":0.24000001,\"status\":1,\"voltage\":26.160002},{\"current\":0.26700002,\"status\":1,\"voltage\":26.160002},{\"current\":0.52000004,\"status\":1,\"voltage\":26.160002},{\"current\":0.27400002,\"status\":1,\"voltage\":26.160002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.160002},{\"current\":0.231,\"status\":1,\"voltage\":26.160002},{\"current\":0.001,\"status\":1,\"voltage\":26.160002},{\"current\":0.001,\"status\":1,\"voltage\":26.160002},{\"current\":0.001,\"status\":1,\"voltage\":26.18},{\"current\":0.002,\"status\":1,\"voltage\":26.18},{\"current\":0.001,\"status\":1,\"voltage\":26.18},{\"current\":0.001,\"status\":1,\"voltage\":26.18},{\"current\":0.001,\"status\":1,\"voltage\":26.18},{\"current\":0.001,\"status\":1,\"voltage\":26.18},{\"current\":0.001,\"status\":1,\"voltage\":26.18}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300096\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:33:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362149", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:49", + "echoMap": {}, + "deviceId": "1005030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6464805\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"360192516\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6464810\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:6c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23700002,\"status\":1,\"voltage\":26.124},{\"current\":0.261,\"status\":1,\"voltage\":26.124},{\"current\":0.497,\"status\":1,\"voltage\":26.124},{\"current\":0.266,\"status\":1,\"voltage\":26.124},{\"current\":0.25100002,\"status\":1,\"voltage\":26.124},{\"current\":0.001,\"status\":1,\"voltage\":26.124},{\"current\":0.37,\"status\":1,\"voltage\":26.124},{\"current\":0.358,\"status\":1,\"voltage\":26.124},{\"current\":0.001,\"status\":1,\"voltage\":26.124},{\"current\":0.001,\"status\":1,\"voltage\":26.240002},{\"current\":0.003,\"status\":1,\"voltage\":26.240002},{\"current\":0.001,\"status\":1,\"voltage\":26.240002},{\"current\":0.001,\"status\":1,\"voltage\":26.240002},{\"current\":0.001,\"status\":1,\"voltage\":26.240002},{\"current\":0.001,\"status\":1,\"voltage\":26.240002},{\"current\":0.001,\"status\":1,\"voltage\":26.240002}],\"fanSpeeds\":[1260,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301644\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:33:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362150", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:49", + "echoMap": {}, + "deviceId": "1005030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5328763\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"296031895\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5328768\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:23\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.303001},{\"current\":0.28,\"status\":1,\"voltage\":26.303001},{\"current\":0.259,\"status\":1,\"voltage\":26.303001},{\"current\":0.28300002,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":1,\"voltage\":26.303001},{\"current\":0.001,\"status\":0,\"voltage\":26.303001},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302339\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:33:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362151", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:57", + "echoMap": {}, + "deviceId": "1005030018", + "name": "安防箱18", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:34:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362152", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:57", + "echoMap": {}, + "deviceId": "1005030019", + "name": "安防箱19", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6460110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"359472384\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"2:51:13.55\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6460115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:a0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":1,\"voltage\":26.715002},{\"current\":0.558,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":1,\"voltage\":26.715002},{\"current\":0.001,\"status\":0,\"voltage\":26.715002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301375\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362153", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:05", + "echoMap": {}, + "deviceId": "1005030020", + "name": "安防箱20", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362154", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:06", + "echoMap": {}, + "deviceId": "1005030021", + "name": "安防箱21", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6454774\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"359177112\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:33:43.44\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6454779\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:10\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":1,\"voltage\":27.067001},{\"current\":0.549,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":1,\"voltage\":27.067001},{\"current\":0.001,\"status\":0,\"voltage\":27.067001},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301487\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362155", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:06", + "echoMap": {}, + "deviceId": "1005030022", + "name": "安防箱22", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6454268\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"359146191\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:27:30.67\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6454273\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:cd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.57000005,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":0,\"voltage\":26.674002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301676\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996214", + "createdBy": null, + "createdTime": "2025-10-18 14:58:03", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:14", + "echoMap": {}, + "deviceId": null, + "name": "安防箱23", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996222", + "createdBy": null, + "createdTime": "2025-10-18 14:58:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "deviceId": null, + "name": "安防箱24", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.138.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589937689663395003", + "createdBy": "2", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:31", + "echoMap": {}, + "deviceId": "1005040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.137.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif137\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"7\",\"lastChange\":\"0:03:03.06\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:0c:a3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"36\",\"memoryRatio\":\"27\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.137.64\",\"index\":\"7\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"89\",\"0\",\"0\",\"0\",\"93\",\"95\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"96\",\"106\",\"99\",\"94\",\"96\",\"141\",\"107\",\"96\",\"91\",\"91\",\"92\",\"93\",\"0\",\"0\",\"198\",\"198603946\",\"0\",\"201\",\"198\",\"277\",\"216226\",\"11617\",\"467506\",\"305896\",\"19137\",\"199971\",\"197\",\"209544\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:30\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.59\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13175,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":243,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31049,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":638,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":238,\"opticalVoltage\":3277,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13163,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":275,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":250,\"opticalVoltage\":3257,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33419,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":632,\"opticalVoltage\":3296,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41215,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":462,\"opticalVoltage\":3288,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37631,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":479,\"opticalVoltage\":3315,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13100,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":266,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33299,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":584,\"opticalVoltage\":3230,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":238,\"opticalVoltage\":3265,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13449,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":289,\"opticalVoltage\":3239,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":245,\"opticalVoltage\":3334,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33630,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":561,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":641,\"opticalVoltage\":3341,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13673,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":270,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33840,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":578,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33720,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":685,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":18360,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":282,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":238,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":682,\"inBytes\":3235012139,\"inFlow\":82,\"lastChangeTime\":\"0:04:06.73\",\"lastInBytes\":3235012139,\"lastOutBytes\":3019694792,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":171,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":3019694792,\"outFlow\":600,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39013,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":393,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":4836952,\"inBytes\":4025679027,\"inFlow\":3302,\"lastChangeTime\":\"0:04:05.92\",\"lastInBytes\":4025679027,\"lastOutBytes\":330338106,\"opticalBiasCurrent\":42751,\"opticalReceivePower\":165,\"opticalTemperature\":48,\"opticalTransmitPower\":469,\"opticalVoltage\":3334,\"outBytes\":330338106,\"outFlow\":4833650,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":729234,\"inBytes\":2499822160,\"inFlow\":187551,\"lastChangeTime\":\"0:04:05.95\",\"lastInBytes\":2499822160,\"lastOutBytes\":3336997317,\"opticalBiasCurrent\":33479,\"opticalReceivePower\":457,\"opticalTemperature\":46,\"opticalTransmitPower\":597,\"opticalVoltage\":3318,\"outBytes\":3336997317,\"outFlow\":541683,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":5282372,\"inBytes\":2782730067,\"inFlow\":5114565,\"lastChangeTime\":\"353 days, 13:16:34.28\",\"lastInBytes\":2782730067,\"lastOutBytes\":3268564116,\"opticalBiasCurrent\":12621,\"opticalReceivePower\":139,\"opticalTemperature\":42,\"opticalTransmitPower\":272,\"opticalVoltage\":3325,\"outBytes\":3268564116,\"outFlow\":167806,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4308393,\"inBytes\":4128436312,\"inFlow\":4173216,\"lastChangeTime\":\"252 days, 10:10:11.19\",\"lastInBytes\":4128436312,\"lastOutBytes\":652203352,\"opticalBiasCurrent\":13036,\"opticalReceivePower\":187,\"opticalTemperature\":42,\"opticalTransmitPower\":255,\"opticalVoltage\":3310,\"outBytes\":652203352,\"outFlow\":135176,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6131327,\"inBytes\":3427971006,\"inFlow\":5943762,\"lastChangeTime\":\"269 days, 9:49:01.22\",\"lastInBytes\":3427971006,\"lastOutBytes\":4134817586,\"opticalBiasCurrent\":13513,\"opticalReceivePower\":140,\"opticalTemperature\":42,\"opticalTransmitPower\":238,\"opticalVoltage\":3333,\"outBytes\":4134817586,\"outFlow\":187564,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4782178,\"inBytes\":3719258552,\"inFlow\":4638558,\"lastChangeTime\":\"269 days, 10:03:41.89\",\"lastInBytes\":3719258552,\"lastOutBytes\":2752351073,\"opticalBiasCurrent\":13706,\"opticalReceivePower\":117,\"opticalTemperature\":43,\"opticalTransmitPower\":274,\"opticalVoltage\":3302,\"outBytes\":2752351073,\"outFlow\":143620,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8031244,\"inBytes\":3437726212,\"inFlow\":7795059,\"lastChangeTime\":\"310 days, 10:26:25.71\",\"lastInBytes\":3437726212,\"lastOutBytes\":60647949,\"opticalBiasCurrent\":14055,\"opticalReceivePower\":2,\"opticalTemperature\":43,\"opticalTransmitPower\":260,\"opticalVoltage\":3325,\"outBytes\":60647949,\"outFlow\":236184,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5839531,\"inBytes\":2720570863,\"inFlow\":5662031,\"lastChangeTime\":\"252 days, 12:28:48.02\",\"lastInBytes\":2720570863,\"lastOutBytes\":4030650834,\"opticalBiasCurrent\":13706,\"opticalReceivePower\":119,\"opticalTemperature\":43,\"opticalTransmitPower\":247,\"opticalVoltage\":3302,\"outBytes\":4030650834,\"outFlow\":177499,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8593935,\"inBytes\":2111569414,\"inFlow\":8344041,\"lastChangeTime\":\"252 days, 13:30:29.45\",\"lastInBytes\":2111569414,\"lastOutBytes\":591288901,\"opticalBiasCurrent\":13928,\"opticalReceivePower\":88,\"opticalTemperature\":44,\"opticalTransmitPower\":279,\"opticalVoltage\":3302,\"outBytes\":591288901,\"outFlow\":249894,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7492076,\"inBytes\":3184557762,\"inFlow\":7266408,\"lastChangeTime\":\"269 days, 10:14:06.79\",\"lastInBytes\":3184557762,\"lastOutBytes\":2665296604,\"opticalBiasCurrent\":14119,\"opticalReceivePower\":4,\"opticalTemperature\":45,\"opticalTransmitPower\":301,\"opticalVoltage\":3302,\"outBytes\":2665296604,\"outFlow\":225668,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7539544,\"inBytes\":2802802870,\"inFlow\":7312095,\"lastChangeTime\":\"269 days, 10:24:11.86\",\"lastInBytes\":2802802870,\"lastOutBytes\":781631843,\"opticalBiasCurrent\":13354,\"opticalReceivePower\":33,\"opticalTemperature\":43,\"opticalTransmitPower\":234,\"opticalVoltage\":3333,\"outBytes\":781631843,\"outFlow\":227448,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5896513,\"inBytes\":2357217240,\"inFlow\":5716675,\"lastChangeTime\":\"252 days, 12:42:54.15\",\"lastInBytes\":2357217240,\"lastOutBytes\":760955290,\"opticalBiasCurrent\":13800,\"opticalReceivePower\":177,\"opticalTemperature\":44,\"opticalTransmitPower\":266,\"opticalVoltage\":3294,\"outBytes\":760955290,\"outFlow\":179837,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2871080,\"inBytes\":2656743488,\"inFlow\":2780177,\"lastChangeTime\":\"252 days, 12:57:53.11\",\"lastInBytes\":2656743488,\"lastOutBytes\":3125181296,\"opticalBiasCurrent\":13289,\"opticalReceivePower\":61,\"opticalTemperature\":40,\"opticalTransmitPower\":286,\"opticalVoltage\":3333,\"outBytes\":3125181296,\"outFlow\":90903,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13730833,\"inBytes\":850500578,\"inFlow\":13225489,\"lastChangeTime\":\"353 days, 13:06:19.59\",\"lastInBytes\":850500578,\"lastOutBytes\":1056687026,\"opticalBiasCurrent\":13960,\"opticalReceivePower\":32,\"opticalTemperature\":43,\"opticalTransmitPower\":283,\"opticalVoltage\":3325,\"outBytes\":1056687026,\"outFlow\":505343,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10746412,\"inBytes\":164771174,\"inFlow\":10414803,\"lastChangeTime\":\"23 days, 0:04:47.75\",\"lastInBytes\":164771174,\"lastOutBytes\":3522941448,\"opticalBiasCurrent\":13770,\"opticalReceivePower\":263,\"opticalTemperature\":42,\"opticalTransmitPower\":274,\"opticalVoltage\":3333,\"outBytes\":3522941448,\"outFlow\":331609,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4830629,\"inBytes\":4027801702,\"inFlow\":4679988,\"lastChangeTime\":\"23 days, 0:04:41.42\",\"lastInBytes\":4027801702,\"lastOutBytes\":1245735114,\"opticalBiasCurrent\":13100,\"opticalReceivePower\":188,\"opticalTemperature\":42,\"opticalTransmitPower\":268,\"opticalVoltage\":3333,\"outBytes\":1245735114,\"outFlow\":150640,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7805240,\"inBytes\":143535747,\"inFlow\":7562280,\"lastChangeTime\":\"23 days, 1:25:00.17\",\"lastInBytes\":143535747,\"lastOutBytes\":547699493,\"opticalBiasCurrent\":12843,\"opticalReceivePower\":156,\"opticalTemperature\":42,\"opticalTransmitPower\":243,\"opticalVoltage\":3333,\"outBytes\":547699493,\"outFlow\":242960,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7235288,\"inBytes\":2699529233,\"inFlow\":210663,\"lastChangeTime\":\"252 days, 11:27:41.05\",\"lastInBytes\":2699529233,\"lastOutBytes\":1081373810,\"opticalBiasCurrent\":13003,\"opticalReceivePower\":150,\"opticalTemperature\":42,\"opticalTransmitPower\":252,\"opticalVoltage\":3302,\"outBytes\":1081373810,\"outFlow\":7024625,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3674174,\"inBytes\":2167089835,\"inFlow\":3559008,\"lastChangeTime\":\"411 days, 10:45:46.65\",\"lastInBytes\":2167089835,\"lastOutBytes\":329389224,\"opticalBiasCurrent\":12812,\"opticalReceivePower\":165,\"opticalTemperature\":43,\"opticalTransmitPower\":302,\"opticalVoltage\":3325,\"outBytes\":329389224,\"outFlow\":115165,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1923097,\"inBytes\":2158251989,\"inFlow\":1862428,\"lastChangeTime\":\"392 days, 0:44:52.25\",\"lastInBytes\":2158251989,\"lastOutBytes\":2922165036,\"opticalBiasCurrent\":12907,\"opticalReceivePower\":94,\"opticalTemperature\":41,\"opticalTransmitPower\":277,\"opticalVoltage\":3333,\"outBytes\":2922165036,\"outFlow\":60669,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":481824,\"inBytes\":3103304717,\"inFlow\":466348,\"lastChangeTime\":\"23 days, 0:07:50.16\",\"lastInBytes\":3103304717,\"lastOutBytes\":2759076109,\"opticalBiasCurrent\":12685,\"opticalReceivePower\":211,\"opticalTemperature\":41,\"opticalTransmitPower\":269,\"opticalVoltage\":3333,\"outBytes\":2759076109,\"outFlow\":15475,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":479733,\"inBytes\":3999169444,\"inFlow\":463971,\"lastChangeTime\":\"23 days, 3:10:07.38\",\"lastInBytes\":3999169444,\"lastOutBytes\":3480756332,\"opticalBiasCurrent\":13354,\"opticalReceivePower\":121,\"opticalTemperature\":42,\"opticalTransmitPower\":266,\"opticalVoltage\":3310,\"outBytes\":3480756332,\"outFlow\":15761,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":482379,\"inBytes\":328461345,\"inFlow\":466650,\"lastChangeTime\":\"23 days, 0:41:21.82\",\"lastInBytes\":328461345,\"lastOutBytes\":4121335310,\"opticalBiasCurrent\":12461,\"opticalReceivePower\":37,\"opticalTemperature\":39,\"opticalTransmitPower\":262,\"opticalVoltage\":3333,\"outBytes\":4121335310,\"outFlow\":15729,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":482002,\"inBytes\":1691582211,\"inFlow\":466204,\"lastChangeTime\":\"23 days, 0:07:24.94\",\"lastInBytes\":1691582211,\"lastOutBytes\":2112665192,\"opticalBiasCurrent\":13385,\"opticalReceivePower\":135,\"opticalTemperature\":39,\"opticalTransmitPower\":255,\"opticalVoltage\":3333,\"outBytes\":2112665192,\"outFlow\":15797,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1047,\"inFlow\":0,\"lastChangeTime\":\"2:45:10.53\",\"lastInBytes\":1047,\"lastOutBytes\":1425023,\"opticalBiasCurrent\":0,\"opticalReceivePower\":0,\"opticalTemperature\":32,\"opticalTransmitPower\":0,\"opticalVoltage\":3333,\"outBytes\":1425023,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":478869,\"inBytes\":1472005809,\"inFlow\":463371,\"lastChangeTime\":\"392 days, 1:36:13.97\",\"lastInBytes\":1472005809,\"lastOutBytes\":289811250,\"opticalBiasCurrent\":12876,\"opticalReceivePower\":21,\"opticalTemperature\":36,\"opticalTransmitPower\":263,\"opticalVoltage\":3333,\"outBytes\":289811250,\"outFlow\":15498,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":34572,\"inBytes\":3092326551,\"inFlow\":16600,\"lastChangeTime\":\"0:03:14.60\",\"lastInBytes\":3092326551,\"lastOutBytes\":1565566270,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1565566270,\"outFlow\":17971,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":21408275,\"inBytes\":2254768347,\"inFlow\":18976684,\"lastChangeTime\":\"0:03:04.89\",\"lastInBytes\":2254768347,\"lastOutBytes\":4028406410,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4028406410,\"outFlow\":2431590,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":38097,\"inBytes\":1492647543,\"inFlow\":19180,\"lastChangeTime\":\"0:03:06.05\",\"lastInBytes\":1492647543,\"lastOutBytes\":2232915925,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2232915925,\"outFlow\":18917,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":467,\"inBytes\":479424698,\"inFlow\":9,\"lastChangeTime\":\"41 days, 14:24:08.79\",\"lastInBytes\":479424698,\"lastOutBytes\":2325289357,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2325289357,\"outFlow\":457,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9848666,\"inBytes\":2995860906,\"inFlow\":157693,\"lastChangeTime\":\"47 days, 7:08:29.22\",\"lastInBytes\":2995860906,\"lastOutBytes\":3533741712,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3533741712,\"outFlow\":9690972,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1860954,\"inBytes\":3021495261,\"inFlow\":935596,\"lastChangeTime\":\"41 days, 12:15:32.39\",\"lastInBytes\":3021495261,\"lastOutBytes\":1998003138,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1998003138,\"outFlow\":925358,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9157865,\"inBytes\":3755789888,\"inFlow\":970286,\"lastChangeTime\":\"421 days, 0:41:16.04\",\"lastInBytes\":3755789888,\"lastOutBytes\":2407911064,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2407911064,\"outFlow\":8187579,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6457682,\"inBytes\":3769546204,\"inFlow\":666564,\"lastChangeTime\":\"313 days, 6:00:08.77\",\"lastInBytes\":3769546204,\"lastOutBytes\":2227823819,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2227823819,\"outFlow\":5791118,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6263330,\"inBytes\":393153545,\"inFlow\":672355,\"lastChangeTime\":\"25 days, 12:49:53.24\",\"lastInBytes\":393153545,\"lastOutBytes\":501766626,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":501766626,\"outFlow\":5590974,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1082,\"inBytes\":2569587972,\"inFlow\":265,\"lastChangeTime\":\"407 days, 14:57:16.71\",\"lastInBytes\":2569587972,\"lastOutBytes\":3847081037,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3847081037,\"outFlow\":816,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":746,\"inBytes\":3622772138,\"inFlow\":176,\"lastChangeTime\":\"442 days, 9:41:08.24\",\"lastInBytes\":3622772138,\"lastOutBytes\":1859534801,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1859534801,\"outFlow\":570,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":445,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"300 days, 13:24:50.57\",\"lastInBytes\":0,\"lastOutBytes\":2306301430,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2306301430,\"outFlow\":445,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":459310,\"inBytes\":2714963111,\"inFlow\":3848,\"lastChangeTime\":\"417 days, 23:00:47.06\",\"lastInBytes\":2714963111,\"lastOutBytes\":2442777251,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2442777251,\"outFlow\":455462,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2689,\"inBytes\":417843938,\"inFlow\":734,\"lastChangeTime\":\"33 days, 22:10:42.97\",\"lastInBytes\":417843938,\"lastOutBytes\":282061304,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":282061304,\"outFlow\":1955,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":35,\"inBytes\":25553212,\"inFlow\":15,\"lastChangeTime\":\"33 days, 22:12:54.38\",\"lastInBytes\":25553212,\"lastOutBytes\":30516930,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":30516930,\"outFlow\":19,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:11.504010000\"}}", + "lastDiagTime": "2026-02-02 14:37:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937689663395004", + "createdBy": "2", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"16\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309617\",\"inUnknownProtos\":\"4069876515\",\"index\":\"634\",\"lastChange\":\"0:01:15.07\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:57:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"657297195\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124239792\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":276931,\"inBytes\":2228889767,\"inFlow\":269975,\"lastChangeTime\":\"0:01:17.62\",\"lastInBytes\":2228889767,\"lastOutBytes\":3994115530,\"outBytes\":3994115530,\"outFlow\":6955,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":278869,\"inBytes\":263776816,\"inFlow\":271364,\"lastChangeTime\":\"109 days, 11:03:55.88\",\"lastInBytes\":263776816,\"lastOutBytes\":3737796371,\"outBytes\":3737796371,\"outFlow\":7504,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":277192,\"inBytes\":3780938577,\"inFlow\":270214,\"lastChangeTime\":\"0:01:16.89\",\"lastInBytes\":3780938577,\"lastOutBytes\":3839434946,\"outBytes\":3839434946,\"outFlow\":6977,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":277067,\"inBytes\":3478226319,\"inFlow\":270109,\"lastChangeTime\":\"0:01:16.90\",\"lastInBytes\":3478226319,\"lastOutBytes\":3282875851,\"outBytes\":3282875851,\"outFlow\":6957,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":278902,\"inBytes\":1428301961,\"inFlow\":271864,\"lastChangeTime\":\"0:01:16.90\",\"lastInBytes\":1428301961,\"lastOutBytes\":1218267479,\"outBytes\":1218267479,\"outFlow\":7038,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414880,\"inBytes\":1593997513,\"inFlow\":404725,\"lastChangeTime\":\"0:01:16.89\",\"lastInBytes\":1593997513,\"lastOutBytes\":4069876515,\"outBytes\":4069876515,\"outFlow\":10154,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":415611,\"inBytes\":3176281997,\"inFlow\":405281,\"lastChangeTime\":\"0:01:16.92\",\"lastInBytes\":3176281997,\"lastOutBytes\":1788219350,\"outBytes\":1788219350,\"outFlow\":10330,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414973,\"inBytes\":1813661732,\"inFlow\":404823,\"lastChangeTime\":\"286 days, 15:04:59.81\",\"lastInBytes\":1813661732,\"lastOutBytes\":1541934186,\"outBytes\":1541934186,\"outFlow\":10149,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":388942,\"inBytes\":1647822504,\"inFlow\":379351,\"lastChangeTime\":\"16 days, 23:52:37.65\",\"lastInBytes\":1647822504,\"lastOutBytes\":2487552555,\"outBytes\":2487552555,\"outFlow\":9590,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":389074,\"inBytes\":1197825588,\"inFlow\":379547,\"lastChangeTime\":\"16 days, 23:55:37.35\",\"lastInBytes\":1197825588,\"lastOutBytes\":2062006169,\"outBytes\":2062006169,\"outFlow\":9526,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":259668,\"inBytes\":1473341474,\"inFlow\":253182,\"lastChangeTime\":\"16 days, 23:54:45.78\",\"lastInBytes\":1473341474,\"lastOutBytes\":2242806229,\"outBytes\":2242806229,\"outFlow\":6485,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":259558,\"inBytes\":2155278317,\"inFlow\":253301,\"lastChangeTime\":\"16 days, 23:53:55.10\",\"lastInBytes\":2155278317,\"lastOutBytes\":4110044867,\"outBytes\":4110044867,\"outFlow\":6256,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":106255895,\"inFlow\":0,\"lastChangeTime\":\"114 days, 22:43:13.22\",\"lastInBytes\":106255895,\"lastOutBytes\":1920887429,\"outBytes\":1920887429,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":293561,\"inFlow\":0,\"lastChangeTime\":\"114 days, 22:41:24.51\",\"lastInBytes\":293561,\"lastOutBytes\":10139862,\"outBytes\":10139862,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":562637,\"inBytes\":2069499789,\"inFlow\":548820,\"lastChangeTime\":\"114 days, 22:44:30.66\",\"lastInBytes\":2069499789,\"lastOutBytes\":3003410140,\"outBytes\":3003410140,\"outFlow\":13816,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":148,\"inBytes\":761559424,\"inFlow\":1,\"lastChangeTime\":\"114 days, 22:56:59.40\",\"lastInBytes\":761559424,\"lastOutBytes\":1099679319,\"outBytes\":1099679319,\"outFlow\":147,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4596236,\"inBytes\":752132840,\"inFlow\":117468,\"lastChangeTime\":\"101 days, 3:33:44.05\",\"lastInBytes\":752132840,\"lastOutBytes\":4072335382,\"outBytes\":4072335382,\"outFlow\":4478768,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.295766000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362112", + "createdBy": "2", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1005040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309792\",\"inUnknownProtos\":\"199626998\",\"index\":\"634\",\"lastChange\":\"0:01:18.05\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:cf:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"362133891\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124269191\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":388905,\"inBytes\":4232610223,\"inFlow\":379414,\"lastChangeTime\":\"0:01:19.76\",\"lastInBytes\":4232610223,\"lastOutBytes\":1265438299,\"outBytes\":1265438299,\"outFlow\":9490,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":388915,\"inBytes\":3923288623,\"inFlow\":379427,\"lastChangeTime\":\"0:01:19.76\",\"lastInBytes\":3923288623,\"lastOutBytes\":3294015829,\"outBytes\":3294015829,\"outFlow\":9488,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":2714728,\"inBytes\":2505019471,\"inFlow\":404599,\"lastChangeTime\":\"0:01:20.51\",\"lastInBytes\":2505019471,\"lastOutBytes\":362690344,\"outBytes\":362690344,\"outFlow\":2310129,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414795,\"inBytes\":1929342577,\"inFlow\":404516,\"lastChangeTime\":\"153 days, 15:39:59.98\",\"lastInBytes\":1929342577,\"lastOutBytes\":796960375,\"outBytes\":796960375,\"outFlow\":10278,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414396,\"inBytes\":1628995028,\"inFlow\":404360,\"lastChangeTime\":\"0:01:20.52\",\"lastInBytes\":1628995028,\"lastOutBytes\":273150503,\"outBytes\":273150503,\"outFlow\":10036,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414449,\"inBytes\":2706956042,\"inFlow\":404357,\"lastChangeTime\":\"0:01:19.73\",\"lastInBytes\":2706956042,\"lastOutBytes\":199626998,\"outBytes\":199626998,\"outFlow\":10092,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414966,\"inBytes\":2142556272,\"inFlow\":404816,\"lastChangeTime\":\"0:01:19.75\",\"lastInBytes\":2142556272,\"lastOutBytes\":2949133819,\"outBytes\":2949133819,\"outFlow\":10150,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414907,\"inBytes\":435961389,\"inFlow\":404671,\"lastChangeTime\":\"0:01:19.74\",\"lastInBytes\":435961389,\"lastOutBytes\":3601769798,\"outBytes\":3601769798,\"outFlow\":10236,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":388851,\"inBytes\":1082272305,\"inFlow\":379355,\"lastChangeTime\":\"0:01:19.76\",\"lastInBytes\":1082272305,\"lastOutBytes\":3263469109,\"outBytes\":3263469109,\"outFlow\":9495,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":148,\"inBytes\":760043757,\"inFlow\":1,\"lastChangeTime\":\"0:01:19.75\",\"lastInBytes\":760043757,\"lastOutBytes\":1050758546,\"outBytes\":1050758546,\"outFlow\":147,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3747813,\"inBytes\":931373806,\"inFlow\":94563,\"lastChangeTime\":\"0:01:18.05\",\"lastInBytes\":931373806,\"lastOutBytes\":201767998,\"outBytes\":201767998,\"outFlow\":3653250,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.344917000\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362113", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309942\",\"inUnknownProtos\":\"697609661\",\"index\":\"635\",\"lastChange\":\"0:01:20.28\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:d7:cb\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3983420949\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124233078\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":414838,\"inBytes\":1828881650,\"inFlow\":404653,\"lastChangeTime\":\"253 days, 22:19:05.29\",\"lastInBytes\":1828881650,\"lastOutBytes\":1187462935,\"outBytes\":1187462935,\"outFlow\":10184,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":414799,\"inBytes\":724543556,\"inFlow\":404617,\"lastChangeTime\":\"253 days, 22:18:10.42\",\"lastInBytes\":724543556,\"lastOutBytes\":2974445270,\"outBytes\":2974445270,\"outFlow\":10181,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414836,\"inBytes\":3758550062,\"inFlow\":404704,\"lastChangeTime\":\"253 days, 22:18:12.92\",\"lastInBytes\":3758550062,\"lastOutBytes\":3110919606,\"outBytes\":3110919606,\"outFlow\":10132,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416216,\"inBytes\":3541834214,\"inFlow\":406030,\"lastChangeTime\":\"253 days, 22:18:12.68\",\"lastInBytes\":3541834214,\"lastOutBytes\":4156509498,\"outBytes\":4156509498,\"outFlow\":10186,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":453987,\"inBytes\":1738035290,\"inFlow\":444653,\"lastChangeTime\":\"253 days, 22:18:02.64\",\"lastInBytes\":1738035290,\"lastOutBytes\":4191721040,\"outBytes\":4191721040,\"outFlow\":9334,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419143,\"inBytes\":2173722347,\"inFlow\":410626,\"lastChangeTime\":\"253 days, 22:18:05.04\",\"lastInBytes\":2173722347,\"lastOutBytes\":697609661,\"outBytes\":697609661,\"outFlow\":8516,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":276886,\"inBytes\":392625325,\"inFlow\":270023,\"lastChangeTime\":\"253 days, 22:18:26.02\",\"lastInBytes\":392625325,\"lastOutBytes\":1956763226,\"outBytes\":1956763226,\"outFlow\":6863,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1041270,\"inBytes\":2738134665,\"inFlow\":1016939,\"lastChangeTime\":\"253 days, 22:18:11.97\",\"lastInBytes\":2738134665,\"lastOutBytes\":857388931,\"outBytes\":857388931,\"outFlow\":24330,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":259858,\"inBytes\":230606952,\"inFlow\":253262,\"lastChangeTime\":\"253 days, 22:18:23.32\",\"lastInBytes\":230606952,\"lastOutBytes\":1283163858,\"outBytes\":1283163858,\"outFlow\":6596,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":585100,\"inBytes\":3947303903,\"inFlow\":570064,\"lastChangeTime\":\"253 days, 22:18:11.30\",\"lastInBytes\":3947303903,\"lastOutBytes\":2723556778,\"outBytes\":2723556778,\"outFlow\":15036,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":259624,\"inBytes\":2976390925,\"inFlow\":253196,\"lastChangeTime\":\"253 days, 22:18:26.34\",\"lastInBytes\":2976390925,\"lastOutBytes\":3789651587,\"outBytes\":3789651587,\"outFlow\":6428,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":259355,\"inBytes\":2701761665,\"inFlow\":252887,\"lastChangeTime\":\"253 days, 22:18:29.01\",\"lastInBytes\":2701761665,\"lastOutBytes\":1124331634,\"outBytes\":1124331634,\"outFlow\":6467,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":78021,\"inFlow\":0,\"lastChangeTime\":\"16 days, 23:03:25.14\",\"lastInBytes\":78021,\"lastOutBytes\":770754,\"outBytes\":770754,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":148,\"inBytes\":760040287,\"inFlow\":1,\"lastChangeTime\":\"16 days, 23:05:35.76\",\"lastInBytes\":760040287,\"lastOutBytes\":1040989149,\"outBytes\":1040989149,\"outFlow\":147,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5325311,\"inBytes\":344484215,\"inFlow\":131024,\"lastChangeTime\":\"16 days, 23:05:25.73\",\"lastInBytes\":344484215,\"lastOutBytes\":2730691573,\"outBytes\":2730691573,\"outFlow\":5194286,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.228821000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362114", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1005040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309997\",\"inUnknownProtos\":\"1360645519\",\"index\":\"635\",\"lastChange\":\"0:01:20.43\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:5d:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4136208082\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124221982\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":413405,\"inBytes\":264114908,\"inFlow\":403471,\"lastChangeTime\":\"154 days, 9:16:18.10\",\"lastInBytes\":264114908,\"lastOutBytes\":918080957,\"outBytes\":918080957,\"outFlow\":9933,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1105419,\"inBytes\":2520485168,\"inFlow\":1079166,\"lastChangeTime\":\"222 days, 14:16:43.26\",\"lastInBytes\":2520485168,\"lastOutBytes\":155081285,\"outBytes\":155081285,\"outFlow\":26253,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":415014,\"inBytes\":3546156820,\"inFlow\":404964,\"lastChangeTime\":\"222 days, 14:16:45.27\",\"lastInBytes\":3546156820,\"lastOutBytes\":3325845879,\"outBytes\":3325845879,\"outFlow\":10050,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414568,\"inBytes\":3552935050,\"inFlow\":404555,\"lastChangeTime\":\"222 days, 14:16:46.72\",\"lastInBytes\":3552935050,\"lastOutBytes\":2153922637,\"outBytes\":2153922637,\"outFlow\":10012,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414094,\"inBytes\":3863119660,\"inFlow\":403911,\"lastChangeTime\":\"222 days, 14:16:47.60\",\"lastInBytes\":3863119660,\"lastOutBytes\":1550164542,\"outBytes\":1550164542,\"outFlow\":10183,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":499065,\"inBytes\":2897757412,\"inFlow\":488710,\"lastChangeTime\":\"16 days, 23:04:57.46\",\"lastInBytes\":2897757412,\"lastOutBytes\":1360645519,\"outBytes\":1360645519,\"outFlow\":10355,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":485011,\"inBytes\":2318179284,\"inFlow\":474926,\"lastChangeTime\":\"16 days, 23:05:00.49\",\"lastInBytes\":2318179284,\"lastOutBytes\":3131665817,\"outBytes\":3131665817,\"outFlow\":10085,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414905,\"inBytes\":3390879003,\"inFlow\":404791,\"lastChangeTime\":\"222 days, 14:16:47.19\",\"lastInBytes\":3390879003,\"lastOutBytes\":2802659739,\"outBytes\":2802659739,\"outFlow\":10113,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":12878,\"inFlow\":0,\"lastChangeTime\":\"16 days, 23:06:51.45\",\"lastInBytes\":12878,\"lastOutBytes\":647107,\"outBytes\":647107,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":159,\"inBytes\":759955756,\"inFlow\":1,\"lastChangeTime\":\"16 days, 23:06:40.90\",\"lastInBytes\":759955756,\"lastOutBytes\":1037880975,\"outBytes\":1037880975,\"outFlow\":157,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3926730,\"inBytes\":1947695823,\"inFlow\":94871,\"lastChangeTime\":\"16 days, 23:06:33.77\",\"lastInBytes\":1947695823,\"lastOutBytes\":437311757,\"outBytes\":437311757,\"outFlow\":3831859,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.227005000\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362115", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"29\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"3776123\",\"inUnknownProtos\":\"1856592902\",\"index\":\"635\",\"lastChange\":\"0:01:18.45\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:f1:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"150580105\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"116464137\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":413387,\"inBytes\":1072900016,\"inFlow\":404466,\"lastChangeTime\":\"153 days, 14:21:02.54\",\"lastInBytes\":1072900016,\"lastOutBytes\":2409469436,\"outBytes\":2409469436,\"outFlow\":8920,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":563218,\"inBytes\":4194083894,\"inFlow\":549469,\"lastChangeTime\":\"221 days, 23:08:57.84\",\"lastInBytes\":4194083894,\"lastOutBytes\":4052335894,\"outBytes\":4052335894,\"outFlow\":13748,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":980527,\"inBytes\":1575191993,\"inFlow\":957393,\"lastChangeTime\":\"154 days, 8:59:09.72\",\"lastInBytes\":1575191993,\"lastOutBytes\":2812637445,\"outBytes\":2812637445,\"outFlow\":23134,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":415102,\"inBytes\":3123800898,\"inFlow\":404962,\"lastChangeTime\":\"0:01:20.84\",\"lastInBytes\":3123800898,\"lastOutBytes\":1597070616,\"outBytes\":1597070616,\"outFlow\":10140,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":417189,\"inBytes\":1021901363,\"inFlow\":406971,\"lastChangeTime\":\"153 days, 14:04:58.93\",\"lastInBytes\":1021901363,\"lastOutBytes\":2035402003,\"outBytes\":2035402003,\"outFlow\":10218,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414909,\"inBytes\":277607261,\"inFlow\":404765,\"lastChangeTime\":\"0:01:20.84\",\"lastInBytes\":277607261,\"lastOutBytes\":1856592902,\"outBytes\":1856592902,\"outFlow\":10144,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":417169,\"inBytes\":4021937544,\"inFlow\":406931,\"lastChangeTime\":\"0:01:20.22\",\"lastInBytes\":4021937544,\"lastOutBytes\":3870313537,\"outBytes\":3870313537,\"outFlow\":10238,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":416092,\"inBytes\":3074543651,\"inFlow\":405972,\"lastChangeTime\":\"0:01:20.22\",\"lastInBytes\":3074543651,\"lastOutBytes\":2900500916,\"outBytes\":2900500916,\"outFlow\":10120,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414744,\"inBytes\":516069560,\"inFlow\":404640,\"lastChangeTime\":\"0:01:20.21\",\"lastInBytes\":516069560,\"lastOutBytes\":19549254,\"outBytes\":19549254,\"outFlow\":10104,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":288043,\"inBytes\":1844058846,\"inFlow\":279997,\"lastChangeTime\":\"16 days, 22:06:29.60\",\"lastInBytes\":1844058846,\"lastOutBytes\":2018133173,\"outBytes\":2018133173,\"outFlow\":8046,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":913529,\"inBytes\":1229437540,\"inFlow\":895962,\"lastChangeTime\":\"0:01:20.84\",\"lastInBytes\":1229437540,\"lastOutBytes\":2417005139,\"outBytes\":2417005139,\"outFlow\":17566,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":432910,\"inBytes\":3687828276,\"inFlow\":423541,\"lastChangeTime\":\"0:01:20.85\",\"lastInBytes\":3687828276,\"lastOutBytes\":458355810,\"outBytes\":458355810,\"outFlow\":9369,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":899076,\"inBytes\":1061110738,\"inFlow\":880494,\"lastChangeTime\":\"0:01:21.32\",\"lastInBytes\":1061110738,\"lastOutBytes\":2263620595,\"outBytes\":2263620595,\"outFlow\":18582,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1237114,\"inFlow\":0,\"lastChangeTime\":\"100 days, 23:50:38.89\",\"lastInBytes\":1237114,\"lastOutBytes\":122843961,\"outBytes\":122843961,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":158,\"inBytes\":757372626,\"inFlow\":1,\"lastChangeTime\":\"101 days, 0:02:11.90\",\"lastInBytes\":757372626,\"lastOutBytes\":1115772383,\"outBytes\":1115772383,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7010488,\"inBytes\":488712841,\"inFlow\":166116,\"lastChangeTime\":\"57 days, 23:13:04.95\",\"lastInBytes\":488712841,\"lastOutBytes\":683504260,\"outBytes\":683504260,\"outFlow\":6844371,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.246853000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362116", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309907\",\"inUnknownProtos\":\"1698526409\",\"index\":\"635\",\"lastChange\":\"0:01:21.66\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:1c:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"257037857\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124175662\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":414858,\"inBytes\":1280909959,\"inFlow\":404704,\"lastChangeTime\":\"0:01:23.72\",\"lastInBytes\":1280909959,\"lastOutBytes\":2355105983,\"outBytes\":2355105983,\"outFlow\":10153,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":414900,\"inBytes\":1700325004,\"inFlow\":404788,\"lastChangeTime\":\"222 days, 12:47:12.60\",\"lastInBytes\":1700325004,\"lastOutBytes\":3249511870,\"outBytes\":3249511870,\"outFlow\":10112,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414734,\"inBytes\":3601434321,\"inFlow\":404615,\"lastChangeTime\":\"222 days, 12:47:19.04\",\"lastInBytes\":3601434321,\"lastOutBytes\":2769847756,\"outBytes\":2769847756,\"outFlow\":10118,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":390357,\"inBytes\":1077549227,\"inFlow\":380327,\"lastChangeTime\":\"154 days, 7:46:11.59\",\"lastInBytes\":1077549227,\"lastOutBytes\":2863847806,\"outBytes\":2863847806,\"outFlow\":10030,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":259897,\"inBytes\":2455052676,\"inFlow\":253293,\"lastChangeTime\":\"0:01:23.71\",\"lastInBytes\":2455052676,\"lastOutBytes\":2896875167,\"outBytes\":2896875167,\"outFlow\":6603,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1035271,\"inBytes\":3368346935,\"inFlow\":1010771,\"lastChangeTime\":\"222 days, 12:47:19.52\",\"lastInBytes\":3368346935,\"lastOutBytes\":1698266336,\"outBytes\":1698266336,\"outFlow\":24499,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":436619,\"inBytes\":595093426,\"inFlow\":427771,\"lastChangeTime\":\"0:01:24.49\",\"lastInBytes\":595093426,\"lastOutBytes\":4268385425,\"outBytes\":4268385425,\"outFlow\":8847,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":427653,\"inBytes\":52358714,\"inFlow\":418993,\"lastChangeTime\":\"0:01:24.48\",\"lastInBytes\":52358714,\"lastOutBytes\":128256125,\"outBytes\":128256125,\"outFlow\":8660,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":624184,\"inBytes\":326070938,\"inFlow\":608228,\"lastChangeTime\":\"221 days, 21:22:22.53\",\"lastInBytes\":326070938,\"lastOutBytes\":3218564112,\"outBytes\":3218564112,\"outFlow\":15955,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":486958,\"inBytes\":4118629922,\"inFlow\":474967,\"lastChangeTime\":\"222 days, 12:47:10.13\",\"lastInBytes\":4118629922,\"lastOutBytes\":2377036473,\"outBytes\":2377036473,\"outFlow\":11991,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":159,\"inBytes\":759860896,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.71\",\"lastInBytes\":759860896,\"lastOutBytes\":1022839148,\"outBytes\":1022839148,\"outFlow\":157,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4779729,\"inBytes\":1564749834,\"inFlow\":116875,\"lastChangeTime\":\"0:01:21.65\",\"lastInBytes\":1564749834,\"lastOutBytes\":664316861,\"outBytes\":664316861,\"outFlow\":4662854,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.343333000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362117", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309799\",\"inUnknownProtos\":\"54235458\",\"index\":\"635\",\"lastChange\":\"0:01:13.85\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:83:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"363444331\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124125814\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":1106423,\"inBytes\":463979887,\"inFlow\":1080259,\"lastChangeTime\":\"0:01:16.49\",\"lastInBytes\":463979887,\"lastOutBytes\":3491503734,\"outBytes\":3491503734,\"outFlow\":26164,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":916391,\"inBytes\":3042572451,\"inFlow\":897716,\"lastChangeTime\":\"0:01:16.50\",\"lastInBytes\":3042572451,\"lastOutBytes\":3875699757,\"outBytes\":3875699757,\"outFlow\":18675,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":907796,\"inBytes\":3042160546,\"inFlow\":889513,\"lastChangeTime\":\"153 days, 12:11:02.15\",\"lastInBytes\":3042160546,\"lastOutBytes\":797127193,\"outBytes\":797127193,\"outFlow\":18282,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1119585,\"inBytes\":3893184679,\"inFlow\":1093533,\"lastChangeTime\":\"154 days, 6:44:38.92\",\"lastInBytes\":3893184679,\"lastOutBytes\":2116039972,\"outBytes\":2116039972,\"outFlow\":26051,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":260023,\"inBytes\":903259122,\"inFlow\":253178,\"lastChangeTime\":\"0:01:16.49\",\"lastInBytes\":903259122,\"lastOutBytes\":1689073179,\"outBytes\":1689073179,\"outFlow\":6844,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":388758,\"inBytes\":1422124537,\"inFlow\":379294,\"lastChangeTime\":\"0:01:15.88\",\"lastInBytes\":1422124537,\"lastOutBytes\":54141856,\"outBytes\":54141856,\"outFlow\":9463,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":398601,\"inBytes\":3299665682,\"inFlow\":390509,\"lastChangeTime\":\"0:01:16.50\",\"lastInBytes\":3299665682,\"lastOutBytes\":3961844518,\"outBytes\":3961844518,\"outFlow\":8091,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":964212,\"inBytes\":2458053016,\"inFlow\":941382,\"lastChangeTime\":\"154 days, 6:44:26.49\",\"lastInBytes\":2458053016,\"lastOutBytes\":3987352841,\"outBytes\":3987352841,\"outFlow\":22830,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":426806,\"inBytes\":1687431453,\"inFlow\":418347,\"lastChangeTime\":\"0:01:16.49\",\"lastInBytes\":1687431453,\"lastOutBytes\":3644797431,\"outBytes\":3644797431,\"outFlow\":8458,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414830,\"inBytes\":2870560029,\"inFlow\":404672,\"lastChangeTime\":\"0:01:15.89\",\"lastInBytes\":2870560029,\"lastOutBytes\":20328762,\"outBytes\":20328762,\"outFlow\":10158,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":415018,\"inBytes\":995116112,\"inFlow\":404708,\"lastChangeTime\":\"0:01:15.90\",\"lastInBytes\":995116112,\"lastOutBytes\":4189819564,\"outBytes\":4189819564,\"outFlow\":10309,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":159,\"inBytes\":759758132,\"inFlow\":1,\"lastChangeTime\":\"0:01:15.89\",\"lastInBytes\":759758132,\"lastOutBytes\":998514368,\"outBytes\":998514368,\"outFlow\":158,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":7013211,\"inBytes\":3263477202,\"inFlow\":163974,\"lastChangeTime\":\"0:01:13.85\",\"lastInBytes\":3263477202,\"lastOutBytes\":2319983865,\"outBytes\":2319983865,\"outFlow\":6849236,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:04.228008000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362118", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309801\",\"inUnknownProtos\":\"3503923932\",\"index\":\"635\",\"lastChange\":\"16 days, 20:57:10.32\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:89:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3320804690\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124135288\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:08\",\"info\":{\"portInfoList\":[{\"flow\":1108919,\"inBytes\":1685968405,\"inFlow\":1082452,\"lastChangeTime\":\"222 days, 11:56:43.19\",\"lastInBytes\":1685968405,\"lastOutBytes\":3094180060,\"outBytes\":3094180060,\"outFlow\":26467,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":398738,\"inBytes\":4130786062,\"inFlow\":390510,\"lastChangeTime\":\"0:01:19.97\",\"lastInBytes\":4130786062,\"lastOutBytes\":1081023524,\"outBytes\":1081023524,\"outFlow\":8227,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414798,\"inBytes\":326619019,\"inFlow\":406058,\"lastChangeTime\":\"0:01:19.97\",\"lastInBytes\":326619019,\"lastOutBytes\":1355331047,\"outBytes\":1355331047,\"outFlow\":8740,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":389693,\"inBytes\":4212801890,\"inFlow\":380280,\"lastChangeTime\":\"222 days, 11:56:45.25\",\"lastInBytes\":4212801890,\"lastOutBytes\":2332474701,\"outBytes\":2332474701,\"outFlow\":9413,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":389044,\"inBytes\":4222181239,\"inFlow\":379603,\"lastChangeTime\":\"222 days, 11:56:40.62\",\"lastInBytes\":4222181239,\"lastOutBytes\":972645316,\"outBytes\":972645316,\"outFlow\":9440,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1078881,\"inBytes\":24434810,\"inFlow\":1053942,\"lastChangeTime\":\"154 days, 6:56:05.84\",\"lastInBytes\":24434810,\"lastOutBytes\":3503669439,\"outBytes\":3503669439,\"outFlow\":24939,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":965808,\"inBytes\":651605411,\"inFlow\":943047,\"lastChangeTime\":\"154 days, 6:55:44.27\",\"lastInBytes\":651605411,\"lastOutBytes\":16610660,\"outBytes\":16610660,\"outFlow\":22760,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":388531,\"inBytes\":1828801388,\"inFlow\":379002,\"lastChangeTime\":\"222 days, 11:56:42.10\",\"lastInBytes\":1828801388,\"lastOutBytes\":2392692524,\"outBytes\":2392692524,\"outFlow\":9528,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106209,\"inBytes\":1751909926,\"inFlow\":1080118,\"lastChangeTime\":\"0:01:19.18\",\"lastInBytes\":1751909926,\"lastOutBytes\":241048177,\"outBytes\":241048177,\"outFlow\":26091,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5062,\"inFlow\":0,\"lastChangeTime\":\"16 days, 20:57:11.11\",\"lastInBytes\":5062,\"lastOutBytes\":68391,\"outBytes\":68391,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":157,\"inBytes\":759761418,\"inFlow\":1,\"lastChangeTime\":\"16 days, 20:57:10.32\",\"lastInBytes\":759761418,\"lastOutBytes\":1004521622,\"outBytes\":1004521622,\"outFlow\":155,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6130170,\"inBytes\":2409231540,\"inFlow\":148661,\"lastChangeTime\":\"16 days, 20:57:18.67\",\"lastInBytes\":2409231540,\"lastOutBytes\":1685263284,\"outBytes\":1685263284,\"outFlow\":5981509,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.228810000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362119", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1005040010", + "name": "H3C前端交换机9", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309741\",\"inUnknownProtos\":\"2739641697\",\"index\":\"635\",\"lastChange\":\"0:01:21.09\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:af:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1606540013\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124113494\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:08\",\"info\":{\"portInfoList\":[{\"flow\":586009,\"inBytes\":293548635,\"inFlow\":571194,\"lastChangeTime\":\"221 days, 20:29:51.92\",\"lastInBytes\":293548635,\"lastOutBytes\":4275405384,\"outBytes\":4275405384,\"outFlow\":14815,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":389204,\"inBytes\":1071273256,\"inFlow\":379689,\"lastChangeTime\":\"0:01:23.10\",\"lastInBytes\":1071273256,\"lastOutBytes\":3933538710,\"outBytes\":3933538710,\"outFlow\":9514,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":388836,\"inBytes\":2600845217,\"inFlow\":379338,\"lastChangeTime\":\"0:01:23.09\",\"lastInBytes\":2600845217,\"lastOutBytes\":2477834074,\"outBytes\":2477834074,\"outFlow\":9498,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":388467,\"inBytes\":3510188739,\"inFlow\":379007,\"lastChangeTime\":\"153 days, 11:46:58.52\",\"lastInBytes\":3510188739,\"lastOutBytes\":409864756,\"outBytes\":409864756,\"outFlow\":9460,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":390012,\"inBytes\":3482826831,\"inFlow\":380500,\"lastChangeTime\":\"0:01:23.10\",\"lastInBytes\":3482826831,\"lastOutBytes\":1593541448,\"outBytes\":1593541448,\"outFlow\":9511,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":388052,\"inBytes\":4217330431,\"inFlow\":378585,\"lastChangeTime\":\"0:01:23.08\",\"lastInBytes\":4217330431,\"lastOutBytes\":2739541092,\"outBytes\":2739541092,\"outFlow\":9466,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":388595,\"inBytes\":971381132,\"inFlow\":379056,\"lastChangeTime\":\"153 days, 11:32:05.79\",\"lastInBytes\":971381132,\"lastOutBytes\":1222921066,\"outBytes\":1222921066,\"outFlow\":9538,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":26265253,\"inBytes\":3228015292,\"inFlow\":976012,\"lastChangeTime\":\"153 days, 11:53:16.73\",\"lastInBytes\":3228015292,\"lastOutBytes\":3970410959,\"outBytes\":3970410959,\"outFlow\":25289241,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414806,\"inBytes\":2289277438,\"inFlow\":404661,\"lastChangeTime\":\"153 days, 11:37:02.20\",\"lastInBytes\":2289277438,\"lastOutBytes\":1272171591,\"outBytes\":1272171591,\"outFlow\":10145,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":472294,\"inBytes\":528180794,\"inFlow\":461268,\"lastChangeTime\":\"0:01:26.70\",\"lastInBytes\":528180794,\"lastOutBytes\":3830069730,\"outBytes\":3830069730,\"outFlow\":11025,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1066680,\"inBytes\":3279992557,\"inFlow\":1041933,\"lastChangeTime\":\"154 days, 6:34:47.82\",\"lastInBytes\":3279992557,\"lastOutBytes\":265879424,\"outBytes\":265879424,\"outFlow\":24747,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":411545,\"inBytes\":1465920814,\"inFlow\":403662,\"lastChangeTime\":\"0:01:23.67\",\"lastInBytes\":1465920814,\"lastOutBytes\":444956743,\"outBytes\":444956743,\"outFlow\":7883,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":20965783,\"inFlow\":0,\"lastChangeTime\":\"291 days, 22:40:38.30\",\"lastInBytes\":20965783,\"lastOutBytes\":1480780187,\"outBytes\":1480780187,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":156,\"inBytes\":764174457,\"inFlow\":1,\"lastChangeTime\":\"47 days, 22:41:50.07\",\"lastInBytes\":764174457,\"lastOutBytes\":1146841482,\"outBytes\":1146841482,\"outFlow\":155,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6515248,\"inBytes\":1761776051,\"inFlow\":157854,\"lastChangeTime\":\"16 days, 20:45:57.70\",\"lastInBytes\":1761776051,\"lastOutBytes\":3777231071,\"outBytes\":3777231071,\"outFlow\":6357393,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.244677000\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362120", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040011", + "name": "H3C前端交换机10", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"292828\",\"inUnknownProtos\":\"2970179890\",\"index\":\"635\",\"lastChange\":\"0:01:11.88\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:81:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"341660956\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"124161916\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":432308,\"inBytes\":443594089,\"inFlow\":423609,\"lastChangeTime\":\"0:01:14.73\",\"lastInBytes\":443594089,\"lastOutBytes\":2768246156,\"outBytes\":2768246156,\"outFlow\":8699,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":39101,\"inBytes\":1400599959,\"inFlow\":36949,\"lastChangeTime\":\"294 days, 23:06:54.98\",\"lastInBytes\":1400599959,\"lastOutBytes\":729631101,\"outBytes\":729631101,\"outFlow\":2152,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1044100,\"inBytes\":2711978199,\"inFlow\":1019041,\"lastChangeTime\":\"222 days, 12:33:01.76\",\"lastInBytes\":2711978199,\"lastOutBytes\":465651602,\"outBytes\":465651602,\"outFlow\":25059,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414925,\"inBytes\":1118131342,\"inFlow\":404821,\"lastChangeTime\":\"222 days, 12:33:00.71\",\"lastInBytes\":1118131342,\"lastOutBytes\":1470036113,\"outBytes\":1470036113,\"outFlow\":10103,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414762,\"inBytes\":2139787411,\"inFlow\":404662,\"lastChangeTime\":\"227 days, 4:09:09.25\",\"lastInBytes\":2139787411,\"lastOutBytes\":1699133102,\"outBytes\":1699133102,\"outFlow\":10099,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414861,\"inBytes\":2465028575,\"inFlow\":404584,\"lastChangeTime\":\"222 days, 12:33:02.68\",\"lastInBytes\":2465028575,\"lastOutBytes\":2970179890,\"outBytes\":2970179890,\"outFlow\":10277,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413410,\"inBytes\":3442010017,\"inFlow\":403334,\"lastChangeTime\":\"0:01:13.96\",\"lastInBytes\":3442010017,\"lastOutBytes\":1839600439,\"outBytes\":1839600439,\"outFlow\":10075,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":415888,\"inBytes\":2221643313,\"inFlow\":405913,\"lastChangeTime\":\"154 days, 7:31:51.74\",\"lastInBytes\":2221643313,\"lastOutBytes\":3253335225,\"outBytes\":3253335225,\"outFlow\":9974,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1113427,\"inBytes\":610443043,\"inFlow\":1086734,\"lastChangeTime\":\"0:01:14.72\",\"lastInBytes\":610443043,\"lastOutBytes\":2678550636,\"outBytes\":2678550636,\"outFlow\":26692,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":412407,\"inBytes\":2893115814,\"inFlow\":404403,\"lastChangeTime\":\"0:01:14.73\",\"lastInBytes\":2893115814,\"lastOutBytes\":1494947527,\"outBytes\":1494947527,\"outFlow\":8004,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":158,\"inBytes\":759454700,\"inFlow\":1,\"lastChangeTime\":\"0:01:13.98\",\"lastInBytes\":759454700,\"lastOutBytes\":1019305257,\"outBytes\":1019305257,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5122057,\"inBytes\":938299561,\"inFlow\":125637,\"lastChangeTime\":\"0:01:11.88\",\"lastInBytes\":938299561,\"lastOutBytes\":225901654,\"outBytes\":225901654,\"outFlow\":4996420,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.239615000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362121", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040012", + "name": "H3C前端交换机11", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"3\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"309815\",\"inUnknownProtos\":\"2976677717\",\"index\":\"634\",\"lastChange\":\"0:01:25.66\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:58:a2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"570125033\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":415469,\"inBytes\":282523796,\"inFlow\":405203,\"lastChangeTime\":\"57 days, 12:18:38.59\",\"lastInBytes\":282523796,\"lastOutBytes\":2075263125,\"outBytes\":2075263125,\"outFlow\":10266,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":418791,\"inBytes\":356877490,\"inFlow\":408490,\"lastChangeTime\":\"0:01:25.36\",\"lastInBytes\":356877490,\"lastOutBytes\":1687750084,\"outBytes\":1687750084,\"outFlow\":10300,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414963,\"inBytes\":2016961227,\"inFlow\":404671,\"lastChangeTime\":\"0:01:25.43\",\"lastInBytes\":2016961227,\"lastOutBytes\":2119865619,\"outBytes\":2119865619,\"outFlow\":10292,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":415007,\"inBytes\":2677398360,\"inFlow\":404761,\"lastChangeTime\":\"298 days, 16:48:19.37\",\"lastInBytes\":2677398360,\"lastOutBytes\":205746017,\"outBytes\":205746017,\"outFlow\":10245,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414819,\"inBytes\":1071734640,\"inFlow\":404679,\"lastChangeTime\":\"0:01:25.87\",\"lastInBytes\":1071734640,\"lastOutBytes\":2976677717,\"outBytes\":2976677717,\"outFlow\":10139,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414908,\"inBytes\":1981188299,\"inFlow\":404872,\"lastChangeTime\":\"0:01:25.86\",\"lastInBytes\":1981188299,\"lastOutBytes\":3660360387,\"outBytes\":3660360387,\"outFlow\":10036,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":154,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:26.75\",\"lastInBytes\":0,\"lastOutBytes\":282117310,\"outBytes\":282117310,\"outFlow\":154,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2502737,\"inBytes\":854766440,\"inFlow\":63858,\"lastChangeTime\":\"0:01:25.66\",\"lastInBytes\":854766440,\"lastOutBytes\":465330896,\"outBytes\":465330896,\"outFlow\":2438879,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.265839000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362122", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040013", + "name": "H3C前端交换机12", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165449\",\"inUnknownProtos\":\"3455810274\",\"index\":\"635\",\"lastChange\":\"0:01:14.53\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:8d:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"173972920\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52398670\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":1036680,\"inBytes\":2229370701,\"inFlow\":1011648,\"lastChangeTime\":\"452 days, 1:19:50.91\",\"lastInBytes\":2229370701,\"lastOutBytes\":1694678496,\"outBytes\":1694678496,\"outFlow\":25031,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1101782,\"inBytes\":3676971439,\"inFlow\":1075703,\"lastChangeTime\":\"452 days, 1:19:59.44\",\"lastInBytes\":3676971439,\"lastOutBytes\":2468424611,\"outBytes\":2468424611,\"outFlow\":26079,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1037100,\"inBytes\":3528282634,\"inFlow\":1012624,\"lastChangeTime\":\"452 days, 1:19:48.43\",\"lastInBytes\":3528282634,\"lastOutBytes\":1573937270,\"outBytes\":1573937270,\"outFlow\":24475,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":388501,\"inBytes\":4026964651,\"inFlow\":379239,\"lastChangeTime\":\"383 days, 20:14:38.32\",\"lastInBytes\":4026964651,\"lastOutBytes\":2387264747,\"outBytes\":2387264747,\"outFlow\":9261,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":259468,\"inBytes\":207407578,\"inFlow\":253085,\"lastChangeTime\":\"252 days, 23:37:48.87\",\"lastInBytes\":207407578,\"lastOutBytes\":864447758,\"outBytes\":864447758,\"outFlow\":6383,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":390323,\"inBytes\":2940539322,\"inFlow\":380899,\"lastChangeTime\":\"77 days, 3:06:43.23\",\"lastInBytes\":2940539322,\"lastOutBytes\":3455718897,\"outBytes\":3455718897,\"outFlow\":9423,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":979429,\"inBytes\":874961476,\"inFlow\":956186,\"lastChangeTime\":\"452 days, 1:19:53.68\",\"lastInBytes\":874961476,\"lastOutBytes\":2420415057,\"outBytes\":2420415057,\"outFlow\":23242,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":388417,\"inBytes\":3933802472,\"inFlow\":379197,\"lastChangeTime\":\"383 days, 20:14:39.09\",\"lastInBytes\":3933802472,\"lastOutBytes\":1734634982,\"outBytes\":1734634982,\"outFlow\":9219,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":4453641,\"inBytes\":346459197,\"inFlow\":4298385,\"lastChangeTime\":\"452 days, 1:19:58.09\",\"lastInBytes\":346459197,\"lastOutBytes\":2158240627,\"outBytes\":2158240627,\"outFlow\":155255,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":414518,\"inBytes\":3200064834,\"inFlow\":404567,\"lastChangeTime\":\"77 days, 3:08:06.08\",\"lastInBytes\":3200064834,\"lastOutBytes\":247230738,\"outBytes\":247230738,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1107324,\"inBytes\":2942947448,\"inFlow\":1080629,\"lastChangeTime\":\"452 days, 1:19:51.81\",\"lastInBytes\":2942947448,\"lastOutBytes\":3507198894,\"outBytes\":3507198894,\"outFlow\":26694,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2370959,\"inFlow\":0,\"lastChangeTime\":\"246 days, 10:52:19.26\",\"lastInBytes\":2370959,\"lastOutBytes\":111889809,\"outBytes\":111889809,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":80074,\"inFlow\":0,\"lastChangeTime\":\"330 days, 13:15:41.32\",\"lastInBytes\":80074,\"lastOutBytes\":11811249,\"outBytes\":11811249,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":156,\"inBytes\":674922099,\"inFlow\":1,\"lastChangeTime\":\"330 days, 13:16:18.39\",\"lastInBytes\":674922099,\"lastOutBytes\":4277658619,\"outBytes\":4277658619,\"outFlow\":155,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":11962390,\"inBytes\":702194818,\"inFlow\":352134,\"lastChangeTime\":\"330 days, 13:15:23.87\",\"lastInBytes\":702194818,\"lastOutBytes\":2762120223,\"outBytes\":2762120223,\"outFlow\":11610256,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.246449000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362123", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040014", + "name": "H3C前端交换机13", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165325\",\"inUnknownProtos\":\"1342292732\",\"index\":\"635\",\"lastChange\":\"0:01:20.75\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:8e:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"205180788\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52399648\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":1041493,\"inBytes\":2533895652,\"inFlow\":1017138,\"lastChangeTime\":\"452 days, 1:19:51.18\",\"lastInBytes\":2533895652,\"lastOutBytes\":1755314248,\"outBytes\":1755314248,\"outFlow\":24354,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1036386,\"inBytes\":2970614160,\"inFlow\":1011910,\"lastChangeTime\":\"452 days, 1:19:38.28\",\"lastInBytes\":2970614160,\"lastOutBytes\":3178433443,\"outBytes\":3178433443,\"outFlow\":24476,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":388580,\"inBytes\":1985518555,\"inFlow\":379227,\"lastChangeTime\":\"0:01:22.51\",\"lastInBytes\":1985518555,\"lastOutBytes\":1248687764,\"outBytes\":1248687764,\"outFlow\":9352,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":6104479,\"inBytes\":1564106330,\"inFlow\":997999,\"lastChangeTime\":\"383 days, 20:14:20.83\",\"lastInBytes\":1564106330,\"lastOutBytes\":801717497,\"outBytes\":801717497,\"outFlow\":5106479,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106614,\"inBytes\":3615469420,\"inFlow\":1080514,\"lastChangeTime\":\"452 days, 1:19:37.09\",\"lastInBytes\":3615469420,\"lastOutBytes\":4164497247,\"outBytes\":4164497247,\"outFlow\":26099,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414287,\"inBytes\":1456632133,\"inFlow\":404322,\"lastChangeTime\":\"0:01:22.49\",\"lastInBytes\":1456632133,\"lastOutBytes\":1342292732,\"outBytes\":1342292732,\"outFlow\":9964,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414870,\"inBytes\":3055607610,\"inFlow\":404908,\"lastChangeTime\":\"0:01:22.50\",\"lastInBytes\":3055607610,\"lastOutBytes\":2576530962,\"outBytes\":2576530962,\"outFlow\":9962,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":416973,\"inBytes\":1852187931,\"inFlow\":407075,\"lastChangeTime\":\"383 days, 20:14:20.78\",\"lastInBytes\":1852187931,\"lastOutBytes\":2819316283,\"outBytes\":2819316283,\"outFlow\":9898,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1040326,\"inBytes\":3571307501,\"inFlow\":1015886,\"lastChangeTime\":\"452 days, 1:19:42.09\",\"lastInBytes\":3571307501,\"lastOutBytes\":2031401712,\"outBytes\":2031401712,\"outFlow\":24440,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1040560,\"inBytes\":3304432827,\"inFlow\":1016053,\"lastChangeTime\":\"452 days, 1:19:39.25\",\"lastInBytes\":3304432827,\"lastOutBytes\":3556475458,\"outBytes\":3556475458,\"outFlow\":24506,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1104538,\"inBytes\":4204036794,\"inFlow\":1077930,\"lastChangeTime\":\"452 days, 1:19:39.59\",\"lastInBytes\":4204036794,\"lastOutBytes\":2012536326,\"outBytes\":2012536326,\"outFlow\":26608,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":148,\"inBytes\":674899268,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.03\",\"lastInBytes\":674899268,\"lastOutBytes\":4282245774,\"outBytes\":4282245774,\"outFlow\":147,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9355936,\"inBytes\":1139256448,\"inFlow\":232160,\"lastChangeTime\":\"0:01:20.75\",\"lastInBytes\":1139256448,\"lastOutBytes\":1714017077,\"outBytes\":1714017077,\"outFlow\":9123775,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.220722000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362124", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1005040015", + "name": "H3C前端交换机14", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165493\",\"inUnknownProtos\":\"1966802000\",\"index\":\"634\",\"lastChange\":\"95 days, 14:14:13.50\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:de:62\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"105534497\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"44139106\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.144\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:08\",\"info\":{\"portInfoList\":[{\"flow\":416503,\"inBytes\":3107480954,\"inFlow\":406547,\"lastChangeTime\":\"357 days, 2:24:55.03\",\"lastInBytes\":3107480954,\"lastOutBytes\":3080591445,\"outBytes\":3080591445,\"outFlow\":9955,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413960,\"inBytes\":2646455558,\"inFlow\":403944,\"lastChangeTime\":\"452 days, 1:18:46.95\",\"lastInBytes\":2646455558,\"lastOutBytes\":3856731830,\"outBytes\":3856731830,\"outFlow\":10015,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414814,\"inBytes\":1081640033,\"inFlow\":404706,\"lastChangeTime\":\"357 days, 2:24:53.33\",\"lastInBytes\":1081640033,\"lastOutBytes\":230711760,\"outBytes\":230711760,\"outFlow\":10108,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416950,\"inBytes\":3995424236,\"inFlow\":406936,\"lastChangeTime\":\"357 days, 2:24:54.31\",\"lastInBytes\":3995424236,\"lastOutBytes\":3920344770,\"outBytes\":3920344770,\"outFlow\":10013,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":417051,\"inBytes\":2635734370,\"inFlow\":407055,\"lastChangeTime\":\"357 days, 2:24:54.01\",\"lastInBytes\":2635734370,\"lastOutBytes\":1966802000,\"outBytes\":1966802000,\"outFlow\":9995,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":276783,\"inBytes\":514347110,\"inFlow\":270006,\"lastChangeTime\":\"425 days, 0:57:39.67\",\"lastInBytes\":514347110,\"lastOutBytes\":72888891,\"outBytes\":72888891,\"outFlow\":6776,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413583,\"inBytes\":2566210519,\"inFlow\":403729,\"lastChangeTime\":\"357 days, 2:24:56.60\",\"lastInBytes\":2566210519,\"lastOutBytes\":1677540969,\"outBytes\":1677540969,\"outFlow\":9854,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7086582,\"inFlow\":0,\"lastChangeTime\":\"77 days, 1:26:30.98\",\"lastInBytes\":7086582,\"lastOutBytes\":306959311,\"outBytes\":306959311,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":158,\"inBytes\":469016902,\"inFlow\":1,\"lastChangeTime\":\"425 days, 0:55:43.20\",\"lastInBytes\":469016902,\"lastOutBytes\":306470460,\"outBytes\":306470460,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":3195783,\"inBytes\":2083197584,\"inFlow\":80661,\"lastChangeTime\":\"388 days, 10:56:12.89\",\"lastInBytes\":2083197584,\"lastOutBytes\":2232031155,\"outBytes\":2232031155,\"outFlow\":3115121,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418576,\"inBytes\":1466042618,\"inFlow\":407648,\"lastChangeTime\":\"425 days, 0:54:49.44\",\"lastInBytes\":1466042618,\"lastOutBytes\":780161963,\"outBytes\":780161963,\"outFlow\":10927,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4138542978,\"inFlow\":0,\"lastChangeTime\":\"369 days, 1:10:53.23\",\"lastInBytes\":4138542978,\"lastOutBytes\":1717037907,\"outBytes\":1717037907,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:04.265031000\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362125", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1005040016", + "name": "H3C前端交换机15", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165205\",\"inUnknownProtos\":\"493796615\",\"index\":\"635\",\"lastChange\":\"0:01:14.35\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:ce:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2897418809\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.145\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":416145,\"inBytes\":2992080231,\"inFlow\":406096,\"lastChangeTime\":\"0:01:16.20\",\"lastInBytes\":2992080231,\"lastOutBytes\":3524157685,\"outBytes\":3524157685,\"outFlow\":10049,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":414764,\"inBytes\":3798896742,\"inFlow\":404797,\"lastChangeTime\":\"366 days, 12:55:07.93\",\"lastInBytes\":3798896742,\"lastOutBytes\":3881013910,\"outBytes\":3881013910,\"outFlow\":9967,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413077,\"inBytes\":3678995167,\"inFlow\":403099,\"lastChangeTime\":\"0:01:16.21\",\"lastInBytes\":3678995167,\"lastOutBytes\":346160342,\"outBytes\":346160342,\"outFlow\":9978,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1022661,\"inBytes\":3568025853,\"inFlow\":998798,\"lastChangeTime\":\"383 days, 20:13:50.48\",\"lastInBytes\":3568025853,\"lastOutBytes\":3296693223,\"outBytes\":3296693223,\"outFlow\":23862,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1101930,\"inBytes\":260964818,\"inFlow\":1075381,\"lastChangeTime\":\"452 days, 1:19:23.35\",\"lastInBytes\":260964818,\"lastOutBytes\":2427317975,\"outBytes\":2427317975,\"outFlow\":26549,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414546,\"inBytes\":3044663354,\"inFlow\":404419,\"lastChangeTime\":\"452 days, 1:19:17.20\",\"lastInBytes\":3044663354,\"lastOutBytes\":493796615,\"outBytes\":493796615,\"outFlow\":10127,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":412676,\"inBytes\":1249143908,\"inFlow\":402732,\"lastChangeTime\":\"383 days, 2:04:05.93\",\"lastInBytes\":1249143908,\"lastOutBytes\":198756437,\"outBytes\":198756437,\"outFlow\":9944,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":158,\"inBytes\":674535241,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.21\",\"lastInBytes\":674535241,\"lastOutBytes\":18118717,\"outBytes\":18118717,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4214577,\"inBytes\":2024749663,\"inFlow\":105977,\"lastChangeTime\":\"0:01:14.34\",\"lastInBytes\":2024749663,\"lastOutBytes\":3697413511,\"outBytes\":3697413511,\"outFlow\":4108600,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.227971000\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362126", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040017", + "name": "H3C前端交换机16", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165156\",\"inUnknownProtos\":\"4188492655\",\"index\":\"635\",\"lastChange\":\"0:01:32.22\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:8c:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"283432407\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52385578\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.146\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:08\",\"info\":{\"portInfoList\":[{\"flow\":1104539,\"inBytes\":3444411205,\"inFlow\":1078491,\"lastChangeTime\":\"14 days, 8:57:41.01\",\"lastInBytes\":3444411205,\"lastOutBytes\":1327325055,\"outBytes\":1327325055,\"outFlow\":26047,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413792,\"inBytes\":1554731373,\"inFlow\":403844,\"lastChangeTime\":\"0:01:34.31\",\"lastInBytes\":1554731373,\"lastOutBytes\":2459936580,\"outBytes\":2459936580,\"outFlow\":9948,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1095330,\"inBytes\":987417167,\"inFlow\":1069735,\"lastChangeTime\":\"383 days, 18:53:46.12\",\"lastInBytes\":987417167,\"lastOutBytes\":3565655299,\"outBytes\":3565655299,\"outFlow\":25595,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106597,\"inBytes\":720127229,\"inFlow\":1080010,\"lastChangeTime\":\"451 days, 23:59:08.00\",\"lastInBytes\":720127229,\"lastOutBytes\":1482311581,\"outBytes\":1482311581,\"outFlow\":26586,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413863,\"inBytes\":1012194886,\"inFlow\":403560,\"lastChangeTime\":\"451 days, 23:59:08.14\",\"lastInBytes\":1012194886,\"lastOutBytes\":919730693,\"outBytes\":919730693,\"outFlow\":10303,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1105899,\"inBytes\":3566681105,\"inFlow\":1079379,\"lastChangeTime\":\"451 days, 23:59:11.92\",\"lastInBytes\":3566681105,\"lastOutBytes\":4188492655,\"outBytes\":4188492655,\"outFlow\":26519,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1108593,\"inBytes\":1348605662,\"inFlow\":1081884,\"lastChangeTime\":\"451 days, 23:59:09.74\",\"lastInBytes\":1348605662,\"lastOutBytes\":182125916,\"outBytes\":182125916,\"outFlow\":26709,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414182,\"inBytes\":3623592205,\"inFlow\":404242,\"lastChangeTime\":\"0:01:35.16\",\"lastInBytes\":3623592205,\"lastOutBytes\":1609035005,\"outBytes\":1609035005,\"outFlow\":9940,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":926,\"inFlow\":0,\"lastChangeTime\":\"286 days, 22:48:00.69\",\"lastInBytes\":926,\"lastOutBytes\":3783,\"outBytes\":3783,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":158,\"inBytes\":678019723,\"inFlow\":1,\"lastChangeTime\":\"286 days, 22:54:15.78\",\"lastInBytes\":678019723,\"lastOutBytes\":150509926,\"outBytes\":150509926,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6793635,\"inBytes\":3582666120,\"inFlow\":170469,\"lastChangeTime\":\"0:01:32.22\",\"lastInBytes\":3582666120,\"lastOutBytes\":4142064024,\"outBytes\":4142064024,\"outFlow\":6623165,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:04.223455000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362127", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "deviceId": "1005040018", + "name": "华为前端交换机17", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:e4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.147\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:45\",\"info\":{\"portInfoList\":[{\"flow\":407983,\"inBytes\":969812220,\"inFlow\":398731,\"lastChangeTime\":\"11 days, 22:04:06.89\",\"lastInBytes\":969812220,\"lastOutBytes\":1355259494,\"outBytes\":1355259494,\"outFlow\":9252,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":408218,\"inBytes\":277673906,\"inFlow\":398885,\"lastChangeTime\":\"67 days, 22:53:59.73\",\"lastInBytes\":277673906,\"lastOutBytes\":1501375235,\"outBytes\":1501375235,\"outFlow\":9332,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":405784,\"inBytes\":3589400122,\"inFlow\":396449,\"lastChangeTime\":\"11 days, 22:04:05.13\",\"lastInBytes\":3589400122,\"lastOutBytes\":3387190598,\"outBytes\":3387190598,\"outFlow\":9334,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":405535,\"inBytes\":2876252846,\"inFlow\":396236,\"lastChangeTime\":\"11 days, 23:32:30.68\",\"lastInBytes\":2876252846,\"lastOutBytes\":1478956080,\"outBytes\":1478956080,\"outFlow\":9298,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":356,\"inBytes\":530460258,\"inFlow\":103,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":530460258,\"lastOutBytes\":2936423678,\"outBytes\":2936423678,\"outFlow\":253,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1238865474,\"inFlow\":0,\"lastChangeTime\":\"11 days, 21:57:09.75\",\"lastInBytes\":1238865474,\"lastOutBytes\":738325976,\"outBytes\":738325976,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":20659,\"inFlow\":0,\"lastChangeTime\":\"11 days, 23:33:07.37\",\"lastInBytes\":20659,\"lastOutBytes\":2241,\"outBytes\":2241,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1635058,\"inBytes\":3491214163,\"inFlow\":39507,\"lastChangeTime\":\"11 days, 21:57:26.91\",\"lastInBytes\":3491214163,\"lastOutBytes\":1416119328,\"outBytes\":1416119328,\"outFlow\":1595551,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:34:56.542736000\"}}", + "lastDiagTime": "2026-02-02 14:36:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362128", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1005040019", + "name": "H3C前端交换机18", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface138\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"197368\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:13.00\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:52:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70263\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.148\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"portInfoList\":[{\"flow\":480,\"inBytes\":1433169062,\"inFlow\":110,\"lastChangeTime\":\"155 days, 2:53:07.92\",\"lastInBytes\":1433169062,\"lastOutBytes\":4070501317,\"outBytes\":4070501317,\"outFlow\":370,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":5848180,\"inBytes\":1669118938,\"inFlow\":127279,\"lastChangeTime\":\"277 days, 12:56:11.94\",\"lastInBytes\":1669118938,\"lastOutBytes\":3523983497,\"outBytes\":3523983497,\"outFlow\":5720900,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":291,\"inBytes\":35868866,\"inFlow\":0,\"lastChangeTime\":\"126 days, 12:49:18.65\",\"lastInBytes\":35868866,\"lastOutBytes\":4101185704,\"outBytes\":4101185704,\"outFlow\":291,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":10000000,\"upDown\":1},{\"flow\":317,\"inBytes\":54889364,\"inFlow\":5,\"lastChangeTime\":\"261 days, 11:48:43.94\",\"lastInBytes\":54889364,\"lastOutBytes\":600358715,\"outBytes\":600358715,\"outFlow\":312,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":282499446,\"inFlow\":0,\"lastChangeTime\":\"195 days, 15:12:33.43\",\"lastInBytes\":282499446,\"lastOutBytes\":94024845,\"outBytes\":94024845,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6285230,\"inBytes\":2607911825,\"inFlow\":6140585,\"lastChangeTime\":\"0:01:13.00\",\"lastInBytes\":2607911825,\"lastOutBytes\":2343994251,\"outBytes\":2343994251,\"outFlow\":144644,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.233092000\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362129", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1005040020", + "name": "华为前端交换机19", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:92\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.149\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":406806,\"inBytes\":2489481089,\"inFlow\":397669,\"lastChangeTime\":\"383 days, 19:50:56.23\",\"lastInBytes\":2489481089,\"lastOutBytes\":2525931952,\"outBytes\":2525931952,\"outFlow\":9137,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":167,\"inBytes\":2068701342,\"inFlow\":58,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2068701342,\"lastOutBytes\":1231075554,\"outBytes\":1231075554,\"outFlow\":108,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":410291,\"inBytes\":1897098218,\"inFlow\":10133,\"lastChangeTime\":\"0:00:08.59\",\"lastInBytes\":1897098218,\"lastOutBytes\":264547362,\"outBytes\":264547362,\"outFlow\":400157,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:30.161867000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362130", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1005040021", + "name": "华为前端交换机20", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"58:d0:61:ab:ba:f1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.150\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:04\",\"info\":{\"portInfoList\":[{\"flow\":405132,\"inBytes\":1684057700,\"inFlow\":395970,\"lastChangeTime\":\"383 days, 19:52:06.79\",\"lastInBytes\":1684057700,\"lastOutBytes\":287008908,\"outBytes\":287008908,\"outFlow\":9161,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":371,\"inBytes\":646659483,\"inFlow\":104,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":646659483,\"lastOutBytes\":3918718932,\"outBytes\":3918718932,\"outFlow\":267,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407765,\"inBytes\":2369007719,\"inFlow\":10279,\"lastChangeTime\":\"2:56:49.61\",\"lastInBytes\":2369007719,\"lastOutBytes\":2163526741,\"outBytes\":2163526741,\"outFlow\":397486,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:30.360340000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362131", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:00", + "echoMap": {}, + "deviceId": "1005040022", + "name": "华为前端交换机21", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:c4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.151\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":407034,\"inBytes\":323491451,\"inFlow\":397894,\"lastChangeTime\":\"383 days, 19:52:17.87\",\"lastInBytes\":323491451,\"lastOutBytes\":3757425394,\"outBytes\":3757425394,\"outFlow\":9139,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":373,\"inBytes\":646137245,\"inFlow\":104,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":646137245,\"lastOutBytes\":3916136084,\"outBytes\":3916136084,\"outFlow\":268,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407178,\"inBytes\":1788673362,\"inFlow\":10316,\"lastChangeTime\":\"0:33:35.09\",\"lastInBytes\":1788673362,\"lastOutBytes\":495796062,\"outBytes\":495796062,\"outFlow\":396861,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:28.909554000\"}}", + "lastDiagTime": "2026-02-02 14:39:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589937693958362132", + "createdBy": "0", + "createdTime": "2025-03-07 13:57:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1005040023", + "name": "华为前端交换机22", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:dd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.152\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:09\",\"info\":{\"portInfoList\":[{\"flow\":407923,\"inBytes\":1642701369,\"inFlow\":398718,\"lastChangeTime\":\"383 days, 19:51:58.94\",\"lastInBytes\":1642701369,\"lastOutBytes\":3793870597,\"outBytes\":3793870597,\"outFlow\":9205,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":373,\"inBytes\":646066190,\"inFlow\":104,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":646066190,\"lastOutBytes\":3934511848,\"outBytes\":3934511848,\"outFlow\":268,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":412695,\"inBytes\":3328808190,\"inFlow\":10383,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3328808190,\"lastOutBytes\":1221284240,\"outBytes\":1221284240,\"outFlow\":402312,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:31.472361000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996223", + "createdBy": "0", + "createdTime": "2025-10-18 14:58:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:20", + "echoMap": {}, + "deviceId": "1005040024", + "name": "华为前端交换机23", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"12 days, 14:23:07.79\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:2b:5d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.153\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:19\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":1847374172,\"inFlow\":0,\"lastChangeTime\":\"67 days, 23:13:27.56\",\"lastInBytes\":1847374172,\"lastOutBytes\":2025970550,\"outBytes\":2025970550,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":405807,\"inBytes\":3903192663,\"inFlow\":396634,\"lastChangeTime\":\"67 days, 23:13:33.58\",\"lastInBytes\":3903192663,\"lastOutBytes\":723623439,\"outBytes\":723623439,\"outFlow\":9172,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":439,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"11 days, 22:26:59.00\",\"lastInBytes\":0,\"lastOutBytes\":1200082175,\"outBytes\":1200082175,\"outFlow\":439,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407554,\"inBytes\":2125776922,\"inFlow\":10158,\"lastChangeTime\":\"11 days, 22:48:37.14\",\"lastInBytes\":2125776922,\"lastOutBytes\":3562404227,\"outBytes\":3562404227,\"outFlow\":397396,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:33.509450000\"}}", + "lastDiagTime": "2026-02-02 14:39:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689001097467996227", + "createdBy": "0", + "createdTime": "2025-10-18 14:59:12", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:20", + "echoMap": {}, + "deviceId": "1005040025", + "name": "华为前端交换机24", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.138.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif138\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"31 days, 8:35:55.99\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:2b:07\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.138.154\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:19\",\"info\":{\"portInfoList\":[{\"flow\":405218,\"inBytes\":3247301413,\"inFlow\":396129,\"lastChangeTime\":\"67 days, 22:47:07.53\",\"lastInBytes\":3247301413,\"lastOutBytes\":2767502067,\"outBytes\":2767502067,\"outFlow\":9088,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":445,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"67 days, 22:50:19.66\",\"lastInBytes\":0,\"lastOutBytes\":3897127521,\"outBytes\":3897127521,\"outFlow\":445,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408059,\"inBytes\":2533052033,\"inFlow\":10152,\"lastChangeTime\":\"67 days, 22:23:10.92\",\"lastInBytes\":2533052033,\"lastOutBytes\":1035298393,\"outBytes\":1035298393,\"outFlow\":397907,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:38.732353000\"}}", + "lastDiagTime": "2026-02-02 14:39:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585047452785070754", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1005110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.137.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.14\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"54 days, 11:55:20.51\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"9571636\",\"inErrors\":\"0\",\"inNUcastPkts\":\"25418706\",\"inOctets\":\"217731171\",\"inUcastPkts\":\"1811553001\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9c:c8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"800534813\",\"outQLen\":\"0\",\"outUcastPkts\":\"1756832459\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.137.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1006": { + "ndmAlarmHost": [ + { + "id": "689830468535711941", + "createdBy": null, + "createdTime": "2025-10-18 15:03:42", + "updatedBy": null, + "updatedTime": "2025-10-18 15:03:42", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.139.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "689830468535711834", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060001", + "name": "[610](10)水城内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603001006006610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711835", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060002", + "name": "[608](10)水城环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603053005006608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711836", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060003", + "name": "[604](10)水城弱电综合管理室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603048005006604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711837", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060004", + "name": "[605](10)水城弱电综合管理室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603048005006605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711838", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060005", + "name": "[602](10)水城编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603041005006602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711839", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060006", + "name": "[603](10)水城编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603041005006603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711840", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060007", + "name": "[606](10)水城弱电综合管理室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603048005006606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711841", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060008", + "name": "[611](10)水城内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603001006006611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711842", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-06 17:20:09", + "echoMap": {}, + "deviceId": "1006060009", + "name": "[601](10)水城车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603042004006601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711843", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2026-02-02 04:30:52", + "echoMap": {}, + "deviceId": "1006060010", + "name": "[344](10)水城1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601036005006344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711844", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060011", + "name": "[332](10)水城#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601045006006332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711845", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060012", + "name": "[331](10)水城#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601045006006331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711846", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060013", + "name": "[324](10)水城3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711847", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060014", + "name": "[201](10)水城厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601035004006201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711848", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060015", + "name": "[325](10)水城3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711849", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060016", + "name": "[403](10)水城2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601006006006403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711850", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-06 17:20:10", + "echoMap": {}, + "deviceId": "1006060017", + "name": "[404](10)水城2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601006006006404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711851", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-06 17:20:10", + "echoMap": {}, + "deviceId": "1006060018", + "name": "[342](10)水城B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601040006006342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711852", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2026-01-19 09:49:52", + "echoMap": {}, + "deviceId": "1006060019", + "name": "[502](10)水城票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601030006006502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711853", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060020", + "name": "[346](10)水城安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601085006006346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711854", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060021", + "name": "[202](10)水城厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601035004006202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711855", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060022", + "name": "[401](10)水城1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601005006006401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711856", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060023", + "name": "[402](10)水城2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601006006006402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711857", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060024", + "name": "[333](10)水城#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601045006006333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711858", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-12 09:56:59", + "echoMap": {}, + "deviceId": "1006060025", + "name": "[503](10)水城票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601030006006503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711859", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060026", + "name": "[204](10)水城厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601035004006204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711860", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060027", + "name": "[302](10)水城1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711861", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060028", + "name": "[301](10)水城1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711862", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-12 09:57:59", + "echoMap": {}, + "deviceId": "1006060029", + "name": "[409](10)水城4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601008006006409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711863", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-12 09:57:59", + "echoMap": {}, + "deviceId": "1006060030", + "name": "[347](10)水城安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601085006006347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711864", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060031", + "name": "[405](10)水城3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601007006006405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711865", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-12 09:56:01", + "echoMap": {}, + "deviceId": "1006060032", + "name": "[336](10)水城#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601045006006336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711866", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060033", + "name": "[341](10)水城B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601040006006341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711867", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060034", + "name": "[335](10)水城#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601045006006335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711868", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1006060035", + "name": "[334](10)水城#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601045006006334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711869", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1006060036", + "name": "[612](10)水城内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603001006006612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711870", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1006060037", + "name": "[303](10)水城2#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711871", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1006060038", + "name": "[609](10)水城环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603053005006609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711872", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060039", + "name": "[203](10)水城厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601035004006203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711873", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060040", + "name": "[408](10)水城3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601007006006408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711874", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060041", + "name": "[407](10)水城3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601007006006407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711875", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060042", + "name": "[406](10)水城3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601007006006406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711876", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060043", + "name": "[614](10)水城消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603001006006614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711877", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060044", + "name": "[329](10)水城3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711878", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1006060045", + "name": "[326](10)水城3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711879", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060046", + "name": "[210](10)水城3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057004006210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711880", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060047", + "name": "[330](10)水城3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711881", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1006060048", + "name": "[328](10)水城3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711882", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060049", + "name": "[327](10)水城3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601057006006327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711883", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060050", + "name": "[313](10)水城2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711884", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060051", + "name": "[312](10)水城2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711885", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060052", + "name": "[318](10)水城2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711886", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060053", + "name": "[315](10)水城2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711887", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060054", + "name": "[321](10)水城2#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711888", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060055", + "name": "[314](10)水城2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711889", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060056", + "name": "[323](10)水城2#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711890", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1006060057", + "name": "[209](10)水城2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056004006209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711891", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060058", + "name": "[345](10)水城2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601036005006345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711892", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060059", + "name": "[316](10)水城2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711893", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060060", + "name": "[317](10)水城2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711894", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060061", + "name": "[322](10)水城2#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056005006322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711895", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060062", + "name": "[319](10)水城2#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711896", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060063", + "name": "[320](10)水城2#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601056006006320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711897", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060064", + "name": "[305](10)水城1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711898", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060065", + "name": "[304](10)水城1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711899", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060066", + "name": "[311](10)水城1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711900", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1006060067", + "name": "[309](10)水城1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711901", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:55:52", + "echoMap": {}, + "deviceId": "1006060068", + "name": "[308](10)水城1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711902", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060069", + "name": "[307](10)水城1#口出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711903", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1006060070", + "name": "[306](10)水城1#口出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711904", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060071", + "name": "[310](10)水城1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601055006006310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711905", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2026-01-16 00:47:52", + "echoMap": {}, + "deviceId": "1006060072", + "name": "[702](10)水城下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060604013006006702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711906", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060073", + "name": "[207](10)水城下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602001004006207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711907", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060074", + "name": "[107](10)水城下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602012006006107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711908", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060075", + "name": "[108](10)水城下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602012006006108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711909", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060076", + "name": "[338](10)水城#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602017006006338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711910", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060077", + "name": "[613](10)水城内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603021006006613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711911", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1006060078", + "name": "[607](10)水城屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603048005006607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711912", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060079", + "name": "[337](10)水城#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602017006006337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711913", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060080", + "name": "[701](10)水城上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060604013006006701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711914", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060081", + "name": "[106](10)水城上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602007006006106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711915", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060082", + "name": "[105](10)水城上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602007006006105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711916", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060083", + "name": "[615](10)水城变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603021006006615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711917", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060084", + "name": "[208](10)水城下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602001004006208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711918", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060085", + "name": "[111](10)水城下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602012006006111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711919", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060086", + "name": "[112](10)水城下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602012006006112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711920", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060087", + "name": "[109](10)水城下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602012006006109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711921", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060088", + "name": "[110](10)水城下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602012006006110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711922", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060089", + "name": "[340](10)水城#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602017006006340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711923", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060090", + "name": "[343](10)水城B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602002006006343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711924", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060091", + "name": "[339](10)水城#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602017006006339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711925", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1006060092", + "name": "[205](10)水城上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602001004006205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711926", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060093", + "name": "[206](10)水城上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602001004006206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711927", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060094", + "name": "[102](10)水城上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602007006006102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711928", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060095", + "name": "[101](10)水城上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602007006006101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711929", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060096", + "name": "[104](10)水城上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602007006006104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711930", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1006060097", + "name": "[103](10)水城上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602007006006103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711931", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1006060098", + "name": "[704](10)水城水城-伊犁下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060604012004006704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711932", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1006060099", + "name": "[703](10)水城水城-伊犁上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060604012004006703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711933", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1006060100", + "name": "[616](10)水城气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603067005006616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711934", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1006060101", + "name": "[617](10)水城通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603048005006617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711935", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1006060102", + "name": "[618](10)水城通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603048005006618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711936", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060103", + "name": "[619](10)水城内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.140.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603001005006619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711937", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-06 17:25:10", + "echoMap": {}, + "deviceId": "1006060104", + "name": "[620](10)水城3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601007006006620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711938", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1006060105", + "name": "[621](10)水城消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.139.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603068005006621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711939", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1006060106", + "name": "[622](10)水城气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.140.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060603067005006622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689830468535711940", + "createdBy": "0", + "createdTime": "2025-10-18 15:03:07", + "updatedBy": null, + "updatedTime": "2025-12-06 17:20:12", + "echoMap": {}, + "deviceId": "1006060107", + "name": "[501](10)水城客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.140.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060601001005006501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704524943224746037", + "createdBy": null, + "createdTime": "2025-11-27 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-27 00:00:00", + "echoMap": {}, + "deviceId": "1006060108", + "name": "[624](10)水城下行紧急电话", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.140.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602021006006624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704524943224746039", + "createdBy": null, + "createdTime": "2025-11-27 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-26 10:11:50", + "echoMap": {}, + "deviceId": "1006060109", + "name": "[623](10)水城上行紧急电话", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.140.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060602021006006623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589883693334549610", + "createdBy": "0", + "createdTime": "2025-02-24 11:28:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1006070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.139.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060600000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"2354908\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1382415473\",\"inUcastPkts\":\"1238425722\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:19:3a:25\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1379702593\",\"outQLen\":\"0\",\"outUcastPkts\":\"1822825359\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.139.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:52\",\"stCommonInfo\":{\"设备ID\":\"8L0027FPAZ9F42F\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"41\",\"CPU使用率\":\"14\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589883693334549796", + "createdBy": "2", + "createdTime": "2025-02-24 11:32:05", + "updatedBy": null, + "updatedTime": "2025-12-23 10:08:39", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.139.51", + "manageUrl": "http:\\\\10.18.139.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549797", + "createdBy": "2", + "createdTime": "2025-02-24 11:32:28", + "updatedBy": null, + "updatedTime": "2025-12-25 02:42:51", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.139.52", + "manageUrl": "http:\\\\10.18.139.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589883693334549611", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1006090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.139.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.04\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"108 days, 9:03:43.32\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10421213\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27930840\",\"inOctets\":\"24549465\",\"inUcastPkts\":\"2833395239\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ad:84\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"683920475\",\"outQLen\":\"0\",\"outUcastPkts\":\"2575198729\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.139.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589883693334549637", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 11:29:31", + "echoMap": {}, + "deviceId": "1006050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.139.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060600000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.139.22;10.18.139.23" + }, + { + "id": "589883693334549638", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1006050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.139.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060600000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13243287\",\"inErrors\":\"0\",\"inNUcastPkts\":\"23611700\",\"inOctets\":\"981411553\",\"inUcastPkts\":\"678972555\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:6a:19:80\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"318012419\",\"outQLen\":\"0\",\"outUcastPkts\":\"3078277777\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4200\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3240\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3280\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.139.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:53\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":934472960,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281494110}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.139.22" + }, + { + "id": "589883693334549639", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1006050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.139.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060600000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13242643\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29815555\",\"inOctets\":\"2698171795\",\"inUcastPkts\":\"1207895315\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:69:90:da\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2290525405\",\"outQLen\":\"0\",\"outUcastPkts\":\"766398604\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4200\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4300\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3200\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3230\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.139.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:54\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":934472960,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281494110}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node13923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"61\",\"CPU使用率\":\"20\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.139.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589883693334549625", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1006030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3597797\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198762327\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"143 days, 12:10:00.25\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3597802\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:f5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":25.993002},{\"current\":0.216,\"status\":1,\"voltage\":25.993002},{\"current\":0.23900001,\"status\":1,\"voltage\":25.993002},{\"current\":0.23900001,\"status\":1,\"voltage\":25.993002},{\"current\":0.22500001,\"status\":1,\"voltage\":25.993002},{\"current\":0.22200002,\"status\":1,\"voltage\":25.993002},{\"current\":0.21900001,\"status\":1,\"voltage\":25.993002},{\"current\":0.22700001,\"status\":1,\"voltage\":25.993002},{\"current\":0.22700001,\"status\":1,\"voltage\":25.993002},{\"current\":0.215,\"status\":1,\"voltage\":26.567001},{\"current\":0.003,\"status\":1,\"voltage\":26.567001},{\"current\":0.22200002,\"status\":1,\"voltage\":26.567001},{\"current\":0.23500001,\"status\":1,\"voltage\":26.567001},{\"current\":0.001,\"status\":1,\"voltage\":26.567001},{\"current\":0.001,\"status\":1,\"voltage\":26.567001},{\"current\":0.001,\"status\":1,\"voltage\":26.567001}],\"fanSpeeds\":[2310,2280],\"humidity\":20,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0001512208300245\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549626", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1006030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3299835\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"182031150\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"143 days, 15:29:44.87\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3299840\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:74\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.537,\"status\":1,\"voltage\":26.224},{\"current\":0.272,\"status\":1,\"voltage\":26.224},{\"current\":0.279,\"status\":1,\"voltage\":26.224},{\"current\":0.27,\"status\":1,\"voltage\":26.224},{\"current\":0.30200002,\"status\":1,\"voltage\":26.224},{\"current\":0.54200006,\"status\":1,\"voltage\":26.224},{\"current\":0.32000002,\"status\":1,\"voltage\":26.224},{\"current\":0.35200003,\"status\":1,\"voltage\":26.224},{\"current\":0.337,\"status\":1,\"voltage\":26.224},{\"current\":0.257,\"status\":1,\"voltage\":25.955002},{\"current\":0.003,\"status\":1,\"voltage\":25.955002},{\"current\":0.001,\"status\":1,\"voltage\":25.955002},{\"current\":0.001,\"status\":1,\"voltage\":25.955002},{\"current\":0.001,\"status\":1,\"voltage\":25.955002},{\"current\":0.001,\"status\":1,\"voltage\":25.955002},{\"current\":0.001,\"status\":1,\"voltage\":25.955002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300372\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549627", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1006030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3598944\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198827725\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"144 days, 13:33:26.45\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3598949\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:b1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.41400003,\"status\":1,\"voltage\":26.550001},{\"current\":0.42900002,\"status\":1,\"voltage\":26.550001},{\"current\":0.001,\"status\":1,\"voltage\":26.550001},{\"current\":0.20300001,\"status\":1,\"voltage\":26.550001},{\"current\":0.50600004,\"status\":1,\"voltage\":26.550001},{\"current\":0.001,\"status\":1,\"voltage\":26.550001},{\"current\":0.001,\"status\":1,\"voltage\":26.550001},{\"current\":0.554,\"status\":1,\"voltage\":26.550001},{\"current\":0.43500003,\"status\":1,\"voltage\":26.550001},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.003,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300177\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549628", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1006030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3298351\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"181951146\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"143 days, 22:44:58.71\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3298356\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:14\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.264,\"status\":1,\"voltage\":25.902},{\"current\":0.54800004,\"status\":1,\"voltage\":25.902},{\"current\":0.30800003,\"status\":1,\"voltage\":25.902},{\"current\":0.31500003,\"status\":1,\"voltage\":25.902},{\"current\":0.36600003,\"status\":1,\"voltage\":25.902},{\"current\":0.27,\"status\":1,\"voltage\":25.902},{\"current\":0.37500003,\"status\":1,\"voltage\":25.902},{\"current\":0.30900002,\"status\":1,\"voltage\":25.902},{\"current\":0.372,\"status\":1,\"voltage\":25.902},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.003,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300276\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549629", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1006030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3196962\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"176255631\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"143 days, 9:50:52.57\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3196967\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:3c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.222002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.222002},{\"current\":0.38700002,\"status\":1,\"voltage\":26.222002},{\"current\":0.37,\"status\":1,\"voltage\":26.222002},{\"current\":0.001,\"status\":1,\"voltage\":26.222002},{\"current\":0.21900001,\"status\":1,\"voltage\":26.222002},{\"current\":0.549,\"status\":1,\"voltage\":26.222002},{\"current\":0.47400004,\"status\":1,\"voltage\":26.222002},{\"current\":0.467,\"status\":1,\"voltage\":26.222002},{\"current\":0.38900003,\"status\":1,\"voltage\":26.029001},{\"current\":0.002,\"status\":1,\"voltage\":26.029001},{\"current\":0.238,\"status\":1,\"voltage\":26.029001},{\"current\":0.001,\"status\":1,\"voltage\":26.029001},{\"current\":0.001,\"status\":1,\"voltage\":26.029001},{\"current\":0.001,\"status\":1,\"voltage\":26.029001},{\"current\":0.001,\"status\":1,\"voltage\":26.029001}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300316\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549630", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1006030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3196801\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"176247865\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"143 days, 5:45:59.28\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3196806\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:dd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28,\"status\":1,\"voltage\":27.189001},{\"current\":0.293,\"status\":1,\"voltage\":27.189001},{\"current\":0.35000002,\"status\":1,\"voltage\":27.189001},{\"current\":0.54200006,\"status\":1,\"voltage\":27.189001},{\"current\":0.25,\"status\":1,\"voltage\":27.189001},{\"current\":0.24900001,\"status\":1,\"voltage\":27.189001},{\"current\":0.24300002,\"status\":1,\"voltage\":27.189001},{\"current\":0.001,\"status\":1,\"voltage\":27.189001},{\"current\":0.001,\"status\":1,\"voltage\":27.189001},{\"current\":0.001,\"status\":1,\"voltage\":27.198002},{\"current\":0.003,\"status\":1,\"voltage\":27.198002},{\"current\":0.001,\"status\":1,\"voltage\":27.198002},{\"current\":0.001,\"status\":1,\"voltage\":27.198002},{\"current\":0.001,\"status\":1,\"voltage\":27.198002},{\"current\":0.001,\"status\":1,\"voltage\":27.198002},{\"current\":0.001,\"status\":1,\"voltage\":27.198002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208300221\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549631", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1006030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3196801\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"176248387\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"144 days, 12:46:52.65\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3196806\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:f8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28500003,\"status\":1,\"voltage\":26.397001},{\"current\":0.319,\"status\":1,\"voltage\":26.397001},{\"current\":0.284,\"status\":1,\"voltage\":26.397001},{\"current\":0.333,\"status\":1,\"voltage\":26.397001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.397001},{\"current\":0.33100003,\"status\":1,\"voltage\":26.397001},{\"current\":0.27,\"status\":1,\"voltage\":26.397001},{\"current\":0.52400005,\"status\":1,\"voltage\":26.397001},{\"current\":0.39600003,\"status\":1,\"voltage\":26.397001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.605001},{\"current\":0.002,\"status\":1,\"voltage\":26.605001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.605001},{\"current\":0.215,\"status\":1,\"voltage\":26.605001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.605001},{\"current\":0.256,\"status\":1,\"voltage\":26.605001},{\"current\":0.001,\"status\":1,\"voltage\":26.605001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208300248\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549632", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:56", + "echoMap": {}, + "deviceId": "1006030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3196801\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"176248144\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"371 days, 1:07:00.51\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3196806\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:02:34\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":26.246002},{\"current\":0.257,\"status\":1,\"voltage\":26.246002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.246002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.246002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.246002},{\"current\":0.33400002,\"status\":1,\"voltage\":26.246002},{\"current\":0.37300003,\"status\":1,\"voltage\":26.246002},{\"current\":0.30100003,\"status\":1,\"voltage\":26.246002},{\"current\":0.001,\"status\":1,\"voltage\":26.246002},{\"current\":0.001,\"status\":1,\"voltage\":26.161001},{\"current\":0.003,\"status\":1,\"voltage\":26.161001},{\"current\":0.001,\"status\":1,\"voltage\":26.161001},{\"current\":0.001,\"status\":1,\"voltage\":26.161001},{\"current\":0.001,\"status\":1,\"voltage\":26.161001},{\"current\":0.001,\"status\":1,\"voltage\":26.161001},{\"current\":0.001,\"status\":1,\"voltage\":26.161001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208300564\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549633", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:56", + "echoMap": {}, + "deviceId": "1006030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3196801\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"176248053\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"142 days, 5:36:42.88\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3196806\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:fd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23500001,\"status\":1,\"voltage\":26.064001},{\"current\":0.55,\"status\":1,\"voltage\":26.064001},{\"current\":0.257,\"status\":1,\"voltage\":26.064001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.064001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.064001},{\"current\":0.27600002,\"status\":1,\"voltage\":26.064001},{\"current\":0.231,\"status\":1,\"voltage\":26.064001},{\"current\":0.26900002,\"status\":1,\"voltage\":26.064001},{\"current\":0.23,\"status\":1,\"voltage\":26.064001},{\"current\":0.268,\"status\":1,\"voltage\":25.892002},{\"current\":0.003,\"status\":1,\"voltage\":25.892002},{\"current\":0.28100002,\"status\":1,\"voltage\":25.892002},{\"current\":0.224,\"status\":1,\"voltage\":25.892002},{\"current\":0.26500002,\"status\":1,\"voltage\":25.892002},{\"current\":0.22700001,\"status\":1,\"voltage\":25.892002},{\"current\":0.001,\"status\":1,\"voltage\":25.892002}],\"fanSpeeds\":[1860,1920],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0001512208300253\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549634", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:56", + "echoMap": {}, + "deviceId": "1006030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3196698\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"176241988\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"145 days, 8:45:50.79\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3196703\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:c4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.56600004,\"status\":1,\"voltage\":25.832},{\"current\":0.25100002,\"status\":1,\"voltage\":25.832},{\"current\":0.259,\"status\":1,\"voltage\":25.832},{\"current\":0.25800002,\"status\":1,\"voltage\":25.832},{\"current\":0.25800002,\"status\":1,\"voltage\":25.832},{\"current\":0.26200002,\"status\":1,\"voltage\":25.832},{\"current\":0.259,\"status\":1,\"voltage\":25.832},{\"current\":0.252,\"status\":1,\"voltage\":25.832},{\"current\":0.517,\"status\":1,\"voltage\":25.832},{\"current\":0.509,\"status\":1,\"voltage\":25.736002},{\"current\":0.002,\"status\":1,\"voltage\":25.736002},{\"current\":0.22700001,\"status\":1,\"voltage\":25.736002},{\"current\":0.25300002,\"status\":1,\"voltage\":25.736002},{\"current\":0.25500003,\"status\":1,\"voltage\":25.736002},{\"current\":0.24800001,\"status\":1,\"voltage\":25.736002},{\"current\":0.21300001,\"status\":1,\"voltage\":25.736002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300452\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549635", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:04", + "echoMap": {}, + "deviceId": "1006030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549636", + "createdBy": "0", + "createdTime": "2025-02-24 11:29:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:05", + "echoMap": {}, + "deviceId": "1006030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.140.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3192390\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"175789328\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:11:26.32\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3192395\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:13:46\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.583,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.0,\"status\":1,\"voltage\":26.62},{\"current\":0.0,\"status\":1,\"voltage\":26.62},{\"current\":0.0,\"status\":1,\"voltage\":26.62},{\"current\":0.0,\"status\":0,\"voltage\":26.62},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304044\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589883693334549612", + "createdBy": "2", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:16", + "echoMap": {}, + "deviceId": "1006040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.139.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif139\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:03.98\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:1c:05\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"38\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.139.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"4910\",\"53\",\"0\",\"0\",\"0\",\"42711\",\"4820\",\"115152\",\"97109\",\"265794\",\"0\",\"437\",\"444\",\"0\",\"30485\",\"12761\",\"0\",\"93480\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:15\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.35\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":41735,\"inBytes\":3868348001,\"inFlow\":27645,\"lastChangeTime\":\"0:03:05.81\",\"lastInBytes\":3868348001,\"lastOutBytes\":3221711451,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3221711451,\"outFlow\":14090,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":23219152,\"inBytes\":826144454,\"inFlow\":8924023,\"lastChangeTime\":\"0:03:05.84\",\"lastInBytes\":826144454,\"lastOutBytes\":1519448299,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1519448299,\"outFlow\":14295129,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":90298,\"inBytes\":1533783176,\"inFlow\":26981,\"lastChangeTime\":\"354 days, 7:48:36.37\",\"lastInBytes\":1533783176,\"lastOutBytes\":1861946935,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1861946935,\"outFlow\":63317,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1600290651,\"inFlow\":0,\"lastChangeTime\":\"354 days, 7:48:04.60\",\"lastInBytes\":1600290651,\"lastOutBytes\":2408307356,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2408307356,\"outFlow\":0,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":290,\"inBytes\":236728675,\"inFlow\":6,\"lastChangeTime\":\"418 days, 6:33:18.10\",\"lastInBytes\":236728675,\"lastOutBytes\":3891827669,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3891827669,\"outFlow\":283,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4056616987,\"inFlow\":0,\"lastChangeTime\":\"354 days, 7:49:31.21\",\"lastInBytes\":4056616987,\"lastOutBytes\":3678383710,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3678383710,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5692098,\"inBytes\":1449370748,\"inFlow\":71944,\"lastChangeTime\":\"468 days, 13:06:54.86\",\"lastInBytes\":1449370748,\"lastOutBytes\":4194724898,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4194724898,\"outFlow\":5620153,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":868541,\"inBytes\":1244413993,\"inFlow\":501853,\"lastChangeTime\":\"354 days, 7:57:11.48\",\"lastInBytes\":1244413993,\"lastOutBytes\":2215920314,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2215920314,\"outFlow\":366687,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18588039,\"inBytes\":3592762853,\"inFlow\":485355,\"lastChangeTime\":\"354 days, 7:52:03.16\",\"lastInBytes\":3592762853,\"lastOutBytes\":2664242244,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2664242244,\"outFlow\":18102683,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3652062,\"inBytes\":202489816,\"inFlow\":361682,\"lastChangeTime\":\"382 days, 23:20:41.41\",\"lastInBytes\":202489816,\"lastOutBytes\":4114943221,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4114943221,\"outFlow\":3290379,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16784215,\"inBytes\":208928208,\"inFlow\":351303,\"lastChangeTime\":\"382 days, 23:16:05.48\",\"lastInBytes\":208928208,\"lastOutBytes\":1805617918,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1805617918,\"outFlow\":16432912,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":514,\"inBytes\":2029667101,\"inFlow\":139,\"lastChangeTime\":\"453 days, 10:12:54.35\",\"lastInBytes\":2029667101,\"lastOutBytes\":1312684648,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1312684648,\"outFlow\":374,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":780,\"inBytes\":3074509961,\"inFlow\":210,\"lastChangeTime\":\"453 days, 10:09:36.29\",\"lastInBytes\":3074509961,\"lastOutBytes\":4108360298,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4108360298,\"outFlow\":569,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":328,\"inBytes\":143415181,\"inFlow\":38,\"lastChangeTime\":\"83 days, 2:08:05.87\",\"lastInBytes\":143415181,\"lastOutBytes\":2607923046,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2607923046,\"outFlow\":290,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":292,\"inBytes\":224086257,\"inFlow\":7,\"lastChangeTime\":\"68 days, 21:12:28.54\",\"lastInBytes\":224086257,\"lastOutBytes\":4234601414,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4234601414,\"outFlow\":284,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":3269682,\"inBytes\":1399748291,\"inFlow\":23743,\"lastChangeTime\":\"68 days, 23:27:40.69\",\"lastInBytes\":1399748291,\"lastOutBytes\":2026632016,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2026632016,\"outFlow\":3245938,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":288,\"inBytes\":2734830054,\"inFlow\":3,\"lastChangeTime\":\"98 days, 4:36:05.45\",\"lastInBytes\":2734830054,\"lastOutBytes\":2677893936,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2677893936,\"outFlow\":284,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":510,\"inBytes\":2015911647,\"inFlow\":137,\"lastChangeTime\":\"68 days, 21:04:14.07\",\"lastInBytes\":2015911647,\"lastOutBytes\":2860270746,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2860270746,\"outFlow\":372,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":767342,\"inFlow\":0,\"lastChangeTime\":\"453 days, 10:29:11.34\",\"lastInBytes\":767342,\"lastOutBytes\":14145959,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":14145959,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1321,\"inFlow\":0,\"lastChangeTime\":\"52 days, 10:32:30.00\",\"lastInBytes\":1321,\"lastOutBytes\":2317,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2317,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":112,\"inBytes\":579628550,\"inFlow\":96,\"lastChangeTime\":\"45 days, 19:14:11.49\",\"lastInBytes\":579628550,\"lastOutBytes\":654942113,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":654942113,\"outFlow\":15,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":29,\"inBytes\":592512612,\"inFlow\":13,\"lastChangeTime\":\"45 days, 19:14:12.02\",\"lastInBytes\":592512612,\"lastOutBytes\":98672942,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":98672942,\"outFlow\":15,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6718806,\"inFlow\":0,\"lastChangeTime\":\"382 days, 22:08:00.03\",\"lastInBytes\":6718806,\"lastOutBytes\":1932979974,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1932979974,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":26,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":26,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33209,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":561,\"opticalVoltage\":3301,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34020,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":564,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33029,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":579,\"opticalVoltage\":3251,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32849,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":668,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35189,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":563,\"opticalVoltage\":3259,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34349,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":598,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39720,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":563,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43529,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":508,\"opticalVoltage\":3288,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34439,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":555,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42810,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":562,\"opticalVoltage\":3281,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34380,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":572,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35430,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":563,\"opticalVoltage\":3309,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37259,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":555,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38939,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":561,\"opticalVoltage\":3334,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35700,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":563,\"opticalVoltage\":3351,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35069,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":564,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42029,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":559,\"opticalVoltage\":3315,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35700,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":595,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36360,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":559,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34470,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":580,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":894,\"inBytes\":1316012587,\"inFlow\":75,\"lastChangeTime\":\"354 days, 7:45:40.36\",\"lastInBytes\":1316012587,\"lastOutBytes\":1470184949,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":108,\"opticalTemperature\":51,\"opticalTransmitPower\":250,\"opticalVoltage\":3302,\"outBytes\":1470184949,\"outFlow\":819,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1846970794,\"inFlow\":0,\"lastChangeTime\":\"354 days, 7:45:20.72\",\"lastInBytes\":1846970794,\"lastOutBytes\":26332144,\"opticalBiasCurrent\":36779,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":562,\"opticalVoltage\":3300,\"outBytes\":26332144,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":224450,\"inBytes\":3802586772,\"inFlow\":4217,\"lastChangeTime\":\"173 days, 20:33:02.05\",\"lastInBytes\":3802586772,\"lastOutBytes\":218116560,\"opticalBiasCurrent\":34439,\"opticalReceivePower\":378,\"opticalTemperature\":50,\"opticalTransmitPower\":561,\"opticalVoltage\":3298,\"outBytes\":218116560,\"outFlow\":220233,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1197150,\"inBytes\":171888207,\"inFlow\":585515,\"lastChangeTime\":\"173 days, 20:32:54.56\",\"lastInBytes\":171888207,\"lastOutBytes\":394721891,\"opticalBiasCurrent\":34319,\"opticalReceivePower\":414,\"opticalTemperature\":49,\"opticalTransmitPower\":591,\"opticalVoltage\":3309,\"outBytes\":394721891,\"outFlow\":611635,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4935212,\"inBytes\":3282110658,\"inFlow\":4779165,\"lastChangeTime\":\"354 days, 7:57:44.93\",\"lastInBytes\":3282110658,\"lastOutBytes\":370752199,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":296,\"opticalTemperature\":49,\"opticalTransmitPower\":243,\"opticalVoltage\":3338,\"outBytes\":370752199,\"outFlow\":156047,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6417964,\"inBytes\":1493613492,\"inFlow\":6221816,\"lastChangeTime\":\"407 days, 10:58:01.00\",\"lastInBytes\":1493613492,\"lastOutBytes\":3967956865,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":180,\"opticalTemperature\":46,\"opticalTransmitPower\":243,\"opticalVoltage\":3362,\"outBytes\":3967956865,\"outFlow\":196147,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4476273,\"inBytes\":2635482458,\"inFlow\":4343036,\"lastChangeTime\":\"382 days, 19:29:43.32\",\"lastInBytes\":2635482458,\"lastOutBytes\":1533925735,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":126,\"opticalTemperature\":48,\"opticalTransmitPower\":250,\"opticalVoltage\":3292,\"outBytes\":1533925735,\"outFlow\":133236,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5916603,\"inBytes\":3521773758,\"inFlow\":5748744,\"lastChangeTime\":\"354 days, 8:00:09.67\",\"lastInBytes\":3521773758,\"lastOutBytes\":1624884749,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":200,\"opticalTemperature\":50,\"opticalTransmitPower\":237,\"opticalVoltage\":3302,\"outBytes\":1624884749,\"outFlow\":167859,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8295742,\"inBytes\":2725098448,\"inFlow\":8050308,\"lastChangeTime\":\"354 days, 7:27:14.31\",\"lastInBytes\":2725098448,\"lastOutBytes\":53176881,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":223,\"opticalTemperature\":49,\"opticalTransmitPower\":244,\"opticalVoltage\":3326,\"outBytes\":53176881,\"outFlow\":245433,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4939841,\"inBytes\":2199212478,\"inFlow\":4787702,\"lastChangeTime\":\"322 days, 8:01:11.59\",\"lastInBytes\":2199212478,\"lastOutBytes\":3917067617,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":223,\"opticalTemperature\":45,\"opticalTransmitPower\":242,\"opticalVoltage\":3344,\"outBytes\":3917067617,\"outFlow\":152139,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8421246,\"inBytes\":792722057,\"inFlow\":8163973,\"lastChangeTime\":\"322 days, 8:57:21.08\",\"lastInBytes\":792722057,\"lastOutBytes\":1415022063,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":166,\"opticalTemperature\":49,\"opticalTransmitPower\":240,\"opticalVoltage\":3292,\"outBytes\":1415022063,\"outFlow\":257273,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5685331,\"inBytes\":2267003339,\"inFlow\":5512204,\"lastChangeTime\":\"382 days, 21:33:47.02\",\"lastInBytes\":2267003339,\"lastOutBytes\":3414774792,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":168,\"opticalTemperature\":50,\"opticalTransmitPower\":234,\"opticalVoltage\":3318,\"outBytes\":3414774792,\"outFlow\":173126,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":12407986,\"inBytes\":3899889818,\"inFlow\":12021759,\"lastChangeTime\":\"322 days, 7:13:33.82\",\"lastInBytes\":3899889818,\"lastOutBytes\":4144451150,\"opticalBiasCurrent\":18576,\"opticalReceivePower\":5,\"opticalTemperature\":48,\"opticalTransmitPower\":234,\"opticalVoltage\":3306,\"outBytes\":4144451150,\"outFlow\":386226,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18898617,\"inBytes\":4271227761,\"inFlow\":18314090,\"lastChangeTime\":\"322 days, 7:22:58.30\",\"lastInBytes\":4271227761,\"lastOutBytes\":2496121084,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":206,\"opticalTemperature\":49,\"opticalTransmitPower\":234,\"opticalVoltage\":3316,\"outBytes\":2496121084,\"outFlow\":584527,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":383603,\"inBytes\":234173941,\"inFlow\":370162,\"lastChangeTime\":\"382 days, 21:34:01.85\",\"lastInBytes\":234173941,\"lastOutBytes\":4263033196,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":172,\"opticalTemperature\":44,\"opticalTransmitPower\":257,\"opticalVoltage\":3306,\"outBytes\":4263033196,\"outFlow\":13440,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":572893,\"inBytes\":225911431,\"inFlow\":553739,\"lastChangeTime\":\"173 days, 22:35:53.87\",\"lastInBytes\":225911431,\"lastOutBytes\":4168564209,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":215,\"opticalTemperature\":45,\"opticalTransmitPower\":248,\"opticalVoltage\":3302,\"outBytes\":4168564209,\"outFlow\":19153,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":237,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":247,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10295,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":247,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17927,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":248,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":240,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":241,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3386,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":236,\"opticalVoltage\":3374,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":247,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":248,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33029,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":558,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":19007,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:57.102263000\"}}", + "lastDiagTime": "2026-02-02 14:38:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549613", + "createdBy": "2", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1006040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88459\",\"inUnknownProtos\":\"2023580664\",\"index\":\"634\",\"lastChange\":\"0:01:27.34\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:10:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2769905405\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83644388\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":429408,\"inBytes\":2866339157,\"inFlow\":418952,\"lastChangeTime\":\"0:01:26.89\",\"lastInBytes\":2866339157,\"lastOutBytes\":3891954538,\"outBytes\":3891954538,\"outFlow\":10455,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":286155,\"inBytes\":686850066,\"inFlow\":279210,\"lastChangeTime\":\"0:01:27.12\",\"lastInBytes\":686850066,\"lastOutBytes\":650530471,\"outBytes\":650530471,\"outFlow\":6944,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":286238,\"inBytes\":2619976534,\"inFlow\":279018,\"lastChangeTime\":\"0:01:27.12\",\"lastInBytes\":2619976534,\"lastOutBytes\":2466960792,\"outBytes\":2466960792,\"outFlow\":7220,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":285914,\"inBytes\":4189300592,\"inFlow\":278822,\"lastChangeTime\":\"0:01:27.33\",\"lastInBytes\":4189300592,\"lastOutBytes\":1030950630,\"outBytes\":1030950630,\"outFlow\":7092,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":265860,\"inBytes\":1656337513,\"inFlow\":259074,\"lastChangeTime\":\"66 days, 2:50:37.27\",\"lastInBytes\":1656337513,\"lastOutBytes\":2023510527,\"outBytes\":2023510527,\"outFlow\":6785,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":265522,\"inBytes\":1707787707,\"inFlow\":258830,\"lastChangeTime\":\"0:01:27.33\",\"lastInBytes\":1707787707,\"lastOutBytes\":1525976,\"outBytes\":1525976,\"outFlow\":6691,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":266104,\"inBytes\":863082469,\"inFlow\":259554,\"lastChangeTime\":\"0:01:27.70\",\"lastInBytes\":863082469,\"lastOutBytes\":3046841834,\"outBytes\":3046841834,\"outFlow\":6550,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":398408,\"inBytes\":179063907,\"inFlow\":388670,\"lastChangeTime\":\"0:01:27.70\",\"lastInBytes\":179063907,\"lastOutBytes\":3390054583,\"outBytes\":3390054583,\"outFlow\":9738,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":286313,\"inBytes\":2107836153,\"inFlow\":279129,\"lastChangeTime\":\"0:01:27.70\",\"lastInBytes\":2107836153,\"lastOutBytes\":768583631,\"outBytes\":768583631,\"outFlow\":7183,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":286244,\"inBytes\":3778261696,\"inFlow\":279136,\"lastChangeTime\":\"0:01:27.89\",\"lastInBytes\":3778261696,\"lastOutBytes\":1398618285,\"outBytes\":1398618285,\"outFlow\":7107,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":288081,\"inBytes\":729024885,\"inFlow\":280792,\"lastChangeTime\":\"0:01:27.89\",\"lastInBytes\":729024885,\"lastOutBytes\":1842974180,\"outBytes\":1842974180,\"outFlow\":7288,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":286136,\"inBytes\":3418539182,\"inFlow\":279106,\"lastChangeTime\":\"66 days, 2:50:31.57\",\"lastInBytes\":3418539182,\"lastOutBytes\":4020309016,\"outBytes\":4020309016,\"outFlow\":7029,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1088258,\"inFlow\":0,\"lastChangeTime\":\"31 days, 23:53:42.01\",\"lastInBytes\":1088258,\"lastOutBytes\":26216914,\"outBytes\":26216914,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":275,\"inBytes\":372228941,\"inFlow\":1,\"lastChangeTime\":\"31 days, 22:29:12.33\",\"lastInBytes\":372228941,\"lastOutBytes\":3117269168,\"outBytes\":3117269168,\"outFlow\":274,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3467010,\"inBytes\":2967103487,\"inFlow\":88595,\"lastChangeTime\":\"31 days, 23:28:03.20\",\"lastInBytes\":2967103487,\"lastOutBytes\":1044671712,\"outBytes\":1044671712,\"outFlow\":3378414,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.830939000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549614", + "createdBy": "2", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1006040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89617\",\"inUnknownProtos\":\"3875613708\",\"index\":\"635\",\"lastChange\":\"85 days, 3:12:07.57\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:cf:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"695607546\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83677685\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":1005791,\"inBytes\":3761285274,\"inFlow\":981965,\"lastChangeTime\":\"225 days, 6:32:26.86\",\"lastInBytes\":3761285274,\"lastOutBytes\":3388163086,\"outBytes\":3388163086,\"outFlow\":23825,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":298600,\"inBytes\":951562069,\"inFlow\":290243,\"lastChangeTime\":\"225 days, 6:33:41.80\",\"lastInBytes\":951562069,\"lastOutBytes\":3217327320,\"outBytes\":3217327320,\"outFlow\":8356,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":428595,\"inBytes\":135437394,\"inFlow\":418099,\"lastChangeTime\":\"225 days, 6:31:10.92\",\"lastInBytes\":135437394,\"lastOutBytes\":728636153,\"outBytes\":728636153,\"outFlow\":10495,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":430502,\"inBytes\":304441198,\"inFlow\":420007,\"lastChangeTime\":\"225 days, 6:31:18.24\",\"lastInBytes\":304441198,\"lastOutBytes\":2448830271,\"outBytes\":2448830271,\"outFlow\":10495,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":460967,\"inBytes\":2564295341,\"inFlow\":451308,\"lastChangeTime\":\"225 days, 6:31:29.67\",\"lastInBytes\":2564295341,\"lastOutBytes\":444624099,\"outBytes\":444624099,\"outFlow\":9658,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428755,\"inBytes\":4272105617,\"inFlow\":418373,\"lastChangeTime\":\"225 days, 6:31:29.18\",\"lastInBytes\":4272105617,\"lastOutBytes\":3875613708,\"outBytes\":3875613708,\"outFlow\":10381,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":429640,\"inBytes\":1554392735,\"inFlow\":419161,\"lastChangeTime\":\"225 days, 6:31:56.13\",\"lastInBytes\":1554392735,\"lastOutBytes\":2414698722,\"outBytes\":2414698722,\"outFlow\":10479,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":480688,\"inBytes\":2586104547,\"inFlow\":469442,\"lastChangeTime\":\"225 days, 6:32:08.86\",\"lastInBytes\":2586104547,\"lastOutBytes\":2537290001,\"outBytes\":2537290001,\"outFlow\":11245,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428126,\"inBytes\":1616484621,\"inFlow\":418894,\"lastChangeTime\":\"225 days, 6:32:25.81\",\"lastInBytes\":1616484621,\"lastOutBytes\":2008958323,\"outBytes\":2008958323,\"outFlow\":9231,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428715,\"inBytes\":306073392,\"inFlow\":418236,\"lastChangeTime\":\"225 days, 6:32:29.76\",\"lastInBytes\":306073392,\"lastOutBytes\":856060313,\"outBytes\":856060313,\"outFlow\":10479,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7813006,\"inFlow\":0,\"lastChangeTime\":\"60 days, 11:49:35.69\",\"lastInBytes\":7813006,\"lastOutBytes\":364511196,\"outBytes\":364511196,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":47857,\"inFlow\":0,\"lastChangeTime\":\"85 days, 3:09:58.06\",\"lastInBytes\":47857,\"lastOutBytes\":4354673,\"outBytes\":4354673,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":279,\"inBytes\":341450209,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.21\",\"lastInBytes\":341450209,\"lastOutBytes\":3130588378,\"outBytes\":3130588378,\"outFlow\":278,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4522874,\"inBytes\":3977454430,\"inFlow\":111698,\"lastChangeTime\":\"85 days, 3:12:07.57\",\"lastInBytes\":3977454430,\"lastOutBytes\":3162390713,\"outBytes\":3162390713,\"outFlow\":4411175,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.798374000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549615", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1006040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89629\",\"inUnknownProtos\":\"1384297741\",\"index\":\"635\",\"lastChange\":\"60 days, 11:16:45.07\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:bd:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3925615923\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"4502\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":397385,\"inBytes\":3355002226,\"inFlow\":387692,\"lastChangeTime\":\"31 days, 22:50:39.01\",\"lastInBytes\":3355002226,\"lastOutBytes\":3626871482,\"outBytes\":3626871482,\"outFlow\":9693,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":883471,\"inBytes\":3512415806,\"inFlow\":865090,\"lastChangeTime\":\"31 days, 22:50:19.19\",\"lastInBytes\":3512415806,\"lastOutBytes\":2655714036,\"outBytes\":2655714036,\"outFlow\":18381,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":399049,\"inBytes\":2934500261,\"inFlow\":389253,\"lastChangeTime\":\"125 days, 2:33:57.90\",\"lastInBytes\":2934500261,\"lastOutBytes\":388286303,\"outBytes\":388286303,\"outFlow\":9795,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":397821,\"inBytes\":2881880844,\"inFlow\":389093,\"lastChangeTime\":\"31 days, 22:49:49.44\",\"lastInBytes\":2881880844,\"lastOutBytes\":1932065470,\"outBytes\":1932065470,\"outFlow\":8728,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":398176,\"inBytes\":2687197094,\"inFlow\":388499,\"lastChangeTime\":\"203 days, 1:56:08.72\",\"lastInBytes\":2687197094,\"lastOutBytes\":1384199563,\"outBytes\":1384199563,\"outFlow\":9676,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":264747,\"inBytes\":1054311708,\"inFlow\":258216,\"lastChangeTime\":\"272 days, 23:49:47.63\",\"lastInBytes\":1054311708,\"lastOutBytes\":3501809243,\"outBytes\":3501809243,\"outFlow\":6530,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":423060,\"inFlow\":0,\"lastChangeTime\":\"31 days, 22:52:35.51\",\"lastInBytes\":423060,\"lastOutBytes\":9038987,\"outBytes\":9038987,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3979186163,\"inFlow\":0,\"lastChangeTime\":\"31 days, 22:47:24.84\",\"lastInBytes\":3979186163,\"lastOutBytes\":1837194600,\"outBytes\":1837194600,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":2},{\"flow\":427329,\"inBytes\":2404163978,\"inFlow\":416844,\"lastChangeTime\":\"268 days, 22:43:42.83\",\"lastInBytes\":2404163978,\"lastOutBytes\":1084955747,\"outBytes\":1084955747,\"outFlow\":10485,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1973713,\"inFlow\":0,\"lastChangeTime\":\"213 days, 23:11:48.08\",\"lastInBytes\":1973713,\"lastOutBytes\":81212401,\"outBytes\":81212401,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":275,\"inBytes\":372343418,\"inFlow\":1,\"lastChangeTime\":\"0:01:20.43\",\"lastInBytes\":372343418,\"lastOutBytes\":1034689134,\"outBytes\":1034689134,\"outFlow\":274,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3157144,\"inBytes\":991092945,\"inFlow\":76013,\"lastChangeTime\":\"60 days, 11:16:45.07\",\"lastInBytes\":991092945,\"lastOutBytes\":330491358,\"outBytes\":330491358,\"outFlow\":3081131,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.810369000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549616", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:54", + "echoMap": {}, + "deviceId": "1006040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89877\",\"inUnknownProtos\":\"1251614309\",\"index\":\"635\",\"lastChange\":\"32 days, 0:26:17.44\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e6:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3621039882\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83672105\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:54\",\"info\":{\"portInfoList\":[{\"flow\":399081,\"inBytes\":770759070,\"inFlow\":389348,\"lastChangeTime\":\"230 days, 23:27:24.04\",\"lastInBytes\":770759070,\"lastOutBytes\":61267798,\"outBytes\":61267798,\"outFlow\":9733,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":398853,\"inBytes\":2822753127,\"inFlow\":389112,\"lastChangeTime\":\"230 days, 23:27:02.38\",\"lastInBytes\":2822753127,\"lastOutBytes\":2120733128,\"outBytes\":2120733128,\"outFlow\":9740,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":467339,\"inBytes\":3072749110,\"inFlow\":457687,\"lastChangeTime\":\"230 days, 23:27:59.16\",\"lastInBytes\":3072749110,\"lastOutBytes\":395833432,\"outBytes\":395833432,\"outFlow\":9651,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":456520,\"inBytes\":2668855981,\"inFlow\":447100,\"lastChangeTime\":\"230 days, 23:27:45.16\",\"lastInBytes\":2668855981,\"lastOutBytes\":2513735087,\"outBytes\":2513735087,\"outFlow\":9419,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":856683,\"inBytes\":3733698284,\"inFlow\":839052,\"lastChangeTime\":\"230 days, 23:28:24.03\",\"lastInBytes\":3733698284,\"lastOutBytes\":118898931,\"outBytes\":118898931,\"outFlow\":17630,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":397134,\"inBytes\":2513672008,\"inFlow\":387534,\"lastChangeTime\":\"230 days, 23:28:27.05\",\"lastInBytes\":2513672008,\"lastOutBytes\":1251614309,\"outBytes\":1251614309,\"outFlow\":9599,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":418096,\"inBytes\":1494004270,\"inFlow\":408874,\"lastChangeTime\":\"230 days, 23:28:44.16\",\"lastInBytes\":1494004270,\"lastOutBytes\":35499725,\"outBytes\":35499725,\"outFlow\":9221,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":396570,\"inBytes\":1481227924,\"inFlow\":386854,\"lastChangeTime\":\"230 days, 23:26:09.74\",\"lastInBytes\":1481227924,\"lastOutBytes\":957548183,\"outBytes\":957548183,\"outFlow\":9715,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":393423,\"inBytes\":2691052432,\"inFlow\":385548,\"lastChangeTime\":\"230 days, 23:26:39.87\",\"lastInBytes\":2691052432,\"lastOutBytes\":1835810950,\"outBytes\":1835810950,\"outFlow\":7875,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4819786,\"inFlow\":0,\"lastChangeTime\":\"211 days, 4:58:07.02\",\"lastInBytes\":4819786,\"lastOutBytes\":181165105,\"outBytes\":181165105,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":258,\"inBytes\":341301651,\"inFlow\":1,\"lastChangeTime\":\"0:01:35.77\",\"lastInBytes\":341301651,\"lastOutBytes\":3105056736,\"outBytes\":3105056736,\"outFlow\":257,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4202483,\"inBytes\":428715057,\"inFlow\":96600,\"lastChangeTime\":\"32 days, 0:26:17.43\",\"lastInBytes\":428715057,\"lastOutBytes\":1094672870,\"outBytes\":1094672870,\"outFlow\":4105882,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.791057000\"}}", + "lastDiagTime": "2026-02-02 14:37:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549617", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1006040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88440\",\"inUnknownProtos\":\"730781593\",\"index\":\"635\",\"lastChange\":\"31 days, 22:43:18.03\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:cd:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2327752081\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83629188\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":400283,\"inBytes\":3682107392,\"inFlow\":390448,\"lastChangeTime\":\"0:01:27.54\",\"lastInBytes\":3682107392,\"lastOutBytes\":2604810620,\"outBytes\":2604810620,\"outFlow\":9834,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":401348,\"inBytes\":2090267444,\"inFlow\":391476,\"lastChangeTime\":\"0:01:27.54\",\"lastInBytes\":2090267444,\"lastOutBytes\":678105971,\"outBytes\":678105971,\"outFlow\":9871,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":401048,\"inBytes\":1546059408,\"inFlow\":391266,\"lastChangeTime\":\"0:01:28.08\",\"lastInBytes\":1546059408,\"lastOutBytes\":133714654,\"outBytes\":133714654,\"outFlow\":9782,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":400981,\"inBytes\":864363656,\"inFlow\":391247,\"lastChangeTime\":\"0:01:27.52\",\"lastInBytes\":864363656,\"lastOutBytes\":31629344,\"outBytes\":31629344,\"outFlow\":9733,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":401159,\"inBytes\":2144006337,\"inFlow\":391216,\"lastChangeTime\":\"206 days, 13:37:26.90\",\"lastInBytes\":2144006337,\"lastOutBytes\":1381878408,\"outBytes\":1381878408,\"outFlow\":9943,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":267721,\"inBytes\":417035428,\"inFlow\":261231,\"lastChangeTime\":\"0:01:27.53\",\"lastInBytes\":417035428,\"lastOutBytes\":730781593,\"outBytes\":730781593,\"outFlow\":6490,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1070652,\"inBytes\":1539251276,\"inFlow\":1045340,\"lastChangeTime\":\"138 days, 8:31:44.12\",\"lastInBytes\":1539251276,\"lastOutBytes\":3689741449,\"outBytes\":3689741449,\"outFlow\":25312,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":950819,\"inBytes\":912286201,\"inFlow\":930515,\"lastChangeTime\":\"0:01:28.09\",\"lastInBytes\":912286201,\"lastOutBytes\":3204736215,\"outBytes\":3204736215,\"outFlow\":20304,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":430238,\"inBytes\":2782267480,\"inFlow\":420390,\"lastChangeTime\":\"0:01:28.30\",\"lastInBytes\":2782267480,\"lastOutBytes\":1811474023,\"outBytes\":1811474023,\"outFlow\":9847,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":902700,\"inBytes\":3485312663,\"inFlow\":884577,\"lastChangeTime\":\"0:01:28.09\",\"lastInBytes\":3485312663,\"lastOutBytes\":2090835456,\"outBytes\":2090835456,\"outFlow\":18122,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":267550,\"inBytes\":3758955058,\"inFlow\":261001,\"lastChangeTime\":\"0:01:27.54\",\"lastInBytes\":3758955058,\"lastOutBytes\":565969707,\"outBytes\":565969707,\"outFlow\":6548,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":97904,\"inFlow\":0,\"lastChangeTime\":\"31 days, 22:43:19.40\",\"lastInBytes\":97904,\"lastOutBytes\":3020009,\"outBytes\":3020009,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7453845,\"inFlow\":0,\"lastChangeTime\":\"265 days, 11:57:28.46\",\"lastInBytes\":7453845,\"lastOutBytes\":915576837,\"outBytes\":915576837,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":266,\"inBytes\":330853390,\"inFlow\":1,\"lastChangeTime\":\"0:01:27.53\",\"lastInBytes\":330853390,\"lastOutBytes\":3123822060,\"outBytes\":3123822060,\"outFlow\":264,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5916188,\"inBytes\":962506452,\"inFlow\":141670,\"lastChangeTime\":\"31 days, 22:43:18.02\",\"lastInBytes\":962506452,\"lastOutBytes\":1767990206,\"outBytes\":1767990206,\"outFlow\":5774517,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.808611000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549618", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:54", + "echoMap": {}, + "deviceId": "1006040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89112\",\"inUnknownProtos\":\"1162907582\",\"index\":\"635\",\"lastChange\":\"0:01:15.30\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:33:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3435982248\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:54\",\"info\":{\"portInfoList\":[{\"flow\":397894,\"inBytes\":2694019944,\"inFlow\":388251,\"lastChangeTime\":\"0:01:17.40\",\"lastInBytes\":2694019944,\"lastOutBytes\":3146166286,\"outBytes\":3146166286,\"outFlow\":9643,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":398969,\"inBytes\":2842953168,\"inFlow\":389058,\"lastChangeTime\":\"206 days, 14:22:32.78\",\"lastInBytes\":2842953168,\"lastOutBytes\":2311368891,\"outBytes\":2311368891,\"outFlow\":9910,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":405521,\"inBytes\":1943109702,\"inFlow\":397245,\"lastChangeTime\":\"0:01:17.89\",\"lastInBytes\":1943109702,\"lastOutBytes\":550901150,\"outBytes\":550901150,\"outFlow\":8276,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":397097,\"inBytes\":1993823870,\"inFlow\":387628,\"lastChangeTime\":\"203 days, 2:05:45.89\",\"lastInBytes\":1993823870,\"lastOutBytes\":1653161567,\"outBytes\":1653161567,\"outFlow\":9469,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1062604,\"inBytes\":3097562507,\"inFlow\":1036946,\"lastChangeTime\":\"206 days, 14:22:29.48\",\"lastInBytes\":3097562507,\"lastOutBytes\":2821356933,\"outBytes\":2821356933,\"outFlow\":25657,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":397847,\"inBytes\":2765989769,\"inFlow\":388009,\"lastChangeTime\":\"206 days, 14:22:24.02\",\"lastInBytes\":2765989769,\"lastOutBytes\":1162806765,\"outBytes\":1162806765,\"outFlow\":9837,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":396998,\"inBytes\":344737989,\"inFlow\":387330,\"lastChangeTime\":\"206 days, 14:22:29.16\",\"lastInBytes\":344737989,\"lastOutBytes\":1015701901,\"outBytes\":1015701901,\"outFlow\":9668,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":275,\"inBytes\":330834054,\"inFlow\":1,\"lastChangeTime\":\"0:01:17.39\",\"lastInBytes\":330834054,\"lastOutBytes\":3155280081,\"outBytes\":3155280081,\"outFlow\":274,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3470855,\"inBytes\":397713088,\"inFlow\":86371,\"lastChangeTime\":\"0:01:15.30\",\"lastInBytes\":397713088,\"lastOutBytes\":303880662,\"outBytes\":303880662,\"outFlow\":3384484,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.965994000\"}}", + "lastDiagTime": "2026-02-02 14:37:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549619", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1006040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88433\",\"inUnknownProtos\":\"3083982822\",\"index\":\"635\",\"lastChange\":\"0:01:16.80\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:bc:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2919695023\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83617879\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":446301,\"inBytes\":1419185329,\"inFlow\":435255,\"lastChangeTime\":\"0:01:21.43\",\"lastInBytes\":1419185329,\"lastOutBytes\":3938115206,\"outBytes\":3938115206,\"outFlow\":11046,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":483263,\"inBytes\":808036434,\"inFlow\":473259,\"lastChangeTime\":\"0:01:19.61\",\"lastInBytes\":808036434,\"lastOutBytes\":1671499778,\"outBytes\":1671499778,\"outFlow\":10003,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":429693,\"inBytes\":4064553871,\"inFlow\":419082,\"lastChangeTime\":\"206 days, 13:26:23.02\",\"lastInBytes\":4064553871,\"lastOutBytes\":835221401,\"outBytes\":835221401,\"outFlow\":10611,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":465491,\"inBytes\":2984808956,\"inFlow\":455725,\"lastChangeTime\":\"0:01:19.60\",\"lastInBytes\":2984808956,\"lastOutBytes\":426985354,\"outBytes\":426985354,\"outFlow\":9765,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":400545,\"inBytes\":2682114004,\"inFlow\":389882,\"lastChangeTime\":\"206 days, 13:26:25.50\",\"lastInBytes\":2682114004,\"lastOutBytes\":4133969193,\"outBytes\":4133969193,\"outFlow\":10662,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":398694,\"inBytes\":1118496044,\"inFlow\":390347,\"lastChangeTime\":\"0:01:19.61\",\"lastInBytes\":1118496044,\"lastOutBytes\":3083905223,\"outBytes\":3083905223,\"outFlow\":8346,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":398794,\"inBytes\":1153956568,\"inFlow\":389080,\"lastChangeTime\":\"0:01:18.79\",\"lastInBytes\":1153956568,\"lastOutBytes\":4218545884,\"outBytes\":4218545884,\"outFlow\":9714,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":395516,\"inBytes\":1783812497,\"inFlow\":385931,\"lastChangeTime\":\"138 days, 8:20:32.61\",\"lastInBytes\":1783812497,\"lastOutBytes\":1770488022,\"outBytes\":1770488022,\"outFlow\":9585,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":286401,\"inBytes\":3820227447,\"inFlow\":279237,\"lastChangeTime\":\"203 days, 1:52:01.24\",\"lastInBytes\":3820227447,\"lastOutBytes\":1143284323,\"outBytes\":1143284323,\"outFlow\":7163,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":429654,\"inBytes\":237411116,\"inFlow\":419043,\"lastChangeTime\":\"206 days, 13:26:29.09\",\"lastInBytes\":237411116,\"lastOutBytes\":1879749492,\"outBytes\":1879749492,\"outFlow\":10611,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":428383,\"inBytes\":3825214144,\"inFlow\":417987,\"lastChangeTime\":\"206 days, 13:26:21.95\",\"lastInBytes\":3825214144,\"lastOutBytes\":4142819738,\"outBytes\":4142819738,\"outFlow\":10395,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":285248,\"inBytes\":3481296097,\"inFlow\":278096,\"lastChangeTime\":\"0:01:19.60\",\"lastInBytes\":3481296097,\"lastOutBytes\":1521668514,\"outBytes\":1521668514,\"outFlow\":7152,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":971226,\"inBytes\":440726498,\"inFlow\":947257,\"lastChangeTime\":\"206 days, 13:26:34.10\",\"lastInBytes\":440726498,\"lastOutBytes\":658802785,\"outBytes\":658802785,\"outFlow\":23969,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":428942,\"inBytes\":2826509575,\"inFlow\":418352,\"lastChangeTime\":\"206 days, 13:26:24.23\",\"lastInBytes\":2826509575,\"lastOutBytes\":2082867593,\"outBytes\":2082867593,\"outFlow\":10589,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":278,\"inBytes\":330834576,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.78\",\"lastInBytes\":330834576,\"lastOutBytes\":3120923662,\"outBytes\":3120923662,\"outFlow\":277,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5944292,\"inBytes\":3805953355,\"inFlow\":146616,\"lastChangeTime\":\"0:01:16.79\",\"lastInBytes\":3805953355,\"lastOutBytes\":628654592,\"outBytes\":628654592,\"outFlow\":5797675,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.806174000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549620", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1006040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"190045\",\"inUnknownProtos\":\"433195762\",\"index\":\"635\",\"lastChange\":\"382 days, 21:55:25.88\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:36:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2065667812\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"298246254\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":401177,\"inBytes\":2464707472,\"inFlow\":391376,\"lastChangeTime\":\"31 days, 20:13:33.95\",\"lastInBytes\":2464707472,\"lastOutBytes\":1427778786,\"outBytes\":1427778786,\"outFlow\":9801,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":399574,\"inBytes\":4027095951,\"inFlow\":389774,\"lastChangeTime\":\"31 days, 20:13:38.86\",\"lastInBytes\":4027095951,\"lastOutBytes\":1399238963,\"outBytes\":1399238963,\"outFlow\":9800,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":399486,\"inBytes\":3703566188,\"inFlow\":389712,\"lastChangeTime\":\"31 days, 20:13:34.14\",\"lastInBytes\":3703566188,\"lastOutBytes\":2949043913,\"outBytes\":2949043913,\"outFlow\":9774,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1069938,\"inBytes\":1631452130,\"inFlow\":1044365,\"lastChangeTime\":\"31 days, 20:13:26.60\",\"lastInBytes\":1631452130,\"lastOutBytes\":91818004,\"outBytes\":91818004,\"outFlow\":25573,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2054719422,\"inFlow\":0,\"lastChangeTime\":\"322 days, 8:08:54.93\",\"lastInBytes\":2054719422,\"lastOutBytes\":3482897541,\"outBytes\":3482897541,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":542528,\"inBytes\":2044367587,\"inFlow\":530595,\"lastChangeTime\":\"322 days, 8:14:59.90\",\"lastInBytes\":2044367587,\"lastOutBytes\":433195762,\"outBytes\":433195762,\"outFlow\":11932,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":423425,\"inBytes\":439028125,\"inFlow\":414739,\"lastChangeTime\":\"249 days, 14:56:52.99\",\"lastInBytes\":439028125,\"lastOutBytes\":4102155256,\"outBytes\":4102155256,\"outFlow\":8685,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404675,\"inBytes\":141663553,\"inFlow\":394687,\"lastChangeTime\":\"31 days, 20:21:27.93\",\"lastInBytes\":141663553,\"lastOutBytes\":1633231118,\"outBytes\":1633231118,\"outFlow\":9988,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":401702,\"inBytes\":202889931,\"inFlow\":391846,\"lastChangeTime\":\"108 days, 4:24:37.40\",\"lastInBytes\":202889931,\"lastOutBytes\":1423540427,\"outBytes\":1423540427,\"outFlow\":9856,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":170636,\"inFlow\":0,\"lastChangeTime\":\"322 days, 8:08:20.04\",\"lastInBytes\":170636,\"lastOutBytes\":1948781,\"outBytes\":1948781,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1761343,\"inFlow\":0,\"lastChangeTime\":\"322 days, 8:13:51.69\",\"lastInBytes\":1761343,\"lastOutBytes\":98800984,\"outBytes\":98800984,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":261,\"inBytes\":330834333,\"inFlow\":1,\"lastChangeTime\":\"173 days, 22:00:24.30\",\"lastInBytes\":330834333,\"lastOutBytes\":1976884819,\"outBytes\":1976884819,\"outFlow\":260,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4060648,\"inBytes\":3472782747,\"inFlow\":99833,\"lastChangeTime\":\"382 days, 21:55:25.87\",\"lastInBytes\":3472782747,\"lastOutBytes\":779362685,\"outBytes\":779362685,\"outFlow\":3960815,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.812861000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549621", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:54", + "echoMap": {}, + "deviceId": "1006040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88632\",\"inUnknownProtos\":\"591809282\",\"index\":\"635\",\"lastChange\":\"0:01:21.16\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c5:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3430050732\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83727780\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:54\",\"info\":{\"portInfoList\":[{\"flow\":397975,\"inBytes\":135923279,\"inFlow\":388458,\"lastChangeTime\":\"265 days, 14:42:46.63\",\"lastInBytes\":135923279,\"lastOutBytes\":1924800503,\"outBytes\":1924800503,\"outFlow\":9517,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1055273,\"inBytes\":1180722334,\"inFlow\":1030384,\"lastChangeTime\":\"138 days, 10:04:35.89\",\"lastInBytes\":1180722334,\"lastOutBytes\":3361469588,\"outBytes\":3361469588,\"outFlow\":24889,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":931547,\"inBytes\":1184492576,\"inFlow\":908788,\"lastChangeTime\":\"206 days, 15:10:24.62\",\"lastInBytes\":1184492576,\"lastOutBytes\":976767327,\"outBytes\":976767327,\"outFlow\":22759,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1038112,\"inBytes\":293160326,\"inFlow\":1012828,\"lastChangeTime\":\"206 days, 15:10:20.36\",\"lastInBytes\":293160326,\"lastOutBytes\":1593671213,\"outBytes\":1593671213,\"outFlow\":25284,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":20798140,\"inBytes\":2311938983,\"inFlow\":420325,\"lastChangeTime\":\"0:01:23.76\",\"lastInBytes\":2311938983,\"lastOutBytes\":2710249375,\"outBytes\":2710249375,\"outFlow\":20377814,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":428782,\"inBytes\":3766834967,\"inFlow\":418276,\"lastChangeTime\":\"0:01:23.76\",\"lastInBytes\":3766834967,\"lastOutBytes\":591809282,\"outBytes\":591809282,\"outFlow\":10505,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":286837,\"inBytes\":1473846491,\"inFlow\":279650,\"lastChangeTime\":\"0:01:23.13\",\"lastInBytes\":1473846491,\"lastOutBytes\":1813255288,\"outBytes\":1813255288,\"outFlow\":7187,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":428744,\"inBytes\":1562034842,\"inFlow\":418234,\"lastChangeTime\":\"0:01:23.75\",\"lastInBytes\":1562034842,\"lastOutBytes\":344627860,\"outBytes\":344627860,\"outFlow\":10509,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":397943,\"inBytes\":2709174379,\"inFlow\":388211,\"lastChangeTime\":\"0:01:23.12\",\"lastInBytes\":2709174379,\"lastOutBytes\":21667410,\"outBytes\":21667410,\"outFlow\":9731,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1083116,\"inBytes\":473553683,\"inFlow\":1057380,\"lastChangeTime\":\"206 days, 15:10:16.58\",\"lastInBytes\":473553683,\"lastOutBytes\":1057712390,\"outBytes\":1057712390,\"outFlow\":25735,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1061839,\"inBytes\":817317263,\"inFlow\":1036316,\"lastChangeTime\":\"206 days, 15:10:31.32\",\"lastInBytes\":817317263,\"lastOutBytes\":3309974057,\"outBytes\":3309974057,\"outFlow\":25522,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":398651,\"inBytes\":4211443257,\"inFlow\":388895,\"lastChangeTime\":\"0:01:23.13\",\"lastInBytes\":4211443257,\"lastOutBytes\":2275478750,\"outBytes\":2275478750,\"outFlow\":9755,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":397007,\"inBytes\":221978918,\"inFlow\":387410,\"lastChangeTime\":\"213 days, 4:47:49.26\",\"lastInBytes\":221978918,\"lastOutBytes\":595102880,\"outBytes\":595102880,\"outFlow\":9596,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":397167,\"inBytes\":1212411260,\"inFlow\":387578,\"lastChangeTime\":\"220 days, 15:04:51.24\",\"lastInBytes\":1212411260,\"lastOutBytes\":2621238628,\"outBytes\":2621238628,\"outFlow\":9588,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":254,\"inBytes\":330836146,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.12\",\"lastInBytes\":330836146,\"lastOutBytes\":3197482682,\"outBytes\":3197482682,\"outFlow\":252,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9335661,\"inBytes\":3138362753,\"inFlow\":234425,\"lastChangeTime\":\"0:01:21.16\",\"lastInBytes\":3138362753,\"lastOutBytes\":45986546,\"outBytes\":45986546,\"outFlow\":9101236,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.796732000\"}}", + "lastDiagTime": "2026-02-02 14:37:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549622", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:54", + "echoMap": {}, + "deviceId": "1006040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface140\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88690\",\"inUnknownProtos\":\"2613756864\",\"index\":\"634\",\"lastChange\":\"0:01:21.13\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e1:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"432007712\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"83715460\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:54\",\"info\":{\"portInfoList\":[{\"flow\":1129646,\"inBytes\":1463788827,\"inFlow\":1103266,\"lastChangeTime\":\"138 days, 9:55:02.94\",\"lastInBytes\":1463788827,\"lastOutBytes\":68358396,\"outBytes\":68358396,\"outFlow\":26379,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1037467,\"inBytes\":611691988,\"inFlow\":1012766,\"lastChangeTime\":\"206 days, 15:00:44.11\",\"lastInBytes\":611691988,\"lastOutBytes\":643591770,\"outBytes\":643591770,\"outFlow\":24701,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1047214,\"inBytes\":3037889493,\"inFlow\":1021520,\"lastChangeTime\":\"206 days, 15:00:37.52\",\"lastInBytes\":3037889493,\"lastOutBytes\":115890456,\"outBytes\":115890456,\"outFlow\":25694,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1061083,\"inBytes\":3401696097,\"inFlow\":1035523,\"lastChangeTime\":\"206 days, 15:00:39.04\",\"lastInBytes\":3401696097,\"lastOutBytes\":1055060622,\"outBytes\":1055060622,\"outFlow\":25560,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1060572,\"inBytes\":871306397,\"inFlow\":1035100,\"lastChangeTime\":\"206 days, 15:00:34.44\",\"lastInBytes\":871306397,\"lastOutBytes\":2204665571,\"outBytes\":2204665571,\"outFlow\":25472,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":397794,\"inBytes\":548687183,\"inFlow\":388044,\"lastChangeTime\":\"0:01:22.96\",\"lastInBytes\":548687183,\"lastOutBytes\":2613756864,\"outBytes\":2613756864,\"outFlow\":9750,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":399752,\"inBytes\":1090158582,\"inFlow\":389998,\"lastChangeTime\":\"0:01:23.70\",\"lastInBytes\":1090158582,\"lastOutBytes\":550310226,\"outBytes\":550310226,\"outFlow\":9753,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":398118,\"inBytes\":1609436538,\"inFlow\":388353,\"lastChangeTime\":\"0:01:22.96\",\"lastInBytes\":1609436538,\"lastOutBytes\":1341834418,\"outBytes\":1341834418,\"outFlow\":9765,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1050050,\"inBytes\":2693241678,\"inFlow\":1025357,\"lastChangeTime\":\"138 days, 9:55:00.42\",\"lastInBytes\":2693241678,\"lastOutBytes\":779164799,\"outBytes\":779164799,\"outFlow\":24692,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1055571,\"inBytes\":1152773348,\"inFlow\":1030833,\"lastChangeTime\":\"138 days, 9:54:52.88\",\"lastInBytes\":1152773348,\"lastOutBytes\":112181589,\"outBytes\":112181589,\"outFlow\":24737,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1062678,\"inBytes\":1729300522,\"inFlow\":1037131,\"lastChangeTime\":\"206 days, 15:00:50.27\",\"lastInBytes\":1729300522,\"lastOutBytes\":2291534383,\"outBytes\":2291534383,\"outFlow\":25546,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1077854,\"inBytes\":3866087926,\"inFlow\":1051934,\"lastChangeTime\":\"206 days, 15:00:42.63\",\"lastInBytes\":3866087926,\"lastOutBytes\":2972120419,\"outBytes\":2972120419,\"outFlow\":25919,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":1052115,\"inBytes\":3691188801,\"inFlow\":1027376,\"lastChangeTime\":\"206 days, 15:00:36.44\",\"lastInBytes\":3691188801,\"lastOutBytes\":82771846,\"outBytes\":82771846,\"outFlow\":24738,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":1103698,\"inBytes\":1428850218,\"inFlow\":1076933,\"lastChangeTime\":\"206 days, 15:00:37.66\",\"lastInBytes\":1428850218,\"lastOutBytes\":1124424958,\"outBytes\":1124424958,\"outFlow\":26764,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":265681,\"inBytes\":1797554000,\"inFlow\":259118,\"lastChangeTime\":\"66 days, 3:59:46.81\",\"lastInBytes\":1797554000,\"lastOutBytes\":1115899357,\"outBytes\":1115899357,\"outFlow\":6562,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":260,\"inBytes\":334725850,\"inFlow\":1,\"lastChangeTime\":\"213 days, 4:47:14.22\",\"lastInBytes\":334725850,\"lastOutBytes\":3397383304,\"outBytes\":3397383304,\"outFlow\":259,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":13276351,\"inBytes\":320936,\"inFlow\":331528,\"lastChangeTime\":\"0:01:21.12\",\"lastInBytes\":320936,\"lastOutBytes\":2083187789,\"outBytes\":2083187789,\"outFlow\":12944823,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:49.794568000\"}}", + "lastDiagTime": "2026-02-02 14:37:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549623", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1006040012", + "name": "华为前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif140\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"347 days, 23:46:07.84\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:48\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":273708,\"inBytes\":3511882875,\"inFlow\":267118,\"lastChangeTime\":\"425 days, 19:15:02.79\",\"lastInBytes\":3511882875,\"lastOutBytes\":3415530443,\"outBytes\":3415530443,\"outFlow\":6590,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5764,\"inFlow\":0,\"lastChangeTime\":\"347 days, 23:43:44.18\",\"lastInBytes\":5764,\"lastOutBytes\":1976,\"outBytes\":1976,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":274,\"inBytes\":619175914,\"inFlow\":137,\"lastChangeTime\":\"2:20:46.54\",\"lastInBytes\":619175914,\"lastOutBytes\":1658336133,\"outBytes\":1658336133,\"outFlow\":136,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":273853,\"inBytes\":3934508558,\"inFlow\":7357,\"lastChangeTime\":\"347 days, 23:43:01.05\",\"lastInBytes\":3934508558,\"lastOutBytes\":337498462,\"outBytes\":337498462,\"outFlow\":266495,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:05.241857000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589883693334549624", + "createdBy": "0", + "createdTime": "2025-11-28 14:07:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1006040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.140.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif140\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"151 days, 12:32:16.42\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:f7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.140.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:32\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409462,\"inBytes\":1058325931,\"inFlow\":400082,\"lastChangeTime\":\"182 days, 11:07:33.16\",\"lastInBytes\":1058325931,\"lastOutBytes\":1018617919,\"outBytes\":1018617919,\"outFlow\":9380,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"2:05:36.60\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":229,\"inBytes\":317046067,\"inFlow\":1,\"lastChangeTime\":\"2:05:47.30\",\"lastInBytes\":317046067,\"lastOutBytes\":2107992598,\"outBytes\":2107992598,\"outFlow\":227,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408278,\"inBytes\":3057547312,\"inFlow\":10438,\"lastChangeTime\":\"139 days, 0:38:04.39\",\"lastInBytes\":3057547312,\"lastOutBytes\":1338950164,\"outBytes\":1338950164,\"outFlow\":397839,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:01.936760000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589883693334549609", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1006110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.139.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.02\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"108 days, 9:03:54.42\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10420263\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27930839\",\"inOctets\":\"3553328920\",\"inUcastPkts\":\"1354232286\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:f6:84:40\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"411287769\",\"outQLen\":\"0\",\"outUcastPkts\":\"1267720849\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.139.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1007": { + "ndmAlarmHost": [ + { + "id": "690079052651216070", + "createdBy": null, + "createdTime": "2025-10-18 15:07:30", + "updatedBy": null, + "updatedTime": "2025-10-18 15:07:30", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.141.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "693410104731945021", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060001", + "name": "[621](10)伊犁气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703067005007621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945022", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060002", + "name": "[617](10)伊犁通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945023", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060003", + "name": "[622](10)伊犁消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703068005007622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945024", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060004", + "name": "[342](10)伊犁4#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945025", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060005", + "name": "[618](10)伊犁通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945026", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060006", + "name": "[616](10)伊犁变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703021006007616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945027", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1007060007", + "name": "[101](10)伊犁上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702007006007101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945028", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1007060008", + "name": "[609](10)伊犁环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703053005007609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945029", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1007060009", + "name": "[615](10)伊犁变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703021006007615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945030", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1007060010", + "name": "[102](10)伊犁上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702007006007102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945031", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1007060011", + "name": "[619](10)伊犁气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703067005007619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945032", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2026-02-02 07:30:05", + "echoMap": {}, + "deviceId": "1007060012", + "name": "[343](10)伊犁4#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945033", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1007060013", + "name": "[620](10)伊犁内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703001005007620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945034", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-21 09:08:59", + "echoMap": {}, + "deviceId": "1007060014", + "name": "[335](10)伊犁B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701040006007335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945035", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-26 09:58:59", + "echoMap": {}, + "deviceId": "1007060015", + "name": "[338](10)伊犁1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701036005007338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945036", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-21 09:08:59", + "echoMap": {}, + "deviceId": "1007060016", + "name": "[329](10)伊犁#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701045006007329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945037", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-21 09:08:59", + "echoMap": {}, + "deviceId": "1007060017", + "name": "[328](10)伊犁#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701045006007328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945038", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060018", + "name": "[404](10)伊犁2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701006006007404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945039", + "createdBy": null, + "createdTime": "2025-10-27 14:28:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060019", + "name": "[502](10)伊犁票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701025006007502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945040", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060020", + "name": "[203](10)伊犁厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701035004007203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945041", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060021", + "name": "[317](10)伊犁4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945042", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060022", + "name": "[405](10)伊犁2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701006006007405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945043", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2026-02-01 14:48:05", + "echoMap": {}, + "deviceId": "1007060023", + "name": "[503](10)伊犁票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701030006007503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945044", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060024", + "name": "[313](10)伊犁3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057005007313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945045", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1007060025", + "name": "[314](10)伊犁3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945046", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060026", + "name": "[210](10)伊犁3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057004007210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945047", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060027", + "name": "[315](10)伊犁3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057005007315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945048", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060028", + "name": "[311](10)伊犁3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945049", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060029", + "name": "[316](10)伊犁3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945050", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060030", + "name": "[310](10)伊犁3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945051", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060031", + "name": "[307](10)伊犁3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945052", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060032", + "name": "[308](10)伊犁3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945053", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060033", + "name": "[309](10)伊犁3#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945054", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060034", + "name": "[610](10)伊犁环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703053005007610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945055", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060035", + "name": "[613](10)伊犁内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703001006007613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945056", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1007060036", + "name": "[341](10)伊犁安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701085006007341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945057", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060037", + "name": "[601](10)伊犁车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703042004007601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945058", + "createdBy": null, + "createdTime": "2025-10-27 14:28:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060038", + "name": "[204](10)伊犁厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701035004007204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945059", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060039", + "name": "[312](10)伊犁3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701057006007312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945060", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060040", + "name": "[330](10)伊犁#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701045006007330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945061", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060041", + "name": "[407](10)伊犁3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701007006007407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945062", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060042", + "name": "[402](10)伊犁1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701005006007402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945063", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060043", + "name": "[406](10)伊犁2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701006006007406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945064", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060044", + "name": "[325](10)伊犁#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701045006007325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945065", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060045", + "name": "[408](10)伊犁4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701008006007408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945066", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060046", + "name": "[209](10)伊犁1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055004007209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945067", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060047", + "name": "[326](10)伊犁#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701045006007326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945068", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060048", + "name": "[336](10)伊犁B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701040006007336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945069", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060049", + "name": "[401](10)伊犁1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701005006007401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945070", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1007060050", + "name": "[403](10)伊犁1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701005006007403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945071", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060051", + "name": "[501](10)伊犁客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701001005007501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945072", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060052", + "name": "[304](10)伊犁1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055006007304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945073", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060053", + "name": "[306](10)伊犁1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055006007306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945074", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060054", + "name": "[201](10)伊犁厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701035004007201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945075", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060055", + "name": "[301](10)伊犁1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055006007301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945076", + "createdBy": null, + "createdTime": "2025-10-27 14:28:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060056", + "name": "[327](10)伊犁#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701045006007327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945077", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060057", + "name": "[611](10)伊犁内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703001006007611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945078", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060058", + "name": "[612](10)伊犁内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703001006007612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945079", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060059", + "name": "[302](10)伊犁1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055006007302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945080", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060060", + "name": "[504](10)伊犁票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701030006007504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945081", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060061", + "name": "[305](10)伊犁1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055006007305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945082", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060062", + "name": "[303](10)伊犁1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701055006007303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945083", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1007060063", + "name": "[321](10)伊犁4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945084", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060064", + "name": "[324](10)伊犁4#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945085", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-26 10:43:59", + "echoMap": {}, + "deviceId": "1007060065", + "name": "[339](10)伊犁2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701036005007339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945086", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060066", + "name": "[318](10)伊犁4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945087", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060067", + "name": "[323](10)伊犁4#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058005007323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945088", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060068", + "name": "[319](10)伊犁4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945089", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060069", + "name": "[320](10)伊犁4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945090", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060070", + "name": "[322](10)伊犁4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058006007322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945091", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060071", + "name": "[211](10)伊犁4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701058004007211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945092", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060072", + "name": "[604](10)伊犁弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945093", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060073", + "name": "[207](10)伊犁下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702001004007207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945094", + "createdBy": null, + "createdTime": "2025-10-27 14:28:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060074", + "name": "[603](10)伊犁编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703041005007603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945095", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1007060075", + "name": "[108](10)伊犁下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702012006007108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945096", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060076", + "name": "[107](10)伊犁下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702012006007107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945097", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060077", + "name": "[605](10)伊犁弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945098", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060078", + "name": "[202](10)伊犁厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701035004007202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945099", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060079", + "name": "[607](10)伊犁弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945100", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060080", + "name": "[606](10)伊犁弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945101", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060081", + "name": "[602](10)伊犁编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703041005007602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945102", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-12-11 13:50:02", + "echoMap": {}, + "deviceId": "1007060082", + "name": "[340](10)伊犁安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060701085006007340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945103", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060083", + "name": "[110](10)伊犁下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702012006007110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945104", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060084", + "name": "[109](10)伊犁下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702012006007109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945105", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060085", + "name": "[331](10)伊犁#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702017006007331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945106", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060086", + "name": "[106](10)伊犁上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702007006007106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945107", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060087", + "name": "[206](10)伊犁上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702001004007206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945108", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060088", + "name": "[105](10)伊犁上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702007006007105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945109", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1007060089", + "name": "[701](10)伊犁上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060704013006007701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945110", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060090", + "name": "[333](10)伊犁#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702017006007333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945111", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060091", + "name": "[334](10)伊犁#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702017006007334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945112", + "createdBy": null, + "createdTime": "2025-10-27 14:28:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060092", + "name": "[702](10)伊犁下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060704013006007702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945113", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060093", + "name": "[614](10)伊犁内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703021006007614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945114", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060094", + "name": "[608](10)伊犁屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060703048005007608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945115", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060095", + "name": "[208](10)伊犁下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702001004007208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945116", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060096", + "name": "[103](10)伊犁上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702007006007103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945117", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060097", + "name": "[112](10)伊犁下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702012006007112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945118", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060098", + "name": "[111](10)伊犁下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702012006007111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945119", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060099", + "name": "[332](10)伊犁#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702017006007332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945120", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060100", + "name": "[337](10)伊犁B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702002006007337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945121", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060101", + "name": "[104](10)伊犁上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702007006007104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410104731945122", + "createdBy": null, + "createdTime": "2025-10-27 14:28:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1007060102", + "name": "[205](10)伊犁上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.141.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060702001004007205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589884058406765689", + "createdBy": "0", + "createdTime": "2025-02-24 12:16:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1007070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.141.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060700000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"4948286\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"875169192\",\"inUcastPkts\":\"1960712204\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"30 days, 21:21:52.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:19:3a:2a\",\"operStatus\":\"1\",\"outDiscards\":\"3\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"170447600\",\"outQLen\":\"0\",\"outUcastPkts\":\"1299542549\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.141.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:05\",\"stCommonInfo\":{\"设备ID\":\"8L0027FPAZDE0E0\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"44\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589884036931929197", + "createdBy": "2", + "createdTime": "2025-02-24 10:49:52", + "updatedBy": null, + "updatedTime": "2025-12-23 10:09:35", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.141.51", + "manageUrl": "http:\\\\10.18.141.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884036931929198", + "createdBy": "2", + "createdTime": "2025-02-24 10:50:21", + "updatedBy": null, + "updatedTime": "2025-12-23 10:09:27", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.141.52", + "manageUrl": "http:\\\\10.18.141.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589884036931929192", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1007090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.141.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.06\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"122 days, 10:51:21.05\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"11024453\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28549619\",\"inOctets\":\"534124084\",\"inUcastPkts\":\"124284494\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:af:08\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4053757909\",\"outQLen\":\"0\",\"outUcastPkts\":\"3325590749\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.141.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589884036931929194", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 10:48:58", + "echoMap": {}, + "deviceId": "1007050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.141.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060700000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.141.22;10.18.141.23" + }, + { + "id": "589884036931929195", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1007050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.141.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060700000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13243903\",\"inErrors\":\"0\",\"inNUcastPkts\":\"23124038\",\"inOctets\":\"352110814\",\"inUcastPkts\":\"1768097299\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:6a:19:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"489830067\",\"outQLen\":\"0\",\"outUcastPkts\":\"1745019547\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4300\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3300\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.141.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:05\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":953905230,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281494110}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14122\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"59\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.141.22" + }, + { + "id": "589884036931929196", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1007050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.141.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060700000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13243364\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29328331\",\"inOctets\":\"1969052888\",\"inUcastPkts\":\"219871460\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:69:95:7e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8589944\",\"outQLen\":\"0\",\"outUcastPkts\":\"948159259\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4300\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4300\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.141.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:06\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":953905230,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281494110}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14123\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"62\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.141.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589884041226897404", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1007030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3525104\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194681265\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 2:45:48.46\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3525109\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:a4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.518,\"status\":1,\"voltage\":26.044},{\"current\":0.29200003,\"status\":1,\"voltage\":26.044},{\"current\":0.286,\"status\":1,\"voltage\":26.044},{\"current\":0.001,\"status\":1,\"voltage\":26.044},{\"current\":0.22500001,\"status\":1,\"voltage\":26.044},{\"current\":0.39200002,\"status\":1,\"voltage\":26.044},{\"current\":0.001,\"status\":1,\"voltage\":26.044},{\"current\":0.333,\"status\":1,\"voltage\":26.044},{\"current\":0.32200003,\"status\":1,\"voltage\":26.044},{\"current\":0.001,\"status\":1,\"voltage\":26.02},{\"current\":0.002,\"status\":1,\"voltage\":26.02},{\"current\":0.42000002,\"status\":1,\"voltage\":26.02},{\"current\":0.416,\"status\":1,\"voltage\":26.02},{\"current\":0.187,\"status\":1,\"voltage\":26.02},{\"current\":0.28300002,\"status\":1,\"voltage\":26.02},{\"current\":0.42200002,\"status\":1,\"voltage\":26.02}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300164\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884041226897405", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1007030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3527382\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194810453\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 11:32:18.23\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3527387\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:90\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.537,\"status\":1,\"voltage\":25.994001},{\"current\":0.32500002,\"status\":1,\"voltage\":25.994001},{\"current\":0.381,\"status\":1,\"voltage\":25.994001},{\"current\":0.26900002,\"status\":1,\"voltage\":25.994001},{\"current\":0.27600002,\"status\":1,\"voltage\":25.994001},{\"current\":0.42400002,\"status\":1,\"voltage\":25.994001},{\"current\":0.26500002,\"status\":1,\"voltage\":25.994001},{\"current\":0.001,\"status\":1,\"voltage\":25.994001},{\"current\":0.001,\"status\":1,\"voltage\":25.994001},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.003,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002},{\"current\":0.001,\"status\":1,\"voltage\":26.108002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300400\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884041226897406", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1007030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3527536\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194817182\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"147 days, 13:42:34.62\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3527541\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:7a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28300002,\"status\":1,\"voltage\":26.146002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.146002},{\"current\":0.31,\"status\":1,\"voltage\":26.146002},{\"current\":0.526,\"status\":1,\"voltage\":26.146002},{\"current\":0.33900002,\"status\":1,\"voltage\":26.146002},{\"current\":0.268,\"status\":1,\"voltage\":26.146002},{\"current\":0.001,\"status\":1,\"voltage\":26.146002},{\"current\":0.377,\"status\":1,\"voltage\":26.146002},{\"current\":0.23200001,\"status\":1,\"voltage\":26.146002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.003,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002}],\"fanSpeeds\":[0,0],\"humidity\":20,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300122\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884041226897407", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1007030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3527039\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194790710\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"386 days, 0:40:48.66\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3527044\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:81\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37100002,\"status\":1,\"voltage\":26.453001},{\"current\":0.34500003,\"status\":1,\"voltage\":26.453001},{\"current\":0.36100003,\"status\":1,\"voltage\":26.453001},{\"current\":0.316,\"status\":1,\"voltage\":26.453001},{\"current\":0.256,\"status\":1,\"voltage\":26.453001},{\"current\":0.257,\"status\":1,\"voltage\":26.453001},{\"current\":0.216,\"status\":1,\"voltage\":26.453001},{\"current\":0.216,\"status\":1,\"voltage\":26.453001},{\"current\":0.513,\"status\":1,\"voltage\":26.453001},{\"current\":0.23,\"status\":1,\"voltage\":26.456001},{\"current\":0.003,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208300129\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863680", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1007030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3526713\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194773104\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 14:31:10.12\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3526718\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:89\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.537,\"status\":1,\"voltage\":26.266},{\"current\":0.349,\"status\":1,\"voltage\":26.266},{\"current\":0.35900003,\"status\":1,\"voltage\":26.266},{\"current\":0.272,\"status\":1,\"voltage\":26.266},{\"current\":0.28,\"status\":1,\"voltage\":26.266},{\"current\":0.347,\"status\":1,\"voltage\":26.266},{\"current\":0.37800002,\"status\":1,\"voltage\":26.266},{\"current\":0.303,\"status\":1,\"voltage\":26.266},{\"current\":0.27800003,\"status\":1,\"voltage\":26.266},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.003,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300393\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863681", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1007030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3527691\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194827933\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"386 days, 23:59:13.41\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3527696\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:66\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.541,\"status\":1,\"voltage\":26.109001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.109001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.109001},{\"current\":0.25,\"status\":1,\"voltage\":26.109001},{\"current\":0.35000002,\"status\":1,\"voltage\":26.109001},{\"current\":0.287,\"status\":1,\"voltage\":26.109001},{\"current\":0.27800003,\"status\":1,\"voltage\":26.109001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.109001},{\"current\":0.30100003,\"status\":1,\"voltage\":26.109001},{\"current\":0.528,\"status\":1,\"voltage\":26.143002},{\"current\":0.003,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300102\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863682", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1007030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3527854\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194836489\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 16:48:30.69\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3527859\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:59\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.284,\"status\":1,\"voltage\":26.375002},{\"current\":0.24000001,\"status\":1,\"voltage\":26.375002},{\"current\":0.23,\"status\":1,\"voltage\":26.375002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.375002},{\"current\":0.223,\"status\":1,\"voltage\":26.375002},{\"current\":0.514,\"status\":1,\"voltage\":26.375002},{\"current\":0.231,\"status\":1,\"voltage\":26.375002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.375002},{\"current\":0.23300001,\"status\":1,\"voltage\":26.375002},{\"current\":0.22900002,\"status\":1,\"voltage\":26.313002},{\"current\":0.003,\"status\":1,\"voltage\":26.313002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.313002},{\"current\":0.23200001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002}],\"fanSpeeds\":[2790,2850],\"humidity\":20,\"switches\":[0,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0001512208300089\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863683", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1007030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3526224\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194744988\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"391 days, 18:07:43.98\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3526229\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:66\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.512,\"status\":1,\"voltage\":26.111002},{\"current\":0.296,\"status\":1,\"voltage\":26.111002},{\"current\":0.303,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":0,\"voltage\":26.111002},{\"current\":0.252,\"status\":1,\"voltage\":26.111002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.111002},{\"current\":0.52900004,\"status\":1,\"voltage\":26.111002},{\"current\":0.293,\"status\":1,\"voltage\":26.111002},{\"current\":0.293,\"status\":1,\"voltage\":26.111002},{\"current\":0.32900003,\"status\":1,\"voltage\":26.447},{\"current\":0.002,\"status\":1,\"voltage\":26.447},{\"current\":0.23500001,\"status\":1,\"voltage\":26.447},{\"current\":0.001,\"status\":1,\"voltage\":26.447},{\"current\":0.001,\"status\":1,\"voltage\":26.447},{\"current\":0.0,\"status\":1,\"voltage\":26.447},{\"current\":0.0,\"status\":1,\"voltage\":26.447}],\"fanSpeeds\":[1470,1410],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300358\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863684", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1007030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3526061\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194734429\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"149 days, 16:30:38.63\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3526066\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:5c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.264,\"status\":1,\"voltage\":25.999},{\"current\":0.26500002,\"status\":1,\"voltage\":25.999},{\"current\":0.25500003,\"status\":1,\"voltage\":25.999},{\"current\":0.246,\"status\":1,\"voltage\":25.999},{\"current\":0.261,\"status\":1,\"voltage\":25.999},{\"current\":0.544,\"status\":1,\"voltage\":25.999},{\"current\":0.26500002,\"status\":1,\"voltage\":25.999},{\"current\":0.27400002,\"status\":1,\"voltage\":25.999},{\"current\":0.001,\"status\":1,\"voltage\":25.999},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.003,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300092\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863685", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1007030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3525898\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194726198\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 9:17:58.45\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3525903\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:7b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.555,\"status\":1,\"voltage\":26.038002},{\"current\":0.001,\"status\":1,\"voltage\":26.038002},{\"current\":0.80300003,\"status\":1,\"voltage\":26.038002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.038002},{\"current\":0.51600003,\"status\":1,\"voltage\":26.038002},{\"current\":0.001,\"status\":1,\"voltage\":26.038002},{\"current\":0.001,\"status\":1,\"voltage\":26.038002},{\"current\":0.001,\"status\":1,\"voltage\":26.038002},{\"current\":0.001,\"status\":1,\"voltage\":26.038002},{\"current\":0.001,\"status\":1,\"voltage\":25.883001},{\"current\":0.003,\"status\":1,\"voltage\":25.883001},{\"current\":0.001,\"status\":1,\"voltage\":25.883001},{\"current\":0.001,\"status\":1,\"voltage\":25.883001},{\"current\":0.001,\"status\":1,\"voltage\":25.883001},{\"current\":0.001,\"status\":1,\"voltage\":25.883001},{\"current\":0.001,\"status\":1,\"voltage\":25.883001}],\"fanSpeeds\":[1530,1560],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300379\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863686", + "createdBy": "0", + "createdTime": "2025-02-24 11:09:19", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1007030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.142.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589884045521863847", + "createdBy": "2", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1007040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.141.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif141\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"200\",\"lastChange\":\"0:03:06.44\",\"mTU\":\"1500\",\"macAddress\":\"58:ae:a8:80:06:f7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"8\",\"temperature\":\"38\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.141.64\",\"index\":\"200\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1635316\",\"0\",\"0\",\"0\",\"0\",\"0\",\"389006\",\"340196\",\"1908206\",\"889648\",\"0\",\"0\",\"0\",\"0\",\"4971\",\"0\",\"5239\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.63\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":22385,\"inBytes\":3319103165,\"inFlow\":10348,\"lastChangeTime\":\"0:03:08.22\",\"lastInBytes\":3319103165,\"lastOutBytes\":68588500,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":68588500,\"outFlow\":12036,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":51392383,\"inBytes\":950277025,\"inFlow\":19823628,\"lastChangeTime\":\"0:03:08.81\",\"lastInBytes\":950277025,\"lastOutBytes\":2383468309,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2383468309,\"outFlow\":31568755,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":52352,\"inBytes\":1476078653,\"inFlow\":26734,\"lastChangeTime\":\"0:03:07.04\",\"lastInBytes\":1476078653,\"lastOutBytes\":3006119433,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3006119433,\"outFlow\":25617,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":444,\"inBytes\":680315997,\"inFlow\":13,\"lastChangeTime\":\"216 days, 9:51:36.72\",\"lastInBytes\":680315997,\"lastOutBytes\":4115759551,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4115759551,\"outFlow\":430,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4498382,\"inBytes\":1950822728,\"inFlow\":48082,\"lastChangeTime\":\"367 days, 12:27:39.09\",\"lastInBytes\":1950822728,\"lastOutBytes\":2164241625,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2164241625,\"outFlow\":4450300,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15912138,\"inBytes\":1126159237,\"inFlow\":439110,\"lastChangeTime\":\"216 days, 9:35:34.36\",\"lastInBytes\":1126159237,\"lastOutBytes\":3787331336,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3787331336,\"outFlow\":15473027,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3801773,\"inBytes\":1527898730,\"inFlow\":561798,\"lastChangeTime\":\"216 days, 9:35:34.40\",\"lastInBytes\":1527898730,\"lastOutBytes\":1761572785,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1761572785,\"outFlow\":3239975,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16893795,\"inBytes\":2630226710,\"inFlow\":351682,\"lastChangeTime\":\"367 days, 14:42:18.20\",\"lastInBytes\":2630226710,\"lastOutBytes\":3567221065,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3567221065,\"outFlow\":16542113,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3997598,\"inBytes\":4090267546,\"inFlow\":387891,\"lastChangeTime\":\"0:03:07.15\",\"lastInBytes\":4090267546,\"lastOutBytes\":1635920489,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1635920489,\"outFlow\":3609706,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":684,\"inBytes\":2031233651,\"inFlow\":156,\"lastChangeTime\":\"467 days, 12:40:13.08\",\"lastInBytes\":2031233651,\"lastOutBytes\":1790051021,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1790051021,\"outFlow\":528,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":989,\"inBytes\":3062582468,\"inFlow\":239,\"lastChangeTime\":\"467 days, 12:31:12.79\",\"lastInBytes\":3062582468,\"lastOutBytes\":293664364,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":293664364,\"outFlow\":749,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":399230,\"inBytes\":2000405728,\"inFlow\":2726,\"lastChangeTime\":\"122 days, 9:15:21.16\",\"lastInBytes\":2000405728,\"lastOutBytes\":3688976005,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3688976005,\"outFlow\":396503,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":505,\"inBytes\":1367237988,\"inFlow\":63,\"lastChangeTime\":\"367 days, 14:43:00.15\",\"lastInBytes\":1367237988,\"lastOutBytes\":1661123002,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1661123002,\"outFlow\":441,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":684,\"inBytes\":2030813972,\"inFlow\":156,\"lastChangeTime\":\"467 days, 12:39:02.48\",\"lastInBytes\":2030813972,\"lastOutBytes\":603559763,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":603559763,\"outFlow\":528,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":13763378,\"inBytes\":2216757992,\"inFlow\":124393,\"lastChangeTime\":\"367 days, 14:43:54.70\",\"lastInBytes\":2216757992,\"lastOutBytes\":1422917413,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1422917413,\"outFlow\":13638985,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":444,\"inBytes\":234057966,\"inFlow\":12,\"lastChangeTime\":\"70 days, 5:06:54.02\",\"lastInBytes\":234057966,\"lastOutBytes\":3753660090,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3753660090,\"outFlow\":431,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5574935,\"inFlow\":0,\"lastChangeTime\":\"124 days, 10:22:52.36\",\"lastInBytes\":5574935,\"lastOutBytes\":8312057,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8312057,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":148,\"inBytes\":228353884,\"inFlow\":120,\"lastChangeTime\":\"103 days, 20:07:00.20\",\"lastInBytes\":228353884,\"lastOutBytes\":170242954,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":170242954,\"outFlow\":27,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5883209,\"inFlow\":0,\"lastChangeTime\":\"109 days, 9:17:27.55\",\"lastInBytes\":5883209,\"lastOutBytes\":29409128,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":29409128,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":562,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35790,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":559,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39330,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":558,\"opticalVoltage\":3305,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34349,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":562,\"opticalVoltage\":3288,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43110,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":558,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38040,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":78419,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":0,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":47639,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3253,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42450,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":561,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38639,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":563,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38310,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":564,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36360,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":562,\"opticalVoltage\":3370,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41099,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":558,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39450,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":562,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43049,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":559,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44250,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":562,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37709,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":558,\"opticalVoltage\":3334,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36810,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":559,\"opticalVoltage\":3363,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37200,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":564,\"opticalVoltage\":3334,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":559,\"inBytes\":3853942326,\"inFlow\":87,\"lastChangeTime\":\"0:04:02.85\",\"lastInBytes\":3853942326,\"lastOutBytes\":582727460,\"opticalBiasCurrent\":11456,\"opticalReceivePower\":245,\"opticalTemperature\":51,\"opticalTransmitPower\":249,\"opticalVoltage\":3332,\"outBytes\":582727460,\"outFlow\":472,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39060,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":557,\"opticalVoltage\":3346,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":439023,\"inBytes\":4067088392,\"inFlow\":2469,\"lastChangeTime\":\"59 days, 0:34:27.70\",\"lastInBytes\":4067088392,\"lastOutBytes\":1529003841,\"opticalBiasCurrent\":34650,\"opticalReceivePower\":73,\"opticalTemperature\":52,\"opticalTransmitPower\":557,\"opticalVoltage\":3343,\"outBytes\":1529003841,\"outFlow\":436553,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1090255,\"inBytes\":2124269850,\"inFlow\":43223,\"lastChangeTime\":\"0:04:02.19\",\"lastInBytes\":2124269850,\"lastOutBytes\":1051720486,\"opticalBiasCurrent\":36810,\"opticalReceivePower\":382,\"opticalTemperature\":52,\"opticalTransmitPower\":563,\"opticalVoltage\":3322,\"outBytes\":1051720486,\"outFlow\":1047032,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":10060813,\"inBytes\":3466929646,\"inFlow\":9747435,\"lastChangeTime\":\"336 days, 13:40:20.30\",\"lastInBytes\":3466929646,\"lastOutBytes\":313813384,\"opticalBiasCurrent\":13321,\"opticalReceivePower\":114,\"opticalTemperature\":44,\"opticalTransmitPower\":285,\"opticalVoltage\":3294,\"outBytes\":313813384,\"outFlow\":313377,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6291542,\"inBytes\":1703310002,\"inFlow\":6095579,\"lastChangeTime\":\"336 days, 13:44:07.15\",\"lastInBytes\":1703310002,\"lastOutBytes\":359885,\"opticalBiasCurrent\":13227,\"opticalReceivePower\":309,\"opticalTemperature\":44,\"opticalTransmitPower\":254,\"opticalVoltage\":3294,\"outBytes\":359885,\"outFlow\":195963,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7021002,\"inBytes\":1281279563,\"inFlow\":6809055,\"lastChangeTime\":\"421 days, 13:17:44.35\",\"lastInBytes\":1281279563,\"lastOutBytes\":2365636291,\"opticalBiasCurrent\":14215,\"opticalReceivePower\":10,\"opticalTemperature\":45,\"opticalTransmitPower\":300,\"opticalVoltage\":3294,\"outBytes\":2365636291,\"outFlow\":211947,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5790500,\"inBytes\":2297516284,\"inFlow\":5616413,\"lastChangeTime\":\"166 days, 23:35:09.87\",\"lastInBytes\":2297516284,\"lastOutBytes\":2296604117,\"opticalBiasCurrent\":13036,\"opticalReceivePower\":148,\"opticalTemperature\":45,\"opticalTransmitPower\":270,\"opticalVoltage\":3310,\"outBytes\":2296604117,\"outFlow\":174086,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7014787,\"inBytes\":2849707858,\"inFlow\":6806762,\"lastChangeTime\":\"336 days, 12:50:24.48\",\"lastInBytes\":2849707858,\"lastOutBytes\":3613649704,\"opticalBiasCurrent\":13100,\"opticalReceivePower\":105,\"opticalTemperature\":43,\"opticalTransmitPower\":270,\"opticalVoltage\":3302,\"outBytes\":3613649704,\"outFlow\":208025,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6904844,\"inBytes\":1726599224,\"inFlow\":6695728,\"lastChangeTime\":\"367 days, 13:27:06.09\",\"lastInBytes\":1726599224,\"lastOutBytes\":871189912,\"opticalBiasCurrent\":13289,\"opticalReceivePower\":155,\"opticalTemperature\":44,\"opticalTransmitPower\":267,\"opticalVoltage\":3302,\"outBytes\":871189912,\"outFlow\":209115,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6975439,\"inBytes\":2002661857,\"inFlow\":6757211,\"lastChangeTime\":\"367 days, 13:04:17.77\",\"lastInBytes\":2002661857,\"lastOutBytes\":2155817723,\"opticalBiasCurrent\":13354,\"opticalReceivePower\":18,\"opticalTemperature\":45,\"opticalTransmitPower\":267,\"opticalVoltage\":3302,\"outBytes\":2155817723,\"outFlow\":218228,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7984608,\"inBytes\":3911936049,\"inFlow\":7736023,\"lastChangeTime\":\"167 days, 0:41:44.80\",\"lastInBytes\":3911936049,\"lastOutBytes\":3654758382,\"opticalBiasCurrent\":12590,\"opticalReceivePower\":147,\"opticalTemperature\":44,\"opticalTransmitPower\":292,\"opticalVoltage\":3310,\"outBytes\":3654758382,\"outFlow\":248585,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7469536,\"inBytes\":132123994,\"inFlow\":7238662,\"lastChangeTime\":\"336 days, 12:37:34.62\",\"lastInBytes\":132123994,\"lastOutBytes\":978294521,\"opticalBiasCurrent\":12461,\"opticalReceivePower\":228,\"opticalTemperature\":45,\"opticalTransmitPower\":262,\"opticalVoltage\":3302,\"outBytes\":978294521,\"outFlow\":230873,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5525798,\"inBytes\":3671307530,\"inFlow\":5353021,\"lastChangeTime\":\"336 days, 12:24:24.17\",\"lastInBytes\":3671307530,\"lastOutBytes\":1175962630,\"opticalBiasCurrent\":12939,\"opticalReceivePower\":168,\"opticalTemperature\":43,\"opticalTransmitPower\":257,\"opticalVoltage\":3302,\"outBytes\":1175962630,\"outFlow\":172777,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1950170,\"inBytes\":1834559359,\"inFlow\":1887248,\"lastChangeTime\":\"336 days, 13:11:30.68\",\"lastInBytes\":1834559359,\"lastOutBytes\":3612908770,\"opticalBiasCurrent\":13770,\"opticalReceivePower\":184,\"opticalTemperature\":44,\"opticalTransmitPower\":287,\"opticalVoltage\":3310,\"outBytes\":3612908770,\"outFlow\":62921,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12526,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":269,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12718,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":260,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12907,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":287,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13036,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":277,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12750,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13609,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":268,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12494,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":270,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13864,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":288,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13163,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":280,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17211,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":295,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12112,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":251,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13196,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":290,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12685,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":261,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:13.831826000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863848", + "createdBy": "2", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1007040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"53\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88671\",\"inUnknownProtos\":\"1147250462\",\"index\":\"635\",\"lastChange\":\"0:01:17.32\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d9:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4151435947\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"61888169\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":1103485,\"inBytes\":3318777862,\"inFlow\":1077715,\"lastChangeTime\":\"138 days, 5:37:13.01\",\"lastInBytes\":3318777862,\"lastOutBytes\":1487137452,\"outBytes\":1487137452,\"outFlow\":25770,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413845,\"inBytes\":3006009761,\"inFlow\":403749,\"lastChangeTime\":\"206 days, 10:43:11.81\",\"lastInBytes\":3006009761,\"lastOutBytes\":3246923236,\"outBytes\":3246923236,\"outFlow\":10096,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413870,\"inBytes\":1375638137,\"inFlow\":403774,\"lastChangeTime\":\"206 days, 10:43:13.55\",\"lastInBytes\":1375638137,\"lastOutBytes\":2643514073,\"outBytes\":2643514073,\"outFlow\":10095,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1040956,\"inBytes\":996090789,\"inFlow\":1015894,\"lastChangeTime\":\"206 days, 10:43:06.62\",\"lastInBytes\":996090789,\"lastOutBytes\":3588601938,\"outBytes\":3588601938,\"outFlow\":25061,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":622785,\"inBytes\":2718661418,\"inFlow\":606491,\"lastChangeTime\":\"0:01:19.16\",\"lastInBytes\":2718661418,\"lastOutBytes\":2607325467,\"outBytes\":2607325467,\"outFlow\":16294,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":522748,\"inBytes\":1797386128,\"inFlow\":511819,\"lastChangeTime\":\"0:01:19.75\",\"lastInBytes\":1797386128,\"lastOutBytes\":1147165515,\"outBytes\":1147165515,\"outFlow\":10928,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":622205,\"inBytes\":1905343906,\"inFlow\":606364,\"lastChangeTime\":\"214 days, 20:07:01.70\",\"lastInBytes\":1905343906,\"lastOutBytes\":1010024787,\"outBytes\":1010024787,\"outFlow\":15840,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1000720,\"inBytes\":1959065831,\"inFlow\":976789,\"lastChangeTime\":\"0:09:48.24\",\"lastInBytes\":1959065831,\"lastOutBytes\":3128060505,\"outBytes\":3128060505,\"outFlow\":23931,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414050,\"inBytes\":3297736186,\"inFlow\":403996,\"lastChangeTime\":\"206 days, 10:43:08.60\",\"lastInBytes\":3297736186,\"lastOutBytes\":552655827,\"outBytes\":552655827,\"outFlow\":10053,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1104082,\"inBytes\":3544417671,\"inFlow\":1077909,\"lastChangeTime\":\"282 days, 11:21:52.85\",\"lastInBytes\":3544417671,\"lastOutBytes\":3505821424,\"outBytes\":3505821424,\"outFlow\":26173,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":999899,\"inBytes\":4001742461,\"inFlow\":974018,\"lastChangeTime\":\"147 days, 16:10:15.46\",\"lastInBytes\":4001742461,\"lastOutBytes\":814223663,\"outBytes\":814223663,\"outFlow\":25880,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":10000000,\"upDown\":1},{\"flow\":418438,\"inBytes\":3003499524,\"inFlow\":409994,\"lastChangeTime\":\"0:09:01.63\",\"lastInBytes\":3003499524,\"lastOutBytes\":3722361203,\"outBytes\":3722361203,\"outFlow\":8443,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415120,\"inBytes\":947330445,\"inFlow\":404990,\"lastChangeTime\":\"282 days, 18:39:27.16\",\"lastInBytes\":947330445,\"lastOutBytes\":510516412,\"outBytes\":510516412,\"outFlow\":10130,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":1035797,\"inBytes\":1026971345,\"inFlow\":1035797,\"lastChangeTime\":\"206 days, 10:43:02.80\",\"lastInBytes\":1026971345,\"lastOutBytes\":134,\"outBytes\":134,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1963262,\"inFlow\":0,\"lastChangeTime\":\"0:20:31.52\",\"lastInBytes\":1963262,\"lastOutBytes\":96970013,\"outBytes\":96970013,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":364736999,\"inFlow\":1,\"lastChangeTime\":\"209 days, 18:44:36.75\",\"lastInBytes\":364736999,\"lastOutBytes\":3315978837,\"outBytes\":3315978837,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10210483,\"inBytes\":75097211,\"inFlow\":255949,\"lastChangeTime\":\"0:13:34.72\",\"lastInBytes\":75097211,\"lastOutBytes\":2112581823,\"outBytes\":2112581823,\"outFlow\":9954533,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.013011000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863849", + "createdBy": "2", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1007040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88401\",\"inUnknownProtos\":\"800206998\",\"index\":\"635\",\"lastChange\":\"0:01:14.78\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:08:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"562316312\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:09\",\"info\":{\"portInfoList\":[{\"flow\":1048735,\"inBytes\":2830595193,\"inFlow\":1024013,\"lastChangeTime\":\"138 days, 5:20:57.94\",\"lastInBytes\":2830595193,\"lastOutBytes\":4220076991,\"outBytes\":4220076991,\"outFlow\":24722,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":913592,\"inBytes\":1410424677,\"inFlow\":889140,\"lastChangeTime\":\"209 days, 18:14:04.89\",\"lastInBytes\":1410424677,\"lastOutBytes\":3707544163,\"outBytes\":3707544163,\"outFlow\":24451,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":899060,\"inBytes\":1011911925,\"inFlow\":880166,\"lastChangeTime\":\"209 days, 18:14:03.53\",\"lastInBytes\":1011911925,\"lastOutBytes\":3314406953,\"outBytes\":3314406953,\"outFlow\":18894,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1070990,\"inBytes\":2950463401,\"inFlow\":1045382,\"lastChangeTime\":\"209 days, 18:14:03.45\",\"lastInBytes\":2950463401,\"lastOutBytes\":2568325040,\"outBytes\":2568325040,\"outFlow\":25608,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407624,\"inBytes\":1218282922,\"inFlow\":397699,\"lastChangeTime\":\"209 days, 18:14:05.38\",\"lastInBytes\":1218282922,\"lastOutBytes\":2205778215,\"outBytes\":2205778215,\"outFlow\":9924,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":615151,\"inBytes\":533089741,\"inFlow\":599635,\"lastChangeTime\":\"214 days, 19:08:24.10\",\"lastInBytes\":533089741,\"lastOutBytes\":800206998,\"outBytes\":800206998,\"outFlow\":15516,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1086840,\"inBytes\":3712323760,\"inFlow\":1061177,\"lastChangeTime\":\"209 days, 18:14:05.11\",\"lastInBytes\":3712323760,\"lastOutBytes\":2774326599,\"outBytes\":2774326599,\"outFlow\":25662,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":364824098,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.68\",\"lastInBytes\":364824098,\"lastOutBytes\":3312140914,\"outBytes\":3312140914,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.74\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6067291,\"inBytes\":360852927,\"inFlow\":152536,\"lastChangeTime\":\"0:01:14.77\",\"lastInBytes\":360852927,\"lastOutBytes\":2221556552,\"outBytes\":2221556552,\"outFlow\":5914755,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.001103000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863850", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1007040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88446\",\"inUnknownProtos\":\"3909246712\",\"index\":\"635\",\"lastChange\":\"0:01:16.23\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:03:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3173762597\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"61864972\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":408045,\"inBytes\":1084929277,\"inFlow\":398102,\"lastChangeTime\":\"206 days, 10:15:58.14\",\"lastInBytes\":1084929277,\"lastOutBytes\":2573929379,\"outBytes\":2573929379,\"outFlow\":9942,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":887653,\"inBytes\":1807172698,\"inFlow\":868762,\"lastChangeTime\":\"0:01:18.80\",\"lastInBytes\":1807172698,\"lastOutBytes\":1197771109,\"outBytes\":1197771109,\"outFlow\":18891,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1040497,\"inBytes\":3634160012,\"inFlow\":1015598,\"lastChangeTime\":\"0:01:17.87\",\"lastInBytes\":3634160012,\"lastOutBytes\":384406832,\"outBytes\":384406832,\"outFlow\":24898,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1071575,\"inBytes\":674146524,\"inFlow\":1046480,\"lastChangeTime\":\"138 days, 5:10:02.38\",\"lastInBytes\":674146524,\"lastOutBytes\":4246423701,\"outBytes\":4246423701,\"outFlow\":25094,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1083928,\"inBytes\":114979163,\"inFlow\":1058327,\"lastChangeTime\":\"0:01:17.86\",\"lastInBytes\":114979163,\"lastOutBytes\":3206837271,\"outBytes\":3206837271,\"outFlow\":25601,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":970697,\"inBytes\":3691771003,\"inFlow\":947148,\"lastChangeTime\":\"0:01:18.19\",\"lastInBytes\":3691771003,\"lastOutBytes\":3909246712,\"outBytes\":3909246712,\"outFlow\":23548,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":271656,\"inBytes\":2499963096,\"inFlow\":265129,\"lastChangeTime\":\"0:01:17.87\",\"lastInBytes\":2499963096,\"lastOutBytes\":3666285267,\"outBytes\":3666285267,\"outFlow\":6526,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1026379,\"inBytes\":2659977225,\"inFlow\":1003547,\"lastChangeTime\":\"84 days, 23:26:07.86\",\"lastInBytes\":2659977225,\"lastOutBytes\":589467740,\"outBytes\":589467740,\"outFlow\":22832,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4551812,\"inFlow\":0,\"lastChangeTime\":\"214 days, 20:01:41.32\",\"lastInBytes\":4551812,\"lastOutBytes\":235194355,\"outBytes\":235194355,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1097584,\"inFlow\":0,\"lastChangeTime\":\"209 days, 17:40:02.31\",\"lastInBytes\":1097584,\"lastOutBytes\":81656678,\"outBytes\":81656678,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":364880713,\"inFlow\":1,\"lastChangeTime\":\"209 days, 17:37:12.88\",\"lastInBytes\":364880713,\"lastOutBytes\":3311788184,\"outBytes\":3311788184,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6791736,\"inBytes\":2830512084,\"inFlow\":165435,\"lastChangeTime\":\"84 days, 23:27:12.38\",\"lastInBytes\":2830512084,\"lastOutBytes\":2454750789,\"outBytes\":2454750789,\"outFlow\":6626300,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:05.985926000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863851", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1007040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"194792\",\"inUnknownProtos\":\"2461012527\",\"index\":\"635\",\"lastChange\":\"0:01:18.87\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f8:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3146724467\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"249762656\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":501650,\"inBytes\":364519304,\"inFlow\":491079,\"lastChangeTime\":\"263 days, 16:44:42.07\",\"lastInBytes\":364519304,\"lastOutBytes\":359558591,\"outBytes\":359558591,\"outFlow\":10571,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":464221,\"inBytes\":311134605,\"inFlow\":454724,\"lastChangeTime\":\"263 days, 16:44:39.65\",\"lastInBytes\":311134605,\"lastOutBytes\":1832040814,\"outBytes\":1832040814,\"outFlow\":9496,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":506725,\"inBytes\":763379940,\"inFlow\":496136,\"lastChangeTime\":\"263 days, 16:44:41.95\",\"lastInBytes\":763379940,\"lastOutBytes\":2673593304,\"outBytes\":2673593304,\"outFlow\":10588,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":576569,\"inBytes\":472255253,\"inFlow\":561590,\"lastChangeTime\":\"263 days, 16:44:58.66\",\"lastInBytes\":472255253,\"lastOutBytes\":2654698867,\"outBytes\":2654698867,\"outFlow\":14978,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406510,\"inBytes\":1805266752,\"inFlow\":396680,\"lastChangeTime\":\"45 days, 22:01:55.35\",\"lastInBytes\":1805266752,\"lastOutBytes\":4079094159,\"outBytes\":4079094159,\"outFlow\":9830,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407242,\"inBytes\":2847743299,\"inFlow\":397376,\"lastChangeTime\":\"45 days, 22:01:58.37\",\"lastInBytes\":2847743299,\"lastOutBytes\":2461012527,\"outBytes\":2461012527,\"outFlow\":9865,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":270873,\"inBytes\":4218766395,\"inFlow\":264094,\"lastChangeTime\":\"445 days, 8:25:35.93\",\"lastInBytes\":4218766395,\"lastOutBytes\":3673909311,\"outBytes\":3673909311,\"outFlow\":6779,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":271784,\"inBytes\":3098946775,\"inFlow\":265030,\"lastChangeTime\":\"167 days, 14:05:27.27\",\"lastInBytes\":3098946775,\"lastOutBytes\":3401294357,\"outBytes\":3401294357,\"outFlow\":6754,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1087508,\"inBytes\":797968147,\"inFlow\":1062270,\"lastChangeTime\":\"474 days, 19:23:50.06\",\"lastInBytes\":797968147,\"lastOutBytes\":2973341878,\"outBytes\":2973341878,\"outFlow\":25238,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1077223,\"inBytes\":1714702640,\"inFlow\":1051489,\"lastChangeTime\":\"45 days, 22:01:57.94\",\"lastInBytes\":1714702640,\"lastOutBytes\":1801291790,\"outBytes\":1801291790,\"outFlow\":25733,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":16665156,\"inFlow\":0,\"lastChangeTime\":\"167 days, 0:43:48.87\",\"lastInBytes\":16665156,\"lastOutBytes\":738552702,\"outBytes\":738552702,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":364931668,\"inFlow\":1,\"lastChangeTime\":\"49 days, 5:36:17.19\",\"lastInBytes\":364931668,\"lastOutBytes\":2688817317,\"outBytes\":2688817317,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5620900,\"inBytes\":2762935802,\"inFlow\":136615,\"lastChangeTime\":\"167 days, 0:28:04.79\",\"lastInBytes\":2762935802,\"lastOutBytes\":76638088,\"outBytes\":76638088,\"outFlow\":5484285,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.002397000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863852", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1007040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88513\",\"inUnknownProtos\":\"3010931364\",\"index\":\"635\",\"lastChange\":\"0:01:16.27\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:58:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1630117966\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"61929140\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:09\",\"info\":{\"portInfoList\":[{\"flow\":992447,\"inBytes\":853630741,\"inFlow\":969014,\"lastChangeTime\":\"138 days, 6:14:46.67\",\"lastInBytes\":853630741,\"lastOutBytes\":2763186117,\"outBytes\":2763186117,\"outFlow\":23433,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":887906,\"inBytes\":2435435999,\"inFlow\":870059,\"lastChangeTime\":\"0:01:19.07\",\"lastInBytes\":2435435999,\"lastOutBytes\":671015821,\"outBytes\":671015821,\"outFlow\":17846,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410609,\"inBytes\":424971178,\"inFlow\":402018,\"lastChangeTime\":\"0:01:19.07\",\"lastInBytes\":424971178,\"lastOutBytes\":2061005644,\"outBytes\":2061005644,\"outFlow\":8590,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413970,\"inBytes\":1559705310,\"inFlow\":403707,\"lastChangeTime\":\"0:01:18.22\",\"lastInBytes\":1559705310,\"lastOutBytes\":3453991185,\"outBytes\":3453991185,\"outFlow\":10263,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":656526,\"inBytes\":1590461165,\"inFlow\":637703,\"lastChangeTime\":\"0:01:18.20\",\"lastInBytes\":1590461165,\"lastOutBytes\":1091560796,\"outBytes\":1091560796,\"outFlow\":18822,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":889221,\"inBytes\":1303148741,\"inFlow\":872550,\"lastChangeTime\":\"0:01:19.08\",\"lastInBytes\":1303148741,\"lastOutBytes\":3010931364,\"outBytes\":3010931364,\"outFlow\":16670,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":32461218,\"inBytes\":3331315292,\"inFlow\":906543,\"lastChangeTime\":\"0:01:19.07\",\"lastInBytes\":3331315292,\"lastOutBytes\":103,\"outBytes\":103,\"outFlow\":31554674,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1105428,\"inBytes\":2232917036,\"inFlow\":1079355,\"lastChangeTime\":\"0:01:18.22\",\"lastInBytes\":2232917036,\"lastOutBytes\":2134589296,\"outBytes\":2134589296,\"outFlow\":26072,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414197,\"inBytes\":3671758773,\"inFlow\":404141,\"lastChangeTime\":\"0:01:18.21\",\"lastInBytes\":3671758773,\"lastOutBytes\":3140216925,\"outBytes\":3140216925,\"outFlow\":10056,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1625369,\"inFlow\":0,\"lastChangeTime\":\"214 days, 20:33:04.12\",\"lastInBytes\":1625369,\"lastOutBytes\":53443079,\"outBytes\":53443079,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":364756087,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.21\",\"lastInBytes\":364756087,\"lastOutBytes\":3310378673,\"outBytes\":3310378673,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6784529,\"inBytes\":4160376837,\"inFlow\":159129,\"lastChangeTime\":\"0:01:16.27\",\"lastInBytes\":4160376837,\"lastOutBytes\":4053352603,\"outBytes\":4053352603,\"outFlow\":6625399,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:05.995049000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863853", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1007040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1778\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"8048802\",\"inUnknownProtos\":\"4120968905\",\"index\":\"636\",\"lastChange\":\"167 days, 1:33:28.65\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4f:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2288038821\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"259599790\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.136\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":1108007,\"inBytes\":3020204217,\"inFlow\":1082040,\"lastChangeTime\":\"474 days, 19:23:41.56\",\"lastInBytes\":3020204217,\"lastOutBytes\":3688341482,\"outBytes\":3688341482,\"outFlow\":25967,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416629,\"inBytes\":165922431,\"inFlow\":406400,\"lastChangeTime\":\"45 days, 22:01:34.40\",\"lastInBytes\":165922431,\"lastOutBytes\":1516561402,\"outBytes\":1516561402,\"outFlow\":10229,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414429,\"inBytes\":1824029497,\"inFlow\":404298,\"lastChangeTime\":\"45 days, 22:01:43.21\",\"lastInBytes\":1824029497,\"lastOutBytes\":1199910776,\"outBytes\":1199910776,\"outFlow\":10131,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1101484,\"inBytes\":2578642456,\"inFlow\":1075463,\"lastChangeTime\":\"45 days, 22:01:43.97\",\"lastInBytes\":2578642456,\"lastOutBytes\":1879298396,\"outBytes\":1879298396,\"outFlow\":26020,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":409810,\"inBytes\":3223459973,\"inFlow\":401850,\"lastChangeTime\":\"263 days, 16:44:20.96\",\"lastInBytes\":3223459973,\"lastOutBytes\":1906695554,\"outBytes\":1906695554,\"outFlow\":7960,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414259,\"inBytes\":2833194863,\"inFlow\":404154,\"lastChangeTime\":\"166 days, 23:49:12.51\",\"lastInBytes\":2833194863,\"lastOutBytes\":4120968905,\"outBytes\":4120968905,\"outFlow\":10104,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":412972,\"inBytes\":2974355092,\"inFlow\":402888,\"lastChangeTime\":\"45 days, 22:01:29.21\",\"lastInBytes\":2974355092,\"lastOutBytes\":642199635,\"outBytes\":642199635,\"outFlow\":10084,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1102777,\"inBytes\":3936904828,\"inFlow\":1076723,\"lastChangeTime\":\"166 days, 23:50:19.73\",\"lastInBytes\":3936904828,\"lastOutBytes\":3532076331,\"outBytes\":3532076331,\"outFlow\":26054,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":431019,\"inBytes\":4048841964,\"inFlow\":422660,\"lastChangeTime\":\"263 days, 16:44:29.55\",\"lastInBytes\":4048841964,\"lastOutBytes\":66828659,\"outBytes\":66828659,\"outFlow\":8359,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1030155,\"inBytes\":541888913,\"inFlow\":1005869,\"lastChangeTime\":\"474 days, 19:23:40.05\",\"lastInBytes\":541888913,\"lastOutBytes\":3578801497,\"outBytes\":3578801497,\"outFlow\":24286,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6386110,\"inFlow\":0,\"lastChangeTime\":\"49 days, 5:04:55.14\",\"lastInBytes\":6386110,\"lastOutBytes\":232962316,\"outBytes\":232962316,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":47243,\"inFlow\":0,\"lastChangeTime\":\"167 days, 1:34:11.92\",\"lastInBytes\":47243,\"lastOutBytes\":435059,\"outBytes\":435059,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":364860543,\"inFlow\":1,\"lastChangeTime\":\"49 days, 5:03:39.92\",\"lastInBytes\":364860543,\"lastOutBytes\":2681384730,\"outBytes\":2681384730,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6864837,\"inBytes\":2665086516,\"inFlow\":166905,\"lastChangeTime\":\"367 days, 13:48:03.22\",\"lastInBytes\":2665086516,\"lastOutBytes\":405047972,\"outBytes\":405047972,\"outFlow\":6697931,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:05.992197000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863854", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1007040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88514\",\"inUnknownProtos\":\"3913500250\",\"index\":\"635\",\"lastChange\":\"0:01:12.84\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:eb:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3116451667\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"61968630\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":1060737,\"inBytes\":2846932034,\"inFlow\":1035428,\"lastChangeTime\":\"0:01:14.81\",\"lastInBytes\":2846932034,\"lastOutBytes\":210085885,\"outBytes\":210085885,\"outFlow\":25308,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1090331,\"inBytes\":253208971,\"inFlow\":1064587,\"lastChangeTime\":\"0:01:14.79\",\"lastInBytes\":253208971,\"lastOutBytes\":4077127269,\"outBytes\":4077127269,\"outFlow\":25743,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":271837,\"inBytes\":1243009518,\"inFlow\":264965,\"lastChangeTime\":\"0:01:20.99\",\"lastInBytes\":1243009518,\"lastOutBytes\":838450038,\"outBytes\":838450038,\"outFlow\":6872,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1086091,\"inBytes\":780053558,\"inFlow\":1060166,\"lastChangeTime\":\"0:01:15.48\",\"lastInBytes\":780053558,\"lastOutBytes\":2067612908,\"outBytes\":2067612908,\"outFlow\":25924,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":612213,\"inBytes\":641792458,\"inFlow\":596419,\"lastChangeTime\":\"0:01:15.48\",\"lastInBytes\":641792458,\"lastOutBytes\":2971543650,\"outBytes\":2971543650,\"outFlow\":15794,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1029169,\"inBytes\":623711783,\"inFlow\":1005149,\"lastChangeTime\":\"138 days, 7:13:07.31\",\"lastInBytes\":623711783,\"lastOutBytes\":3913500250,\"outBytes\":3913500250,\"outFlow\":24019,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":271657,\"inBytes\":1667609135,\"inFlow\":264897,\"lastChangeTime\":\"0:01:28.77\",\"lastInBytes\":1667609135,\"lastOutBytes\":3775252220,\"outBytes\":3775252220,\"outFlow\":6760,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":272108,\"inBytes\":339898633,\"inFlow\":265305,\"lastChangeTime\":\"0:01:29.10\",\"lastInBytes\":339898633,\"lastOutBytes\":2454719127,\"outBytes\":2454719127,\"outFlow\":6803,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":271615,\"inBytes\":3622056324,\"inFlow\":264840,\"lastChangeTime\":\"2:12:29.24\",\"lastInBytes\":3622056324,\"lastOutBytes\":3365458313,\"outBytes\":3365458313,\"outFlow\":6774,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":271570,\"inBytes\":2134366431,\"inFlow\":264804,\"lastChangeTime\":\"2:12:10.09\",\"lastInBytes\":2134366431,\"lastOutBytes\":3312144804,\"outBytes\":3312144804,\"outFlow\":6766,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":272026,\"inBytes\":2274154574,\"inFlow\":265185,\"lastChangeTime\":\"2:11:52.63\",\"lastInBytes\":2274154574,\"lastOutBytes\":1025866156,\"outBytes\":1025866156,\"outFlow\":6841,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":269470,\"inBytes\":1907754187,\"inFlow\":262737,\"lastChangeTime\":\"2:14:35.54\",\"lastInBytes\":1907754187,\"lastOutBytes\":3775800785,\"outBytes\":3775800785,\"outFlow\":6732,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":726030,\"inFlow\":0,\"lastChangeTime\":\"209 days, 20:39:09.70\",\"lastInBytes\":726030,\"lastOutBytes\":31920832,\"outBytes\":31920832,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":365079462,\"inFlow\":1,\"lastChangeTime\":\"209 days, 19:09:17.07\",\"lastInBytes\":365079462,\"lastOutBytes\":3319564403,\"outBytes\":3319564403,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6803570,\"inBytes\":2121866693,\"inFlow\":171776,\"lastChangeTime\":\"31 days, 1:14:43.68\",\"lastInBytes\":2121866693,\"lastOutBytes\":4145797360,\"outBytes\":4145797360,\"outFlow\":6631793,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.137179000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863855", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1007040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"194481\",\"inUnknownProtos\":\"3575902264\",\"index\":\"635\",\"lastChange\":\"0:01:27.64\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:09:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"307155056\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"259604341\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":1095458,\"inBytes\":1882654339,\"inFlow\":1070044,\"lastChangeTime\":\"474 days, 19:19:28.89\",\"lastInBytes\":1882654339,\"lastOutBytes\":3822545256,\"outBytes\":3822545256,\"outFlow\":25413,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1001933,\"inBytes\":2255398383,\"inFlow\":977026,\"lastChangeTime\":\"45 days, 22:01:24.67\",\"lastInBytes\":2255398383,\"lastOutBytes\":1888642519,\"outBytes\":1888642519,\"outFlow\":24907,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1109669,\"inBytes\":3868646928,\"inFlow\":1082434,\"lastChangeTime\":\"45 days, 22:01:29.46\",\"lastInBytes\":3868646928,\"lastOutBytes\":735003897,\"outBytes\":735003897,\"outFlow\":27234,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414544,\"inBytes\":1711443567,\"inFlow\":404487,\"lastChangeTime\":\"167 days, 1:11:47.21\",\"lastInBytes\":1711443567,\"lastOutBytes\":129058800,\"outBytes\":129058800,\"outFlow\":10057,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413828,\"inBytes\":1534298316,\"inFlow\":403578,\"lastChangeTime\":\"167 days, 14:10:42.85\",\"lastInBytes\":1534298316,\"lastOutBytes\":464049042,\"outBytes\":464049042,\"outFlow\":10249,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":415097,\"inBytes\":2452166440,\"inFlow\":404962,\"lastChangeTime\":\"167 days, 14:10:28.66\",\"lastInBytes\":2452166440,\"lastOutBytes\":3575902264,\"outBytes\":3575902264,\"outFlow\":10134,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":410047,\"inBytes\":3002354909,\"inFlow\":400080,\"lastChangeTime\":\"474 days, 19:19:20.28\",\"lastInBytes\":3002354909,\"lastOutBytes\":980097871,\"outBytes\":980097871,\"outFlow\":9967,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1093838,\"inBytes\":369431484,\"inFlow\":1067228,\"lastChangeTime\":\"45 days, 22:01:23.69\",\"lastInBytes\":369431484,\"lastOutBytes\":1725224693,\"outBytes\":1725224693,\"outFlow\":26609,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415479,\"inBytes\":3304637116,\"inFlow\":405310,\"lastChangeTime\":\"167 days, 1:12:05.13\",\"lastInBytes\":3304637116,\"lastOutBytes\":3990589580,\"outBytes\":3990589580,\"outFlow\":10169,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1108691,\"inBytes\":2867732064,\"inFlow\":1081642,\"lastChangeTime\":\"45 days, 22:01:28.01\",\"lastInBytes\":2867732064,\"lastOutBytes\":2684637942,\"outBytes\":2684637942,\"outFlow\":27048,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":280483,\"inBytes\":1313934896,\"inFlow\":273488,\"lastChangeTime\":\"167 days, 14:02:24.70\",\"lastInBytes\":1313934896,\"lastOutBytes\":387746311,\"outBytes\":387746311,\"outFlow\":6995,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1077149,\"inFlow\":0,\"lastChangeTime\":\"167 days, 1:16:54.09\",\"lastInBytes\":1077149,\"lastOutBytes\":41054375,\"outBytes\":41054375,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":364706551,\"inFlow\":1,\"lastChangeTime\":\"167 days, 1:12:12.85\",\"lastInBytes\":364706551,\"lastOutBytes\":2692102362,\"outBytes\":2692102362,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7779096,\"inBytes\":197069083,\"inFlow\":197576,\"lastChangeTime\":\"167 days, 0:52:33.37\",\"lastInBytes\":197069083,\"lastOutBytes\":1015838840,\"outBytes\":1015838840,\"outFlow\":7581520,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:05.987758000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863856", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1007040010", + "name": "H3C前端交换机9", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88630\",\"inUnknownProtos\":\"2954273357\",\"index\":\"635\",\"lastChange\":\"0:01:12.81\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4f:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3106083475\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"61941955\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:09\",\"info\":{\"portInfoList\":[{\"flow\":1089109,\"inBytes\":2768355808,\"inFlow\":1063059,\"lastChangeTime\":\"206 days, 11:33:32.03\",\"lastInBytes\":2768355808,\"lastOutBytes\":3531881311,\"outBytes\":3531881311,\"outFlow\":26050,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":995573,\"inBytes\":1255146022,\"inFlow\":971915,\"lastChangeTime\":\"206 days, 11:33:34.57\",\"lastInBytes\":1255146022,\"lastOutBytes\":1559921294,\"outBytes\":1559921294,\"outFlow\":23657,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406802,\"inBytes\":1203314338,\"inFlow\":396844,\"lastChangeTime\":\"0:01:14.68\",\"lastInBytes\":1203314338,\"lastOutBytes\":2655254892,\"outBytes\":2655254892,\"outFlow\":9958,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1081627,\"inBytes\":3600378148,\"inFlow\":1056096,\"lastChangeTime\":\"0:01:14.68\",\"lastInBytes\":3600378148,\"lastOutBytes\":1621990251,\"outBytes\":1621990251,\"outFlow\":25531,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406358,\"inBytes\":1850074849,\"inFlow\":396526,\"lastChangeTime\":\"0:01:14.69\",\"lastInBytes\":1850074849,\"lastOutBytes\":2653305066,\"outBytes\":2653305066,\"outFlow\":9832,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1045810,\"inBytes\":2628606978,\"inFlow\":1021318,\"lastChangeTime\":\"138 days, 6:23:41.79\",\"lastInBytes\":2628606978,\"lastOutBytes\":2953998126,\"outBytes\":2953998126,\"outFlow\":24492,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1078938,\"inBytes\":902539703,\"inFlow\":1053612,\"lastChangeTime\":\"206 days, 11:33:42.19\",\"lastInBytes\":902539703,\"lastOutBytes\":1813803910,\"outBytes\":1813803910,\"outFlow\":25326,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1090167,\"inBytes\":2374260556,\"inFlow\":1063840,\"lastChangeTime\":\"206 days, 11:33:36.98\",\"lastInBytes\":2374260556,\"lastOutBytes\":461935558,\"outBytes\":461935558,\"outFlow\":26326,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":364687198,\"inFlow\":1,\"lastChangeTime\":\"0:01:14.70\",\"lastInBytes\":364687198,\"lastOutBytes\":3312474607,\"outBytes\":3312474607,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7224272,\"inBytes\":1046883199,\"inFlow\":180047,\"lastChangeTime\":\"0:01:12.81\",\"lastInBytes\":1046883199,\"lastOutBytes\":2071578157,\"outBytes\":2071578157,\"outFlow\":7044224,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:05.998246000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863857", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1007040011", + "name": "H3C前端交换机10", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88637\",\"inUnknownProtos\":\"61949646\",\"index\":\"635\",\"lastChange\":\"0:01:20.39\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:08:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4259772174\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:09\",\"info\":{\"portInfoList\":[{\"flow\":414191,\"inBytes\":4193208345,\"inFlow\":404158,\"lastChangeTime\":\"138 days, 6:36:27.65\",\"lastInBytes\":4193208345,\"lastOutBytes\":928094425,\"outBytes\":928094425,\"outFlow\":10033,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1108033,\"inBytes\":2999590910,\"inFlow\":1081648,\"lastChangeTime\":\"206 days, 11:46:22.70\",\"lastInBytes\":2999590910,\"lastOutBytes\":238693274,\"outBytes\":238693274,\"outFlow\":26384,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1042428,\"inBytes\":220364445,\"inFlow\":1017550,\"lastChangeTime\":\"206 days, 11:46:27.12\",\"lastInBytes\":220364445,\"lastOutBytes\":3002025628,\"outBytes\":3002025628,\"outFlow\":24878,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":276528,\"inBytes\":1078098654,\"inFlow\":269625,\"lastChangeTime\":\"0:01:22.26\",\"lastInBytes\":1078098654,\"lastOutBytes\":2455159386,\"outBytes\":2455159386,\"outFlow\":6903,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413792,\"inBytes\":2052136655,\"inFlow\":403622,\"lastChangeTime\":\"0:01:22.25\",\"lastInBytes\":2052136655,\"lastOutBytes\":3720165416,\"outBytes\":3720165416,\"outFlow\":10169,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1110486,\"inBytes\":4092782035,\"inFlow\":1083397,\"lastChangeTime\":\"206 days, 11:46:31.90\",\"lastInBytes\":4092782035,\"lastOutBytes\":61949646,\"outBytes\":61949646,\"outFlow\":27088,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106342,\"inBytes\":2092927069,\"inFlow\":1079469,\"lastChangeTime\":\"206 days, 11:46:27.14\",\"lastInBytes\":2092927069,\"lastOutBytes\":3833492224,\"outBytes\":3833492224,\"outFlow\":26872,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":364671289,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.24\",\"lastInBytes\":364671289,\"lastOutBytes\":3313896075,\"outBytes\":3313896075,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5489120,\"inBytes\":3344878978,\"inFlow\":139185,\"lastChangeTime\":\"0:01:20.39\",\"lastInBytes\":3344878978,\"lastOutBytes\":449801199,\"outBytes\":449801199,\"outFlow\":5349935,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.123693000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884045521863858", + "createdBy": "0", + "createdTime": "2025-02-24 11:12:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1007040012", + "name": "H3C前端交换机11", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.142.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface142\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88472\",\"inUnknownProtos\":\"2713710112\",\"index\":\"635\",\"lastChange\":\"0:01:13.39\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e8:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3083117969\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.142.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:09\",\"info\":{\"portInfoList\":[{\"flow\":407250,\"inBytes\":206597576,\"inFlow\":397145,\"lastChangeTime\":\"0:01:15.69\",\"lastInBytes\":206597576,\"lastOutBytes\":4131364915,\"outBytes\":4131364915,\"outFlow\":10104,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407225,\"inBytes\":4136954226,\"inFlow\":397217,\"lastChangeTime\":\"0:01:15.24\",\"lastInBytes\":4136954226,\"lastOutBytes\":2123356585,\"outBytes\":2123356585,\"outFlow\":10008,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":272164,\"inBytes\":1108084878,\"inFlow\":265386,\"lastChangeTime\":\"0:01:15.23\",\"lastInBytes\":1108084878,\"lastOutBytes\":2202240173,\"outBytes\":2202240173,\"outFlow\":6778,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":271712,\"inBytes\":1152898802,\"inFlow\":264938,\"lastChangeTime\":\"0:01:15.23\",\"lastInBytes\":1152898802,\"lastOutBytes\":781913545,\"outBytes\":781913545,\"outFlow\":6774,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":272064,\"inBytes\":1324643537,\"inFlow\":265345,\"lastChangeTime\":\"0:01:15.24\",\"lastInBytes\":1324643537,\"lastOutBytes\":2286198630,\"outBytes\":2286198630,\"outFlow\":6719,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":271735,\"inBytes\":4133979371,\"inFlow\":264944,\"lastChangeTime\":\"0:01:15.23\",\"lastInBytes\":4133979371,\"lastOutBytes\":2713639913,\"outBytes\":2713639913,\"outFlow\":6791,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:15.25\",\"lastInBytes\":0,\"lastOutBytes\":2961334420,\"outBytes\":2961334420,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1910404,\"inBytes\":2557913265,\"inFlow\":49591,\"lastChangeTime\":\"0:01:13.39\",\"lastInBytes\":2557913265,\"lastOutBytes\":3624390950,\"outBytes\":3624390950,\"outFlow\":1860813,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.021533000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589884036931929191", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1007110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.141.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.77\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"122 days, 10:51:22.70\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"11023901\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28550869\",\"inOctets\":\"3575962163\",\"inUcastPkts\":\"1391790665\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:f6:84:d0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2908974558\",\"outQLen\":\"0\",\"outUcastPkts\":\"1311592298\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.141.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1008": { + "ndmAlarmHost": [ + { + "id": "689574694645009439", + "createdBy": null, + "createdTime": "2025-10-20 09:12:27", + "updatedBy": null, + "updatedTime": "2025-10-21 01:34:27", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.143.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "123456", + "gbCode": "01060803048109000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "689574703234944044", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060001", + "name": "[618](10)宋园消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944045", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060002", + "name": "[617](10)宋园消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944046", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060003", + "name": "[619](10)宋园变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944047", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:07:43", + "echoMap": {}, + "deviceId": "1008060004", + "name": "[609](10)宋园环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803053005008609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944048", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 07:16:43", + "echoMap": {}, + "deviceId": "1008060005", + "name": "[620](10)宋园变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944049", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060006", + "name": "[612](10)宋园内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944050", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060007", + "name": "[604](10)宋园弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944051", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060008", + "name": "[605](10)宋园弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944052", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060009", + "name": "[606](10)宋园弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944053", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060010", + "name": "[607](10)宋园弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944054", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060011", + "name": "[602](10)宋园编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803041005008602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944055", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060012", + "name": "[613](10)宋园内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944056", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-02 14:24:43", + "echoMap": {}, + "deviceId": "1008060013", + "name": "[603](10)宋园编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803041005008603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944057", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060014", + "name": "[319](10)宋园#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944058", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-01 11:28:43", + "echoMap": {}, + "deviceId": "1008060015", + "name": "[318](10)宋园#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944059", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-25 10:03:55", + "echoMap": {}, + "deviceId": "1008060016", + "name": "[341](10)宋园2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801036005008341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944060", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060017", + "name": "[320](10)宋园#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944061", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-12-09 02:40:17", + "echoMap": {}, + "deviceId": "1008060018", + "name": "[337](10)宋园B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801040006008337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944062", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060019", + "name": "[336](10)宋园B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801040006008336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944063", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060020", + "name": "[343](10)宋园安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801085006008343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944064", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060021", + "name": "[201](10)宋园厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801035004008201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944065", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060022", + "name": "[402](10)宋园1#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801005006008402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944066", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060023", + "name": "[304](10)宋园1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944067", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060024", + "name": "[303](10)宋园1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944068", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-01 22:57:43", + "echoMap": {}, + "deviceId": "1008060025", + "name": "[308](10)宋园1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944069", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060026", + "name": "[210](10)宋园1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055004008210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944070", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060027", + "name": "[307](10)宋园1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944071", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060028", + "name": "[305](10)宋园1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944072", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-01 07:22:44", + "echoMap": {}, + "deviceId": "1008060029", + "name": "[306](10)宋园1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944073", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060030", + "name": "[310](10)宋园1#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944074", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060031", + "name": "[342](10)宋园3#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801036005008342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944075", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060032", + "name": "[309](10)宋园1#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055005008309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944076", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060033", + "name": "[601](10)宋园车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803042004008601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574703234944077", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060034", + "name": "[203](10)宋园厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801035004008203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911296", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060035", + "name": "[335](10)宋园B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801040006008335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911297", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060036", + "name": "[405](10)宋园3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801007006008405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911298", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060037", + "name": "[202](10)宋园厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801035004008202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911299", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060038", + "name": "[317](10)宋园#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911300", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060039", + "name": "[322](10)宋园#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911301", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060040", + "name": "[321](10)宋园#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911302", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-22 10:53:56", + "echoMap": {}, + "deviceId": "1008060041", + "name": "[340](10)宋园1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801036005008340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911303", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060042", + "name": "[324](10)宋园#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911304", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1008060043", + "name": "[323](10)宋园#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911305", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060044", + "name": "[325](10)宋园#5厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911306", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060045", + "name": "[345](10)宋园5#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801009006008345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911307", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060046", + "name": "[302](10)宋园1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911308", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060047", + "name": "[301](10)宋园1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801055006008301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911309", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060048", + "name": "[502](10)宋园票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801030006008502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911310", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060049", + "name": "[408](10)宋园5#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801009006008408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911311", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060050", + "name": "[407](10)宋园5#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801009006008407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911312", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060051", + "name": "[401](10)宋园1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801005006008401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911313", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060052", + "name": "[404](10)宋园2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801006006008404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911314", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060053", + "name": "[504](10)宋园票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801025006008504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574707529911315", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1008060054", + "name": "[326](10)宋园#5厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878592", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060055", + "name": "[327](10)宋园#5厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878593", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060056", + "name": "[614](10)宋园内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001006008614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878594", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060057", + "name": "[406](10)宋园4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801008006008406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878595", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060058", + "name": "[503](10)宋园票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801030006008503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878596", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060059", + "name": "[204](10)宋园厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801035004008204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878597", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060060", + "name": "[610](10)宋园环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803053005008610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878598", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060061", + "name": "[205](10)宋园厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801035004008205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878599", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060062", + "name": "[344](10)宋园安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801085006008344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878600", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060063", + "name": "[311](10)宋园2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056006008311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878601", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1008060064", + "name": "[328](10)宋园#6厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801045006008328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878602", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060065", + "name": "[315](10)宋园2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056006008315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878603", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060066", + "name": "[312](10)宋园2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056006008312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878604", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1008060067", + "name": "[316](10)宋园2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056006008316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878605", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060068", + "name": "[211](10)宋园2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056004008211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878606", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060069", + "name": "[313](10)宋园2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056006008313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878607", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060070", + "name": "[314](10)宋园2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801056006008314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878608", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060071", + "name": "[608](10)宋园屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878609", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060072", + "name": "[330](10)宋园#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802017006008330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878610", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060073", + "name": "[615](10)宋园内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803021006008615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878611", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060074", + "name": "[339](10)宋园B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802002006008339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878612", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060075", + "name": "[107](10)宋园下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802012006008107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878613", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060076", + "name": "[108](10)宋园下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802012006008108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878614", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060077", + "name": "[110](10)宋园下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802012006008110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878615", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060078", + "name": "[109](10)宋园下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802012006008109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878616", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060079", + "name": "[208](10)宋园下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802001004008208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878617", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060080", + "name": "[333](10)宋园#5台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802017006008333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878618", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060081", + "name": "[112](10)宋园下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802012006008112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878619", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060082", + "name": "[111](10)宋园下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802012006008111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878620", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060083", + "name": "[209](10)宋园下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802001004008209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878621", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060084", + "name": "[105](10)宋园上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802007006008105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878622", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060085", + "name": "[106](10)宋园上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802007006008106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878623", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1008060086", + "name": "[103](10)宋园上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802007006008103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878624", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060087", + "name": "[104](10)宋园上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802007006008104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878625", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060088", + "name": "[207](10)宋园上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802001004008207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878626", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2026-02-01 01:40:43", + "echoMap": {}, + "deviceId": "1008060089", + "name": "[329](10)宋园#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802017006008329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878627", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060090", + "name": "[331](10)宋园#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802017006008331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878628", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060091", + "name": "[616](10)宋园内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803021006008616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878629", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060092", + "name": "[338](10)宋园B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802002006008338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878630", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060093", + "name": "[101](10)宋园上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802007006008101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878631", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060094", + "name": "[102](10)宋园上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802007006008102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878632", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060095", + "name": "[206](10)宋园上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802001004008206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878633", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060096", + "name": "[334](10)宋园#6台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802017006008334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878634", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060097", + "name": "[332](10)宋园#4台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060802017006008332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878635", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060098", + "name": "[708](10)宋园下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878636", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060099", + "name": "[706](10)宋园6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878637", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060100", + "name": "[704](10)宋园道岔8#、4#交叉渡线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878638", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060101", + "name": "[710](10)宋园存车线2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008710", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878639", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1008060102", + "name": "[707](10)宋园上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878640", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060103", + "name": "[705](10)宋园2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878641", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060104", + "name": "[702](10)宋园5#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878642", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060105", + "name": "[709](10)宋园存车线1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008709", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878643", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060106", + "name": "[703](10)宋园道岔3#、7#交叉渡线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878644", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060107", + "name": "[701](10)宋园1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060804013006008701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878645", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060108", + "name": "[621](10)宋园通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878646", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060109", + "name": "[622](10)宋园通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803048005008622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878647", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1008060110", + "name": "[403](10)宋园1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801005006008403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878648", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1008060111", + "name": "[623](10)宋园客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060801001005008623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878649", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060112", + "name": "[624](10)宋园气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803067005008624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878650", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060113", + "name": "[626](10)宋园内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803001005008626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878651", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1008060114", + "name": "[625](10)宋园消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.144.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803068005008625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689574711824878652", + "createdBy": "0", + "createdTime": "2025-10-20 09:22:30", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1008060115", + "name": "[627](10)宋园气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.143.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060803067005008627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589884883040478318", + "createdBy": "0", + "createdTime": "2025-02-24 12:32:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1008070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.143.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060800000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"1797061\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"616043419\",\"inUcastPkts\":\"1450052409\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:64:ed\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3969725228\",\"outQLen\":\"0\",\"outUcastPkts\":\"1426631700\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.143.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:43\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ16FBF\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"41\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589884883040478357", + "createdBy": "2", + "createdTime": "2025-02-24 12:33:52", + "updatedBy": null, + "updatedTime": "2025-12-23 10:10:05", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.143.51", + "manageUrl": "http:\\\\10.18.143.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478358", + "createdBy": "2", + "createdTime": "2025-02-24 12:34:11", + "updatedBy": null, + "updatedTime": "2025-12-23 10:10:00", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.143.52", + "manageUrl": "http:\\\\10.14.43.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589884883040478320", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1008090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.143.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.97\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"252 days, 2:44:45.68\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"4332911\",\"inErrors\":\"0\",\"inNUcastPkts\":\"11618029\",\"inOctets\":\"1316755051\",\"inUcastPkts\":\"4076923196\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:01:26.12\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:b0:78\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1903130195\",\"outQLen\":\"0\",\"outUcastPkts\":\"862945938\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.143.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589884883040478321", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-09-03 15:46:10", + "echoMap": {}, + "deviceId": "1008050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.143.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060800000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.143.22;10.18.143.23" + }, + { + "id": "589884883040478322", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1008050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.143.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060800000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"12434989\",\"inErrors\":\"28\",\"inNUcastPkts\":\"41353962\",\"inOctets\":\"2687016944\",\"inUcastPkts\":\"3211689124\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:7b:cb:69:91:36\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2059708032\",\"outQLen\":\"0\",\"outUcastPkts\":\"2236905276\",\"specific\":\"0.0\",\"speed\":\"1100000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4300\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3280\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.143.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:44\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":246916346,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281025022}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14322\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"52\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.143.22" + }, + { + "id": "589884883040478323", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1008050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.143.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060800000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"23234940\",\"inErrors\":\"0\",\"inNUcastPkts\":\"52241071\",\"inOctets\":\"3020043183\",\"inUcastPkts\":\"1049866543\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:2f:89\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2659034930\",\"outQLen\":\"0\",\"outUcastPkts\":\"3796521282\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.143.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:45\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":246916346,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281025022}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14323\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"53\",\"CPU使用率\":\"20\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.143.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589884883040478324", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1008030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3173183\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"174921269\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"150 days, 3:29:33.51\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3173188\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:22:a7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22500001,\"status\":1,\"voltage\":25.814001},{\"current\":0.23600002,\"status\":1,\"voltage\":25.814001},{\"current\":0.24700001,\"status\":1,\"voltage\":25.814001},{\"current\":0.256,\"status\":1,\"voltage\":25.814001},{\"current\":0.25300002,\"status\":1,\"voltage\":25.814001},{\"current\":0.22000001,\"status\":1,\"voltage\":25.814001},{\"current\":0.224,\"status\":1,\"voltage\":25.814001},{\"current\":0.001,\"status\":1,\"voltage\":25.814001},{\"current\":0.001,\"status\":1,\"voltage\":25.814001},{\"current\":0.001,\"status\":1,\"voltage\":25.472002},{\"current\":0.003,\"status\":1,\"voltage\":25.472002},{\"current\":0.001,\"status\":1,\"voltage\":25.472002},{\"current\":0.001,\"status\":1,\"voltage\":25.472002},{\"current\":0.001,\"status\":1,\"voltage\":25.472002},{\"current\":0.001,\"status\":1,\"voltage\":25.472002},{\"current\":0.001,\"status\":1,\"voltage\":25.472002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300870\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478325", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1008030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3173182\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"174710752\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"152 days, 2:06:47.99\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3173187\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:d5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24700001,\"status\":1,\"voltage\":26.332},{\"current\":0.312,\"status\":1,\"voltage\":26.332},{\"current\":0.23,\"status\":1,\"voltage\":26.332},{\"current\":0.342,\"status\":1,\"voltage\":26.332},{\"current\":0.22500001,\"status\":1,\"voltage\":26.332},{\"current\":0.22600001,\"status\":1,\"voltage\":26.332},{\"current\":0.25500003,\"status\":1,\"voltage\":26.332},{\"current\":0.22200002,\"status\":1,\"voltage\":26.332},{\"current\":0.22200002,\"status\":1,\"voltage\":26.332},{\"current\":0.001,\"status\":1,\"voltage\":26.064001},{\"current\":0.003,\"status\":1,\"voltage\":26.064001},{\"current\":0.224,\"status\":1,\"voltage\":26.064001},{\"current\":0.001,\"status\":1,\"voltage\":26.064001},{\"current\":0.001,\"status\":1,\"voltage\":26.064001},{\"current\":0.001,\"status\":1,\"voltage\":26.064001},{\"current\":0.001,\"status\":1,\"voltage\":26.064001}],\"fanSpeeds\":[2760,2760],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0001512208303029\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478326", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1008030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3409691\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"187972047\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"151 days, 12:01:14.42\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3409696\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:62\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":26.446001},{\"current\":0.273,\"status\":1,\"voltage\":26.446001},{\"current\":0.001,\"status\":1,\"voltage\":26.446001},{\"current\":0.26700002,\"status\":1,\"voltage\":26.446001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.446001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.446001},{\"current\":0.256,\"status\":1,\"voltage\":26.446001},{\"current\":0.55700004,\"status\":1,\"voltage\":26.446001},{\"current\":0.365,\"status\":1,\"voltage\":26.446001},{\"current\":0.37300003,\"status\":1,\"voltage\":25.724},{\"current\":0.003,\"status\":1,\"voltage\":25.724},{\"current\":0.28500003,\"status\":1,\"voltage\":25.724},{\"current\":0.425,\"status\":1,\"voltage\":25.724},{\"current\":0.001,\"status\":1,\"voltage\":25.724},{\"current\":0.001,\"status\":1,\"voltage\":25.724},{\"current\":0.001,\"status\":1,\"voltage\":25.724}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301313\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478327", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1008030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3360453\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"185212701\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"151 days, 2:24:37.53\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3360458\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:12\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34500003,\"status\":1,\"voltage\":26.279001},{\"current\":0.34100002,\"status\":1,\"voltage\":26.279001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.279001},{\"current\":0.527,\"status\":1,\"voltage\":26.279001},{\"current\":0.268,\"status\":1,\"voltage\":26.279001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.279001},{\"current\":0.25,\"status\":1,\"voltage\":26.279001},{\"current\":0.26700002,\"status\":1,\"voltage\":26.279001},{\"current\":0.404,\"status\":1,\"voltage\":26.279001},{\"current\":0.224,\"status\":1,\"voltage\":26.276001},{\"current\":0.003,\"status\":1,\"voltage\":26.276001},{\"current\":0.001,\"status\":1,\"voltage\":26.276001},{\"current\":0.001,\"status\":1,\"voltage\":26.276001},{\"current\":0.001,\"status\":1,\"voltage\":26.276001},{\"current\":0.001,\"status\":1,\"voltage\":26.276001},{\"current\":0.001,\"status\":1,\"voltage\":26.276001}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208303858\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478328", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1008030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3408701\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"187917451\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"151 days, 19:35:08.54\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3408706\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:c2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.53300005,\"status\":1,\"voltage\":26.569002},{\"current\":0.521,\"status\":1,\"voltage\":26.569002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.569002},{\"current\":0.33200002,\"status\":1,\"voltage\":26.569002},{\"current\":0.551,\"status\":1,\"voltage\":26.569002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.569002},{\"current\":0.29200003,\"status\":1,\"voltage\":26.569002},{\"current\":0.284,\"status\":1,\"voltage\":26.569002},{\"current\":0.42800003,\"status\":1,\"voltage\":26.569002},{\"current\":0.231,\"status\":1,\"voltage\":25.95},{\"current\":0.003,\"status\":1,\"voltage\":25.95},{\"current\":0.252,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208304034\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478329", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1008030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3408049\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"187882052\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 18:17:41.99\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3408054\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:41\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34100002,\"status\":1,\"voltage\":26.617},{\"current\":0.001,\"status\":0,\"voltage\":26.617},{\"current\":0.001,\"status\":1,\"voltage\":26.617},{\"current\":0.418,\"status\":1,\"voltage\":26.617},{\"current\":0.44900003,\"status\":1,\"voltage\":26.617},{\"current\":0.432,\"status\":1,\"voltage\":26.617},{\"current\":0.38700002,\"status\":1,\"voltage\":26.617},{\"current\":0.46500003,\"status\":1,\"voltage\":26.617},{\"current\":0.321,\"status\":1,\"voltage\":26.617},{\"current\":0.476,\"status\":1,\"voltage\":25.7},{\"current\":0.003,\"status\":1,\"voltage\":25.7},{\"current\":0.001,\"status\":1,\"voltage\":25.7},{\"current\":0.001,\"status\":1,\"voltage\":25.7},{\"current\":0.001,\"status\":1,\"voltage\":25.7},{\"current\":0.001,\"status\":1,\"voltage\":25.7},{\"current\":0.001,\"status\":1,\"voltage\":25.7}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303393\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478330", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1008030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3359638\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"185392664\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"151 days, 13:11:54.52\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3359643\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:a6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24900001,\"status\":1,\"voltage\":25.990002},{\"current\":0.26200002,\"status\":1,\"voltage\":25.990002},{\"current\":0.259,\"status\":1,\"voltage\":25.990002},{\"current\":0.35500002,\"status\":1,\"voltage\":25.990002},{\"current\":0.268,\"status\":1,\"voltage\":25.990002},{\"current\":0.54,\"status\":1,\"voltage\":25.990002},{\"current\":0.21100001,\"status\":1,\"voltage\":25.990002},{\"current\":0.215,\"status\":1,\"voltage\":25.990002},{\"current\":0.001,\"status\":1,\"voltage\":25.990002},{\"current\":0.001,\"status\":1,\"voltage\":25.933},{\"current\":0.003,\"status\":1,\"voltage\":25.933},{\"current\":0.001,\"status\":1,\"voltage\":25.933},{\"current\":0.001,\"status\":1,\"voltage\":25.933},{\"current\":0.001,\"status\":1,\"voltage\":25.933},{\"current\":0.001,\"status\":1,\"voltage\":25.933},{\"current\":0.001,\"status\":1,\"voltage\":25.933}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301702\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478331", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1008030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3360290\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"185202691\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"153 days, 3:39:19.02\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3360295\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:eb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.351,\"status\":1,\"voltage\":26.439001},{\"current\":0.31,\"status\":1,\"voltage\":26.439001},{\"current\":0.54,\"status\":1,\"voltage\":26.439001},{\"current\":0.26500002,\"status\":1,\"voltage\":26.439001},{\"current\":0.256,\"status\":1,\"voltage\":26.439001},{\"current\":0.314,\"status\":1,\"voltage\":26.439001},{\"current\":0.23,\"status\":1,\"voltage\":26.439001},{\"current\":0.48700002,\"status\":1,\"voltage\":26.439001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.439001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.533},{\"current\":0.003,\"status\":1,\"voltage\":26.533},{\"current\":0.001,\"status\":1,\"voltage\":26.533},{\"current\":0.001,\"status\":1,\"voltage\":26.533},{\"current\":0.001,\"status\":1,\"voltage\":26.533},{\"current\":0.001,\"status\":1,\"voltage\":26.533},{\"current\":0.001,\"status\":1,\"voltage\":26.533}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303051\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478332", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1008030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3172514\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"174674236\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"150 days, 18:27:40.77\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3172519\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:fa\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22900002,\"status\":1,\"voltage\":27.233002},{\"current\":0.25300002,\"status\":1,\"voltage\":27.233002},{\"current\":0.23600002,\"status\":1,\"voltage\":27.233002},{\"current\":0.28300002,\"status\":1,\"voltage\":27.233002},{\"current\":0.245,\"status\":1,\"voltage\":27.233002},{\"current\":0.23500001,\"status\":1,\"voltage\":27.233002},{\"current\":0.264,\"status\":1,\"voltage\":27.233002},{\"current\":0.252,\"status\":1,\"voltage\":27.233002},{\"current\":0.56200004,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":26.317001},{\"current\":0.003,\"status\":1,\"voltage\":26.317001},{\"current\":0.001,\"status\":1,\"voltage\":26.317001},{\"current\":0.001,\"status\":1,\"voltage\":26.317001},{\"current\":0.001,\"status\":1,\"voltage\":26.317001},{\"current\":0.001,\"status\":1,\"voltage\":26.317001},{\"current\":0.001,\"status\":1,\"voltage\":26.317001}],\"fanSpeeds\":[1380,1320],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208303066\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478333", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:55", + "echoMap": {}, + "deviceId": "1008030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:35:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478334", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:55", + "echoMap": {}, + "deviceId": "1008030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3359137\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"185137368\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"336 days, 5:11:12.21\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3359142\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:d4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":26.268002},{\"current\":0.275,\"status\":1,\"voltage\":26.268002},{\"current\":0.312,\"status\":1,\"voltage\":26.268002},{\"current\":0.29000002,\"status\":1,\"voltage\":26.268002},{\"current\":0.54800004,\"status\":1,\"voltage\":26.268002},{\"current\":0.27400002,\"status\":1,\"voltage\":26.268002},{\"current\":0.367,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":0,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.704},{\"current\":0.003,\"status\":1,\"voltage\":26.704},{\"current\":0.001,\"status\":1,\"voltage\":26.704},{\"current\":0.001,\"status\":1,\"voltage\":26.704},{\"current\":0.001,\"status\":1,\"voltage\":26.704},{\"current\":0.001,\"status\":1,\"voltage\":26.704},{\"current\":0.001,\"status\":1,\"voltage\":26.704}],\"fanSpeeds\":[0,1230],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301683\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478335", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:56", + "echoMap": {}, + "deviceId": "1008030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3359137\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"185138890\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"415 days, 5:53:40.36\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3359142\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:5a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23200001,\"status\":1,\"voltage\":26.262001},{\"current\":0.28,\"status\":1,\"voltage\":26.262001},{\"current\":0.257,\"status\":1,\"voltage\":26.262001},{\"current\":0.555,\"status\":1,\"voltage\":26.262001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.262001},{\"current\":0.26900002,\"status\":1,\"voltage\":26.262001},{\"current\":0.001,\"status\":1,\"voltage\":26.262001},{\"current\":0.001,\"status\":1,\"voltage\":26.262001},{\"current\":0.001,\"status\":1,\"voltage\":26.262001},{\"current\":0.001,\"status\":1,\"voltage\":26.729002},{\"current\":0.003,\"status\":1,\"voltage\":26.729002},{\"current\":0.001,\"status\":1,\"voltage\":26.729002},{\"current\":0.001,\"status\":1,\"voltage\":26.729002},{\"current\":0.001,\"status\":1,\"voltage\":26.729002},{\"current\":0.001,\"status\":1,\"voltage\":26.729002},{\"current\":0.001,\"status\":1,\"voltage\":26.729002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302073\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478336", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:56", + "echoMap": {}, + "deviceId": "1008030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3171687\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"174628038\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 19:27:17.24\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3171692\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:fd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.888},{\"current\":0.001,\"status\":1,\"voltage\":25.888},{\"current\":0.33100003,\"status\":1,\"voltage\":25.888},{\"current\":0.34100002,\"status\":1,\"voltage\":25.888},{\"current\":0.22900002,\"status\":1,\"voltage\":25.888},{\"current\":0.22100002,\"status\":1,\"voltage\":25.888},{\"current\":0.001,\"status\":1,\"voltage\":25.888},{\"current\":0.001,\"status\":1,\"voltage\":25.888},{\"current\":0.001,\"status\":1,\"voltage\":25.888},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304792\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478337", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:56", + "echoMap": {}, + "deviceId": "1008030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3171524\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"174617804\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 19:39:03.72\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3171529\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:81\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.138},{\"current\":0.001,\"status\":1,\"voltage\":26.138},{\"current\":0.29000002,\"status\":1,\"voltage\":26.138},{\"current\":0.282,\"status\":1,\"voltage\":26.138},{\"current\":0.0,\"status\":1,\"voltage\":26.138},{\"current\":0.0,\"status\":1,\"voltage\":26.138},{\"current\":0.0,\"status\":1,\"voltage\":26.138},{\"current\":0.0,\"status\":1,\"voltage\":26.138},{\"current\":0.0,\"status\":1,\"voltage\":26.138},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304810\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478338", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:57", + "echoMap": {}, + "deviceId": "1008030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4541052\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"251415438\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 20:03:44.67\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4541057\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:a0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.23500001,\"status\":1,\"voltage\":25.95},{\"current\":0.307,\"status\":1,\"voltage\":25.95},{\"current\":0.31100002,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304812\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478339", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:57", + "echoMap": {}, + "deviceId": "1008030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.144.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4541052\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"251415319\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 20:02:10.63\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4541057\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:9f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.30200002,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":26.003002},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304814\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589884883040478340", + "createdBy": "2", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:22", + "echoMap": {}, + "deviceId": "1008040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.143.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif143\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:05:16.76\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:09:e9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"6\",\"temperature\":\"38\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.143.64\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"261\",\"0\",\"0\",\"287\",\"49346\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"5174451\",\"0\",\"21621\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:22\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34590,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":562,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33330,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":559,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34889,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":558,\"opticalVoltage\":3297,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33209,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":562,\"opticalVoltage\":3306,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41250,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":561,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33990,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":562,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41909,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":561,\"opticalVoltage\":3250,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38220,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":562,\"opticalVoltage\":3248,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34830,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":564,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35279,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":563,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35310,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":594,\"opticalVoltage\":3295,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41490,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":559,\"opticalVoltage\":3290,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40470,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":562,\"opticalVoltage\":3361,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43889,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":561,\"opticalVoltage\":3387,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":78449,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":184,\"opticalVoltage\":3369,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39540,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":559,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38700,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":563,\"opticalVoltage\":3373,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":45659,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":542,\"opticalVoltage\":3351,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38250,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":561,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35669,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":563,\"opticalVoltage\":3413,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":427,\"inBytes\":1538381654,\"inFlow\":72,\"lastChangeTime\":\"0:06:03.52\",\"lastInBytes\":1538381654,\"lastOutBytes\":4104958989,\"opticalBiasCurrent\":14279,\"opticalReceivePower\":205,\"opticalTemperature\":50,\"opticalTransmitPower\":234,\"opticalVoltage\":3325,\"outBytes\":4104958989,\"outFlow\":354,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37950,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":559,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":299813,\"inBytes\":1542174787,\"inFlow\":21566,\"lastChangeTime\":\"0:06:03.56\",\"lastInBytes\":1542174787,\"lastOutBytes\":2774140955,\"opticalBiasCurrent\":36240,\"opticalReceivePower\":137,\"opticalTemperature\":52,\"opticalTransmitPower\":598,\"opticalVoltage\":3358,\"outBytes\":2774140955,\"outFlow\":278246,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":85484,\"inBytes\":3560641547,\"inFlow\":3090,\"lastChangeTime\":\"0:06:03.64\",\"lastInBytes\":3560641547,\"lastOutBytes\":601822943,\"opticalBiasCurrent\":37380,\"opticalReceivePower\":344,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3348,\"outBytes\":601822943,\"outFlow\":82393,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2331528,\"inBytes\":3861823770,\"inFlow\":2256817,\"lastChangeTime\":\"1:00:10.73\",\"lastInBytes\":3861823770,\"lastOutBytes\":3532999946,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":1,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3402,\"outBytes\":3532999946,\"outFlow\":74711,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3757648,\"inBytes\":3062354119,\"inFlow\":3637025,\"lastChangeTime\":\"0:06:02.70\",\"lastInBytes\":3062354119,\"lastOutBytes\":2311933954,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":236,\"opticalTemperature\":45,\"opticalTransmitPower\":237,\"opticalVoltage\":3344,\"outBytes\":2311933954,\"outFlow\":120623,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6937215,\"inBytes\":1833781071,\"inFlow\":6723741,\"lastChangeTime\":\"0:36:24.81\",\"lastInBytes\":1833781071,\"lastOutBytes\":1466393387,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":145,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3344,\"outBytes\":1466393387,\"outFlow\":213473,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5279370,\"inBytes\":570718656,\"inFlow\":5118905,\"lastChangeTime\":\"120 days, 8:11:39.61\",\"lastInBytes\":570718656,\"lastOutBytes\":4268539406,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":3,\"opticalTemperature\":47,\"opticalTransmitPower\":251,\"opticalVoltage\":3344,\"outBytes\":4268539406,\"outFlow\":160465,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7506360,\"inBytes\":2814312769,\"inFlow\":7278279,\"lastChangeTime\":\"0:06:02.90\",\"lastInBytes\":2814312769,\"lastOutBytes\":1817657723,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":122,\"opticalTemperature\":50,\"opticalTransmitPower\":251,\"opticalVoltage\":3366,\"outBytes\":1817657723,\"outFlow\":228080,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5976195,\"inBytes\":3054550578,\"inFlow\":5806723,\"lastChangeTime\":\"0:06:02.92\",\"lastInBytes\":3054550578,\"lastOutBytes\":1607593971,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":2,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":1607593971,\"outFlow\":169471,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3387194,\"inBytes\":2339249011,\"inFlow\":3282697,\"lastChangeTime\":\"105 days, 1:18:08.41\",\"lastInBytes\":2339249011,\"lastOutBytes\":2970574610,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":167,\"opticalTemperature\":48,\"opticalTransmitPower\":245,\"opticalVoltage\":3388,\"outBytes\":2970574610,\"outFlow\":104496,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5767284,\"inBytes\":3386950727,\"inFlow\":5595058,\"lastChangeTime\":\"0:06:03.01\",\"lastInBytes\":3386950727,\"lastOutBytes\":2304243134,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":145,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3402,\"outBytes\":2304243134,\"outFlow\":172226,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6039310,\"inBytes\":3426843500,\"inFlow\":5850994,\"lastChangeTime\":\"181 days, 22:42:01.89\",\"lastInBytes\":3426843500,\"lastOutBytes\":3339087739,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":162,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3344,\"outBytes\":3339087739,\"outFlow\":188315,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3661859,\"inBytes\":591667377,\"inFlow\":3549152,\"lastChangeTime\":\"0:06:03.07\",\"lastInBytes\":591667377,\"lastOutBytes\":2659429415,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":158,\"opticalTemperature\":49,\"opticalTransmitPower\":237,\"opticalVoltage\":3332,\"outBytes\":2659429415,\"outFlow\":112706,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6182108,\"inBytes\":3309065329,\"inFlow\":5990366,\"lastChangeTime\":\"0:06:03.11\",\"lastInBytes\":3309065329,\"lastOutBytes\":3463303365,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":180,\"opticalTemperature\":46,\"opticalTransmitPower\":240,\"opticalVoltage\":3390,\"outBytes\":3463303365,\"outFlow\":191742,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3510168,\"inBytes\":3873000538,\"inFlow\":3399626,\"lastChangeTime\":\"0:06:03.15\",\"lastInBytes\":3873000538,\"lastOutBytes\":1769702454,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":2,\"opticalTemperature\":45,\"opticalTransmitPower\":238,\"opticalVoltage\":3346,\"outBytes\":1769702454,\"outFlow\":110542,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2847938,\"inBytes\":40723361,\"inFlow\":2759336,\"lastChangeTime\":\"0:06:03.23\",\"lastInBytes\":40723361,\"lastOutBytes\":2465127990,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":197,\"opticalTemperature\":43,\"opticalTransmitPower\":236,\"opticalVoltage\":3352,\"outBytes\":2465127990,\"outFlow\":88601,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1421449,\"inBytes\":2197817523,\"inFlow\":1376976,\"lastChangeTime\":\"0:06:03.28\",\"lastInBytes\":2197817523,\"lastOutBytes\":1947192191,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":244,\"opticalTemperature\":44,\"opticalTransmitPower\":245,\"opticalVoltage\":3338,\"outBytes\":1947192191,\"outFlow\":44473,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1029594,\"inBytes\":2601869733,\"inFlow\":997225,\"lastChangeTime\":\"0:06:03.34\",\"lastInBytes\":2601869733,\"lastOutBytes\":133625500,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":206,\"opticalTemperature\":46,\"opticalTransmitPower\":245,\"opticalVoltage\":3328,\"outBytes\":133625500,\"outFlow\":32368,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2447076,\"inBytes\":1496092016,\"inFlow\":2370910,\"lastChangeTime\":\"0:06:03.36\",\"lastInBytes\":1496092016,\"lastOutBytes\":223130833,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":274,\"opticalTemperature\":44,\"opticalTransmitPower\":243,\"opticalVoltage\":3340,\"outBytes\":223130833,\"outFlow\":76166,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":241,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":246,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":246,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":245,\"opticalVoltage\":3355,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":241,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":240,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3374,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":22365124,\"inBytes\":590169427,\"inFlow\":787168,\"lastChangeTime\":\"0:05:18.02\",\"lastInBytes\":590169427,\"lastOutBytes\":1909120092,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1909120092,\"outFlow\":21577956,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":425,\"inBytes\":234797491,\"inFlow\":78,\"lastChangeTime\":\"100 days, 3:51:22.18\",\"lastInBytes\":234797491,\"lastOutBytes\":3588435172,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3588435172,\"outFlow\":347,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":6310596,\"inBytes\":4063362742,\"inFlow\":569919,\"lastChangeTime\":\"0:05:18.07\",\"lastInBytes\":4063362742,\"lastOutBytes\":930700895,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":930700895,\"outFlow\":5740676,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":24016,\"inBytes\":1479805599,\"inFlow\":12231,\"lastChangeTime\":\"0:05:19.43\",\"lastInBytes\":1479805599,\"lastOutBytes\":791608961,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":791608961,\"outFlow\":11785,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14781044,\"inBytes\":332169483,\"inFlow\":493123,\"lastChangeTime\":\"0:05:18.10\",\"lastInBytes\":332169483,\"lastOutBytes\":440933878,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":440933878,\"outFlow\":14287920,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":39802878,\"inBytes\":315757245,\"inFlow\":15033675,\"lastChangeTime\":\"0:05:19.46\",\"lastInBytes\":315757245,\"lastOutBytes\":141587509,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":141587509,\"outFlow\":24769203,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":381,\"inBytes\":272662823,\"inFlow\":15,\"lastChangeTime\":\"185 days, 23:17:10.64\",\"lastInBytes\":272662823,\"lastOutBytes\":3950387245,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3950387245,\"outFlow\":366,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":39638,\"inBytes\":4088153594,\"inFlow\":19685,\"lastChangeTime\":\"0:29:53.83\",\"lastInBytes\":4088153594,\"lastOutBytes\":290710689,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":290710689,\"outFlow\":19952,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5116407,\"inBytes\":202043111,\"inFlow\":52038,\"lastChangeTime\":\"147 days, 13:40:30.03\",\"lastInBytes\":202043111,\"lastOutBytes\":2051895174,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2051895174,\"outFlow\":5064369,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":592,\"inBytes\":1960830101,\"inFlow\":142,\"lastChangeTime\":\"147 days, 13:39:41.23\",\"lastInBytes\":1960830101,\"lastOutBytes\":1700378763,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1700378763,\"outFlow\":449,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":869,\"inBytes\":3033284785,\"inFlow\":218,\"lastChangeTime\":\"147 days, 13:39:40.67\",\"lastInBytes\":3033284785,\"lastOutBytes\":176067789,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":176067789,\"outFlow\":651,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":423,\"inBytes\":1212082184,\"inFlow\":55,\"lastChangeTime\":\"0:05:18.72\",\"lastInBytes\":1212082184,\"lastOutBytes\":252401629,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":252401629,\"outFlow\":367,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":772,\"inBytes\":3701547752,\"inFlow\":108,\"lastChangeTime\":\"210 days, 18:00:09.55\",\"lastInBytes\":3701547752,\"lastOutBytes\":3160466441,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3160466441,\"outFlow\":664,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9510707,\"inBytes\":3178678122,\"inFlow\":267139,\"lastChangeTime\":\"57 days, 13:05:09.25\",\"lastInBytes\":3178678122,\"lastOutBytes\":1625146982,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1625146982,\"outFlow\":9243567,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":379,\"inBytes\":238786106,\"inFlow\":15,\"lastChangeTime\":\"157 days, 2:21:41.98\",\"lastInBytes\":238786106,\"lastOutBytes\":3823711562,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3823711562,\"outFlow\":364,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":592,\"inBytes\":1960635533,\"inFlow\":142,\"lastChangeTime\":\"100 days, 3:49:16.12\",\"lastInBytes\":1960635533,\"lastOutBytes\":679324060,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":679324060,\"outFlow\":449,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3551417,\"inFlow\":0,\"lastChangeTime\":\"104 days, 23:02:10.49\",\"lastInBytes\":3551417,\"lastOutBytes\":109473473,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":109473473,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":602,\"inBytes\":214723015,\"inFlow\":586,\"lastChangeTime\":\"235 days, 13:58:22.69\",\"lastInBytes\":214723015,\"lastOutBytes\":24681210,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":24681210,\"outFlow\":16,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1912,\"inBytes\":151827252,\"inFlow\":99,\"lastChangeTime\":\"235 days, 13:58:42.09\",\"lastInBytes\":151827252,\"lastOutBytes\":205070034,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":205070034,\"outFlow\":1813,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:03.841148000\"}}", + "lastDiagTime": "2026-02-02 14:37:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478341", + "createdBy": "2", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1008040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"2735\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"188924\",\"inUnknownProtos\":\"35\",\"index\":\"634\",\"lastChange\":\"31 days, 22:39:59.67\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:19:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2111410057\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"6427\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":407168,\"inBytes\":842074586,\"inFlow\":397135,\"lastChangeTime\":\"0:01:14.62\",\"lastInBytes\":842074586,\"lastOutBytes\":875898882,\"outBytes\":875898882,\"outFlow\":10032,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407110,\"inBytes\":3606674398,\"inFlow\":397189,\"lastChangeTime\":\"138 days, 1:19:25.62\",\"lastInBytes\":3606674398,\"lastOutBytes\":179320431,\"outBytes\":179320431,\"outFlow\":9921,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":407376,\"inBytes\":124328590,\"inFlow\":397222,\"lastChangeTime\":\"0:01:14.64\",\"lastInBytes\":124328590,\"lastOutBytes\":4201265622,\"outBytes\":4201265622,\"outFlow\":10153,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":274640,\"inBytes\":1771605694,\"inFlow\":267470,\"lastChangeTime\":\"67 days, 0:35:44.03\",\"lastInBytes\":1771605694,\"lastOutBytes\":2623873920,\"outBytes\":2623873920,\"outFlow\":7170,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407160,\"inBytes\":2107044497,\"inFlow\":397054,\"lastChangeTime\":\"0:01:14.62\",\"lastInBytes\":2107044497,\"lastOutBytes\":1143081082,\"outBytes\":1143081082,\"outFlow\":10106,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":272093,\"inBytes\":1802572384,\"inFlow\":265354,\"lastChangeTime\":\"67 days, 0:33:49.62\",\"lastInBytes\":1802572384,\"lastOutBytes\":2922248846,\"outBytes\":2922248846,\"outFlow\":6739,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":271726,\"inBytes\":1310027624,\"inFlow\":264966,\"lastChangeTime\":\"67 days, 0:33:57.14\",\"lastInBytes\":1310027624,\"lastOutBytes\":771891073,\"outBytes\":771891073,\"outFlow\":6760,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1320328,\"inFlow\":0,\"lastChangeTime\":\"31 days, 22:40:47.13\",\"lastInBytes\":1320328,\"lastOutBytes\":65847724,\"outBytes\":65847724,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":913,\"inFlow\":0,\"lastChangeTime\":\"0:24:07.86\",\"lastInBytes\":913,\"lastOutBytes\":1733,\"outBytes\":1733,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7894396,\"inFlow\":0,\"lastChangeTime\":\"211 days, 21:22:13.84\",\"lastInBytes\":7894396,\"lastOutBytes\":203100539,\"outBytes\":203100539,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":328728586,\"inFlow\":1,\"lastChangeTime\":\"31 days, 20:16:39.49\",\"lastInBytes\":328728586,\"lastOutBytes\":874138441,\"outBytes\":874138441,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2454964,\"inBytes\":4103354527,\"inFlow\":63324,\"lastChangeTime\":\"31 days, 22:39:59.66\",\"lastInBytes\":4103354527,\"lastOutBytes\":1841174455,\"outBytes\":1841174455,\"outFlow\":2391639,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.851901000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478342", + "createdBy": "2", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89090\",\"inUnknownProtos\":\"2068298467\",\"index\":\"634\",\"lastChange\":\"31 days, 21:57:46.48\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:1d:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1619861189\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70315974\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":407125,\"inBytes\":3336995228,\"inFlow\":397166,\"lastChangeTime\":\"0:01:14.43\",\"lastInBytes\":3336995228,\"lastOutBytes\":652794544,\"outBytes\":652794544,\"outFlow\":9958,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":271832,\"inBytes\":1424888782,\"inFlow\":264942,\"lastChangeTime\":\"0:01:15.19\",\"lastInBytes\":1424888782,\"lastOutBytes\":3248253042,\"outBytes\":3248253042,\"outFlow\":6889,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":272063,\"inBytes\":3543027480,\"inFlow\":265009,\"lastChangeTime\":\"0:01:14.43\",\"lastInBytes\":3543027480,\"lastOutBytes\":108364310,\"outBytes\":108364310,\"outFlow\":7053,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":271995,\"inBytes\":417362809,\"inFlow\":265222,\"lastChangeTime\":\"0:01:14.46\",\"lastInBytes\":417362809,\"lastOutBytes\":1274016243,\"outBytes\":1274016243,\"outFlow\":6773,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":271802,\"inBytes\":1612152992,\"inFlow\":265003,\"lastChangeTime\":\"0:01:14.45\",\"lastInBytes\":1612152992,\"lastOutBytes\":2842991650,\"outBytes\":2842991650,\"outFlow\":6799,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":611911,\"inBytes\":3191392073,\"inFlow\":595955,\"lastChangeTime\":\"0:01:15.20\",\"lastInBytes\":3191392073,\"lastOutBytes\":2068298467,\"outBytes\":2068298467,\"outFlow\":15956,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":436538,\"inBytes\":3528850163,\"inFlow\":426589,\"lastChangeTime\":\"0:01:14.44\",\"lastInBytes\":3528850163,\"lastOutBytes\":2396329131,\"outBytes\":2396329131,\"outFlow\":9948,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":293198,\"inBytes\":2439849928,\"inFlow\":285762,\"lastChangeTime\":\"67 days, 0:45:57.51\",\"lastInBytes\":2439849928,\"lastOutBytes\":1943657567,\"outBytes\":1943657567,\"outFlow\":7436,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":271350,\"inBytes\":1029420289,\"inFlow\":264841,\"lastChangeTime\":\"67 days, 0:45:40.40\",\"lastInBytes\":1029420289,\"lastOutBytes\":736021816,\"outBytes\":736021816,\"outFlow\":6509,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":271552,\"inBytes\":3671223253,\"inFlow\":264957,\"lastChangeTime\":\"67 days, 0:45:44.82\",\"lastInBytes\":3671223253,\"lastOutBytes\":2291367194,\"outBytes\":2291367194,\"outFlow\":6594,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":608748,\"inBytes\":2925850550,\"inFlow\":593340,\"lastChangeTime\":\"67 days, 0:45:40.94\",\"lastInBytes\":2925850550,\"lastOutBytes\":357427380,\"outBytes\":357427380,\"outFlow\":15408,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":328522007,\"inFlow\":1,\"lastChangeTime\":\"31 days, 20:32:59.44\",\"lastInBytes\":328522007,\"lastOutBytes\":852556232,\"outBytes\":852556232,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3957167,\"inBytes\":1242745888,\"inFlow\":102655,\"lastChangeTime\":\"31 days, 21:57:46.47\",\"lastInBytes\":1242745888,\"lastOutBytes\":155300220,\"outBytes\":155300220,\"outFlow\":3854511,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.917670000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478343", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"93784\",\"inUnknownProtos\":\"3838387753\",\"index\":\"635\",\"lastChange\":\"31 days, 19:23:07.34\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:bb:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"638147604\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70202647\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":406995,\"inBytes\":221002385,\"inFlow\":397007,\"lastChangeTime\":\"0:01:18.93\",\"lastInBytes\":221002385,\"lastOutBytes\":1801588102,\"outBytes\":1801588102,\"outFlow\":9987,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1088390,\"inBytes\":871615228,\"inFlow\":1060729,\"lastChangeTime\":\"0:01:19.42\",\"lastInBytes\":871615228,\"lastOutBytes\":2102211857,\"outBytes\":2102211857,\"outFlow\":27661,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":610765,\"inBytes\":1708284974,\"inFlow\":595309,\"lastChangeTime\":\"241 days, 20:02:48.99\",\"lastInBytes\":1708284974,\"lastOutBytes\":2224127661,\"outBytes\":2224127661,\"outFlow\":15456,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":406572,\"inBytes\":2828415574,\"inFlow\":396592,\"lastChangeTime\":\"31 days, 21:57:01.70\",\"lastInBytes\":2828415574,\"lastOutBytes\":2318183258,\"outBytes\":2318183258,\"outFlow\":9980,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406728,\"inBytes\":2266951504,\"inFlow\":396746,\"lastChangeTime\":\"228 days, 12:19:16.32\",\"lastInBytes\":2266951504,\"lastOutBytes\":813217661,\"outBytes\":813217661,\"outFlow\":9981,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406078,\"inBytes\":1690873220,\"inFlow\":396086,\"lastChangeTime\":\"0:01:18.94\",\"lastInBytes\":1690873220,\"lastOutBytes\":3838387753,\"outBytes\":3838387753,\"outFlow\":9992,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1090569,\"inBytes\":3573428431,\"inFlow\":1064652,\"lastChangeTime\":\"31 days, 19:20:12.07\",\"lastInBytes\":3573428431,\"lastOutBytes\":3638250702,\"outBytes\":3638250702,\"outFlow\":25917,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":406853,\"inBytes\":152154043,\"inFlow\":396912,\"lastChangeTime\":\"138 days, 1:00:19.12\",\"lastInBytes\":152154043,\"lastOutBytes\":3793343264,\"outBytes\":3793343264,\"outFlow\":9941,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":975241,\"inBytes\":3183491345,\"inFlow\":953891,\"lastChangeTime\":\"31 days, 19:16:14.41\",\"lastInBytes\":3183491345,\"lastOutBytes\":3665838061,\"outBytes\":3665838061,\"outFlow\":21350,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":878329,\"inBytes\":2362766485,\"inFlow\":860073,\"lastChangeTime\":\"0:01:19.68\",\"lastInBytes\":2362766485,\"lastOutBytes\":2825115217,\"outBytes\":2825115217,\"outFlow\":18256,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":647872,\"inBytes\":3258146916,\"inFlow\":629633,\"lastChangeTime\":\"231 days, 10:50:49.32\",\"lastInBytes\":3258146916,\"lastOutBytes\":1058342983,\"outBytes\":1058342983,\"outFlow\":18239,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":15096408,\"inFlow\":0,\"lastChangeTime\":\"211 days, 20:09:20.98\",\"lastInBytes\":15096408,\"lastOutBytes\":635210496,\"outBytes\":635210496,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":169012,\"inFlow\":0,\"lastChangeTime\":\"31 days, 22:15:45.60\",\"lastInBytes\":169012,\"lastOutBytes\":2677959,\"outBytes\":2677959,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1118227,\"inFlow\":0,\"lastChangeTime\":\"214 days, 17:37:29.83\",\"lastInBytes\":1118227,\"lastOutBytes\":108474727,\"outBytes\":108474727,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":352597718,\"inFlow\":1,\"lastChangeTime\":\"31 days, 22:16:14.40\",\"lastInBytes\":352597718,\"lastOutBytes\":2260061138,\"outBytes\":2260061138,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7347145,\"inBytes\":743051561,\"inFlow\":184031,\"lastChangeTime\":\"31 days, 21:58:28.15\",\"lastInBytes\":743051561,\"lastOutBytes\":3772434095,\"outBytes\":3772434095,\"outFlow\":7163114,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.851093000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478344", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89184\",\"inUnknownProtos\":\"4227174204\",\"index\":\"636\",\"lastChange\":\"0:01:24.25\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d4:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2465834219\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70249683\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.134\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":485250,\"inBytes\":3873663490,\"inFlow\":475288,\"lastChangeTime\":\"0:01:26.69\",\"lastInBytes\":3873663490,\"lastOutBytes\":836117616,\"outBytes\":836117616,\"outFlow\":9962,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406520,\"inBytes\":3815916367,\"inFlow\":398498,\"lastChangeTime\":\"0:01:26.69\",\"lastInBytes\":3815916367,\"lastOutBytes\":90084113,\"outBytes\":90084113,\"outFlow\":8022,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":405486,\"inBytes\":568571798,\"inFlow\":395529,\"lastChangeTime\":\"283 days, 18:05:06.63\",\"lastInBytes\":568571798,\"lastOutBytes\":594673996,\"outBytes\":594673996,\"outFlow\":9957,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1079892,\"inBytes\":3107986084,\"inFlow\":1054468,\"lastChangeTime\":\"138 days, 0:21:04.45\",\"lastInBytes\":3107986084,\"lastOutBytes\":3514373226,\"outBytes\":3514373226,\"outFlow\":25424,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":437407,\"inBytes\":4198150615,\"inFlow\":427413,\"lastChangeTime\":\"207 days, 10:16:11.30\",\"lastInBytes\":4198150615,\"lastOutBytes\":3177982381,\"outBytes\":3177982381,\"outFlow\":9994,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":439371,\"inBytes\":1475669253,\"inFlow\":428527,\"lastChangeTime\":\"282 days, 16:45:17.19\",\"lastInBytes\":1475669253,\"lastOutBytes\":4227174204,\"outBytes\":4227174204,\"outFlow\":10843,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1168336,\"inBytes\":759518171,\"inFlow\":1140711,\"lastChangeTime\":\"207 days, 10:16:15.87\",\"lastInBytes\":759518171,\"lastOutBytes\":2909947655,\"outBytes\":2909947655,\"outFlow\":27625,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":21343930,\"inBytes\":3682780271,\"inFlow\":397608,\"lastChangeTime\":\"0:01:26.03\",\"lastInBytes\":3682780271,\"lastOutBytes\":82,\"outBytes\":82,\"outFlow\":20946321,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":612174,\"inBytes\":1260461161,\"inFlow\":596477,\"lastChangeTime\":\"213 days, 22:32:35.34\",\"lastInBytes\":1260461161,\"lastOutBytes\":3414898275,\"outBytes\":3414898275,\"outFlow\":15696,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":272149,\"inBytes\":1273890083,\"inFlow\":265111,\"lastChangeTime\":\"0:01:26.01\",\"lastInBytes\":1273890083,\"lastOutBytes\":530702003,\"outBytes\":530702003,\"outFlow\":7037,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":134790,\"inFlow\":0,\"lastChangeTime\":\"213 days, 19:13:25.97\",\"lastInBytes\":134790,\"lastOutBytes\":7246443,\"outBytes\":7246443,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6041187,\"inFlow\":0,\"lastChangeTime\":\"213 days, 23:01:27.65\",\"lastInBytes\":6041187,\"lastOutBytes\":653143233,\"outBytes\":653143233,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":347455335,\"inFlow\":1,\"lastChangeTime\":\"31 days, 18:08:29.64\",\"lastInBytes\":347455335,\"lastOutBytes\":2256327886,\"outBytes\":2256327886,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5596746,\"inBytes\":1395743133,\"inFlow\":137268,\"lastChangeTime\":\"152 days, 4:58:59.09\",\"lastInBytes\":1395743133,\"lastOutBytes\":2600238987,\"outBytes\":2600238987,\"outFlow\":5459478,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.996864000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478345", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89188\",\"inUnknownProtos\":\"3218389249\",\"index\":\"635\",\"lastChange\":\"0:01:24.10\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c7:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1545765650\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70277188\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":950933,\"inBytes\":3734413545,\"inFlow\":928557,\"lastChangeTime\":\"138 days, 0:47:27.61\",\"lastInBytes\":3734413545,\"lastOutBytes\":706162414,\"outBytes\":706162414,\"outFlow\":22376,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409581,\"inBytes\":3102349768,\"inFlow\":399632,\"lastChangeTime\":\"138 days, 0:47:30.56\",\"lastInBytes\":3102349768,\"lastOutBytes\":3575170401,\"outBytes\":3575170401,\"outFlow\":9949,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406610,\"inBytes\":757836316,\"inFlow\":396561,\"lastChangeTime\":\"0:01:26.63\",\"lastInBytes\":757836316,\"lastOutBytes\":627500310,\"outBytes\":627500310,\"outFlow\":10049,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":892457,\"inBytes\":73940463,\"inFlow\":873602,\"lastChangeTime\":\"0:01:26.63\",\"lastInBytes\":73940463,\"lastOutBytes\":3241470243,\"outBytes\":3241470243,\"outFlow\":18854,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1078664,\"inBytes\":2442632808,\"inFlow\":1053501,\"lastChangeTime\":\"138 days, 0:47:45.42\",\"lastInBytes\":2442632808,\"lastOutBytes\":4183242659,\"outBytes\":4183242659,\"outFlow\":25162,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406259,\"inBytes\":2374252721,\"inFlow\":396280,\"lastChangeTime\":\"0:01:26.02\",\"lastInBytes\":2374252721,\"lastOutBytes\":3218389249,\"outBytes\":3218389249,\"outFlow\":9978,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407282,\"inBytes\":394151551,\"inFlow\":397249,\"lastChangeTime\":\"0:01:26.05\",\"lastInBytes\":394151551,\"lastOutBytes\":1938133465,\"outBytes\":1938133465,\"outFlow\":10033,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1080439,\"inBytes\":465411013,\"inFlow\":1054896,\"lastChangeTime\":\"0:01:26.62\",\"lastInBytes\":465411013,\"lastOutBytes\":1590393735,\"outBytes\":1590393735,\"outFlow\":25543,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":612418,\"inBytes\":1743121436,\"inFlow\":596748,\"lastChangeTime\":\"211 days, 20:17:15.20\",\"lastInBytes\":1743121436,\"lastOutBytes\":4061513739,\"outBytes\":4061513739,\"outFlow\":15669,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":407188,\"inBytes\":3372636610,\"inFlow\":397174,\"lastChangeTime\":\"0:01:26.04\",\"lastInBytes\":3372636610,\"lastOutBytes\":792659835,\"outBytes\":792659835,\"outFlow\":10014,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":32279943,\"inBytes\":855925536,\"inFlow\":1058804,\"lastChangeTime\":\"0:01:26.63\",\"lastInBytes\":855925536,\"lastOutBytes\":99,\"outBytes\":99,\"outFlow\":31221138,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":352439772,\"inFlow\":1,\"lastChangeTime\":\"31 days, 19:13:22.98\",\"lastInBytes\":352439772,\"lastOutBytes\":2261328877,\"outBytes\":2261328877,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7778987,\"inBytes\":2017012218,\"inFlow\":191014,\"lastChangeTime\":\"31 days, 21:15:24.41\",\"lastInBytes\":2017012218,\"lastOutBytes\":2618778790,\"outBytes\":2618778790,\"outFlow\":7587972,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.853692000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478346", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89274\",\"inUnknownProtos\":\"2997005409\",\"index\":\"636\",\"lastChange\":\"0:01:20.91\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:32:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"146117162\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70261992\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.136\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":1055581,\"inBytes\":2231050798,\"inFlow\":1030027,\"lastChangeTime\":\"0:01:22.89\",\"lastInBytes\":2231050798,\"lastOutBytes\":363243849,\"outBytes\":363243849,\"outFlow\":25553,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":875042,\"inBytes\":1763930371,\"inFlow\":857788,\"lastChangeTime\":\"200 days, 1:36:43.33\",\"lastInBytes\":1763930371,\"lastOutBytes\":3732195151,\"outBytes\":3732195151,\"outFlow\":17254,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413657,\"inBytes\":903225019,\"inFlow\":405224,\"lastChangeTime\":\"0:01:23.73\",\"lastInBytes\":903225019,\"lastOutBytes\":2094584985,\"outBytes\":2094584985,\"outFlow\":8432,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":536589,\"inBytes\":4134417802,\"inFlow\":525148,\"lastChangeTime\":\"0:01:23.33\",\"lastInBytes\":4134417802,\"lastOutBytes\":1049383724,\"outBytes\":1049383724,\"outFlow\":11440,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407260,\"inBytes\":2329537661,\"inFlow\":397258,\"lastChangeTime\":\"0:01:22.89\",\"lastInBytes\":2329537661,\"lastOutBytes\":2584972120,\"outBytes\":2584972120,\"outFlow\":10002,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407561,\"inBytes\":724976611,\"inFlow\":398955,\"lastChangeTime\":\"0:01:23.32\",\"lastInBytes\":724976611,\"lastOutBytes\":2997005409,\"outBytes\":2997005409,\"outFlow\":8605,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":807928,\"inBytes\":2693940307,\"inFlow\":792088,\"lastChangeTime\":\"0:01:23.32\",\"lastInBytes\":2693940307,\"lastOutBytes\":3798766460,\"outBytes\":3798766460,\"outFlow\":15840,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":439604,\"inBytes\":380039605,\"inFlow\":429703,\"lastChangeTime\":\"0:01:23.31\",\"lastInBytes\":380039605,\"lastOutBytes\":3953152323,\"outBytes\":3953152323,\"outFlow\":9900,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":926261,\"inBytes\":2924712038,\"inFlow\":906913,\"lastChangeTime\":\"0:01:23.32\",\"lastInBytes\":2924712038,\"lastOutBytes\":3552157568,\"outBytes\":3552157568,\"outFlow\":19347,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":25657721,\"inBytes\":310477560,\"inFlow\":405734,\"lastChangeTime\":\"0:01:22.89\",\"lastInBytes\":310477560,\"lastOutBytes\":108,\"outBytes\":108,\"outFlow\":25251986,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":37671046,\"inFlow\":0,\"lastChangeTime\":\"211 days, 19:09:34.30\",\"lastInBytes\":37671046,\"lastOutBytes\":1525760865,\"outBytes\":1525760865,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":352373511,\"inFlow\":1,\"lastChangeTime\":\"31 days, 18:34:04.52\",\"lastInBytes\":352373511,\"lastOutBytes\":2261323761,\"outBytes\":2261323761,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6309456,\"inBytes\":1201645388,\"inFlow\":142734,\"lastChangeTime\":\"31 days, 21:01:12.93\",\"lastInBytes\":1201645388,\"lastOutBytes\":3249867114,\"outBytes\":3249867114,\"outFlow\":6166721,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.869878000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478347", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1008040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89587\",\"inUnknownProtos\":\"3233833493\",\"index\":\"635\",\"lastChange\":\"0:16:19.02\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c1:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3415107616\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70215137\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":406823,\"inBytes\":1159576661,\"inFlow\":396859,\"lastChangeTime\":\"0:01:22.14\",\"lastInBytes\":1159576661,\"lastOutBytes\":3131296942,\"outBytes\":3131296942,\"outFlow\":9963,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407158,\"inBytes\":4247781152,\"inFlow\":397194,\"lastChangeTime\":\"0:01:22.12\",\"lastInBytes\":4247781152,\"lastOutBytes\":2667573017,\"outBytes\":2667573017,\"outFlow\":9964,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":407049,\"inBytes\":3550010038,\"inFlow\":397093,\"lastChangeTime\":\"0:01:22.13\",\"lastInBytes\":3550010038,\"lastOutBytes\":709540051,\"outBytes\":709540051,\"outFlow\":9956,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":405314,\"inBytes\":3352955936,\"inFlow\":396661,\"lastChangeTime\":\"0:01:22.73\",\"lastInBytes\":3352955936,\"lastOutBytes\":1025707147,\"outBytes\":1025707147,\"outFlow\":8653,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408287,\"inBytes\":3836226084,\"inFlow\":398241,\"lastChangeTime\":\"0:01:22.14\",\"lastInBytes\":3836226084,\"lastOutBytes\":4012093516,\"outBytes\":4012093516,\"outFlow\":10045,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":979030,\"inBytes\":3762255445,\"inFlow\":955830,\"lastChangeTime\":\"137 days, 23:48:21.94\",\"lastInBytes\":3762255445,\"lastOutBytes\":3233833493,\"outBytes\":3233833493,\"outFlow\":23199,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":271859,\"inBytes\":632930434,\"inFlow\":265044,\"lastChangeTime\":\"66 days, 23:03:59.46\",\"lastInBytes\":632930434,\"lastOutBytes\":3528968678,\"outBytes\":3528968678,\"outFlow\":6815,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":271987,\"inBytes\":2517541452,\"inFlow\":265114,\"lastChangeTime\":\"66 days, 23:04:00.57\",\"lastInBytes\":2517541452,\"lastOutBytes\":3252208576,\"outBytes\":3252208576,\"outFlow\":6872,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":537731,\"inFlow\":0,\"lastChangeTime\":\"136 days, 21:36:22.91\",\"lastInBytes\":537731,\"lastOutBytes\":27835372,\"outBytes\":27835372,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":9381727,\"inFlow\":0,\"lastChangeTime\":\"0:21:29.97\",\"lastInBytes\":9381727,\"lastOutBytes\":401461708,\"outBytes\":401461708,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":347597035,\"inFlow\":1,\"lastChangeTime\":\"31 days, 17:51:58.26\",\"lastInBytes\":347597035,\"lastOutBytes\":2257266399,\"outBytes\":2257266399,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3573853,\"inBytes\":2865489299,\"inFlow\":88588,\"lastChangeTime\":\"136 days, 21:32:13.07\",\"lastInBytes\":2865489299,\"lastOutBytes\":3774947909,\"outBytes\":3774947909,\"outFlow\":3485264,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.858015000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478348", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89113\",\"inUnknownProtos\":\"4016082153\",\"index\":\"635\",\"lastChange\":\"0:01:15.10\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:07:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1086423558\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70214335\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":406934,\"inBytes\":815206167,\"inFlow\":397005,\"lastChangeTime\":\"137 days, 23:37:33.71\",\"lastInBytes\":815206167,\"lastOutBytes\":1977414451,\"outBytes\":1977414451,\"outFlow\":9929,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1085349,\"inBytes\":1325019451,\"inFlow\":1059468,\"lastChangeTime\":\"0:01:17.02\",\"lastInBytes\":1325019451,\"lastOutBytes\":189069493,\"outBytes\":189069493,\"outFlow\":25881,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":463524,\"inBytes\":2394538171,\"inFlow\":453617,\"lastChangeTime\":\"0:01:17.50\",\"lastInBytes\":2394538171,\"lastOutBytes\":4107822328,\"outBytes\":4107822328,\"outFlow\":9906,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407370,\"inBytes\":3283184011,\"inFlow\":397333,\"lastChangeTime\":\"0:01:17.49\",\"lastInBytes\":3283184011,\"lastOutBytes\":4066452283,\"outBytes\":4066452283,\"outFlow\":10037,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406941,\"inBytes\":4186851532,\"inFlow\":396915,\"lastChangeTime\":\"207 days, 9:32:46.97\",\"lastInBytes\":4186851532,\"lastOutBytes\":3603680754,\"outBytes\":3603680754,\"outFlow\":10026,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":953035,\"inBytes\":1742165714,\"inFlow\":934532,\"lastChangeTime\":\"0:01:17.50\",\"lastInBytes\":1742165714,\"lastOutBytes\":4015895051,\"outBytes\":4015895051,\"outFlow\":18503,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":405938,\"inBytes\":1733981721,\"inFlow\":395928,\"lastChangeTime\":\"207 days, 9:32:56.24\",\"lastInBytes\":1733981721,\"lastOutBytes\":2948416253,\"outBytes\":2948416253,\"outFlow\":10009,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":403057,\"inBytes\":2362832595,\"inFlow\":393247,\"lastChangeTime\":\"137 days, 23:37:24.78\",\"lastInBytes\":2362832595,\"lastOutBytes\":1236813446,\"outBytes\":1236813446,\"outFlow\":9809,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1086768,\"inBytes\":3952861924,\"inFlow\":1060501,\"lastChangeTime\":\"207 days, 9:32:50.43\",\"lastInBytes\":3952861924,\"lastOutBytes\":2780350987,\"outBytes\":2780350987,\"outFlow\":26266,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":407114,\"inBytes\":3529676521,\"inFlow\":397153,\"lastChangeTime\":\"207 days, 9:32:41.87\",\"lastInBytes\":3529676521,\"lastOutBytes\":905876609,\"outBytes\":905876609,\"outFlow\":9961,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":347437592,\"inFlow\":1,\"lastChangeTime\":\"31 days, 17:42:53.82\",\"lastInBytes\":347437592,\"lastOutBytes\":2256643829,\"outBytes\":2256643829,\"outFlow\":93,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.51\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6050136,\"inBytes\":743221765,\"inFlow\":145910,\"lastChangeTime\":\"31 days, 20:05:15.94\",\"lastInBytes\":743221765,\"lastOutBytes\":227081348,\"outBytes\":227081348,\"outFlow\":5904226,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.859809000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478349", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1008040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89122\",\"inUnknownProtos\":\"3888748993\",\"index\":\"635\",\"lastChange\":\"213 days, 19:18:14.97\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:04:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"264279472\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"70238370\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":271994,\"inBytes\":4160066178,\"inFlow\":265119,\"lastChangeTime\":\"0:01:18.82\",\"lastInBytes\":4160066178,\"lastOutBytes\":2837334757,\"outBytes\":2837334757,\"outFlow\":6874,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":408167,\"inBytes\":2699747863,\"inFlow\":398096,\"lastChangeTime\":\"0:01:18.81\",\"lastInBytes\":2699747863,\"lastOutBytes\":3506690489,\"outBytes\":3506690489,\"outFlow\":10071,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409163,\"inBytes\":1542688598,\"inFlow\":399005,\"lastChangeTime\":\"136 days, 22:07:36.78\",\"lastInBytes\":1542688598,\"lastOutBytes\":233861867,\"outBytes\":233861867,\"outFlow\":10157,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407493,\"inBytes\":3162548293,\"inFlow\":397462,\"lastChangeTime\":\"0:01:19.38\",\"lastInBytes\":3162548293,\"lastOutBytes\":26522331,\"outBytes\":26522331,\"outFlow\":10030,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1047089,\"inBytes\":1401661556,\"inFlow\":1021999,\"lastChangeTime\":\"207 days, 10:02:46.10\",\"lastInBytes\":1401661556,\"lastOutBytes\":1936344131,\"outBytes\":1936344131,\"outFlow\":25089,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1079048,\"inBytes\":3454683075,\"inFlow\":1052887,\"lastChangeTime\":\"207 days, 10:02:51.36\",\"lastInBytes\":3454683075,\"lastOutBytes\":3888748993,\"outBytes\":3888748993,\"outFlow\":26160,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1085793,\"inBytes\":3225589008,\"inFlow\":1060108,\"lastChangeTime\":\"207 days, 10:02:49.18\",\"lastInBytes\":3225589008,\"lastOutBytes\":3971782337,\"outBytes\":3971782337,\"outFlow\":25684,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1098250,\"inBytes\":431129744,\"inFlow\":1071892,\"lastChangeTime\":\"207 days, 10:03:02.62\",\"lastInBytes\":431129744,\"lastOutBytes\":3486698456,\"outBytes\":3486698456,\"outFlow\":26357,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":407066,\"inBytes\":1458954641,\"inFlow\":397158,\"lastChangeTime\":\"138 days, 0:07:37.07\",\"lastInBytes\":1458954641,\"lastOutBytes\":3412415192,\"outBytes\":3412415192,\"outFlow\":9907,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":328450619,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.82\",\"lastInBytes\":328450619,\"lastOutBytes\":1756787395,\"outBytes\":1756787395,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6242860,\"inBytes\":2667348294,\"inFlow\":156825,\"lastChangeTime\":\"213 days, 19:18:14.96\",\"lastInBytes\":2667348294,\"lastOutBytes\":3856340019,\"outBytes\":3856340019,\"outFlow\":6086034,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.868340000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478350", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"170486\",\"inUnknownProtos\":\"1399295\",\"index\":\"635\",\"lastChange\":\"291 days, 12:07:00.99\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:fb:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"17461\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"1698\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":406995,\"inBytes\":1639089083,\"inFlow\":397022,\"lastChangeTime\":\"90 days, 2:58:52.52\",\"lastInBytes\":1639089083,\"lastOutBytes\":3016332823,\"outBytes\":3016332823,\"outFlow\":9972,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1114245,\"inBytes\":2014677989,\"inFlow\":1087195,\"lastChangeTime\":\"467 days, 1:34:39.09\",\"lastInBytes\":2014677989,\"lastOutBytes\":855201367,\"outBytes\":855201367,\"outFlow\":27049,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1087138,\"inBytes\":222187872,\"inFlow\":1061246,\"lastChangeTime\":\"467 days, 1:34:40.68\",\"lastInBytes\":222187872,\"lastOutBytes\":3510267443,\"outBytes\":3510267443,\"outFlow\":25892,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1072855,\"inBytes\":2948601147,\"inFlow\":1048372,\"lastChangeTime\":\"397 days, 15:39:20.95\",\"lastInBytes\":2948601147,\"lastOutBytes\":1342757218,\"outBytes\":1342757218,\"outFlow\":24482,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":52738588,\"inFlow\":0,\"lastChangeTime\":\"0:02:38.40\",\"lastInBytes\":52738588,\"lastOutBytes\":1829820,\"outBytes\":1829820,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":33588298,\"inFlow\":0,\"lastChangeTime\":\"0:02:41.20\",\"lastInBytes\":33588298,\"lastOutBytes\":1399295,\"outBytes\":1399295,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":12002,\"inFlow\":0,\"lastChangeTime\":\"0:02:06.07\",\"lastInBytes\":12002,\"lastOutBytes\":51077,\"outBytes\":51077,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":37925655,\"inFlow\":0,\"lastChangeTime\":\"0:02:26.30\",\"lastInBytes\":37925655,\"lastOutBytes\":1438387,\"outBytes\":1438387,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.78\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3676173,\"inBytes\":504733058,\"inFlow\":91557,\"lastChangeTime\":\"291 days, 12:07:00.98\",\"lastInBytes\":504733058,\"lastOutBytes\":281679488,\"outBytes\":281679488,\"outFlow\":3584615,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.957330000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478351", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1008040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"142472\",\"inUnknownProtos\":\"2181290123\",\"index\":\"635\",\"lastChange\":\"259 days, 14:35:39.55\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:02:ef:cd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"331560077\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"179728554\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":1105598,\"inBytes\":2308861441,\"inFlow\":1079116,\"lastChangeTime\":\"467 days, 0:43:23.93\",\"lastInBytes\":2308861441,\"lastOutBytes\":2993896425,\"outBytes\":2993896425,\"outFlow\":26482,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1056329,\"inBytes\":3264641307,\"inFlow\":1030987,\"lastChangeTime\":\"467 days, 0:43:30.20\",\"lastInBytes\":3264641307,\"lastOutBytes\":2582086153,\"outBytes\":2582086153,\"outFlow\":25342,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1065934,\"inBytes\":2939461664,\"inFlow\":1040518,\"lastChangeTime\":\"467 days, 0:43:26.51\",\"lastInBytes\":2939461664,\"lastOutBytes\":4053751493,\"outBytes\":4053751493,\"outFlow\":25416,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1082075,\"inBytes\":3796370983,\"inFlow\":1056128,\"lastChangeTime\":\"467 days, 0:43:22.98\",\"lastInBytes\":3796370983,\"lastOutBytes\":3685322013,\"outBytes\":3685322013,\"outFlow\":25946,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1094902,\"inBytes\":1442113599,\"inFlow\":1069243,\"lastChangeTime\":\"397 days, 14:48:17.53\",\"lastInBytes\":1442113599,\"lastOutBytes\":2281819029,\"outBytes\":2281819029,\"outFlow\":25659,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407514,\"inBytes\":26669677,\"inFlow\":397499,\"lastChangeTime\":\"46 days, 3:13:48.80\",\"lastInBytes\":26669677,\"lastOutBytes\":2181290123,\"outBytes\":2181290123,\"outFlow\":10015,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407324,\"inBytes\":1966963431,\"inFlow\":397325,\"lastChangeTime\":\"90 days, 1:28:29.95\",\"lastInBytes\":1966963431,\"lastOutBytes\":1135171249,\"outBytes\":1135171249,\"outFlow\":9998,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407140,\"inBytes\":1185800657,\"inFlow\":397015,\"lastChangeTime\":\"396 days, 12:43:11.30\",\"lastInBytes\":1185800657,\"lastOutBytes\":1232549840,\"outBytes\":1232549840,\"outFlow\":10124,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":204048,\"inFlow\":0,\"lastChangeTime\":\"259 days, 14:35:29.99\",\"lastInBytes\":204048,\"lastOutBytes\":5523280,\"outBytes\":5523280,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":403848,\"inFlow\":0,\"lastChangeTime\":\"90 days, 0:05:07.87\",\"lastInBytes\":403848,\"lastOutBytes\":13174229,\"outBytes\":13174229,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":557586,\"inFlow\":0,\"lastChangeTime\":\"90 days, 1:12:32.83\",\"lastInBytes\":557586,\"lastOutBytes\":21347575,\"outBytes\":21347575,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":347345590,\"inFlow\":1,\"lastChangeTime\":\"291 days, 9:20:32.86\",\"lastInBytes\":347345590,\"lastOutBytes\":2257229161,\"outBytes\":2257229161,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6638307,\"inBytes\":431754675,\"inFlow\":165820,\"lastChangeTime\":\"291 days, 11:15:49.39\",\"lastInBytes\":431754675,\"lastOutBytes\":1049188761,\"outBytes\":1049188761,\"outFlow\":6472487,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.855358000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478352", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1008040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface144\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"170459\",\"inUnknownProtos\":\"1490611130\",\"index\":\"635\",\"lastChange\":\"259 days, 14:16:08.20\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:fa:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3775898223\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"593\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":407040,\"inBytes\":15319757,\"inFlow\":397073,\"lastChangeTime\":\"0:01:17.63\",\"lastInBytes\":15319757,\"lastOutBytes\":2155267414,\"outBytes\":2155267414,\"outFlow\":9966,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1126935,\"inBytes\":2540281727,\"inFlow\":1099972,\"lastChangeTime\":\"467 days, 0:13:02.26\",\"lastInBytes\":2540281727,\"lastOutBytes\":2518760387,\"outBytes\":2518760387,\"outFlow\":26962,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1061151,\"inBytes\":2475852453,\"inFlow\":1035468,\"lastChangeTime\":\"467 days, 0:13:03.23\",\"lastInBytes\":2475852453,\"lastOutBytes\":1907888272,\"outBytes\":1907888272,\"outFlow\":25682,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":408440,\"inBytes\":3486877862,\"inFlow\":398583,\"lastChangeTime\":\"397 days, 14:17:31.66\",\"lastInBytes\":3486877862,\"lastOutBytes\":107614176,\"outBytes\":107614176,\"outFlow\":9856,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":408268,\"inBytes\":3642527666,\"inFlow\":398225,\"lastChangeTime\":\"90 days, 0:41:13.27\",\"lastInBytes\":3642527666,\"lastOutBytes\":2070197850,\"outBytes\":2070197850,\"outFlow\":10042,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":409078,\"inBytes\":2041869065,\"inFlow\":399047,\"lastChangeTime\":\"90 days, 0:41:19.20\",\"lastInBytes\":2041869065,\"lastOutBytes\":1490611130,\"outBytes\":1490611130,\"outFlow\":10031,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":27937,\"inFlow\":0,\"lastChangeTime\":\"259 days, 14:15:55.66\",\"lastInBytes\":27937,\"lastOutBytes\":931187,\"outBytes\":931187,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":31786,\"inFlow\":0,\"lastChangeTime\":\"89 days, 23:27:56.63\",\"lastInBytes\":31786,\"lastOutBytes\":515316,\"outBytes\":515316,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":347320775,\"inFlow\":1,\"lastChangeTime\":\"291 days, 8:46:51.38\",\"lastInBytes\":347320775,\"lastOutBytes\":2257814821,\"outBytes\":2257814821,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3838224,\"inBytes\":1954026078,\"inFlow\":96759,\"lastChangeTime\":\"291 days, 10:45:18.40\",\"lastInBytes\":1954026078,\"lastOutBytes\":99075397,\"outBytes\":99075397,\"outFlow\":3741465,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:06.866399000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478353", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:52", + "echoMap": {}, + "deviceId": "1008040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif144\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"306 days, 8:35:52.72\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:59\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:52\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407434,\"inBytes\":614606368,\"inFlow\":397825,\"lastChangeTime\":\"104 days, 22:25:54.63\",\"lastInBytes\":614606368,\"lastOutBytes\":1054092590,\"outBytes\":1054092590,\"outFlow\":9608,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1088686,\"inBytes\":1648022987,\"inFlow\":1064096,\"lastChangeTime\":\"44 days, 7:25:49.70\",\"lastInBytes\":1648022987,\"lastOutBytes\":1981085666,\"outBytes\":1981085666,\"outFlow\":24590,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":407829,\"inBytes\":4163419805,\"inFlow\":398223,\"lastChangeTime\":\"104 days, 21:21:18.04\",\"lastInBytes\":4163419805,\"lastOutBytes\":2218641313,\"outBytes\":2218641313,\"outFlow\":9605,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1089565,\"inBytes\":1583437226,\"inFlow\":1065138,\"lastChangeTime\":\"44 days, 7:25:53.97\",\"lastInBytes\":1583437226,\"lastOutBytes\":3572794335,\"outBytes\":3572794335,\"outFlow\":24427,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":487325,\"inFlow\":0,\"lastChangeTime\":\"104 days, 22:22:56.61\",\"lastInBytes\":487325,\"lastOutBytes\":17148232,\"outBytes\":17148232,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":337,\"inBytes\":315227743,\"inFlow\":126,\"lastChangeTime\":\"104 days, 21:21:44.61\",\"lastInBytes\":315227743,\"lastOutBytes\":93395849,\"outBytes\":93395849,\"outFlow\":210,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2994243,\"inBytes\":2196553993,\"inFlow\":71824,\"lastChangeTime\":\"306 days, 8:35:50.95\",\"lastInBytes\":2196553993,\"lastOutBytes\":2056583285,\"outBytes\":2056583285,\"outFlow\":2922418,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.213056000\"}}", + "lastDiagTime": "2026-02-02 14:38:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478354", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:06", + "echoMap": {}, + "deviceId": "1008040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif144\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"12 days, 7:14:44.34\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:05\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405646,\"inBytes\":2002202559,\"inFlow\":396170,\"lastChangeTime\":\"104 days, 23:01:10.09\",\"lastInBytes\":2002202559,\"lastOutBytes\":1675887039,\"outBytes\":1675887039,\"outFlow\":9476,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1080745,\"inBytes\":1674249469,\"inFlow\":1056575,\"lastChangeTime\":\"104 days, 22:57:41.49\",\"lastInBytes\":1674249469,\"lastOutBytes\":732561678,\"outBytes\":732561678,\"outFlow\":24170,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":334,\"inBytes\":315210903,\"inFlow\":125,\"lastChangeTime\":\"104 days, 21:40:10.23\",\"lastInBytes\":315210903,\"lastOutBytes\":46754524,\"outBytes\":46754524,\"outFlow\":208,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1495632,\"inBytes\":3777742203,\"inFlow\":35909,\"lastChangeTime\":\"306 days, 9:04:12.35\",\"lastInBytes\":3777742203,\"lastOutBytes\":2403497791,\"outBytes\":2403497791,\"outFlow\":1459723,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:24.320268000\"}}", + "lastDiagTime": "2026-02-02 14:39:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478355", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:51", + "echoMap": {}, + "deviceId": "1008040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif144\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"12 days, 7:50:18.44\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:c3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1076334,\"inBytes\":2877848831,\"inFlow\":1052152,\"lastChangeTime\":\"104 days, 22:48:32.00\",\"lastInBytes\":2877848831,\"lastOutBytes\":418374248,\"outBytes\":418374248,\"outFlow\":24182,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1075026,\"inBytes\":263865098,\"inFlow\":1051253,\"lastChangeTime\":\"44 days, 8:03:11.21\",\"lastInBytes\":263865098,\"lastOutBytes\":2750563545,\"outBytes\":2750563545,\"outFlow\":23772,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":404069,\"inBytes\":3112918262,\"inFlow\":394793,\"lastChangeTime\":\"104 days, 22:53:52.66\",\"lastInBytes\":3112918262,\"lastOutBytes\":749232749,\"outBytes\":749232749,\"outFlow\":9276,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":334,\"inBytes\":457341595,\"inFlow\":125,\"lastChangeTime\":\"104 days, 22:12:38.85\",\"lastInBytes\":457341595,\"lastOutBytes\":588744488,\"outBytes\":588744488,\"outFlow\":208,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2578846,\"inBytes\":3621907855,\"inFlow\":61125,\"lastChangeTime\":\"306 days, 9:12:01.34\",\"lastInBytes\":3621907855,\"lastOutBytes\":3669969188,\"outBytes\":3669969188,\"outFlow\":2517720,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:21.121170000\"}}", + "lastDiagTime": "2026-02-02 14:38:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589884883040478356", + "createdBy": "0", + "createdTime": "2025-02-24 12:33:16", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1008040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.144.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif144\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"12 days, 7:37:59.14\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:b5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.144.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1086670,\"inBytes\":3905198180,\"inFlow\":1062590,\"lastChangeTime\":\"125 days, 8:38:02.87\",\"lastInBytes\":3905198180,\"lastOutBytes\":2864237400,\"outBytes\":2864237400,\"outFlow\":24079,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4914,\"inFlow\":0,\"lastChangeTime\":\"104 days, 22:44:46.41\",\"lastInBytes\":4914,\"lastOutBytes\":2858,\"outBytes\":2858,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":337,\"inBytes\":457340444,\"inFlow\":126,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":457340444,\"lastOutBytes\":591240982,\"outBytes\":591240982,\"outFlow\":210,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1090477,\"inBytes\":2892501266,\"inFlow\":26197,\"lastChangeTime\":\"306 days, 9:14:15.90\",\"lastInBytes\":2892501266,\"lastOutBytes\":3266547909,\"outBytes\":3266547909,\"outFlow\":1064280,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:20.868471000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589884883040478359", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1008110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.143.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.29\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"252 days, 2:44:46.92\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"4332911\",\"inErrors\":\"0\",\"inNUcastPkts\":\"11618028\",\"inOctets\":\"4135490418\",\"inUcastPkts\":\"673620875\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:01:01.82\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:a6:18\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"401326822\",\"outQLen\":\"0\",\"outUcastPkts\":\"702368998\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.143.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1009": { + "ndmAlarmHost": [ + { + "id": "689564197745012750", + "createdBy": null, + "createdTime": "2025-10-20 09:24:07", + "updatedBy": null, + "updatedTime": "2025-10-20 09:24:07", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.145.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903048109000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "689564197745012778", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-02-01 04:02:54", + "echoMap": {}, + "deviceId": "1009060001", + "name": "[610](10)虹桥内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012779", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060002", + "name": "[604](10)虹桥弱电综合设备室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903048005009604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012780", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060003", + "name": "[605](10)虹桥弱电综合设备室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903048005009605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012781", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060004", + "name": "[606](10)虹桥弱电综合设备室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903048005009606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012782", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060005", + "name": "[201](10)虹桥厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901035004009201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012783", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060006", + "name": "[611](10)虹桥内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012784", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060007", + "name": "[326](10)虹桥B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901040006009326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012785", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1009060008", + "name": "[602](10)虹桥编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903041005009602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012786", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060009", + "name": "[603](10)虹桥编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903041005009603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012787", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060010", + "name": "[302](10)虹桥4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058006009302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012788", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060011", + "name": "[303](10)虹桥4#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058006009303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012789", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060012", + "name": "[304](10)虹桥4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058006009304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012790", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060013", + "name": "[305](10)虹桥4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058006009305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012791", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060014", + "name": "[306](10)虹桥4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058006009306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012792", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060015", + "name": "[208](10)虹桥4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058004009208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012793", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060016", + "name": "[503](10)虹桥票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901030006009503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012794", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060017", + "name": "[202](10)虹桥厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901035004009202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012795", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060018", + "name": "[401](10)虹桥1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901005006009401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012796", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060019", + "name": "[301](10)虹桥4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901058006009301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012797", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060020", + "name": "[343](10)虹桥安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901085006009343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012798", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060021", + "name": "[204](10)虹桥厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901035004009204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012799", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060022", + "name": "[334](10)虹桥10-3换乘扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012800", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060023", + "name": "[402](10)虹桥2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901006006009402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012801", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060024", + "name": "[337](10)虹桥10-3换乘扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012802", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060025", + "name": "[340](10)虹桥10-3换乘楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012803", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060026", + "name": "[329](10)虹桥10-3换乘出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012804", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060027", + "name": "[335](10)虹桥10-3换乘扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012805", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060028", + "name": "[336](10)虹桥10-3换乘扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012806", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060029", + "name": "[331](10)虹桥10-3换乘出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012807", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060030", + "name": "[339](10)虹桥10-3换乘扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012808", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060031", + "name": "[338](10)虹桥10-3换乘扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012809", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 11:48:54", + "echoMap": {}, + "deviceId": "1009060032", + "name": "[333](10)虹桥10-3换乘通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012810", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060033", + "name": "[328](10)虹桥10-3换乘入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012811", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060034", + "name": "[332](10)虹桥10-3换乘通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901081006009332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012812", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060035", + "name": "[614](10)虹桥内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012813", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060036", + "name": "[307](10)虹桥6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012814", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-02-02 08:37:54", + "echoMap": {}, + "deviceId": "1009060037", + "name": "[342](10)虹桥2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901036005009342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012815", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060038", + "name": "[314](10)虹桥6#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012816", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1009060039", + "name": "[313](10)虹桥6#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060005009313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012817", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060040", + "name": "[311](10)虹桥6#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012818", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060041", + "name": "[308](10)虹桥6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012819", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060042", + "name": "[309](10)虹桥6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012820", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060043", + "name": "[310](10)虹桥6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012821", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060044", + "name": "[209](10)虹桥6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060004009209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012822", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060045", + "name": "[312](10)虹桥6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901060006009312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012823", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-01-13 10:46:30", + "echoMap": {}, + "deviceId": "1009060046", + "name": "[502](10)虹桥客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901001006009502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012824", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1009060047", + "name": "[320](10)虹桥#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012825", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060048", + "name": "[321](10)虹桥#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012826", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060049", + "name": "[318](10)虹桥#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012827", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060050", + "name": "[319](10)虹桥#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012828", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060051", + "name": "[344](10)虹桥安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901085006009344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012829", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060052", + "name": "[203](10)虹桥厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901035004009203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012830", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060053", + "name": "[403](10)虹桥2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901006006009403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012831", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060054", + "name": "[504](10)虹桥票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901030006009504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012832", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060055", + "name": "[404](10)虹桥2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901006006009404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012833", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060056", + "name": "[405](10)虹桥2#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901006006009405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012834", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060057", + "name": "[407](10)虹桥4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901008006009407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012835", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060058", + "name": "[406](10)虹桥3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901007006009406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012836", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1009060059", + "name": "[601](10)虹桥车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903042004009601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012837", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060060", + "name": "[317](10)虹桥#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012838", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-01-17 11:31:54", + "echoMap": {}, + "deviceId": "1009060061", + "name": "[341](10)虹桥1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901036005009341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012839", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060062", + "name": "[501](10)虹桥客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901001005009501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012840", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060063", + "name": "[325](10)虹桥B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901040006009325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012841", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060064", + "name": "[316](10)虹桥#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012842", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1009060065", + "name": "[315](10)虹桥#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901045006009315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012843", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060066", + "name": "[409](10)虹桥4#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901008006009409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012844", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060067", + "name": "[408](10)虹桥4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060901008006009408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012845", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060068", + "name": "[613](10)虹桥内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012846", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060069", + "name": "[618](10)虹桥变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012847", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060070", + "name": "[616](10)虹桥消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012848", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060071", + "name": "[617](10)虹桥变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012849", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060072", + "name": "[612](10)虹桥内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001006009612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012850", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060073", + "name": "[608](10)虹桥环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903053005009608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012851", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060074", + "name": "[112](10)虹桥下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902012006009112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012852", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060075", + "name": "[111](10)虹桥下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902012006009111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012853", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060076", + "name": "[607](10)虹桥屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903048005009607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012854", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060077", + "name": "[205](10)虹桥上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902001004009205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012855", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060078", + "name": "[615](10)虹桥内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903021006009615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012856", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060079", + "name": "[322](10)虹桥#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902017006009322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012857", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060080", + "name": "[101](10)虹桥上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012858", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060081", + "name": "[102](10)虹桥上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012859", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060082", + "name": "[110](10)虹桥下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902012006009110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012860", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060083", + "name": "[109](10)虹桥下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902012006009109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012861", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060084", + "name": "[323](10)虹桥#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902017006009323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012862", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-02-01 10:58:54", + "echoMap": {}, + "deviceId": "1009060085", + "name": "[207](10)虹桥下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902001004009207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012863", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1009060086", + "name": "[327](10)虹桥B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902002006009327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012864", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060087", + "name": "[103](10)虹桥上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012865", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060088", + "name": "[104](10)虹桥上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012866", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060089", + "name": "[108](10)虹桥下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902012006009108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012867", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060090", + "name": "[107](10)虹桥下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902012006009107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012868", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060091", + "name": "[702](10)虹桥下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060904013006009702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012869", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060092", + "name": "[206](10)虹桥上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902001004009206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012870", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060093", + "name": "[324](10)虹桥#3台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902017006009324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012871", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-12-09 03:20:29", + "echoMap": {}, + "deviceId": "1009060094", + "name": "[701](10)虹桥上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060904013006009701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012872", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060095", + "name": "[105](10)虹桥上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012873", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060096", + "name": "[106](10)虹桥上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012874", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060097", + "name": "[704](10)虹桥虹桥宋园下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060904012004009704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012875", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060098", + "name": "[703](10)虹桥虹桥宋园上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060904012004009703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012876", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060099", + "name": "[619](10)虹桥通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903048005009619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012877", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060100", + "name": "[620](10)虹桥消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903068005009620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012878", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1009060101", + "name": "[621](10)虹桥气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903067005009621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012879", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060102", + "name": "[622](10)虹桥内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903001005009622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012880", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2026-01-13 08:46:31", + "echoMap": {}, + "deviceId": "1009060103", + "name": "[113](10)虹桥上行紧急电话", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.145.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060902007006009113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012881", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060104", + "name": "[623](10)虹桥出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.146.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903044006009623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012882", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1009060105", + "name": "[624](10)虹桥地下一层", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.146.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903044006009624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012883", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060106", + "name": "[625](10)虹桥出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.146.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903044006009625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012884", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060107", + "name": "[626](10)虹桥地下二层", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.146.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903044006009626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012885", + "createdBy": "0", + "createdTime": "2025-10-20 09:27:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1009060108", + "name": "[627](10)虹桥地下三层", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.146.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060903044006009627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589885260997608586", + "createdBy": "0", + "createdTime": "2025-02-24 13:10:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1009070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.145.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060900000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"2340977\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"451493940\",\"inUcastPkts\":\"3014390092\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:64:f7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2124799512\",\"outQLen\":\"0\",\"outUcastPkts\":\"2476498046\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.145.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:54\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZDC49D\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"42\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589885260997608587", + "createdBy": "2", + "createdTime": "2025-02-24 13:11:20", + "updatedBy": null, + "updatedTime": "2026-01-11 10:49:30", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.145.51", + "manageUrl": "http:\\\\10.18.145.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608588", + "createdBy": "2", + "createdTime": "2025-02-24 13:11:38", + "updatedBy": null, + "updatedTime": "2026-01-13 10:55:30", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.145.52", + "manageUrl": "http:\\\\10.18.145.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589885260997608583", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1009090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.145.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.88\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"117 days, 10:36:22.11\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10582000\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28318716\",\"inOctets\":\"3384404466\",\"inUcastPkts\":\"4121549864\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3e:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3973512996\",\"outQLen\":\"0\",\"outUcastPkts\":\"2248044071\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.145.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589885260997608448", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 13:08:02", + "echoMap": {}, + "deviceId": "1009050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.145.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060900000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.145.22;10.18.145.23" + }, + { + "id": "589885260997608449", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1009050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.145.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060900000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26094886\",\"inErrors\":\"0\",\"inNUcastPkts\":\"46923160\",\"inOctets\":\"3551120706\",\"inUcastPkts\":\"1269995812\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:34:ff\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3719395522\",\"outQLen\":\"0\",\"outUcastPkts\":\"3454003037\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3260\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.145.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:54\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":920109260,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281494110}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14522\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"62\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.145.22" + }, + { + "id": "589885260997608450", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:56", + "echoMap": {}, + "deviceId": "1009050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.145.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01060900000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26093464\",\"inErrors\":\"0\",\"inNUcastPkts\":\"59146739\",\"inOctets\":\"1342033957\",\"inUcastPkts\":\"2054418057\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:2c:97\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2398152053\",\"outQLen\":\"0\",\"outUcastPkts\":\"2905866405\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3260\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.145.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:55\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":920095036,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1281494110}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14523\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"63\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:34:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.145.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589885260997608468", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1009030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3545800\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"195844094\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 17:14:49.30\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3545805\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:f0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.268,\"status\":1,\"voltage\":26.083002},{\"current\":0.231,\"status\":1,\"voltage\":26.083002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.083002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.083002},{\"current\":0.54200006,\"status\":1,\"voltage\":26.083002},{\"current\":0.257,\"status\":1,\"voltage\":26.083002},{\"current\":0.246,\"status\":1,\"voltage\":26.083002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.083002},{\"current\":0.22100002,\"status\":1,\"voltage\":26.083002},{\"current\":0.001,\"status\":1,\"voltage\":25.658},{\"current\":0.003,\"status\":1,\"voltage\":25.658},{\"current\":0.001,\"status\":1,\"voltage\":25.658},{\"current\":0.001,\"status\":1,\"voltage\":25.658},{\"current\":0.001,\"status\":1,\"voltage\":25.658},{\"current\":0.001,\"status\":1,\"voltage\":25.658},{\"current\":0.001,\"status\":1,\"voltage\":25.658}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301455\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608469", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1009030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3545474\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"195585653\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"148 days, 5:45:34.95\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3545479\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:8e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37,\"status\":1,\"voltage\":27.272001},{\"current\":0.35900003,\"status\":1,\"voltage\":27.272001},{\"current\":0.256,\"status\":1,\"voltage\":27.272001},{\"current\":0.268,\"status\":1,\"voltage\":27.272001},{\"current\":0.38300002,\"status\":1,\"voltage\":27.272001},{\"current\":0.532,\"status\":1,\"voltage\":27.272001},{\"current\":0.001,\"status\":1,\"voltage\":27.272001},{\"current\":0.001,\"status\":1,\"voltage\":27.272001},{\"current\":0.001,\"status\":1,\"voltage\":27.272001},{\"current\":0.001,\"status\":1,\"voltage\":27.732002},{\"current\":0.003,\"status\":1,\"voltage\":27.732002},{\"current\":0.001,\"status\":1,\"voltage\":27.732002},{\"current\":0.001,\"status\":1,\"voltage\":27.732002},{\"current\":0.001,\"status\":1,\"voltage\":27.732002},{\"current\":0.001,\"status\":1,\"voltage\":27.732002},{\"current\":0.001,\"status\":1,\"voltage\":27.732002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208302125\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608470", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1009030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6498164\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361616145\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6498169\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:4a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27400002,\"status\":1,\"voltage\":26.845001},{\"current\":0.53300005,\"status\":1,\"voltage\":26.845001},{\"current\":0.344,\"status\":1,\"voltage\":26.845001},{\"current\":0.30400002,\"status\":1,\"voltage\":26.845001},{\"current\":0.289,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.833002},{\"current\":0.003,\"status\":1,\"voltage\":26.833002},{\"current\":0.001,\"status\":1,\"voltage\":26.833002},{\"current\":0.001,\"status\":1,\"voltage\":26.833002},{\"current\":0.001,\"status\":1,\"voltage\":26.833002},{\"current\":0.001,\"status\":1,\"voltage\":26.833002},{\"current\":0.001,\"status\":1,\"voltage\":26.833002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208301545\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608471", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1009030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497226\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361565674\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497231\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:49\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.56200004,\"status\":1,\"voltage\":26.181002},{\"current\":0.294,\"status\":1,\"voltage\":26.181002},{\"current\":0.377,\"status\":1,\"voltage\":26.181002},{\"current\":0.286,\"status\":1,\"voltage\":26.181002},{\"current\":0.001,\"status\":1,\"voltage\":26.181002},{\"current\":0.001,\"status\":1,\"voltage\":26.181002},{\"current\":0.001,\"status\":1,\"voltage\":26.181002},{\"current\":0.001,\"status\":1,\"voltage\":26.181002},{\"current\":0.001,\"status\":1,\"voltage\":26.181002},{\"current\":0.001,\"status\":1,\"voltage\":26.226002},{\"current\":0.003,\"status\":1,\"voltage\":26.226002},{\"current\":0.001,\"status\":1,\"voltage\":26.226002},{\"current\":0.001,\"status\":1,\"voltage\":26.226002},{\"current\":0.001,\"status\":1,\"voltage\":26.226002},{\"current\":0.001,\"status\":1,\"voltage\":26.226002},{\"current\":0.001,\"status\":1,\"voltage\":26.226002}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301544\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608472", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:57", + "echoMap": {}, + "deviceId": "1009030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5909675\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"328592353\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5909680\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:d3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24300002,\"status\":1,\"voltage\":26.2},{\"current\":0.37300003,\"status\":1,\"voltage\":26.2},{\"current\":0.24100001,\"status\":1,\"voltage\":26.2},{\"current\":0.24100001,\"status\":1,\"voltage\":26.2},{\"current\":0.395,\"status\":1,\"voltage\":26.2},{\"current\":0.24800001,\"status\":1,\"voltage\":26.2},{\"current\":0.24400002,\"status\":1,\"voltage\":26.2},{\"current\":0.001,\"status\":1,\"voltage\":26.2},{\"current\":0.001,\"status\":1,\"voltage\":26.2},{\"current\":0.001,\"status\":1,\"voltage\":19.918001},{\"current\":0.004,\"status\":1,\"voltage\":19.918001},{\"current\":0.002,\"status\":1,\"voltage\":19.918001},{\"current\":0.001,\"status\":1,\"voltage\":19.918001},{\"current\":0.001,\"status\":1,\"voltage\":19.918001},{\"current\":0.001,\"status\":1,\"voltage\":19.918001},{\"current\":0.001,\"status\":1,\"voltage\":19.918001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301491\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608473", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:58", + "echoMap": {}, + "deviceId": "1009030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5944505\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"330116886\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5944510\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:ef\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.298,\"status\":1,\"voltage\":27.363},{\"current\":0.38500002,\"status\":1,\"voltage\":27.363},{\"current\":0.23200001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":27.363},{\"current\":0.001,\"status\":1,\"voltage\":28.114002},{\"current\":0.003,\"status\":1,\"voltage\":28.114002},{\"current\":0.001,\"status\":1,\"voltage\":28.114002},{\"current\":0.001,\"status\":1,\"voltage\":28.114002},{\"current\":0.001,\"status\":1,\"voltage\":28.114002},{\"current\":0.001,\"status\":1,\"voltage\":28.114002},{\"current\":0.001,\"status\":1,\"voltage\":28.114002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208303055\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608474", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:58", + "echoMap": {}, + "deviceId": "1009030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497388\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361573734\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497393\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:81\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":25.974},{\"current\":0.333,\"status\":1,\"voltage\":25.974},{\"current\":0.42700002,\"status\":1,\"voltage\":25.974},{\"current\":0.28,\"status\":1,\"voltage\":25.974},{\"current\":0.22600001,\"status\":1,\"voltage\":25.974},{\"current\":0.36800003,\"status\":1,\"voltage\":25.974},{\"current\":0.30600002,\"status\":1,\"voltage\":25.974},{\"current\":0.22100002,\"status\":1,\"voltage\":25.974},{\"current\":0.23200001,\"status\":1,\"voltage\":25.974},{\"current\":0.21900001,\"status\":1,\"voltage\":26.127},{\"current\":0.003,\"status\":1,\"voltage\":26.127},{\"current\":0.499,\"status\":1,\"voltage\":26.127},{\"current\":0.238,\"status\":1,\"voltage\":26.127},{\"current\":0.001,\"status\":1,\"voltage\":26.127},{\"current\":0.001,\"status\":1,\"voltage\":26.127},{\"current\":0.001,\"status\":1,\"voltage\":26.127}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301600\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608475", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1009030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497714\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361591972\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497719\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.32000002,\"status\":1,\"voltage\":26.041},{\"current\":0.266,\"status\":1,\"voltage\":26.041},{\"current\":0.275,\"status\":1,\"voltage\":26.041},{\"current\":0.277,\"status\":1,\"voltage\":26.041},{\"current\":0.256,\"status\":1,\"voltage\":26.041},{\"current\":0.266,\"status\":1,\"voltage\":26.041},{\"current\":0.53900003,\"status\":1,\"voltage\":26.041},{\"current\":0.37300003,\"status\":1,\"voltage\":26.041},{\"current\":0.26000002,\"status\":1,\"voltage\":26.041},{\"current\":0.36800003,\"status\":1,\"voltage\":25.902},{\"current\":0.003,\"status\":1,\"voltage\":25.902},{\"current\":0.349,\"status\":1,\"voltage\":25.902},{\"current\":0.001,\"status\":1,\"voltage\":25.902},{\"current\":0.001,\"status\":1,\"voltage\":25.902},{\"current\":0.001,\"status\":1,\"voltage\":25.902},{\"current\":0.001,\"status\":1,\"voltage\":25.902}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301605\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608476", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1009030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497388\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361117107\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497393\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:0b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.35500002,\"status\":1,\"voltage\":26.488},{\"current\":0.36400002,\"status\":1,\"voltage\":26.488},{\"current\":0.53000003,\"status\":1,\"voltage\":26.488},{\"current\":0.25800002,\"status\":1,\"voltage\":26.488},{\"current\":0.43,\"status\":1,\"voltage\":26.488},{\"current\":0.28800002,\"status\":1,\"voltage\":26.488},{\"current\":0.284,\"status\":1,\"voltage\":26.488},{\"current\":0.257,\"status\":1,\"voltage\":26.488},{\"current\":0.264,\"status\":1,\"voltage\":26.488},{\"current\":0.35000002,\"status\":1,\"voltage\":26.43},{\"current\":0.002,\"status\":1,\"voltage\":26.43},{\"current\":0.365,\"status\":1,\"voltage\":26.43},{\"current\":0.001,\"status\":1,\"voltage\":26.43},{\"current\":0.001,\"status\":1,\"voltage\":26.43},{\"current\":0.001,\"status\":1,\"voltage\":26.43},{\"current\":0.0,\"status\":1,\"voltage\":26.43}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303083\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608477", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1009030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497716\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361138528\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497721\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:a8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.29700002,\"status\":1,\"voltage\":26.597002},{\"current\":0.266,\"status\":1,\"voltage\":26.597002},{\"current\":0.26000002,\"status\":1,\"voltage\":26.597002},{\"current\":0.279,\"status\":1,\"voltage\":26.597002},{\"current\":0.22100002,\"status\":1,\"voltage\":26.597002},{\"current\":0.23900001,\"status\":1,\"voltage\":26.597002},{\"current\":0.223,\"status\":1,\"voltage\":26.597002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.597002},{\"current\":0.0,\"status\":1,\"voltage\":26.597002},{\"current\":0.0,\"status\":1,\"voltage\":26.045002},{\"current\":0.003,\"status\":1,\"voltage\":26.045002},{\"current\":0.001,\"status\":1,\"voltage\":26.045002},{\"current\":0.001,\"status\":1,\"voltage\":26.045002},{\"current\":0.001,\"status\":1,\"voltage\":26.045002},{\"current\":0.001,\"status\":1,\"voltage\":26.045002},{\"current\":0.001,\"status\":1,\"voltage\":26.045002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302984\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608478", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:00", + "echoMap": {}, + "deviceId": "1009030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497845\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361599910\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497850\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:96\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25800002,\"status\":1,\"voltage\":26.325},{\"current\":0.275,\"status\":1,\"voltage\":26.325},{\"current\":0.22200002,\"status\":1,\"voltage\":26.325},{\"current\":0.558,\"status\":1,\"voltage\":26.325},{\"current\":0.25300002,\"status\":1,\"voltage\":26.325},{\"current\":0.259,\"status\":1,\"voltage\":26.325},{\"current\":0.259,\"status\":1,\"voltage\":26.325},{\"current\":0.259,\"status\":1,\"voltage\":26.325},{\"current\":0.22000001,\"status\":1,\"voltage\":26.325},{\"current\":0.24400002,\"status\":1,\"voltage\":26.002},{\"current\":0.002,\"status\":1,\"voltage\":26.002},{\"current\":0.001,\"status\":1,\"voltage\":26.002},{\"current\":0.001,\"status\":1,\"voltage\":26.002},{\"current\":0.001,\"status\":1,\"voltage\":26.002},{\"current\":0.001,\"status\":1,\"voltage\":26.002},{\"current\":0.001,\"status\":1,\"voltage\":26.002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302198\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608479", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:00", + "echoMap": {}, + "deviceId": "1009030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497877\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361147744\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497882\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:d1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28100002,\"status\":1,\"voltage\":26.300001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.300001},{\"current\":0.277,\"status\":1,\"voltage\":26.300001},{\"current\":0.54300004,\"status\":1,\"voltage\":26.300001},{\"current\":0.268,\"status\":1,\"voltage\":26.300001},{\"current\":0.266,\"status\":1,\"voltage\":26.300001},{\"current\":0.26500002,\"status\":1,\"voltage\":26.300001},{\"current\":0.0,\"status\":1,\"voltage\":26.300001},{\"current\":0.0,\"status\":1,\"voltage\":26.300001},{\"current\":0.0,\"status\":1,\"voltage\":26.102001},{\"current\":0.003,\"status\":1,\"voltage\":26.102001},{\"current\":0.001,\"status\":1,\"voltage\":26.102001},{\"current\":0.001,\"status\":1,\"voltage\":26.102001},{\"current\":0.001,\"status\":1,\"voltage\":26.102001},{\"current\":0.001,\"status\":1,\"voltage\":26.102001},{\"current\":0.001,\"status\":1,\"voltage\":26.102001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303793\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608480", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:01", + "echoMap": {}, + "deviceId": "1009030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6497984\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361152059\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6497989\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:8d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28300002,\"status\":1,\"voltage\":26.451002},{\"current\":0.28,\"status\":1,\"voltage\":26.451002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.451002},{\"current\":0.528,\"status\":1,\"voltage\":26.451002},{\"current\":0.22200002,\"status\":1,\"voltage\":26.451002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.451002},{\"current\":0.266,\"status\":1,\"voltage\":26.451002},{\"current\":0.275,\"status\":1,\"voltage\":26.451002},{\"current\":0.001,\"status\":1,\"voltage\":26.451002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.003,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302957\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608481", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:09", + "echoMap": {}, + "deviceId": "1009030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885260997608482", + "createdBy": "0", + "createdTime": "2025-02-24 13:08:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1009030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689564197745012902", + "createdBy": null, + "createdTime": "2025-10-20 09:29:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": null, + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.146.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5006220\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"277500276\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"247 days, 10:13:13.48\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5006225\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:9d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27800003,\"status\":1,\"voltage\":26.826002},{\"current\":0.30400002,\"status\":1,\"voltage\":26.826002},{\"current\":0.246,\"status\":1,\"voltage\":26.826002},{\"current\":0.29700002,\"status\":1,\"voltage\":26.826002},{\"current\":0.286,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.858002},{\"current\":0.002,\"status\":1,\"voltage\":26.858002},{\"current\":0.001,\"status\":1,\"voltage\":26.858002},{\"current\":0.001,\"status\":1,\"voltage\":26.858002},{\"current\":0.001,\"status\":1,\"voltage\":26.858002},{\"current\":0.0,\"status\":1,\"voltage\":26.858002},{\"current\":0.0,\"status\":1,\"voltage\":26.858002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208303555\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "704527404242790917", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040017", + "name": "H3C前端交换机16", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"170688\",\"inUnknownProtos\":\"343905496\",\"index\":\"634\",\"lastChange\":\"349 days, 19:02:48.42\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:d3:62\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1063217030\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.146\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":875308,\"inBytes\":568322575,\"inFlow\":853105,\"lastChangeTime\":\"349 days, 20:13:02.65\",\"lastInBytes\":568322575,\"lastOutBytes\":4159014529,\"outBytes\":4159014529,\"outFlow\":22202,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":875104,\"inBytes\":1633202476,\"inFlow\":853037,\"lastChangeTime\":\"349 days, 20:13:11.80\",\"lastInBytes\":1633202476,\"lastOutBytes\":1755524668,\"outBytes\":1755524668,\"outFlow\":22067,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":875403,\"inBytes\":354881070,\"inFlow\":853271,\"lastChangeTime\":\"349 days, 20:13:07.86\",\"lastInBytes\":354881070,\"lastOutBytes\":2423995196,\"outBytes\":2423995196,\"outFlow\":22132,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":875340,\"inBytes\":1073639948,\"inFlow\":853300,\"lastChangeTime\":\"349 days, 20:13:10.72\",\"lastInBytes\":1073639948,\"lastOutBytes\":3969044939,\"outBytes\":3969044939,\"outFlow\":22039,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":875574,\"inBytes\":1816722107,\"inFlow\":853363,\"lastChangeTime\":\"349 days, 20:13:13.43\",\"lastInBytes\":1816722107,\"lastOutBytes\":343905496,\"outBytes\":343905496,\"outFlow\":22210,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":3221967,\"inBytes\":845318528,\"inFlow\":62743,\"lastChangeTime\":\"397 days, 9:13:52.34\",\"lastInBytes\":845318528,\"lastOutBytes\":1132807856,\"outBytes\":1132807856,\"outFlow\":3159223,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":317,\"inBytes\":516909549,\"inFlow\":119,\"lastChangeTime\":\"349 days, 18:49:47.69\",\"lastInBytes\":516909549,\"lastOutBytes\":2985040508,\"outBytes\":2985040508,\"outFlow\":198,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4556997,\"inFlow\":0,\"lastChangeTime\":\"0:55:59.73\",\"lastInBytes\":4556997,\"lastOutBytes\":5464,\"outBytes\":5464,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7635641,\"inBytes\":2397699108,\"inFlow\":3289514,\"lastChangeTime\":\"1:08:57.53\",\"lastInBytes\":2397699108,\"lastOutBytes\":3577378257,\"outBytes\":3577378257,\"outFlow\":4346127,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.433519000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790918", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:53", + "echoMap": {}, + "deviceId": "1009040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif146\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"118 days, 23:16:15.17\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:5d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":1086311,\"inBytes\":497378222,\"inFlow\":1062370,\"lastChangeTime\":\"411 days, 18:38:24.64\",\"lastInBytes\":497378222,\"lastOutBytes\":2476860112,\"outBytes\":2476860112,\"outFlow\":23941,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":341,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"1:06:16.24\",\"lastInBytes\":0,\"lastOutBytes\":3089263639,\"outBytes\":3089263639,\"outFlow\":341,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3823,\"inFlow\":0,\"lastChangeTime\":\"1:06:02.59\",\"lastInBytes\":3823,\"lastOutBytes\":1062,\"outBytes\":1062,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1662044059,\"inFlow\":0,\"lastChangeTime\":\"118 days, 23:15:51.21\",\"lastInBytes\":1662044059,\"lastOutBytes\":25272084,\"outBytes\":25272084,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1091110,\"inBytes\":680574287,\"inFlow\":25597,\"lastChangeTime\":\"118 days, 23:16:15.14\",\"lastInBytes\":680574287,\"lastOutBytes\":2490695771,\"outBytes\":2490695771,\"outFlow\":1065513,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:01.495265000\"}}", + "lastDiagTime": "2026-02-02 14:37:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790919", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:26", + "echoMap": {}, + "deviceId": "1009040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif146\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"18 days, 12:57:26.85\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:70\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:25\",\"info\":{\"portInfoList\":[{\"flow\":1084757,\"inBytes\":1057768281,\"inFlow\":1060889,\"lastChangeTime\":\"49 days, 11:12:41.18\",\"lastInBytes\":1057768281,\"lastOutBytes\":942675399,\"outBytes\":942675399,\"outFlow\":23868,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":335,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":3620925789,\"outBytes\":3620925789,\"outFlow\":335,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1089823,\"inBytes\":1140877636,\"inFlow\":25588,\"lastChangeTime\":\"0:18:14.24\",\"lastInBytes\":1140877636,\"lastOutBytes\":1737624877,\"outBytes\":1737624877,\"outFlow\":1064234,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:55.714216000\"}}", + "lastDiagTime": "2026-02-02 14:37:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790920", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1009040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89300\",\"inUnknownProtos\":\"1242564417\",\"index\":\"635\",\"lastChange\":\"0:01:19.72\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f9:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1665564462\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"93607972\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:58\",\"info\":{\"portInfoList\":[{\"flow\":400287,\"inBytes\":26827635,\"inFlow\":390059,\"lastChangeTime\":\"207 days, 15:32:01.68\",\"lastInBytes\":26827635,\"lastOutBytes\":2622502405,\"outBytes\":2622502405,\"outFlow\":10227,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1061609,\"inBytes\":3296470018,\"inFlow\":1036031,\"lastChangeTime\":\"207 days, 15:32:03.74\",\"lastInBytes\":3296470018,\"lastOutBytes\":3914061177,\"outBytes\":3914061177,\"outFlow\":25578,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":399453,\"inBytes\":2119714631,\"inFlow\":389570,\"lastChangeTime\":\"70 days, 15:06:14.51\",\"lastInBytes\":2119714631,\"lastOutBytes\":2572500759,\"outBytes\":2572500759,\"outFlow\":9883,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1059679,\"inBytes\":3341129791,\"inFlow\":1034832,\"lastChangeTime\":\"139 days, 10:21:56.97\",\"lastInBytes\":3341129791,\"lastOutBytes\":2066095995,\"outBytes\":2066095995,\"outFlow\":24846,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":402376,\"inBytes\":3160499688,\"inFlow\":392484,\"lastChangeTime\":\"0:01:21.75\",\"lastInBytes\":3160499688,\"lastOutBytes\":2458850845,\"outBytes\":2458850845,\"outFlow\":9891,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":395668,\"inBytes\":4100789564,\"inFlow\":386110,\"lastChangeTime\":\"228 days, 17:57:16.92\",\"lastInBytes\":4100789564,\"lastOutBytes\":1242466042,\"outBytes\":1242466042,\"outFlow\":9558,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":401047,\"inBytes\":2124477398,\"inFlow\":391177,\"lastChangeTime\":\"207 days, 15:31:47.99\",\"lastInBytes\":2124477398,\"lastOutBytes\":4146826836,\"outBytes\":4146826836,\"outFlow\":9869,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1061731,\"inBytes\":3363735567,\"inFlow\":1036209,\"lastChangeTime\":\"207 days, 15:31:55.09\",\"lastInBytes\":3363735567,\"lastOutBytes\":4249907528,\"outBytes\":4249907528,\"outFlow\":25521,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":74652,\"inFlow\":0,\"lastChangeTime\":\"115 days, 0:08:00.04\",\"lastInBytes\":74652,\"lastOutBytes\":19590624,\"outBytes\":19590624,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":674921348,\"inFlow\":1,\"lastChangeTime\":\"86 days, 5:52:13.35\",\"lastInBytes\":674921348,\"lastOutBytes\":2757483826,\"outBytes\":2757483826,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5198808,\"inBytes\":2740643082,\"inFlow\":130643,\"lastChangeTime\":\"115 days, 0:08:05.33\",\"lastInBytes\":2740643082,\"lastOutBytes\":2692251499,\"outBytes\":2692251499,\"outFlow\":5068165,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.404438000\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790921", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1009040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89366\",\"inUnknownProtos\":\"3116531722\",\"index\":\"635\",\"lastChange\":\"0:01:23.91\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:0b:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"45566894\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:58\",\"info\":{\"portInfoList\":[{\"flow\":1141716,\"inBytes\":1407522752,\"inFlow\":1113903,\"lastChangeTime\":\"207 days, 15:03:41.64\",\"lastInBytes\":1407522752,\"lastOutBytes\":1656512365,\"outBytes\":1656512365,\"outFlow\":27813,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1139202,\"inBytes\":135494371,\"inFlow\":1111719,\"lastChangeTime\":\"207 days, 15:03:44.22\",\"lastInBytes\":135494371,\"lastOutBytes\":3798349514,\"outBytes\":3798349514,\"outFlow\":27483,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":426442,\"inBytes\":541173802,\"inFlow\":415926,\"lastChangeTime\":\"0:01:25.94\",\"lastInBytes\":541173802,\"lastOutBytes\":2992022685,\"outBytes\":2992022685,\"outFlow\":10515,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1207760,\"inBytes\":3314620762,\"inFlow\":1180005,\"lastChangeTime\":\"139 days, 9:54:11.86\",\"lastInBytes\":3314620762,\"lastOutBytes\":587877532,\"outBytes\":587877532,\"outFlow\":27755,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":427584,\"inBytes\":3221175711,\"inFlow\":417096,\"lastChangeTime\":\"0:01:25.92\",\"lastInBytes\":3221175711,\"lastOutBytes\":2815248781,\"outBytes\":2815248781,\"outFlow\":10487,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1141135,\"inBytes\":421267667,\"inFlow\":1113492,\"lastChangeTime\":\"207 days, 15:03:40.90\",\"lastInBytes\":421267667,\"lastOutBytes\":3116531722,\"outBytes\":3116531722,\"outFlow\":27642,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1139459,\"inBytes\":2969672079,\"inFlow\":1111938,\"lastChangeTime\":\"207 days, 15:03:43.57\",\"lastInBytes\":2969672079,\"lastOutBytes\":2255098230,\"outBytes\":2255098230,\"outFlow\":27520,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":674607421,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.93\",\"lastInBytes\":674607421,\"lastOutBytes\":2757731130,\"outBytes\":2757731130,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6646836,\"inBytes\":4157025200,\"inFlow\":166448,\"lastChangeTime\":\"0:01:23.91\",\"lastInBytes\":4157025200,\"lastOutBytes\":1602050811,\"outBytes\":1602050811,\"outFlow\":6480388,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.391677000\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790922", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89704\",\"inUnknownProtos\":\"3380079691\",\"index\":\"635\",\"lastChange\":\"0:01:21.33\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:dd:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"244267211\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"93593985\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":1063672,\"inBytes\":326987841,\"inFlow\":1038292,\"lastChangeTime\":\"207 days, 15:14:14.37\",\"lastInBytes\":326987841,\"lastOutBytes\":3645258524,\"outBytes\":3645258524,\"outFlow\":25379,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":403227,\"inBytes\":3818992541,\"inFlow\":392793,\"lastChangeTime\":\"207 days, 15:14:29.16\",\"lastInBytes\":3818992541,\"lastOutBytes\":1306333328,\"outBytes\":1306333328,\"outFlow\":10433,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":266341,\"inBytes\":3120261345,\"inFlow\":259686,\"lastChangeTime\":\"97 days, 5:36:14.22\",\"lastInBytes\":3120261345,\"lastOutBytes\":3092130199,\"outBytes\":3092130199,\"outFlow\":6654,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1136545,\"inBytes\":1373303368,\"inFlow\":1111548,\"lastChangeTime\":\"139 days, 10:04:20.69\",\"lastInBytes\":1373303368,\"lastOutBytes\":655349932,\"outBytes\":655349932,\"outFlow\":24997,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":427057,\"inBytes\":1660438279,\"inFlow\":416596,\"lastChangeTime\":\"0:01:23.54\",\"lastInBytes\":1660438279,\"lastOutBytes\":1491599946,\"outBytes\":1491599946,\"outFlow\":10461,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":427242,\"inBytes\":3670342273,\"inFlow\":416752,\"lastChangeTime\":\"0:01:22.94\",\"lastInBytes\":3670342273,\"lastOutBytes\":3380079691,\"outBytes\":3380079691,\"outFlow\":10489,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1130210,\"inBytes\":3866369502,\"inFlow\":1103301,\"lastChangeTime\":\"207 days, 15:14:16.23\",\"lastInBytes\":3866369502,\"lastOutBytes\":3387231409,\"outBytes\":3387231409,\"outFlow\":26909,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":430052,\"inBytes\":2798431394,\"inFlow\":418968,\"lastChangeTime\":\"207 days, 15:14:13.37\",\"lastInBytes\":2798431394,\"lastOutBytes\":445127933,\"outBytes\":445127933,\"outFlow\":11084,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":266341,\"inBytes\":1585954795,\"inFlow\":259556,\"lastChangeTime\":\"97 days, 5:36:16.10\",\"lastInBytes\":1585954795,\"lastOutBytes\":2204390249,\"outBytes\":2204390249,\"outFlow\":6784,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":400612,\"inBytes\":1347904124,\"inFlow\":390780,\"lastChangeTime\":\"263 days, 22:45:05.01\",\"lastInBytes\":1347904124,\"lastOutBytes\":360584300,\"outBytes\":360584300,\"outFlow\":9832,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3235196,\"inFlow\":0,\"lastChangeTime\":\"86 days, 5:30:32.80\",\"lastInBytes\":3235196,\"lastOutBytes\":184117530,\"outBytes\":184117530,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":675061053,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.53\",\"lastInBytes\":675061053,\"lastOutBytes\":2753699622,\"outBytes\":2753699622,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6142366,\"inBytes\":150495659,\"inFlow\":154534,\"lastChangeTime\":\"86 days, 5:30:06.18\",\"lastInBytes\":150495659,\"lastOutBytes\":2380672598,\"outBytes\":2380672598,\"outFlow\":5987832,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.389666000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790923", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89296\",\"inUnknownProtos\":\"1853633995\",\"index\":\"635\",\"lastChange\":\"0:01:21.16\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:37:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3432276905\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"93570407\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":398687,\"inBytes\":974797868,\"inFlow\":388874,\"lastChangeTime\":\"0:01:21.13\",\"lastInBytes\":974797868,\"lastOutBytes\":2624252225,\"outBytes\":2624252225,\"outFlow\":9812,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":14482423,\"inBytes\":194765624,\"inFlow\":416599,\"lastChangeTime\":\"0:01:21.72\",\"lastInBytes\":194765624,\"lastOutBytes\":2011412828,\"outBytes\":2011412828,\"outFlow\":14065823,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":426924,\"inBytes\":616466413,\"inFlow\":416448,\"lastChangeTime\":\"0:01:21.14\",\"lastInBytes\":616466413,\"lastOutBytes\":545254117,\"outBytes\":545254117,\"outFlow\":10475,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":427084,\"inBytes\":2006152568,\"inFlow\":416592,\"lastChangeTime\":\"0:01:21.15\",\"lastInBytes\":2006152568,\"lastOutBytes\":997276228,\"outBytes\":997276228,\"outFlow\":10491,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":285356,\"inBytes\":547956074,\"inFlow\":278137,\"lastChangeTime\":\"0:01:20.76\",\"lastInBytes\":547956074,\"lastOutBytes\":2505833617,\"outBytes\":2505833617,\"outFlow\":7218,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":427063,\"inBytes\":2145398410,\"inFlow\":416591,\"lastChangeTime\":\"0:01:21.14\",\"lastInBytes\":2145398410,\"lastOutBytes\":1853633995,\"outBytes\":1853633995,\"outFlow\":10472,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":285235,\"inBytes\":3352602429,\"inFlow\":278034,\"lastChangeTime\":\"0:01:21.72\",\"lastInBytes\":3352602429,\"lastOutBytes\":1529953792,\"outBytes\":1529953792,\"outFlow\":7200,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":285123,\"inBytes\":1104420983,\"inFlow\":277939,\"lastChangeTime\":\"0:01:21.15\",\"lastInBytes\":1104420983,\"lastOutBytes\":509428494,\"outBytes\":509428494,\"outFlow\":7184,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":548178,\"inFlow\":0,\"lastChangeTime\":\"0:06:14.38\",\"lastInBytes\":548178,\"lastOutBytes\":22770766,\"outBytes\":22770766,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":674590857,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.15\",\"lastInBytes\":674590857,\"lastOutBytes\":2752165370,\"outBytes\":2752165370,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3003815,\"inBytes\":1314396249,\"inFlow\":76239,\"lastChangeTime\":\"0:06:23.50\",\"lastInBytes\":1314396249,\"lastOutBytes\":1489839520,\"outBytes\":1489839520,\"outFlow\":2927576,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.410272000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790924", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89194\",\"inUnknownProtos\":\"4082529861\",\"index\":\"635\",\"lastChange\":\"0:01:16.25\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4c:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3443634389\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"93520505\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":445190,\"inBytes\":710521660,\"inFlow\":434944,\"lastChangeTime\":\"0:01:18.76\",\"lastInBytes\":710521660,\"lastOutBytes\":4121202715,\"outBytes\":4121202715,\"outFlow\":10245,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":994639,\"inBytes\":2362042306,\"inFlow\":972924,\"lastChangeTime\":\"0:01:18.77\",\"lastInBytes\":2362042306,\"lastOutBytes\":1774594183,\"outBytes\":1774594183,\"outFlow\":21715,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":426898,\"inBytes\":1855308278,\"inFlow\":416585,\"lastChangeTime\":\"139 days, 8:09:26.68\",\"lastInBytes\":1855308278,\"lastOutBytes\":2356578862,\"outBytes\":2356578862,\"outFlow\":10312,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":22459346,\"inBytes\":3540469769,\"inFlow\":391570,\"lastChangeTime\":\"0:01:18.05\",\"lastInBytes\":3540469769,\"lastOutBytes\":59,\"outBytes\":59,\"outFlow\":22067775,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":599928,\"inBytes\":574490618,\"inFlow\":584834,\"lastChangeTime\":\"267 days, 23:33:25.54\",\"lastInBytes\":574490618,\"lastOutBytes\":505246285,\"outBytes\":505246285,\"outFlow\":15093,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":277197,\"inBytes\":2284223876,\"inFlow\":269350,\"lastChangeTime\":\"0:01:18.08\",\"lastInBytes\":2284223876,\"lastOutBytes\":4082449824,\"outBytes\":4082449824,\"outFlow\":7846,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1058672,\"inBytes\":2496168435,\"inFlow\":1033268,\"lastChangeTime\":\"0:01:18.07\",\"lastInBytes\":2496168435,\"lastOutBytes\":3820759383,\"outBytes\":3820759383,\"outFlow\":25403,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":399053,\"inBytes\":1675277928,\"inFlow\":389268,\"lastChangeTime\":\"0:01:18.08\",\"lastInBytes\":1675277928,\"lastOutBytes\":1983636106,\"outBytes\":1983636106,\"outFlow\":9785,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1136239,\"inBytes\":3589256360,\"inFlow\":1109291,\"lastChangeTime\":\"0:01:18.06\",\"lastInBytes\":3589256360,\"lastOutBytes\":3621063475,\"outBytes\":3621063475,\"outFlow\":26947,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1000287,\"inBytes\":887548288,\"inFlow\":978653,\"lastChangeTime\":\"0:01:18.76\",\"lastInBytes\":887548288,\"lastOutBytes\":2102729924,\"outBytes\":2102729924,\"outFlow\":21634,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":969298,\"inBytes\":1688446579,\"inFlow\":948172,\"lastChangeTime\":\"0:01:18.77\",\"lastInBytes\":1688446579,\"lastOutBytes\":2457304742,\"outBytes\":2457304742,\"outFlow\":21126,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2937635,\"inFlow\":0,\"lastChangeTime\":\"198 days, 1:14:20.75\",\"lastInBytes\":2937635,\"lastOutBytes\":102672374,\"outBytes\":102672374,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":674552784,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.06\",\"lastInBytes\":674552784,\"lastOutBytes\":2750465938,\"outBytes\":2750465938,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7409720,\"inBytes\":4155824736,\"inFlow\":179737,\"lastChangeTime\":\"0:01:16.24\",\"lastInBytes\":4155824736,\"lastOutBytes\":1195507725,\"outBytes\":1195507725,\"outFlow\":7229982,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.401904000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790925", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89110\",\"inUnknownProtos\":\"3350236907\",\"index\":\"635\",\"lastChange\":\"0:01:20.44\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4b:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2910998560\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"93579145\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":439792,\"inBytes\":1188788353,\"inFlow\":428247,\"lastChangeTime\":\"264 days, 0:19:16.50\",\"lastInBytes\":1188788353,\"lastOutBytes\":1808366154,\"outBytes\":1808366154,\"outFlow\":11544,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":427232,\"inBytes\":724723198,\"inFlow\":416729,\"lastChangeTime\":\"0:01:22.25\",\"lastInBytes\":724723198,\"lastOutBytes\":1736261030,\"outBytes\":1736261030,\"outFlow\":10503,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":427693,\"inBytes\":44632503,\"inFlow\":417249,\"lastChangeTime\":\"0:01:22.24\",\"lastInBytes\":44632503,\"lastOutBytes\":4000877837,\"outBytes\":4000877837,\"outFlow\":10444,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1137513,\"inBytes\":3782328010,\"inFlow\":1110538,\"lastChangeTime\":\"0:01:22.68\",\"lastInBytes\":3782328010,\"lastOutBytes\":3013554384,\"outBytes\":3013554384,\"outFlow\":26974,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":426779,\"inBytes\":2043699056,\"inFlow\":416279,\"lastChangeTime\":\"0:01:22.67\",\"lastInBytes\":2043699056,\"lastOutBytes\":2754758075,\"outBytes\":2754758075,\"outFlow\":10500,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1136620,\"inBytes\":1123278318,\"inFlow\":1109725,\"lastChangeTime\":\"207 days, 9:50:30.41\",\"lastInBytes\":1123278318,\"lastOutBytes\":3350236907,\"outBytes\":3350236907,\"outFlow\":26894,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1140494,\"inBytes\":2202866288,\"inFlow\":1114001,\"lastChangeTime\":\"139 days, 9:38:18.42\",\"lastInBytes\":2202866288,\"lastOutBytes\":2678785523,\"outBytes\":2678785523,\"outFlow\":26493,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1071113,\"inBytes\":3046994061,\"inFlow\":1047300,\"lastChangeTime\":\"0:01:22.94\",\"lastInBytes\":3046994061,\"lastOutBytes\":1204839304,\"outBytes\":1204839304,\"outFlow\":23812,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1063827,\"inBytes\":2654228897,\"inFlow\":1038601,\"lastChangeTime\":\"0:01:22.25\",\"lastInBytes\":2654228897,\"lastOutBytes\":4193275090,\"outBytes\":4193275090,\"outFlow\":25225,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":926838,\"inBytes\":3381182718,\"inFlow\":907337,\"lastChangeTime\":\"0:01:22.93\",\"lastInBytes\":3381182718,\"lastOutBytes\":82645794,\"outBytes\":82645794,\"outFlow\":19500,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":963755,\"inBytes\":2976548950,\"inFlow\":942352,\"lastChangeTime\":\"0:01:22.93\",\"lastInBytes\":2976548950,\"lastOutBytes\":1804647280,\"outBytes\":1804647280,\"outFlow\":21402,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":675044425,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.24\",\"lastInBytes\":675044425,\"lastOutBytes\":2753435637,\"outBytes\":2753435637,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9405210,\"inBytes\":1250523073,\"inFlow\":227292,\"lastChangeTime\":\"0:01:20.44\",\"lastInBytes\":1250523073,\"lastOutBytes\":2778976976,\"outBytes\":2778976976,\"outFlow\":9177917,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.389579000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790926", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89035\",\"inUnknownProtos\":\"2921244404\",\"index\":\"635\",\"lastChange\":\"0:01:21.35\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e7:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2658569064\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"93509600\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":398747,\"inBytes\":178041333,\"inFlow\":388862,\"lastChangeTime\":\"0:01:23.29\",\"lastInBytes\":178041333,\"lastOutBytes\":3722493808,\"outBytes\":3722493808,\"outFlow\":9884,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":515241,\"inBytes\":2839997319,\"inFlow\":504054,\"lastChangeTime\":\"0:01:24.00\",\"lastInBytes\":2839997319,\"lastOutBytes\":3859439477,\"outBytes\":3859439477,\"outFlow\":11187,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":522426,\"inBytes\":3228445470,\"inFlow\":508344,\"lastChangeTime\":\"210 days, 22:00:40.45\",\"lastInBytes\":3228445470,\"lastOutBytes\":1767825639,\"outBytes\":1767825639,\"outFlow\":14082,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1067877,\"inBytes\":2297567086,\"inFlow\":1042334,\"lastChangeTime\":\"0:01:23.99\",\"lastInBytes\":2297567086,\"lastOutBytes\":4097708931,\"outBytes\":4097708931,\"outFlow\":25543,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":600588,\"inBytes\":1037373070,\"inFlow\":585393,\"lastChangeTime\":\"0:01:23.99\",\"lastInBytes\":1037373070,\"lastOutBytes\":2686175984,\"outBytes\":2686175984,\"outFlow\":15194,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1064017,\"inBytes\":2855213532,\"inFlow\":1038525,\"lastChangeTime\":\"207 days, 13:07:27.31\",\"lastInBytes\":2855213532,\"lastOutBytes\":2920986036,\"outBytes\":2920986036,\"outFlow\":25492,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":938715,\"inBytes\":2150273524,\"inFlow\":919792,\"lastChangeTime\":\"0:01:24.00\",\"lastInBytes\":2150273524,\"lastOutBytes\":1842408321,\"outBytes\":1842408321,\"outFlow\":18922,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":551161,\"inBytes\":245885464,\"inFlow\":537418,\"lastChangeTime\":\"207 days, 13:07:34.66\",\"lastInBytes\":245885464,\"lastOutBytes\":951491873,\"outBytes\":951491873,\"outFlow\":13742,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":426872,\"inBytes\":1573556158,\"inFlow\":416371,\"lastChangeTime\":\"207 days, 13:07:30.02\",\"lastInBytes\":1573556158,\"lastOutBytes\":3476548531,\"outBytes\":3476548531,\"outFlow\":10500,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":427270,\"inBytes\":3338331299,\"inFlow\":416750,\"lastChangeTime\":\"210 days, 12:49:22.28\",\"lastInBytes\":3338331299,\"lastOutBytes\":1624250342,\"outBytes\":1624250342,\"outFlow\":10520,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1123805,\"inBytes\":3979767856,\"inFlow\":1097921,\"lastChangeTime\":\"139 days, 7:57:41.90\",\"lastInBytes\":3979767856,\"lastOutBytes\":1982399441,\"outBytes\":1982399441,\"outFlow\":25883,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":285525,\"inBytes\":2418276088,\"inFlow\":278278,\"lastChangeTime\":\"0:01:23.29\",\"lastInBytes\":2418276088,\"lastOutBytes\":2004834080,\"outBytes\":2004834080,\"outFlow\":7246,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":675008681,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.30\",\"lastInBytes\":675008681,\"lastOutBytes\":2748651152,\"outBytes\":2748651152,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7785265,\"inBytes\":988842484,\"inFlow\":191897,\"lastChangeTime\":\"0:01:21.34\",\"lastInBytes\":988842484,\"lastOutBytes\":289911509,\"outBytes\":289911509,\"outFlow\":7593368,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.409560000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790927", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1009040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"47\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"68772\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:28.54\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:da:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:58\",\"info\":{\"portInfoList\":[{\"flow\":1064085,\"inBytes\":4248732047,\"inFlow\":1038641,\"lastChangeTime\":\"202 days, 2:04:19.03\",\"lastInBytes\":4248732047,\"lastOutBytes\":115632883,\"outBytes\":115632883,\"outFlow\":25443,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":481912,\"inBytes\":4271916229,\"inFlow\":471259,\"lastChangeTime\":\"0:01:28.88\",\"lastInBytes\":4271916229,\"lastOutBytes\":3376240893,\"outBytes\":3376240893,\"outFlow\":10653,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1063308,\"inBytes\":1776978050,\"inFlow\":1037865,\"lastChangeTime\":\"125 days, 15:15:22.84\",\"lastInBytes\":1776978050,\"lastOutBytes\":3758806044,\"outBytes\":3758806044,\"outFlow\":25442,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":615617347,\"inFlow\":1,\"lastChangeTime\":\"0:01:29.61\",\"lastInBytes\":615617347,\"lastOutBytes\":2099735539,\"outBytes\":2099735539,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2807833,\"inBytes\":2648319733,\"inFlow\":69599,\"lastChangeTime\":\"0:01:28.54\",\"lastInBytes\":2648319733,\"lastOutBytes\":3681650509,\"outBytes\":3681650509,\"outFlow\":2738233,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.435088000\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790928", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61258\",\"inUnknownProtos\":\"2652470255\",\"index\":\"635\",\"lastChange\":\"0:01:25.55\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:eb:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"160218300\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":530472,\"inBytes\":3919389195,\"inFlow\":517975,\"lastChangeTime\":\"119 days, 11:01:26.72\",\"lastInBytes\":3919389195,\"lastOutBytes\":2938180645,\"outBytes\":2938180645,\"outFlow\":12497,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":859752,\"inBytes\":346730009,\"inFlow\":841286,\"lastChangeTime\":\"0:01:29.52\",\"lastInBytes\":346730009,\"lastOutBytes\":402877391,\"outBytes\":402877391,\"outFlow\":18466,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1326187,\"inBytes\":11473773,\"inFlow\":1295503,\"lastChangeTime\":\"119 days, 11:01:17.25\",\"lastInBytes\":11473773,\"lastOutBytes\":747548288,\"outBytes\":747548288,\"outFlow\":30684,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":530770,\"inBytes\":2680403568,\"inFlow\":518188,\"lastChangeTime\":\"119 days, 11:01:25.41\",\"lastInBytes\":2680403568,\"lastOutBytes\":3580294537,\"outBytes\":3580294537,\"outFlow\":12581,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":528868,\"inBytes\":2032249049,\"inFlow\":518422,\"lastChangeTime\":\"0:01:28.99\",\"lastInBytes\":2032249049,\"lastOutBytes\":2751563492,\"outBytes\":2751563492,\"outFlow\":10446,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1327238,\"inBytes\":2906601339,\"inFlow\":1296614,\"lastChangeTime\":\"119 days, 11:01:29.30\",\"lastInBytes\":2906601339,\"lastOutBytes\":2652470255,\"outBytes\":2652470255,\"outFlow\":30623,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1325626,\"inBytes\":857073094,\"inFlow\":1294857,\"lastChangeTime\":\"119 days, 11:01:22.97\",\"lastInBytes\":857073094,\"lastOutBytes\":3805855411,\"outBytes\":3805855411,\"outFlow\":30768,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":612309276,\"inFlow\":1,\"lastChangeTime\":\"0:01:28.98\",\"lastInBytes\":612309276,\"lastOutBytes\":2047533766,\"outBytes\":2047533766,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6462164,\"inBytes\":2793134604,\"inFlow\":153123,\"lastChangeTime\":\"0:01:25.55\",\"lastInBytes\":2793134604,\"lastOutBytes\":1879593020,\"outBytes\":1879593020,\"outFlow\":6309041,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.400820000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790929", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1009040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89177\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:19.93\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:44:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"1611\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:58\",\"info\":{\"portInfoList\":[{\"flow\":1143860,\"inBytes\":913669169,\"inFlow\":1117001,\"lastChangeTime\":\"139 days, 7:44:52.69\",\"lastInBytes\":913669169,\"lastOutBytes\":1187017774,\"outBytes\":1187017774,\"outFlow\":26859,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":427338,\"inBytes\":426964314,\"inFlow\":416723,\"lastChangeTime\":\"207 days, 12:54:47.30\",\"lastInBytes\":426964314,\"lastOutBytes\":1373707440,\"outBytes\":1373707440,\"outFlow\":10614,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":428054,\"inBytes\":3320872722,\"inFlow\":417509,\"lastChangeTime\":\"207 days, 12:54:50.00\",\"lastInBytes\":3320872722,\"lastOutBytes\":1174173621,\"outBytes\":1174173621,\"outFlow\":10544,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":516839,\"inBytes\":2528784669,\"inFlow\":504723,\"lastChangeTime\":\"0:01:22.27\",\"lastInBytes\":2528784669,\"lastOutBytes\":1260812430,\"outBytes\":1260812430,\"outFlow\":12115,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1952036,\"inFlow\":0,\"lastChangeTime\":\"267 days, 23:14:25.68\",\"lastInBytes\":1952036,\"lastOutBytes\":162793320,\"outBytes\":162793320,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":674993201,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.83\",\"lastInBytes\":674993201,\"lastOutBytes\":2756570159,\"outBytes\":2756570159,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2521662,\"inBytes\":2442183361,\"inFlow\":62958,\"lastChangeTime\":\"0:01:19.93\",\"lastInBytes\":2442183361,\"lastOutBytes\":537649024,\"outBytes\":537649024,\"outFlow\":2458704,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.415775000\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790930", + "createdBy": "0", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89104\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:21.74\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:2d:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":1064585,\"inBytes\":3053514252,\"inFlow\":1039189,\"lastChangeTime\":\"0:01:23.60\",\"lastInBytes\":3053514252,\"lastOutBytes\":2758017768,\"outBytes\":2758017768,\"outFlow\":25395,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1137481,\"inBytes\":609272631,\"inFlow\":1111099,\"lastChangeTime\":\"139 days, 8:42:14.78\",\"lastInBytes\":609272631,\"lastOutBytes\":3206202459,\"outBytes\":3206202459,\"outFlow\":26382,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1233163,\"inBytes\":2030542653,\"inFlow\":1205151,\"lastChangeTime\":\"0:01:24.10\",\"lastInBytes\":2030542653,\"lastOutBytes\":2864182594,\"outBytes\":2864182594,\"outFlow\":28012,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":426724,\"inBytes\":1317918718,\"inFlow\":416227,\"lastChangeTime\":\"207 days, 13:52:23.91\",\"lastInBytes\":1317918718,\"lastOutBytes\":2775286650,\"outBytes\":2775286650,\"outFlow\":10497,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1138158,\"inBytes\":1597892639,\"inFlow\":1111015,\"lastChangeTime\":\"0:01:23.30\",\"lastInBytes\":1597892639,\"lastOutBytes\":2440412618,\"outBytes\":2440412618,\"outFlow\":27142,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":675088274,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.30\",\"lastInBytes\":675088274,\"lastOutBytes\":2757587939,\"outBytes\":2757587939,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5090669,\"inBytes\":3976564785,\"inFlow\":124926,\"lastChangeTime\":\"0:01:21.74\",\"lastInBytes\":3976564785,\"lastOutBytes\":2822278610,\"outBytes\":2822278610,\"outFlow\":4965742,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.394151000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790931", + "createdBy": "2", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1009040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89039\",\"inUnknownProtos\":\"333862316\",\"index\":\"635\",\"lastChange\":\"0:01:16.33\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:11:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2384885456\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:57\",\"info\":{\"portInfoList\":[{\"flow\":431816,\"inBytes\":4267464852,\"inFlow\":422851,\"lastChangeTime\":\"0:01:18.61\",\"lastInBytes\":4267464852,\"lastOutBytes\":429049931,\"outBytes\":429049931,\"outFlow\":8965,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":529908,\"inBytes\":2795788807,\"inFlow\":518390,\"lastChangeTime\":\"0:01:18.86\",\"lastInBytes\":2795788807,\"lastOutBytes\":3913041848,\"outBytes\":3913041848,\"outFlow\":11517,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1143521,\"inBytes\":1147703634,\"inFlow\":1116089,\"lastChangeTime\":\"223 days, 17:14:27.68\",\"lastInBytes\":1147703634,\"lastOutBytes\":2020248133,\"outBytes\":2020248133,\"outFlow\":27431,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1139875,\"inBytes\":3328409777,\"inFlow\":1112233,\"lastChangeTime\":\"207 days, 13:33:32.71\",\"lastInBytes\":3328409777,\"lastOutBytes\":1505336712,\"outBytes\":1505336712,\"outFlow\":27642,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":861230,\"inBytes\":1341751251,\"inFlow\":844044,\"lastChangeTime\":\"0:01:18.86\",\"lastInBytes\":1341751251,\"lastOutBytes\":261087459,\"outBytes\":261087459,\"outFlow\":17185,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1067374,\"inBytes\":1731783560,\"inFlow\":1042073,\"lastChangeTime\":\"139 days, 8:23:22.90\",\"lastInBytes\":1731783560,\"lastOutBytes\":333615433,\"outBytes\":333615433,\"outFlow\":25300,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7755578,\"inFlow\":0,\"lastChangeTime\":\"210 days, 3:49:03.05\",\"lastInBytes\":7755578,\"lastOutBytes\":101973779,\"outBytes\":101973779,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":366476739,\"inFlow\":1,\"lastChangeTime\":\"210 days, 2:55:35.17\",\"lastInBytes\":366476739,\"lastOutBytes\":2462102005,\"outBytes\":2462102005,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.04\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4953008,\"inBytes\":1313492363,\"inFlow\":117576,\"lastChangeTime\":\"210 days, 2:50:00.21\",\"lastInBytes\":1313492363,\"lastOutBytes\":483517475,\"outBytes\":483517475,\"outFlow\":4835431,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.560344000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790932", + "createdBy": "2", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1009040002", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.146.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface146\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"63459\",\"inUnknownProtos\":\"2633821388\",\"index\":\"635\",\"lastChange\":\"0:01:30.70\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f6:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2444404471\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"65744795\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.146.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:58\",\"info\":{\"portInfoList\":[{\"flow\":398607,\"inBytes\":849078551,\"inFlow\":388810,\"lastChangeTime\":\"200 days, 18:33:54.74\",\"lastInBytes\":849078551,\"lastOutBytes\":317758438,\"outBytes\":317758438,\"outFlow\":9796,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":266429,\"inBytes\":1589839454,\"inFlow\":259571,\"lastChangeTime\":\"0:01:33.37\",\"lastInBytes\":1589839454,\"lastOutBytes\":3993272119,\"outBytes\":3993272119,\"outFlow\":6857,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":266752,\"inBytes\":4160340629,\"inFlow\":259860,\"lastChangeTime\":\"0:01:33.37\",\"lastInBytes\":4160340629,\"lastOutBytes\":1885772292,\"outBytes\":1885772292,\"outFlow\":6892,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":266333,\"inBytes\":3542804848,\"inFlow\":259608,\"lastChangeTime\":\"0:01:32.69\",\"lastInBytes\":3542804848,\"lastOutBytes\":3478067229,\"outBytes\":3478067229,\"outFlow\":6724,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":398613,\"inBytes\":195303408,\"inFlow\":388913,\"lastChangeTime\":\"57 days, 10:35:42.13\",\"lastInBytes\":195303408,\"lastOutBytes\":3190964247,\"outBytes\":3190964247,\"outFlow\":9699,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":398729,\"inBytes\":3189289045,\"inFlow\":388884,\"lastChangeTime\":\"0:01:32.70\",\"lastInBytes\":3189289045,\"lastOutBytes\":2633821388,\"outBytes\":2633821388,\"outFlow\":9845,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":398229,\"inBytes\":3527314941,\"inFlow\":388415,\"lastChangeTime\":\"0:01:33.36\",\"lastInBytes\":3527314941,\"lastOutBytes\":933639188,\"outBytes\":933639188,\"outFlow\":9814,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":266362,\"inBytes\":3526853579,\"inFlow\":259641,\"lastChangeTime\":\"0:01:32.68\",\"lastInBytes\":3526853579,\"lastOutBytes\":2781799637,\"outBytes\":2781799637,\"outFlow\":6721,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":266332,\"inBytes\":1725023723,\"inFlow\":259613,\"lastChangeTime\":\"0:01:32.70\",\"lastInBytes\":1725023723,\"lastOutBytes\":3648375914,\"outBytes\":3648375914,\"outFlow\":6719,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":366728801,\"inFlow\":1,\"lastChangeTime\":\"0:01:32.71\",\"lastInBytes\":366728801,\"lastOutBytes\":1856894328,\"outBytes\":1856894328,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3146260,\"inBytes\":457832600,\"inFlow\":80354,\"lastChangeTime\":\"0:01:30.70\",\"lastInBytes\":457832600,\"lastOutBytes\":1615579126,\"outBytes\":1615579126,\"outFlow\":3065906,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:54.398670000\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704527404242790933", + "createdBy": "2", + "createdTime": "2025-11-28 16:09:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:21", + "echoMap": {}, + "deviceId": "1009040001", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.145.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif145\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"56\",\"lastChange\":\"0:02:57.87\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:09:7b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"6\",\"temperature\":\"37\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.145.64\",\"index\":\"56\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"982\",\"0\",\"42\",\"0\",\"0\",\"0\",\"370114\",\"72\",\"4833\",\"658449\",\"42\",\"32\",\"5332\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:21\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:09.41\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31590,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":595,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36689,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":562,\"opticalVoltage\":3275,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33930,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":613,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37229,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":716,\"opticalVoltage\":3304,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33779,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":711,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35069,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":557,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39270,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":758,\"opticalVoltage\":3288,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":756,\"opticalVoltage\":3306,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35250,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":651,\"opticalVoltage\":3304,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40543,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":841,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39523,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":785,\"opticalVoltage\":3284,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":748,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36973,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":833,\"opticalVoltage\":3360,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33840,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":701,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44369,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":712,\"opticalVoltage\":3365,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37229,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":620,\"opticalVoltage\":3355,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41563,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":769,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38504,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":696,\"opticalVoltage\":3370,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":582,\"opticalVoltage\":3370,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37619,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":561,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":421,\"inBytes\":1548371041,\"inFlow\":64,\"lastChangeTime\":\"361 days, 11:49:55.56\",\"lastInBytes\":1548371041,\"lastOutBytes\":2267519386,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":227,\"opticalTemperature\":49,\"opticalTransmitPower\":236,\"opticalVoltage\":3352,\"outBytes\":2267519386,\"outFlow\":356,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2216630082,\"inFlow\":0,\"lastChangeTime\":\"361 days, 11:19:22.00\",\"lastInBytes\":2216630082,\"lastOutBytes\":1489731331,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1489731331,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":1387420,\"inBytes\":3425994862,\"inFlow\":2832,\"lastChangeTime\":\"0:04:03.41\",\"lastInBytes\":3425994862,\"lastOutBytes\":1353494931,\"opticalBiasCurrent\":33540,\"opticalReceivePower\":429,\"opticalTemperature\":48,\"opticalTransmitPower\":753,\"opticalVoltage\":3340,\"outBytes\":1353494931,\"outFlow\":1384587,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":420265,\"inBytes\":857181945,\"inFlow\":57480,\"lastChangeTime\":\"0:03:55.84\",\"lastInBytes\":857181945,\"lastOutBytes\":3861638532,\"opticalBiasCurrent\":39270,\"opticalReceivePower\":257,\"opticalTemperature\":47,\"opticalTransmitPower\":792,\"opticalVoltage\":3365,\"outBytes\":3861638532,\"outFlow\":362785,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2570403,\"inBytes\":2379937928,\"inFlow\":2488689,\"lastChangeTime\":\"412 days, 8:07:48.78\",\"lastInBytes\":2379937928,\"lastOutBytes\":3137186198,\"opticalBiasCurrent\":13831,\"opticalReceivePower\":199,\"opticalTemperature\":44,\"opticalTransmitPower\":307,\"opticalVoltage\":3325,\"outBytes\":3137186198,\"outFlow\":81714,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4322018,\"inBytes\":3505932816,\"inFlow\":4194344,\"lastChangeTime\":\"330 days, 10:22:52.41\",\"lastInBytes\":3505932816,\"lastOutBytes\":614692514,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":167,\"opticalTemperature\":44,\"opticalTransmitPower\":240,\"opticalVoltage\":3368,\"outBytes\":614692514,\"outFlow\":127674,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4187124,\"inBytes\":2052181694,\"inFlow\":4058892,\"lastChangeTime\":\"330 days, 10:04:01.45\",\"lastInBytes\":2052181694,\"lastOutBytes\":2309511312,\"opticalBiasCurrent\":13482,\"opticalReceivePower\":165,\"opticalTemperature\":45,\"opticalTransmitPower\":255,\"opticalVoltage\":3325,\"outBytes\":2309511312,\"outFlow\":128231,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2082831,\"inBytes\":3146052874,\"inFlow\":2018105,\"lastChangeTime\":\"330 days, 11:01:36.38\",\"lastInBytes\":3146052874,\"lastOutBytes\":3572735673,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":99,\"opticalTemperature\":43,\"opticalTransmitPower\":233,\"opticalVoltage\":3354,\"outBytes\":3572735673,\"outFlow\":64725,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5648332,\"inBytes\":1535173309,\"inFlow\":5481635,\"lastChangeTime\":\"418 days, 12:51:30.20\",\"lastInBytes\":1535173309,\"lastOutBytes\":4226122364,\"opticalBiasCurrent\":13449,\"opticalReceivePower\":175,\"opticalTemperature\":44,\"opticalTransmitPower\":238,\"opticalVoltage\":3318,\"outBytes\":4226122364,\"outFlow\":166697,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2282933,\"inBytes\":4165068251,\"inFlow\":2212407,\"lastChangeTime\":\"412 days, 8:37:42.84\",\"lastInBytes\":4165068251,\"lastOutBytes\":1652526094,\"opticalBiasCurrent\":12744,\"opticalReceivePower\":162,\"opticalTemperature\":41,\"opticalTransmitPower\":242,\"opticalVoltage\":3366,\"outBytes\":1652526094,\"outFlow\":70526,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6780681,\"inBytes\":3369883938,\"inFlow\":6573083,\"lastChangeTime\":\"330 days, 10:49:03.02\",\"lastInBytes\":3369883938,\"lastOutBytes\":4290277421,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":87,\"opticalTemperature\":46,\"opticalTransmitPower\":239,\"opticalVoltage\":3368,\"outBytes\":4290277421,\"outFlow\":207598,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7632106,\"inBytes\":2364179353,\"inFlow\":7402812,\"lastChangeTime\":\"330 days, 9:08:13.33\",\"lastInBytes\":2364179353,\"lastOutBytes\":3718936467,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":210,\"opticalTemperature\":41,\"opticalTransmitPower\":237,\"opticalVoltage\":3332,\"outBytes\":3718936467,\"outFlow\":229293,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6480618,\"inBytes\":3534245991,\"inFlow\":6285592,\"lastChangeTime\":\"330 days, 10:36:46.27\",\"lastInBytes\":3534245991,\"lastOutBytes\":830922846,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":218,\"opticalTemperature\":45,\"opticalTransmitPower\":237,\"opticalVoltage\":3300,\"outBytes\":830922846,\"outFlow\":195026,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2452031,\"inBytes\":1569821363,\"inFlow\":2374521,\"lastChangeTime\":\"330 days, 9:30:57.94\",\"lastInBytes\":1569821363,\"lastOutBytes\":1779766453,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":231,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3332,\"outBytes\":1779766453,\"outFlow\":77510,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5016723,\"inBytes\":2673585142,\"inFlow\":4859762,\"lastChangeTime\":\"416 days, 14:07:36.32\",\"lastInBytes\":2673585142,\"lastOutBytes\":2262584292,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":188,\"opticalTemperature\":46,\"opticalTransmitPower\":239,\"opticalVoltage\":3356,\"outBytes\":2262584292,\"outFlow\":156960,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5407870,\"inBytes\":2380822408,\"inFlow\":5239369,\"lastChangeTime\":\"330 days, 8:52:52.68\",\"lastInBytes\":2380822408,\"lastOutBytes\":3343218030,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":75,\"opticalTemperature\":43,\"opticalTransmitPower\":246,\"opticalVoltage\":3320,\"outBytes\":3343218030,\"outFlow\":168501,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4554457,\"inBytes\":647688261,\"inFlow\":4412366,\"lastChangeTime\":\"445 days, 8:26:54.83\",\"lastInBytes\":647688261,\"lastOutBytes\":3910948690,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":253,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":3910948690,\"outFlow\":142091,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":932972,\"inBytes\":365808177,\"inFlow\":904396,\"lastChangeTime\":\"176 days, 23:14:53.72\",\"lastInBytes\":365808177,\"lastOutBytes\":4243157471,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":261,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3380,\"outBytes\":4243157471,\"outFlow\":28576,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":932712,\"inBytes\":1278879447,\"inFlow\":904117,\"lastChangeTime\":\"176 days, 23:42:53.59\",\"lastInBytes\":1278879447,\"lastOutBytes\":276208981,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":197,\"opticalTemperature\":44,\"opticalTransmitPower\":238,\"opticalVoltage\":3374,\"outBytes\":276208981,\"outFlow\":28595,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6666349,\"inBytes\":4282225396,\"inFlow\":3795910,\"lastChangeTime\":\"66 days, 15:20:52.69\",\"lastInBytes\":4282225396,\"lastOutBytes\":3081733511,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":7,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3378,\"outBytes\":3081733511,\"outFlow\":2870439,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":60372,\"inFlow\":0,\"lastChangeTime\":\"66 days, 15:10:04.40\",\"lastInBytes\":60372,\"lastOutBytes\":19128179,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":239,\"opticalVoltage\":3332,\"outBytes\":19128179,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":238,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":237,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":232,\"opticalVoltage\":3378,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13260,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":252,\"opticalVoltage\":3333,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3378,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":245,\"opticalVoltage\":3404,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":244,\"opticalVoltage\":3346,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":50279,\"inBytes\":1050061497,\"inFlow\":33407,\"lastChangeTime\":\"0:02:59.64\",\"lastInBytes\":1050061497,\"lastOutBytes\":2492748593,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2492748593,\"outFlow\":16872,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":42335721,\"inBytes\":3093030471,\"inFlow\":16105778,\"lastChangeTime\":\"0:03:00.23\",\"lastInBytes\":3093030471,\"lastOutBytes\":94555222,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":94555222,\"outFlow\":26229942,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":98459,\"inBytes\":1711432204,\"inFlow\":29519,\"lastChangeTime\":\"0:02:59.67\",\"lastInBytes\":1711432204,\"lastOutBytes\":3966106917,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3966106917,\"outFlow\":68939,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":358,\"inBytes\":221404238,\"inFlow\":8,\"lastChangeTime\":\"95 days, 6:47:41.13\",\"lastInBytes\":221404238,\"lastOutBytes\":2764594140,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2764594140,\"outFlow\":350,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3501895,\"inBytes\":3335127231,\"inFlow\":40755,\"lastChangeTime\":\"478 days, 8:13:59.15\",\"lastInBytes\":3335127231,\"lastOutBytes\":3027109985,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3027109985,\"outFlow\":3461139,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18253708,\"inBytes\":93878717,\"inFlow\":442028,\"lastChangeTime\":\"0:02:58.46\",\"lastInBytes\":93878717,\"lastOutBytes\":3943168740,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3943168740,\"outFlow\":17811680,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":466653,\"inBytes\":2783288691,\"inFlow\":466304,\"lastChangeTime\":\"0:02:58.49\",\"lastInBytes\":2783288691,\"lastOutBytes\":622058224,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":622058224,\"outFlow\":348,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4165628,\"inBytes\":3517690165,\"inFlow\":336972,\"lastChangeTime\":\"0:02:58.53\",\"lastInBytes\":3517690165,\"lastOutBytes\":1466591402,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1466591402,\"outFlow\":3828655,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14827522,\"inBytes\":2892719522,\"inFlow\":341846,\"lastChangeTime\":\"0:02:58.57\",\"lastInBytes\":2892719522,\"lastOutBytes\":2483583723,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2483583723,\"outFlow\":14485676,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":560,\"inBytes\":1445124158,\"inFlow\":128,\"lastChangeTime\":\"8 days, 6:37:08.65\",\"lastInBytes\":1445124158,\"lastOutBytes\":1844949477,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1844949477,\"outFlow\":431,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":806,\"inBytes\":2472722396,\"inFlow\":195,\"lastChangeTime\":\"478 days, 7:03:22.08\",\"lastInBytes\":2472722396,\"lastOutBytes\":4230309106,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4230309106,\"outFlow\":611,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":560,\"inBytes\":1798060904,\"inFlow\":128,\"lastChangeTime\":\"478 days, 7:25:12.20\",\"lastInBytes\":1798060904,\"lastOutBytes\":3798567860,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3798567860,\"outFlow\":431,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":355,\"inBytes\":135708093,\"inFlow\":7,\"lastChangeTime\":\"97 days, 6:57:27.45\",\"lastInBytes\":135708093,\"lastOutBytes\":2043502435,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2043502435,\"outFlow\":347,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409,\"inBytes\":1831434969,\"inFlow\":51,\"lastChangeTime\":\"328 days, 8:16:17.85\",\"lastInBytes\":1831434969,\"lastOutBytes\":304912702,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":304912702,\"outFlow\":358,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8799333,\"inBytes\":2956903830,\"inFlow\":69378,\"lastChangeTime\":\"30 days, 7:06:22.46\",\"lastInBytes\":2956903830,\"lastOutBytes\":1607165323,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1607165323,\"outFlow\":8729954,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":693,\"inBytes\":2421675875,\"inFlow\":87,\"lastChangeTime\":\"61 days, 14:23:10.64\",\"lastInBytes\":2421675875,\"lastOutBytes\":77279156,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":77279156,\"outFlow\":605,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1478802,\"inFlow\":0,\"lastChangeTime\":\"478 days, 7:38:34.25\",\"lastInBytes\":1478802,\"lastOutBytes\":17935991,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":17935991,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":600,\"inBytes\":159747400,\"inFlow\":585,\"lastChangeTime\":\"104 days, 22:34:08.55\",\"lastInBytes\":159747400,\"lastOutBytes\":28702390,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":28702390,\"outFlow\":14,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1580,\"inBytes\":15528744,\"inFlow\":12,\"lastChangeTime\":\"104 days, 22:34:20.07\",\"lastInBytes\":15528744,\"lastOutBytes\":147114341,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":147114341,\"outFlow\":1568,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":26,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":26,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":25,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":25,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:02.035777000\"}}", + "lastDiagTime": "2026-02-02 14:38:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589885260997608584", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1009110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.145.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.82\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"117 days, 10:36:29.23\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10582054\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28318716\",\"inOctets\":\"2177206700\",\"inUcastPkts\":\"1479389369\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3c:f0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"85203718\",\"outQLen\":\"0\",\"outUcastPkts\":\"1340730831\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.145.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1010": { + "ndmAlarmHost": [ + { + "id": "689917798106529840", + "createdBy": null, + "createdTime": "2025-10-20 09:30:54", + "updatedBy": null, + "updatedTime": "2026-01-15 09:00:29", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.147.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048109000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "689917832466268251", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060001", + "name": "[614](10)交大消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003001006010614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917832466268252", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060002", + "name": "[610](10)交大内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003001006010610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917832466268253", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060003", + "name": "[607](10)交大环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003053005010607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917832466268254", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060004", + "name": "[602](10)交大弱电综合室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048005010602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917832466268255", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060005", + "name": "[603](10)交大弱电综合室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048005010603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235456", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060006", + "name": "[608](10)交大环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003053005010608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235457", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060007", + "name": "[604](10)交大弱电综合室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048005010604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235458", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060008", + "name": "[605](10)交大弱电综合室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048005010605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235459", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060009", + "name": "[611](10)交大内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003001006010611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235460", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060010", + "name": "[613](10)交大内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003021006010613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235461", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060011", + "name": "[609](10)交大环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003053005010609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235462", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060012", + "name": "[616](10)交大变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003021006010616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235463", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060013", + "name": "[617](10)交大变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003021006010617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235464", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060014", + "name": "[618](10)交大变电所出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003021006010618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235465", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060015", + "name": "[313](10)交大5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235466", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060016", + "name": "[314](10)交大5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235467", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060017", + "name": "[339](10)交大B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001040006010339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235468", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060018", + "name": "[402](10)交大1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001005006010402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235469", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060019", + "name": "[315](10)交大5#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235470", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060020", + "name": "[316](10)交大5#口入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235471", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060021", + "name": "[403](10)交大1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001005006010403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235472", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060022", + "name": "[320](10)交大5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235473", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060023", + "name": "[319](10)交大5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235474", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060024", + "name": "[210](10)交大5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059004010210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235475", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060025", + "name": "[322](10)交大5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235476", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060026", + "name": "[615](10)交大消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003001006010615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235477", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060027", + "name": "[323](10)交大5#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059005010323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235478", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-12-10 16:01:27", + "echoMap": {}, + "deviceId": "1010060028", + "name": "[344](10)交大2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001036005010344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235479", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060029", + "name": "[324](10)交大5#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235480", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060030", + "name": "[317](10)交大5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235481", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060031", + "name": "[318](10)交大5#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235482", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060032", + "name": "[321](10)交大5#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001059006010321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235483", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060033", + "name": "[601](10)交大车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003042004010601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235484", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060034", + "name": "[501](10)交大客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001001005010501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235485", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060035", + "name": "[401](10)交大1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001005006010401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235486", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060036", + "name": "[202](10)交大厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001035004010202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235487", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060037", + "name": "[404](10)交大2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001006006010404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235488", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1010060038", + "name": "[326](10)交大#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235489", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060039", + "name": "[325](10)交大#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235490", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1010060040", + "name": "[341](10)交大10-11换乘入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001081006010341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235491", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1010060041", + "name": "[204](10)交大厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001035004010204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235492", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060042", + "name": "[329](10)交大#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235493", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060043", + "name": "[330](10)交大#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235494", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060044", + "name": "[342](10)交大10-11换乘入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001081006010342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235495", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060045", + "name": "[331](10)交大#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917836761235496", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060046", + "name": "[301](10)交大3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001057006010301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202752", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060047", + "name": "[302](10)交大3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001057006010302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202753", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-20 11:26:53", + "echoMap": {}, + "deviceId": "1010060048", + "name": "[343](10)交大1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001036005010343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202754", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060049", + "name": "[338](10)交大B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001040006010338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202755", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060050", + "name": "[328](10)交大#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202756", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060051", + "name": "[305](10)交大4#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202757", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060052", + "name": "[203](10)交大厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001035004010203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202758", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060053", + "name": "[304](10)交大4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202759", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060054", + "name": "[502](10)交大票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001030006010502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202760", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060055", + "name": "[327](10)交大#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001045006010327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202761", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060056", + "name": "[303](10)交大4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202762", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060057", + "name": "[345](10)交大安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001085006010345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202763", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060058", + "name": "[201](10)交大厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001035004010201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202764", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060059", + "name": "[306](10)交大4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202765", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060060", + "name": "[311](10)交大4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202766", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060061", + "name": "[307](10)交大4#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202767", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060062", + "name": "[308](10)交大4#口出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202768", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1010060063", + "name": "[310](10)交大4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202769", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060064", + "name": "[309](10)交大4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202770", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060065", + "name": "[209](10)交大4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058004010209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202771", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060066", + "name": "[312](10)交大4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001058006010312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202772", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060067", + "name": "[702](10)交大下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061004013006010702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202773", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060068", + "name": "[108](10)交大下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002012006010108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202774", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060069", + "name": "[612](10)交大内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003021006010612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202775", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060070", + "name": "[207](10)交大下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002001004010207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202776", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060071", + "name": "[606](10)交大屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048005010606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202777", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060072", + "name": "[701](10)交大上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061004013006010701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202778", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060073", + "name": "[105](10)交大上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002007006010105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202779", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1010060074", + "name": "[107](10)交大下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002012006010107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202780", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060075", + "name": "[332](10)交大#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002017006010332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202781", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060076", + "name": "[333](10)交大#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002017006010333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202782", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060077", + "name": "[206](10)交大上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002001004010206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202783", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060078", + "name": "[106](10)交大上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002007006010106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202784", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060079", + "name": "[109](10)交大下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002012006010109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202785", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060080", + "name": "[110](10)交大下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002012006010110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202786", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060081", + "name": "[208](10)交大下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002001004010208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202787", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060082", + "name": "[340](10)交大B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002002006010340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202788", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060083", + "name": "[205](10)交大上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002001004010205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202789", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060084", + "name": "[334](10)交大#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002017006010334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202790", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1010060085", + "name": "[104](10)交大上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002007006010104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202791", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060086", + "name": "[103](10)交大上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002007006010103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202792", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060087", + "name": "[111](10)交大下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002012006010111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202793", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060088", + "name": "[112](10)交大下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002012006010112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202794", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1010060089", + "name": "[335](10)交大#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002017006010335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202795", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060090", + "name": "[337](10)交大10-11换乘楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002017006010337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202796", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060091", + "name": "[336](10)交大#3台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002017006010336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202797", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060092", + "name": "[102](10)交大上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002007006010102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202798", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060093", + "name": "[101](10)交大上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061002007006010101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202799", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060094", + "name": "[704](10)交大交大虹桥下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061004012004010704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202800", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1010060095", + "name": "[703](10)交大交大虹桥上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061004012004010703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202801", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060096", + "name": "[619](10)交大内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003021005010619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202802", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2026-01-15 16:43:45", + "echoMap": {}, + "deviceId": "1010060097", + "name": "[620](10)交大消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003068005010620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202803", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060098", + "name": "[621](10)交大民用机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003048005010621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689917841056202804", + "createdBy": "0", + "createdTime": "2025-10-20 10:18:59", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1010060099", + "name": "[622](10)交大气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061003067005010622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707146552608310323", + "createdBy": null, + "createdTime": "2025-12-08 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-08 00:00:00", + "echoMap": {}, + "deviceId": "1010060100", + "name": "[346](10)交大3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.147.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061001057006010346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589885986847077575", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:13", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1010070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.147.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061000000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"130922\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4278054725\",\"inUcastPkts\":\"2252330008\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:d2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1841733646\",\"outQLen\":\"0\",\"outUcastPkts\":\"426196732\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.147.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:44\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ229FF\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"8\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589885986847077611", + "createdBy": "2", + "createdTime": "2025-02-24 13:29:28", + "updatedBy": null, + "updatedTime": "2025-12-23 10:11:00", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.147.51", + "manageUrl": "http:\\\\10.18.147.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077752", + "createdBy": "2", + "createdTime": "2025-02-24 13:29:48", + "updatedBy": null, + "updatedTime": "2025-12-23 10:10:54", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.147.52", + "manageUrl": "http:\\\\10.18.147.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589885986847077577", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1010090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.147.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.84\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"115 days, 10:39:39.08\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10535248\",\"inErrors\":\"710\",\"inNUcastPkts\":\"28226273\",\"inOctets\":\"1425765533\",\"inUcastPkts\":\"1068382536\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"106 days, 10:44:05.25\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:f6:8c:c8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2409272438\",\"outQLen\":\"0\",\"outUcastPkts\":\"3603445525\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.147.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589885986847077572", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 13:28:05", + "echoMap": {}, + "deviceId": "1010050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.147.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061000000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.147.22;10.18.147.23" + }, + { + "id": "589885986847077573", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1010050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.147.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061000000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26095140\",\"inErrors\":\"0\",\"inNUcastPkts\":\"45688692\",\"inOctets\":\"909850894\",\"inUcastPkts\":\"3604768502\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:13:99\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1880767047\",\"outQLen\":\"0\",\"outUcastPkts\":\"1332988686\",\"specific\":\"0.0\",\"speed\":\"1100000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3290\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3260\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.147.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:45\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":960490281,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14722\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.147.22" + }, + { + "id": "589885986847077574", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1010050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.147.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061000000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26093490\",\"inErrors\":\"0\",\"inNUcastPkts\":\"57912226\",\"inOctets\":\"1331719495\",\"inUcastPkts\":\"2488357813\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:34:35\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2201491538\",\"outQLen\":\"0\",\"outUcastPkts\":\"3026825145\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.147.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:46\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":960502727,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14723\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"65\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.147.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589885986847077578", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1010030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8544300\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"476506651\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8544305\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:7b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25100002,\"status\":1,\"voltage\":26.276001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.276001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.276001},{\"current\":0.23200001,\"status\":1,\"voltage\":26.276001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.276001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.276001},{\"current\":0.224,\"status\":1,\"voltage\":26.276001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.276001},{\"current\":0.23400001,\"status\":1,\"voltage\":26.276001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.230001},{\"current\":0.003,\"status\":1,\"voltage\":26.230001},{\"current\":0.001,\"status\":1,\"voltage\":26.230001},{\"current\":0.001,\"status\":1,\"voltage\":26.230001},{\"current\":0.001,\"status\":1,\"voltage\":26.230001},{\"current\":0.001,\"status\":1,\"voltage\":26.230001},{\"current\":0.001,\"status\":1,\"voltage\":26.230001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301082\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077579", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1010030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9323983\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"520284884\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"135 days, 6:03:14.60\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9323988\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:f7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26700002,\"status\":1,\"voltage\":26.191002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.191002},{\"current\":0.245,\"status\":1,\"voltage\":26.191002},{\"current\":0.27,\"status\":1,\"voltage\":26.191002},{\"current\":0.27800003,\"status\":1,\"voltage\":26.191002},{\"current\":0.231,\"status\":1,\"voltage\":26.191002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.191002},{\"current\":0.001,\"status\":1,\"voltage\":26.191002},{\"current\":0.001,\"status\":1,\"voltage\":26.191002},{\"current\":0.001,\"status\":1,\"voltage\":26.208002},{\"current\":0.002,\"status\":1,\"voltage\":26.208002},{\"current\":0.001,\"status\":1,\"voltage\":26.208002},{\"current\":0.001,\"status\":1,\"voltage\":26.208002},{\"current\":0.001,\"status\":1,\"voltage\":26.208002},{\"current\":0.0,\"status\":1,\"voltage\":26.208002},{\"current\":0.0,\"status\":1,\"voltage\":26.208002}],\"fanSpeeds\":[1560,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301527\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077580", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1010030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8543069\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"475830604\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8543074\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:57\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.48200002,\"status\":1,\"voltage\":26.455002},{\"current\":0.35500002,\"status\":1,\"voltage\":26.455002},{\"current\":0.277,\"status\":1,\"voltage\":26.455002},{\"current\":0.36400002,\"status\":1,\"voltage\":26.455002},{\"current\":0.27,\"status\":1,\"voltage\":26.455002},{\"current\":0.26700002,\"status\":1,\"voltage\":26.455002},{\"current\":0.34,\"status\":1,\"voltage\":26.455002},{\"current\":0.0,\"status\":1,\"voltage\":26.455002},{\"current\":0.0,\"status\":1,\"voltage\":26.455002},{\"current\":0.0,\"status\":1,\"voltage\":25.782001},{\"current\":0.003,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":25.782001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302903\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077581", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1010030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8542876\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"476426666\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8542881\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:f8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.252,\"status\":1,\"voltage\":25.970001},{\"current\":0.24400002,\"status\":1,\"voltage\":25.970001},{\"current\":0.522,\"status\":1,\"voltage\":25.970001},{\"current\":0.24000001,\"status\":1,\"voltage\":25.970001},{\"current\":0.23600002,\"status\":1,\"voltage\":25.970001},{\"current\":0.22700001,\"status\":1,\"voltage\":25.970001},{\"current\":0.42400002,\"status\":1,\"voltage\":25.970001},{\"current\":0.286,\"status\":1,\"voltage\":25.970001},{\"current\":0.326,\"status\":1,\"voltage\":25.970001},{\"current\":0.333,\"status\":1,\"voltage\":26.202002},{\"current\":0.003,\"status\":1,\"voltage\":26.202002},{\"current\":0.31800002,\"status\":1,\"voltage\":26.202002},{\"current\":0.001,\"status\":1,\"voltage\":26.202002},{\"current\":0.001,\"status\":1,\"voltage\":26.202002},{\"current\":0.001,\"status\":1,\"voltage\":26.202002},{\"current\":0.001,\"status\":1,\"voltage\":26.202002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301016\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077582", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1010030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8541001\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"476321137\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8541006\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:21:e3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.53300005,\"status\":1,\"voltage\":26.279001},{\"current\":0.27400002,\"status\":1,\"voltage\":26.279001},{\"current\":0.36,\"status\":1,\"voltage\":26.279001},{\"current\":0.546,\"status\":1,\"voltage\":26.279001},{\"current\":0.36900002,\"status\":1,\"voltage\":26.279001},{\"current\":0.28500003,\"status\":1,\"voltage\":26.279001},{\"current\":0.28800002,\"status\":1,\"voltage\":26.279001},{\"current\":0.0,\"status\":1,\"voltage\":26.279001},{\"current\":0.0,\"status\":1,\"voltage\":26.279001},{\"current\":0.0,\"status\":1,\"voltage\":25.843},{\"current\":0.003,\"status\":1,\"voltage\":25.843},{\"current\":0.001,\"status\":1,\"voltage\":25.843},{\"current\":0.001,\"status\":1,\"voltage\":25.843},{\"current\":0.001,\"status\":1,\"voltage\":25.843},{\"current\":0.001,\"status\":1,\"voltage\":25.843},{\"current\":0.001,\"status\":1,\"voltage\":25.843}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300674\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077583", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1010030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8541861\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"476371362\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8541866\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:21:df\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.354,\"status\":1,\"voltage\":25.937002},{\"current\":0.55300003,\"status\":1,\"voltage\":25.937002},{\"current\":0.26700002,\"status\":1,\"voltage\":25.937002},{\"current\":0.275,\"status\":1,\"voltage\":25.937002},{\"current\":0.001,\"status\":1,\"voltage\":25.937002},{\"current\":0.001,\"status\":1,\"voltage\":25.937002},{\"current\":0.001,\"status\":1,\"voltage\":25.937002},{\"current\":0.001,\"status\":1,\"voltage\":25.937002},{\"current\":0.001,\"status\":1,\"voltage\":25.937002},{\"current\":0.001,\"status\":1,\"voltage\":25.904001},{\"current\":0.003,\"status\":1,\"voltage\":25.904001},{\"current\":0.001,\"status\":1,\"voltage\":25.904001},{\"current\":0.001,\"status\":1,\"voltage\":25.904001},{\"current\":0.001,\"status\":1,\"voltage\":25.904001},{\"current\":0.001,\"status\":1,\"voltage\":25.904001},{\"current\":0.001,\"status\":1,\"voltage\":25.904001}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300670\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077584", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1010030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8541591\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"475748434\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8541596\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:8b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.342,\"status\":1,\"voltage\":26.560001},{\"current\":0.29200003,\"status\":1,\"voltage\":26.560001},{\"current\":0.321,\"status\":1,\"voltage\":26.560001},{\"current\":0.273,\"status\":1,\"voltage\":26.560001},{\"current\":0.319,\"status\":1,\"voltage\":26.560001},{\"current\":0.001,\"status\":1,\"voltage\":26.560001},{\"current\":0.001,\"status\":1,\"voltage\":26.560001},{\"current\":0.001,\"status\":1,\"voltage\":26.560001},{\"current\":0.001,\"status\":1,\"voltage\":26.560001},{\"current\":0.001,\"status\":1,\"voltage\":25.912},{\"current\":0.003,\"status\":1,\"voltage\":25.912},{\"current\":0.001,\"status\":1,\"voltage\":25.912},{\"current\":0.001,\"status\":1,\"voltage\":25.912},{\"current\":0.001,\"status\":1,\"voltage\":25.912},{\"current\":0.001,\"status\":1,\"voltage\":25.912},{\"current\":0.001,\"status\":1,\"voltage\":25.912}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302955\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077585", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1010030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8541387\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"475735621\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8541392\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:77\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.43800002,\"status\":1,\"voltage\":26.398},{\"current\":0.001,\"status\":1,\"voltage\":26.398},{\"current\":0.342,\"status\":1,\"voltage\":26.398},{\"current\":0.33900002,\"status\":1,\"voltage\":26.398},{\"current\":0.53900003,\"status\":1,\"voltage\":26.398},{\"current\":0.33400002,\"status\":1,\"voltage\":26.398},{\"current\":0.001,\"status\":1,\"voltage\":26.398},{\"current\":0.001,\"status\":1,\"voltage\":26.398},{\"current\":0.001,\"status\":1,\"voltage\":26.398},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.003,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95},{\"current\":0.001,\"status\":1,\"voltage\":25.95}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302935\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077586", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1010030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8540756\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"475703050\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8540761\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:7d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.623001},{\"current\":0.29900002,\"status\":1,\"voltage\":26.623001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.623001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.623001},{\"current\":0.545,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.003,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002},{\"current\":0.001,\"status\":1,\"voltage\":26.299002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302108\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077587", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1010030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8538311\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"476171506\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8538316\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:58\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.35700002,\"status\":1,\"voltage\":26.043001},{\"current\":0.34600002,\"status\":1,\"voltage\":26.043001},{\"current\":0.37800002,\"status\":1,\"voltage\":26.043001},{\"current\":0.35000002,\"status\":1,\"voltage\":26.043001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.043001},{\"current\":0.252,\"status\":1,\"voltage\":26.043001},{\"current\":0.544,\"status\":1,\"voltage\":26.043001},{\"current\":0.24700001,\"status\":1,\"voltage\":26.043001},{\"current\":0.001,\"status\":1,\"voltage\":26.043001},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.002,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.001,\"status\":1,\"voltage\":26.058},{\"current\":0.0,\"status\":1,\"voltage\":26.058},{\"current\":0.0,\"status\":1,\"voltage\":26.058}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302392\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077588", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1010030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9306864\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"518662078\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"134 days, 18:34:12.19\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9306869\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:02\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23500001,\"status\":1,\"voltage\":26.61},{\"current\":0.001,\"status\":1,\"voltage\":26.61},{\"current\":0.29200003,\"status\":1,\"voltage\":26.61},{\"current\":0.54200006,\"status\":1,\"voltage\":26.61},{\"current\":0.25300002,\"status\":1,\"voltage\":26.61},{\"current\":0.245,\"status\":1,\"voltage\":26.61},{\"current\":0.36200002,\"status\":1,\"voltage\":26.61},{\"current\":0.282,\"status\":1,\"voltage\":26.61},{\"current\":0.001,\"status\":1,\"voltage\":26.61},{\"current\":0.001,\"status\":1,\"voltage\":26.651001},{\"current\":0.002,\"status\":1,\"voltage\":26.651001},{\"current\":0.001,\"status\":1,\"voltage\":26.651001},{\"current\":0.001,\"status\":1,\"voltage\":26.651001},{\"current\":0.001,\"status\":1,\"voltage\":26.651001},{\"current\":0.0,\"status\":1,\"voltage\":26.651001},{\"current\":0.0,\"status\":1,\"voltage\":26.651001}],\"fanSpeeds\":[1260,1230],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208303074\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077589", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1010030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9270381\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"516615405\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"135 days, 6:27:55.62\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9270386\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:2e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25,\"status\":1,\"voltage\":26.851002},{\"current\":0.26700002,\"status\":1,\"voltage\":26.851002},{\"current\":0.272,\"status\":1,\"voltage\":26.851002},{\"current\":0.531,\"status\":1,\"voltage\":26.851002},{\"current\":0.266,\"status\":1,\"voltage\":26.851002},{\"current\":0.0,\"status\":1,\"voltage\":26.851002},{\"current\":0.0,\"status\":1,\"voltage\":26.851002},{\"current\":0.0,\"status\":1,\"voltage\":26.851002},{\"current\":0.0,\"status\":1,\"voltage\":26.851002},{\"current\":0.0,\"status\":1,\"voltage\":25.924002},{\"current\":0.003,\"status\":1,\"voltage\":25.924002},{\"current\":0.001,\"status\":1,\"voltage\":25.924002},{\"current\":0.001,\"status\":1,\"voltage\":25.924002},{\"current\":0.001,\"status\":1,\"voltage\":25.924002},{\"current\":0.001,\"status\":1,\"voltage\":25.924002},{\"current\":0.0,\"status\":1,\"voltage\":25.924002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208303374\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077590", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1010030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9234975\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"514631857\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"135 days, 4:41:46.23\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9234980\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:18\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26000002,\"status\":1,\"voltage\":26.273},{\"current\":0.25100002,\"status\":1,\"voltage\":26.273},{\"current\":0.53400004,\"status\":1,\"voltage\":26.273},{\"current\":0.25300002,\"status\":1,\"voltage\":26.273},{\"current\":0.518,\"status\":1,\"voltage\":26.273},{\"current\":0.25100002,\"status\":1,\"voltage\":26.273},{\"current\":0.264,\"status\":1,\"voltage\":26.273},{\"current\":0.256,\"status\":1,\"voltage\":26.273},{\"current\":0.001,\"status\":1,\"voltage\":26.273},{\"current\":0.001,\"status\":1,\"voltage\":25.749},{\"current\":0.003,\"status\":1,\"voltage\":25.749},{\"current\":0.001,\"status\":1,\"voltage\":25.749},{\"current\":0.001,\"status\":1,\"voltage\":25.749},{\"current\":0.001,\"status\":1,\"voltage\":25.749},{\"current\":0.001,\"status\":1,\"voltage\":25.749},{\"current\":0.0,\"status\":1,\"voltage\":25.749}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302007\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077591", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1010030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9217035\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"514280198\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"135 days, 3:18:15.55\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9217040\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:0b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28300002,\"status\":1,\"voltage\":26.470001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.470001},{\"current\":0.259,\"status\":1,\"voltage\":26.470001},{\"current\":0.321,\"status\":1,\"voltage\":26.470001},{\"current\":0.257,\"status\":1,\"voltage\":26.470001},{\"current\":0.264,\"status\":1,\"voltage\":26.470001},{\"current\":0.26500002,\"status\":1,\"voltage\":26.470001},{\"current\":0.001,\"status\":1,\"voltage\":26.470001},{\"current\":0.001,\"status\":1,\"voltage\":26.470001},{\"current\":0.001,\"status\":1,\"voltage\":26.288002},{\"current\":0.003,\"status\":1,\"voltage\":26.288002},{\"current\":0.001,\"status\":1,\"voltage\":26.288002},{\"current\":0.001,\"status\":1,\"voltage\":26.288002},{\"current\":0.001,\"status\":1,\"voltage\":26.288002},{\"current\":0.001,\"status\":1,\"voltage\":26.288002},{\"current\":0.001,\"status\":1,\"voltage\":26.288002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300779\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077592", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1010030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3038365\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"167150352\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1:04:01.73\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3038370\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:bf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.368002},{\"current\":0.001,\"status\":1,\"voltage\":26.368002},{\"current\":0.55300003,\"status\":1,\"voltage\":26.368002},{\"current\":0.001,\"status\":1,\"voltage\":26.368002},{\"current\":0.0,\"status\":1,\"voltage\":26.368002},{\"current\":0.0,\"status\":1,\"voltage\":26.368002},{\"current\":0.0,\"status\":1,\"voltage\":26.368002},{\"current\":0.0,\"status\":1,\"voltage\":26.368002},{\"current\":0.0,\"status\":1,\"voltage\":26.368002},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304931\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077593", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1010030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.148.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3038202\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"167140618\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3038207\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:48\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.69},{\"current\":0.001,\"status\":1,\"voltage\":26.69},{\"current\":0.558,\"status\":1,\"voltage\":26.69},{\"current\":0.001,\"status\":1,\"voltage\":26.69},{\"current\":0.0,\"status\":1,\"voltage\":26.69},{\"current\":0.0,\"status\":1,\"voltage\":26.69},{\"current\":0.0,\"status\":1,\"voltage\":26.69},{\"current\":0.0,\"status\":1,\"voltage\":26.69},{\"current\":0.0,\"status\":1,\"voltage\":26.69},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304927\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589885986847077594", + "createdBy": "2", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:17", + "echoMap": {}, + "deviceId": "1010040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.147.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif147\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"55\",\"lastChange\":\"0:03:03.89\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:80:ca:fd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"38\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.147.64\",\"index\":\"55\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1448\",\"0\",\"0\",\"0\",\"0\",\"0\",\"396770\",\"3943\",\"562029\",\"268\",\"1501\",\"1504\",\"0\",\"0\",\"1907\",\"0\",\"139766609\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:17\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.60\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40229,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":493,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35953,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":785,\"opticalVoltage\":3287,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37470,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":563,\"opticalVoltage\":3303,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33959,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":563,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41400,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":506,\"opticalVoltage\":3273,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34816,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":487,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37631,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":477,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34500,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3309,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3304,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":619,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35583,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":558,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36096,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":487,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42240,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":475,\"opticalVoltage\":3293,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35840,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":542,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42751,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":476,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36930,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":562,\"opticalVoltage\":3357,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35549,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":562,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36096,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":580,\"opticalVoltage\":3361,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44287,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":473,\"opticalVoltage\":3377,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":381294915,\"inFlow\":0,\"lastChangeTime\":\"426 days, 14:35:44.72\",\"lastInBytes\":381294915,\"lastOutBytes\":2299026064,\"opticalBiasCurrent\":37049,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":562,\"opticalVoltage\":3367,\"outBytes\":2299026064,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":2165969559,\"inFlow\":0,\"lastChangeTime\":\"359 days, 8:15:55.97\",\"lastInBytes\":2165969559,\"lastOutBytes\":3628173311,\"opticalBiasCurrent\":37888,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":470,\"opticalVoltage\":3379,\"outBytes\":3628173311,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":5819763,\"inBytes\":551297392,\"inFlow\":107682,\"lastChangeTime\":\"66 days, 9:52:40.19\",\"lastInBytes\":551297392,\"lastOutBytes\":137440705,\"opticalBiasCurrent\":37119,\"opticalReceivePower\":15,\"opticalTemperature\":47,\"opticalTransmitPower\":487,\"opticalVoltage\":3377,\"outBytes\":137440705,\"outFlow\":5712080,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":2269545148,\"inFlow\":0,\"lastChangeTime\":\"95 days, 11:20:31.46\",\"lastInBytes\":2269545148,\"lastOutBytes\":2408950208,\"opticalBiasCurrent\":38144,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":485,\"opticalVoltage\":3364,\"outBytes\":2408950208,\"outFlow\":0,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":2},{\"flow\":2890476,\"inBytes\":466731819,\"inFlow\":2799399,\"lastChangeTime\":\"327 days, 12:49:04.76\",\"lastInBytes\":466731819,\"lastOutBytes\":943018426,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":82,\"opticalTemperature\":47,\"opticalTransmitPower\":243,\"opticalVoltage\":3342,\"outBytes\":943018426,\"outFlow\":91077,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2259349,\"inBytes\":2392700572,\"inFlow\":2187914,\"lastChangeTime\":\"29 days, 8:26:47.66\",\"lastInBytes\":2392700572,\"lastOutBytes\":2402460823,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":287,\"opticalTemperature\":44,\"opticalTransmitPower\":238,\"opticalVoltage\":3390,\"outBytes\":2402460823,\"outFlow\":71435,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3556123,\"inBytes\":2815875104,\"inFlow\":3452160,\"lastChangeTime\":\"327 days, 12:05:31.93\",\"lastInBytes\":2815875104,\"lastOutBytes\":2211489669,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":214,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3400,\"outBytes\":2211489669,\"outFlow\":103963,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5903343,\"inBytes\":3998762707,\"inFlow\":5723966,\"lastChangeTime\":\"403 days, 0:15:47.66\",\"lastInBytes\":3998762707,\"lastOutBytes\":2471139306,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":261,\"opticalTemperature\":47,\"opticalTransmitPower\":240,\"opticalVoltage\":3350,\"outBytes\":2471139306,\"outFlow\":179376,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4496376,\"inBytes\":635997306,\"inFlow\":4356436,\"lastChangeTime\":\"327 days, 13:53:11.23\",\"lastInBytes\":635997306,\"lastOutBytes\":1649058367,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":145,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":1649058367,\"outFlow\":139940,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2488287,\"inBytes\":3025949865,\"inFlow\":2412351,\"lastChangeTime\":\"327 days, 13:25:02.96\",\"lastInBytes\":3025949865,\"lastOutBytes\":2882011442,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":141,\"opticalTemperature\":47,\"opticalTransmitPower\":230,\"opticalVoltage\":3342,\"outBytes\":2882011442,\"outFlow\":75936,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4029383,\"inBytes\":585890814,\"inFlow\":3912021,\"lastChangeTime\":\"359 days, 9:36:39.30\",\"lastInBytes\":585890814,\"lastOutBytes\":4220184303,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":117,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":4220184303,\"outFlow\":117361,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2758705,\"inBytes\":3945382961,\"inFlow\":2672783,\"lastChangeTime\":\"327 days, 13:11:34.83\",\"lastInBytes\":3945382961,\"lastOutBytes\":80305806,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":137,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":80305806,\"outFlow\":85922,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2508975,\"inBytes\":3894735340,\"inFlow\":2430273,\"lastChangeTime\":\"327 days, 12:51:26.05\",\"lastInBytes\":3894735340,\"lastOutBytes\":3450275379,\"opticalBiasCurrent\":18576,\"opticalReceivePower\":128,\"opticalTemperature\":50,\"opticalTransmitPower\":243,\"opticalVoltage\":3350,\"outBytes\":3450275379,\"outFlow\":78702,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3641491,\"inBytes\":3317248316,\"inFlow\":3535145,\"lastChangeTime\":\"327 days, 12:40:37.10\",\"lastInBytes\":3317248316,\"lastOutBytes\":2780858144,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":149,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":2780858144,\"outFlow\":106346,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4017070,\"inBytes\":1944949563,\"inFlow\":3890989,\"lastChangeTime\":\"29 days, 8:26:47.13\",\"lastInBytes\":1944949563,\"lastOutBytes\":2224618874,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":206,\"opticalTemperature\":46,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":2224618874,\"outFlow\":126081,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4235037,\"inBytes\":1912149175,\"inFlow\":4102234,\"lastChangeTime\":\"29 days, 8:26:49.25\",\"lastInBytes\":1912149175,\"lastOutBytes\":237740444,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":154,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":237740444,\"outFlow\":132802,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6557482,\"inBytes\":2482503835,\"inFlow\":6353801,\"lastChangeTime\":\"29 days, 8:26:55.08\",\"lastInBytes\":2482503835,\"lastOutBytes\":1464698490,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":270,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3362,\"outBytes\":1464698490,\"outFlow\":203680,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6479955,\"inBytes\":3802559116,\"inFlow\":6276186,\"lastChangeTime\":\"29 days, 8:26:45.06\",\"lastInBytes\":3802559116,\"lastOutBytes\":1717937336,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":73,\"opticalTemperature\":41,\"opticalTransmitPower\":238,\"opticalVoltage\":3326,\"outBytes\":1717937336,\"outFlow\":203768,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":376574,\"inBytes\":881800772,\"inFlow\":364467,\"lastChangeTime\":\"220 days, 8:50:47.94\",\"lastInBytes\":881800772,\"lastOutBytes\":1892975429,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":106,\"opticalTemperature\":45,\"opticalTransmitPower\":239,\"opticalVoltage\":3354,\"outBytes\":1892975429,\"outFlow\":12107,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":377220,\"inBytes\":213852842,\"inFlow\":365048,\"lastChangeTime\":\"428 days, 9:51:48.75\",\"lastInBytes\":213852842,\"lastOutBytes\":1904019237,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":7,\"opticalTemperature\":41,\"opticalTransmitPower\":239,\"opticalVoltage\":3338,\"outBytes\":1904019237,\"outFlow\":12172,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":822963487,\"inFlow\":0,\"lastChangeTime\":\"166 days, 22:31:31.39\",\"lastInBytes\":822963487,\"lastOutBytes\":3165285239,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3328,\"outBytes\":3165285239,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":245,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":243,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":239,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":241,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":17127,\"inBytes\":1524037101,\"inFlow\":8048,\"lastChangeTime\":\"0:03:05.97\",\"lastInBytes\":1524037101,\"lastOutBytes\":531414247,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":531414247,\"outFlow\":9079,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":32874730,\"inBytes\":2619545488,\"inFlow\":14936651,\"lastChangeTime\":\"106 days, 10:48:52.60\",\"lastInBytes\":2619545488,\"lastOutBytes\":389217067,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":389217067,\"outFlow\":17938079,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":30211,\"inBytes\":3738377513,\"inFlow\":15293,\"lastChangeTime\":\"0:03:04.89\",\"lastInBytes\":3738377513,\"lastOutBytes\":756367203,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":756367203,\"outFlow\":14917,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":314,\"inBytes\":617411780,\"inFlow\":7,\"lastChangeTime\":\"210 days, 9:58:58.83\",\"lastInBytes\":617411780,\"lastOutBytes\":547397144,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":547397144,\"outFlow\":307,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5524904,\"inBytes\":1679025944,\"inFlow\":57197,\"lastChangeTime\":\"108 days, 22:07:06.14\",\"lastInBytes\":1679025944,\"lastOutBytes\":926953448,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":926953448,\"outFlow\":5467706,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":17608311,\"inBytes\":3522806511,\"inFlow\":987614,\"lastChangeTime\":\"0:03:04.97\",\"lastInBytes\":3522806511,\"lastOutBytes\":1286475555,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1286475555,\"outFlow\":16620696,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":376,\"inBytes\":1716917426,\"inFlow\":75,\"lastChangeTime\":\"8 days, 2:16:15.89\",\"lastInBytes\":1716917426,\"lastOutBytes\":2625430257,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2625430257,\"outFlow\":301,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":18131323,\"inBytes\":620928553,\"inFlow\":324399,\"lastChangeTime\":\"0:03:05.15\",\"lastInBytes\":620928553,\"lastOutBytes\":3177002620,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3177002620,\"outFlow\":17806923,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":702073,\"inBytes\":841577670,\"inFlow\":336676,\"lastChangeTime\":\"0:03:05.18\",\"lastInBytes\":841577670,\"lastOutBytes\":840596577,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":840596577,\"outFlow\":365397,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":795,\"inBytes\":2423243448,\"inFlow\":203,\"lastChangeTime\":\"97 days, 5:05:55.40\",\"lastInBytes\":2423243448,\"lastOutBytes\":2363844009,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2363844009,\"outFlow\":592,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":532,\"inBytes\":1444148073,\"inFlow\":137,\"lastChangeTime\":\"97 days, 5:05:54.97\",\"lastInBytes\":1444148073,\"lastOutBytes\":30259724,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":30259724,\"outFlow\":394,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":359601,\"inBytes\":2713350777,\"inFlow\":2506,\"lastChangeTime\":\"114 days, 16:48:26.82\",\"lastInBytes\":2713350777,\"lastOutBytes\":2371397829,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2371397829,\"outFlow\":357094,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":315,\"inBytes\":500557984,\"inFlow\":7,\"lastChangeTime\":\"88 days, 6:00:23.94\",\"lastInBytes\":500557984,\"lastOutBytes\":91296379,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":91296379,\"outFlow\":307,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":532,\"inBytes\":1666536525,\"inFlow\":137,\"lastChangeTime\":\"486 days, 8:10:11.42\",\"lastInBytes\":1666536525,\"lastOutBytes\":1083787568,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1083787568,\"outFlow\":394,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":373,\"inBytes\":1798659181,\"inFlow\":53,\"lastChangeTime\":\"418 days, 22:27:53.21\",\"lastInBytes\":1798659181,\"lastOutBytes\":571479771,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":571479771,\"outFlow\":320,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5893710,\"inBytes\":1352228458,\"inFlow\":164696,\"lastChangeTime\":\"398 days, 11:02:43.72\",\"lastInBytes\":1352228458,\"lastOutBytes\":774251438,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":774251438,\"outFlow\":5729014,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5101918,\"inFlow\":0,\"lastChangeTime\":\"220 days, 9:01:05.63\",\"lastInBytes\":5101918,\"lastOutBytes\":142518548,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":142518548,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":35,\"inBytes\":60679921,\"inFlow\":17,\"lastChangeTime\":\"102 days, 21:29:26.22\",\"lastInBytes\":60679921,\"lastOutBytes\":149284640,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":149284640,\"outFlow\":18,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":109,\"inBytes\":115153790,\"inFlow\":95,\"lastChangeTime\":\"102 days, 21:29:44.87\",\"lastInBytes\":115153790,\"lastOutBytes\":27684191,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":27684191,\"outFlow\":14,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"166 days, 23:05:23.52\",\"lastInBytes\":0,\"lastOutBytes\":859379450,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":859379450,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.657660000\"}}", + "lastDiagTime": "2026-02-02 14:39:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077595", + "createdBy": "2", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1010040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89873\",\"inUnknownProtos\":\"350160720\",\"index\":\"634\",\"lastChange\":\"0:01:13.45\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:18:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2396933881\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"69398816\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":428316,\"inBytes\":1080159179,\"inFlow\":417968,\"lastChangeTime\":\"0:01:13.42\",\"lastInBytes\":1080159179,\"lastOutBytes\":3831067211,\"outBytes\":3831067211,\"outFlow\":10347,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":428145,\"inBytes\":4068391050,\"inFlow\":417638,\"lastChangeTime\":\"0:01:13.27\",\"lastInBytes\":4068391050,\"lastOutBytes\":4054704346,\"outBytes\":4054704346,\"outFlow\":10506,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":265619,\"inBytes\":4055262314,\"inFlow\":259075,\"lastChangeTime\":\"0:01:13.42\",\"lastInBytes\":4055262314,\"lastOutBytes\":776088968,\"outBytes\":776088968,\"outFlow\":6544,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":265725,\"inBytes\":3531258366,\"inFlow\":259099,\"lastChangeTime\":\"0:01:13.41\",\"lastInBytes\":3531258366,\"lastOutBytes\":3087195375,\"outBytes\":3087195375,\"outFlow\":6625,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":265514,\"inBytes\":440957779,\"inFlow\":258984,\"lastChangeTime\":\"0:01:13.44\",\"lastInBytes\":440957779,\"lastOutBytes\":845076108,\"outBytes\":845076108,\"outFlow\":6530,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":265654,\"inBytes\":3974147800,\"inFlow\":259029,\"lastChangeTime\":\"0:01:13.97\",\"lastInBytes\":3974147800,\"lastOutBytes\":350094498,\"outBytes\":350094498,\"outFlow\":6624,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":265778,\"inBytes\":838049158,\"inFlow\":259150,\"lastChangeTime\":\"0:09:59.02\",\"lastInBytes\":838049158,\"lastOutBytes\":1648663924,\"outBytes\":1648663924,\"outFlow\":6627,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":265505,\"inBytes\":127698911,\"inFlow\":258880,\"lastChangeTime\":\"0:15:31.17\",\"lastInBytes\":127698911,\"lastOutBytes\":728295975,\"outBytes\":728295975,\"outFlow\":6625,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":428844,\"inBytes\":2130753826,\"inFlow\":418409,\"lastChangeTime\":\"0:01:13.44\",\"lastInBytes\":2130753826,\"lastOutBytes\":1407545539,\"outBytes\":1407545539,\"outFlow\":10435,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":287440,\"inBytes\":269584848,\"inFlow\":280279,\"lastChangeTime\":\"68 days, 1:12:12.22\",\"lastInBytes\":269584848,\"lastOutBytes\":2465988101,\"outBytes\":2465988101,\"outFlow\":7160,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4061755,\"inFlow\":0,\"lastChangeTime\":\"31 days, 20:48:17.93\",\"lastInBytes\":4061755,\"lastOutBytes\":172255088,\"outBytes\":172255088,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":884051230,\"inFlow\":2,\"lastChangeTime\":\"0:01:13.43\",\"lastInBytes\":884051230,\"lastOutBytes\":2908231277,\"outBytes\":2908231277,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3065988,\"inBytes\":2736722391,\"inFlow\":77737,\"lastChangeTime\":\"0:23:02.90\",\"lastInBytes\":2736722391,\"lastOutBytes\":3296560997,\"outBytes\":3296560997,\"outFlow\":2988251,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.600607000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077596", + "createdBy": "2", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"182529\",\"inUnknownProtos\":\"4025634708\",\"index\":\"635\",\"lastChange\":\"0:01:19.44\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:32:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1597033127\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":428135,\"inBytes\":681858118,\"inFlow\":417783,\"lastChangeTime\":\"137 days, 16:29:46.46\",\"lastInBytes\":681858118,\"lastOutBytes\":3070980936,\"outBytes\":3070980936,\"outFlow\":10352,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":286064,\"inBytes\":3152731691,\"inFlow\":278959,\"lastChangeTime\":\"137 days, 16:29:49.15\",\"lastInBytes\":3152731691,\"lastOutBytes\":2240020769,\"outBytes\":2240020769,\"outFlow\":7105,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":428356,\"inBytes\":3089751377,\"inFlow\":417821,\"lastChangeTime\":\"137 days, 16:29:53.32\",\"lastInBytes\":3089751377,\"lastOutBytes\":2337690154,\"outBytes\":2337690154,\"outFlow\":10534,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":428242,\"inBytes\":1415303543,\"inFlow\":417863,\"lastChangeTime\":\"137 days, 16:29:56.94\",\"lastInBytes\":1415303543,\"lastOutBytes\":712283601,\"outBytes\":712283601,\"outFlow\":10379,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":428230,\"inBytes\":3730481337,\"inFlow\":417865,\"lastChangeTime\":\"137 days, 16:30:00.83\",\"lastInBytes\":3730481337,\"lastOutBytes\":2471756689,\"outBytes\":2471756689,\"outFlow\":10365,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":286243,\"inBytes\":3248774490,\"inFlow\":279038,\"lastChangeTime\":\"68 days, 8:09:34.30\",\"lastInBytes\":3248774490,\"lastOutBytes\":4025634708,\"outBytes\":4025634708,\"outFlow\":7205,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":286382,\"inBytes\":798787559,\"inFlow\":279175,\"lastChangeTime\":\"150 days, 1:52:11.89\",\"lastInBytes\":798787559,\"lastOutBytes\":3981723254,\"outBytes\":3981723254,\"outFlow\":7206,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":965557129,\"inFlow\":2,\"lastChangeTime\":\"137 days, 16:30:08.34\",\"lastInBytes\":965557129,\"lastOutBytes\":829304109,\"outBytes\":829304109,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2581893,\"inBytes\":3819268720,\"inFlow\":65678,\"lastChangeTime\":\"0:01:19.44\",\"lastInBytes\":3819268720,\"lastOutBytes\":4112606034,\"outBytes\":4112606034,\"outFlow\":2516215,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.457130000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077597", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89041\",\"inUnknownProtos\":\"869702050\",\"index\":\"635\",\"lastChange\":\"0:01:17.31\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:1e:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3504961730\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":518300,\"inBytes\":3759334397,\"inFlow\":507416,\"lastChangeTime\":\"0:01:19.71\",\"lastInBytes\":3759334397,\"lastOutBytes\":1150873186,\"outBytes\":1150873186,\"outFlow\":10883,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":655005,\"inBytes\":866108951,\"inFlow\":640983,\"lastChangeTime\":\"0:01:19.72\",\"lastInBytes\":866108951,\"lastOutBytes\":2294434973,\"outBytes\":2294434973,\"outFlow\":14022,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428377,\"inBytes\":1778477787,\"inFlow\":418065,\"lastChangeTime\":\"0:01:18.96\",\"lastInBytes\":1778477787,\"lastOutBytes\":3284718146,\"outBytes\":3284718146,\"outFlow\":10312,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1037423,\"inBytes\":672898664,\"inFlow\":1014718,\"lastChangeTime\":\"0:01:19.71\",\"lastInBytes\":672898664,\"lastOutBytes\":2380428789,\"outBytes\":2380428789,\"outFlow\":22704,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428262,\"inBytes\":2316136641,\"inFlow\":417918,\"lastChangeTime\":\"208 days, 11:54:20.48\",\"lastInBytes\":2316136641,\"lastOutBytes\":2049885935,\"outBytes\":2049885935,\"outFlow\":10343,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":428334,\"inBytes\":1610968947,\"inFlow\":417966,\"lastChangeTime\":\"208 days, 11:54:18.63\",\"lastInBytes\":1610968947,\"lastOutBytes\":869702050,\"outBytes\":869702050,\"outFlow\":10368,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":543919,\"inBytes\":2754795183,\"inFlow\":531100,\"lastChangeTime\":\"0:01:19.61\",\"lastInBytes\":2754795183,\"lastOutBytes\":3762452571,\"outBytes\":3762452571,\"outFlow\":12819,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":106289,\"inFlow\":0,\"lastChangeTime\":\"1:26:22.32\",\"lastInBytes\":106289,\"lastOutBytes\":3847433,\"outBytes\":3847433,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":883312975,\"inFlow\":2,\"lastChangeTime\":\"0:01:18.96\",\"lastInBytes\":883312975,\"lastOutBytes\":2913679678,\"outBytes\":2913679678,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4067460,\"inBytes\":1869234162,\"inFlow\":95871,\"lastChangeTime\":\"0:01:17.30\",\"lastInBytes\":1869234162,\"lastOutBytes\":3059795560,\"outBytes\":3059795560,\"outFlow\":3971589,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.517131000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077598", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1010040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89941\",\"inUnknownProtos\":\"2523804653\",\"index\":\"635\",\"lastChange\":\"0:01:21.66\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:18:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3457812597\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"69438891\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":397557,\"inBytes\":579454171,\"inFlow\":387909,\"lastChangeTime\":\"208 days, 12:06:35.42\",\"lastInBytes\":579454171,\"lastOutBytes\":143045317,\"outBytes\":143045317,\"outFlow\":9648,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":399385,\"inBytes\":820165945,\"inFlow\":389653,\"lastChangeTime\":\"208 days, 12:06:30.26\",\"lastInBytes\":820165945,\"lastOutBytes\":2079274890,\"outBytes\":2079274890,\"outFlow\":9732,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1064523,\"inBytes\":3252896262,\"inFlow\":1039741,\"lastChangeTime\":\"140 days, 6:56:25.86\",\"lastInBytes\":3252896262,\"lastOutBytes\":1197315254,\"outBytes\":1197315254,\"outFlow\":24781,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":397932,\"inBytes\":1083848678,\"inFlow\":388255,\"lastChangeTime\":\"208 days, 12:06:35.57\",\"lastInBytes\":1083848678,\"lastOutBytes\":3641147453,\"outBytes\":3641147453,\"outFlow\":9676,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":399972,\"inBytes\":2674239667,\"inFlow\":390199,\"lastChangeTime\":\"0:01:24.26\",\"lastInBytes\":2674239667,\"lastOutBytes\":1230569927,\"outBytes\":1230569927,\"outFlow\":9773,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":264276,\"inBytes\":578244329,\"inFlow\":257629,\"lastChangeTime\":\"68 days, 1:46:11.15\",\"lastInBytes\":578244329,\"lastOutBytes\":2523804653,\"outBytes\":2523804653,\"outFlow\":6647,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":265763,\"inBytes\":3965712729,\"inFlow\":259129,\"lastChangeTime\":\"231 days, 2:04:06.83\",\"lastInBytes\":3965712729,\"lastOutBytes\":1457967237,\"outBytes\":1457967237,\"outFlow\":6633,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1072648,\"inBytes\":2941926493,\"inFlow\":1047059,\"lastChangeTime\":\"0:01:23.62\",\"lastInBytes\":2941926493,\"lastOutBytes\":2301886103,\"outBytes\":2301886103,\"outFlow\":25589,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":495855,\"inBytes\":221773343,\"inFlow\":485537,\"lastChangeTime\":\"0:01:24.27\",\"lastInBytes\":221773343,\"lastOutBytes\":1220546580,\"outBytes\":1220546580,\"outFlow\":10318,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":427238,\"inBytes\":918226971,\"inFlow\":418486,\"lastChangeTime\":\"0:01:24.28\",\"lastInBytes\":918226971,\"lastOutBytes\":2934097695,\"outBytes\":2934097695,\"outFlow\":8751,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1059362,\"inBytes\":2545758290,\"inFlow\":1034076,\"lastChangeTime\":\"208 days, 12:06:32.28\",\"lastInBytes\":2545758290,\"lastOutBytes\":3555085158,\"outBytes\":3555085158,\"outFlow\":25285,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":8198987,\"inFlow\":0,\"lastChangeTime\":\"1:29:58.64\",\"lastInBytes\":8198987,\"lastOutBytes\":377149415,\"outBytes\":377149415,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":363071,\"inFlow\":0,\"lastChangeTime\":\"87 days, 3:13:08.81\",\"lastInBytes\":363071,\"lastOutBytes\":33333406,\"outBytes\":33333406,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":81,\"inBytes\":883900625,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.61\",\"lastInBytes\":883900625,\"lastOutBytes\":2908668900,\"outBytes\":2908668900,\"outFlow\":79,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6762268,\"inBytes\":1527595894,\"inFlow\":165039,\"lastChangeTime\":\"75 days, 12:26:37.88\",\"lastInBytes\":1527595894,\"lastOutBytes\":2142777755,\"outBytes\":2142777755,\"outFlow\":6597228,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.601626000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077599", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88966\",\"inUnknownProtos\":\"3537864800\",\"index\":\"635\",\"lastChange\":\"0:01:18.76\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b5:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3848309377\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":921096,\"inBytes\":3076720903,\"inFlow\":899300,\"lastChangeTime\":\"140 days, 4:56:40.81\",\"lastInBytes\":3076720903,\"lastOutBytes\":1204698094,\"outBytes\":1204698094,\"outFlow\":21795,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":631034,\"inBytes\":3935724982,\"inFlow\":612801,\"lastChangeTime\":\"0:01:20.40\",\"lastInBytes\":3935724982,\"lastOutBytes\":2050641462,\"outBytes\":2050641462,\"outFlow\":18232,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":433376,\"inBytes\":993683373,\"inFlow\":423562,\"lastChangeTime\":\"0:01:21.03\",\"lastInBytes\":993683373,\"lastOutBytes\":3019188971,\"outBytes\":3019188971,\"outFlow\":9813,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1065202,\"inBytes\":3715606580,\"inFlow\":1040139,\"lastChangeTime\":\"140 days, 4:56:19.44\",\"lastInBytes\":3715606580,\"lastOutBytes\":4198064777,\"outBytes\":4198064777,\"outFlow\":25062,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":939027,\"inBytes\":1604489122,\"inFlow\":918014,\"lastChangeTime\":\"0:01:21.09\",\"lastInBytes\":1604489122,\"lastOutBytes\":2459622594,\"outBytes\":2459622594,\"outFlow\":21012,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":397866,\"inBytes\":135711770,\"inFlow\":388178,\"lastChangeTime\":\"0:01:20.40\",\"lastInBytes\":135711770,\"lastOutBytes\":3537766364,\"outBytes\":3537766364,\"outFlow\":9688,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":397424,\"inBytes\":818452187,\"inFlow\":387730,\"lastChangeTime\":\"0:01:20.39\",\"lastInBytes\":818452187,\"lastOutBytes\":4099370093,\"outBytes\":4099370093,\"outFlow\":9693,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":123361861,\"inFlow\":0,\"lastChangeTime\":\"210 days, 17:58:05.28\",\"lastInBytes\":123361861,\"lastOutBytes\":47636614,\"outBytes\":47636614,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10312940,\"inBytes\":884163793,\"inFlow\":1,\"lastChangeTime\":\"210 days, 17:58:08.97\",\"lastInBytes\":884163793,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":10312939,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4809421,\"inBytes\":400155386,\"inFlow\":120903,\"lastChangeTime\":\"0:01:18.76\",\"lastInBytes\":400155386,\"lastOutBytes\":292870942,\"outBytes\":292870942,\"outFlow\":4688518,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.467631000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077600", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89070\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:16.28\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:18:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":767498,\"inBytes\":1845656803,\"inFlow\":750602,\"lastChangeTime\":\"0:01:18.63\",\"lastInBytes\":1845656803,\"lastOutBytes\":1643651464,\"outBytes\":1643651464,\"outFlow\":16896,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1060547,\"inBytes\":582707208,\"inFlow\":1035634,\"lastChangeTime\":\"140 days, 5:24:52.22\",\"lastInBytes\":582707208,\"lastOutBytes\":2905418482,\"outBytes\":2905418482,\"outFlow\":24912,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":397531,\"inBytes\":3383091692,\"inFlow\":387834,\"lastChangeTime\":\"0:01:18.09\",\"lastInBytes\":3383091692,\"lastOutBytes\":1738470657,\"outBytes\":1738470657,\"outFlow\":9696,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":396966,\"inBytes\":3092076919,\"inFlow\":387273,\"lastChangeTime\":\"0:01:18.10\",\"lastInBytes\":3092076919,\"lastOutBytes\":2445627227,\"outBytes\":2445627227,\"outFlow\":9693,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":883794907,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.11\",\"lastInBytes\":883794907,\"lastOutBytes\":2914726056,\"outBytes\":2914726056,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2632330,\"inBytes\":450043774,\"inFlow\":64410,\"lastChangeTime\":\"0:01:16.27\",\"lastInBytes\":450043774,\"lastOutBytes\":1299741342,\"outBytes\":1299741342,\"outFlow\":2567920,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.68\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:50.470296000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077601", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"88979\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:14.34\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:0f:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":892183,\"inBytes\":642313358,\"inFlow\":875021,\"lastChangeTime\":\"0:01:16.66\",\"lastInBytes\":642313358,\"lastOutBytes\":323419857,\"outBytes\":323419857,\"outFlow\":17162,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":397504,\"inBytes\":2443681995,\"inFlow\":387846,\"lastChangeTime\":\"0:01:16.10\",\"lastInBytes\":2443681995,\"lastOutBytes\":3980912335,\"outBytes\":3980912335,\"outFlow\":9657,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1464785,\"inBytes\":3711343666,\"inFlow\":1431124,\"lastChangeTime\":\"0:01:16.60\",\"lastInBytes\":3711343666,\"lastOutBytes\":1361754733,\"outBytes\":1361754733,\"outFlow\":33660,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1060572,\"inBytes\":4212357984,\"inFlow\":1035402,\"lastChangeTime\":\"208 days, 10:23:27.71\",\"lastInBytes\":4212357984,\"lastOutBytes\":3290636960,\"outBytes\":3290636960,\"outFlow\":25170,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":397275,\"inBytes\":1906073261,\"inFlow\":389091,\"lastChangeTime\":\"227 days, 23:36:30.99\",\"lastInBytes\":1906073261,\"lastOutBytes\":2104656338,\"outBytes\":2104656338,\"outFlow\":8184,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2104143,\"inFlow\":0,\"lastChangeTime\":\"227 days, 23:54:06.46\",\"lastInBytes\":2104143,\"lastOutBytes\":102507602,\"outBytes\":102507602,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":883160403,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.11\",\"lastInBytes\":883160403,\"lastOutBytes\":2915457369,\"outBytes\":2915457369,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4226651,\"inBytes\":3960015714,\"inFlow\":98740,\"lastChangeTime\":\"31 days, 20:02:41.03\",\"lastInBytes\":3960015714,\"lastOutBytes\":726627020,\"outBytes\":726627020,\"outFlow\":4127911,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.492476000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077602", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1010040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89025\",\"inUnknownProtos\":\"2313950009\",\"index\":\"635\",\"lastChange\":\"0:01:16.62\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:0b:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3524845909\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":287863,\"inBytes\":3590176746,\"inFlow\":280703,\"lastChangeTime\":\"210 days, 20:55:28.25\",\"lastInBytes\":3590176746,\"lastOutBytes\":4004033620,\"outBytes\":4004033620,\"outFlow\":7159,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":428306,\"inBytes\":1400515773,\"inFlow\":417913,\"lastChangeTime\":\"0:01:18.79\",\"lastInBytes\":1400515773,\"lastOutBytes\":1430960050,\"outBytes\":1430960050,\"outFlow\":10392,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":427990,\"inBytes\":2913756116,\"inFlow\":417572,\"lastChangeTime\":\"0:01:18.77\",\"lastInBytes\":2913756116,\"lastOutBytes\":2751386677,\"outBytes\":2751386677,\"outFlow\":10418,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":430507,\"inBytes\":2842746415,\"inFlow\":419970,\"lastChangeTime\":\"208 days, 10:48:08.34\",\"lastInBytes\":2842746415,\"lastOutBytes\":1248348749,\"outBytes\":1248348749,\"outFlow\":10537,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1139137,\"inBytes\":4217664027,\"inFlow\":1112500,\"lastChangeTime\":\"140 days, 5:37:58.45\",\"lastInBytes\":4217664027,\"lastOutBytes\":3653608846,\"outBytes\":3653608846,\"outFlow\":26637,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":427627,\"inBytes\":1367989392,\"inFlow\":417249,\"lastChangeTime\":\"208 days, 10:48:10.70\",\"lastInBytes\":1367989392,\"lastOutBytes\":2313950009,\"outBytes\":2313950009,\"outFlow\":10377,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":883138554,\"inFlow\":2,\"lastChangeTime\":\"0:01:18.78\",\"lastInBytes\":883138554,\"lastOutBytes\":2913552055,\"outBytes\":2913552055,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3154802,\"inBytes\":350807503,\"inFlow\":78975,\"lastChangeTime\":\"0:01:16.61\",\"lastInBytes\":350807503,\"lastOutBytes\":1228839760,\"outBytes\":1228839760,\"outFlow\":3075827,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:50.471489000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077603", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89025\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:19.37\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:bf:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":398637,\"inBytes\":863685828,\"inFlow\":388939,\"lastChangeTime\":\"91 days, 10:13:04.68\",\"lastInBytes\":863685828,\"lastOutBytes\":639842109,\"outBytes\":639842109,\"outFlow\":9698,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":396364,\"inBytes\":4273922525,\"inFlow\":386688,\"lastChangeTime\":\"0:01:21.32\",\"lastInBytes\":4273922525,\"lastOutBytes\":1328388642,\"outBytes\":1328388642,\"outFlow\":9676,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":397140,\"inBytes\":248045238,\"inFlow\":387407,\"lastChangeTime\":\"208 days, 11:08:25.42\",\"lastInBytes\":248045238,\"lastOutBytes\":2734994493,\"outBytes\":2734994493,\"outFlow\":9732,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":25409450,\"inBytes\":4241336356,\"inFlow\":1114607,\"lastChangeTime\":\"0:01:21.30\",\"lastInBytes\":4241336356,\"lastOutBytes\":3231214219,\"outBytes\":3231214219,\"outFlow\":24294842,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":428825,\"inBytes\":4150993302,\"inFlow\":418355,\"lastChangeTime\":\"140 days, 5:58:17.11\",\"lastInBytes\":4150993302,\"lastOutBytes\":1519826369,\"outBytes\":1519826369,\"outFlow\":10469,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":883076933,\"inFlow\":2,\"lastChangeTime\":\"0:01:21.31\",\"lastInBytes\":883076933,\"lastOutBytes\":2916228032,\"outBytes\":2916228032,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2863398,\"inBytes\":3809192569,\"inFlow\":72205,\"lastChangeTime\":\"0:01:19.37\",\"lastInBytes\":3809192569,\"lastOutBytes\":1447985584,\"outBytes\":1447985584,\"outFlow\":2791192,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:50.459616000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077604", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1010040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89037\",\"inUnknownProtos\":\"3162399957\",\"index\":\"635\",\"lastChange\":\"0:01:11.16\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:2f:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1903896514\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"69402633\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":451613,\"inBytes\":2152752222,\"inFlow\":442568,\"lastChangeTime\":\"0:01:13.61\",\"lastInBytes\":2152752222,\"lastOutBytes\":3781118015,\"outBytes\":3781118015,\"outFlow\":9045,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":471828,\"inBytes\":1345639045,\"inFlow\":461983,\"lastChangeTime\":\"0:01:13.62\",\"lastInBytes\":1345639045,\"lastOutBytes\":3032099450,\"outBytes\":3032099450,\"outFlow\":9844,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":497801,\"inBytes\":1303598211,\"inFlow\":487416,\"lastChangeTime\":\"0:01:13.62\",\"lastInBytes\":1303598211,\"lastOutBytes\":1494194798,\"outBytes\":1494194798,\"outFlow\":10384,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":457020,\"inBytes\":3023358035,\"inFlow\":447450,\"lastChangeTime\":\"0:01:13.62\",\"lastInBytes\":3023358035,\"lastOutBytes\":3921327927,\"outBytes\":3921327927,\"outFlow\":9569,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428543,\"inBytes\":3334161542,\"inFlow\":418073,\"lastChangeTime\":\"208 days, 11:19:12.02\",\"lastInBytes\":3334161542,\"lastOutBytes\":667319365,\"outBytes\":667319365,\"outFlow\":10470,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1069347,\"inBytes\":2324186561,\"inFlow\":1043605,\"lastChangeTime\":\"208 days, 11:19:15.70\",\"lastInBytes\":2324186561,\"lastOutBytes\":3162399957,\"outBytes\":3162399957,\"outFlow\":25742,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":431431,\"inBytes\":838256462,\"inFlow\":421059,\"lastChangeTime\":\"140 days, 6:09:00.70\",\"lastInBytes\":838256462,\"lastOutBytes\":2467616239,\"outBytes\":2467616239,\"outFlow\":10371,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":427242,\"inBytes\":1013754916,\"inFlow\":416813,\"lastChangeTime\":\"208 days, 11:19:09.68\",\"lastInBytes\":1013754916,\"lastOutBytes\":2737819034,\"outBytes\":2737819034,\"outFlow\":10429,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":84,\"inBytes\":883433499,\"inFlow\":2,\"lastChangeTime\":\"0:01:13.06\",\"lastInBytes\":883433499,\"lastOutBytes\":2909826764,\"outBytes\":2909826764,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4248128,\"inBytes\":3139451336,\"inFlow\":99898,\"lastChangeTime\":\"0:01:11.15\",\"lastInBytes\":3139451336,\"lastOutBytes\":3404422882,\"outBytes\":3404422882,\"outFlow\":4148230,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.463205000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077605", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1010040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"182475\",\"inUnknownProtos\":\"4058799871\",\"index\":\"635\",\"lastChange\":\"0:01:18.78\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b8:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1364799352\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"315434281\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":428184,\"inBytes\":2257157361,\"inFlow\":417813,\"lastChangeTime\":\"195 days, 3:37:12.17\",\"lastInBytes\":2257157361,\"lastOutBytes\":2417532577,\"outBytes\":2417532577,\"outFlow\":10370,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1143380,\"inBytes\":4282457253,\"inFlow\":1115563,\"lastChangeTime\":\"9 days, 13:20:41.71\",\"lastInBytes\":4282457253,\"lastOutBytes\":2213158200,\"outBytes\":2213158200,\"outFlow\":27816,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":428497,\"inBytes\":2909757722,\"inFlow\":417967,\"lastChangeTime\":\"137 days, 16:40:25.00\",\"lastInBytes\":2909757722,\"lastOutBytes\":764990542,\"outBytes\":764990542,\"outFlow\":10530,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":427883,\"inBytes\":3820441012,\"inFlow\":417528,\"lastChangeTime\":\"438 days, 10:38:00.02\",\"lastInBytes\":3820441012,\"lastOutBytes\":2436224271,\"outBytes\":2436224271,\"outFlow\":10355,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":286236,\"inBytes\":3921645762,\"inFlow\":279093,\"lastChangeTime\":\"137 days, 16:40:31.64\",\"lastInBytes\":3921645762,\"lastOutBytes\":3433591674,\"outBytes\":3433591674,\"outFlow\":7143,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":430849,\"inBytes\":277414093,\"inFlow\":420504,\"lastChangeTime\":\"195 days, 3:37:20.24\",\"lastInBytes\":277414093,\"lastOutBytes\":4058799871,\"outBytes\":4058799871,\"outFlow\":10344,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1141955,\"inBytes\":382099097,\"inFlow\":1114363,\"lastChangeTime\":\"9 days, 13:32:19.20\",\"lastInBytes\":382099097,\"lastOutBytes\":2250134587,\"outBytes\":2250134587,\"outFlow\":27591,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":266175,\"inBytes\":1653230692,\"inFlow\":258998,\"lastChangeTime\":\"150 days, 1:52:17.74\",\"lastInBytes\":1653230692,\"lastOutBytes\":3728142430,\"outBytes\":3728142430,\"outFlow\":7177,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":963152033,\"inFlow\":2,\"lastChangeTime\":\"137 days, 16:40:39.04\",\"lastInBytes\":963152033,\"lastOutBytes\":827977615,\"outBytes\":827977615,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4260752,\"inBytes\":710793807,\"inFlow\":107839,\"lastChangeTime\":\"0:01:18.78\",\"lastInBytes\":710793807,\"lastOutBytes\":2495867583,\"outBytes\":2495867583,\"outFlow\":4152913,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.469485000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077606", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"182326\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:20.82\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:26:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":1150739,\"inBytes\":424462524,\"inFlow\":1122530,\"lastChangeTime\":\"9 days, 13:20:08.05\",\"lastInBytes\":424462524,\"lastOutBytes\":49998978,\"outBytes\":49998978,\"outFlow\":28208,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1142256,\"inBytes\":3548730784,\"inFlow\":1115216,\"lastChangeTime\":\"137 days, 16:45:44.93\",\"lastInBytes\":3548730784,\"lastOutBytes\":2742064387,\"outBytes\":2742064387,\"outFlow\":27039,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1134196,\"inBytes\":1450077758,\"inFlow\":1107284,\"lastChangeTime\":\"137 days, 16:45:46.25\",\"lastInBytes\":1450077758,\"lastOutBytes\":1965705391,\"outBytes\":1965705391,\"outFlow\":26911,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":285846,\"inBytes\":2304803723,\"inFlow\":278694,\"lastChangeTime\":\"438 days, 10:38:24.89\",\"lastInBytes\":2304803723,\"lastOutBytes\":1191534857,\"outBytes\":1191534857,\"outFlow\":7152,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1145319,\"inBytes\":512013748,\"inFlow\":1117641,\"lastChangeTime\":\"9 days, 13:20:14.96\",\"lastInBytes\":512013748,\"lastOutBytes\":1255862254,\"outBytes\":1255862254,\"outFlow\":27677,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":13407,\"inFlow\":0,\"lastChangeTime\":\"191 days, 1:51:05.76\",\"lastInBytes\":13407,\"lastOutBytes\":720432,\"outBytes\":720432,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":101039,\"inFlow\":0,\"lastChangeTime\":\"373 days, 15:25:38.01\",\"lastInBytes\":101039,\"lastOutBytes\":3281302,\"outBytes\":3281302,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":959422598,\"inFlow\":2,\"lastChangeTime\":\"137 days, 16:46:31.34\",\"lastInBytes\":959422598,\"lastOutBytes\":827106183,\"outBytes\":827106183,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4522489,\"inBytes\":2571975358,\"inFlow\":114122,\"lastChangeTime\":\"0:01:20.82\",\"lastInBytes\":2571975358,\"lastOutBytes\":1722592256,\"outBytes\":1722592256,\"outFlow\":4408366,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.470758000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077607", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"182476\",\"inUnknownProtos\":\"3649190912\",\"index\":\"635\",\"lastChange\":\"0:01:26.86\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:03:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3066586531\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"315433236\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":1065373,\"inBytes\":870204812,\"inFlow\":1039899,\"lastChangeTime\":\"9 days, 13:20:26.23\",\"lastInBytes\":870204812,\"lastOutBytes\":2827023428,\"outBytes\":2827023428,\"outFlow\":25474,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1058461,\"inBytes\":3330559806,\"inFlow\":1032776,\"lastChangeTime\":\"9 days, 13:20:19.13\",\"lastInBytes\":3330559806,\"lastOutBytes\":2729534146,\"outBytes\":2729534146,\"outFlow\":25684,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":400194,\"inBytes\":3984972454,\"inFlow\":390433,\"lastChangeTime\":\"438 days, 10:38:01.73\",\"lastInBytes\":3984972454,\"lastOutBytes\":1328632593,\"outBytes\":1328632593,\"outFlow\":9760,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":397076,\"inBytes\":2734742153,\"inFlow\":387388,\"lastChangeTime\":\"137 days, 16:54:14.58\",\"lastInBytes\":2734742153,\"lastOutBytes\":2224800846,\"outBytes\":2224800846,\"outFlow\":9688,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":848144,\"inBytes\":65973027,\"inFlow\":827904,\"lastChangeTime\":\"438 days, 10:38:27.93\",\"lastInBytes\":65973027,\"lastOutBytes\":1349617299,\"outBytes\":1349617299,\"outFlow\":20240,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1071358,\"inBytes\":2059551450,\"inFlow\":1045943,\"lastChangeTime\":\"137 days, 16:54:22.19\",\"lastInBytes\":2059551450,\"lastOutBytes\":3649190912,\"outBytes\":3649190912,\"outFlow\":25414,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1062700,\"inBytes\":959964336,\"inFlow\":1037151,\"lastChangeTime\":\"9 days, 13:20:33.88\",\"lastInBytes\":959964336,\"lastOutBytes\":3200831652,\"outBytes\":3200831652,\"outFlow\":25548,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1058477,\"inBytes\":4217218671,\"inFlow\":1033144,\"lastChangeTime\":\"9 days, 13:20:19.52\",\"lastInBytes\":4217218671,\"lastOutBytes\":3155925938,\"outBytes\":3155925938,\"outFlow\":25333,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":955817820,\"inFlow\":1,\"lastChangeTime\":\"137 days, 16:54:29.37\",\"lastInBytes\":955817820,\"lastOutBytes\":817707524,\"outBytes\":817707524,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7510965,\"inBytes\":2916013045,\"inFlow\":188230,\"lastChangeTime\":\"0:01:26.85\",\"lastInBytes\":2916013045,\"lastOutBytes\":3935015833,\"outBytes\":3935015833,\"outFlow\":7322735,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.462018000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077608", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1010040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface148\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"182474\",\"inUnknownProtos\":\"475291202\",\"index\":\"635\",\"lastChange\":\"0:01:16.68\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c0:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1242511724\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.144\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":1064135,\"inBytes\":1302052916,\"inFlow\":1037932,\"lastChangeTime\":\"9 days, 13:19:18.90\",\"lastInBytes\":1302052916,\"lastOutBytes\":2944350726,\"outBytes\":2944350726,\"outFlow\":26203,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1063232,\"inBytes\":4123614783,\"inFlow\":1037295,\"lastChangeTime\":\"9 days, 13:19:21.02\",\"lastInBytes\":4123614783,\"lastOutBytes\":1214540794,\"outBytes\":1214540794,\"outFlow\":25936,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1062173,\"inBytes\":2675902649,\"inFlow\":1036534,\"lastChangeTime\":\"137 days, 17:04:24.19\",\"lastInBytes\":2675902649,\"lastOutBytes\":3147253795,\"outBytes\":3147253795,\"outFlow\":25639,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1018411,\"inBytes\":2828275319,\"inFlow\":995109,\"lastChangeTime\":\"227 days, 8:04:56.44\",\"lastInBytes\":2828275319,\"lastOutBytes\":2173744223,\"outBytes\":2173744223,\"outFlow\":23301,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":398236,\"inBytes\":3471377208,\"inFlow\":388559,\"lastChangeTime\":\"137 days, 17:04:34.07\",\"lastInBytes\":3471377208,\"lastOutBytes\":1862971083,\"outBytes\":1862971083,\"outFlow\":9676,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1061624,\"inBytes\":1596993125,\"inFlow\":1035468,\"lastChangeTime\":\"9 days, 13:19:12.75\",\"lastInBytes\":1596993125,\"lastOutBytes\":475291202,\"outBytes\":475291202,\"outFlow\":26155,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1063694,\"inBytes\":272049582,\"inFlow\":1037685,\"lastChangeTime\":\"79 days, 20:49:19.67\",\"lastInBytes\":272049582,\"lastOutBytes\":1509960457,\"outBytes\":1509960457,\"outFlow\":26009,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":82,\"inBytes\":954633001,\"inFlow\":1,\"lastChangeTime\":\"137 days, 17:04:48.40\",\"lastInBytes\":954633001,\"lastOutBytes\":814261389,\"outBytes\":814261389,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7265955,\"inBytes\":1557494996,\"inFlow\":183933,\"lastChangeTime\":\"0:01:16.68\",\"lastInBytes\":1557494996,\"lastOutBytes\":1248003700,\"outBytes\":1248003700,\"outFlow\":7082022,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.454439000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077609", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1010040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif148\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"10:59:41.09\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:6f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405727,\"inBytes\":3250899604,\"inFlow\":396487,\"lastChangeTime\":\"156 days, 13:32:22.64\",\"lastInBytes\":3250899604,\"lastOutBytes\":3940944278,\"outBytes\":3940944278,\"outFlow\":9239,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408246,\"inBytes\":2254226792,\"inFlow\":10228,\"lastChangeTime\":\"360 days, 11:19:00.82\",\"lastInBytes\":2254226792,\"lastOutBytes\":1559176886,\"outBytes\":1559176886,\"outFlow\":398017,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":210,\"inBytes\":302136927,\"inFlow\":124,\"lastChangeTime\":\"470 days, 8:49:35.48\",\"lastInBytes\":302136927,\"lastOutBytes\":1143251946,\"outBytes\":1143251946,\"outFlow\":86,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:05.520188000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589885986847077610", + "createdBy": "0", + "createdTime": "2025-02-24 13:28:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:41", + "echoMap": {}, + "deviceId": "1010040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.148.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif148\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:42\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"17\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.148.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:41\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":410420,\"inBytes\":3890243333,\"inFlow\":401099,\"lastChangeTime\":\"57 days, 13:36:58.35\",\"lastInBytes\":3890243333,\"lastOutBytes\":3959186139,\"outBytes\":3959186139,\"outFlow\":9321,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":411855,\"inBytes\":3099239169,\"inFlow\":10275,\"lastChangeTime\":\"53 days, 10:25:17.36\",\"lastInBytes\":3099239169,\"lastOutBytes\":3308997899,\"outBytes\":3308997899,\"outFlow\":401579,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":331,\"inBytes\":302120261,\"inFlow\":124,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":302120261,\"lastOutBytes\":3777259610,\"outBytes\":3777259610,\"outFlow\":206,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:03.796277000\"}}", + "lastDiagTime": "2026-02-02 14:38:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589885986847077576", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1010110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.147.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.96\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"115 days, 10:39:39.26\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10535242\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28226275\",\"inOctets\":\"1204612348\",\"inUcastPkts\":\"1445825762\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:f6:88:78\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3896045273\",\"outQLen\":\"0\",\"outUcastPkts\":\"1199034069\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.147.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1011": { + "ndmAlarmHost": [ + { + "id": "689875187736622199", + "createdBy": null, + "createdTime": "2025-10-20 10:20:02", + "updatedBy": null, + "updatedTime": "2025-12-15 09:18:17", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.149.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103048109000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "689875196326556718", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:32:16", + "echoMap": {}, + "deviceId": "1011060001", + "name": "[611](10)图书馆环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103055005011611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556719", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:32:17", + "echoMap": {}, + "deviceId": "1011060002", + "name": "[406](10)图书馆4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101008006011406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556720", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:31:18", + "echoMap": {}, + "deviceId": "1011060003", + "name": "[407](10)图书馆4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101008006011407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556721", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:31:19", + "echoMap": {}, + "deviceId": "1011060004", + "name": "[614](10)图书馆内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103001006011614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556722", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:31:19", + "echoMap": {}, + "deviceId": "1011060005", + "name": "[203](10)图书馆厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101035004011203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556723", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:31:19", + "echoMap": {}, + "deviceId": "1011060006", + "name": "[336](10)图书馆#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101045006011336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556724", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1011060007", + "name": "[335](10)图书馆#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101045006011335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556725", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1011060008", + "name": "[504](10)图书馆票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101030006011504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556726", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060009", + "name": "[405](10)图书馆3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101007006011405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556727", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060010", + "name": "[351](10)图书馆2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101036005011351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556728", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060011", + "name": "[345](10)图书馆艺术文创2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101040006011345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556729", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060012", + "name": "[346](10)图书馆B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101040006011346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556730", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1011060013", + "name": "[337](10)图书馆#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101045006011337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556731", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1011060014", + "name": "[322](10)图书馆3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556732", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1011060015", + "name": "[353](10)图书馆安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101085006011353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556733", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060016", + "name": "[204](10)图书馆厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101035004011204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556734", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1011060017", + "name": "[347](10)图书馆公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101040006011347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556735", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1011060018", + "name": "[329](10)图书馆3#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556736", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1011060019", + "name": "[323](10)图书馆3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556737", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1011060020", + "name": "[325](10)图书馆3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556738", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1011060021", + "name": "[324](10)图书馆3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556739", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1011060022", + "name": "[211](10)图书馆3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057004011211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556740", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1011060023", + "name": "[326](10)图书馆3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556741", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1011060024", + "name": "[330](10)图书馆3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556742", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1011060025", + "name": "[331](10)图书馆3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556743", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1011060026", + "name": "[327](10)图书馆3#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556744", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1011060027", + "name": "[328](10)图书馆3#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101057006011328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556745", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1011060028", + "name": "[601](10)图书馆车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103042004011601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556746", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1011060029", + "name": "[503](10)图书馆票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101030006011503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556747", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1011060030", + "name": "[402](10)图书馆1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101005006011402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556748", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1011060031", + "name": "[401](10)图书馆1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101005006011401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556749", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1011060032", + "name": "[501](10)图书馆客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101001005011501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556750", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1011060033", + "name": "[403](10)图书馆1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101005006011403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556751", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1011060034", + "name": "[301](10)图书馆1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556752", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1011060035", + "name": "[348](10)图书馆B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101040006011348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556753", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1011060036", + "name": "[332](10)图书馆#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101045006011332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556754", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1011060037", + "name": "[333](10)图书馆#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101045006011333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556755", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1011060038", + "name": "[404](10)图书馆2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101006006011404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556756", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1011060039", + "name": "[344](10)图书馆艺术文创1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101040006011344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556757", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1011060040", + "name": "[334](10)图书馆#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101045006011334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556758", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1011060041", + "name": "[310](10)图书馆2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556759", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1011060042", + "name": "[352](10)图书馆安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101085006011352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556760", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1011060043", + "name": "[342](10)图书馆公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101040006011342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556761", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:21:16", + "echoMap": {}, + "deviceId": "1011060044", + "name": "[202](10)图书馆厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101035004011202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556762", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1011060045", + "name": "[320](10)图书馆2#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556763", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1011060046", + "name": "[311](10)图书馆2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556764", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1011060047", + "name": "[312](10)图书馆2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556765", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1011060048", + "name": "[315](10)图书馆2#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556766", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1011060049", + "name": "[316](10)图书馆2#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556767", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1011060050", + "name": "[314](10)图书馆2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556768", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1011060051", + "name": "[313](10)图书馆2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556769", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1011060052", + "name": "[318](10)图书馆2#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556770", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1011060053", + "name": "[319](10)图书馆2#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556771", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1011060054", + "name": "[317](10)图书馆2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556772", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1011060055", + "name": "[210](10)图书馆2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056004011210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556773", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1011060056", + "name": "[321](10)图书馆2#口职工餐厅", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101056006011321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556774", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1011060057", + "name": "[609](10)图书馆环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103055005011609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556775", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1011060058", + "name": "[610](10)图书馆环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103055005011610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556776", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1011060059", + "name": "[612](10)图书馆内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103001006011612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556777", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1011060060", + "name": "[602](10)图书馆编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103041005011602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556778", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1011060061", + "name": "[603](10)图书馆编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103041005011603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556779", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1011060062", + "name": "[605](10)图书馆通信设备室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103048005011605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556780", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1011060063", + "name": "[604](10)图书馆编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103041005011604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556781", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1011060064", + "name": "[606](10)图书馆通信设备室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103048005011606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556782", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1011060065", + "name": "[607](10)图书馆通信设备室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103048005011607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556783", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1011060066", + "name": "[613](10)图书馆内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103001006011613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556784", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1011060067", + "name": "[616](10)图书馆内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103021005011616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556785", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1011060068", + "name": "[615](10)图书馆内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103021005011615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556786", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1011060069", + "name": "[302](10)图书馆1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556787", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1011060070", + "name": "[303](10)图书馆1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556788", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1011060071", + "name": "[305](10)图书馆1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556789", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1011060072", + "name": "[304](10)图书馆1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556790", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:15:16", + "echoMap": {}, + "deviceId": "1011060073", + "name": "[309](10)图书馆1#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055005011309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556791", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:15:17", + "echoMap": {}, + "deviceId": "1011060074", + "name": "[350](10)图书馆1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101036005011350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556792", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1011060075", + "name": "[307](10)图书馆1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556793", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1011060076", + "name": "[308](10)图书馆1#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556794", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1011060077", + "name": "[306](10)图书馆1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556795", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:15:17", + "echoMap": {}, + "deviceId": "1011060078", + "name": "[209](10)图书馆1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055004011209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556796", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1011060079", + "name": "[207](10)图书馆下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102001004011207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556797", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1011060080", + "name": "[110](10)图书馆下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102012006011110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556798", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1011060081", + "name": "[107](10)图书馆下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102012006011107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556799", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1011060082", + "name": "[108](10)图书馆下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102012006011108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556800", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1011060083", + "name": "[340](10)图书馆#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102017006011340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556801", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1011060084", + "name": "[349](10)图书馆B2垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102002006011349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556802", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1011060085", + "name": "[341](10)图书馆#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102017006011341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556803", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1011060086", + "name": "[103](10)图书馆上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102007006011103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556804", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060087", + "name": "[106](10)图书馆上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102007006011106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556805", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1011060088", + "name": "[105](10)图书馆上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102007006011105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556806", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1011060089", + "name": "[206](10)图书馆上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102001004011206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556807", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:17", + "echoMap": {}, + "deviceId": "1011060090", + "name": "[208](10)图书馆下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102001004011208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556808", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:17", + "echoMap": {}, + "deviceId": "1011060091", + "name": "[111](10)图书馆下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102012006011111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556809", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:17", + "echoMap": {}, + "deviceId": "1011060092", + "name": "[112](10)图书馆下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102012006011112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556810", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:17", + "echoMap": {}, + "deviceId": "1011060093", + "name": "[109](10)图书馆下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102012006011109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556811", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:18", + "echoMap": {}, + "deviceId": "1011060094", + "name": "[338](10)图书馆#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102017006011338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556812", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:18", + "echoMap": {}, + "deviceId": "1011060095", + "name": "[608](10)图书馆屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103048005011608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556813", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:18", + "echoMap": {}, + "deviceId": "1011060096", + "name": "[617](10)图书馆内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103021006011617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556814", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:19", + "echoMap": {}, + "deviceId": "1011060097", + "name": "[339](10)图书馆#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102017006011339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875196326556815", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:19", + "echoMap": {}, + "deviceId": "1011060098", + "name": "[102](10)图书馆上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102007006011102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523968", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:19", + "echoMap": {}, + "deviceId": "1011060099", + "name": "[101](10)图书馆上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102007006011101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523969", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:19", + "echoMap": {}, + "deviceId": "1011060100", + "name": "[104](10)图书馆上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102007006011104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523970", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1011060101", + "name": "[205](10)图书馆上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061102001004011205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523971", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1011060102", + "name": "[702](10)图书馆交大图书馆下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061104012004011702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523972", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1011060103", + "name": "[701](10)图书馆交大图书馆上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.150.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061104012004011701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523973", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:57:20", + "echoMap": {}, + "deviceId": "1011060104", + "name": "[619](10)图书馆气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.150.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103067005011619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523974", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1011060105", + "name": "[620](10)图书馆气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.150.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103067005011620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523975", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1011060106", + "name": "[621](10)图书馆通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.150.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103048005011621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523976", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-12-12 08:31:20", + "echoMap": {}, + "deviceId": "1011060107", + "name": "[622](10)图书馆消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.150.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103068005011622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "689875200621523977", + "createdBy": "0", + "createdTime": "2025-10-20 10:45:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1011060108", + "name": "[623](10)图书馆内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.150.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061103001005011623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704525115024862286", + "createdBy": null, + "createdTime": "2025-11-27 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-27 00:00:00", + "echoMap": {}, + "deviceId": "1011060109", + "name": "[618](10)图书馆1#口消防出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.149.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061101055006011618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589886605322372395", + "createdBy": "0", + "createdTime": "2025-02-24 13:43:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:03", + "echoMap": {}, + "deviceId": "1011070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.149.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"978390\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2996700237\",\"inUcastPkts\":\"1394543606\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ee:20\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4009533683\",\"outQLen\":\"0\",\"outUcastPkts\":\"3285626288\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.149.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:02\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZ56B9F\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"39\",\"CPU使用率\":\"8\"}}", + "lastDiagTime": "2026-02-02 14:35:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589886605322372440", + "createdBy": "2", + "createdTime": "2025-02-24 13:45:58", + "updatedBy": null, + "updatedTime": "2025-12-23 10:11:28", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.149.51", + "manageUrl": "http:\\\\10.18.149.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372441", + "createdBy": "2", + "createdTime": "2025-02-24 13:46:20", + "updatedBy": null, + "updatedTime": "2025-12-23 10:11:23", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.149.52", + "manageUrl": "http:\\\\10.18.149.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589886605322372397", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:03", + "echoMap": {}, + "deviceId": "1011090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.149.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.88\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"129 days, 10:43:05.52\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10775691\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28871206\",\"inOctets\":\"3225119199\",\"inUcastPkts\":\"504733459\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"473 days, 8:36:09.57\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:b0:a0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1443447812\",\"outQLen\":\"0\",\"outUcastPkts\":\"4018422899\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.149.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589886605322372442", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-09-02 10:07:56", + "echoMap": {}, + "deviceId": "1011050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.149.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.149.22;10.18.149.23" + }, + { + "id": "589886605322372443", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:03", + "echoMap": {}, + "deviceId": "1011050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.149.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061100000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"19354140\",\"inErrors\":\"0\",\"inNUcastPkts\":\"36444897\",\"inOctets\":\"3473916329\",\"inUcastPkts\":\"2774319083\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:6d:c7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1745938011\",\"outQLen\":\"0\",\"outUcastPkts\":\"2742416180\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4900\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3260\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.149.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:03\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":248601433,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"52\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:35:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.149.22" + }, + { + "id": "589886605322372444", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1011050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.149.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061100000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"14117216\",\"inErrors\":\"0\",\"inNUcastPkts\":\"31477907\",\"inOctets\":\"3848914647\",\"inUcastPkts\":\"3024088890\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:6f:17\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2569072009\",\"outQLen\":\"0\",\"outUcastPkts\":\"3232100054\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3240\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3260\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.149.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:04\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":248601433,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node14923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"48\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.149.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589886605322372398", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:03", + "echoMap": {}, + "deviceId": "1011030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2538926\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139752680\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"166 days, 13:22:54.53\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2538931\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:53\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.013},{\"current\":0.20500001,\"status\":1,\"voltage\":26.013},{\"current\":0.32900003,\"status\":1,\"voltage\":26.013},{\"current\":0.48800004,\"status\":1,\"voltage\":26.013},{\"current\":0.36400002,\"status\":1,\"voltage\":26.013},{\"current\":0.558,\"status\":1,\"voltage\":26.013},{\"current\":0.272,\"status\":1,\"voltage\":26.013},{\"current\":0.23400001,\"status\":1,\"voltage\":26.013},{\"current\":0.001,\"status\":1,\"voltage\":26.013},{\"current\":0.001,\"status\":1,\"voltage\":26.854002},{\"current\":0.002,\"status\":0,\"voltage\":26.854002},{\"current\":0.001,\"status\":0,\"voltage\":26.854002},{\"current\":0.001,\"status\":0,\"voltage\":26.854002},{\"current\":0.001,\"status\":1,\"voltage\":26.854002},{\"current\":0.0,\"status\":1,\"voltage\":26.854002},{\"current\":0.0,\"status\":1,\"voltage\":26.854002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301107\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372399", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:03", + "echoMap": {}, + "deviceId": "1011030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2538759\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139743696\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"166 days, 6:19:26.82\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2538764\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:17\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.32000002,\"status\":1,\"voltage\":26.144001},{\"current\":0.273,\"status\":1,\"voltage\":26.144001},{\"current\":0.238,\"status\":1,\"voltage\":26.144001},{\"current\":0.416,\"status\":1,\"voltage\":26.144001},{\"current\":0.256,\"status\":1,\"voltage\":26.144001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.144001},{\"current\":0.263,\"status\":1,\"voltage\":26.144001},{\"current\":0.32200003,\"status\":1,\"voltage\":26.144001},{\"current\":0.27600002,\"status\":1,\"voltage\":26.144001},{\"current\":0.56,\"status\":1,\"voltage\":26.169},{\"current\":0.003,\"status\":1,\"voltage\":26.169},{\"current\":0.319,\"status\":1,\"voltage\":26.169},{\"current\":0.001,\"status\":1,\"voltage\":26.169},{\"current\":0.001,\"status\":1,\"voltage\":26.169},{\"current\":0.001,\"status\":1,\"voltage\":26.169},{\"current\":0.001,\"status\":1,\"voltage\":26.169}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301559\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372400", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:04", + "echoMap": {}, + "deviceId": "1011030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2538759\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139743127\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"164 days, 9:06:11.43\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2538764\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:57\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.31300002,\"status\":1,\"voltage\":26.289001},{\"current\":0.38000003,\"status\":1,\"voltage\":26.289001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.289001},{\"current\":0.22900002,\"status\":1,\"voltage\":26.289001},{\"current\":0.51000005,\"status\":1,\"voltage\":26.289001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.289001},{\"current\":0.22500001,\"status\":1,\"voltage\":26.289001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.289001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.289001},{\"current\":0.26200002,\"status\":1,\"voltage\":26.380001},{\"current\":0.003,\"status\":1,\"voltage\":26.380001},{\"current\":0.001,\"status\":1,\"voltage\":26.380001},{\"current\":0.001,\"status\":1,\"voltage\":26.380001},{\"current\":0.001,\"status\":1,\"voltage\":26.380001},{\"current\":0.001,\"status\":1,\"voltage\":26.380001},{\"current\":0.001,\"status\":1,\"voltage\":26.380001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301623\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372401", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1011030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2538592\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139734032\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"164 days, 15:09:36.26\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2538597\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:83\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.56600004,\"status\":1,\"voltage\":26.528002},{\"current\":0.001,\"status\":0,\"voltage\":26.528002},{\"current\":0.35300002,\"status\":1,\"voltage\":26.528002},{\"current\":0.46300003,\"status\":1,\"voltage\":26.528002},{\"current\":0.272,\"status\":1,\"voltage\":26.528002},{\"current\":0.37500003,\"status\":1,\"voltage\":26.528002},{\"current\":0.001,\"status\":1,\"voltage\":26.528002},{\"current\":0.33600003,\"status\":1,\"voltage\":26.528002},{\"current\":0.252,\"status\":1,\"voltage\":26.528002},{\"current\":0.3,\"status\":1,\"voltage\":26.129002},{\"current\":0.002,\"status\":1,\"voltage\":26.129002},{\"current\":0.372,\"status\":1,\"voltage\":26.129002},{\"current\":0.42400002,\"status\":1,\"voltage\":26.129002},{\"current\":0.001,\"status\":1,\"voltage\":26.129002},{\"current\":0.0,\"status\":1,\"voltage\":26.129002},{\"current\":0.0,\"status\":1,\"voltage\":26.129002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300131\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372402", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:05", + "echoMap": {}, + "deviceId": "1011030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2539093\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139761834\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"165 days, 10:42:16.66\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2539098\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:1d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25,\"status\":1,\"voltage\":26.149002},{\"current\":0.25,\"status\":1,\"voltage\":26.149002},{\"current\":0.333,\"status\":1,\"voltage\":26.149002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.149002},{\"current\":0.296,\"status\":1,\"voltage\":26.149002},{\"current\":0.56100005,\"status\":1,\"voltage\":26.149002},{\"current\":0.289,\"status\":1,\"voltage\":26.149002},{\"current\":0.33900002,\"status\":1,\"voltage\":26.149002},{\"current\":0.001,\"status\":1,\"voltage\":26.149002},{\"current\":0.001,\"status\":1,\"voltage\":26.122002},{\"current\":0.003,\"status\":1,\"voltage\":26.122002},{\"current\":0.001,\"status\":1,\"voltage\":26.122002},{\"current\":0.001,\"status\":1,\"voltage\":26.122002},{\"current\":0.001,\"status\":1,\"voltage\":26.122002},{\"current\":0.001,\"status\":1,\"voltage\":26.122002},{\"current\":0.001,\"status\":1,\"voltage\":26.122002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300988\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372403", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1011030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2539093\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139760610\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"164 days, 22:29:19.81\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2539098\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:b2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.75900006,\"status\":1,\"voltage\":23.85},{\"current\":0.83000004,\"status\":1,\"voltage\":23.85},{\"current\":0.91700006,\"status\":1,\"voltage\":23.85},{\"current\":0.864,\"status\":1,\"voltage\":23.85},{\"current\":0.76600003,\"status\":1,\"voltage\":23.85},{\"current\":0.84800005,\"status\":1,\"voltage\":23.85},{\"current\":0.9620001,\"status\":1,\"voltage\":23.85},{\"current\":0.75000006,\"status\":1,\"voltage\":23.85},{\"current\":0.634,\"status\":1,\"voltage\":23.85},{\"current\":0.85200006,\"status\":1,\"voltage\":24.663002},{\"current\":0.003,\"status\":1,\"voltage\":24.663002},{\"current\":0.001,\"status\":1,\"voltage\":24.663002},{\"current\":0.001,\"status\":1,\"voltage\":24.663002},{\"current\":0.001,\"status\":1,\"voltage\":24.663002},{\"current\":0.001,\"status\":1,\"voltage\":24.663002},{\"current\":0.001,\"status\":1,\"voltage\":24.663002}],\"fanSpeeds\":[3480,3510],\"humidity\":15,\"switches\":[0,0,0,0],\"temperature\":30}],\"stCommonInfo\":{\"设备ID\":\"0001512208301458\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372404", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:06", + "echoMap": {}, + "deviceId": "1011030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2537757\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139688974\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"283 days, 5:38:06.99\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2537762\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:55\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.043001},{\"current\":0.20400001,\"status\":1,\"voltage\":26.043001},{\"current\":0.19900002,\"status\":1,\"voltage\":26.043001},{\"current\":0.25100002,\"status\":1,\"voltage\":26.043001},{\"current\":0.21900001,\"status\":1,\"voltage\":26.043001},{\"current\":0.19700001,\"status\":1,\"voltage\":26.043001},{\"current\":0.209,\"status\":1,\"voltage\":26.043001},{\"current\":0.23,\"status\":1,\"voltage\":26.043001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.043001},{\"current\":0.21700001,\"status\":1,\"voltage\":26.323002},{\"current\":0.002,\"status\":1,\"voltage\":26.323002},{\"current\":0.257,\"status\":1,\"voltage\":26.323002},{\"current\":0.246,\"status\":1,\"voltage\":26.323002},{\"current\":0.19800001,\"status\":1,\"voltage\":26.323002},{\"current\":0.22000001,\"status\":1,\"voltage\":26.323002},{\"current\":0.22800002,\"status\":1,\"voltage\":26.323002}],\"fanSpeeds\":[1410,1440],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301621\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372405", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1011030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2539260\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139771352\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"166 days, 14:56:45.79\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2539265\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:32\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34,\"status\":1,\"voltage\":26.237001},{\"current\":0.246,\"status\":1,\"voltage\":26.237001},{\"current\":0.28500003,\"status\":1,\"voltage\":26.237001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.237001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.237001},{\"current\":0.42100003,\"status\":1,\"voltage\":26.237001},{\"current\":0.26900002,\"status\":1,\"voltage\":26.237001},{\"current\":0.27,\"status\":1,\"voltage\":26.237001},{\"current\":0.21300001,\"status\":1,\"voltage\":26.237001},{\"current\":0.518,\"status\":1,\"voltage\":26.451002},{\"current\":0.003,\"status\":1,\"voltage\":26.451002},{\"current\":0.28300002,\"status\":1,\"voltage\":26.451002},{\"current\":0.001,\"status\":1,\"voltage\":26.451002},{\"current\":0.001,\"status\":1,\"voltage\":26.451002},{\"current\":0.001,\"status\":1,\"voltage\":26.451002},{\"current\":0.001,\"status\":1,\"voltage\":26.451002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301074\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372406", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:07", + "echoMap": {}, + "deviceId": "1011030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2538258\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139715080\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"282 days, 15:14:41.75\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2538263\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:57\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.52000004,\"status\":1,\"voltage\":26.267002},{\"current\":0.263,\"status\":1,\"voltage\":26.267002},{\"current\":0.25,\"status\":1,\"voltage\":26.267002},{\"current\":0.51500005,\"status\":1,\"voltage\":26.267002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.267002},{\"current\":0.24800001,\"status\":1,\"voltage\":26.267002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.267002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.267002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.267002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.192001},{\"current\":0.003,\"status\":1,\"voltage\":26.192001},{\"current\":0.001,\"status\":1,\"voltage\":26.192001},{\"current\":0.25100002,\"status\":1,\"voltage\":26.192001},{\"current\":0.21200001,\"status\":1,\"voltage\":26.192001},{\"current\":0.001,\"status\":1,\"voltage\":26.192001},{\"current\":0.001,\"status\":1,\"voltage\":26.192001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301111\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372407", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1011030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2538425\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139724670\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"282 days, 23:09:15.93\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2538430\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:85\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.58000004,\"status\":1,\"voltage\":26.117},{\"current\":0.25500003,\"status\":1,\"voltage\":26.117},{\"current\":0.264,\"status\":1,\"voltage\":26.117},{\"current\":0.27100003,\"status\":1,\"voltage\":26.117},{\"current\":0.25800002,\"status\":1,\"voltage\":26.117},{\"current\":0.209,\"status\":1,\"voltage\":26.117},{\"current\":0.29900002,\"status\":1,\"voltage\":26.117},{\"current\":0.25500003,\"status\":1,\"voltage\":26.117},{\"current\":0.24800001,\"status\":1,\"voltage\":26.117},{\"current\":0.257,\"status\":1,\"voltage\":26.021002},{\"current\":0.002,\"status\":1,\"voltage\":26.021002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.021002},{\"current\":0.518,\"status\":1,\"voltage\":26.021002},{\"current\":0.19900002,\"status\":1,\"voltage\":26.021002},{\"current\":0.001,\"status\":1,\"voltage\":26.021002},{\"current\":0.001,\"status\":1,\"voltage\":26.021002}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301669\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372408", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1011030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372409", + "createdBy": "0", + "createdTime": "2025-02-24 13:44:20", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:24", + "echoMap": {}, + "deviceId": "1011030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.150.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589886605322372427", + "createdBy": "2", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1011040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.149.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif149\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"56\",\"lastChange\":\"0:03:02.72\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:1f:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"38\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.149.64\",\"index\":\"56\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"266\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:31\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37484,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":737,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31770,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":633,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38759,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":662,\"opticalVoltage\":3271,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39523,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":668,\"opticalVoltage\":3290,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40290,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":605,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40034,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":736,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40034,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":555,\"opticalVoltage\":3276,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":644,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":818,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35189,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":562,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38504,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":579,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37229,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":734,\"opticalVoltage\":3269,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38250,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":523,\"opticalVoltage\":3309,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37110,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":559,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36060,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":562,\"opticalVoltage\":3346,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41563,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":822,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40543,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":701,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41563,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":563,\"opticalVoltage\":3333,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":595,\"opticalVoltage\":3337,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34680,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":665,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":423,\"inBytes\":937455883,\"inFlow\":66,\"lastChangeTime\":\"0:04:12.57\",\"lastInBytes\":937455883,\"lastOutBytes\":846559117,\"opticalBiasCurrent\":14184,\"opticalReceivePower\":244,\"opticalTemperature\":45,\"opticalTransmitPower\":251,\"opticalVoltage\":3286,\"outBytes\":846559117,\"outFlow\":356,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42074,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":693,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":1132342,\"inBytes\":3266919181,\"inFlow\":3220,\"lastChangeTime\":\"0:04:12.60\",\"lastInBytes\":3266919181,\"lastOutBytes\":1981036723,\"opticalBiasCurrent\":35444,\"opticalReceivePower\":467,\"opticalTemperature\":48,\"opticalTransmitPower\":814,\"opticalVoltage\":3345,\"outBytes\":1981036723,\"outFlow\":1129121,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":973302,\"inBytes\":958593458,\"inFlow\":58303,\"lastChangeTime\":\"0:04:12.63\",\"lastInBytes\":958593458,\"lastOutBytes\":3893457599,\"opticalBiasCurrent\":40290,\"opticalReceivePower\":472,\"opticalTemperature\":54,\"opticalTransmitPower\":785,\"opticalVoltage\":3330,\"outBytes\":3893457599,\"outFlow\":914999,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":3117876,\"inBytes\":2544958552,\"inFlow\":3024626,\"lastChangeTime\":\"0:04:11.89\",\"lastInBytes\":2544958552,\"lastOutBytes\":2708085303,\"opticalBiasCurrent\":13609,\"opticalReceivePower\":144,\"opticalTemperature\":45,\"opticalTransmitPower\":266,\"opticalVoltage\":3294,\"outBytes\":2708085303,\"outFlow\":93250,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6119683,\"inBytes\":2207562032,\"inFlow\":5931036,\"lastChangeTime\":\"0:04:11.91\",\"lastInBytes\":2207562032,\"lastOutBytes\":2680405076,\"opticalBiasCurrent\":12590,\"opticalReceivePower\":43,\"opticalTemperature\":44,\"opticalTransmitPower\":257,\"opticalVoltage\":3294,\"outBytes\":2680405076,\"outFlow\":188647,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6354228,\"inBytes\":2831066783,\"inFlow\":6157642,\"lastChangeTime\":\"0:04:11.96\",\"lastInBytes\":2831066783,\"lastOutBytes\":2613911245,\"opticalBiasCurrent\":13321,\"opticalReceivePower\":93,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3286,\"outBytes\":2613911245,\"outFlow\":196585,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7044041,\"inBytes\":1395305013,\"inFlow\":6830051,\"lastChangeTime\":\"0:04:11.98\",\"lastInBytes\":1395305013,\"lastOutBytes\":2534179253,\"opticalBiasCurrent\":13321,\"opticalReceivePower\":160,\"opticalTemperature\":45,\"opticalTransmitPower\":237,\"opticalVoltage\":3286,\"outBytes\":2534179253,\"outFlow\":213989,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3909443,\"inBytes\":1610094682,\"inFlow\":3791070,\"lastChangeTime\":\"0:04:12.01\",\"lastInBytes\":1610094682,\"lastOutBytes\":2643051912,\"opticalBiasCurrent\":13036,\"opticalReceivePower\":204,\"opticalTemperature\":45,\"opticalTransmitPower\":279,\"opticalVoltage\":3294,\"outBytes\":2643051912,\"outFlow\":118373,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6295306,\"inBytes\":1499092580,\"inFlow\":6099511,\"lastChangeTime\":\"0:04:12.04\",\"lastInBytes\":1499092580,\"lastOutBytes\":1329273478,\"opticalBiasCurrent\":12718,\"opticalReceivePower\":159,\"opticalTemperature\":44,\"opticalTransmitPower\":250,\"opticalVoltage\":3294,\"outBytes\":1329273478,\"outFlow\":195795,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4312205,\"inBytes\":609275458,\"inFlow\":4174433,\"lastChangeTime\":\"0:04:12.06\",\"lastInBytes\":609275458,\"lastOutBytes\":3361691207,\"opticalBiasCurrent\":13770,\"opticalReceivePower\":76,\"opticalTemperature\":45,\"opticalTransmitPower\":269,\"opticalVoltage\":3294,\"outBytes\":3361691207,\"outFlow\":137771,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7162624,\"inBytes\":1825089142,\"inFlow\":6943696,\"lastChangeTime\":\"100 days, 22:13:40.72\",\"lastInBytes\":1825089142,\"lastOutBytes\":1497202235,\"opticalBiasCurrent\":13482,\"opticalReceivePower\":214,\"opticalTemperature\":44,\"opticalTransmitPower\":267,\"opticalVoltage\":3302,\"outBytes\":1497202235,\"outFlow\":218928,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9889712,\"inBytes\":718428235,\"inFlow\":9577622,\"lastChangeTime\":\"0:04:12.11\",\"lastInBytes\":718428235,\"lastOutBytes\":3099256833,\"opticalBiasCurrent\":13545,\"opticalReceivePower\":133,\"opticalTemperature\":44,\"opticalTransmitPower\":254,\"opticalVoltage\":3294,\"outBytes\":3099256833,\"outFlow\":312089,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":11298053,\"inBytes\":479684654,\"inFlow\":10938782,\"lastChangeTime\":\"0:04:12.22\",\"lastInBytes\":479684654,\"lastOutBytes\":4132992884,\"opticalBiasCurrent\":12779,\"opticalReceivePower\":131,\"opticalTemperature\":44,\"opticalTransmitPower\":273,\"opticalVoltage\":3294,\"outBytes\":4132992884,\"outFlow\":359271,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":529054,\"inBytes\":3539603028,\"inFlow\":512354,\"lastChangeTime\":\"0:04:12.28\",\"lastInBytes\":3539603028,\"lastOutBytes\":3102759792,\"opticalBiasCurrent\":13067,\"opticalReceivePower\":2,\"opticalTemperature\":42,\"opticalTransmitPower\":285,\"opticalVoltage\":3302,\"outBytes\":3102759792,\"outFlow\":16699,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":997717,\"inBytes\":431548395,\"inFlow\":966776,\"lastChangeTime\":\"0:04:12.32\",\"lastInBytes\":431548395,\"lastOutBytes\":3023550488,\"opticalBiasCurrent\":13449,\"opticalReceivePower\":7,\"opticalTemperature\":42,\"opticalTransmitPower\":255,\"opticalVoltage\":3294,\"outBytes\":3023550488,\"outFlow\":30940,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13289,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":261,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12843,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":269,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13642,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":266,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13100,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":236,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13196,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":295,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13003,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":239,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13449,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":278,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12494,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":281,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12654,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":293,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13036,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":285,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12779,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":271,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12876,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":250,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":31319,\"inBytes\":257571530,\"inFlow\":16056,\"lastChangeTime\":\"0:03:04.52\",\"lastInBytes\":257571530,\"lastOutBytes\":4099171258,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4099171258,\"outFlow\":15263,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":23096555,\"inBytes\":482720932,\"inFlow\":22756816,\"lastChangeTime\":\"0:03:05.14\",\"lastInBytes\":482720932,\"lastOutBytes\":2885360985,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2885360985,\"outFlow\":339738,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":23105549,\"inBytes\":3259539291,\"inFlow\":563437,\"lastChangeTime\":\"0:07:20.44\",\"lastInBytes\":3259539291,\"lastOutBytes\":1937312389,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1937312389,\"outFlow\":22542112,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":35689,\"inBytes\":2340821552,\"inFlow\":17698,\"lastChangeTime\":\"0:03:03.28\",\"lastInBytes\":2340821552,\"lastOutBytes\":1943217580,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1943217580,\"outFlow\":17990,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":546,\"inBytes\":121321095,\"inFlow\":26,\"lastChangeTime\":\"0:03:03.31\",\"lastInBytes\":121321095,\"lastOutBytes\":691449430,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":691449430,\"outFlow\":520,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4967019,\"inBytes\":1817449705,\"inFlow\":95430,\"lastChangeTime\":\"104 days, 10:23:54.07\",\"lastInBytes\":1817449705,\"lastOutBytes\":1120023010,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1120023010,\"outFlow\":4871589,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":866,\"inBytes\":654309416,\"inFlow\":219,\"lastChangeTime\":\"103 days, 23:24:49.36\",\"lastInBytes\":654309416,\"lastOutBytes\":1966411726,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1966411726,\"outFlow\":646,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":7849566,\"inBytes\":179267967,\"inFlow\":566937,\"lastChangeTime\":\"0:07:20.48\",\"lastInBytes\":179267967,\"lastOutBytes\":1686834231,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1686834231,\"outFlow\":7282628,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9119477,\"inBytes\":1256809366,\"inFlow\":859732,\"lastChangeTime\":\"0:03:03.93\",\"lastInBytes\":1256809366,\"lastOutBytes\":3706765033,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3706765033,\"outFlow\":8259745,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":24772478,\"inBytes\":1318683705,\"inFlow\":756505,\"lastChangeTime\":\"0:03:03.97\",\"lastInBytes\":1318683705,\"lastOutBytes\":2551041632,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2551041632,\"outFlow\":24015973,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1282,\"inBytes\":1062676676,\"inFlow\":330,\"lastChangeTime\":\"103 days, 23:16:24.96\",\"lastInBytes\":1062676676,\"lastOutBytes\":2951562977,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2951562977,\"outFlow\":951,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":2092729,\"inBytes\":1243385853,\"inFlow\":15338,\"lastChangeTime\":\"106 days, 20:22:45.68\",\"lastInBytes\":1243385853,\"lastOutBytes\":3532179114,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3532179114,\"outFlow\":2077391,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":595,\"inBytes\":887939186,\"inFlow\":73,\"lastChangeTime\":\"0:03:03.39\",\"lastInBytes\":887939186,\"lastOutBytes\":1067709468,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1067709468,\"outFlow\":521,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":866,\"inBytes\":677523265,\"inFlow\":219,\"lastChangeTime\":\"17 days, 0:28:10.36\",\"lastInBytes\":677523265,\"lastOutBytes\":1038203364,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1038203364,\"outFlow\":646,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":13539574,\"inBytes\":677275626,\"inFlow\":108863,\"lastChangeTime\":\"0:03:04.59\",\"lastInBytes\":677275626,\"lastOutBytes\":3353348798,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3353348798,\"outFlow\":13430710,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":523,\"inBytes\":161585266,\"inFlow\":14,\"lastChangeTime\":\"99 days, 4:43:32.25\",\"lastInBytes\":161585266,\"lastOutBytes\":745308493,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":745308493,\"outFlow\":508,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2385,\"inBytes\":61849716,\"inFlow\":586,\"lastChangeTime\":\"140 days, 14:26:02.43\",\"lastInBytes\":61849716,\"lastOutBytes\":146778180,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":146778180,\"outFlow\":1799,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":177,\"inBytes\":115731403,\"inFlow\":152,\"lastChangeTime\":\"140 days, 14:27:20.10\",\"lastInBytes\":115731403,\"lastOutBytes\":29158342,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":29158342,\"outFlow\":25,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:12.860622000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372428", + "createdBy": "2", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1011040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89523\",\"inUnknownProtos\":\"2178127558\",\"index\":\"635\",\"lastChange\":\"0:01:19.78\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:2e:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"543086282\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"17283011\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:09\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":280387,\"inBytes\":2089036054,\"inFlow\":273456,\"lastChangeTime\":\"232 days, 21:03:24.65\",\"lastInBytes\":2089036054,\"lastOutBytes\":388483664,\"outBytes\":388483664,\"outFlow\":6931,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":907464,\"inBytes\":2431078497,\"inFlow\":888786,\"lastChangeTime\":\"232 days, 21:03:20.83\",\"lastInBytes\":2431078497,\"lastOutBytes\":1673593173,\"outBytes\":1673593173,\"outFlow\":18678,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419585,\"inBytes\":2793448928,\"inFlow\":410102,\"lastChangeTime\":\"232 days, 21:03:20.88\",\"lastInBytes\":2793448928,\"lastOutBytes\":3474858483,\"outBytes\":3474858483,\"outFlow\":9482,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":420165,\"inBytes\":1363106637,\"inFlow\":409917,\"lastChangeTime\":\"232 days, 21:03:14.85\",\"lastInBytes\":1363106637,\"lastOutBytes\":1260830550,\"outBytes\":1260830550,\"outFlow\":10248,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":570449,\"inBytes\":2786654242,\"inFlow\":556258,\"lastChangeTime\":\"232 days, 21:03:01.12\",\"lastInBytes\":2786654242,\"lastOutBytes\":2178127558,\"outBytes\":2178127558,\"outFlow\":14191,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419892,\"inBytes\":4039236418,\"inFlow\":409635,\"lastChangeTime\":\"232 days, 21:03:14.82\",\"lastInBytes\":4039236418,\"lastOutBytes\":931610381,\"outBytes\":931610381,\"outFlow\":10256,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":280179,\"inBytes\":1694421331,\"inFlow\":273470,\"lastChangeTime\":\"232 days, 21:03:21.78\",\"lastInBytes\":1694421331,\"lastOutBytes\":2996150402,\"outBytes\":2996150402,\"outFlow\":6709,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":263569097,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.71\",\"lastInBytes\":263569097,\"lastOutBytes\":2384540887,\"outBytes\":2384540887,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3310789,\"inBytes\":998959438,\"inFlow\":79698,\"lastChangeTime\":\"131 days, 22:32:36.89\",\"lastInBytes\":998959438,\"lastOutBytes\":1490518559,\"outBytes\":1490518559,\"outFlow\":3231091,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.038765000\"}}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372429", + "createdBy": "2", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1011040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89466\",\"inUnknownProtos\":\"3765412119\",\"index\":\"635\",\"lastChange\":\"0:01:17.14\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:49:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3529934516\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84829236\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:09\",\"info\":{\"portInfoList\":[{\"flow\":536886,\"inBytes\":2853963272,\"inFlow\":523869,\"lastChangeTime\":\"0:01:19.99\",\"lastInBytes\":2853963272,\"lastOutBytes\":641360882,\"outBytes\":641360882,\"outFlow\":13016,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419263,\"inBytes\":1613676729,\"inFlow\":408948,\"lastChangeTime\":\"0:01:19.65\",\"lastInBytes\":1613676729,\"lastOutBytes\":3207105516,\"outBytes\":3207105516,\"outFlow\":10315,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":420530,\"inBytes\":1449202390,\"inFlow\":410274,\"lastChangeTime\":\"0:01:19.66\",\"lastInBytes\":1449202390,\"lastOutBytes\":2785067090,\"outBytes\":2785067090,\"outFlow\":10255,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":632937,\"inBytes\":1739337073,\"inFlow\":616895,\"lastChangeTime\":\"181 days, 22:52:35.85\",\"lastInBytes\":1739337073,\"lastOutBytes\":3551163714,\"outBytes\":3551163714,\"outFlow\":16041,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":419784,\"inBytes\":2451958483,\"inFlow\":409580,\"lastChangeTime\":\"0:01:19.64\",\"lastInBytes\":2451958483,\"lastOutBytes\":4223259083,\"outBytes\":4223259083,\"outFlow\":10203,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":420096,\"inBytes\":784073793,\"inFlow\":409839,\"lastChangeTime\":\"0:01:19.11\",\"lastInBytes\":784073793,\"lastOutBytes\":3765412119,\"outBytes\":3765412119,\"outFlow\":10256,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":421185,\"inBytes\":415447829,\"inFlow\":410891,\"lastChangeTime\":\"0:01:19.09\",\"lastInBytes\":415447829,\"lastOutBytes\":1765378265,\"outBytes\":1765378265,\"outFlow\":10293,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":463047,\"inBytes\":3078891245,\"inFlow\":453145,\"lastChangeTime\":\"0:01:20.00\",\"lastInBytes\":3078891245,\"lastOutBytes\":4052901950,\"outBytes\":4052901950,\"outFlow\":9902,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":913143,\"inBytes\":1869518497,\"inFlow\":890717,\"lastChangeTime\":\"0:01:19.65\",\"lastInBytes\":1869518497,\"lastOutBytes\":523607387,\"outBytes\":523607387,\"outFlow\":22426,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1389715,\"inBytes\":447165592,\"inFlow\":1358111,\"lastChangeTime\":\"140 days, 9:41:23.81\",\"lastInBytes\":447165592,\"lastOutBytes\":612380141,\"outBytes\":612380141,\"outFlow\":31604,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":419532,\"inBytes\":414383703,\"inFlow\":409249,\"lastChangeTime\":\"0:01:19.11\",\"lastInBytes\":414383703,\"lastOutBytes\":3665527866,\"outBytes\":3665527866,\"outFlow\":10282,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":263552007,\"inFlow\":1,\"lastChangeTime\":\"0:01:19.10\",\"lastInBytes\":263552007,\"lastOutBytes\":2385796078,\"outBytes\":2385796078,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6477003,\"inBytes\":1475511250,\"inFlow\":160718,\"lastChangeTime\":\"131 days, 22:50:07.67\",\"lastInBytes\":1475511250,\"lastOutBytes\":2957174612,\"outBytes\":2957174612,\"outFlow\":6316285,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.032831000\"}}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372430", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:08", + "echoMap": {}, + "deviceId": "1011040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89819\",\"inUnknownProtos\":\"271590107\",\"index\":\"635\",\"lastChange\":\"0:01:14.39\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4e:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3840047913\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84852786\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:08\",\"info\":{\"portInfoList\":[{\"flow\":911442,\"inBytes\":519271237,\"inFlow\":889011,\"lastChangeTime\":\"208 days, 14:23:11.72\",\"lastInBytes\":519271237,\"lastOutBytes\":1339097968,\"outBytes\":1339097968,\"outFlow\":22430,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":492984,\"inBytes\":4006166839,\"inFlow\":482480,\"lastChangeTime\":\"0:01:16.97\",\"lastInBytes\":4006166839,\"lastOutBytes\":2866069401,\"outBytes\":2866069401,\"outFlow\":10503,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":910724,\"inBytes\":2901354541,\"inFlow\":888337,\"lastChangeTime\":\"208 days, 14:23:11.30\",\"lastInBytes\":2901354541,\"lastOutBytes\":1393543838,\"outBytes\":1393543838,\"outFlow\":22386,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":914970,\"inBytes\":2735005285,\"inFlow\":892218,\"lastChangeTime\":\"208 days, 14:23:11.12\",\"lastInBytes\":2735005285,\"lastOutBytes\":1002505886,\"outBytes\":1002505886,\"outFlow\":22752,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1395503,\"inBytes\":337959797,\"inFlow\":1363729,\"lastChangeTime\":\"140 days, 9:58:52.37\",\"lastInBytes\":337959797,\"lastOutBytes\":1130215379,\"outBytes\":1130215379,\"outFlow\":31773,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":420111,\"inBytes\":2297310892,\"inFlow\":409829,\"lastChangeTime\":\"208 days, 14:23:20.57\",\"lastInBytes\":2297310892,\"lastOutBytes\":271590107,\"outBytes\":271590107,\"outFlow\":10281,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":420348,\"inBytes\":384386939,\"inFlow\":410109,\"lastChangeTime\":\"208 days, 14:23:10.77\",\"lastInBytes\":384386939,\"lastOutBytes\":2362626573,\"outBytes\":2362626573,\"outFlow\":10239,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":420585,\"inBytes\":206153214,\"inFlow\":410296,\"lastChangeTime\":\"208 days, 14:23:13.86\",\"lastInBytes\":206153214,\"lastOutBytes\":2246371593,\"outBytes\":2246371593,\"outFlow\":10288,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":418052,\"inBytes\":3757299259,\"inFlow\":407815,\"lastChangeTime\":\"208 days, 14:23:16.24\",\"lastInBytes\":3757299259,\"lastOutBytes\":3856501826,\"outBytes\":3856501826,\"outFlow\":10237,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":420067,\"inBytes\":147823880,\"inFlow\":409776,\"lastChangeTime\":\"208 days, 14:23:15.62\",\"lastInBytes\":147823880,\"lastOutBytes\":2494760949,\"outBytes\":2494760949,\"outFlow\":10290,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":263551168,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.34\",\"lastInBytes\":263551168,\"lastOutBytes\":2386755518,\"outBytes\":2386755518,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6757442,\"inBytes\":4065919554,\"inFlow\":168217,\"lastChangeTime\":\"131 days, 23:07:35.86\",\"lastInBytes\":4065919554,\"lastOutBytes\":278069799,\"outBytes\":278069799,\"outFlow\":6589224,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.046413000\"}}", + "lastDiagTime": "2026-02-02 14:38:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372431", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1011040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89325\",\"inUnknownProtos\":\"3137544286\",\"index\":\"635\",\"lastChange\":\"0:01:32.12\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:48:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"346389057\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84791087\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:09\",\"info\":{\"portInfoList\":[{\"flow\":1280041,\"inBytes\":3154249248,\"inFlow\":1250580,\"lastChangeTime\":\"140 days, 8:57:09.68\",\"lastInBytes\":3154249248,\"lastOutBytes\":3312035923,\"outBytes\":3312035923,\"outFlow\":29461,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":420194,\"inBytes\":3504186230,\"inFlow\":409863,\"lastChangeTime\":\"0:01:33.90\",\"lastInBytes\":3504186230,\"lastOutBytes\":2923064757,\"outBytes\":2923064757,\"outFlow\":10331,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":602776,\"inBytes\":1257054366,\"inFlow\":588625,\"lastChangeTime\":\"0:01:34.63\",\"lastInBytes\":1257054366,\"lastOutBytes\":752810693,\"outBytes\":752810693,\"outFlow\":14151,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":907363,\"inBytes\":2586940737,\"inFlow\":888285,\"lastChangeTime\":\"0:01:34.61\",\"lastInBytes\":2586940737,\"lastOutBytes\":1149629540,\"outBytes\":1149629540,\"outFlow\":19078,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":666647,\"inBytes\":3063044954,\"inFlow\":647258,\"lastChangeTime\":\"0:01:33.92\",\"lastInBytes\":3063044954,\"lastOutBytes\":3276063830,\"outBytes\":3276063830,\"outFlow\":19389,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1161308,\"inBytes\":2424500941,\"inFlow\":1135767,\"lastChangeTime\":\"0:01:34.61\",\"lastInBytes\":2424500941,\"lastOutBytes\":3137544286,\"outBytes\":3137544286,\"outFlow\":25540,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":503671,\"inBytes\":1991327749,\"inFlow\":492623,\"lastChangeTime\":\"0:01:34.62\",\"lastInBytes\":1991327749,\"lastOutBytes\":4097399616,\"outBytes\":4097399616,\"outFlow\":11048,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419816,\"inBytes\":26850979,\"inFlow\":409562,\"lastChangeTime\":\"0:01:33.92\",\"lastInBytes\":26850979,\"lastOutBytes\":1869226417,\"outBytes\":1869226417,\"outFlow\":10253,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":420199,\"inBytes\":2289189999,\"inFlow\":409995,\"lastChangeTime\":\"0:01:33.91\",\"lastInBytes\":2289189999,\"lastOutBytes\":3274688606,\"outBytes\":3274688606,\"outFlow\":10203,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":420031,\"inBytes\":2485509398,\"inFlow\":409739,\"lastChangeTime\":\"0:01:33.91\",\"lastInBytes\":2485509398,\"lastOutBytes\":1306228477,\"outBytes\":1306228477,\"outFlow\":10291,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":662378,\"inBytes\":1278582846,\"inFlow\":646368,\"lastChangeTime\":\"0:01:34.62\",\"lastInBytes\":1278582846,\"lastOutBytes\":221096167,\"outBytes\":221096167,\"outFlow\":16009,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":908881,\"inFlow\":0,\"lastChangeTime\":\"181 days, 22:14:01.06\",\"lastInBytes\":908881,\"lastOutBytes\":33040223,\"outBytes\":33040223,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":263533491,\"inFlow\":1,\"lastChangeTime\":\"0:01:33.89\",\"lastInBytes\":263533491,\"lastOutBytes\":2384306340,\"outBytes\":2384306340,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7493408,\"inBytes\":1852330160,\"inFlow\":183255,\"lastChangeTime\":\"131 days, 22:05:57.74\",\"lastInBytes\":1852330160,\"lastOutBytes\":2681689679,\"outBytes\":2681689679,\"outFlow\":7310153,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.181051000\"}}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372432", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1011040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89526\",\"inUnknownProtos\":\"2686241646\",\"index\":\"635\",\"lastChange\":\"0:01:19.92\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:1b:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1103939546\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84925922\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:09\",\"info\":{\"portInfoList\":[{\"flow\":420112,\"inBytes\":1923517643,\"inFlow\":409942,\"lastChangeTime\":\"0:01:21.77\",\"lastInBytes\":1923517643,\"lastOutBytes\":2457240088,\"outBytes\":2457240088,\"outFlow\":10169,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":419332,\"inBytes\":84210072,\"inFlow\":409112,\"lastChangeTime\":\"0:01:21.79\",\"lastInBytes\":84210072,\"lastOutBytes\":1676026995,\"outBytes\":1676026995,\"outFlow\":10219,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":500721,\"inBytes\":4174938563,\"inFlow\":490056,\"lastChangeTime\":\"0:01:22.31\",\"lastInBytes\":4174938563,\"lastOutBytes\":3642160983,\"outBytes\":3642160983,\"outFlow\":10664,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":910573,\"inBytes\":2983915823,\"inFlow\":888365,\"lastChangeTime\":\"0:01:22.20\",\"lastInBytes\":2983915823,\"lastOutBytes\":4153166539,\"outBytes\":4153166539,\"outFlow\":22208,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":420100,\"inBytes\":3857016731,\"inFlow\":409815,\"lastChangeTime\":\"0:01:21.78\",\"lastInBytes\":3857016731,\"lastOutBytes\":2716663230,\"outBytes\":2716663230,\"outFlow\":10284,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":556586,\"inBytes\":1784460043,\"inFlow\":543662,\"lastChangeTime\":\"232 days, 22:39:29.28\",\"lastInBytes\":1784460043,\"lastOutBytes\":2686241646,\"outBytes\":2686241646,\"outFlow\":12923,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":18541199,\"inBytes\":3337525053,\"inFlow\":378325,\"lastChangeTime\":\"208 days, 15:34:45.91\",\"lastInBytes\":3337525053,\"lastOutBytes\":58,\"outBytes\":58,\"outFlow\":18162874,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":462757,\"inBytes\":100580202,\"inFlow\":452874,\"lastChangeTime\":\"0:01:22.32\",\"lastInBytes\":100580202,\"lastOutBytes\":2726753006,\"outBytes\":2726753006,\"outFlow\":9883,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":263586923,\"inFlow\":2,\"lastChangeTime\":\"0:01:21.79\",\"lastInBytes\":263586923,\"lastOutBytes\":2389149584,\"outBytes\":2389149584,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3835060,\"inBytes\":4189891077,\"inFlow\":93459,\"lastChangeTime\":\"132 days, 0:19:08.50\",\"lastInBytes\":4189891077,\"lastOutBytes\":1170671936,\"outBytes\":1170671936,\"outFlow\":3741600,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.056133000\"}}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372433", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:08", + "echoMap": {}, + "deviceId": "1011040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89558\",\"inUnknownProtos\":\"2594573036\",\"index\":\"635\",\"lastChange\":\"0:01:20.69\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:42:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3450379892\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84913495\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:08\",\"info\":{\"portInfoList\":[{\"flow\":843954,\"inBytes\":679568650,\"inFlow\":823205,\"lastChangeTime\":\"208 days, 15:22:28.57\",\"lastInBytes\":679568650,\"lastOutBytes\":2407216563,\"outBytes\":2407216563,\"outFlow\":20748,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":388493,\"inBytes\":2610661615,\"inFlow\":378969,\"lastChangeTime\":\"208 days, 15:22:26.55\",\"lastInBytes\":2610661615,\"lastOutBytes\":1725862002,\"outBytes\":1725862002,\"outFlow\":9523,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":388826,\"inBytes\":3100139404,\"inFlow\":379320,\"lastChangeTime\":\"208 days, 15:22:30.17\",\"lastInBytes\":3100139404,\"lastOutBytes\":1859103489,\"outBytes\":1859103489,\"outFlow\":9505,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":18317693,\"inBytes\":965805149,\"inFlow\":887690,\"lastChangeTime\":\"208 days, 15:22:30.86\",\"lastInBytes\":965805149,\"lastOutBytes\":2196180490,\"outBytes\":2196180490,\"outFlow\":17430003,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":910286,\"inBytes\":1502710726,\"inFlow\":887967,\"lastChangeTime\":\"208 days, 15:22:21.90\",\"lastInBytes\":1502710726,\"lastOutBytes\":738550125,\"outBytes\":738550125,\"outFlow\":22319,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":419998,\"inBytes\":186309967,\"inFlow\":409735,\"lastChangeTime\":\"208 days, 15:22:23.93\",\"lastInBytes\":186309967,\"lastOutBytes\":2594573036,\"outBytes\":2594573036,\"outFlow\":10262,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":420145,\"inBytes\":987423645,\"inFlow\":409864,\"lastChangeTime\":\"208 days, 15:22:23.16\",\"lastInBytes\":987423645,\"lastOutBytes\":4007789085,\"outBytes\":4007789085,\"outFlow\":10281,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":421623,\"inBytes\":916547538,\"inFlow\":411296,\"lastChangeTime\":\"208 days, 15:22:23.34\",\"lastInBytes\":916547538,\"lastOutBytes\":139274517,\"outBytes\":139274517,\"outFlow\":10327,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1294147,\"inBytes\":1374882371,\"inFlow\":1264767,\"lastChangeTime\":\"140 days, 10:57:56.07\",\"lastInBytes\":1374882371,\"lastOutBytes\":419460823,\"outBytes\":419460823,\"outFlow\":29380,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":388665,\"inBytes\":3663457670,\"inFlow\":379134,\"lastChangeTime\":\"208 days, 15:22:32.84\",\"lastInBytes\":3663457670,\"lastOutBytes\":2863767440,\"outBytes\":2863767440,\"outFlow\":9530,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":263585429,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.69\",\"lastInBytes\":263585429,\"lastOutBytes\":2388482746,\"outBytes\":2388482746,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6680252,\"inBytes\":529753775,\"inFlow\":167444,\"lastChangeTime\":\"132 days, 0:06:44.45\",\"lastInBytes\":529753775,\"lastOutBytes\":599471528,\"outBytes\":599471528,\"outFlow\":6512807,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.108101000\"}}", + "lastDiagTime": "2026-02-02 14:38:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372434", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1011040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"141939\",\"inUnknownProtos\":\"374812601\",\"index\":\"635\",\"lastChange\":\"0:01:16.32\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:41:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3866777931\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"160764075\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:09\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":1127823,\"inFlow\":0,\"lastChangeTime\":\"167 days, 7:41:05.33\",\"lastInBytes\":1127823,\"lastOutBytes\":51426127,\"outBytes\":51426127,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":280446,\"inBytes\":3345765218,\"inFlow\":273397,\"lastChangeTime\":\"12:40:28.79\",\"lastInBytes\":3345765218,\"lastOutBytes\":3878886358,\"outBytes\":3878886358,\"outFlow\":7049,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":280402,\"inBytes\":4173868233,\"inFlow\":273508,\"lastChangeTime\":\"12:40:28.19\",\"lastInBytes\":4173868233,\"lastOutBytes\":1864330483,\"outBytes\":1864330483,\"outFlow\":6894,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":420072,\"inBytes\":2945798657,\"inFlow\":409691,\"lastChangeTime\":\"12:52:16.94\",\"lastInBytes\":2945798657,\"lastOutBytes\":364743373,\"outBytes\":364743373,\"outFlow\":10380,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":631796,\"inBytes\":3426396998,\"inFlow\":615365,\"lastChangeTime\":\"19 days, 8:25:18.60\",\"lastInBytes\":3426396998,\"lastOutBytes\":633986261,\"outBytes\":633986261,\"outFlow\":16431,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":280446,\"inBytes\":2428244924,\"inFlow\":273369,\"lastChangeTime\":\"19 days, 8:19:28.50\",\"lastInBytes\":2428244924,\"lastOutBytes\":374812601,\"outBytes\":374812601,\"outFlow\":7077,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":280695,\"inBytes\":2369151634,\"inFlow\":273523,\"lastChangeTime\":\"0:01:18.81\",\"lastInBytes\":2369151634,\"lastOutBytes\":4164169601,\"outBytes\":4164169601,\"outFlow\":7172,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":280707,\"inBytes\":1470472652,\"inFlow\":273616,\"lastChangeTime\":\"197 days, 11:20:36.93\",\"lastInBytes\":1470472652,\"lastOutBytes\":2658153583,\"outBytes\":2658153583,\"outFlow\":7090,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":280469,\"inBytes\":2888441483,\"inFlow\":273602,\"lastChangeTime\":\"0:01:18.22\",\"lastInBytes\":2888441483,\"lastOutBytes\":195693037,\"outBytes\":195693037,\"outFlow\":6867,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":280645,\"inBytes\":2707632414,\"inFlow\":273739,\"lastChangeTime\":\"0:01:18.22\",\"lastInBytes\":2707632414,\"lastOutBytes\":1394934005,\"outBytes\":1394934005,\"outFlow\":6906,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":420189,\"inBytes\":2925552184,\"inFlow\":409795,\"lastChangeTime\":\"12:52:17.35\",\"lastInBytes\":2925552184,\"lastOutBytes\":1860504687,\"outBytes\":1860504687,\"outFlow\":10393,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":282654,\"inBytes\":159519366,\"inFlow\":275550,\"lastChangeTime\":\"19 days, 8:22:24.81\",\"lastInBytes\":159519366,\"lastOutBytes\":2521575121,\"outBytes\":2521575121,\"outFlow\":7104,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":280567,\"inBytes\":1411342481,\"inFlow\":273519,\"lastChangeTime\":\"19 days, 8:22:24.31\",\"lastInBytes\":1411342481,\"lastOutBytes\":903448360,\"outBytes\":903448360,\"outFlow\":7047,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":280450,\"inBytes\":1524941206,\"inFlow\":273403,\"lastChangeTime\":\"235 days, 12:24:51.51\",\"lastInBytes\":1524941206,\"lastOutBytes\":65266156,\"outBytes\":65266156,\"outFlow\":7046,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":280501,\"inBytes\":556263232,\"inFlow\":273616,\"lastChangeTime\":\"235 days, 12:25:06.31\",\"lastInBytes\":556263232,\"lastOutBytes\":2600114844,\"outBytes\":2600114844,\"outFlow\":6885,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":88,\"inBytes\":263695446,\"inFlow\":1,\"lastChangeTime\":\"197 days, 11:20:32.63\",\"lastInBytes\":263695446,\"lastOutBytes\":3842613224,\"outBytes\":3842613224,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4578591,\"inBytes\":3116621257,\"inFlow\":117823,\"lastChangeTime\":\"299 days, 7:05:15.71\",\"lastInBytes\":3116621257,\"lastOutBytes\":1655479697,\"outBytes\":1655479697,\"outFlow\":4460767,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.183406000\"}}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372435", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:08", + "echoMap": {}, + "deviceId": "1011040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"89525\",\"inUnknownProtos\":\"642631050\",\"index\":\"635\",\"lastChange\":\"0:01:19.24\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4a:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"490483771\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84883201\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:08\",\"info\":{\"portInfoList\":[{\"flow\":987148,\"inBytes\":2935376764,\"inFlow\":967366,\"lastChangeTime\":\"0:01:21.87\",\"lastInBytes\":2935376764,\"lastOutBytes\":2325153976,\"outBytes\":2325153976,\"outFlow\":19781,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":910373,\"inBytes\":4194872772,\"inFlow\":888132,\"lastChangeTime\":\"208 days, 14:51:57.83\",\"lastInBytes\":4194872772,\"lastOutBytes\":3380669844,\"outBytes\":3380669844,\"outFlow\":22240,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":420108,\"inBytes\":776719554,\"inFlow\":409892,\"lastChangeTime\":\"208 days, 14:52:01.88\",\"lastInBytes\":776719554,\"lastOutBytes\":449426185,\"outBytes\":449426185,\"outFlow\":10216,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":910340,\"inBytes\":3416764423,\"inFlow\":887961,\"lastChangeTime\":\"208 days, 14:51:50.65\",\"lastInBytes\":3416764423,\"lastOutBytes\":3180538575,\"outBytes\":3180538575,\"outFlow\":22379,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":633804,\"inBytes\":523362926,\"inFlow\":617522,\"lastChangeTime\":\"232 days, 21:50:46.38\",\"lastInBytes\":523362926,\"lastOutBytes\":1027175653,\"outBytes\":1027175653,\"outFlow\":16281,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":628462,\"inBytes\":832890950,\"inFlow\":612775,\"lastChangeTime\":\"232 days, 21:49:40.56\",\"lastInBytes\":832890950,\"lastOutBytes\":642631050,\"outBytes\":642631050,\"outFlow\":15686,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419560,\"inBytes\":620740371,\"inFlow\":409315,\"lastChangeTime\":\"208 days, 14:51:47.80\",\"lastInBytes\":620740371,\"lastOutBytes\":2073865407,\"outBytes\":2073865407,\"outFlow\":10244,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":420377,\"inBytes\":2072931521,\"inFlow\":410165,\"lastChangeTime\":\"0:01:21.87\",\"lastInBytes\":2072931521,\"lastOutBytes\":1496596444,\"outBytes\":1496596444,\"outFlow\":10211,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":419355,\"inBytes\":3528591161,\"inFlow\":409126,\"lastChangeTime\":\"208 days, 14:51:54.57\",\"lastInBytes\":3528591161,\"lastOutBytes\":2940711395,\"outBytes\":2940711395,\"outFlow\":10228,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1391141,\"inBytes\":3251284533,\"inFlow\":1359430,\"lastChangeTime\":\"232 days, 21:50:34.68\",\"lastInBytes\":3251284533,\"lastOutBytes\":297883331,\"outBytes\":297883331,\"outFlow\":31710,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":419714,\"inBytes\":1410898406,\"inFlow\":409439,\"lastChangeTime\":\"0:01:21.17\",\"lastInBytes\":1410898406,\"lastOutBytes\":726473984,\"outBytes\":726473984,\"outFlow\":10275,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":263604637,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.15\",\"lastInBytes\":263604637,\"lastOutBytes\":2387540819,\"outBytes\":2387540819,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7592994,\"inBytes\":887039555,\"inFlow\":186899,\"lastChangeTime\":\"232 days, 21:49:36.07\",\"lastInBytes\":887039555,\"lastOutBytes\":3859888676,\"outBytes\":3859888676,\"outFlow\":7406095,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.053944000\"}}", + "lastDiagTime": "2026-02-02 14:38:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372436", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:08", + "echoMap": {}, + "deviceId": "1011040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"142386\",\"inUnknownProtos\":\"3991173678\",\"index\":\"635\",\"lastChange\":\"167 days, 8:03:27.34\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:32:8b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"239066363\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"160745495\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:08\",\"info\":{\"portInfoList\":[{\"flow\":910827,\"inBytes\":137658164,\"inFlow\":888170,\"lastChangeTime\":\"375 days, 22:21:03.02\",\"lastInBytes\":137658164,\"lastOutBytes\":483795243,\"outBytes\":483795243,\"outFlow\":22656,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":13177112,\"inBytes\":3055042882,\"inFlow\":821636,\"lastChangeTime\":\"375 days, 22:20:48.49\",\"lastInBytes\":3055042882,\"lastOutBytes\":152,\"outBytes\":152,\"outFlow\":12355475,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":843778,\"inBytes\":1816549725,\"inFlow\":822990,\"lastChangeTime\":\"375 days, 22:21:00.32\",\"lastInBytes\":1816549725,\"lastOutBytes\":2649249467,\"outBytes\":2649249467,\"outFlow\":20787,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1301118,\"inBytes\":2397030614,\"inFlow\":1271459,\"lastChangeTime\":\"307 days, 17:56:24.09\",\"lastInBytes\":2397030614,\"lastOutBytes\":4021500298,\"outBytes\":4021500298,\"outFlow\":29659,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":840504,\"inBytes\":1128397980,\"inFlow\":820096,\"lastChangeTime\":\"0:01:16.18\",\"lastInBytes\":1128397980,\"lastOutBytes\":4132474120,\"outBytes\":4132474120,\"outFlow\":20408,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":841999,\"inBytes\":1660468111,\"inFlow\":821250,\"lastChangeTime\":\"0:01:16.89\",\"lastInBytes\":1660468111,\"lastOutBytes\":3990952837,\"outBytes\":3990952837,\"outFlow\":20749,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":840142,\"inBytes\":1788338478,\"inFlow\":819528,\"lastChangeTime\":\"0:01:16.18\",\"lastInBytes\":1788338478,\"lastOutBytes\":3730438213,\"outBytes\":3730438213,\"outFlow\":20613,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":845224,\"inBytes\":1634572749,\"inFlow\":824063,\"lastChangeTime\":\"375 days, 22:20:46.85\",\"lastInBytes\":1634572749,\"lastOutBytes\":3904455870,\"outBytes\":3904455870,\"outFlow\":21161,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":913426,\"inBytes\":2388846742,\"inFlow\":890617,\"lastChangeTime\":\"375 days, 22:20:49.07\",\"lastInBytes\":2388846742,\"lastOutBytes\":159056918,\"outBytes\":159056918,\"outFlow\":22808,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":913735,\"inBytes\":927203673,\"inFlow\":890786,\"lastChangeTime\":\"375 days, 22:20:53.03\",\"lastInBytes\":927203673,\"lastOutBytes\":990117940,\"outBytes\":990117940,\"outFlow\":22949,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":557416,\"inBytes\":2233676627,\"inFlow\":544356,\"lastChangeTime\":\"307 days, 17:56:22.52\",\"lastInBytes\":2233676627,\"lastOutBytes\":3586255784,\"outBytes\":3586255784,\"outFlow\":13059,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3420796706,\"inFlow\":0,\"lastChangeTime\":\"167 days, 8:04:23.87\",\"lastInBytes\":3420796706,\"lastOutBytes\":4046643360,\"outBytes\":4046643360,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":280174,\"inBytes\":1980183736,\"inFlow\":273430,\"lastChangeTime\":\"255 days, 4:43:25.98\",\"lastInBytes\":1980183736,\"lastOutBytes\":59495265,\"outBytes\":59495265,\"outFlow\":6744,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":86328,\"inFlow\":0,\"lastChangeTime\":\"255 days, 4:52:04.33\",\"lastInBytes\":86328,\"lastOutBytes\":3633519,\"outBytes\":3633519,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":263549316,\"inFlow\":2,\"lastChangeTime\":\"255 days, 4:53:28.33\",\"lastInBytes\":263549316,\"lastOutBytes\":3838180815,\"outBytes\":3838180815,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9687942,\"inBytes\":3064717544,\"inFlow\":246525,\"lastChangeTime\":\"299 days, 7:05:14.61\",\"lastInBytes\":3064717544,\"lastOutBytes\":1064239445,\"outBytes\":1064239445,\"outFlow\":9441416,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.058532000\"}}", + "lastDiagTime": "2026-02-02 14:38:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372437", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1011040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface150\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"142669\",\"inUnknownProtos\":\"2026816750\",\"index\":\"635\",\"lastChange\":\"167 days, 8:09:04.37\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4b:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"608014966\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"160751049\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:09\",\"info\":{\"portInfoList\":[{\"flow\":1421177,\"inBytes\":3315293661,\"inFlow\":1388795,\"lastChangeTime\":\"307 days, 17:56:29.67\",\"lastInBytes\":3315293661,\"lastOutBytes\":2629660496,\"outBytes\":2629660496,\"outFlow\":32381,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":914230,\"inBytes\":2756381701,\"inFlow\":891295,\"lastChangeTime\":\"400 days, 6:01:48.51\",\"lastInBytes\":2756381701,\"lastOutBytes\":2652373982,\"outBytes\":2652373982,\"outFlow\":22935,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":913863,\"inBytes\":4047314155,\"inFlow\":891166,\"lastChangeTime\":\"400 days, 6:01:57.63\",\"lastInBytes\":4047314155,\"lastOutBytes\":4241408681,\"outBytes\":4241408681,\"outFlow\":22697,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":912125,\"inBytes\":782746272,\"inFlow\":889538,\"lastChangeTime\":\"400 days, 6:01:42.78\",\"lastInBytes\":782746272,\"lastOutBytes\":2534346507,\"outBytes\":2534346507,\"outFlow\":22587,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":912041,\"inBytes\":2854382281,\"inFlow\":889617,\"lastChangeTime\":\"400 days, 6:01:43.03\",\"lastInBytes\":2854382281,\"lastOutBytes\":3024588724,\"outBytes\":3024588724,\"outFlow\":22424,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":631555,\"inBytes\":3459269976,\"inFlow\":615609,\"lastChangeTime\":\"400 days, 6:01:48.25\",\"lastInBytes\":3459269976,\"lastOutBytes\":2026816750,\"outBytes\":2026816750,\"outFlow\":15946,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":910733,\"inBytes\":3072604900,\"inFlow\":888141,\"lastChangeTime\":\"400 days, 6:01:45.49\",\"lastInBytes\":3072604900,\"lastOutBytes\":4290012013,\"outBytes\":4290012013,\"outFlow\":22592,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":913750,\"inBytes\":22084226,\"inFlow\":891544,\"lastChangeTime\":\"400 days, 6:01:42.59\",\"lastInBytes\":22084226,\"lastOutBytes\":876915855,\"outBytes\":876915855,\"outFlow\":22206,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":913559,\"inBytes\":3253566912,\"inFlow\":890655,\"lastChangeTime\":\"400 days, 6:01:50.84\",\"lastInBytes\":3253566912,\"lastOutBytes\":2279258162,\"outBytes\":2279258162,\"outFlow\":22903,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":913535,\"inBytes\":3513275195,\"inFlow\":890820,\"lastChangeTime\":\"400 days, 6:01:46.96\",\"lastInBytes\":3513275195,\"lastOutBytes\":2727183129,\"outBytes\":2727183129,\"outFlow\":22715,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":914686,\"inBytes\":482240024,\"inFlow\":891862,\"lastChangeTime\":\"400 days, 6:01:45.28\",\"lastInBytes\":482240024,\"lastOutBytes\":244721218,\"outBytes\":244721218,\"outFlow\":22824,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1115379,\"inBytes\":3207812117,\"inFlow\":1087330,\"lastChangeTime\":\"400 days, 6:01:35.55\",\"lastInBytes\":3207812117,\"lastOutBytes\":2321766692,\"outBytes\":2321766692,\"outFlow\":28048,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":569427,\"inBytes\":3114713557,\"inFlow\":555521,\"lastChangeTime\":\"400 days, 6:01:40.28\",\"lastInBytes\":3114713557,\"lastOutBytes\":1170047276,\"outBytes\":1170047276,\"outFlow\":13905,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":6132790,\"inFlow\":0,\"lastChangeTime\":\"366 days, 11:24:45.29\",\"lastInBytes\":6132790,\"lastOutBytes\":249026438,\"outBytes\":249026438,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":263536643,\"inFlow\":1,\"lastChangeTime\":\"255 days, 4:57:56.49\",\"lastInBytes\":263536643,\"lastOutBytes\":3839930387,\"outBytes\":3839930387,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":12003929,\"inBytes\":2058330695,\"inFlow\":307759,\"lastChangeTime\":\"299 days, 7:05:21.47\",\"lastInBytes\":2058330695,\"lastOutBytes\":3173064065,\"outBytes\":3173064065,\"outFlow\":11696170,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:05.051721000\"}}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372438", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1011040012", + "name": "华为前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif150\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"299 days, 6:45:50.45\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:52\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":539326,\"inBytes\":1286701295,\"inFlow\":527283,\"lastChangeTime\":\"307 days, 17:36:20.59\",\"lastInBytes\":1286701295,\"lastOutBytes\":737211338,\"outBytes\":737211338,\"outFlow\":12042,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":546230,\"inBytes\":4050175928,\"inFlow\":13108,\"lastChangeTime\":\"299 days, 6:45:48.80\",\"lastInBytes\":4050175928,\"lastOutBytes\":1787681441,\"outBytes\":1787681441,\"outFlow\":533122,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:25.740784000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589886605322372439", + "createdBy": "0", + "createdTime": "2025-02-24 13:45:26", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:54", + "echoMap": {}, + "deviceId": "1011040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.150.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif150\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"1:48:19.47\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:43\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.150.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":10912,\"inFlow\":0,\"lastChangeTime\":\"0:16:10.93\",\"lastInBytes\":10912,\"lastOutBytes\":130449,\"outBytes\":130449,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":1095412,\"inBytes\":3291831272,\"inFlow\":1071473,\"lastChangeTime\":\"49 days, 12:37:24.93\",\"lastInBytes\":3291831272,\"lastOutBytes\":2227249516,\"outBytes\":2227249516,\"outFlow\":23939,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1098828,\"inBytes\":462009102,\"inFlow\":25869,\"lastChangeTime\":\"284 days, 9:10:38.66\",\"lastInBytes\":462009102,\"lastOutBytes\":2019152909,\"outBytes\":2019152909,\"outFlow\":1072958,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:23.421828000\"}}", + "lastDiagTime": "2026-02-02 14:37:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589886605322372396", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:03", + "echoMap": {}, + "deviceId": "1011110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.149.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.77\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"129 days, 10:42:34.24\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10775701\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28871206\",\"inOctets\":\"1472007241\",\"inUcastPkts\":\"1479200842\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"473 days, 8:35:49.70\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ac:f0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2517859843\",\"outQLen\":\"0\",\"outUcastPkts\":\"1387899775\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.149.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1012": { + "ndmAlarmHost": [ + { + "id": "690765641831238661", + "createdBy": null, + "createdTime": "2025-10-23 08:38:56", + "updatedBy": null, + "updatedTime": "2025-12-15 14:49:56", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.151.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048109000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "690765646126205960", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1012060001", + "name": "[604](10)陕西南弱电集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048005012604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205961", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1012060002", + "name": "[608](10)陕西南屏蔽门工具室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048005012608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205962", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1012060003", + "name": "[605](10)陕西南弱电集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048005012605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205963", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1012060004", + "name": "[606](10)陕西南弱电集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048005012606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205964", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1012060005", + "name": "[607](10)陕西南弱电集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048005012607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205965", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1012060006", + "name": "[616](10)陕西南内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205966", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1012060007", + "name": "[702](10)陕西南下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061204013006012702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205967", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1012060008", + "name": "[619](10)陕西南变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203021006012619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205968", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1012060009", + "name": "[615](10)陕西南内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203021006012615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205969", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060010", + "name": "[701](10)陕西南上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061204013006012701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205970", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060011", + "name": "[620](10)陕西南变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203021006012620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205971", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060012", + "name": "[107](10)陕西南下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202012006012107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205972", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060013", + "name": "[108](10)陕西南下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202012006012108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205973", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060014", + "name": "[316](10)陕西南#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202017006012316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205974", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060015", + "name": "[106](10)陕西南上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202007006012106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205975", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060016", + "name": "[206](10)陕西南上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202001004012206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205976", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060017", + "name": "[105](10)陕西南上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202007006012105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205977", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060018", + "name": "[109](10)陕西南下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202012006012109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205978", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060019", + "name": "[110](10)陕西南下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202012006012110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205979", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060020", + "name": "[207](10)陕西南下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202001004012207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205980", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060021", + "name": "[327](10)陕西南B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202002006012327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205981", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060022", + "name": "[317](10)陕西南#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202017006012317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205982", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060023", + "name": "[205](10)陕西南上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202001004012205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205983", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060024", + "name": "[104](10)陕西南上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202007006012104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205984", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060025", + "name": "[103](10)陕西南上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202007006012103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205985", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060026", + "name": "[112](10)陕西南下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202012006012112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205986", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060027", + "name": "[111](10)陕西南下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202012006012111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205987", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060028", + "name": "[208](10)陕西南下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202001004012208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205988", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060029", + "name": "[318](10)陕西南10-12换乘楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202017006012318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205989", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1012060030", + "name": "[319](10)陕西南10-12换乘楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202017006012319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205990", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1012060031", + "name": "[101](10)陕西南上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202007006012101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205991", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1012060032", + "name": "[102](10)陕西南上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202007006012102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205992", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1012060033", + "name": "[320](10)陕西南10-12换乘楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202017006012320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205993", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1012060034", + "name": "[335](10)陕西南10-12换乘入8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205994", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1012060035", + "name": "[334](10)陕西南10-12换乘入7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205995", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1012060036", + "name": "[333](10)陕西南10-12换乘入6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205996", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1012060037", + "name": "[332](10)陕西南10-12换乘入5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205997", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060038", + "name": "[204](10)陕西南厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201035004012204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205998", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060039", + "name": "[315](10)陕西南#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201045006012315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126205999", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060040", + "name": "[314](10)陕西南#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201045006012314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206000", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060041", + "name": "[313](10)陕西南#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201045006012313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206001", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060042", + "name": "[614](10)陕西南内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206002", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1012060043", + "name": "[301](10)陕西南6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201060006012301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206003", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-12 10:05:56", + "echoMap": {}, + "deviceId": "1012060044", + "name": "[203](10)陕西南厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201035004012203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206004", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-12 10:05:56", + "echoMap": {}, + "deviceId": "1012060045", + "name": "[304](10)陕西南6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201060006012304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206005", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-12 10:05:56", + "echoMap": {}, + "deviceId": "1012060046", + "name": "[209](10)陕西南6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201060004012209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206006", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060047", + "name": "[302](10)陕西南6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201060006012302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206007", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-12 10:05:56", + "echoMap": {}, + "deviceId": "1012060048", + "name": "[303](10)陕西南6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201060006012303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206008", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1012060049", + "name": "[331](10)陕西南10-12换乘入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206009", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060050", + "name": "[330](10)陕西南10-12换乘入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206010", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2026-02-02 03:33:47", + "echoMap": {}, + "deviceId": "1012060051", + "name": "[329](10)陕西南10-12换乘入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206011", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060052", + "name": "[328](10)陕西南10-12换乘入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201081006012328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206012", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-12 10:01:56", + "echoMap": {}, + "deviceId": "1012060053", + "name": "[202](10)陕西南厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201035004012202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206013", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060054", + "name": "[337](10)陕西南安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201085006012337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206014", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1012060055", + "name": "[502](10)陕西南票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201030006012502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206015", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-12 10:01:56", + "echoMap": {}, + "deviceId": "1012060056", + "name": "[336](10)陕西南1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201036005012336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206016", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060057", + "name": "[322](10)陕西南B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201040006012322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206017", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060058", + "name": "[312](10)陕西南#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201045006012312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206018", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1012060059", + "name": "[311](10)陕西南#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201045006012311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206019", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060060", + "name": "[310](10)陕西南#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201045006012310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206020", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060061", + "name": "[404](10)陕西南2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201006006012404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206021", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060062", + "name": "[403](10)陕西南2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201006006012403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206022", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060063", + "name": "[402](10)陕西南1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201005006012402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206023", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2026-01-19 00:06:47", + "echoMap": {}, + "deviceId": "1012060064", + "name": "[503](10)陕西南票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201025006012503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206024", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060065", + "name": "[401](10)陕西南1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201005006012401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206025", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060066", + "name": "[308](10)陕西南7#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201061006012308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206026", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060067", + "name": "[617](10)陕西南消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206027", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060068", + "name": "[618](10)陕西南消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765646126206028", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060069", + "name": "[309](10)陕西南7#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201061006012309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173248", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060070", + "name": "[210](10)陕西南7#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201061004012210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173249", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060071", + "name": "[306](10)陕西南7#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201061006012306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173250", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060072", + "name": "[307](10)陕西南7#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201061006012307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173251", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1012060073", + "name": "[601](10)陕西南编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203041005012601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173252", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060074", + "name": "[602](10)陕西南编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203041005012602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173253", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060075", + "name": "[612](10)陕西南内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173254", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060076", + "name": "[613](10)陕西南内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173255", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060077", + "name": "[603](10)陕西南编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203041005012603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173256", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060078", + "name": "[201](10)陕西南厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201035004012201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173257", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1012060079", + "name": "[305](10)陕西南7#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201061006012305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173258", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-16 00:00:00", + "echoMap": {}, + "deviceId": "1012060080", + "name": "[610](10)陕西南环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203053005012610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173259", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-12-19 00:00:00", + "echoMap": {}, + "deviceId": "1012060081", + "name": "[609](10)陕西南内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001005012609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173260", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060082", + "name": "[326](10)陕西南B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201040006012326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173261", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060083", + "name": "[501](10)陕西南票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201030006012501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173262", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060084", + "name": "[321](10)陕西南公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201040006012321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173263", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060085", + "name": "[611](10)陕西南内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203001006012611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173264", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060086", + "name": "[323](10)陕西南新鸿基广场1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201040006012323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173265", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060087", + "name": "[324](10)陕西南新鸿基广场2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201040006012324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173266", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060088", + "name": "[325](10)陕西南新鸿基广场3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061201040006012325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765650421173267", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1012060089", + "name": "[704](10)陕西南陕西南图书馆下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061204012004012704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140544", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060090", + "name": "[703](10)陕西南陕西南图书馆上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061204012004012703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140545", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060091", + "name": "[706](10)陕西南陕西南新天地下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061204012004012706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140546", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060092", + "name": "[705](10)陕西南陕西南新天地上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061204012004012705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140547", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060093", + "name": "[621](10)陕西南消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203068005012621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140548", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060094", + "name": "[622](10)陕西南气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203067005012622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140549", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060095", + "name": "[623](10)陕西南通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061203048005012623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140550", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060096", + "name": "[624](10)陕西南公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202002005012624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690765654716140551", + "createdBy": "0", + "createdTime": "2025-10-23 08:42:56", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1012060097", + "name": "[625](10)陕西南公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.151.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061202002006012625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589887228094493795", + "createdBy": "0", + "createdTime": "2025-02-24 13:56:50", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1012070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.151.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061200000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"2342749\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"948024947\",\"inUcastPkts\":\"3887757086\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ee:25\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2126852535\",\"outQLen\":\"0\",\"outUcastPkts\":\"1111940780\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.151.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:47\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZ1065C\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"43\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589887228094493831", + "createdBy": "2", + "createdTime": "2025-02-24 13:58:43", + "updatedBy": null, + "updatedTime": "2025-12-23 10:11:57", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.151.51", + "manageUrl": "http:\\\\10.18.151.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493832", + "createdBy": "2", + "createdTime": "2025-02-24 13:59:03", + "updatedBy": null, + "updatedTime": "2025-12-23 10:11:52", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.151.52", + "manageUrl": "http:\\\\10.18.151.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589887228094493797", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1012090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.151.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.93\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"206 days, 0:48:33.42\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3548930\",\"inErrors\":\"0\",\"inNUcastPkts\":\"9494887\",\"inOctets\":\"3253138237\",\"inUcastPkts\":\"1767652168\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:47:74\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2620689563\",\"outQLen\":\"0\",\"outUcastPkts\":\"4224330318\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.151.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589887228094493792", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 13:56:45", + "echoMap": {}, + "deviceId": "1012050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.151.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061200000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.151.22;10.18.151.23" + }, + { + "id": "589887228094493793", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1012050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.151.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061200000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"1552873\",\"inErrors\":\"0\",\"inNUcastPkts\":\"25090984\",\"inOctets\":\"3195185054\",\"inUcastPkts\":\"2162257693\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:73:3f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4238882878\",\"outQLen\":\"0\",\"outUcastPkts\":\"1597968123\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3240\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3220\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.151.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:47\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":914640411,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15122\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.151.22" + }, + { + "id": "589887228094493794", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1012050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.151.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061200000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"713346\",\"inErrors\":\"0\",\"inNUcastPkts\":\"3597032\",\"inOctets\":\"3890152040\",\"inUcastPkts\":\"865837340\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:6d:a1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4031202033\",\"outQLen\":\"0\",\"outUcastPkts\":\"487782792\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.151.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:48\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":914640411,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15123\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"45\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.151.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589887228094493815", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:55", + "echoMap": {}, + "deviceId": "1012030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:35:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493816", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:03", + "echoMap": {}, + "deviceId": "1012030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493817", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:03", + "echoMap": {}, + "deviceId": "1012030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2533916\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139477964\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"66 days, 14:54:12.56\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2533921\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:61\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24700001,\"status\":1,\"voltage\":26.183},{\"current\":0.26500002,\"status\":1,\"voltage\":26.183},{\"current\":0.25300002,\"status\":1,\"voltage\":26.183},{\"current\":0.257,\"status\":1,\"voltage\":26.183},{\"current\":0.53800005,\"status\":1,\"voltage\":26.183},{\"current\":0.25800002,\"status\":1,\"voltage\":26.183},{\"current\":0.23400001,\"status\":1,\"voltage\":26.183},{\"current\":0.001,\"status\":1,\"voltage\":26.183},{\"current\":0.001,\"status\":1,\"voltage\":26.183},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.003,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302401\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493818", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:04", + "echoMap": {}, + "deviceId": "1012030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2533081\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139430862\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"66 days, 19:21:30.93\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2533086\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:1f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":25.832},{\"current\":0.24400002,\"status\":1,\"voltage\":25.832},{\"current\":0.505,\"status\":1,\"voltage\":25.832},{\"current\":0.23700002,\"status\":1,\"voltage\":25.832},{\"current\":0.268,\"status\":1,\"voltage\":25.832},{\"current\":0.51600003,\"status\":1,\"voltage\":25.832},{\"current\":0.24400002,\"status\":1,\"voltage\":25.832},{\"current\":0.23700002,\"status\":1,\"voltage\":25.832},{\"current\":0.252,\"status\":1,\"voltage\":25.832},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.003,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300031\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493819", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:04", + "echoMap": {}, + "deviceId": "1012030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2533081\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139430544\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"66 days, 16:00:53.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2533086\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:48\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.289,\"status\":1,\"voltage\":26.249},{\"current\":0.256,\"status\":1,\"voltage\":26.249},{\"current\":0.569,\"status\":1,\"voltage\":26.249},{\"current\":0.31500003,\"status\":1,\"voltage\":26.249},{\"current\":0.24400002,\"status\":1,\"voltage\":26.249},{\"current\":0.24000001,\"status\":1,\"voltage\":26.249},{\"current\":0.25,\"status\":1,\"voltage\":26.249},{\"current\":0.209,\"status\":1,\"voltage\":26.249},{\"current\":0.001,\"status\":1,\"voltage\":26.249},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.002,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.001,\"status\":1,\"voltage\":26.143002},{\"current\":0.0,\"status\":1,\"voltage\":26.143002},{\"current\":0.0,\"status\":1,\"voltage\":26.143002}],\"fanSpeeds\":[1290,1290],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301031\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493820", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:04", + "echoMap": {}, + "deviceId": "1012030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2534250\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139494818\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"66 days, 21:32:34.36\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2534255\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:cf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37600002,\"status\":1,\"voltage\":26.076002},{\"current\":0.35500002,\"status\":1,\"voltage\":26.076002},{\"current\":0.37,\"status\":1,\"voltage\":26.076002},{\"current\":0.319,\"status\":1,\"voltage\":26.076002},{\"current\":0.56,\"status\":1,\"voltage\":26.076002},{\"current\":0.263,\"status\":1,\"voltage\":26.076002},{\"current\":0.256,\"status\":1,\"voltage\":26.076002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.076002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.076002},{\"current\":0.001,\"status\":1,\"voltage\":26.349},{\"current\":0.003,\"status\":1,\"voltage\":26.349},{\"current\":0.001,\"status\":1,\"voltage\":26.349},{\"current\":0.001,\"status\":1,\"voltage\":26.349},{\"current\":0.001,\"status\":1,\"voltage\":26.349},{\"current\":0.001,\"status\":1,\"voltage\":26.349},{\"current\":0.001,\"status\":1,\"voltage\":26.349}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300975\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493821", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:05", + "echoMap": {}, + "deviceId": "1012030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2533749\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139467240\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"66 days, 13:09:17.12\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2533754\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:9e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37,\"status\":1,\"voltage\":26.174002},{\"current\":0.545,\"status\":1,\"voltage\":26.174002},{\"current\":0.30100003,\"status\":1,\"voltage\":26.174002},{\"current\":0.513,\"status\":1,\"voltage\":26.174002},{\"current\":0.264,\"status\":1,\"voltage\":26.174002},{\"current\":0.30200002,\"status\":1,\"voltage\":26.174002},{\"current\":0.001,\"status\":1,\"voltage\":26.174002},{\"current\":0.001,\"status\":1,\"voltage\":26.174002},{\"current\":0.001,\"status\":1,\"voltage\":26.174002},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.003,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.001,\"status\":1,\"voltage\":26.29},{\"current\":0.0,\"status\":1,\"voltage\":26.29},{\"current\":0.0,\"status\":1,\"voltage\":26.29}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301438\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493822", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1012030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2533749\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"139467586\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"66 days, 16:15:58.56\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2533754\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:78\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25100002,\"status\":1,\"voltage\":26.225},{\"current\":0.25800002,\"status\":1,\"voltage\":26.225},{\"current\":0.26200002,\"status\":1,\"voltage\":26.225},{\"current\":0.26200002,\"status\":1,\"voltage\":26.225},{\"current\":0.51000005,\"status\":1,\"voltage\":26.225},{\"current\":0.22200002,\"status\":1,\"voltage\":26.225},{\"current\":0.257,\"status\":1,\"voltage\":26.225},{\"current\":0.001,\"status\":1,\"voltage\":26.225},{\"current\":0.24800001,\"status\":1,\"voltage\":26.225},{\"current\":0.41700003,\"status\":1,\"voltage\":26.179},{\"current\":0.003,\"status\":1,\"voltage\":26.179},{\"current\":0.001,\"status\":1,\"voltage\":26.179},{\"current\":0.001,\"status\":1,\"voltage\":26.179},{\"current\":0.001,\"status\":1,\"voltage\":26.179},{\"current\":0.001,\"status\":1,\"voltage\":26.179},{\"current\":0.001,\"status\":1,\"voltage\":26.179}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301400\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493823", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1012030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3084144\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"170163911\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"47 days, 16:21:11.62\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3084149\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:31\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.29500002,\"status\":1,\"voltage\":26.080002},{\"current\":0.28500003,\"status\":1,\"voltage\":26.080002},{\"current\":0.36600003,\"status\":1,\"voltage\":26.080002},{\"current\":0.35200003,\"status\":1,\"voltage\":26.080002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.080002},{\"current\":0.35700002,\"status\":1,\"voltage\":26.080002},{\"current\":0.38500002,\"status\":1,\"voltage\":26.080002},{\"current\":0.38500002,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.003,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301841\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493824", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1012030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3084144\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"170163272\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"47 days, 5:21:00.89\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3084149\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:e7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26500002,\"status\":1,\"voltage\":26.238},{\"current\":0.34100002,\"status\":1,\"voltage\":26.238},{\"current\":0.24300002,\"status\":1,\"voltage\":26.238},{\"current\":0.286,\"status\":1,\"voltage\":26.238},{\"current\":0.52900004,\"status\":1,\"voltage\":26.238},{\"current\":0.263,\"status\":1,\"voltage\":26.238},{\"current\":0.23200001,\"status\":1,\"voltage\":26.238},{\"current\":0.001,\"status\":1,\"voltage\":26.238},{\"current\":0.001,\"status\":1,\"voltage\":26.238},{\"current\":0.001,\"status\":1,\"voltage\":26.195002},{\"current\":0.003,\"status\":1,\"voltage\":26.195002},{\"current\":0.001,\"status\":1,\"voltage\":26.195002},{\"current\":0.001,\"status\":1,\"voltage\":26.195002},{\"current\":0.001,\"status\":1,\"voltage\":26.195002},{\"current\":0.001,\"status\":1,\"voltage\":26.195002},{\"current\":0.001,\"status\":1,\"voltage\":26.195002}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301767\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493825", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:15", + "echoMap": {}, + "deviceId": "1012030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493826", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:23", + "echoMap": {}, + "deviceId": "1012030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:34:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493827", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:23", + "echoMap": {}, + "deviceId": "1012030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2775557\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"152655649\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2775562\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:95\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":1,\"voltage\":26.092001},{\"current\":0.564,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":1,\"voltage\":26.092001},{\"current\":0.001,\"status\":0,\"voltage\":26.092001},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302324\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493828", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:23", + "echoMap": {}, + "deviceId": "1012030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2775557\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"152654239\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2775562\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:bd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":1,\"voltage\":26.107},{\"current\":0.56200004,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":1,\"voltage\":26.107},{\"current\":0.001,\"status\":0,\"voltage\":26.107},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302343\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493829", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:24", + "echoMap": {}, + "deviceId": "1012030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2775557\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"152656401\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2775562\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:15:35\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":1,\"voltage\":25.282001},{\"current\":0.55200005,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":1,\"voltage\":25.282001},{\"current\":0.001,\"status\":0,\"voltage\":25.282001},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302344\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493830", + "createdBy": "0", + "createdTime": "2025-02-24 13:57:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:24", + "echoMap": {}, + "deviceId": "1012030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.152.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2775558\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"152655367\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2775563\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:be\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":1,\"voltage\":26.004002},{\"current\":0.54200006,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":1,\"voltage\":26.004002},{\"current\":0.001,\"status\":0,\"voltage\":26.004002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302325\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589887228094493798", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1012040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.151.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif151\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:10.96\",\"mTU\":\"1500\",\"macAddress\":\"58:ae:a8:80:05:d2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"40\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.151.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"5655118\",\"0\",\"0\",\"0\",\"0\",\"11471041\",\"0\",\"302190\",\"3612\",\"0\",\"1990551407\",\"0\",\"0\",\"0\",\"41314\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:33\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32520,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":666,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33389,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":561,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40830,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":474,\"opticalVoltage\":3257,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33779,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":598,\"opticalVoltage\":3288,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36360,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":562,\"opticalVoltage\":3291,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37409,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":563,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43380,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":562,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40590,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3281,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43110,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":563,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38490,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":562,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41220,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":561,\"opticalVoltage\":3301,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38580,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":559,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40169,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":558,\"opticalVoltage\":3337,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43500,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":559,\"opticalVoltage\":3358,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42689,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":559,\"opticalVoltage\":3359,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39990,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":558,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44159,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":563,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":45209,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":561,\"opticalVoltage\":3379,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36360,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":559,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40889,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":561,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":479,\"inBytes\":1677873543,\"inFlow\":88,\"lastChangeTime\":\"357 days, 9:15:28.44\",\"lastInBytes\":1677873543,\"lastOutBytes\":93244118,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":214,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":93244118,\"outFlow\":390,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2246283787,\"inFlow\":0,\"lastChangeTime\":\"357 days, 9:15:02.27\",\"lastInBytes\":2246283787,\"lastOutBytes\":2288992384,\"opticalBiasCurrent\":38819,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":562,\"opticalVoltage\":3362,\"outBytes\":2288992384,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":4461256,\"inBytes\":2863155626,\"inFlow\":3335,\"lastChangeTime\":\"0:04:12.19\",\"lastInBytes\":2863155626,\"lastOutBytes\":3683975649,\"opticalBiasCurrent\":43470,\"opticalReceivePower\":526,\"opticalTemperature\":53,\"opticalTransmitPower\":562,\"opticalVoltage\":3324,\"outBytes\":3683975649,\"outFlow\":4457920,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1607555,\"inBytes\":4153583258,\"inFlow\":95701,\"lastChangeTime\":\"0:04:18.16\",\"lastInBytes\":4153583258,\"lastOutBytes\":2557863506,\"opticalBiasCurrent\":37950,\"opticalReceivePower\":472,\"opticalTemperature\":51,\"opticalTransmitPower\":558,\"opticalVoltage\":3334,\"outBytes\":2557863506,\"outFlow\":1511854,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1612078,\"inBytes\":2885207872,\"inFlow\":1560189,\"lastChangeTime\":\"466 days, 1:16:38.29\",\"lastInBytes\":2885207872,\"lastOutBytes\":3520097084,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":287,\"opticalTemperature\":47,\"opticalTransmitPower\":237,\"opticalVoltage\":3328,\"outBytes\":3520097084,\"outFlow\":51888,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3212606,\"inBytes\":514148609,\"inFlow\":3111159,\"lastChangeTime\":\"466 days, 1:16:28.25\",\"lastInBytes\":514148609,\"lastOutBytes\":1939807046,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":10,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3320,\"outBytes\":1939807046,\"outFlow\":101447,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6036142,\"inBytes\":3880136331,\"inFlow\":5841451,\"lastChangeTime\":\"466 days, 1:16:30.84\",\"lastInBytes\":3880136331,\"lastOutBytes\":2708722610,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":193,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3310,\"outBytes\":2708722610,\"outFlow\":194691,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8760470,\"inBytes\":1610582666,\"inFlow\":8483009,\"lastChangeTime\":\"466 days, 1:16:43.17\",\"lastInBytes\":1610582666,\"lastOutBytes\":1631499112,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":3,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":1631499112,\"outFlow\":277461,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7060123,\"inBytes\":4087818200,\"inFlow\":6837310,\"lastChangeTime\":\"466 days, 1:16:30.88\",\"lastInBytes\":4087818200,\"lastOutBytes\":2076157830,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":73,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3320,\"outBytes\":2076157830,\"outFlow\":222812,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5652923,\"inBytes\":2123702189,\"inFlow\":5481438,\"lastChangeTime\":\"466 days, 1:16:21.83\",\"lastInBytes\":2123702189,\"lastOutBytes\":3268624572,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":124,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":3268624572,\"outFlow\":171485,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3501226,\"inBytes\":2558209619,\"inFlow\":3399584,\"lastChangeTime\":\"466 days, 1:16:29.31\",\"lastInBytes\":2558209619,\"lastOutBytes\":45258148,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":210,\"opticalTemperature\":46,\"opticalTransmitPower\":238,\"opticalVoltage\":3366,\"outBytes\":45258148,\"outFlow\":101642,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6728338,\"inBytes\":1795892627,\"inFlow\":6516403,\"lastChangeTime\":\"466 days, 1:16:32.98\",\"lastInBytes\":1795892627,\"lastOutBytes\":3894983267,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":128,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":3894983267,\"outFlow\":211935,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4887946,\"inBytes\":647049180,\"inFlow\":4733929,\"lastChangeTime\":\"466 days, 1:16:26.06\",\"lastInBytes\":647049180,\"lastOutBytes\":3632080577,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":111,\"opticalTemperature\":48,\"opticalTransmitPower\":239,\"opticalVoltage\":3354,\"outBytes\":3632080577,\"outFlow\":154016,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3926826,\"inBytes\":135772806,\"inFlow\":3807626,\"lastChangeTime\":\"466 days, 1:16:21.36\",\"lastInBytes\":135772806,\"lastOutBytes\":4048843535,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":3,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3322,\"outBytes\":4048843535,\"outFlow\":119200,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5624822,\"inBytes\":3521513629,\"inFlow\":5449024,\"lastChangeTime\":\"466 days, 1:16:23.49\",\"lastInBytes\":3521513629,\"lastOutBytes\":1530161778,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":149,\"opticalTemperature\":45,\"opticalTransmitPower\":240,\"opticalVoltage\":3320,\"outBytes\":1530161778,\"outFlow\":175798,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3925166,\"inBytes\":177705331,\"inFlow\":3808922,\"lastChangeTime\":\"466 days, 1:16:27.68\",\"lastInBytes\":177705331,\"lastOutBytes\":730704420,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":38,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3352,\"outBytes\":730704420,\"outFlow\":116243,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":482105,\"inBytes\":3583409224,\"inFlow\":466486,\"lastChangeTime\":\"466 days, 1:18:52.85\",\"lastInBytes\":3583409224,\"lastOutBytes\":2770557638,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":184,\"opticalTemperature\":45,\"opticalTransmitPower\":238,\"opticalVoltage\":3344,\"outBytes\":2770557638,\"outFlow\":15618,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":482172,\"inBytes\":3172226657,\"inFlow\":466483,\"lastChangeTime\":\"466 days, 1:18:53.91\",\"lastInBytes\":3172226657,\"lastOutBytes\":1026975958,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":62,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3376,\"outBytes\":1026975958,\"outFlow\":15688,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4025406,\"inBytes\":223555863,\"inFlow\":32616,\"lastChangeTime\":\"466 days, 1:16:16.59\",\"lastInBytes\":223555863,\"lastOutBytes\":2439623746,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":201,\"opticalTemperature\":45,\"opticalTransmitPower\":238,\"opticalVoltage\":3320,\"outBytes\":2439623746,\"outFlow\":3992789,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":481838,\"inBytes\":3228759532,\"inFlow\":466178,\"lastChangeTime\":\"470 days, 1:17:23.43\",\"lastInBytes\":3228759532,\"lastOutBytes\":3746068772,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":175,\"opticalTemperature\":44,\"opticalTransmitPower\":237,\"opticalVoltage\":3362,\"outBytes\":3746068772,\"outFlow\":15660,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":481944,\"inBytes\":795399149,\"inFlow\":466354,\"lastChangeTime\":\"466 days, 1:18:52.91\",\"lastInBytes\":795399149,\"lastOutBytes\":1515715817,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":171,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3340,\"outBytes\":1515715817,\"outFlow\":15590,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":513,\"inFlow\":0,\"lastChangeTime\":\"77 days, 2:32:21.00\",\"lastInBytes\":513,\"lastOutBytes\":47471737,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":250,\"opticalVoltage\":3378,\"outBytes\":47471737,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":429,\"inFlow\":0,\"lastChangeTime\":\"77 days, 2:33:08.37\",\"lastInBytes\":429,\"lastOutBytes\":23458958,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":241,\"opticalVoltage\":3386,\"outBytes\":23458958,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":239,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1455,\"inFlow\":0,\"lastChangeTime\":\"77 days, 2:34:24.38\",\"lastInBytes\":1455,\"lastOutBytes\":61579328,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":61579328,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":238,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":26174,\"inBytes\":2045459669,\"inFlow\":12290,\"lastChangeTime\":\"424 days, 12:44:13.89\",\"lastInBytes\":2045459669,\"lastOutBytes\":1187222795,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1187222795,\"outFlow\":13883,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":26827830,\"inBytes\":2008902420,\"inFlow\":10893443,\"lastChangeTime\":\"424 days, 12:46:30.70\",\"lastInBytes\":2008902420,\"lastOutBytes\":3488464056,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3488464056,\"outFlow\":15934387,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":30085,\"inBytes\":2104734138,\"inFlow\":15042,\"lastChangeTime\":\"424 days, 12:50:04.64\",\"lastInBytes\":2104734138,\"lastOutBytes\":3970434153,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3970434153,\"outFlow\":15043,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":366,\"inBytes\":479041156,\"inFlow\":9,\"lastChangeTime\":\"424 days, 12:53:44.92\",\"lastInBytes\":479041156,\"lastOutBytes\":3970624213,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3970624213,\"outFlow\":357,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2312397,\"inBytes\":3791368870,\"inFlow\":52084,\"lastChangeTime\":\"476 days, 13:00:46.39\",\"lastInBytes\":3791368870,\"lastOutBytes\":2216938812,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2216938812,\"outFlow\":2260312,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2853769442,\"inFlow\":0,\"lastChangeTime\":\"473 days, 13:49:32.98\",\"lastInBytes\":2853769442,\"lastOutBytes\":1450751852,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1450751852,\"outFlow\":0,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":16788423,\"inBytes\":726129502,\"inFlow\":491589,\"lastChangeTime\":\"227 days, 13:14:44.74\",\"lastInBytes\":726129502,\"lastOutBytes\":3312160039,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3312160039,\"outFlow\":16296834,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4983684,\"inBytes\":1603944765,\"inFlow\":625522,\"lastChangeTime\":\"406 days, 15:34:45.12\",\"lastInBytes\":1603944765,\"lastOutBytes\":3929327944,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3929327944,\"outFlow\":4358162,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":991,\"inBytes\":1007225916,\"inFlow\":269,\"lastChangeTime\":\"66 days, 11:04:49.50\",\"lastInBytes\":1007225916,\"lastOutBytes\":2651468738,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2651468738,\"outFlow\":721,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2598865844,\"inFlow\":0,\"lastChangeTime\":\"473 days, 13:49:44.73\",\"lastInBytes\":2598865844,\"lastOutBytes\":593873346,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":593873346,\"outFlow\":0,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":647,\"inBytes\":635306700,\"inFlow\":176,\"lastChangeTime\":\"67 days, 7:33:27.65\",\"lastInBytes\":635306700,\"lastOutBytes\":1700661301,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1700661301,\"outFlow\":470,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":461320,\"inBytes\":616484486,\"inFlow\":2919,\"lastChangeTime\":\"418 days, 21:53:14.70\",\"lastInBytes\":616484486,\"lastOutBytes\":2119112446,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2119112446,\"outFlow\":458401,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":912096853,\"inFlow\":0,\"lastChangeTime\":\"424 days, 12:46:26.72\",\"lastInBytes\":912096853,\"lastOutBytes\":3461136455,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3461136455,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":23494884,\"inBytes\":4153539382,\"inFlow\":819623,\"lastChangeTime\":\"473 days, 14:30:00.47\",\"lastInBytes\":4153539382,\"lastOutBytes\":3780498782,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3780498782,\"outFlow\":22675261,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3142,\"inFlow\":0,\"lastChangeTime\":\"424 days, 8:19:59.97\",\"lastInBytes\":3142,\"lastOutBytes\":3634,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3634,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":130637764,\"inFlow\":0,\"lastChangeTime\":\"424 days, 12:44:08.30\",\"lastInBytes\":130637764,\"lastOutBytes\":3461794285,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3461794285,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4285,\"inFlow\":0,\"lastChangeTime\":\"424 days, 8:20:46.96\",\"lastInBytes\":4285,\"lastOutBytes\":4776,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4776,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":509566166,\"inFlow\":0,\"lastChangeTime\":\"424 days, 12:58:43.37\",\"lastInBytes\":509566166,\"lastOutBytes\":2425848514,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2425848514,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5238,\"inFlow\":0,\"lastChangeTime\":\"424 days, 8:21:32.72\",\"lastInBytes\":5238,\"lastOutBytes\":7395,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":7395,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":10058,\"inFlow\":0,\"lastChangeTime\":\"424 days, 8:22:00.91\",\"lastInBytes\":10058,\"lastOutBytes\":72418,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":72418,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":42,\"inBytes\":25331730,\"inFlow\":20,\"lastChangeTime\":\"109 days, 5:52:53.20\",\"lastInBytes\":25331730,\"lastOutBytes\":56610459,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":56610459,\"outFlow\":22,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":141,\"inBytes\":56990171,\"inFlow\":122,\"lastChangeTime\":\"109 days, 5:52:10.12\",\"lastInBytes\":56990171,\"lastOutBytes\":18625092,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":18625092,\"outFlow\":19,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:14.040478000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493799", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45759\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:31.45\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:3a:49\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":278172,\"inBytes\":399243440,\"inFlow\":271203,\"lastChangeTime\":\"0:01:33.08\",\"lastInBytes\":399243440,\"lastOutBytes\":3864150373,\"outBytes\":3864150373,\"outFlow\":6969,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":276303,\"inBytes\":50572325,\"inFlow\":269271,\"lastChangeTime\":\"0:01:33.36\",\"lastInBytes\":50572325,\"lastOutBytes\":415918560,\"outBytes\":415918560,\"outFlow\":7031,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":275948,\"inBytes\":896115564,\"inFlow\":269073,\"lastChangeTime\":\"0:01:33.08\",\"lastInBytes\":896115564,\"lastOutBytes\":768240792,\"outBytes\":768240792,\"outFlow\":6874,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":278335,\"inBytes\":3338707996,\"inFlow\":271302,\"lastChangeTime\":\"131 days, 23:54:16.79\",\"lastInBytes\":3338707996,\"lastOutBytes\":1662695506,\"outBytes\":1662695506,\"outFlow\":7033,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276723,\"inBytes\":23643267,\"inFlow\":269655,\"lastChangeTime\":\"0:01:33.08\",\"lastInBytes\":23643267,\"lastOutBytes\":1061864144,\"outBytes\":1061864144,\"outFlow\":7068,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:33.07\",\"lastInBytes\":0,\"lastOutBytes\":1107138819,\"outBytes\":1107138819,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1387041,\"inBytes\":6491773,\"inFlow\":36333,\"lastChangeTime\":\"0:01:31.45\",\"lastInBytes\":6491773,\"lastOutBytes\":3819366045,\"outBytes\":3819366045,\"outFlow\":1350708,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:14.998716000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493800", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:19", + "echoMap": {}, + "deviceId": "1012040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45744\",\"inUnknownProtos\":\"644308798\",\"index\":\"635\",\"lastChange\":\"0:01:21.65\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:53:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1722264792\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"6733\",\"speed\":\"4294967295\"},\"cpuRatio\":\"8\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:19\",\"info\":{\"portInfoList\":[{\"flow\":413353,\"inBytes\":2747917582,\"inFlow\":403217,\"lastChangeTime\":\"0:01:23.48\",\"lastInBytes\":2747917582,\"lastOutBytes\":3905881923,\"outBytes\":3905881923,\"outFlow\":10136,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413505,\"inBytes\":3131237366,\"inFlow\":403296,\"lastChangeTime\":\"3 days, 23:38:28.03\",\"lastInBytes\":3131237366,\"lastOutBytes\":992763589,\"outBytes\":992763589,\"outFlow\":10208,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413548,\"inBytes\":2468430970,\"inFlow\":403344,\"lastChangeTime\":\"0:01:23.47\",\"lastInBytes\":2468430970,\"lastOutBytes\":430301766,\"outBytes\":430301766,\"outFlow\":10203,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413363,\"inBytes\":1369891172,\"inFlow\":403301,\"lastChangeTime\":\"0:01:23.47\",\"lastInBytes\":1369891172,\"lastOutBytes\":3958851362,\"outBytes\":3958851362,\"outFlow\":10062,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413496,\"inBytes\":2467691259,\"inFlow\":403308,\"lastChangeTime\":\"3 days, 23:29:15.95\",\"lastInBytes\":2467691259,\"lastOutBytes\":773416077,\"outBytes\":773416077,\"outFlow\":10187,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413615,\"inBytes\":221270483,\"inFlow\":403407,\"lastChangeTime\":\"0:01:23.46\",\"lastInBytes\":221270483,\"lastOutBytes\":644308798,\"outBytes\":644308798,\"outFlow\":10208,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276420,\"inBytes\":41371021,\"inFlow\":269353,\"lastChangeTime\":\"0:08:11.65\",\"lastInBytes\":41371021,\"lastOutBytes\":1587384220,\"outBytes\":1587384220,\"outFlow\":7066,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":28884,\"inFlow\":0,\"lastChangeTime\":\"3 days, 23:44:25.08\",\"lastInBytes\":28884,\"lastOutBytes\":11398675,\"outBytes\":11398675,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":6996,\"inFlow\":0,\"lastChangeTime\":\"3 days, 23:44:30.11\",\"lastInBytes\":6996,\"lastOutBytes\":1105622377,\"outBytes\":1105622377,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2767886,\"inBytes\":2373674730,\"inFlow\":70830,\"lastChangeTime\":\"0:01:21.64\",\"lastInBytes\":2373674730,\"lastOutBytes\":2396197033,\"outBytes\":2396197033,\"outFlow\":2697056,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:14.987420000\"}}", + "lastDiagTime": "2026-02-02 14:39:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493801", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45879\",\"inUnknownProtos\":\"449413408\",\"index\":\"635\",\"lastChange\":\"0:01:23.29\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:0c:4d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3810229265\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":896913,\"inBytes\":2119309539,\"inFlow\":874029,\"lastChangeTime\":\"69 days, 22:51:37.07\",\"lastInBytes\":2119309539,\"lastOutBytes\":948129473,\"outBytes\":948129473,\"outFlow\":22883,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":897167,\"inBytes\":1991229650,\"inFlow\":874444,\"lastChangeTime\":\"69 days, 22:51:39.72\",\"lastInBytes\":1991229650,\"lastOutBytes\":885506369,\"outBytes\":885506369,\"outFlow\":22722,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":896873,\"inBytes\":2982370099,\"inFlow\":874890,\"lastChangeTime\":\"0:01:25.93\",\"lastInBytes\":2982370099,\"lastOutBytes\":2080960204,\"outBytes\":2080960204,\"outFlow\":21983,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":898654,\"inBytes\":3865557796,\"inFlow\":875768,\"lastChangeTime\":\"69 days, 22:51:33.10\",\"lastInBytes\":3865557796,\"lastOutBytes\":81296795,\"outBytes\":81296795,\"outFlow\":22885,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414582,\"inBytes\":3069288819,\"inFlow\":404497,\"lastChangeTime\":\"1 day, 18:27:07.45\",\"lastInBytes\":3069288819,\"lastOutBytes\":2315342805,\"outBytes\":2315342805,\"outFlow\":10084,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":902613,\"inBytes\":2394510306,\"inFlow\":879915,\"lastChangeTime\":\"69 days, 22:51:44.93\",\"lastInBytes\":2394510306,\"lastOutBytes\":449413408,\"outBytes\":449413408,\"outFlow\":22697,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276416,\"inBytes\":2806625370,\"inFlow\":269326,\"lastChangeTime\":\"0:01:25.19\",\"lastInBytes\":2806625370,\"lastOutBytes\":618825189,\"outBytes\":618825189,\"outFlow\":7089,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":263056843,\"inFlow\":133,\"lastChangeTime\":\"0:01:25.19\",\"lastInBytes\":263056843,\"lastOutBytes\":1361257813,\"outBytes\":1361257813,\"outFlow\":215,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5206694,\"inBytes\":147585704,\"inFlow\":136676,\"lastChangeTime\":\"0:01:23.28\",\"lastInBytes\":147585704,\"lastOutBytes\":2544207973,\"outBytes\":2544207973,\"outFlow\":5070018,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:14.995939000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493802", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45878\",\"inUnknownProtos\":\"616628361\",\"index\":\"635\",\"lastChange\":\"0:01:35.54\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:3d:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3902529584\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31570764\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":901175,\"inBytes\":2947997488,\"inFlow\":878305,\"lastChangeTime\":\"69 days, 22:51:53.02\",\"lastInBytes\":2947997488,\"lastOutBytes\":629250009,\"outBytes\":629250009,\"outFlow\":22869,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":903377,\"inBytes\":1871371345,\"inFlow\":880721,\"lastChangeTime\":\"69 days, 22:51:53.50\",\"lastInBytes\":1871371345,\"lastOutBytes\":464022802,\"outBytes\":464022802,\"outFlow\":22655,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106466,\"inBytes\":562496563,\"inFlow\":1080326,\"lastChangeTime\":\"1 day, 18:27:11.31\",\"lastInBytes\":562496563,\"lastOutBytes\":254526168,\"outBytes\":254526168,\"outFlow\":26139,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":412904,\"inBytes\":4144860746,\"inFlow\":402818,\"lastChangeTime\":\"0:01:37.68\",\"lastInBytes\":4144860746,\"lastOutBytes\":3119213021,\"outBytes\":3119213021,\"outFlow\":10086,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":896632,\"inBytes\":1773341980,\"inFlow\":874765,\"lastChangeTime\":\"0:01:37.67\",\"lastInBytes\":1773341980,\"lastOutBytes\":1351061343,\"outBytes\":1351061343,\"outFlow\":21866,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1103780,\"inBytes\":1232468467,\"inFlow\":1077728,\"lastChangeTime\":\"1 day, 18:27:09.34\",\"lastInBytes\":1232468467,\"lastOutBytes\":616628361,\"outBytes\":616628361,\"outFlow\":26052,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":899207,\"inBytes\":1496961380,\"inFlow\":876549,\"lastChangeTime\":\"69 days, 22:51:47.00\",\"lastInBytes\":1496961380,\"lastOutBytes\":3760560541,\"outBytes\":3760560541,\"outFlow\":22658,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":898460,\"inBytes\":3114982974,\"inFlow\":875879,\"lastChangeTime\":\"69 days, 22:51:44.62\",\"lastInBytes\":3114982974,\"lastOutBytes\":1055103937,\"outBytes\":1055103937,\"outFlow\":22581,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":413470,\"inBytes\":2203968764,\"inFlow\":403325,\"lastChangeTime\":\"49 days, 13:24:24.19\",\"lastInBytes\":2203968764,\"lastOutBytes\":2575397723,\"outBytes\":2575397723,\"outFlow\":10145,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":350,\"inBytes\":262968259,\"inFlow\":133,\"lastChangeTime\":\"0:01:37.24\",\"lastInBytes\":262968259,\"lastOutBytes\":1359983898,\"outBytes\":1359983898,\"outFlow\":217,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7568028,\"inBytes\":2447935980,\"inFlow\":193862,\"lastChangeTime\":\"0:01:35.53\",\"lastInBytes\":2447935980,\"lastOutBytes\":230143222,\"outBytes\":230143222,\"outFlow\":7374165,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.000573000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493803", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45879\",\"inUnknownProtos\":\"884094694\",\"index\":\"635\",\"lastChange\":\"0:01:23.07\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:32:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3813736253\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31573080\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":830494,\"inBytes\":1897069738,\"inFlow\":809457,\"lastChangeTime\":\"69 days, 22:51:50.33\",\"lastInBytes\":1897069738,\"lastOutBytes\":853703150,\"outBytes\":853703150,\"outFlow\":21037,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":900274,\"inBytes\":2095123976,\"inFlow\":879113,\"lastChangeTime\":\"69 days, 22:51:48.32\",\"lastInBytes\":2095123976,\"lastOutBytes\":1029923800,\"outBytes\":1029923800,\"outFlow\":21161,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1102931,\"inBytes\":3684242036,\"inFlow\":1077300,\"lastChangeTime\":\"1 day, 18:27:07.65\",\"lastInBytes\":3684242036,\"lastOutBytes\":3083442774,\"outBytes\":3083442774,\"outFlow\":25630,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":410503,\"inBytes\":1372301060,\"inFlow\":402487,\"lastChangeTime\":\"0:01:25.41\",\"lastInBytes\":1372301060,\"lastOutBytes\":2068895002,\"outBytes\":2068895002,\"outFlow\":8015,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414276,\"inBytes\":2994121821,\"inFlow\":404033,\"lastChangeTime\":\"69 days, 22:51:54.51\",\"lastInBytes\":2994121821,\"lastOutBytes\":538629260,\"outBytes\":538629260,\"outFlow\":10243,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":901533,\"inBytes\":3875745798,\"inFlow\":878563,\"lastChangeTime\":\"69 days, 22:51:48.04\",\"lastInBytes\":3875745798,\"lastOutBytes\":884094694,\"outBytes\":884094694,\"outFlow\":22970,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":897209,\"inBytes\":2608201775,\"inFlow\":874391,\"lastChangeTime\":\"69 days, 22:51:45.80\",\"lastInBytes\":2608201775,\"lastOutBytes\":753658104,\"outBytes\":753658104,\"outFlow\":22817,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":276518,\"inBytes\":1024113158,\"inFlow\":269426,\"lastChangeTime\":\"0:01:24.59\",\"lastInBytes\":1024113158,\"lastOutBytes\":1182224356,\"outBytes\":1182224356,\"outFlow\":7092,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":262967825,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.70\",\"lastInBytes\":262967825,\"lastOutBytes\":1362197505,\"outBytes\":1362197505,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.08\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5826118,\"inBytes\":1524976183,\"inFlow\":148994,\"lastChangeTime\":\"0:01:23.06\",\"lastInBytes\":1524976183,\"lastOutBytes\":149644945,\"outBytes\":149644945,\"outFlow\":5677123,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.099139000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493804", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45741\",\"inUnknownProtos\":\"4204184316\",\"index\":\"635\",\"lastChange\":\"0:01:14.40\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:08:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1774058044\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31574896\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":569750,\"inBytes\":308711372,\"inFlow\":557936,\"lastChangeTime\":\"0:01:16.91\",\"lastInBytes\":308711372,\"lastOutBytes\":1233883881,\"outBytes\":1233883881,\"outFlow\":11813,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":489626,\"inBytes\":983229360,\"inFlow\":479305,\"lastChangeTime\":\"0:01:16.80\",\"lastInBytes\":983229360,\"lastOutBytes\":1236875492,\"outBytes\":1236875492,\"outFlow\":10321,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":605636,\"inBytes\":1727890002,\"inFlow\":591006,\"lastChangeTime\":\"0:01:16.81\",\"lastInBytes\":1727890002,\"lastOutBytes\":581709506,\"outBytes\":581709506,\"outFlow\":14630,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":491593,\"inBytes\":87659099,\"inFlow\":481068,\"lastChangeTime\":\"0:01:16.73\",\"lastInBytes\":87659099,\"lastOutBytes\":2933465318,\"outBytes\":2933465318,\"outFlow\":10524,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413772,\"inBytes\":197001477,\"inFlow\":403688,\"lastChangeTime\":\"1 day, 18:27:09.18\",\"lastInBytes\":197001477,\"lastOutBytes\":3752469140,\"outBytes\":3752469140,\"outFlow\":10084,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413402,\"inBytes\":1761051065,\"inFlow\":403323,\"lastChangeTime\":\"0:01:16.03\",\"lastInBytes\":1761051065,\"lastOutBytes\":4204184316,\"outBytes\":4204184316,\"outFlow\":10078,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413416,\"inBytes\":901420087,\"inFlow\":403313,\"lastChangeTime\":\"0:01:16.01\",\"lastInBytes\":901420087,\"lastOutBytes\":285436626,\"outBytes\":285436626,\"outFlow\":10102,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":413279,\"inBytes\":370244303,\"inFlow\":403185,\"lastChangeTime\":\"0:01:16.38\",\"lastInBytes\":370244303,\"lastOutBytes\":275825124,\"outBytes\":275825124,\"outFlow\":10093,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":413467,\"inBytes\":3818811436,\"inFlow\":403266,\"lastChangeTime\":\"0:01:16.02\",\"lastInBytes\":3818811436,\"lastOutBytes\":520932501,\"outBytes\":520932501,\"outFlow\":10200,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":350,\"inBytes\":263090457,\"inFlow\":133,\"lastChangeTime\":\"0:01:16.02\",\"lastInBytes\":263090457,\"lastOutBytes\":1359455657,\"outBytes\":1359455657,\"outFlow\":217,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.39\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4262443,\"inBytes\":3995413078,\"inFlow\":102398,\"lastChangeTime\":\"0:01:14.39\",\"lastInBytes\":3995413078,\"lastOutBytes\":2317615677,\"outBytes\":2317615677,\"outFlow\":4160045,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.009378000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493805", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45891\",\"inUnknownProtos\":\"785990829\",\"index\":\"635\",\"lastChange\":\"0:01:22.49\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:ec:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1460689038\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":956937,\"inBytes\":2991450449,\"inFlow\":936014,\"lastChangeTime\":\"0:01:24.90\",\"lastInBytes\":2991450449,\"lastOutBytes\":608373838,\"outBytes\":608373838,\"outFlow\":20923,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412964,\"inBytes\":2698451650,\"inFlow\":402887,\"lastChangeTime\":\"94 days, 7:40:44.73\",\"lastInBytes\":2698451650,\"lastOutBytes\":2819457965,\"outBytes\":2819457965,\"outFlow\":10077,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413102,\"inBytes\":1144397733,\"inFlow\":404720,\"lastChangeTime\":\"94 days, 7:41:00.41\",\"lastInBytes\":1144397733,\"lastOutBytes\":3725054052,\"outBytes\":3725054052,\"outFlow\":8382,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":384993,\"inBytes\":3013142887,\"inFlow\":374933,\"lastChangeTime\":\"94 days, 7:40:47.49\",\"lastInBytes\":3013142887,\"lastOutBytes\":3175924907,\"outBytes\":3175924907,\"outFlow\":10059,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":382974,\"inBytes\":3257737173,\"inFlow\":373533,\"lastChangeTime\":\"69 days, 22:51:46.55\",\"lastInBytes\":3257737173,\"lastOutBytes\":1832067255,\"outBytes\":1832067255,\"outFlow\":9441,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":380553,\"inBytes\":3640778199,\"inFlow\":372423,\"lastChangeTime\":\"94 days, 7:40:53.68\",\"lastInBytes\":3640778199,\"lastOutBytes\":785904632,\"outBytes\":785904632,\"outFlow\":8130,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":352,\"inBytes\":263037559,\"inFlow\":133,\"lastChangeTime\":\"0:01:24.36\",\"lastInBytes\":263037559,\"lastOutBytes\":1363181905,\"outBytes\":1363181905,\"outFlow\":219,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.07\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3050119,\"inBytes\":1711654985,\"inFlow\":72045,\"lastChangeTime\":\"0:01:22.48\",\"lastInBytes\":1711654985,\"lastOutBytes\":4072342121,\"outBytes\":4072342121,\"outFlow\":2978073,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.001575000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493806", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:19", + "echoMap": {}, + "deviceId": "1012040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45880\",\"inUnknownProtos\":\"3229327139\",\"index\":\"635\",\"lastChange\":\"0:01:24.97\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:55:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3213103967\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27874012\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:19\",\"info\":{\"portInfoList\":[{\"flow\":892990,\"inBytes\":1003860990,\"inFlow\":870916,\"lastChangeTime\":\"69 days, 22:51:41.83\",\"lastInBytes\":1003860990,\"lastOutBytes\":3253112997,\"outBytes\":3253112997,\"outFlow\":22074,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":412835,\"inBytes\":2889899615,\"inFlow\":402743,\"lastChangeTime\":\"69 days, 22:51:40.49\",\"lastInBytes\":2889899615,\"lastOutBytes\":1515417805,\"outBytes\":1515417805,\"outFlow\":10092,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413804,\"inBytes\":103364711,\"inFlow\":403676,\"lastChangeTime\":\"0:01:26.89\",\"lastInBytes\":103364711,\"lastOutBytes\":876806620,\"outBytes\":876806620,\"outFlow\":10127,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":411444,\"inBytes\":771669788,\"inFlow\":401229,\"lastChangeTime\":\"69 days, 22:51:51.91\",\"lastInBytes\":771669788,\"lastOutBytes\":2552578874,\"outBytes\":2552578874,\"outFlow\":10214,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":896635,\"inBytes\":2761846700,\"inFlow\":874612,\"lastChangeTime\":\"0:01:26.90\",\"lastInBytes\":2761846700,\"lastOutBytes\":3306310051,\"outBytes\":3306310051,\"outFlow\":22023,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1101420,\"inBytes\":2327780864,\"inFlow\":1075293,\"lastChangeTime\":\"94 days, 7:36:59.80\",\"lastInBytes\":2327780864,\"lastOutBytes\":3229327139,\"outBytes\":3229327139,\"outFlow\":26127,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":412195,\"inBytes\":791312921,\"inFlow\":402024,\"lastChangeTime\":\"137 days, 0:02:48.75\",\"lastInBytes\":791312921,\"lastOutBytes\":4273823223,\"outBytes\":4273823223,\"outFlow\":10170,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":275877,\"inBytes\":2460362739,\"inFlow\":268997,\"lastChangeTime\":\"94 days, 7:36:12.91\",\"lastInBytes\":2460362739,\"lastOutBytes\":4211608932,\"outBytes\":4211608932,\"outFlow\":6880,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":895738,\"inBytes\":2948655730,\"inFlow\":873611,\"lastChangeTime\":\"0:01:27.33\",\"lastInBytes\":2948655730,\"lastOutBytes\":990748695,\"outBytes\":990748695,\"outFlow\":22127,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":263037711,\"inFlow\":133,\"lastChangeTime\":\"0:01:26.90\",\"lastInBytes\":263037711,\"lastOutBytes\":1359051545,\"outBytes\":1359051545,\"outFlow\":216,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5736232,\"inBytes\":918949003,\"inFlow\":146234,\"lastChangeTime\":\"0:01:24.97\",\"lastInBytes\":918949003,\"lastOutBytes\":2612389275,\"outBytes\":2612389275,\"outFlow\":5589997,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.001989000\"}}", + "lastDiagTime": "2026-02-02 14:39:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493807", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45740\",\"inUnknownProtos\":\"53811647\",\"index\":\"635\",\"lastChange\":\"0:01:18.04\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:3d:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3001962702\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31573967\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":412938,\"inBytes\":3826631226,\"inFlow\":402853,\"lastChangeTime\":\"0:01:19.80\",\"lastInBytes\":3826631226,\"lastOutBytes\":3051165905,\"outBytes\":3051165905,\"outFlow\":10084,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413299,\"inBytes\":3237114502,\"inFlow\":403201,\"lastChangeTime\":\"0:01:19.48\",\"lastInBytes\":3237114502,\"lastOutBytes\":2430396568,\"outBytes\":2430396568,\"outFlow\":10098,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414244,\"inBytes\":2440233348,\"inFlow\":404150,\"lastChangeTime\":\"0:01:19.58\",\"lastInBytes\":2440233348,\"lastOutBytes\":1577458226,\"outBytes\":1577458226,\"outFlow\":10093,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":431165,\"inBytes\":1664667466,\"inFlow\":421327,\"lastChangeTime\":\"0:01:20.37\",\"lastInBytes\":1664667466,\"lastOutBytes\":1451265933,\"outBytes\":1451265933,\"outFlow\":9838,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":863049,\"inBytes\":3007741925,\"inFlow\":841852,\"lastChangeTime\":\"0:01:20.37\",\"lastInBytes\":3007741925,\"lastOutBytes\":3102732412,\"outBytes\":3102732412,\"outFlow\":21197,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":611799,\"inBytes\":3904013840,\"inFlow\":596790,\"lastChangeTime\":\"0:01:20.36\",\"lastInBytes\":3904013840,\"lastOutBytes\":53811647,\"outBytes\":53811647,\"outFlow\":15009,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":929618,\"inBytes\":828515509,\"inFlow\":904686,\"lastChangeTime\":\"131 days, 21:43:47.10\",\"lastInBytes\":828515509,\"lastOutBytes\":2963811749,\"outBytes\":2963811749,\"outFlow\":24931,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":420539,\"inBytes\":348894636,\"inFlow\":411074,\"lastChangeTime\":\"0:01:20.29\",\"lastInBytes\":348894636,\"lastOutBytes\":490840187,\"outBytes\":490840187,\"outFlow\":9465,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5482050,\"inFlow\":0,\"lastChangeTime\":\"67 days, 8:51:31.88\",\"lastInBytes\":5482050,\"lastOutBytes\":324115299,\"outBytes\":324115299,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":319970166,\"inFlow\":133,\"lastChangeTime\":\"0:01:19.59\",\"lastInBytes\":319970166,\"lastOutBytes\":1414776572,\"outBytes\":1414776572,\"outFlow\":216,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4513844,\"inBytes\":473391326,\"inFlow\":115723,\"lastChangeTime\":\"0:01:18.03\",\"lastInBytes\":473391326,\"lastOutBytes\":2003800366,\"outBytes\":2003800366,\"outFlow\":4398121,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.006947000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493808", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:19", + "echoMap": {}, + "deviceId": "1012040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45730\",\"inUnknownProtos\":\"3924159564\",\"index\":\"635\",\"lastChange\":\"0:01:15.34\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:4a:89\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1444509939\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:19\",\"info\":{\"portInfoList\":[{\"flow\":896492,\"inBytes\":380936928,\"inFlow\":874262,\"lastChangeTime\":\"69 days, 22:51:45.47\",\"lastInBytes\":380936928,\"lastOutBytes\":1300197441,\"outBytes\":1300197441,\"outFlow\":22230,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413867,\"inBytes\":469553677,\"inFlow\":403678,\"lastChangeTime\":\"135 days, 6:01:40.81\",\"lastInBytes\":469553677,\"lastOutBytes\":1606783456,\"outBytes\":1606783456,\"outFlow\":10188,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":412876,\"inBytes\":2652747282,\"inFlow\":402721,\"lastChangeTime\":\"0:01:17.10\",\"lastInBytes\":2652747282,\"lastOutBytes\":683356168,\"outBytes\":683356168,\"outFlow\":10154,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":589254,\"inBytes\":996621552,\"inFlow\":576858,\"lastChangeTime\":\"69 days, 21:56:49.02\",\"lastInBytes\":996621552,\"lastOutBytes\":2182804488,\"outBytes\":2182804488,\"outFlow\":12396,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415271,\"inBytes\":2791290911,\"inFlow\":405147,\"lastChangeTime\":\"1 day, 18:27:11.93\",\"lastInBytes\":2791290911,\"lastOutBytes\":2296841220,\"outBytes\":2296841220,\"outFlow\":10124,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":411702,\"inBytes\":3760826674,\"inFlow\":402980,\"lastChangeTime\":\"69 days, 21:57:02.67\",\"lastInBytes\":3760826674,\"lastOutBytes\":3924159564,\"outBytes\":3924159564,\"outFlow\":8721,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414758,\"inBytes\":15918445,\"inFlow\":404417,\"lastChangeTime\":\"69 days, 22:51:56.61\",\"lastInBytes\":15918445,\"lastOutBytes\":411991311,\"outBytes\":411991311,\"outFlow\":10340,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":319968471,\"inFlow\":133,\"lastChangeTime\":\"0:01:17.10\",\"lastInBytes\":319968471,\"lastOutBytes\":1417073865,\"outBytes\":1417073865,\"outFlow\":216,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3566038,\"inBytes\":940720599,\"inFlow\":87915,\"lastChangeTime\":\"0:01:15.34\",\"lastInBytes\":940720599,\"lastOutBytes\":110197455,\"outBytes\":110197455,\"outFlow\":3478123,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.004247000\"}}", + "lastDiagTime": "2026-02-02 14:39:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493809", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45758\",\"inUnknownProtos\":\"631867899\",\"index\":\"635\",\"lastChange\":\"0:01:17.12\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:3b:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3418752291\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31574442\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":276052,\"inBytes\":3174548719,\"inFlow\":269157,\"lastChangeTime\":\"0:01:18.89\",\"lastInBytes\":3174548719,\"lastOutBytes\":877592183,\"outBytes\":877592183,\"outFlow\":6894,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":276947,\"inBytes\":1077335543,\"inFlow\":269901,\"lastChangeTime\":\"0:01:18.90\",\"lastInBytes\":1077335543,\"lastOutBytes\":3373120514,\"outBytes\":3373120514,\"outFlow\":7045,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413419,\"inBytes\":4173062880,\"inFlow\":403376,\"lastChangeTime\":\"0:01:19.42\",\"lastInBytes\":4173062880,\"lastOutBytes\":3683406025,\"outBytes\":3683406025,\"outFlow\":10043,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413784,\"inBytes\":1132178139,\"inFlow\":403702,\"lastChangeTime\":\"0:01:19.43\",\"lastInBytes\":1132178139,\"lastOutBytes\":3968494213,\"outBytes\":3968494213,\"outFlow\":10082,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":622014,\"inBytes\":3282023249,\"inFlow\":605896,\"lastChangeTime\":\"0:01:19.43\",\"lastInBytes\":3282023249,\"lastOutBytes\":938632579,\"outBytes\":938632579,\"outFlow\":16117,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1012629,\"inBytes\":3666269860,\"inFlow\":988865,\"lastChangeTime\":\"1 day, 18:27:12.43\",\"lastInBytes\":3666269860,\"lastOutBytes\":631618279,\"outBytes\":631618279,\"outFlow\":23763,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":656374,\"inBytes\":519081832,\"inFlow\":640701,\"lastChangeTime\":\"0:01:19.81\",\"lastInBytes\":519081832,\"lastOutBytes\":19401200,\"outBytes\":19401200,\"outFlow\":15673,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":255025,\"inBytes\":3208108420,\"inFlow\":248684,\"lastChangeTime\":\"0:01:18.88\",\"lastInBytes\":3208108420,\"lastOutBytes\":372679220,\"outBytes\":372679220,\"outFlow\":6340,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":276555,\"inBytes\":2495900814,\"inFlow\":269475,\"lastChangeTime\":\"0:01:19.42\",\"lastInBytes\":2495900814,\"lastOutBytes\":263553503,\"outBytes\":263553503,\"outFlow\":7080,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":276429,\"inBytes\":756450692,\"inFlow\":269388,\"lastChangeTime\":\"32 days, 23:49:50.73\",\"lastInBytes\":756450692,\"lastOutBytes\":4070219203,\"outBytes\":4070219203,\"outFlow\":7041,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":275953,\"inBytes\":1331425882,\"inFlow\":269132,\"lastChangeTime\":\"32 days, 23:29:08.43\",\"lastInBytes\":1331425882,\"lastOutBytes\":68239130,\"outBytes\":68239130,\"outFlow\":6821,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:18.89\",\"lastInBytes\":0,\"lastOutBytes\":1103471201,\"outBytes\":1103471201,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4554962,\"inBytes\":1036501656,\"inFlow\":115776,\"lastChangeTime\":\"0:01:17.12\",\"lastInBytes\":1036501656,\"lastOutBytes\":180705338,\"outBytes\":180705338,\"outFlow\":4439185,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.005052000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493810", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1012040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface152\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"45734\",\"inUnknownProtos\":\"2456654157\",\"index\":\"635\",\"lastChange\":\"0:01:21.94\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:76:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1442802002\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:18\",\"info\":{\"portInfoList\":[{\"flow\":383259,\"inBytes\":2455104823,\"inFlow\":373835,\"lastChangeTime\":\"0:01:23.75\",\"lastInBytes\":2455104823,\"lastOutBytes\":3673123262,\"outBytes\":3673123262,\"outFlow\":9424,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":382148,\"inBytes\":920495423,\"inFlow\":372819,\"lastChangeTime\":\"0:01:23.76\",\"lastInBytes\":920495423,\"lastOutBytes\":1760643120,\"outBytes\":1760643120,\"outFlow\":9329,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":828343,\"inBytes\":3120072908,\"inFlow\":808119,\"lastChangeTime\":\"0:01:23.75\",\"lastInBytes\":3120072908,\"lastOutBytes\":1439235532,\"outBytes\":1439235532,\"outFlow\":20224,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":2382916,\"inBytes\":2934696536,\"inFlow\":403993,\"lastChangeTime\":\"0:01:24.30\",\"lastInBytes\":2934696536,\"lastOutBytes\":253302109,\"outBytes\":253302109,\"outFlow\":1978922,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410962,\"inBytes\":2780137711,\"inFlow\":402441,\"lastChangeTime\":\"0:01:24.30\",\"lastInBytes\":2780137711,\"lastOutBytes\":73038554,\"outBytes\":73038554,\"outFlow\":8521,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":411953,\"inBytes\":1545609596,\"inFlow\":403326,\"lastChangeTime\":\"0:01:24.22\",\"lastInBytes\":1545609596,\"lastOutBytes\":2456575442,\"outBytes\":2456575442,\"outFlow\":8626,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413416,\"inBytes\":179456541,\"inFlow\":403343,\"lastChangeTime\":\"0:01:23.76\",\"lastInBytes\":179456541,\"lastOutBytes\":1030982275,\"outBytes\":1030982275,\"outFlow\":10072,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:23.76\",\"lastInBytes\":0,\"lastOutBytes\":1107920297,\"outBytes\":1107920297,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3384777,\"inBytes\":4030781886,\"inFlow\":81093,\"lastChangeTime\":\"0:01:21.94\",\"lastInBytes\":4030781886,\"lastOutBytes\":1939204365,\"outBytes\":1939204365,\"outFlow\":3303684,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:15.156648000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493811", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1012040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif152\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:de\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408891,\"inBytes\":2920192946,\"inFlow\":399630,\"lastChangeTime\":\"1 day, 18:22:52.26\",\"lastInBytes\":2920192946,\"lastOutBytes\":403289191,\"outBytes\":403289191,\"outFlow\":9260,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":276602904,\"inFlow\":2,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":276602904,\"lastOutBytes\":3099914071,\"outBytes\":3099914071,\"outFlow\":96,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406921,\"inBytes\":3142807187,\"inFlow\":10124,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3142807187,\"lastOutBytes\":896419774,\"outBytes\":896419774,\"outFlow\":396797,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:31.509935000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493812", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1012040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif152\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:51\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408439,\"inBytes\":2921482477,\"inFlow\":399165,\"lastChangeTime\":\"1 day, 18:22:45.24\",\"lastInBytes\":2921482477,\"lastOutBytes\":2979465866,\"outBytes\":2979465866,\"outFlow\":9273,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":276601374,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":276601374,\"lastOutBytes\":3123773726,\"outBytes\":3123773726,\"outFlow\":96,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408438,\"inBytes\":1299357146,\"inFlow\":10132,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1299357146,\"lastOutBytes\":603789443,\"outBytes\":603789443,\"outFlow\":398306,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:31.280703000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493813", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:14", + "echoMap": {}, + "deviceId": "1012040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif152\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:38\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:14\",\"info\":{\"portInfoList\":[{\"flow\":406134,\"inBytes\":1348724651,\"inFlow\":396865,\"lastChangeTime\":\"1 day, 18:22:49.67\",\"lastInBytes\":1348724651,\"lastOutBytes\":3687099946,\"outBytes\":3687099946,\"outFlow\":9268,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":276603324,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":276603324,\"lastOutBytes\":3111544198,\"outBytes\":3111544198,\"outFlow\":97,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408007,\"inBytes\":2054259000,\"inFlow\":10129,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2054259000,\"lastOutBytes\":3343382690,\"outBytes\":3343382690,\"outFlow\":397877,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:33.844300000\"}}", + "lastDiagTime": "2026-02-02 14:39:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887228094493814", + "createdBy": "0", + "createdTime": "2025-12-01 09:55:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1012040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.152.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif152\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:01.89\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:ba\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.152.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:04\",\"info\":{\"portInfoList\":[{\"flow\":413835,\"inBytes\":2921574188,\"inFlow\":404549,\"lastChangeTime\":\"3 days, 23:48:24.50\",\"lastInBytes\":2921574188,\"lastOutBytes\":1894270825,\"outBytes\":1894270825,\"outFlow\":9286,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":81436,\"inFlow\":0,\"lastChangeTime\":\"3 days, 23:55:18.47\",\"lastInBytes\":81436,\"lastOutBytes\":225386,\"outBytes\":225386,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":15101,\"inFlow\":0,\"lastChangeTime\":\"3 days, 23:59:53.93\",\"lastInBytes\":15101,\"lastOutBytes\":19913402,\"outBytes\":19913402,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":97,\"inBytes\":276602752,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":276602752,\"lastOutBytes\":2976394535,\"outBytes\":2976394535,\"outFlow\":96,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409859,\"inBytes\":91153248,\"inFlow\":10253,\"lastChangeTime\":\"3 days, 23:58:14.41\",\"lastInBytes\":91153248,\"lastOutBytes\":621176489,\"outBytes\":621176489,\"outFlow\":399606,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:35.035406000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589887228094493796", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1012110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.151.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"3.65\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"115 days, 10:53:34.27\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10547153\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28227702\",\"inOctets\":\"2581995535\",\"inUcastPkts\":\"1343144660\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:4b:38\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1549363225\",\"outQLen\":\"0\",\"outUcastPkts\":\"1316664029\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.151.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1013": { + "ndmAlarmHost": [ + { + "id": "691084964062142477", + "createdBy": null, + "createdTime": "2025-10-23 08:46:19", + "updatedBy": null, + "updatedTime": "2025-10-23 08:46:19", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "http://10.18.153.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303048109000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "691084968357109775", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060001", + "name": "[613](10)新天地通信设备室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303048005013613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109776", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060002", + "name": "[614](10)新天地通信设备室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303048005013614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109777", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060003", + "name": "[615](10)新天地通信设备室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303048005013615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109778", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060004", + "name": "[605](10)新天地内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109779", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060005", + "name": "[616](10)新天地通信设备室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303048005013616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109780", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060006", + "name": "[606](10)新天地内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109781", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060007", + "name": "[504](10)新天地票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301030006013504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109782", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060008", + "name": "[363](10)新天地安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301085006013363", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109783", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060009", + "name": "[301](10)新天地1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109784", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060010", + "name": "[302](10)新天地1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109785", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060011", + "name": "[204](10)新天地厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301035004013204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109786", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060012", + "name": "[408](10)新天地4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301008006013408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109787", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060013", + "name": "[307](10)新天地1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109788", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060014", + "name": "[308](10)新天地1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109789", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 11:35:45", + "echoMap": {}, + "deviceId": "1013060015", + "name": "[309](10)新天地1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109790", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060016", + "name": "[310](10)新天地1#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109791", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060017", + "name": "[303](10)新天地1#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109792", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060018", + "name": "[209](10)新天地1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055004013209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109793", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060019", + "name": "[305](10)新天地1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109794", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060020", + "name": "[306](10)新天地1#口出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109795", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060021", + "name": "[311](10)新天地1#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109796", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060022", + "name": "[304](10)新天地1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109797", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060023", + "name": "[312](10)新天地1#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301055006013312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109798", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060024", + "name": "[335](10)新天地#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109799", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060025", + "name": "[334](10)新天地#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109800", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060026", + "name": "[406](10)新天地4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301008006013406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109801", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060027", + "name": "[407](10)新天地4#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301008006013407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109802", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060028", + "name": "[501](10)新天地客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301001006013501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084968357109803", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060029", + "name": "[361](10)新天地2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301036005013361", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077056", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060030", + "name": "[330](10)新天地#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077057", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060031", + "name": "[331](10)新天地#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077058", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060032", + "name": "[337](10)新天地#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301045006013337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077059", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060033", + "name": "[339](10)新天地#4厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301045006013339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077060", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060034", + "name": "[401](10)新天地1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301005006013401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077061", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060035", + "name": "[202](10)新天地厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301035004013202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077062", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060036", + "name": "[352](10)新天地B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301040006013352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077063", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060037", + "name": "[601](10)新天地车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303042004013601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077064", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060038", + "name": "[402](10)新天地1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301005006013402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077065", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060039", + "name": "[403](10)新天地1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301005006013403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077066", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060040", + "name": "[320](10)新天地6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077067", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060041", + "name": "[321](10)新天地6#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077068", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060042", + "name": "[502](10)新天地客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301001006013502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077069", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060043", + "name": "[404](10)新天地2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301006006013404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077070", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060044", + "name": "[211](10)新天地6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060004013211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077071", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060045", + "name": "[322](10)新天地6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077072", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060046", + "name": "[325](10)新天地6#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077073", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060047", + "name": "[324](10)新天地6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077074", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060048", + "name": "[323](10)新天地6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077075", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060049", + "name": "[327](10)新天地6#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077076", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060050", + "name": "[326](10)新天地6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301060006013326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077077", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060051", + "name": "[349](10)新天地公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301040006013349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077078", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060052", + "name": "[503](10)新天地票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301030006013503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077079", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060053", + "name": "[362](10)新天地安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301085006013362", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077080", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060054", + "name": "[604](10)新天地内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077081", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 07:11:45", + "echoMap": {}, + "deviceId": "1013060055", + "name": "[617](10)新天地环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303053005013617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077082", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060056", + "name": "[618](10)新天地环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303053005013618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077083", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1013060057", + "name": "[353](10)新天地B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301040006013353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077084", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060058", + "name": "[201](10)新天地厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301035004013201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077085", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060059", + "name": "[351](10)新天地B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301040006013351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077086", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060060", + "name": "[328](10)新天地#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077087", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060061", + "name": "[338](10)新天地#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301045006013338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077088", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060062", + "name": "[329](10)新天地#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077089", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060063", + "name": "[336](10)新天地#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301045006013336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077090", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060064", + "name": "[360](10)新天地1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301036005013360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077091", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060065", + "name": "[405](10)新天地3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301007006013405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077092", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060066", + "name": "[203](10)新天地厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301035004013203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077093", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060067", + "name": "[350](10)新天地公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301040006013350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077094", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060068", + "name": "[333](10)新天地#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077095", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2026-02-02 12:34:45", + "echoMap": {}, + "deviceId": "1013060069", + "name": "[332](10)新天地#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301050006013332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077096", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060070", + "name": "[313](10)新天地2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077097", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060071", + "name": "[314](10)新天地2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077098", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060072", + "name": "[315](10)新天地2#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084972652077099", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-12-16 12:44:43", + "echoMap": {}, + "deviceId": "1013060073", + "name": "[319](10)新天地2#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044352", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060074", + "name": "[210](10)新天地2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056004013210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044353", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060075", + "name": "[317](10)新天地2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044354", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060076", + "name": "[318](10)新天地2#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044355", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-12-16 12:45:43", + "echoMap": {}, + "deviceId": "1013060077", + "name": "[316](10)新天地2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061301056006013316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044356", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060078", + "name": "[623](10)新天地消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044357", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060079", + "name": "[619](10)新天地环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303053005013619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044358", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060080", + "name": "[622](10)新天地消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044359", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060081", + "name": "[607](10)新天地内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044360", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060082", + "name": "[602](10)新天地编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303041005013602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044361", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060083", + "name": "[624](10)新天地2#口消防出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001006013624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044362", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060084", + "name": "[603](10)新天地编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303041005013603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044363", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060085", + "name": "[612](10)新天地内通道9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303021006013612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044364", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060086", + "name": "[344](10)新天地#4台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302018006013344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044365", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060087", + "name": "[348](10)新天地#4台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302017006013348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044366", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060088", + "name": "[208](10)新天地下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302001004013208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044367", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060089", + "name": "[112](10)新天地下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302012006013112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044368", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060090", + "name": "[111](10)新天地下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302012006013111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044369", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060091", + "name": "[701](10)新天地3#-7#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044370", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060092", + "name": "[358](10)新天地10-13换乘通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302002006013358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044371", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060093", + "name": "[355](10)新天地B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302002006013355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044372", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060094", + "name": "[110](10)新天地下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302012006013110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044373", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060095", + "name": "[109](10)新天地下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302012006013109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044374", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060096", + "name": "[610](10)新天地内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303021006013610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044375", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060097", + "name": "[611](10)新天地内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303021006013611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044376", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060098", + "name": "[359](10)新天地10-13换乘通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302002006013359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044377", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1013060099", + "name": "[346](10)新天地#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302017006013346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044378", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060100", + "name": "[341](10)新天地#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302018006013341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044379", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060101", + "name": "[207](10)新天地下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302001004013207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044380", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060102", + "name": "[108](10)新天地下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302012006013108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044381", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060103", + "name": "[107](10)新天地下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302012006013107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044382", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1013060104", + "name": "[101](10)新天地上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.153.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302007006013101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044383", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060105", + "name": "[102](10)新天地上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302007006013102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044384", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060106", + "name": "[205](10)新天地上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302001004013205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044385", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060107", + "name": "[347](10)新天地#3台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302017006013347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044386", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1013060108", + "name": "[342](10)新天地#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302018006013342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044387", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1013060109", + "name": "[608](10)新天地内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303021006013608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044388", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1013060110", + "name": "[354](10)新天地B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302002006013354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044389", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060111", + "name": "[103](10)新天地上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302007006013103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044390", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060112", + "name": "[104](10)新天地上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302007006013104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044391", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1013060113", + "name": "[356](10)新天地10-13换成通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302002006013356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044392", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1013060114", + "name": "[702](10)新天地4#-8#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044393", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060115", + "name": "[105](10)新天地上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302007006013105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044394", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060116", + "name": "[106](10)新天地上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302007006013106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044395", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060117", + "name": "[206](10)新天地上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302001004013206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044396", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060118", + "name": "[345](10)新天地#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302017006013345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044397", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060119", + "name": "[340](10)新天地#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302018006013340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044398", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060120", + "name": "[621](10)新天地屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303021005013621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044399", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060121", + "name": "[609](10)新天地内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303021006013609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084976947044400", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060122", + "name": "[357](10)新天地10-13换成通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061302002006013357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011648", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1013060123", + "name": "[708](10)新天地6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011649", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060124", + "name": "[705](10)新天地下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011650", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060125", + "name": "[707](10)新天地2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011651", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060126", + "name": "[706](10)新天地上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011652", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1013060127", + "name": "[703](10)新天地5#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011653", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060128", + "name": "[704](10)新天地1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011654", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060129", + "name": "[709](10)新天地内通道10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303001005013709", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011655", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060130", + "name": "[710](10)新天地气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303067005013710", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011656", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060131", + "name": "[711](10)新天地通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303048005013711", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011657", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060132", + "name": "[712](10)新天地消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061303068005013712", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011658", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1013060133", + "name": "[713](10)新天地7#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013713", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691084981242011659", + "createdBy": "0", + "createdTime": "2025-10-23 08:51:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1013060134", + "name": "[714](10)新天地4#-8#道岔2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.154.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061304013006013714", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589887567396918405", + "createdBy": "0", + "createdTime": "2025-02-24 14:21:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1013070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.153.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061300000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"2338832\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"920306157\",\"inUcastPkts\":\"598837637\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:ca\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3193474594\",\"outQLen\":\"0\",\"outUcastPkts\":\"3497974967\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.153.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:45\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZA1826\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"46\",\"CPU使用率\":\"14\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589887567396918457", + "createdBy": "2", + "createdTime": "2025-02-24 14:23:09", + "updatedBy": null, + "updatedTime": "2025-12-23 10:13:29", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.153.51", + "manageUrl": "http:\\\\10.18.153.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918458", + "createdBy": "2", + "createdTime": "2025-02-24 14:23:28", + "updatedBy": null, + "updatedTime": "2025-12-23 10:13:24", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.153.52", + "manageUrl": "http:\\\\10.18.153.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589887567396918407", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1013090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.153.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.90\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"173 days, 9:57:27.65\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"11543802\",\"inErrors\":\"0\",\"inNUcastPkts\":\"30902497\",\"inOctets\":\"3609655996\",\"inUcastPkts\":\"1928154205\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:f6:8a:40\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1265462220\",\"outQLen\":\"0\",\"outUcastPkts\":\"337227741\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.153.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589887567396918408", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 14:22:18", + "echoMap": {}, + "deviceId": "1013050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.153.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061300000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.153.22;10.18.153.23" + }, + { + "id": "589887567396918409", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1013050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.153.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061300000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26083344\",\"inErrors\":\"0\",\"inNUcastPkts\":\"57815230\",\"inOctets\":\"2524370623\",\"inUcastPkts\":\"1954220887\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:34:e7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2650971494\",\"outQLen\":\"0\",\"outUcastPkts\":\"1928061170\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4900\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3280\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.153.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:46\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":804751794,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15322\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"60\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.153.22" + }, + { + "id": "589887567396918410", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1013050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.153.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061300000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26091631\",\"inErrors\":\"0\",\"inNUcastPkts\":\"45612246\",\"inOctets\":\"2235553067\",\"inUcastPkts\":\"1207635113\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:33:a1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"93283374\",\"outQLen\":\"0\",\"outUcastPkts\":\"3063994719\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.153.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:47\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":804751794,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15323\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"56\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.153.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589887567396918435", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:47", + "echoMap": {}, + "deviceId": "1013030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7278085\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"405846975\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"74 days, 1:27:07.13\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7278090\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:f6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25500003,\"status\":1,\"voltage\":25.897001},{\"current\":0.21800001,\"status\":1,\"voltage\":25.897001},{\"current\":0.24300002,\"status\":1,\"voltage\":25.897001},{\"current\":0.22500001,\"status\":1,\"voltage\":25.897001},{\"current\":0.231,\"status\":1,\"voltage\":25.897001},{\"current\":0.24100001,\"status\":1,\"voltage\":25.897001},{\"current\":0.22600001,\"status\":1,\"voltage\":25.897001},{\"current\":0.001,\"status\":1,\"voltage\":25.897001},{\"current\":0.001,\"status\":1,\"voltage\":25.897001},{\"current\":0.001,\"status\":1,\"voltage\":26.305},{\"current\":0.003,\"status\":1,\"voltage\":26.305},{\"current\":0.001,\"status\":1,\"voltage\":26.305},{\"current\":0.001,\"status\":1,\"voltage\":26.305},{\"current\":0.001,\"status\":1,\"voltage\":26.305},{\"current\":0.001,\"status\":1,\"voltage\":26.305},{\"current\":0.0,\"status\":1,\"voltage\":26.305}],\"fanSpeeds\":[2730,2700],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0001512208301782\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:33:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918436", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:47", + "echoMap": {}, + "deviceId": "1013030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3108779\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"171742336\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"323 days, 5:14:17.30\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3108784\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:c0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.298,\"status\":1,\"voltage\":26.185001},{\"current\":0.287,\"status\":1,\"voltage\":26.185001},{\"current\":0.34,\"status\":1,\"voltage\":26.185001},{\"current\":0.344,\"status\":1,\"voltage\":26.185001},{\"current\":0.558,\"status\":1,\"voltage\":26.185001},{\"current\":0.34100002,\"status\":1,\"voltage\":26.185001},{\"current\":0.001,\"status\":1,\"voltage\":26.185001},{\"current\":0.001,\"status\":1,\"voltage\":26.185001},{\"current\":0.001,\"status\":1,\"voltage\":26.185001},{\"current\":0.001,\"status\":1,\"voltage\":25.951002},{\"current\":0.003,\"status\":1,\"voltage\":25.951002},{\"current\":0.001,\"status\":1,\"voltage\":25.951002},{\"current\":0.001,\"status\":1,\"voltage\":25.951002},{\"current\":0.001,\"status\":1,\"voltage\":25.951002},{\"current\":0.001,\"status\":1,\"voltage\":25.951002},{\"current\":0.001,\"status\":1,\"voltage\":25.951002}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301151\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:33:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918437", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:48", + "echoMap": {}, + "deviceId": "1013030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6156559\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342872769\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6156564\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:f5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24400002,\"status\":1,\"voltage\":26.258001},{\"current\":0.23500001,\"status\":1,\"voltage\":26.258001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.258001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.258001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.258001},{\"current\":0.523,\"status\":1,\"voltage\":26.258001},{\"current\":0.326,\"status\":1,\"voltage\":26.258001},{\"current\":0.333,\"status\":1,\"voltage\":26.258001},{\"current\":0.272,\"status\":1,\"voltage\":26.258001},{\"current\":0.337,\"status\":1,\"voltage\":25.968},{\"current\":0.003,\"status\":1,\"voltage\":25.968},{\"current\":0.307,\"status\":1,\"voltage\":25.968},{\"current\":0.001,\"status\":1,\"voltage\":25.968},{\"current\":0.001,\"status\":1,\"voltage\":25.968},{\"current\":0.001,\"status\":1,\"voltage\":25.968},{\"current\":0.001,\"status\":1,\"voltage\":25.968}],\"fanSpeeds\":[0,3750000],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301781\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:33:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918438", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:48", + "echoMap": {}, + "deviceId": "1013030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155889\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342835785\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155894\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.30100003,\"status\":1,\"voltage\":26.319002},{\"current\":0.317,\"status\":1,\"voltage\":26.319002},{\"current\":0.37,\"status\":1,\"voltage\":26.319002},{\"current\":0.354,\"status\":1,\"voltage\":26.319002},{\"current\":0.27100003,\"status\":1,\"voltage\":26.319002},{\"current\":0.0,\"status\":1,\"voltage\":26.319002},{\"current\":0.0,\"status\":1,\"voltage\":26.319002},{\"current\":0.0,\"status\":1,\"voltage\":26.319002},{\"current\":0.0,\"status\":1,\"voltage\":26.319002},{\"current\":0.0,\"status\":1,\"voltage\":25.926},{\"current\":0.003,\"status\":1,\"voltage\":25.926},{\"current\":0.001,\"status\":1,\"voltage\":25.926},{\"current\":0.001,\"status\":1,\"voltage\":25.926},{\"current\":0.001,\"status\":1,\"voltage\":25.926},{\"current\":0.001,\"status\":1,\"voltage\":25.926},{\"current\":0.001,\"status\":1,\"voltage\":25.926}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300134\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918439", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:48", + "echoMap": {}, + "deviceId": "1013030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155885\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342835157\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155890\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:e6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.43600002,\"status\":1,\"voltage\":26.234001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.234001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.234001},{\"current\":0.30400002,\"status\":1,\"voltage\":26.234001},{\"current\":0.26700002,\"status\":1,\"voltage\":26.234001},{\"current\":0.32700002,\"status\":1,\"voltage\":26.234001},{\"current\":0.522,\"status\":1,\"voltage\":26.234001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001},{\"current\":0.003,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001},{\"current\":0.001,\"status\":1,\"voltage\":26.234001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301510\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918440", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:49", + "echoMap": {}, + "deviceId": "1013030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155885\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342835689\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155890\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:33\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.522,\"status\":1,\"voltage\":26.032001},{\"current\":0.43500003,\"status\":1,\"voltage\":26.032001},{\"current\":0.453,\"status\":1,\"voltage\":26.032001},{\"current\":0.425,\"status\":1,\"voltage\":26.032001},{\"current\":0.001,\"status\":1,\"voltage\":26.032001},{\"current\":0.33,\"status\":1,\"voltage\":26.032001},{\"current\":0.37800002,\"status\":1,\"voltage\":26.032001},{\"current\":0.001,\"status\":1,\"voltage\":26.032001},{\"current\":0.001,\"status\":1,\"voltage\":26.032001},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.003,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301843\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918441", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:49", + "echoMap": {}, + "deviceId": "1013030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155885\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342835609\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155890\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:98\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22900002,\"status\":1,\"voltage\":26.241001},{\"current\":0.307,\"status\":1,\"voltage\":26.241001},{\"current\":0.261,\"status\":1,\"voltage\":26.241001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.241001},{\"current\":0.231,\"status\":1,\"voltage\":26.241001},{\"current\":0.259,\"status\":1,\"voltage\":26.241001},{\"current\":0.514,\"status\":1,\"voltage\":26.241001},{\"current\":0.316,\"status\":1,\"voltage\":26.241001},{\"current\":0.001,\"status\":1,\"voltage\":26.241001},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.003,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301688\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918442", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:49", + "echoMap": {}, + "deviceId": "1013030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155885\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342836377\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155890\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:3a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.277,\"status\":1,\"voltage\":26.286001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.286001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.286001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.286001},{\"current\":0.216,\"status\":1,\"voltage\":26.286001},{\"current\":0.22900002,\"status\":1,\"voltage\":26.286001},{\"current\":0.535,\"status\":1,\"voltage\":26.286001},{\"current\":0.001,\"status\":1,\"voltage\":26.286001},{\"current\":0.001,\"status\":1,\"voltage\":26.286001},{\"current\":0.001,\"status\":1,\"voltage\":26.345001},{\"current\":0.003,\"status\":1,\"voltage\":26.345001},{\"current\":0.001,\"status\":1,\"voltage\":26.345001},{\"current\":0.001,\"status\":1,\"voltage\":26.345001},{\"current\":0.001,\"status\":1,\"voltage\":26.345001},{\"current\":0.001,\"status\":1,\"voltage\":26.345001},{\"current\":0.001,\"status\":1,\"voltage\":26.345001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301850\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918443", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:49", + "echoMap": {}, + "deviceId": "1013030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155810\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342831288\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155815\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:bf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":26.334002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.334002},{\"current\":0.252,\"status\":1,\"voltage\":26.334002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.334002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.334002},{\"current\":0.42200002,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.003,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301983\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918444", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:50", + "echoMap": {}, + "deviceId": "1013030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155894\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342835642\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155899\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:a5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.35500002,\"status\":1,\"voltage\":26.269001},{\"current\":0.537,\"status\":1,\"voltage\":26.269001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.269001},{\"current\":0.26700002,\"status\":1,\"voltage\":26.269001},{\"current\":0.27600002,\"status\":1,\"voltage\":26.269001},{\"current\":0.001,\"status\":1,\"voltage\":26.269001},{\"current\":0.001,\"status\":1,\"voltage\":26.269001},{\"current\":0.001,\"status\":1,\"voltage\":26.269001},{\"current\":0.001,\"status\":1,\"voltage\":26.269001},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.003,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002}],\"fanSpeeds\":[0,1230],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300933\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918445", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:50", + "echoMap": {}, + "deviceId": "1013030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6155885\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342402633\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6155890\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:24\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.296,\"status\":1,\"voltage\":26.569002},{\"current\":0.35500002,\"status\":1,\"voltage\":26.569002},{\"current\":0.264,\"status\":1,\"voltage\":26.569002},{\"current\":0.259,\"status\":1,\"voltage\":26.569002},{\"current\":0.508,\"status\":1,\"voltage\":26.569002},{\"current\":0.23600002,\"status\":1,\"voltage\":26.569002},{\"current\":0.252,\"status\":1,\"voltage\":26.569002},{\"current\":0.307,\"status\":1,\"voltage\":26.569002},{\"current\":0.001,\"status\":1,\"voltage\":26.569002},{\"current\":0.001,\"status\":1,\"voltage\":26.099},{\"current\":0.003,\"status\":1,\"voltage\":26.099},{\"current\":0.001,\"status\":1,\"voltage\":26.099},{\"current\":0.001,\"status\":1,\"voltage\":26.099},{\"current\":0.001,\"status\":1,\"voltage\":26.099},{\"current\":0.001,\"status\":1,\"voltage\":26.099},{\"current\":0.001,\"status\":1,\"voltage\":26.099}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302019\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:33:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918446", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:45", + "echoMap": {}, + "deviceId": "1013030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:34:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918447", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1013030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6153922\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342726626\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6153927\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:d3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.223,\"status\":1,\"voltage\":26.376001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.376001},{\"current\":0.32000002,\"status\":1,\"voltage\":26.376001},{\"current\":0.54,\"status\":1,\"voltage\":26.376001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.376001},{\"current\":0.27100003,\"status\":1,\"voltage\":26.376001},{\"current\":0.23500001,\"status\":1,\"voltage\":26.376001},{\"current\":0.0,\"status\":1,\"voltage\":26.376001},{\"current\":0.0,\"status\":1,\"voltage\":26.376001},{\"current\":0.0,\"status\":1,\"voltage\":26.427002},{\"current\":0.003,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002}],\"fanSpeeds\":[1530,1530],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301747\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918448", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1013030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6153921\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342725434\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6153926\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:70\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27,\"status\":1,\"voltage\":26.229002},{\"current\":0.27100003,\"status\":1,\"voltage\":26.229002},{\"current\":0.26700002,\"status\":1,\"voltage\":26.229002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.229002},{\"current\":0.001,\"status\":1,\"voltage\":26.229002},{\"current\":0.001,\"status\":1,\"voltage\":26.229002},{\"current\":0.001,\"status\":1,\"voltage\":26.229002},{\"current\":0.001,\"status\":1,\"voltage\":26.229002},{\"current\":0.001,\"status\":1,\"voltage\":26.229002},{\"current\":0.001,\"status\":1,\"voltage\":25.997002},{\"current\":0.003,\"status\":1,\"voltage\":25.997002},{\"current\":0.001,\"status\":1,\"voltage\":25.997002},{\"current\":0.001,\"status\":1,\"voltage\":25.997002},{\"current\":0.001,\"status\":1,\"voltage\":25.997002},{\"current\":0.0,\"status\":1,\"voltage\":25.997002},{\"current\":0.0,\"status\":1,\"voltage\":25.997002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300112\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918449", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1013030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6153885\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342723601\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6153890\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:79\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24100001,\"status\":1,\"voltage\":26.286001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.286001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.286001},{\"current\":0.27400002,\"status\":1,\"voltage\":26.286001},{\"current\":0.256,\"status\":1,\"voltage\":26.286001},{\"current\":0.50200003,\"status\":1,\"voltage\":26.286001},{\"current\":0.246,\"status\":1,\"voltage\":26.286001},{\"current\":0.25100002,\"status\":1,\"voltage\":26.286001},{\"current\":0.001,\"status\":1,\"voltage\":26.286001},{\"current\":0.001,\"status\":1,\"voltage\":26.054},{\"current\":0.003,\"status\":1,\"voltage\":26.054},{\"current\":0.001,\"status\":1,\"voltage\":26.054},{\"current\":0.001,\"status\":1,\"voltage\":26.054},{\"current\":0.001,\"status\":1,\"voltage\":26.054},{\"current\":0.001,\"status\":1,\"voltage\":26.054},{\"current\":0.001,\"status\":1,\"voltage\":26.054}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301913\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918450", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:00", + "echoMap": {}, + "deviceId": "1013030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6153758\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342715179\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6153763\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:00\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.259,\"status\":1,\"voltage\":26.256},{\"current\":0.24900001,\"status\":1,\"voltage\":26.256},{\"current\":0.544,\"status\":1,\"voltage\":26.256},{\"current\":0.30200002,\"status\":1,\"voltage\":26.256},{\"current\":0.256,\"status\":1,\"voltage\":26.256},{\"current\":0.22100002,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.003,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.219002},{\"current\":0.001,\"status\":1,\"voltage\":26.215002},{\"current\":0.001,\"status\":1,\"voltage\":26.215002},{\"current\":0.001,\"status\":1,\"voltage\":26.215002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301280\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918451", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:00", + "echoMap": {}, + "deviceId": "1013030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6153758\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342717657\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6153763\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:7d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.268,\"status\":1,\"voltage\":26.193},{\"current\":0.26700002,\"status\":1,\"voltage\":26.193},{\"current\":0.266,\"status\":1,\"voltage\":26.193},{\"current\":0.266,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.059002},{\"current\":0.003,\"status\":1,\"voltage\":26.059002},{\"current\":0.001,\"status\":1,\"voltage\":26.059002},{\"current\":0.001,\"status\":1,\"voltage\":26.059002},{\"current\":0.001,\"status\":1,\"voltage\":26.059002},{\"current\":0.001,\"status\":1,\"voltage\":26.059002},{\"current\":0.001,\"status\":1,\"voltage\":26.059002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301405\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918452", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:01", + "echoMap": {}, + "deviceId": "1013030018", + "name": "安防箱18", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6153758\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"342717397\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6153763\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:c2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.111002},{\"current\":0.254,\"status\":1,\"voltage\":26.111002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.111002},{\"current\":0.523,\"status\":1,\"voltage\":26.111002},{\"current\":0.29200003,\"status\":1,\"voltage\":26.111002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.111002},{\"current\":0.21200001,\"status\":1,\"voltage\":26.111002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.111002},{\"current\":0.23300001,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":1,\"voltage\":26.325},{\"current\":0.003,\"status\":1,\"voltage\":26.325},{\"current\":0.001,\"status\":1,\"voltage\":26.325},{\"current\":0.001,\"status\":1,\"voltage\":26.325},{\"current\":0.001,\"status\":1,\"voltage\":26.325},{\"current\":0.001,\"status\":1,\"voltage\":26.325},{\"current\":0.001,\"status\":1,\"voltage\":26.325}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301153\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918453", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:09", + "echoMap": {}, + "deviceId": "1013030019", + "name": "安防箱19", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918454", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1013030020", + "name": "安防箱20", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918455", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1013030021", + "name": "安防箱21", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918456", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:33:46", + "echoMap": {}, + "deviceId": "1013030022", + "name": "安防箱22", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.154.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:33:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589887567396918411", + "createdBy": "2", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1013040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.153.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"cpuRatio\":\"-1\",\"temperature\":\"-1\",\"memoryRatio\":\"-1\",\"logTime\":\"2026-02-02 14:37:48\",\"info\":{\"portInfoList\":[],\"timestamp\":\"2026-02-02T14:37:24.815631000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918412", + "createdBy": "2", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"203539\",\"inUnknownProtos\":\"1099056295\",\"index\":\"634\",\"lastChange\":\"0:01:22.49\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:2d:cb\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3759127838\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"1012\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":270104,\"inBytes\":1330149134,\"inFlow\":263298,\"lastChangeTime\":\"65 days, 19:57:19.66\",\"lastInBytes\":1330149134,\"lastOutBytes\":2381413357,\"outBytes\":2381413357,\"outFlow\":6806,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":270088,\"inBytes\":1153109213,\"inFlow\":263372,\"lastChangeTime\":\"65 days, 19:57:09.39\",\"lastInBytes\":1153109213,\"lastOutBytes\":2098903562,\"outBytes\":2098903562,\"outFlow\":6716,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":270192,\"inBytes\":2123674456,\"inFlow\":263373,\"lastChangeTime\":\"65 days, 19:57:07.33\",\"lastInBytes\":2123674456,\"lastOutBytes\":742763247,\"outBytes\":742763247,\"outFlow\":6819,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":269805,\"inBytes\":3393508622,\"inFlow\":263155,\"lastChangeTime\":\"114 days, 11:02:51.14\",\"lastInBytes\":3393508622,\"lastOutBytes\":3975947835,\"outBytes\":3975947835,\"outFlow\":6649,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":404281,\"inBytes\":3725865823,\"inFlow\":394330,\"lastChangeTime\":\"65 days, 22:57:45.81\",\"lastInBytes\":3725865823,\"lastOutBytes\":2942713213,\"outBytes\":2942713213,\"outFlow\":9951,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":404122,\"inBytes\":1416757835,\"inFlow\":394332,\"lastChangeTime\":\"65 days, 22:58:40.85\",\"lastInBytes\":1416757835,\"lastOutBytes\":1099056295,\"outBytes\":1099056295,\"outFlow\":9789,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":607418,\"inBytes\":60535250,\"inFlow\":592199,\"lastChangeTime\":\"357 days, 18:30:11.37\",\"lastInBytes\":60535250,\"lastOutBytes\":1351344870,\"outBytes\":1351344870,\"outFlow\":15218,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":12782,\"inFlow\":0,\"lastChangeTime\":\"357 days, 18:30:35.85\",\"lastInBytes\":12782,\"lastOutBytes\":1589237,\"outBytes\":1589237,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":104712,\"inFlow\":0,\"lastChangeTime\":\"386 days, 21:16:55.49\",\"lastInBytes\":104712,\"lastOutBytes\":3131526,\"outBytes\":3131526,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":490271,\"inFlow\":0,\"lastChangeTime\":\"104 days, 18:27:56.00\",\"lastInBytes\":490271,\"lastOutBytes\":26859369,\"outBytes\":26859369,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":757665237,\"inFlow\":1,\"lastChangeTime\":\"386 days, 21:16:57.53\",\"lastInBytes\":757665237,\"lastOutBytes\":4107446522,\"outBytes\":4107446522,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2684673,\"inBytes\":2172142894,\"inFlow\":69170,\"lastChangeTime\":\"424 days, 22:20:28.12\",\"lastInBytes\":2172142894,\"lastOutBytes\":3051076434,\"outBytes\":3051076434,\"outFlow\":2615502,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.615577000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918413", + "createdBy": "2", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164031\",\"inUnknownProtos\":\"3084742892\",\"index\":\"635\",\"lastChange\":\"0:12:38.28\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:02:ee:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3959713806\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"966027\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":431662,\"inBytes\":3081430743,\"inFlow\":421028,\"lastChangeTime\":\"12 days, 0:38:47.72\",\"lastInBytes\":3081430743,\"lastOutBytes\":409651210,\"outBytes\":409651210,\"outFlow\":10633,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":880446,\"inBytes\":2282260580,\"inFlow\":858826,\"lastChangeTime\":\"12 days, 0:38:48.97\",\"lastInBytes\":2282260580,\"lastOutBytes\":90304989,\"outBytes\":90304989,\"outFlow\":21620,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":913154,\"inBytes\":2659017844,\"inFlow\":896322,\"lastChangeTime\":\"173 days, 15:24:32.15\",\"lastInBytes\":2659017844,\"lastOutBytes\":1545431791,\"outBytes\":1545431791,\"outFlow\":16831,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":439911,\"inBytes\":3957405581,\"inFlow\":431211,\"lastChangeTime\":\"173 days, 15:24:07.75\",\"lastInBytes\":3957405581,\"lastOutBytes\":3001697885,\"outBytes\":3001697885,\"outFlow\":8700,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":537849,\"inBytes\":301764627,\"inFlow\":525173,\"lastChangeTime\":\"384 days, 18:39:58.79\",\"lastInBytes\":301764627,\"lastOutBytes\":405043428,\"outBytes\":405043428,\"outFlow\":12675,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":405067,\"inBytes\":1897151041,\"inFlow\":396106,\"lastChangeTime\":\"173 days, 15:24:20.15\",\"lastInBytes\":1897151041,\"lastOutBytes\":3084648437,\"outBytes\":3084648437,\"outFlow\":8961,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3692997821,\"inFlow\":0,\"lastChangeTime\":\"4 days, 22:02:54.62\",\"lastInBytes\":3692997821,\"lastOutBytes\":1522433588,\"outBytes\":1522433588,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3773400478,\"inFlow\":0,\"lastChangeTime\":\"4 days, 22:03:01.90\",\"lastInBytes\":3773400478,\"lastOutBytes\":1349771993,\"outBytes\":1349771993,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":8186672,\"inFlow\":0,\"lastChangeTime\":\"456 days, 11:22:06.41\",\"lastInBytes\":8186672,\"lastOutBytes\":302365127,\"outBytes\":302365127,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":322495615,\"inFlow\":1,\"lastChangeTime\":\"456 days, 10:44:33.60\",\"lastInBytes\":322495615,\"lastOutBytes\":1514745010,\"outBytes\":1514745010,\"outFlow\":96,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3595147,\"inBytes\":1426529960,\"inFlow\":82278,\"lastChangeTime\":\"0:12:38.27\",\"lastInBytes\":1426529960,\"lastOutBytes\":4009803165,\"outBytes\":4009803165,\"outFlow\":3512869,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.621243000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918414", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"5\",\"0\",\"3\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"1240\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165809\",\"inUnknownProtos\":\"4283764544\",\"index\":\"636\",\"lastChange\":\"0:01:22.50\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:40:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3179832001\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153141865\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.133\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":401663,\"inBytes\":1841039719,\"inFlow\":391865,\"lastChangeTime\":\"457 days, 18:41:17.04\",\"lastInBytes\":1841039719,\"lastOutBytes\":2227460519,\"outBytes\":2227460519,\"outFlow\":9797,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":401208,\"inBytes\":1022374418,\"inFlow\":391424,\"lastChangeTime\":\"452 days, 23:05:06.61\",\"lastInBytes\":1022374418,\"lastOutBytes\":1386621731,\"outBytes\":1386621731,\"outFlow\":9784,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":403015,\"inBytes\":1620891927,\"inFlow\":393154,\"lastChangeTime\":\"32 days, 9:35:00.59\",\"lastInBytes\":1620891927,\"lastOutBytes\":517170311,\"outBytes\":517170311,\"outFlow\":9860,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":401668,\"inBytes\":1287262914,\"inFlow\":391920,\"lastChangeTime\":\"452 days, 23:05:04.35\",\"lastInBytes\":1287262914,\"lastOutBytes\":2488843287,\"outBytes\":2488843287,\"outFlow\":9747,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":401404,\"inBytes\":2155041781,\"inFlow\":391620,\"lastChangeTime\":\"452 days, 23:05:08.52\",\"lastInBytes\":2155041781,\"lastOutBytes\":409903133,\"outBytes\":409903133,\"outFlow\":9783,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1331217,\"inBytes\":2221054059,\"inFlow\":1301185,\"lastChangeTime\":\"384 days, 18:40:18.77\",\"lastInBytes\":2221054059,\"lastOutBytes\":3132037871,\"outBytes\":3132037871,\"outFlow\":30032,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":408632,\"inBytes\":3126970767,\"inFlow\":400437,\"lastChangeTime\":\"173 days, 15:24:28.85\",\"lastInBytes\":3126970767,\"lastOutBytes\":4283654439,\"outBytes\":4283654439,\"outFlow\":8195,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":397459,\"inBytes\":1895369347,\"inFlow\":389345,\"lastChangeTime\":\"173 days, 15:24:25.83\",\"lastInBytes\":1895369347,\"lastOutBytes\":1141925868,\"outBytes\":1141925868,\"outFlow\":8114,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":932783,\"inBytes\":2373952491,\"inFlow\":909739,\"lastChangeTime\":\"452 days, 23:04:56.97\",\"lastInBytes\":2373952491,\"lastOutBytes\":1482222531,\"outBytes\":1482222531,\"outFlow\":23044,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":470547,\"inBytes\":2650816637,\"inFlow\":461205,\"lastChangeTime\":\"173 days, 15:24:23.25\",\"lastInBytes\":2650816637,\"lastOutBytes\":2138773477,\"outBytes\":2138773477,\"outFlow\":9342,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":932116,\"inBytes\":801583622,\"inFlow\":909131,\"lastChangeTime\":\"452 days, 23:05:13.10\",\"lastInBytes\":801583622,\"lastOutBytes\":1533461089,\"outBytes\":1533461089,\"outFlow\":22985,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":97,\"inBytes\":643267234,\"inFlow\":1,\"lastChangeTime\":\"4 days, 22:04:46.60\",\"lastInBytes\":643267234,\"lastOutBytes\":1632657317,\"outBytes\":1632657317,\"outFlow\":95,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:35.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:35.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6337999,\"inBytes\":332309179,\"inFlow\":152751,\"lastChangeTime\":\"0:13:13.11\",\"lastInBytes\":332309179,\"lastOutBytes\":2147839140,\"outBytes\":2147839140,\"outFlow\":6185248,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.820296000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918415", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165696\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"4 days, 21:46:45.26\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:16:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":433479,\"inBytes\":676379131,\"inFlow\":422984,\"lastChangeTime\":\"12 days, 0:50:37.73\",\"lastInBytes\":676379131,\"lastOutBytes\":2278415229,\"outBytes\":2278415229,\"outFlow\":10495,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":433776,\"inBytes\":3083882671,\"inFlow\":423215,\"lastChangeTime\":\"12 days, 0:50:39.97\",\"lastInBytes\":3083882671,\"lastOutBytes\":2357151891,\"outBytes\":2357151891,\"outFlow\":10561,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":570877,\"inBytes\":1647007509,\"inFlow\":557690,\"lastChangeTime\":\"173 days, 15:23:53.56\",\"lastInBytes\":1647007509,\"lastOutBytes\":3121083766,\"outBytes\":3121083766,\"outFlow\":13187,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":22174139,\"inBytes\":1694859718,\"inFlow\":411883,\"lastChangeTime\":\"173 days, 15:24:13.43\",\"lastInBytes\":1694859718,\"lastOutBytes\":145,\"outBytes\":145,\"outFlow\":21762256,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":898380,\"inBytes\":3887751271,\"inFlow\":875582,\"lastChangeTime\":\"256 days, 11:52:06.78\",\"lastInBytes\":3887751271,\"lastOutBytes\":2823997880,\"outBytes\":2823997880,\"outFlow\":22797,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":99,\"inBytes\":643208114,\"inFlow\":1,\"lastChangeTime\":\"4 days, 21:48:09.39\",\"lastInBytes\":643208114,\"lastOutBytes\":1776282823,\"outBytes\":1776282823,\"outFlow\":97,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2683891,\"inBytes\":3914304606,\"inFlow\":66989,\"lastChangeTime\":\"4 days, 21:46:45.26\",\"lastInBytes\":3914304606,\"lastOutBytes\":3283865724,\"outBytes\":3283865724,\"outFlow\":2616901,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.632139000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918416", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165738\",\"inUnknownProtos\":\"156437762\",\"index\":\"635\",\"lastChange\":\"0:01:32.24\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:0f:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3427033760\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153137664\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":605382,\"inBytes\":1334353279,\"inFlow\":589864,\"lastChangeTime\":\"446 days, 9:22:34.95\",\"lastInBytes\":1334353279,\"lastOutBytes\":3219873402,\"outBytes\":3219873402,\"outFlow\":15517,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":401661,\"inBytes\":3337763725,\"inFlow\":391833,\"lastChangeTime\":\"12 days, 0:22:46.63\",\"lastInBytes\":3337763725,\"lastOutBytes\":531847243,\"outBytes\":531847243,\"outFlow\":9828,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":401953,\"inBytes\":832810483,\"inFlow\":392221,\"lastChangeTime\":\"12 days, 0:22:48.03\",\"lastInBytes\":832810483,\"lastOutBytes\":3417936139,\"outBytes\":3417936139,\"outFlow\":9732,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":402694,\"inBytes\":3862720033,\"inFlow\":392895,\"lastChangeTime\":\"12 days, 0:22:53.66\",\"lastInBytes\":3862720033,\"lastOutBytes\":4018433822,\"outBytes\":4018433822,\"outFlow\":9798,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":402753,\"inBytes\":4254093981,\"inFlow\":392996,\"lastChangeTime\":\"346 days, 4:40:12.07\",\"lastInBytes\":4254093981,\"lastOutBytes\":2732095823,\"outBytes\":2732095823,\"outFlow\":9757,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":419879,\"inBytes\":2436535229,\"inFlow\":410553,\"lastChangeTime\":\"173 days, 15:23:57.33\",\"lastInBytes\":2436535229,\"lastOutBytes\":156437762,\"outBytes\":156437762,\"outFlow\":9325,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1344758,\"inBytes\":2438846622,\"inFlow\":1314088,\"lastChangeTime\":\"384 days, 18:40:57.33\",\"lastInBytes\":2438846622,\"lastOutBytes\":3676138627,\"outBytes\":3676138627,\"outFlow\":30669,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":403991,\"inBytes\":373522880,\"inFlow\":394085,\"lastChangeTime\":\"12 days, 0:18:14.79\",\"lastInBytes\":373522880,\"lastOutBytes\":2420648462,\"outBytes\":2420648462,\"outFlow\":9905,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2196173,\"inFlow\":0,\"lastChangeTime\":\"446 days, 9:39:05.60\",\"lastInBytes\":2196173,\"lastOutBytes\":95289587,\"outBytes\":95289587,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":643864309,\"inFlow\":1,\"lastChangeTime\":\"272 days, 11:49:59.24\",\"lastInBytes\":643864309,\"lastOutBytes\":1807094939,\"outBytes\":1807094939,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4396670,\"inBytes\":1842877732,\"inFlow\":108936,\"lastChangeTime\":\"0:20:18.23\",\"lastInBytes\":1842877732,\"lastOutBytes\":2175325145,\"outBytes\":2175325145,\"outFlow\":4287733,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.615296000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918417", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"161885\",\"inUnknownProtos\":\"2056570712\",\"index\":\"635\",\"lastChange\":\"0:01:23.28\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:05:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4093908303\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":1286393,\"inBytes\":896454798,\"inFlow\":1256405,\"lastChangeTime\":\"372 days, 18:11:04.75\",\"lastInBytes\":896454798,\"lastOutBytes\":3669178342,\"outBytes\":3669178342,\"outFlow\":29987,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":457676,\"inBytes\":1474951317,\"inFlow\":447238,\"lastChangeTime\":\"161 days, 14:55:47.50\",\"lastInBytes\":1474951317,\"lastOutBytes\":4026023231,\"outBytes\":4026023231,\"outFlow\":10438,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":533802,\"inBytes\":3316808867,\"inFlow\":521222,\"lastChangeTime\":\"161 days, 14:55:42.46\",\"lastInBytes\":3316808867,\"lastOutBytes\":2753467589,\"outBytes\":2753467589,\"outFlow\":12579,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":429227,\"inBytes\":2190552483,\"inFlow\":420345,\"lastChangeTime\":\"161 days, 14:55:38.21\",\"lastInBytes\":2190552483,\"lastOutBytes\":294626529,\"outBytes\":294626529,\"outFlow\":8882,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":592800,\"inBytes\":2689865730,\"inFlow\":580193,\"lastChangeTime\":\"161 days, 14:55:34.90\",\"lastInBytes\":2689865730,\"lastOutBytes\":347273792,\"outBytes\":347273792,\"outFlow\":12607,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":964390,\"inBytes\":870375662,\"inFlow\":939437,\"lastChangeTime\":\"0:01:25.24\",\"lastInBytes\":870375662,\"lastOutBytes\":2056570712,\"outBytes\":2056570712,\"outFlow\":24952,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":651961,\"inBytes\":1218268689,\"inFlow\":633231,\"lastChangeTime\":\"460 days, 0:00:01.75\",\"lastInBytes\":1218268689,\"lastOutBytes\":2959446223,\"outBytes\":2959446223,\"outFlow\":18729,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":642920090,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.24\",\"lastInBytes\":642920090,\"lastOutBytes\":1647190706,\"outBytes\":1647190706,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4608451,\"inBytes\":2230175344,\"inFlow\":115043,\"lastChangeTime\":\"0:01:23.27\",\"lastInBytes\":2230175344,\"lastOutBytes\":3745436653,\"outBytes\":3745436653,\"outFlow\":4493408,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.626446000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918418", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165792\",\"inUnknownProtos\":\"2422257418\",\"index\":\"635\",\"lastChange\":\"0:01:14.90\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:24:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"249684938\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153140360\",\"speed\":\"4294967295\"},\"cpuRatio\":\"7\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":415006,\"inBytes\":1657820186,\"inFlow\":404226,\"lastChangeTime\":\"452 days, 23:03:48.89\",\"lastInBytes\":1657820186,\"lastOutBytes\":1531436663,\"outBytes\":1531436663,\"outFlow\":10779,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":557274,\"inBytes\":2974450519,\"inFlow\":545279,\"lastChangeTime\":\"173 days, 15:23:36.31\",\"lastInBytes\":2974450519,\"lastOutBytes\":2887555639,\"outBytes\":2887555639,\"outFlow\":11995,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":877285,\"inBytes\":3732894845,\"inFlow\":855810,\"lastChangeTime\":\"452 days, 23:03:48.74\",\"lastInBytes\":3732894845,\"lastOutBytes\":1643158594,\"outBytes\":1643158594,\"outFlow\":21474,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":403917,\"inBytes\":1093994205,\"inFlow\":394079,\"lastChangeTime\":\"452 days, 23:03:42.59\",\"lastInBytes\":1093994205,\"lastOutBytes\":2672647252,\"outBytes\":2672647252,\"outFlow\":9837,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":404380,\"inBytes\":1909827339,\"inFlow\":394549,\"lastChangeTime\":\"452 days, 23:03:52.22\",\"lastInBytes\":1909827339,\"lastOutBytes\":338497664,\"outBytes\":338497664,\"outFlow\":9831,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":404152,\"inBytes\":760505139,\"inFlow\":394336,\"lastChangeTime\":\"452 days, 23:03:57.18\",\"lastInBytes\":760505139,\"lastOutBytes\":2422257418,\"outBytes\":2422257418,\"outFlow\":9816,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1348377,\"inBytes\":3109871672,\"inFlow\":1317589,\"lastChangeTime\":\"384 days, 18:38:59.08\",\"lastInBytes\":3109871672,\"lastOutBytes\":1822745296,\"outBytes\":1822745296,\"outFlow\":30787,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":911188,\"inBytes\":1558711581,\"inFlow\":886941,\"lastChangeTime\":\"12 days, 0:30:37.76\",\"lastInBytes\":1558711581,\"lastOutBytes\":3972233009,\"outBytes\":3972233009,\"outFlow\":24246,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":643208410,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.67\",\"lastInBytes\":643208410,\"lastOutBytes\":1769341262,\"outBytes\":1769341262,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5344005,\"inBytes\":3486301067,\"inFlow\":134653,\"lastChangeTime\":\"0:13:57.48\",\"lastInBytes\":3486301067,\"lastOutBytes\":1525685625,\"outBytes\":1525685625,\"outFlow\":5209352,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.627874000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918419", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"52924104\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165705\",\"inUnknownProtos\":\"2471497058\",\"index\":\"635\",\"lastChange\":\"0:01:25.22\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:02:fa:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"677426588\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"4296\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":444872,\"inBytes\":775361651,\"inFlow\":433273,\"lastChangeTime\":\"12 days, 0:31:47.38\",\"lastInBytes\":775361651,\"lastOutBytes\":962320544,\"outBytes\":962320544,\"outFlow\":11599,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":973845,\"inBytes\":332495099,\"inFlow\":948100,\"lastChangeTime\":\"12 days, 0:31:27.39\",\"lastInBytes\":332495099,\"lastOutBytes\":3251138381,\"outBytes\":3251138381,\"outFlow\":25744,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":444408,\"inBytes\":2905462134,\"inFlow\":432869,\"lastChangeTime\":\"0:01:27.61\",\"lastInBytes\":2905462134,\"lastOutBytes\":3418158574,\"outBytes\":3418158574,\"outFlow\":11538,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":293451,\"inBytes\":2286143160,\"inFlow\":285019,\"lastChangeTime\":\"0:01:27.07\",\"lastInBytes\":2286143160,\"lastOutBytes\":1225059392,\"outBytes\":1225059392,\"outFlow\":8431,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":288983,\"inBytes\":2292733024,\"inFlow\":281871,\"lastChangeTime\":\"0:01:27.61\",\"lastInBytes\":2292733024,\"lastOutBytes\":3123159755,\"outBytes\":3123159755,\"outFlow\":7111,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":442878,\"inBytes\":2209086721,\"inFlow\":431319,\"lastChangeTime\":\"12 days, 0:32:44.05\",\"lastInBytes\":2209086721,\"lastOutBytes\":2471497058,\"outBytes\":2471497058,\"outFlow\":11558,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1442756,\"inBytes\":2076205598,\"inFlow\":1409737,\"lastChangeTime\":\"384 days, 18:39:42.95\",\"lastInBytes\":2076205598,\"lastOutBytes\":1663688365,\"outBytes\":1663688365,\"outFlow\":33019,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1331191,\"inFlow\":0,\"lastChangeTime\":\"243 days, 7:22:15.74\",\"lastInBytes\":1331191,\"lastOutBytes\":56732910,\"outBytes\":56732910,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":643934153,\"inFlow\":1,\"lastChangeTime\":\"243 days, 7:15:42.61\",\"lastInBytes\":643934153,\"lastOutBytes\":1795088137,\"outBytes\":1795088137,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4054169,\"inBytes\":144315744,\"inFlow\":106186,\"lastChangeTime\":\"0:20:25.95\",\"lastInBytes\":144315744,\"lastOutBytes\":2572263680,\"outBytes\":2572263680,\"outFlow\":3947982,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.626583000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918420", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165793\",\"inUnknownProtos\":\"150\",\"index\":\"636\",\"lastChange\":\"0:01:19.67\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:51:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"233925525\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.139\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":411365,\"inBytes\":3131103519,\"inFlow\":400635,\"lastChangeTime\":\"12 days, 0:44:02.70\",\"lastInBytes\":3131103519,\"lastOutBytes\":1958525358,\"outBytes\":1958525358,\"outFlow\":10730,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409849,\"inBytes\":1016614115,\"inFlow\":399160,\"lastChangeTime\":\"12 days, 0:44:04.19\",\"lastInBytes\":1016614115,\"lastOutBytes\":2176209662,\"outBytes\":2176209662,\"outFlow\":10689,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":411690,\"inBytes\":2143365045,\"inFlow\":400912,\"lastChangeTime\":\"12 days, 0:44:07.57\",\"lastInBytes\":2143365045,\"lastOutBytes\":1087217739,\"outBytes\":1087217739,\"outFlow\":10777,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413300,\"inBytes\":151101556,\"inFlow\":402550,\"lastChangeTime\":\"12 days, 0:44:07.69\",\"lastInBytes\":151101556,\"lastOutBytes\":2635602810,\"outBytes\":2635602810,\"outFlow\":10749,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":412670,\"inBytes\":2956425526,\"inFlow\":401900,\"lastChangeTime\":\"12 days, 0:44:12.24\",\"lastInBytes\":2956425526,\"lastOutBytes\":1173678205,\"outBytes\":1173678205,\"outFlow\":10770,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":604409,\"inBytes\":3531177336,\"inFlow\":589102,\"lastChangeTime\":\"446 days, 9:33:41.74\",\"lastInBytes\":3531177336,\"lastOutBytes\":1426858464,\"outBytes\":1426858464,\"outFlow\":15306,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":17804840,\"inBytes\":643200447,\"inFlow\":1,\"lastChangeTime\":\"4 days, 21:56:11.36\",\"lastInBytes\":643200447,\"lastOutBytes\":1,\"outBytes\":1,\"outFlow\":17804838,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2671612,\"inBytes\":1753509630,\"inFlow\":71988,\"lastChangeTime\":\"0:20:37.17\",\"lastInBytes\":1753509630,\"lastOutBytes\":2301678245,\"outBytes\":2301678245,\"outFlow\":2599624,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.632677000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918421", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165785\",\"inUnknownProtos\":\"0\",\"index\":\"636\",\"lastChange\":\"0:01:23.22\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:2b:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.140\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":436418,\"inBytes\":1065258356,\"inFlow\":426385,\"lastChangeTime\":\"441 days, 15:08:13.08\",\"lastInBytes\":1065258356,\"lastOutBytes\":2983704095,\"outBytes\":2983704095,\"outFlow\":10033,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9014525,\"inBytes\":2379438177,\"inFlow\":524617,\"lastChangeTime\":\"384 days, 18:39:10.83\",\"lastInBytes\":2379438177,\"lastOutBytes\":240,\"outBytes\":240,\"outFlow\":8489907,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":415350,\"inBytes\":2360361821,\"inFlow\":404520,\"lastChangeTime\":\"243 days, 8:08:35.50\",\"lastInBytes\":2360361821,\"lastOutBytes\":413251983,\"outBytes\":413251983,\"outFlow\":10829,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414915,\"inBytes\":1337148952,\"inFlow\":404161,\"lastChangeTime\":\"243 days, 8:09:34.12\",\"lastInBytes\":1337148952,\"lastOutBytes\":2321860236,\"outBytes\":2321860236,\"outFlow\":10753,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414700,\"inBytes\":2098790533,\"inFlow\":403736,\"lastChangeTime\":\"243 days, 8:08:34.55\",\"lastInBytes\":2098790533,\"lastOutBytes\":2606897518,\"outBytes\":2606897518,\"outFlow\":10964,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":21676,\"inFlow\":0,\"lastChangeTime\":\"243 days, 8:10:06.54\",\"lastInBytes\":21676,\"lastOutBytes\":14299532,\"outBytes\":14299532,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":643208575,\"inFlow\":1,\"lastChangeTime\":\"4 days, 21:53:46.84\",\"lastInBytes\":643208575,\"lastOutBytes\":1774433280,\"outBytes\":1774433280,\"outFlow\":96,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2198285,\"inBytes\":4101521575,\"inFlow\":56999,\"lastChangeTime\":\"243 days, 8:09:53.42\",\"lastInBytes\":4101521575,\"lastOutBytes\":119191446,\"outBytes\":119191446,\"outFlow\":2141285,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.647017000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918422", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165786\",\"inUnknownProtos\":\"3973085254\",\"index\":\"635\",\"lastChange\":\"0:01:14.93\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:12:cb\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"574367070\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153139171\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":444880,\"inBytes\":3891873403,\"inFlow\":433317,\"lastChangeTime\":\"452 days, 23:03:38.43\",\"lastInBytes\":3891873403,\"lastOutBytes\":1716960484,\"outBytes\":1716960484,\"outFlow\":11563,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":431227,\"inBytes\":822272542,\"inFlow\":422494,\"lastChangeTime\":\"173 days, 15:23:41.91\",\"lastInBytes\":822272542,\"lastOutBytes\":1899120513,\"outBytes\":1899120513,\"outFlow\":8733,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":444356,\"inBytes\":4293467356,\"inFlow\":432736,\"lastChangeTime\":\"452 days, 23:03:39.54\",\"lastInBytes\":4293467356,\"lastOutBytes\":1936342144,\"outBytes\":1936342144,\"outFlow\":11620,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":445174,\"inBytes\":656514344,\"inFlow\":433616,\"lastChangeTime\":\"481 days, 10:31:21.59\",\"lastInBytes\":656514344,\"lastOutBytes\":3631692312,\"outBytes\":3631692312,\"outFlow\":11557,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1462369,\"inBytes\":4112318536,\"inFlow\":1428848,\"lastChangeTime\":\"384 days, 18:39:01.81\",\"lastInBytes\":4112318536,\"lastOutBytes\":2450811132,\"outBytes\":2450811132,\"outFlow\":33521,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":416123,\"inBytes\":546424113,\"inFlow\":404503,\"lastChangeTime\":\"481 days, 10:32:21.31\",\"lastInBytes\":546424113,\"lastOutBytes\":3973085254,\"outBytes\":3973085254,\"outFlow\":11619,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":417537,\"inBytes\":3521163651,\"inFlow\":406744,\"lastChangeTime\":\"452 days, 23:03:55.21\",\"lastInBytes\":3521163651,\"lastOutBytes\":2330282062,\"outBytes\":2330282062,\"outFlow\":10792,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":502869,\"inBytes\":2748172844,\"inFlow\":492707,\"lastChangeTime\":\"481 days, 10:32:55.23\",\"lastInBytes\":2748172844,\"lastOutBytes\":3934605846,\"outBytes\":3934605846,\"outFlow\":10162,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":90187,\"inFlow\":0,\"lastChangeTime\":\"332 days, 6:47:48.19\",\"lastInBytes\":90187,\"lastOutBytes\":35078398,\"outBytes\":35078398,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":644085909,\"inFlow\":1,\"lastChangeTime\":\"332 days, 6:50:35.73\",\"lastInBytes\":644085909,\"lastOutBytes\":1828662442,\"outBytes\":1828662442,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4359934,\"inBytes\":3952951711,\"inFlow\":107860,\"lastChangeTime\":\"0:16:14.71\",\"lastInBytes\":3952951711,\"lastOutBytes\":2260735462,\"outBytes\":2260735462,\"outFlow\":4252073,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.622224000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918423", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165802\",\"inUnknownProtos\":\"549981322\",\"index\":\"635\",\"lastChange\":\"0:01:20.95\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:25:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2189963281\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153133698\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":411866,\"inBytes\":3457589757,\"inFlow\":401045,\"lastChangeTime\":\"243 days, 7:34:35.79\",\"lastInBytes\":3457589757,\"lastOutBytes\":4075620664,\"outBytes\":4075620664,\"outFlow\":10820,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":267951,\"inBytes\":2685699224,\"inFlow\":261319,\"lastChangeTime\":\"243 days, 7:34:44.25\",\"lastInBytes\":2685699224,\"lastOutBytes\":2177623178,\"outBytes\":2177623178,\"outFlow\":6631,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":411907,\"inBytes\":2991369880,\"inFlow\":401148,\"lastChangeTime\":\"243 days, 7:34:21.80\",\"lastInBytes\":2991369880,\"lastOutBytes\":3414733555,\"outBytes\":3414733555,\"outFlow\":10759,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":267909,\"inBytes\":3202532479,\"inFlow\":261284,\"lastChangeTime\":\"332 days, 6:59:15.94\",\"lastInBytes\":3202532479,\"lastOutBytes\":2312660374,\"outBytes\":2312660374,\"outFlow\":6625,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":411363,\"inBytes\":1358360004,\"inFlow\":400728,\"lastChangeTime\":\"243 days, 7:34:12.55\",\"lastInBytes\":1358360004,\"lastOutBytes\":2047650921,\"outBytes\":2047650921,\"outFlow\":10635,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":267759,\"inBytes\":1003061068,\"inFlow\":261112,\"lastChangeTime\":\"243 days, 7:34:11.54\",\"lastInBytes\":1003061068,\"lastOutBytes\":549981322,\"outBytes\":549981322,\"outFlow\":6647,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":411974,\"inBytes\":1733499069,\"inFlow\":401258,\"lastChangeTime\":\"452 days, 23:03:59.99\",\"lastInBytes\":1733499069,\"lastOutBytes\":471636952,\"outBytes\":471636952,\"outFlow\":10715,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":268468,\"inBytes\":2077966593,\"inFlow\":261640,\"lastChangeTime\":\"243 days, 7:32:05.44\",\"lastInBytes\":2077966593,\"lastOutBytes\":2982488183,\"outBytes\":2982488183,\"outFlow\":6828,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":267944,\"inBytes\":3683219461,\"inFlow\":261366,\"lastChangeTime\":\"243 days, 7:33:36.07\",\"lastInBytes\":3683219461,\"lastOutBytes\":3134676212,\"outBytes\":3134676212,\"outFlow\":6577,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":267586,\"inBytes\":243386947,\"inFlow\":261155,\"lastChangeTime\":\"330 days, 0:30:43.36\",\"lastInBytes\":243386947,\"lastOutBytes\":85364037,\"outBytes\":85364037,\"outFlow\":6431,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":169550,\"inFlow\":0,\"lastChangeTime\":\"243 days, 7:35:56.39\",\"lastInBytes\":169550,\"lastOutBytes\":5068758,\"outBytes\":5068758,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":43031,\"inFlow\":0,\"lastChangeTime\":\"332 days, 7:00:57.80\",\"lastInBytes\":43031,\"lastOutBytes\":4686563,\"outBytes\":4686563,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":1125948944,\"inFlow\":2,\"lastChangeTime\":\"332 days, 7:01:07.57\",\"lastInBytes\":1125948944,\"lastOutBytes\":253255879,\"outBytes\":253255879,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3266952,\"inBytes\":1532157497,\"inFlow\":85902,\"lastChangeTime\":\"332 days, 7:01:02.97\",\"lastInBytes\":1532157497,\"lastOutBytes\":3453723875,\"outBytes\":3453723875,\"outFlow\":3181050,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.761044000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918424", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1\",\"0\",\"0\",\"0\",\"12\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165821\",\"inUnknownProtos\":\"3231638720\",\"index\":\"635\",\"lastChange\":\"0:01:18.39\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:4a:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2507112981\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"890\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":444778,\"inBytes\":1273212589,\"inFlow\":433063,\"lastChangeTime\":\"77 days, 22:47:36.96\",\"lastInBytes\":1273212589,\"lastOutBytes\":2806195891,\"outBytes\":2806195891,\"outFlow\":11715,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":973366,\"inBytes\":805666487,\"inFlow\":947762,\"lastChangeTime\":\"77 days, 22:47:39.99\",\"lastInBytes\":805666487,\"lastOutBytes\":3381976626,\"outBytes\":3381976626,\"outFlow\":25604,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":443102,\"inBytes\":2907114493,\"inFlow\":431469,\"lastChangeTime\":\"77 days, 22:47:42.88\",\"lastInBytes\":2907114493,\"lastOutBytes\":1181269331,\"outBytes\":1181269331,\"outFlow\":11632,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1437700,\"inBytes\":2141189662,\"inFlow\":1405047,\"lastChangeTime\":\"384 days, 18:37:58.91\",\"lastInBytes\":2141189662,\"lastOutBytes\":3571049978,\"outBytes\":3571049978,\"outFlow\":32652,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":978067,\"inBytes\":90557468,\"inFlow\":951711,\"lastChangeTime\":\"452 days, 23:02:30.08\",\"lastInBytes\":90557468,\"lastOutBytes\":2659037970,\"outBytes\":2659037970,\"outFlow\":26356,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":973913,\"inBytes\":2662896770,\"inFlow\":947450,\"lastChangeTime\":\"452 days, 23:02:47.87\",\"lastInBytes\":2662896770,\"lastOutBytes\":3231638720,\"outBytes\":3231638720,\"outFlow\":26463,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":406165,\"inBytes\":1484281481,\"inFlow\":395537,\"lastChangeTime\":\"397 days, 21:44:29.92\",\"lastInBytes\":1484281481,\"lastOutBytes\":3178041684,\"outBytes\":3178041684,\"outFlow\":10627,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":91864,\"inFlow\":0,\"lastChangeTime\":\"272 days, 10:40:41.66\",\"lastInBytes\":91864,\"lastOutBytes\":1542820,\"outBytes\":1542820,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":236218,\"inFlow\":0,\"lastChangeTime\":\"360 days, 12:23:43.71\",\"lastInBytes\":236218,\"lastOutBytes\":7868395,\"outBytes\":7868395,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6362,\"inFlow\":0,\"lastChangeTime\":\"272 days, 10:40:10.49\",\"lastInBytes\":6362,\"lastOutBytes\":3669,\"outBytes\":3669,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":643025295,\"inFlow\":1,\"lastChangeTime\":\"397 days, 21:44:33.94\",\"lastInBytes\":643025295,\"lastOutBytes\":1769939126,\"outBytes\":1769939126,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5327794,\"inBytes\":983311875,\"inFlow\":141768,\"lastChangeTime\":\"360 days, 12:23:48.84\",\"lastInBytes\":983311875,\"lastOutBytes\":964946335,\"outBytes\":964946335,\"outFlow\":5186026,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.636808000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918425", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165591\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:18.43\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:21:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.144\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":404873,\"inBytes\":1548866107,\"inFlow\":394975,\"lastChangeTime\":\"452 days, 23:03:21.45\",\"lastInBytes\":1548866107,\"lastOutBytes\":3549721664,\"outBytes\":3549721664,\"outFlow\":9897,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":873929,\"inBytes\":2266655827,\"inFlow\":852510,\"lastChangeTime\":\"77 days, 21:39:19.24\",\"lastInBytes\":2266655827,\"lastOutBytes\":2664387036,\"outBytes\":2664387036,\"outFlow\":21418,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":877836,\"inBytes\":710081215,\"inFlow\":855680,\"lastChangeTime\":\"452 days, 23:03:26.32\",\"lastInBytes\":710081215,\"lastOutBytes\":4071935402,\"outBytes\":4071935402,\"outFlow\":22156,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":877407,\"inBytes\":3333193523,\"inFlow\":855156,\"lastChangeTime\":\"452 days, 23:03:28.12\",\"lastInBytes\":3333193523,\"lastOutBytes\":860068196,\"outBytes\":860068196,\"outFlow\":22250,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":643006563,\"inFlow\":1,\"lastChangeTime\":\"77 days, 21:39:50.79\",\"lastInBytes\":643006563,\"lastOutBytes\":1773332000,\"outBytes\":1773332000,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3048310,\"inBytes\":271256356,\"inFlow\":79663,\"lastChangeTime\":\"0:20:47.77\",\"lastInBytes\":271256356,\"lastOutBytes\":884425136,\"outBytes\":884425136,\"outFlow\":2968647,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.635350000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918426", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040016", + "name": "H3C前端交换机15", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164059\",\"inUnknownProtos\":\"548560054\",\"index\":\"635\",\"lastChange\":\"0:01:21.87\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:1a:8b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2669448744\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"152152121\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.145\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":404090,\"inBytes\":800276444,\"inFlow\":394281,\"lastChangeTime\":\"72 days, 21:31:05.39\",\"lastInBytes\":800276444,\"lastOutBytes\":1148963704,\"outBytes\":1148963704,\"outFlow\":9809,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":404204,\"inBytes\":3479360599,\"inFlow\":394385,\"lastChangeTime\":\"72 days, 21:31:12.67\",\"lastInBytes\":3479360599,\"lastOutBytes\":2440407706,\"outBytes\":2440407706,\"outFlow\":9818,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":403107,\"inBytes\":3024357909,\"inFlow\":393177,\"lastChangeTime\":\"447 days, 22:43:35.44\",\"lastInBytes\":3024357909,\"lastOutBytes\":30833200,\"outBytes\":30833200,\"outFlow\":9930,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":404020,\"inBytes\":4140234914,\"inFlow\":394087,\"lastChangeTime\":\"72 days, 21:31:22.85\",\"lastInBytes\":4140234914,\"lastOutBytes\":3538139530,\"outBytes\":3538139530,\"outFlow\":9933,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":404620,\"inBytes\":4112457107,\"inFlow\":394788,\"lastChangeTime\":\"72 days, 21:31:25.27\",\"lastInBytes\":4112457107,\"lastOutBytes\":2876067710,\"outBytes\":2876067710,\"outFlow\":9831,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1331283,\"inBytes\":1217267824,\"inFlow\":1300794,\"lastChangeTime\":\"379 days, 18:18:55.69\",\"lastInBytes\":1217267824,\"lastOutBytes\":548560054,\"outBytes\":548560054,\"outFlow\":30488,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":876884,\"inBytes\":373996933,\"inFlow\":854724,\"lastChangeTime\":\"447 days, 22:43:45.60\",\"lastInBytes\":373996933,\"lastOutBytes\":2100410554,\"outBytes\":2100410554,\"outFlow\":22159,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":872546,\"inBytes\":3088989893,\"inFlow\":851034,\"lastChangeTime\":\"447 days, 22:43:47.80\",\"lastInBytes\":3088989893,\"lastOutBytes\":2587064075,\"outBytes\":2587064075,\"outFlow\":21512,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":642747570,\"inFlow\":1,\"lastChangeTime\":\"72 days, 21:31:44.91\",\"lastInBytes\":642747570,\"lastOutBytes\":1706820316,\"outBytes\":1706820316,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5131556,\"inBytes\":517987574,\"inFlow\":129203,\"lastChangeTime\":\"0:01:21.86\",\"lastInBytes\":517987574,\"lastOutBytes\":3970456035,\"outBytes\":3970456035,\"outFlow\":5002352,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.621233000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918427", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040017", + "name": "H3C前端交换机16", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165370\",\"inUnknownProtos\":\"3367808395\",\"index\":\"635\",\"lastChange\":\"0:01:17.03\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:1d:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"279295882\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.146\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:04\",\"info\":{\"portInfoList\":[{\"flow\":870554,\"inBytes\":3836140619,\"inFlow\":848862,\"lastChangeTime\":\"452 days, 23:02:44.33\",\"lastInBytes\":3836140619,\"lastOutBytes\":3424961636,\"outBytes\":3424961636,\"outFlow\":21691,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":402894,\"inBytes\":3994856517,\"inFlow\":392962,\"lastChangeTime\":\"452 days, 23:02:44.20\",\"lastInBytes\":3994856517,\"lastOutBytes\":1067843969,\"outBytes\":1067843969,\"outFlow\":9931,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1320492,\"inBytes\":3141204153,\"inFlow\":1290495,\"lastChangeTime\":\"384 days, 18:37:49.98\",\"lastInBytes\":3141204153,\"lastOutBytes\":918242713,\"outBytes\":918242713,\"outFlow\":29997,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":402479,\"inBytes\":804302740,\"inFlow\":392844,\"lastChangeTime\":\"77 days, 23:16:22.36\",\"lastInBytes\":804302740,\"lastOutBytes\":752640159,\"outBytes\":752640159,\"outFlow\":9634,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":400869,\"inBytes\":1508344799,\"inFlow\":391277,\"lastChangeTime\":\"77 days, 23:16:26.15\",\"lastInBytes\":1508344799,\"lastOutBytes\":3129603935,\"outBytes\":3129603935,\"outFlow\":9591,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":401277,\"inBytes\":3816836961,\"inFlow\":391606,\"lastChangeTime\":\"77 days, 23:16:31.60\",\"lastInBytes\":3816836961,\"lastOutBytes\":3367808395,\"outBytes\":3367808395,\"outFlow\":9671,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":642732266,\"inFlow\":1,\"lastChangeTime\":\"77 days, 23:16:34.11\",\"lastInBytes\":642732266,\"lastOutBytes\":1751347163,\"outBytes\":1751347163,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3815518,\"inBytes\":2668030326,\"inFlow\":95670,\"lastChangeTime\":\"0:21:12.50\",\"lastInBytes\":2668030326,\"lastOutBytes\":3206457697,\"outBytes\":3206457697,\"outFlow\":3719847,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.759567000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918428", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:03", + "echoMap": {}, + "deviceId": "1013040018", + "name": "H3C前端交换机17", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"140949\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:25.99\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:28:8b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.147\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":403914,\"inBytes\":2916928987,\"inFlow\":394260,\"lastChangeTime\":\"0:01:27.81\",\"lastInBytes\":2916928987,\"lastOutBytes\":4195732383,\"outBytes\":4195732383,\"outFlow\":9654,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":405955,\"inBytes\":3470147692,\"inFlow\":395757,\"lastChangeTime\":\"374 days, 22:50:02.19\",\"lastInBytes\":3470147692,\"lastOutBytes\":1521002354,\"outBytes\":1521002354,\"outFlow\":10197,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":877851,\"inBytes\":2703688278,\"inFlow\":856115,\"lastChangeTime\":\"374 days, 22:50:04.02\",\"lastInBytes\":2703688278,\"lastOutBytes\":931336745,\"outBytes\":931336745,\"outFlow\":21736,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":404459,\"inBytes\":2754918237,\"inFlow\":394803,\"lastChangeTime\":\"0:01:27.81\",\"lastInBytes\":2754918237,\"lastOutBytes\":2615441141,\"outBytes\":2615441141,\"outFlow\":9655,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":642263768,\"inFlow\":1,\"lastChangeTime\":\"0:01:27.80\",\"lastInBytes\":642263768,\"lastOutBytes\":1132206423,\"outBytes\":1132206423,\"outFlow\":96,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2100819,\"inBytes\":3055196640,\"inFlow\":54511,\"lastChangeTime\":\"0:01:25.98\",\"lastInBytes\":3055196640,\"lastOutBytes\":1483674915,\"outBytes\":1483674915,\"outFlow\":2046308,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.633472000\"}}", + "lastDiagTime": "2026-02-02 14:39:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918429", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1013040019", + "name": "H3C前端交换机18", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface154\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"165582\",\"inUnknownProtos\":\"4122309281\",\"index\":\"635\",\"lastChange\":\"0:01:15.18\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:2f:cb\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1857105328\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"52020424\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.148\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":432543,\"inBytes\":3613490553,\"inFlow\":422117,\"lastChangeTime\":\"77 days, 23:26:54.42\",\"lastInBytes\":3613490553,\"lastOutBytes\":2758633809,\"outBytes\":2758633809,\"outFlow\":10426,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":433770,\"inBytes\":1157472009,\"inFlow\":423336,\"lastChangeTime\":\"452 days, 23:02:56.02\",\"lastInBytes\":1157472009,\"lastOutBytes\":1151008323,\"outBytes\":1151008323,\"outFlow\":10433,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":939525,\"inBytes\":467442057,\"inFlow\":916270,\"lastChangeTime\":\"452 days, 23:02:38.14\",\"lastInBytes\":467442057,\"lastOutBytes\":2103722665,\"outBytes\":2103722665,\"outFlow\":23255,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1447616,\"inBytes\":4213327251,\"inFlow\":1415003,\"lastChangeTime\":\"384 days, 18:37:51.44\",\"lastInBytes\":4213327251,\"lastOutBytes\":707382097,\"outBytes\":707382097,\"outFlow\":32613,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":430250,\"inBytes\":3105109695,\"inFlow\":419892,\"lastChangeTime\":\"77 days, 23:27:19.09\",\"lastInBytes\":3105109695,\"lastOutBytes\":953271876,\"outBytes\":953271876,\"outFlow\":10357,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":2103649,\"inBytes\":286832985,\"inFlow\":856257,\"lastChangeTime\":\"77 days, 23:27:21.44\",\"lastInBytes\":286832985,\"lastOutBytes\":173,\"outBytes\":173,\"outFlow\":1247392,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":269876,\"inBytes\":745044395,\"inFlow\":263135,\"lastChangeTime\":\"77 days, 23:27:24.50\",\"lastInBytes\":745044395,\"lastOutBytes\":2236920227,\"outBytes\":2236920227,\"outFlow\":6741,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":404143,\"inBytes\":2432478513,\"inFlow\":394395,\"lastChangeTime\":\"77 days, 23:27:28.61\",\"lastInBytes\":2432478513,\"lastOutBytes\":4074905785,\"outBytes\":4074905785,\"outFlow\":9748,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":406484,\"inBytes\":49576979,\"inFlow\":396716,\"lastChangeTime\":\"77 days, 23:27:31.77\",\"lastInBytes\":49576979,\"lastOutBytes\":1783284564,\"outBytes\":1783284564,\"outFlow\":9768,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":642732564,\"inFlow\":1,\"lastChangeTime\":\"77 days, 23:27:34.35\",\"lastInBytes\":642732564,\"lastOutBytes\":1729807180,\"outBytes\":1729807180,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5421775,\"inBytes\":3625468906,\"inFlow\":136122,\"lastChangeTime\":\"11 days, 23:52:09.57\",\"lastInBytes\":3625468906,\"lastOutBytes\":3183082698,\"outBytes\":3183082698,\"outFlow\":5285652,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:59.627617000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918430", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1013040020", + "name": "华为前端交换机19", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif154\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"48 days, 10:06:14.27\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:44\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.149\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408558,\"inBytes\":688758730,\"inFlow\":399049,\"lastChangeTime\":\"91 days, 8:46:54.49\",\"lastInBytes\":688758730,\"lastOutBytes\":3298663774,\"outBytes\":3298663774,\"outFlow\":9509,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":410027,\"inBytes\":3131869678,\"inFlow\":400483,\"lastChangeTime\":\"376 days, 22:22:17.29\",\"lastInBytes\":3131869678,\"lastOutBytes\":6889461,\"outBytes\":6889461,\"outFlow\":9544,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":410005,\"inBytes\":1036374704,\"inFlow\":400625,\"lastChangeTime\":\"381 days, 9:40:26.74\",\"lastInBytes\":1036374704,\"lastOutBytes\":2278297545,\"outBytes\":2278297545,\"outFlow\":9379,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1230298,\"inBytes\":1273725966,\"inFlow\":30086,\"lastChangeTime\":\"6 days, 23:29:34.62\",\"lastInBytes\":1273725966,\"lastOutBytes\":2697304777,\"outBytes\":2697304777,\"outFlow\":1200211,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:02.009614000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918431", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:41", + "echoMap": {}, + "deviceId": "1013040021", + "name": "华为前端交换机20", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif154\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"48 days, 10:17:56.17\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:c2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.150\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:41\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406666,\"inBytes\":1893273523,\"inFlow\":397208,\"lastChangeTime\":\"392 days, 21:35:48.59\",\"lastInBytes\":1893273523,\"lastOutBytes\":3752107511,\"outBytes\":3752107511,\"outFlow\":9457,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":406923,\"inBytes\":3985673354,\"inFlow\":397444,\"lastChangeTime\":\"392 days, 21:35:49.01\",\"lastInBytes\":3985673354,\"lastOutBytes\":1678061138,\"outBytes\":1678061138,\"outFlow\":9479,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":816450,\"inBytes\":2587850792,\"inFlow\":20341,\"lastChangeTime\":\"392 days, 21:30:48.10\",\"lastInBytes\":2587850792,\"lastOutBytes\":2564175777,\"outBytes\":2564175777,\"outFlow\":796109,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:04.352970000\"}}", + "lastDiagTime": "2026-02-02 14:38:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918432", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "deviceId": "1013040022", + "name": "华为前端交换机21", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif154\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"48 days, 10:29:20.92\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:63\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.151\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":406578,\"inBytes\":1921877137,\"inFlow\":396970,\"lastChangeTime\":\"91 days, 8:50:06.26\",\"lastInBytes\":1921877137,\"lastOutBytes\":1474335000,\"outBytes\":1474335000,\"outFlow\":9608,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408870,\"inBytes\":2893803029,\"inFlow\":10675,\"lastChangeTime\":\"48 days, 10:21:59.11\",\"lastInBytes\":2893803029,\"lastOutBytes\":2389252048,\"outBytes\":2389252048,\"outFlow\":398194,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:02.596402000\"}}", + "lastDiagTime": "2026-02-02 14:38:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589887567396918433", + "createdBy": "0", + "createdTime": "2025-02-24 14:22:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:59", + "echoMap": {}, + "deviceId": "1013040023", + "name": "华为前端交换机22", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.154.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif154\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"48 days, 10:38:08.29\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:87\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.154.152\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:58\",\"info\":{\"portInfoList\":[{\"flow\":404298,\"inBytes\":2526106205,\"inFlow\":394773,\"lastChangeTime\":\"91 days, 8:49:34.86\",\"lastInBytes\":2526106205,\"lastOutBytes\":2774104146,\"outBytes\":2774104146,\"outFlow\":9525,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":403007,\"inBytes\":2427546028,\"inFlow\":393797,\"lastChangeTime\":\"427 days, 22:07:16.51\",\"lastInBytes\":2427546028,\"lastOutBytes\":334940415,\"outBytes\":334940415,\"outFlow\":9210,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":811644,\"inBytes\":156423898,\"inFlow\":20117,\"lastChangeTime\":\"48 days, 10:31:13.36\",\"lastInBytes\":156423898,\"lastOutBytes\":2816659166,\"outBytes\":2816659166,\"outFlow\":791526,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:08.079977000\"}}", + "lastDiagTime": "2026-02-02 14:38:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589887567396918406", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1013110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.153.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.80\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"402 days, 23:44:59.71\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"6935697\",\"inErrors\":\"0\",\"inNUcastPkts\":\"18574780\",\"inOctets\":\"1454079742\",\"inUcastPkts\":\"1122712659\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:f6:87:f8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"671165506\",\"outQLen\":\"0\",\"outUcastPkts\":\"1175467841\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.153.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1014": { + "ndmAlarmHost": [ + { + "id": "707147368653357171", + "createdBy": null, + "createdTime": "2025-12-08 13:42:46", + "updatedBy": null, + "updatedTime": "2025-12-08 13:42:46", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.155.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "690072043268288525", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1014060001", + "name": "[335](10)老西门#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401045006014335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288526", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060002", + "name": "[201](10)老西门厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401035004014201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288527", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060003", + "name": "[332](10)老西门#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401045006014332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288528", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060004", + "name": "[502](10)老西门票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401030006014502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288529", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060005", + "name": "[203](10)老西门厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401035004014203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288530", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060006", + "name": "[309](10)老西门2#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288531", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060007", + "name": "[406](10)老西门2#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401006006014406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288532", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060008", + "name": "[403](10)老西门2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401006006014403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288533", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060009", + "name": "[405](10)老西门2#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401006006014405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288534", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060010", + "name": "[404](10)老西门2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401006006014404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072043268288535", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060011", + "name": "[345](10)老西门安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401085006014345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255808", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060012", + "name": "[401](10)老西门1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401005006014401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255809", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-25 11:18:56", + "echoMap": {}, + "deviceId": "1014060013", + "name": "[344](10)老西门1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401036005014344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255810", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1014060014", + "name": "[610](10)老西门内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255811", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1014060015", + "name": "[609](10)老西门内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255812", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1014060016", + "name": "[346](10)老西门安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401085006014346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255813", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060017", + "name": "[202](10)老西门厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401035004014202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255814", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060018", + "name": "[407](10)老西门3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401007006014407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255815", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060019", + "name": "[333](10)老西门#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401045006014333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255816", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060020", + "name": "[334](10)老西门#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401045006014334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255817", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-22 08:15:43", + "echoMap": {}, + "deviceId": "1014060021", + "name": "[501](10)老西门客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401001006014501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255818", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1014060022", + "name": "[402](10)老西门2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401006006014402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255819", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1014060023", + "name": "[340](10)老西门B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401040006014340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255820", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1014060024", + "name": "[331](10)老西门#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401045006014331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255821", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060025", + "name": "[330](10)老西门#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401045006014330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255822", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060026", + "name": "[614](10)老西门内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255823", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060027", + "name": "[319](10)老西门6#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255824", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060028", + "name": "[341](10)老西门B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401040006014341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255825", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060029", + "name": "[613](10)老西门内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255826", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1014060030", + "name": "[204](10)老西门厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401035004014204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255827", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1014060031", + "name": "[503](10)老西门票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401030006014503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255828", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1014060032", + "name": "[611](10)老西门内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255829", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1014060033", + "name": "[612](10)老西门内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255830", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060034", + "name": "[601](10)老西门弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255831", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060035", + "name": "[323](10)老西门7#口入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072047563255832", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060036", + "name": "[602](10)老西门弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223104", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060037", + "name": "[603](10)老西门弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223105", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060038", + "name": "[604](10)老西门弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223106", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060039", + "name": "[311](10)老西门2#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223107", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060040", + "name": "[308](10)老西门2#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223108", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060041", + "name": "[301](10)老西门2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223109", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060042", + "name": "[304](10)老西门2#口8号线口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223110", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060043", + "name": "[303](10)老西门2#口商场", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223111", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1014060044", + "name": "[307](10)老西门2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223112", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060045", + "name": "[302](10)老西门2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223113", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060046", + "name": "[306](10)老西门2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223114", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060047", + "name": "[310](10)老西门2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223115", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060048", + "name": "[209](10)老西门2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056004014209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223116", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060049", + "name": "[305](10)老西门2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223117", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060050", + "name": "[321](10)老西门7#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223118", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060051", + "name": "[322](10)老西门7#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223119", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1014060052", + "name": "[320](10)老西门7#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223120", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-12-23 00:03:58", + "echoMap": {}, + "deviceId": "1014060053", + "name": "[329](10)老西门7#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223121", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060054", + "name": "[210](10)老西门7#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061004014210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223122", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060055", + "name": "[324](10)老西门7#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223123", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060056", + "name": "[328](10)老西门7#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223124", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060057", + "name": "[325](10)老西门7#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223125", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-12-23 00:04:58", + "echoMap": {}, + "deviceId": "1014060058", + "name": "[327](10)老西门7#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223126", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-12-23 00:03:59", + "echoMap": {}, + "deviceId": "1014060059", + "name": "[326](10)老西门7#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401061006014326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072051858223127", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060060", + "name": "[315](10)老西门6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190400", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060061", + "name": "[211](10)老西门6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060004014211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190401", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1014060062", + "name": "[317](10)老西门6#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190402", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060063", + "name": "[313](10)老西门6#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190403", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060064", + "name": "[316](10)老西门6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190404", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1014060065", + "name": "[318](10)老西门6#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190405", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060066", + "name": "[314](10)老西门6#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401060006014314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190406", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060067", + "name": "[615](10)老西门内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190407", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1014060068", + "name": "[616](10)老西门内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403001006014616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190408", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1014060069", + "name": "[608](10)老西门环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403053005014608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190409", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:30", + "echoMap": {}, + "deviceId": "1014060070", + "name": "[107](10)老西门下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402012006014107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190410", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:30", + "echoMap": {}, + "deviceId": "1014060071", + "name": "[108](10)老西门下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402012006014108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190411", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:30", + "echoMap": {}, + "deviceId": "1014060072", + "name": "[336](10)老西门#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402017006014336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190412", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-23 08:27:43", + "echoMap": {}, + "deviceId": "1014060073", + "name": "[342](10)老西门B2垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402002006014342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190413", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:30", + "echoMap": {}, + "deviceId": "1014060074", + "name": "[343](10)老西门10-8换乘通道入", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402002006014343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190414", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:30", + "echoMap": {}, + "deviceId": "1014060075", + "name": "[207](10)老西门下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402001004014207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190415", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:31", + "echoMap": {}, + "deviceId": "1014060076", + "name": "[337](10)老西门#1台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402017006014337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190416", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:31", + "echoMap": {}, + "deviceId": "1014060077", + "name": "[206](10)老西门上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402001004014206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190417", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:31", + "echoMap": {}, + "deviceId": "1014060078", + "name": "[106](10)老西门上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402007006014106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190418", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-11 11:38:31", + "echoMap": {}, + "deviceId": "1014060079", + "name": "[105](10)老西门上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402007006014105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190419", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060080", + "name": "[112](10)老西门下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402012006014112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190420", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060081", + "name": "[110](10)老西门下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402012006014110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190421", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060082", + "name": "[109](10)老西门下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402012006014109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190422", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060083", + "name": "[338](10)老西门#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402017006014338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190423", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1014060084", + "name": "[205](10)老西门上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402001004014205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072056153190424", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1014060085", + "name": "[339](10)老西门#2台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402017006014339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157696", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060086", + "name": "[101](10)老西门上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402007006014101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157697", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060087", + "name": "[103](10)老西门上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402007006014103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157698", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060088", + "name": "[104](10)老西门上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402007006014104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157699", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1014060089", + "name": "[111](10)老西门下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402012006014111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157700", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1014060090", + "name": "[208](10)老西门下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402001004014208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157701", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1014060091", + "name": "[702](10)老西门下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061404012006014702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157702", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1014060092", + "name": "[617](10)老西门内通道9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403021006014617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157703", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060093", + "name": "[605](10)老西门屏蔽门控制室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157704", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060094", + "name": "[701](10)老西门上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061404012006014701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157705", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1014060095", + "name": "[102](10)老西门上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402007006014102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157706", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1014060096", + "name": "[618](10)老西门民用机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157707", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1014060097", + "name": "[619](10)老西门民用机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403048005014619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157708", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1014060098", + "name": "[620](10)老西门2#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061401056006014620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157709", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1014060099", + "name": "[621](10)老西门气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061403067005014621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "690072060448157710", + "createdBy": "0", + "createdTime": "2025-10-23 08:54:54", + "updatedBy": null, + "updatedTime": "2026-01-22 05:47:44", + "echoMap": {}, + "deviceId": "1014060100", + "name": "[622](10)老西门厕所门口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.155.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061402002005014622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589888035548347491", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1014070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.155.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061400000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112105\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3336247214\",\"inUcastPkts\":\"611441688\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:d7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2269478633\",\"outQLen\":\"0\",\"outUcastPkts\":\"275935063\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.155.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:42\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ90FD3\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"39\",\"CPU使用率\":\"6\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589888035548347661", + "createdBy": "2", + "createdTime": "2025-02-24 14:34:10", + "updatedBy": null, + "updatedTime": "2025-12-23 10:13:54", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.155.51", + "manageUrl": "http:\\\\10.18.155.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347662", + "createdBy": "2", + "createdTime": "2025-02-24 14:34:27", + "updatedBy": null, + "updatedTime": "2025-12-23 15:36:51", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.155.52", + "manageUrl": "http:\\\\10.18.155.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589888035548347493", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1014090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.155.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.89\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"487 days, 17:12:06.33\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"8473187\",\"inErrors\":\"0\",\"inNUcastPkts\":\"22474115\",\"inOctets\":\"2602100005\",\"inUcastPkts\":\"939194301\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:46:80\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2155017864\",\"outQLen\":\"0\",\"outUcastPkts\":\"1950515132\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.155.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589888035548347522", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 14:32:37", + "echoMap": {}, + "deviceId": "1014050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.155.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061400000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.155.22;10.18.155.23" + }, + { + "id": "589888035548347523", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1014050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.155.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061400000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13184490\",\"inErrors\":\"2\",\"inNUcastPkts\":\"29395524\",\"inOctets\":\"1897119665\",\"inUcastPkts\":\"612116911\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:72:35\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"939620575\",\"outQLen\":\"0\",\"outUcastPkts\":\"2907384464\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3320\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3330\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.155.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:43\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":936673463,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15522\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"60\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.155.22" + }, + { + "id": "589888035548347524", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1014050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.155.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061400000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"7484484\",\"inErrors\":\"1\",\"inNUcastPkts\":\"45912879\",\"inOctets\":\"3349731430\",\"inUcastPkts\":\"2959885991\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"3 days, 23:48:43.98\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:70:c1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1667922523\",\"outQLen\":\"0\",\"outUcastPkts\":\"3190278624\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.155.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:44\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":936660509,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15523\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"60\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.155.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589888035548347611", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1014030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15599653\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"871532505\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"129 days, 9:30:03.63\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15599658\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:0d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24900001,\"status\":1,\"voltage\":26.149002},{\"current\":0.522,\"status\":1,\"voltage\":26.149002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.149002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.149002},{\"current\":0.50200003,\"status\":1,\"voltage\":26.149002},{\"current\":0.29500002,\"status\":1,\"voltage\":26.149002},{\"current\":0.351,\"status\":1,\"voltage\":26.149002},{\"current\":0.36900002,\"status\":1,\"voltage\":26.149002},{\"current\":0.333,\"status\":1,\"voltage\":26.149002},{\"current\":0.37500003,\"status\":1,\"voltage\":26.553001},{\"current\":0.002,\"status\":1,\"voltage\":26.553001},{\"current\":0.261,\"status\":1,\"voltage\":26.553001},{\"current\":0.312,\"status\":1,\"voltage\":26.553001},{\"current\":0.42100003,\"status\":1,\"voltage\":26.553001},{\"current\":0.001,\"status\":1,\"voltage\":26.553001},{\"current\":0.001,\"status\":1,\"voltage\":26.553001}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304109\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347612", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1014030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15598813\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"871485555\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"129 days, 16:10:23.77\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15598818\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:ee\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23300001,\"status\":1,\"voltage\":26.69},{\"current\":0.257,\"status\":1,\"voltage\":26.69},{\"current\":0.223,\"status\":1,\"voltage\":26.69},{\"current\":0.523,\"status\":1,\"voltage\":26.69},{\"current\":0.33100003,\"status\":1,\"voltage\":26.69},{\"current\":0.23900001,\"status\":1,\"voltage\":26.69},{\"current\":0.23500001,\"status\":1,\"voltage\":26.69},{\"current\":0.291,\"status\":1,\"voltage\":26.69},{\"current\":0.344,\"status\":1,\"voltage\":26.69},{\"current\":0.25500003,\"status\":1,\"voltage\":26.994001},{\"current\":0.003,\"status\":1,\"voltage\":26.994001},{\"current\":0.246,\"status\":1,\"voltage\":26.994001},{\"current\":0.305,\"status\":1,\"voltage\":26.994001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.994001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.994001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.994001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302221\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347613", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:44", + "echoMap": {}, + "deviceId": "1014030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"14182035\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"792040963\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"129 days, 1:27:05.01\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"14182040\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:a5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.238,\"status\":1,\"voltage\":24.929},{\"current\":0.23600002,\"status\":1,\"voltage\":24.929},{\"current\":0.23900001,\"status\":1,\"voltage\":24.929},{\"current\":0.53900003,\"status\":1,\"voltage\":24.929},{\"current\":0.24100001,\"status\":1,\"voltage\":24.929},{\"current\":0.25500003,\"status\":1,\"voltage\":24.929},{\"current\":0.245,\"status\":1,\"voltage\":24.929},{\"current\":0.22200002,\"status\":1,\"voltage\":24.929},{\"current\":0.24200001,\"status\":1,\"voltage\":24.929},{\"current\":0.22100002,\"status\":1,\"voltage\":24.728},{\"current\":0.003,\"status\":1,\"voltage\":24.728},{\"current\":0.26000002,\"status\":1,\"voltage\":24.728},{\"current\":0.24900001,\"status\":1,\"voltage\":24.728},{\"current\":0.001,\"status\":1,\"voltage\":24.728},{\"current\":0.001,\"status\":1,\"voltage\":24.728},{\"current\":0.0,\"status\":1,\"voltage\":24.728}],\"fanSpeeds\":[3510,3510],\"humidity\":16,\"switches\":[0,0,0,0],\"temperature\":35}],\"stCommonInfo\":{\"设备ID\":\"0001512208303237\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:34:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347614", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1014030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15595439\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"871299418\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"128 days, 11:36:58.22\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15595444\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:fb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.479002},{\"current\":0.28800002,\"status\":1,\"voltage\":26.479002},{\"current\":0.277,\"status\":1,\"voltage\":26.479002},{\"current\":0.264,\"status\":1,\"voltage\":26.479002},{\"current\":0.245,\"status\":1,\"voltage\":26.479002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.479002},{\"current\":0.29700002,\"status\":1,\"voltage\":26.479002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.479002},{\"current\":0.22200002,\"status\":1,\"voltage\":26.479002},{\"current\":0.49800003,\"status\":1,\"voltage\":27.242},{\"current\":0.003,\"status\":1,\"voltage\":27.242},{\"current\":0.22600001,\"status\":1,\"voltage\":27.242},{\"current\":0.259,\"status\":1,\"voltage\":27.242},{\"current\":0.001,\"status\":1,\"voltage\":27.242},{\"current\":0.001,\"status\":1,\"voltage\":27.242},{\"current\":0.001,\"status\":1,\"voltage\":27.242}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303323\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347615", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1014030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15593635\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"871198042\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15593640\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:b3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34,\"status\":1,\"voltage\":27.108002},{\"current\":0.32700002,\"status\":1,\"voltage\":27.108002},{\"current\":0.294,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.532,\"status\":1,\"voltage\":27.108002},{\"current\":0.363,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.356,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.115002},{\"current\":0.002,\"status\":1,\"voltage\":27.115002},{\"current\":0.001,\"status\":1,\"voltage\":27.115002},{\"current\":0.001,\"status\":1,\"voltage\":27.115002},{\"current\":0.001,\"status\":1,\"voltage\":27.115002},{\"current\":0.001,\"status\":1,\"voltage\":27.115002},{\"current\":0.001,\"status\":1,\"voltage\":27.115002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208303251\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347616", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:45", + "echoMap": {}, + "deviceId": "1014030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15585896\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"870764115\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"128 days, 14:12:03.44\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15585901\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:68\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.709002},{\"current\":0.303,\"status\":1,\"voltage\":26.709002},{\"current\":0.51900005,\"status\":1,\"voltage\":26.709002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.709002},{\"current\":0.358,\"status\":1,\"voltage\":26.709002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.709002},{\"current\":0.30200002,\"status\":1,\"voltage\":26.709002},{\"current\":0.30600002,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.709002},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.003,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001},{\"current\":0.001,\"status\":1,\"voltage\":26.845001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208302087\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347617", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1014030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15567043\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"869705971\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"128 days, 7:45:00.77\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15567048\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:9e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28100002,\"status\":1,\"voltage\":26.878002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002},{\"current\":0.245,\"status\":1,\"voltage\":26.878002},{\"current\":0.254,\"status\":1,\"voltage\":26.878002},{\"current\":0.0,\"status\":1,\"voltage\":26.878002},{\"current\":0.0,\"status\":1,\"voltage\":26.878002},{\"current\":0.0,\"status\":1,\"voltage\":26.878002},{\"current\":0.0,\"status\":1,\"voltage\":26.462002},{\"current\":0.003,\"status\":1,\"voltage\":26.462002},{\"current\":0.001,\"status\":1,\"voltage\":26.462002},{\"current\":0.001,\"status\":1,\"voltage\":26.462002},{\"current\":0.001,\"status\":1,\"voltage\":26.462002},{\"current\":0.001,\"status\":1,\"voltage\":26.462002},{\"current\":0.001,\"status\":1,\"voltage\":26.462002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303230\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347618", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:46", + "echoMap": {}, + "deviceId": "1014030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15544579\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"868448914\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:42:24.85\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15544584\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:e9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26000002,\"status\":1,\"voltage\":26.604002},{\"current\":0.252,\"status\":1,\"voltage\":26.604002},{\"current\":0.28300002,\"status\":1,\"voltage\":26.604002},{\"current\":0.27,\"status\":1,\"voltage\":26.604002},{\"current\":0.30900002,\"status\":1,\"voltage\":26.604002},{\"current\":0.526,\"status\":1,\"voltage\":26.604002},{\"current\":0.259,\"status\":1,\"voltage\":26.604002},{\"current\":0.53800005,\"status\":1,\"voltage\":26.604002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.604002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.834002},{\"current\":0.002,\"status\":1,\"voltage\":26.834002},{\"current\":0.22000001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302216\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347619", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1014030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15529939\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"867625690\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"128 days, 11:30:09.63\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15529944\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:9c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.298,\"status\":1,\"voltage\":26.53},{\"current\":0.23500001,\"status\":1,\"voltage\":26.53},{\"current\":0.24300002,\"status\":1,\"voltage\":26.53},{\"current\":0.28,\"status\":1,\"voltage\":26.53},{\"current\":0.517,\"status\":1,\"voltage\":26.53},{\"current\":0.263,\"status\":1,\"voltage\":26.53},{\"current\":0.273,\"status\":1,\"voltage\":26.53},{\"current\":0.22900002,\"status\":1,\"voltage\":26.53},{\"current\":0.22100002,\"status\":1,\"voltage\":26.53},{\"current\":0.001,\"status\":1,\"voltage\":27.248001},{\"current\":0.003,\"status\":1,\"voltage\":27.248001},{\"current\":0.001,\"status\":1,\"voltage\":27.248001},{\"current\":0.001,\"status\":1,\"voltage\":27.248001},{\"current\":0.001,\"status\":1,\"voltage\":27.248001},{\"current\":0.001,\"status\":1,\"voltage\":27.248001},{\"current\":0.001,\"status\":1,\"voltage\":27.248001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304252\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347620", + "createdBy": "0", + "createdTime": "2025-02-24 14:32:56", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:47", + "echoMap": {}, + "deviceId": "1014030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.156.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15524735\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"867335187\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"129 days, 20:17:15.63\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15524740\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:fe\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.29000002,\"status\":1,\"voltage\":26.772001},{\"current\":0.56100005,\"status\":1,\"voltage\":26.772001},{\"current\":0.256,\"status\":1,\"voltage\":26.772001},{\"current\":0.259,\"status\":1,\"voltage\":26.772001},{\"current\":0.23,\"status\":1,\"voltage\":26.772001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.772001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.772001},{\"current\":0.0,\"status\":1,\"voltage\":26.772001},{\"current\":0.0,\"status\":1,\"voltage\":26.772001},{\"current\":0.0,\"status\":1,\"voltage\":26.874},{\"current\":0.003,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303326\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:34:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "589888035548347650", + "createdBy": "2", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:10", + "echoMap": {}, + "deviceId": "1014040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.155.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif155\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:02:57.50\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:81:25:f6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"9\",\"temperature\":\"46\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.155.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"240\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"810\",\"686474\",\"819\",\"799\",\"0\",\"0\",\"1179\",\"33773\",\"48756\",\"127385\",\"1329\",\"0\",\"267193\",\"0\",\"0\",\"0\",\"726\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.57\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40290,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":563,\"opticalVoltage\":3304,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37259,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":557,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38549,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":564,\"opticalVoltage\":3259,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38369,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":669,\"opticalVoltage\":3245,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":77010,\"opticalReceivePower\":0,\"opticalTemperature\":66,\"opticalTransmitPower\":349,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39119,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":630,\"opticalVoltage\":3271,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40259,\"opticalReceivePower\":0,\"opticalTemperature\":63,\"opticalTransmitPower\":599,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44490,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":575,\"opticalVoltage\":3259,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40680,\"opticalReceivePower\":0,\"opticalTemperature\":63,\"opticalTransmitPower\":597,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42150,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":562,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42479,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":561,\"opticalVoltage\":3250,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39630,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":598,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40979,\"opticalReceivePower\":0,\"opticalTemperature\":65,\"opticalTransmitPower\":559,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40919,\"opticalReceivePower\":0,\"opticalTemperature\":63,\"opticalTransmitPower\":561,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43080,\"opticalReceivePower\":0,\"opticalTemperature\":67,\"opticalTransmitPower\":561,\"opticalVoltage\":3391,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41939,\"opticalReceivePower\":0,\"opticalTemperature\":65,\"opticalTransmitPower\":558,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44130,\"opticalReceivePower\":0,\"opticalTemperature\":67,\"opticalTransmitPower\":563,\"opticalVoltage\":3358,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40439,\"opticalReceivePower\":0,\"opticalTemperature\":65,\"opticalTransmitPower\":561,\"opticalVoltage\":3394,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43860,\"opticalReceivePower\":0,\"opticalTemperature\":67,\"opticalTransmitPower\":567,\"opticalVoltage\":3349,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39659,\"opticalReceivePower\":0,\"opticalTemperature\":65,\"opticalTransmitPower\":635,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":467,\"inBytes\":1573621288,\"inFlow\":75,\"lastChangeTime\":\"390 days, 8:54:53.86\",\"lastInBytes\":1573621288,\"lastOutBytes\":1159933995,\"opticalBiasCurrent\":19007,\"opticalReceivePower\":145,\"opticalTemperature\":69,\"opticalTransmitPower\":239,\"opticalVoltage\":3308,\"outBytes\":1159933995,\"outFlow\":392,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2496211255,\"inFlow\":0,\"lastChangeTime\":\"390 days, 8:54:16.61\",\"lastInBytes\":2496211255,\"lastOutBytes\":617037717,\"opticalBiasCurrent\":43349,\"opticalReceivePower\":0,\"opticalTemperature\":63,\"opticalTransmitPower\":561,\"opticalVoltage\":3334,\"outBytes\":617037717,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":804341,\"inBytes\":3214990225,\"inFlow\":2328,\"lastChangeTime\":\"215 days, 22:07:48.56\",\"lastInBytes\":3214990225,\"lastOutBytes\":2763292665,\"opticalBiasCurrent\":40889,\"opticalReceivePower\":375,\"opticalTemperature\":62,\"opticalTransmitPower\":561,\"opticalVoltage\":3348,\"outBytes\":2763292665,\"outFlow\":802013,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1152325,\"inBytes\":2274940327,\"inFlow\":40096,\"lastChangeTime\":\"215 days, 22:08:42.10\",\"lastInBytes\":2274940327,\"lastOutBytes\":2937396124,\"opticalBiasCurrent\":45119,\"opticalReceivePower\":540,\"opticalTemperature\":62,\"opticalTransmitPower\":564,\"opticalVoltage\":3376,\"outBytes\":2937396124,\"outFlow\":1112229,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":6036899,\"inBytes\":1222165438,\"inFlow\":5849803,\"lastChangeTime\":\"357 days, 12:17:13.99\",\"lastInBytes\":1222165438,\"lastOutBytes\":1115090536,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":48,\"opticalTemperature\":60,\"opticalTransmitPower\":244,\"opticalVoltage\":3386,\"outBytes\":1115090536,\"outFlow\":187096,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9184175,\"inBytes\":217777166,\"inFlow\":8892555,\"lastChangeTime\":\"357 days, 10:10:35.51\",\"lastInBytes\":217777166,\"lastOutBytes\":1718255385,\"opticalBiasCurrent\":20304,\"opticalReceivePower\":19,\"opticalTemperature\":61,\"opticalTransmitPower\":242,\"opticalVoltage\":3328,\"outBytes\":1718255385,\"outFlow\":291620,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5435861,\"inBytes\":1812346674,\"inFlow\":5266226,\"lastChangeTime\":\"357 days, 9:53:48.02\",\"lastInBytes\":1812346674,\"lastOutBytes\":2150057609,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":214,\"opticalTemperature\":61,\"opticalTransmitPower\":255,\"opticalVoltage\":3338,\"outBytes\":2150057609,\"outFlow\":169635,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5733407,\"inBytes\":2159132618,\"inFlow\":5554640,\"lastChangeTime\":\"357 days, 9:50:31.36\",\"lastInBytes\":2159132618,\"lastOutBytes\":1244337567,\"opticalBiasCurrent\":23111,\"opticalReceivePower\":2,\"opticalTemperature\":66,\"opticalTransmitPower\":266,\"opticalVoltage\":3352,\"outBytes\":1244337567,\"outFlow\":178767,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4830816,\"inBytes\":2251864784,\"inFlow\":4687321,\"lastChangeTime\":\"357 days, 8:41:54.06\",\"lastInBytes\":2251864784,\"lastOutBytes\":3540978694,\"opticalBiasCurrent\":18360,\"opticalReceivePower\":231,\"opticalTemperature\":63,\"opticalTransmitPower\":233,\"opticalVoltage\":3386,\"outBytes\":3540978694,\"outFlow\":143495,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3893904,\"inBytes\":4237559293,\"inFlow\":3776915,\"lastChangeTime\":\"357 days, 8:44:17.60\",\"lastInBytes\":4237559293,\"lastOutBytes\":3901629468,\"opticalBiasCurrent\":20951,\"opticalReceivePower\":67,\"opticalTemperature\":64,\"opticalTransmitPower\":248,\"opticalVoltage\":3330,\"outBytes\":3901629468,\"outFlow\":116989,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1392968,\"inBytes\":368013786,\"inFlow\":1347625,\"lastChangeTime\":\"357 days, 8:59:22.50\",\"lastInBytes\":368013786,\"lastOutBytes\":717348065,\"opticalBiasCurrent\":18360,\"opticalReceivePower\":154,\"opticalTemperature\":63,\"opticalTransmitPower\":238,\"opticalVoltage\":3386,\"outBytes\":717348065,\"outFlow\":45343,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8899391,\"inBytes\":416715984,\"inFlow\":8622609,\"lastChangeTime\":\"128 days, 7:38:12.54\",\"lastInBytes\":416715984,\"lastOutBytes\":937832913,\"opticalBiasCurrent\":21815,\"opticalReceivePower\":155,\"opticalTemperature\":65,\"opticalTransmitPower\":254,\"opticalVoltage\":3320,\"outBytes\":937832913,\"outFlow\":276781,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7272266,\"inBytes\":4089072778,\"inFlow\":7038706,\"lastChangeTime\":\"357 days, 9:03:40.01\",\"lastInBytes\":4089072778,\"lastOutBytes\":4112282683,\"opticalBiasCurrent\":18360,\"opticalReceivePower\":206,\"opticalTemperature\":60,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":4112282683,\"outFlow\":233559,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4666210,\"inBytes\":2218139711,\"inFlow\":4518344,\"lastChangeTime\":\"357 days, 9:05:03.29\",\"lastInBytes\":2218139711,\"lastOutBytes\":1713004039,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":162,\"opticalTemperature\":61,\"opticalTransmitPower\":244,\"opticalVoltage\":3374,\"outBytes\":1713004039,\"outFlow\":147865,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4396918,\"inBytes\":1290979667,\"inFlow\":33785,\"lastChangeTime\":\"215 days, 21:42:07.86\",\"lastInBytes\":1290979667,\"lastOutBytes\":4149246989,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":180,\"opticalTemperature\":60,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":4149246989,\"outFlow\":4363132,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":20951,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":244,\"opticalVoltage\":3296,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":19007,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":240,\"opticalVoltage\":3304,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":244,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17927,\"opticalReceivePower\":0,\"opticalTemperature\":64,\"opticalTransmitPower\":240,\"opticalVoltage\":3386,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":251,\"opticalVoltage\":3296,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":244,\"opticalVoltage\":3374,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":244,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":243,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":238,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":19224,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":255,\"opticalVoltage\":3296,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38279,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":609,\"opticalVoltage\":3323,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":239,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":19961,\"inBytes\":3229220449,\"inFlow\":8647,\"lastChangeTime\":\"215 days, 21:59:11.55\",\"lastInBytes\":3229220449,\"lastOutBytes\":2374795726,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2374795726,\"outFlow\":11314,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":21657031,\"inBytes\":946733921,\"inFlow\":7361109,\"lastChangeTime\":\"215 days, 22:00:05.63\",\"lastInBytes\":946733921,\"lastOutBytes\":2189055466,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2189055466,\"outFlow\":14295921,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":52272,\"inBytes\":227626536,\"inFlow\":26704,\"lastChangeTime\":\"215 days, 21:59:05.71\",\"lastInBytes\":227626536,\"lastOutBytes\":2963800438,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2963800438,\"outFlow\":25568,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408,\"inBytes\":290938953,\"inFlow\":8,\"lastChangeTime\":\"215 days, 21:59:59.85\",\"lastInBytes\":290938953,\"lastOutBytes\":2974335120,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2974335120,\"outFlow\":399,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1402338,\"inBytes\":2655924010,\"inFlow\":41208,\"lastChangeTime\":\"143 days, 22:01:09.88\",\"lastInBytes\":2655924010,\"lastOutBytes\":1933899570,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1933899570,\"outFlow\":1361130,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409354,\"inBytes\":3152336428,\"inFlow\":408962,\"lastChangeTime\":\"14 days, 12:40:10.73\",\"lastInBytes\":3152336428,\"lastOutBytes\":4288173131,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4288173131,\"outFlow\":391,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":21916635,\"inBytes\":2071015749,\"inFlow\":386717,\"lastChangeTime\":\"215 days, 22:48:35.32\",\"lastInBytes\":2071015749,\"lastOutBytes\":2995132849,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2995132849,\"outFlow\":21529917,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":20207264,\"inBytes\":2488152156,\"inFlow\":548455,\"lastChangeTime\":\"14 days, 12:37:30.67\",\"lastInBytes\":2488152156,\"lastOutBytes\":2572387494,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2572387494,\"outFlow\":19658809,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":469268,\"inBytes\":1772601938,\"inFlow\":468409,\"lastChangeTime\":\"14 days, 12:41:51.46\",\"lastInBytes\":1772601938,\"lastOutBytes\":2639641255,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2639641255,\"outFlow\":858,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":429,\"inBytes\":239263415,\"inFlow\":18,\"lastChangeTime\":\"14 days, 12:56:29.00\",\"lastInBytes\":239263415,\"lastOutBytes\":1484181189,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1484181189,\"outFlow\":410,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":186891,\"inFlow\":0,\"lastChangeTime\":\"14 days, 12:58:12.48\",\"lastInBytes\":186891,\"lastOutBytes\":346356,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":346356,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3025889358,\"inFlow\":0,\"lastChangeTime\":\"14 days, 12:46:10.70\",\"lastInBytes\":3025889358,\"lastOutBytes\":407695685,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":407695685,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":32,\"inBytes\":28372103,\"inFlow\":14,\"lastChangeTime\":\"144 days, 7:16:05.31\",\"lastInBytes\":28372103,\"lastOutBytes\":20518766,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":20518766,\"outFlow\":17,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":124,\"inBytes\":57125479,\"inFlow\":106,\"lastChangeTime\":\"144 days, 7:16:21.37\",\"lastInBytes\":57125479,\"lastOutBytes\":60703894,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":60703894,\"outFlow\":17,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":25,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":25,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:51.686768000\"}}", + "lastDiagTime": "2026-02-02 14:39:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347651", + "createdBy": "2", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"354754\",\"inUnknownProtos\":\"2547557467\",\"index\":\"635\",\"lastChange\":\"0:01:20.87\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:19:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"993494130\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"427224185\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":415892,\"inBytes\":1652446031,\"inFlow\":405674,\"lastChangeTime\":\"216 days, 0:08:15.45\",\"lastInBytes\":1652446031,\"lastOutBytes\":2075978128,\"outBytes\":2075978128,\"outFlow\":10218,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":550111,\"inBytes\":2667383974,\"inFlow\":537169,\"lastChangeTime\":\"5 days, 17:21:04.44\",\"lastInBytes\":2667383974,\"lastOutBytes\":3066488586,\"outBytes\":3066488586,\"outFlow\":12941,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":415550,\"inBytes\":4144255978,\"inFlow\":405358,\"lastChangeTime\":\"216 days, 0:08:23.24\",\"lastInBytes\":4144255978,\"lastOutBytes\":2082934138,\"outBytes\":2082934138,\"outFlow\":10191,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414566,\"inBytes\":1674364778,\"inFlow\":404342,\"lastChangeTime\":\"57 days, 23:38:54.16\",\"lastInBytes\":1674364778,\"lastOutBytes\":3003372625,\"outBytes\":3003372625,\"outFlow\":10223,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":554773,\"inBytes\":1254894971,\"inFlow\":541731,\"lastChangeTime\":\"5 days, 17:21:04.70\",\"lastInBytes\":1254894971,\"lastOutBytes\":1339472829,\"outBytes\":1339472829,\"outFlow\":13041,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413304,\"inBytes\":4003839403,\"inFlow\":403154,\"lastChangeTime\":\"73 days, 21:45:48.24\",\"lastInBytes\":4003839403,\"lastOutBytes\":2547557467,\"outBytes\":2547557467,\"outFlow\":10149,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419938,\"inBytes\":1685812379,\"inFlow\":410259,\"lastChangeTime\":\"291 days, 16:33:23.27\",\"lastInBytes\":1685812379,\"lastOutBytes\":3861943300,\"outBytes\":3861943300,\"outFlow\":9679,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":544508,\"inBytes\":121964458,\"inFlow\":531091,\"lastChangeTime\":\"291 days, 16:33:15.00\",\"lastInBytes\":121964458,\"lastOutBytes\":804762317,\"outBytes\":804762317,\"outFlow\":13417,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412843,\"inBytes\":600638310,\"inFlow\":403029,\"lastChangeTime\":\"61 days, 10:23:02.35\",\"lastInBytes\":600638310,\"lastOutBytes\":4287581542,\"outBytes\":4287581542,\"outFlow\":9814,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415739,\"inBytes\":2928233467,\"inFlow\":405594,\"lastChangeTime\":\"357 days, 9:48:25.51\",\"lastInBytes\":2928233467,\"lastOutBytes\":2939238857,\"outBytes\":2939238857,\"outFlow\":10144,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415084,\"inBytes\":607640277,\"inFlow\":404920,\"lastChangeTime\":\"216 days, 0:08:58.41\",\"lastInBytes\":607640277,\"lastOutBytes\":168135881,\"outBytes\":168135881,\"outFlow\":10164,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":414178,\"inBytes\":1952726497,\"inFlow\":404534,\"lastChangeTime\":\"291 days, 16:33:18.17\",\"lastInBytes\":1952726497,\"lastOutBytes\":3605245638,\"outBytes\":3605245638,\"outFlow\":9643,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":622591,\"inBytes\":749457777,\"inFlow\":606858,\"lastChangeTime\":\"71 days, 7:24:40.36\",\"lastInBytes\":749457777,\"lastOutBytes\":3358496549,\"outBytes\":3358496549,\"outFlow\":15732,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2608301,\"inFlow\":0,\"lastChangeTime\":\"357 days, 12:38:00.48\",\"lastInBytes\":2608301,\"lastOutBytes\":126277655,\"outBytes\":126277655,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1605980964,\"inFlow\":1,\"lastChangeTime\":\"357 days, 8:30:06.19\",\"lastInBytes\":1605980964,\"lastOutBytes\":1833018236,\"outBytes\":1833018236,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6036182,\"inBytes\":3927360445,\"inFlow\":151080,\"lastChangeTime\":\"357 days, 12:37:51.72\",\"lastInBytes\":3927360445,\"lastOutBytes\":1326378509,\"outBytes\":1326378509,\"outFlow\":5885102,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.648096000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347652", + "createdBy": "2", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1014040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"355984\",\"inUnknownProtos\":\"2241663097\",\"index\":\"635\",\"lastChange\":\"357 days, 8:59:18.94\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:34:49\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"814830289\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"427203632\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":414334,\"inBytes\":3617340937,\"inFlow\":404275,\"lastChangeTime\":\"216 days, 0:38:56.99\",\"lastInBytes\":3617340937,\"lastOutBytes\":856523910,\"outBytes\":856523910,\"outFlow\":10059,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413824,\"inBytes\":54888983,\"inFlow\":403604,\"lastChangeTime\":\"246 days, 15:38:08.62\",\"lastInBytes\":54888983,\"lastOutBytes\":3188418853,\"outBytes\":3188418853,\"outFlow\":10220,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":899893,\"inBytes\":2674139614,\"inFlow\":877677,\"lastChangeTime\":\"216 days, 0:38:54.62\",\"lastInBytes\":2674139614,\"lastOutBytes\":1702641462,\"outBytes\":1702641462,\"outFlow\":22216,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1374922,\"inBytes\":1453542924,\"inFlow\":1343425,\"lastChangeTime\":\"15 days, 23:07:46.57\",\"lastInBytes\":1453542924,\"lastOutBytes\":1941262832,\"outBytes\":1941262832,\"outFlow\":31496,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":570612,\"inBytes\":2215019670,\"inFlow\":556102,\"lastChangeTime\":\"291 days, 16:33:30.93\",\"lastInBytes\":2215019670,\"lastOutBytes\":52148231,\"outBytes\":52148231,\"outFlow\":14510,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":897244,\"inBytes\":3642832639,\"inFlow\":875122,\"lastChangeTime\":\"216 days, 0:38:55.17\",\"lastInBytes\":3642832639,\"lastOutBytes\":2241663097,\"outBytes\":2241663097,\"outFlow\":22122,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414508,\"inBytes\":2177586141,\"inFlow\":404406,\"lastChangeTime\":\"216 days, 0:38:55.52\",\"lastInBytes\":2177586141,\"lastOutBytes\":1123780142,\"outBytes\":1123780142,\"outFlow\":10101,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":929453,\"inBytes\":710161683,\"inFlow\":904841,\"lastChangeTime\":\"139 days, 4:47:01.48\",\"lastInBytes\":710161683,\"lastOutBytes\":1748180735,\"outBytes\":1748180735,\"outFlow\":24612,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":428661,\"inBytes\":3106333029,\"inFlow\":418702,\"lastChangeTime\":\"291 days, 16:33:23.07\",\"lastInBytes\":3106333029,\"lastOutBytes\":1846058060,\"outBytes\":1846058060,\"outFlow\":9959,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":896930,\"inBytes\":3545462876,\"inFlow\":874911,\"lastChangeTime\":\"216 days, 0:38:53.40\",\"lastInBytes\":3545462876,\"lastOutBytes\":3733173016,\"outBytes\":3733173016,\"outFlow\":22019,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":413607,\"inBytes\":2075309070,\"inFlow\":403519,\"lastChangeTime\":\"216 days, 0:38:52.45\",\"lastInBytes\":2075309070,\"lastOutBytes\":2277941911,\"outBytes\":2277941911,\"outFlow\":10087,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":276451,\"inBytes\":3898539427,\"inFlow\":269451,\"lastChangeTime\":\"216 days, 0:39:06.42\",\"lastInBytes\":3898539427,\"lastOutBytes\":1810628508,\"outBytes\":1810628508,\"outFlow\":7000,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":414551,\"inBytes\":3458192059,\"inFlow\":404482,\"lastChangeTime\":\"357 days, 8:56:31.90\",\"lastInBytes\":3458192059,\"lastOutBytes\":1187160117,\"outBytes\":1187160117,\"outFlow\":10069,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":413645,\"inBytes\":1830981791,\"inFlow\":403500,\"lastChangeTime\":\"357 days, 10:33:47.39\",\"lastInBytes\":1830981791,\"lastOutBytes\":3370370684,\"outBytes\":3370370684,\"outFlow\":10145,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":276664,\"inBytes\":1697367060,\"inFlow\":269679,\"lastChangeTime\":\"357 days, 8:58:25.12\",\"lastInBytes\":1697367060,\"lastOutBytes\":2469226798,\"outBytes\":2469226798,\"outFlow\":6984,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":85,\"inBytes\":1605894218,\"inFlow\":1,\"lastChangeTime\":\"357 days, 8:59:18.94\",\"lastInBytes\":1605894218,\"lastOutBytes\":1833307145,\"outBytes\":1833307145,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9065593,\"inBytes\":2285997987,\"inFlow\":231148,\"lastChangeTime\":\"357 days, 10:31:22.27\",\"lastInBytes\":2285997987,\"lastOutBytes\":1422974586,\"outBytes\":1422974586,\"outFlow\":8834445,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.769384000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347653", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"7680265\",\"inUnknownProtos\":\"2612000250\",\"index\":\"635\",\"lastChange\":\"0:01:19.83\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:33:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3219811948\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"315010173\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:46\",\"info\":{\"portInfoList\":[{\"flow\":414628,\"inBytes\":1234268440,\"inFlow\":404387,\"lastChangeTime\":\"73 days, 21:45:17.04\",\"lastInBytes\":1234268440,\"lastOutBytes\":4212167275,\"outBytes\":4212167275,\"outFlow\":10241,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":414763,\"inBytes\":1865670971,\"inFlow\":404592,\"lastChangeTime\":\"116 days, 0:32:27.32\",\"lastInBytes\":1865670971,\"lastOutBytes\":883340326,\"outBytes\":883340326,\"outFlow\":10171,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414085,\"inBytes\":1454316356,\"inFlow\":403921,\"lastChangeTime\":\"116 days, 0:32:30.52\",\"lastInBytes\":1454316356,\"lastOutBytes\":2909587979,\"outBytes\":2909587979,\"outFlow\":10164,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1378083,\"inBytes\":3629962092,\"inFlow\":1345887,\"lastChangeTime\":\"5 days, 17:20:39.08\",\"lastInBytes\":3629962092,\"lastOutBytes\":1193111306,\"outBytes\":1193111306,\"outFlow\":32195,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":416305,\"inBytes\":1838807552,\"inFlow\":406017,\"lastChangeTime\":\"116 days, 0:32:35.11\",\"lastInBytes\":1838807552,\"lastOutBytes\":441227755,\"outBytes\":441227755,\"outFlow\":10287,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414017,\"inBytes\":593001225,\"inFlow\":403870,\"lastChangeTime\":\"116 days, 0:32:37.69\",\"lastInBytes\":593001225,\"lastOutBytes\":2612000250,\"outBytes\":2612000250,\"outFlow\":10146,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414339,\"inBytes\":340372553,\"inFlow\":404259,\"lastChangeTime\":\"116 days, 0:32:42.51\",\"lastInBytes\":340372553,\"lastOutBytes\":1325195723,\"outBytes\":1325195723,\"outFlow\":10080,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":276832,\"inBytes\":1986874098,\"inFlow\":269834,\"lastChangeTime\":\"116 days, 0:32:46.45\",\"lastInBytes\":1986874098,\"lastOutBytes\":378178230,\"outBytes\":378178230,\"outFlow\":6997,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414796,\"inBytes\":1557842258,\"inFlow\":404635,\"lastChangeTime\":\"73 days, 21:45:26.55\",\"lastInBytes\":1557842258,\"lastOutBytes\":3530181539,\"outBytes\":3530181539,\"outFlow\":10161,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":276264,\"inBytes\":318111854,\"inFlow\":269417,\"lastChangeTime\":\"116 days, 0:32:55.65\",\"lastInBytes\":318111854,\"lastOutBytes\":1445375586,\"outBytes\":1445375586,\"outFlow\":6847,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":276443,\"inBytes\":2000775180,\"inFlow\":269515,\"lastChangeTime\":\"116 days, 0:32:58.09\",\"lastInBytes\":2000775180,\"lastOutBytes\":1717422862,\"outBytes\":1717422862,\"outFlow\":6927,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":276414,\"inBytes\":4130188573,\"inFlow\":269573,\"lastChangeTime\":\"116 days, 0:57:41.88\",\"lastInBytes\":4130188573,\"lastOutBytes\":1500986729,\"outBytes\":1500986729,\"outFlow\":6841,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":157946,\"inFlow\":0,\"lastChangeTime\":\"390 days, 9:27:18.57\",\"lastInBytes\":157946,\"lastOutBytes\":5312476,\"outBytes\":5312476,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1459245266,\"inFlow\":1,\"lastChangeTime\":\"116 days, 0:33:02.21\",\"lastInBytes\":1459245266,\"lastOutBytes\":1728615353,\"outBytes\":1728615353,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5404934,\"inBytes\":2180225564,\"inFlow\":135828,\"lastChangeTime\":\"357 days, 10:14:07.10\",\"lastInBytes\":2180225564,\"lastOutBytes\":1080830938,\"outBytes\":1080830938,\"outFlow\":5269106,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.634345000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347654", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"354062\",\"inUnknownProtos\":\"1233141892\",\"index\":\"635\",\"lastChange\":\"0:01:20.53\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:1f:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"312460116\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"427250138\",\"speed\":\"4294967295\"},\"cpuRatio\":\"11\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:46\",\"info\":{\"portInfoList\":[{\"flow\":407373,\"inBytes\":749175327,\"inFlow\":397363,\"lastChangeTime\":\"130 days, 12:59:58.00\",\"lastInBytes\":749175327,\"lastOutBytes\":542291446,\"outBytes\":542291446,\"outFlow\":10009,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416543,\"inBytes\":3000997963,\"inFlow\":406276,\"lastChangeTime\":\"73 days, 21:46:09.35\",\"lastInBytes\":3000997963,\"lastOutBytes\":1344216991,\"outBytes\":1344216991,\"outFlow\":10267,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":903371,\"inBytes\":1546147848,\"inFlow\":880753,\"lastChangeTime\":\"73 days, 21:46:15.51\",\"lastInBytes\":1546147848,\"lastOutBytes\":2820968326,\"outBytes\":2820968326,\"outFlow\":22618,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":415956,\"inBytes\":860196665,\"inFlow\":405778,\"lastChangeTime\":\"73 days, 21:46:10.17\",\"lastInBytes\":860196665,\"lastOutBytes\":2520691266,\"outBytes\":2520691266,\"outFlow\":10177,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415536,\"inBytes\":276443322,\"inFlow\":405343,\"lastChangeTime\":\"73 days, 21:46:16.48\",\"lastInBytes\":276443322,\"lastOutBytes\":735344555,\"outBytes\":735344555,\"outFlow\":10192,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414073,\"inBytes\":739056894,\"inFlow\":403968,\"lastChangeTime\":\"73 days, 21:46:06.37\",\"lastInBytes\":739056894,\"lastOutBytes\":1233044544,\"outBytes\":1233044544,\"outFlow\":10105,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":508442,\"inBytes\":4257887577,\"inFlow\":497596,\"lastChangeTime\":\"291 days, 16:33:35.37\",\"lastInBytes\":4257887577,\"lastOutBytes\":267491400,\"outBytes\":267491400,\"outFlow\":10846,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413600,\"inBytes\":1441241188,\"inFlow\":403543,\"lastChangeTime\":\"73 days, 21:46:11.61\",\"lastInBytes\":1441241188,\"lastOutBytes\":2755624207,\"outBytes\":2755624207,\"outFlow\":10057,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414061,\"inBytes\":3595683684,\"inFlow\":403979,\"lastChangeTime\":\"73 days, 21:46:20.93\",\"lastInBytes\":3595683684,\"lastOutBytes\":2230253207,\"outBytes\":2230253207,\"outFlow\":10081,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":548565,\"inBytes\":141051295,\"inFlow\":535643,\"lastChangeTime\":\"5 days, 17:21:14.10\",\"lastInBytes\":141051295,\"lastOutBytes\":928852971,\"outBytes\":928852971,\"outFlow\":12922,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":411809,\"inBytes\":2350441509,\"inFlow\":401709,\"lastChangeTime\":\"73 days, 21:46:08.93\",\"lastInBytes\":2350441509,\"lastOutBytes\":1165011723,\"outBytes\":1165011723,\"outFlow\":10100,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":414131,\"inBytes\":1392892881,\"inFlow\":403986,\"lastChangeTime\":\"73 days, 21:46:19.29\",\"lastInBytes\":1392892881,\"lastOutBytes\":4189986088,\"outBytes\":4189986088,\"outFlow\":10145,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":587455,\"inFlow\":0,\"lastChangeTime\":\"357 days, 9:12:23.71\",\"lastInBytes\":587455,\"lastOutBytes\":27577743,\"outBytes\":27577743,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1605576969,\"inFlow\":1,\"lastChangeTime\":\"116 days, 0:15:48.34\",\"lastInBytes\":1605576969,\"lastOutBytes\":1832635344,\"outBytes\":1832635344,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5719026,\"inBytes\":476720861,\"inFlow\":143452,\"lastChangeTime\":\"357 days, 10:11:19.44\",\"lastInBytes\":476720861,\"lastOutBytes\":3558973119,\"outBytes\":3558973119,\"outFlow\":5575573,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.655523000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347655", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1014040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"286446\",\"inUnknownProtos\":\"1094220799\",\"index\":\"635\",\"lastChange\":\"0:01:17.05\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:2a:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"648704944\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"274127035\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":435925,\"inBytes\":1355205784,\"inFlow\":427158,\"lastChangeTime\":\"75 days, 2:56:28.18\",\"lastInBytes\":1355205784,\"lastOutBytes\":912674992,\"outBytes\":912674992,\"outFlow\":8767,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412921,\"inBytes\":527812302,\"inFlow\":404463,\"lastChangeTime\":\"75 days, 2:56:43.78\",\"lastInBytes\":527812302,\"lastOutBytes\":3528520337,\"outBytes\":3528520337,\"outFlow\":8458,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415331,\"inBytes\":3097651617,\"inFlow\":405062,\"lastChangeTime\":\"354 days, 10:36:33.52\",\"lastInBytes\":3097651617,\"lastOutBytes\":3621279964,\"outBytes\":3621279964,\"outFlow\":10268,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":420675,\"inBytes\":3537920949,\"inFlow\":410357,\"lastChangeTime\":\"389 days, 9:24:38.18\",\"lastInBytes\":3537920949,\"lastOutBytes\":3511632844,\"outBytes\":3511632844,\"outFlow\":10318,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":553415,\"inBytes\":1333853417,\"inFlow\":540404,\"lastChangeTime\":\"286 days, 6:11:45.66\",\"lastInBytes\":1333853417,\"lastOutBytes\":4180127141,\"outBytes\":4180127141,\"outFlow\":13010,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":415362,\"inBytes\":405192702,\"inFlow\":407275,\"lastChangeTime\":\"75 days, 2:56:51.93\",\"lastInBytes\":405192702,\"lastOutBytes\":1094220799,\"outBytes\":1094220799,\"outFlow\":8087,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413885,\"inBytes\":667142499,\"inFlow\":403881,\"lastChangeTime\":\"354 days, 10:36:35.34\",\"lastInBytes\":667142499,\"lastOutBytes\":239796594,\"outBytes\":239796594,\"outFlow\":10004,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":428703,\"inBytes\":3312888634,\"inFlow\":419822,\"lastChangeTime\":\"75 days, 2:56:38.66\",\"lastInBytes\":3312888634,\"lastOutBytes\":2543714895,\"outBytes\":2543714895,\"outFlow\":8880,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413481,\"inBytes\":471701926,\"inFlow\":403458,\"lastChangeTime\":\"389 days, 9:24:40.67\",\"lastInBytes\":471701926,\"lastOutBytes\":3379896564,\"outBytes\":3379896564,\"outFlow\":10022,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":895501,\"inBytes\":4272094045,\"inFlow\":873219,\"lastChangeTime\":\"389 days, 9:24:40.26\",\"lastInBytes\":4272094045,\"lastOutBytes\":1395793955,\"outBytes\":1395793955,\"outFlow\":22282,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3030,\"inFlow\":0,\"lastChangeTime\":\"140 days, 19:25:20.29\",\"lastInBytes\":3030,\"lastOutBytes\":73619,\"outBytes\":73619,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1605015563,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.87\",\"lastInBytes\":1605015563,\"lastOutBytes\":307563924,\"outBytes\":307563924,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4850673,\"inBytes\":2647564095,\"inFlow\":115751,\"lastChangeTime\":\"140 days, 19:25:22.42\",\"lastInBytes\":2647564095,\"lastOutBytes\":2611985054,\"outBytes\":2611985054,\"outFlow\":4734922,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.629978000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347656", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"354496\",\"inUnknownProtos\":\"2431681698\",\"index\":\"635\",\"lastChange\":\"0:01:25.00\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:38:49\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1112937192\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"427252832\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:46\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":411471,\"inBytes\":219682743,\"inFlow\":402808,\"lastChangeTime\":\"357 days, 8:57:15.16\",\"lastInBytes\":219682743,\"lastOutBytes\":1723998976,\"outBytes\":1723998976,\"outFlow\":8663,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1354135,\"inBytes\":192784803,\"inFlow\":1323011,\"lastChangeTime\":\"5 days, 17:21:20.95\",\"lastInBytes\":192784803,\"lastOutBytes\":182203254,\"outBytes\":182203254,\"outFlow\":31123,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":408400,\"inBytes\":1067320848,\"inFlow\":398397,\"lastChangeTime\":\"73 days, 21:46:11.51\",\"lastInBytes\":1067320848,\"lastOutBytes\":4024805475,\"outBytes\":4024805475,\"outFlow\":10003,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":447462,\"inBytes\":2856629243,\"inFlow\":438090,\"lastChangeTime\":\"357 days, 8:57:27.01\",\"lastInBytes\":2856629243,\"lastOutBytes\":2198787125,\"outBytes\":2198787125,\"outFlow\":9372,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413438,\"inBytes\":931022403,\"inFlow\":403406,\"lastChangeTime\":\"73 days, 21:46:06.15\",\"lastInBytes\":931022403,\"lastOutBytes\":2431681698,\"outBytes\":2431681698,\"outFlow\":10031,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416887,\"inBytes\":2895886098,\"inFlow\":406728,\"lastChangeTime\":\"73 days, 21:46:06.70\",\"lastInBytes\":2895886098,\"lastOutBytes\":429632947,\"outBytes\":429632947,\"outFlow\":10158,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":413409,\"inBytes\":373057935,\"inFlow\":403298,\"lastChangeTime\":\"73 days, 21:46:08.17\",\"lastInBytes\":373057935,\"lastOutBytes\":26233707,\"outBytes\":26233707,\"outFlow\":10111,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":13529,\"inFlow\":0,\"lastChangeTime\":\"357 days, 9:04:57.76\",\"lastInBytes\":13529,\"lastOutBytes\":383114,\"outBytes\":383114,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":78608,\"inFlow\":0,\"lastChangeTime\":\"181 days, 11:05:02.34\",\"lastInBytes\":78608,\"lastOutBytes\":3440876,\"outBytes\":3440876,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1604577930,\"inFlow\":1,\"lastChangeTime\":\"115 days, 22:40:31.23\",\"lastInBytes\":1604577930,\"lastOutBytes\":1832659143,\"outBytes\":1832659143,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3892126,\"inBytes\":415899588,\"inFlow\":94160,\"lastChangeTime\":\"357 days, 9:05:05.57\",\"lastInBytes\":415899588,\"lastOutBytes\":4081206660,\"outBytes\":4081206660,\"outFlow\":3797966,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.631004000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347657", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"354193\",\"inUnknownProtos\":\"958333369\",\"index\":\"635\",\"lastChange\":\"0:01:16.57\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:72:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3553310671\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":413747,\"inBytes\":126280333,\"inFlow\":403617,\"lastChangeTime\":\"116 days, 1:23:09.72\",\"lastInBytes\":126280333,\"lastOutBytes\":616085181,\"outBytes\":616085181,\"outFlow\":10129,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413972,\"inBytes\":3135884462,\"inFlow\":403797,\"lastChangeTime\":\"116 days, 1:23:21.74\",\"lastInBytes\":3135884462,\"lastOutBytes\":3900101060,\"outBytes\":3900101060,\"outFlow\":10174,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":276481,\"inBytes\":1399475994,\"inFlow\":269511,\"lastChangeTime\":\"181 days, 12:55:57.65\",\"lastInBytes\":1399475994,\"lastOutBytes\":2139444399,\"outBytes\":2139444399,\"outFlow\":6970,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":276856,\"inBytes\":2182961621,\"inFlow\":269796,\"lastChangeTime\":\"357 days, 9:19:41.10\",\"lastInBytes\":2182961621,\"lastOutBytes\":958333369,\"outBytes\":958333369,\"outFlow\":7059,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":9399762,\"inFlow\":0,\"lastChangeTime\":\"357 days, 9:20:05.90\",\"lastInBytes\":9399762,\"lastOutBytes\":32250463,\"outBytes\":32250463,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1602657802,\"inFlow\":1,\"lastChangeTime\":\"116 days, 1:23:21.85\",\"lastInBytes\":1602657802,\"lastOutBytes\":1831027023,\"outBytes\":1831027023,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1387673,\"inBytes\":1226754304,\"inFlow\":36435,\"lastChangeTime\":\"357 days, 9:20:12.85\",\"lastInBytes\":1226754304,\"lastOutBytes\":1052964772,\"outBytes\":1052964772,\"outFlow\":1351238,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.663989000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347658", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1014040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"298435\",\"inUnknownProtos\":\"2439008967\",\"index\":\"635\",\"lastChange\":\"443 days, 21:27:27.27\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:3b:49\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3148257945\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"291492544\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":896527,\"inBytes\":1792726743,\"inFlow\":873643,\"lastChangeTime\":\"389 days, 11:09:52.40\",\"lastInBytes\":1792726743,\"lastOutBytes\":2447976685,\"outBytes\":2447976685,\"outFlow\":22884,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":902102,\"inBytes\":3366952714,\"inFlow\":879077,\"lastChangeTime\":\"389 days, 11:09:59.01\",\"lastInBytes\":3366952714,\"lastOutBytes\":3174406885,\"outBytes\":3174406885,\"outFlow\":23025,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":896461,\"inBytes\":1707456979,\"inFlow\":874545,\"lastChangeTime\":\"419 days, 18:20:42.43\",\"lastInBytes\":1707456979,\"lastOutBytes\":1604197908,\"outBytes\":1604197908,\"outFlow\":21915,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413706,\"inBytes\":1051567117,\"inFlow\":403665,\"lastChangeTime\":\"443 days, 21:28:33.21\",\"lastInBytes\":1051567117,\"lastOutBytes\":2335718891,\"outBytes\":2335718891,\"outFlow\":10041,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1021768,\"inBytes\":1850509932,\"inFlow\":1001134,\"lastChangeTime\":\"175 days, 20:27:17.00\",\"lastInBytes\":1850509932,\"lastOutBytes\":2313987525,\"outBytes\":2313987525,\"outFlow\":20633,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1351727,\"inBytes\":509754690,\"inFlow\":1320692,\"lastChangeTime\":\"443 days, 21:24:25.92\",\"lastInBytes\":509754690,\"lastOutBytes\":2439008967,\"outBytes\":2439008967,\"outFlow\":31035,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":252702026,\"inFlow\":0,\"lastChangeTime\":\"443 days, 21:31:35.71\",\"lastInBytes\":252702026,\"lastOutBytes\":3397600270,\"outBytes\":3397600270,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":2},{\"flow\":554386,\"inBytes\":2691512988,\"inFlow\":541579,\"lastChangeTime\":\"443 days, 21:24:27.40\",\"lastInBytes\":2691512988,\"lastOutBytes\":2575718951,\"outBytes\":2575718951,\"outFlow\":12807,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":903781,\"inBytes\":1112962408,\"inFlow\":880687,\"lastChangeTime\":\"389 days, 11:09:57.91\",\"lastInBytes\":1112962408,\"lastOutBytes\":3820726282,\"outBytes\":3820726282,\"outFlow\":23094,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":903695,\"inBytes\":2866148633,\"inFlow\":880640,\"lastChangeTime\":\"389 days, 11:10:00.40\",\"lastInBytes\":2866148633,\"lastOutBytes\":1012443170,\"outBytes\":1012443170,\"outFlow\":23055,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":560481,\"inBytes\":3710853698,\"inFlow\":546619,\"lastChangeTime\":\"463 days, 16:42:25.13\",\"lastInBytes\":3710853698,\"lastOutBytes\":2261646636,\"outBytes\":2261646636,\"outFlow\":13861,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":416808,\"inBytes\":4074558303,\"inFlow\":406615,\"lastChangeTime\":\"457 days, 16:17:38.92\",\"lastInBytes\":4074558303,\"lastOutBytes\":2984632388,\"outBytes\":2984632388,\"outFlow\":10192,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":24718098,\"inFlow\":0,\"lastChangeTime\":\"443 days, 21:33:39.71\",\"lastInBytes\":24718098,\"lastOutBytes\":58323815,\"outBytes\":58323815,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":642147,\"inFlow\":0,\"lastChangeTime\":\"443 days, 21:35:02.97\",\"lastInBytes\":642147,\"lastOutBytes\":85740669,\"outBytes\":85740669,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1600377774,\"inFlow\":1,\"lastChangeTime\":\"443 days, 21:27:27.27\",\"lastInBytes\":1600377774,\"lastOutBytes\":551141108,\"outBytes\":551141108,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8867702,\"inBytes\":4276518379,\"inFlow\":222600,\"lastChangeTime\":\"443 days, 21:32:59.80\",\"lastInBytes\":4276518379,\"lastOutBytes\":3300337932,\"outBytes\":3300337932,\"outFlow\":8645102,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.642413000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347659", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040010", + "name": "H3C前端交换机9", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"353979\",\"inUnknownProtos\":\"2863273298\",\"index\":\"635\",\"lastChange\":\"0:01:19.67\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:7a:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3951724745\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"427251581\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:46\",\"info\":{\"portInfoList\":[{\"flow\":894875,\"inBytes\":1202153022,\"inFlow\":872550,\"lastChangeTime\":\"73 days, 21:45:30.80\",\"lastInBytes\":1202153022,\"lastOutBytes\":3518213073,\"outBytes\":3518213073,\"outFlow\":22324,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":885198,\"inBytes\":3605766389,\"inFlow\":863137,\"lastChangeTime\":\"73 days, 21:45:28.99\",\"lastInBytes\":3605766389,\"lastOutBytes\":707541578,\"outBytes\":707541578,\"outFlow\":22060,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":879274,\"inBytes\":3877596123,\"inFlow\":857073,\"lastChangeTime\":\"73 days, 21:45:30.60\",\"lastInBytes\":3877596123,\"lastOutBytes\":1783676209,\"outBytes\":1783676209,\"outFlow\":22201,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":898484,\"inBytes\":2489746136,\"inFlow\":876397,\"lastChangeTime\":\"116 days, 0:53:09.88\",\"lastInBytes\":2489746136,\"lastOutBytes\":3711989864,\"outBytes\":3711989864,\"outFlow\":22086,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":551216,\"inBytes\":1390605974,\"inFlow\":538257,\"lastChangeTime\":\"5 days, 17:20:41.25\",\"lastInBytes\":1390605974,\"lastOutBytes\":3858408265,\"outBytes\":3858408265,\"outFlow\":12958,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413734,\"inBytes\":3204804074,\"inFlow\":403677,\"lastChangeTime\":\"116 days, 0:53:21.73\",\"lastInBytes\":3204804074,\"lastOutBytes\":2863273298,\"outBytes\":2863273298,\"outFlow\":10057,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":890188,\"inBytes\":2868411989,\"inFlow\":868028,\"lastChangeTime\":\"73 days, 21:45:30.06\",\"lastInBytes\":2868411989,\"lastOutBytes\":1592317127,\"outBytes\":1592317127,\"outFlow\":22160,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":896138,\"inBytes\":2985228825,\"inFlow\":873350,\"lastChangeTime\":\"73 days, 21:45:35.87\",\"lastInBytes\":2985228825,\"lastOutBytes\":2085416489,\"outBytes\":2085416489,\"outFlow\":22788,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":894447,\"inBytes\":1152434315,\"inFlow\":871693,\"lastChangeTime\":\"73 days, 21:45:33.58\",\"lastInBytes\":1152434315,\"lastOutBytes\":419719306,\"outBytes\":419719306,\"outFlow\":22754,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":15173,\"inFlow\":0,\"lastChangeTime\":\"357 days, 9:24:04.34\",\"lastInBytes\":15173,\"lastOutBytes\":767805,\"outBytes\":767805,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":17316,\"inFlow\":0,\"lastChangeTime\":\"181 days, 13:08:24.90\",\"lastInBytes\":17316,\"lastOutBytes\":1196605,\"outBytes\":1196605,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1598865067,\"inFlow\":1,\"lastChangeTime\":\"116 days, 0:53:56.69\",\"lastInBytes\":1598865067,\"lastOutBytes\":1825222229,\"outBytes\":1825222229,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7226362,\"inBytes\":281810909,\"inFlow\":187847,\"lastChangeTime\":\"357 days, 9:24:05.37\",\"lastInBytes\":281810909,\"lastOutBytes\":3774761584,\"outBytes\":3774761584,\"outFlow\":7038515,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.646659000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888035548347660", + "createdBy": "0", + "createdTime": "2025-02-24 14:33:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:47", + "echoMap": {}, + "deviceId": "1014040011", + "name": "H3C前端交换机10", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"353957\",\"inUnknownProtos\":\"3201669837\",\"index\":\"635\",\"lastChange\":\"0:01:20.49\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:44:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2465088775\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:46\",\"info\":{\"portInfoList\":[{\"flow\":892976,\"inBytes\":2945756913,\"inFlow\":870663,\"lastChangeTime\":\"73 days, 21:45:28.43\",\"lastInBytes\":2945756913,\"lastOutBytes\":951662072,\"outBytes\":951662072,\"outFlow\":22313,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1322456,\"inBytes\":3227714189,\"inFlow\":1291916,\"lastChangeTime\":\"5 days, 17:20:40.01\",\"lastInBytes\":3227714189,\"lastOutBytes\":3788556675,\"outBytes\":3788556675,\"outFlow\":30539,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413513,\"inBytes\":3668570546,\"inFlow\":403280,\"lastChangeTime\":\"214 days, 10:25:18.58\",\"lastInBytes\":3668570546,\"lastOutBytes\":409206502,\"outBytes\":409206502,\"outFlow\":10232,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413799,\"inBytes\":1531207320,\"inFlow\":403628,\"lastChangeTime\":\"116 days, 1:01:48.82\",\"lastInBytes\":1531207320,\"lastOutBytes\":1544223474,\"outBytes\":1544223474,\"outFlow\":10170,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276866,\"inBytes\":3181023297,\"inFlow\":269829,\"lastChangeTime\":\"107 days, 20:26:43.53\",\"lastInBytes\":3181023297,\"lastOutBytes\":3922226013,\"outBytes\":3922226013,\"outFlow\":7037,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413873,\"inBytes\":2540612166,\"inFlow\":403817,\"lastChangeTime\":\"214 days, 10:24:58.32\",\"lastInBytes\":2540612166,\"lastOutBytes\":3201669837,\"outBytes\":3201669837,\"outFlow\":10055,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":893167,\"inBytes\":3684463067,\"inFlow\":870388,\"lastChangeTime\":\"73 days, 21:45:39.44\",\"lastInBytes\":3684463067,\"lastOutBytes\":3918549198,\"outBytes\":3918549198,\"outFlow\":22779,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":86880,\"inFlow\":0,\"lastChangeTime\":\"357 days, 9:25:29.74\",\"lastInBytes\":86880,\"lastOutBytes\":883275,\"outBytes\":883275,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":19430,\"inFlow\":0,\"lastChangeTime\":\"181 days, 13:07:22.25\",\"lastInBytes\":19430,\"lastOutBytes\":512838,\"outBytes\":512838,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1598335324,\"inFlow\":1,\"lastChangeTime\":\"116 days, 1:02:02.94\",\"lastInBytes\":1598335324,\"lastOutBytes\":1828052610,\"outBytes\":1828052610,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4653902,\"inBytes\":2562410021,\"inFlow\":118859,\"lastChangeTime\":\"357 days, 9:25:28.54\",\"lastInBytes\":2562410021,\"lastOutBytes\":2500054208,\"outBytes\":2500054208,\"outFlow\":4535042,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.644508000\"}}", + "lastDiagTime": "2026-02-02 14:38:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "714575450167292099", + "createdBy": "0", + "createdTime": "2025-12-23 15:58:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1014040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.156.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface156\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"303589\",\"inUnknownProtos\":\"792519691\",\"index\":\"635\",\"lastChange\":\"0:01:12.77\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:4a:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1191335056\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.156.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":316,\"inBytes\":106944171,\"inFlow\":7,\"lastChangeTime\":\"109 days, 12:06:08.28\",\"lastInBytes\":106944171,\"lastOutBytes\":423089701,\"outBytes\":423089701,\"outFlow\":309,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3857326,\"inBytes\":1122555861,\"inFlow\":21316,\"lastChangeTime\":\"490 days, 13:08:35.81\",\"lastInBytes\":1122555861,\"lastOutBytes\":2928841374,\"outBytes\":2928841374,\"outFlow\":3836009,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":317,\"inBytes\":389685287,\"inFlow\":0,\"lastChangeTime\":\"16 days, 23:10:01.34\",\"lastInBytes\":389685287,\"lastOutBytes\":2528910615,\"outBytes\":2528910615,\"outFlow\":317,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":29775313,\"inFlow\":0,\"lastChangeTime\":\"488 days, 8:37:11.41\",\"lastInBytes\":29775313,\"lastOutBytes\":2149658790,\"outBytes\":2149658790,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":532122,\"inBytes\":3180519909,\"inFlow\":2840,\"lastChangeTime\":\"124 days, 9:34:41.66\",\"lastInBytes\":3180519909,\"lastOutBytes\":787287501,\"outBytes\":787287501,\"outFlow\":529282,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":82,\"inBytes\":1858816,\"inFlow\":0,\"lastChangeTime\":\"0:01:12.76\",\"lastInBytes\":1858816,\"lastOutBytes\":292465707,\"outBytes\":292465707,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4410427,\"inBytes\":4251361888,\"inFlow\":4383585,\"lastChangeTime\":\"215 days, 21:56:13.06\",\"lastInBytes\":4251361888,\"lastOutBytes\":2263855920,\"outBytes\":2263855920,\"outFlow\":26842,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:43.648859000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589888035548347492", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:43", + "echoMap": {}, + "deviceId": "1014110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.155.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.90\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"132 days, 22:42:57.02\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10923186\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29034730\",\"inOctets\":\"517328786\",\"inUcastPkts\":\"1461981698\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3d:9c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"192110360\",\"outQLen\":\"0\",\"outUcastPkts\":\"1243638125\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.155.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1015": { + "ndmAlarmHost": [ + { + "id": "691388253175269632", + "createdBy": null, + "createdTime": "2025-10-23 08:55:51", + "updatedBy": null, + "updatedTime": "2025-10-23 08:55:51", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.157.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "589888507992884224", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1015060001", + "name": "[619](10)豫园消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884225", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1015060002", + "name": "[618](10)豫园消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884226", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1015060003", + "name": "[601](10)豫园车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503042004015601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884227", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1015060004", + "name": "[602](10)豫园编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503041005015602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884228", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1015060005", + "name": "[603](10)豫园编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503041005015603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884229", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1015060006", + "name": "[604](10)豫园编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503041005015604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884230", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060007", + "name": "[343](10)豫园B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884231", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060008", + "name": "[504](10)豫园票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501030006015504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884232", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060009", + "name": "[505](10)豫园票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501030006015505", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884233", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1015060010", + "name": "[614](10)豫园内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884234", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1015060011", + "name": "[507](10)豫园票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501025006015507", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884235", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1015060012", + "name": "[348](10)豫园安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501085006015348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884236", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1015060013", + "name": "[337](10)豫园公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884237", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-05 20:20:15", + "echoMap": {}, + "deviceId": "1015060014", + "name": "[314](10)豫园3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884238", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-26 10:59:11", + "echoMap": {}, + "deviceId": "1015060015", + "name": "[313](10)豫园3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884239", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-26 10:55:10", + "echoMap": {}, + "deviceId": "1015060016", + "name": "[315](10)豫园3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884240", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-26 10:56:11", + "echoMap": {}, + "deviceId": "1015060017", + "name": "[316](10)豫园3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884241", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:31", + "echoMap": {}, + "deviceId": "1015060018", + "name": "[317](10)豫园3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884242", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-26 10:55:11", + "echoMap": {}, + "deviceId": "1015060019", + "name": "[318](10)豫园3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884243", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-26 10:57:13", + "echoMap": {}, + "deviceId": "1015060020", + "name": "[210](10)豫园3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057004015210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884244", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:32", + "echoMap": {}, + "deviceId": "1015060021", + "name": "[401](10)豫园1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501005006015401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884245", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:33", + "echoMap": {}, + "deviceId": "1015060022", + "name": "[338](10)豫园公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884246", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:33", + "echoMap": {}, + "deviceId": "1015060023", + "name": "[312](10)豫园3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884247", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:33", + "echoMap": {}, + "deviceId": "1015060024", + "name": "[402](10)豫园1#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501005006015402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884248", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:33", + "echoMap": {}, + "deviceId": "1015060025", + "name": "[403](10)豫园1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501005006015403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884249", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:34", + "echoMap": {}, + "deviceId": "1015060026", + "name": "[326](10)豫园#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884250", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-01 00:48:34", + "echoMap": {}, + "deviceId": "1015060027", + "name": "[201](10)豫园厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501035004015201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884251", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1015060028", + "name": "[420](10)豫园5#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501009006015420", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884252", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1015060029", + "name": "[421](10)豫园5#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501009006015421", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884253", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1015060030", + "name": "[203](10)豫园厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501035004015203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884254", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1015060031", + "name": "[419](10)豫园5#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501009006015419", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884255", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1015060032", + "name": "[418](10)豫园5#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501009006015418", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884256", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1015060033", + "name": "[407](10)豫园3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501007006015407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884257", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1015060034", + "name": "[408](10)豫园3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501007006015408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884258", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1015060035", + "name": "[404](10)豫园2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501006006015404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884259", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1015060036", + "name": "[325](10)豫园#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884260", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1015060037", + "name": "[330](10)豫园#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884261", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-22 09:50:32", + "echoMap": {}, + "deviceId": "1015060038", + "name": "[346](10)豫园1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501036005015346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884262", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1015060039", + "name": "[501](10)豫园客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501001006015501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884263", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1015060040", + "name": "[328](10)豫园#1厅扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884264", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1015060041", + "name": "[327](10)豫园#1厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884265", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1015060042", + "name": "[344](10)豫园B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884266", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1015060043", + "name": "[202](10)豫园厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501035004015202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884267", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1015060044", + "name": "[411](10)豫园3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501007006015411", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884268", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1015060045", + "name": "[410](10)豫园3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501007006015410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884269", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1015060046", + "name": "[409](10)豫园3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501007006015409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884270", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-29 19:28:32", + "echoMap": {}, + "deviceId": "1015060047", + "name": "[617](10)豫园内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884271", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1015060048", + "name": "[503](10)豫园客服1边门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501001006015503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884272", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1015060049", + "name": "[405](10)豫园2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501006006015405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884273", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1015060050", + "name": "[406](10)豫园2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501006006015406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884274", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1015060051", + "name": "[301](10)豫园1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884275", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1015060052", + "name": "[302](10)豫园1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884276", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-22 11:04:32", + "echoMap": {}, + "deviceId": "1015060053", + "name": "[347](10)豫园2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501036005015347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884277", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1015060054", + "name": "[310](10)豫园1#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884278", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1015060055", + "name": "[309](10)豫园1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884279", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-18 17:09:32", + "echoMap": {}, + "deviceId": "1015060056", + "name": "[308](10)豫园1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884280", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1015060057", + "name": "[209](10)豫园1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055004015209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884281", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1015060058", + "name": "[307](10)豫园1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884282", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-16 14:28:32", + "echoMap": {}, + "deviceId": "1015060059", + "name": "[305](10)豫园1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884283", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1015060060", + "name": "[306](10)豫园1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884284", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1015060061", + "name": "[304](10)豫园1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884285", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1015060062", + "name": "[303](10)豫园1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055006015303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884286", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1015060063", + "name": "[311](10)豫园1#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501055005015311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884287", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1015060064", + "name": "[616](10)豫园内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884288", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-22 17:42:32", + "echoMap": {}, + "deviceId": "1015060065", + "name": "[339](10)豫园公共区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884289", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1015060066", + "name": "[502](10)豫园客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501001006015502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884290", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-01-04 02:13:01", + "echoMap": {}, + "deviceId": "1015060067", + "name": "[414](10)豫园4#闸入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501008006015414", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884291", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1015060068", + "name": "[413](10)豫园4#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501008006015413", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884292", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1015060069", + "name": "[412](10)豫园4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501008006015412", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884293", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-02-01 09:23:32", + "echoMap": {}, + "deviceId": "1015060070", + "name": "[329](10)豫园#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884294", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060071", + "name": "[204](10)豫园厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501035004015204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884295", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060072", + "name": "[331](10)豫园#2厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884296", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060073", + "name": "[332](10)豫园#2厅扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501050006015332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884297", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060074", + "name": "[342](10)豫园公共区6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884298", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060075", + "name": "[341](10)豫园公共区5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884299", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1015060076", + "name": "[340](10)豫园公共区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501040006015340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884300", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060077", + "name": "[319](10)豫园4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058006015319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884301", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060078", + "name": "[320](10)豫园4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058006015320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884302", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060079", + "name": "[322](10)豫园4#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058006015322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884303", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060080", + "name": "[323](10)豫园4#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058006015323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884304", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060081", + "name": "[211](10)豫园4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058004015211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884305", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060082", + "name": "[321](10)豫园4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058006015321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884306", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1015060083", + "name": "[506](10)豫园票机3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501030006015506", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884307", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1015060084", + "name": "[324](10)豫园4#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501058006015324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884308", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1015060085", + "name": "[349](10)豫园安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501085006015349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884309", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1015060086", + "name": "[615](10)豫园内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884310", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1015060087", + "name": "[417](10)豫园4#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501008006015417", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884311", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1015060088", + "name": "[416](10)豫园4#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501008006015416", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884312", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1015060089", + "name": "[415](10)豫园4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501008006015415", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884313", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1015060090", + "name": "[605](10)豫园弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503048005015605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884314", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1015060091", + "name": "[606](10)豫园弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503048005015606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884315", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1015060092", + "name": "[607](10)豫园弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503048005015607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884316", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1015060093", + "name": "[608](10)豫园弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503048005015608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884318", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1015060095", + "name": "[613](10)豫园环控室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503053005015613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884320", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1015060097", + "name": "[611](10)豫园环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503053005015611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884321", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1015060098", + "name": "[620](10)豫园变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001006015620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884322", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1015060099", + "name": "[110](10)豫园下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502012006015110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884323", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-12-11 14:21:27", + "echoMap": {}, + "deviceId": "1015060100", + "name": "[108](10)豫园下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502012006015108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884324", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1015060101", + "name": "[107](10)豫园下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502012006015107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884325", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060102", + "name": "[621](10)豫园内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503021006015621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884326", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060103", + "name": "[333](10)豫园#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502017006015333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884327", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060104", + "name": "[207](10)豫园下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502001004015207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884328", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1015060105", + "name": "[609](10)豫园屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.157.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503048005015609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884329", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1015060106", + "name": "[206](10)豫园上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502001004015206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884330", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2026-02-02 00:57:32", + "echoMap": {}, + "deviceId": "1015060107", + "name": "[334](10)豫园#1台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502017006015334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884331", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1015060108", + "name": "[103](10)豫园上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502007006015103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884332", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1015060109", + "name": "[105](10)豫园上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502007006015105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884333", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1015060110", + "name": "[106](10)豫园上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502007006015106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884334", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1015060111", + "name": "[112](10)豫园下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502012006015112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884335", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060112", + "name": "[111](10)豫园下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502012006015111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884336", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060113", + "name": "[109](10)豫园下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502012006015109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884337", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1015060114", + "name": "[335](10)豫园#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502017006015335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884339", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1015060116", + "name": "[622](10)豫园内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503021006015622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884340", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1015060117", + "name": "[205](10)豫园上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502001004015205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884341", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1015060118", + "name": "[336](10)豫园#2台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502017006015336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884342", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1015060119", + "name": "[345](10)豫园B3垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502002006015345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884343", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1015060120", + "name": "[101](10)豫园上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502007006015101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884344", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1015060121", + "name": "[102](10)豫园上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502007006015102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884345", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1015060122", + "name": "[104](10)豫园上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502007006015104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884346", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1015060123", + "name": "[702](10)豫园豫园老西门下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061504012004015702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884347", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1015060124", + "name": "[701](10)豫园豫园老西门上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061504012004015701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884348", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1015060125", + "name": "[704](10)豫园豫园南京东下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061504012004015704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884349", + "createdBy": "0", + "createdTime": "2025-02-24 14:44:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1015060126", + "name": "[703](10)豫园豫园南京东上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061504012004015703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832896", + "createdBy": null, + "createdTime": "2025-10-27 12:29:24", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1015060127", + "name": "[625](10)豫园5#闸入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501009006015625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832897", + "createdBy": null, + "createdTime": "2025-10-27 12:29:24", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1015060128", + "name": "[624](10)豫园内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503001005015624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832898", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2026-01-27 17:58:32", + "echoMap": {}, + "deviceId": "1015060129", + "name": "[623](10)豫园消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503068005015623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832899", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1015060130", + "name": "[208](10)豫园下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061502001004015208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832900", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:27", + "echoMap": {}, + "deviceId": "1015060131", + "name": "[359](10)豫园3B#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.42", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832901", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:27", + "echoMap": {}, + "deviceId": "1015060132", + "name": "[360](10)豫园3B#口入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.43", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832902", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:27", + "echoMap": {}, + "deviceId": "1015060133", + "name": "[357](10)豫园3B#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.40", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832903", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:28", + "echoMap": {}, + "deviceId": "1015060134", + "name": "[358](10)豫园3B#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.41", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832904", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1015060135", + "name": "[627](10)豫园民用机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503048005015627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832905", + "createdBy": null, + "createdTime": "2025-10-27 12:29:25", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1015060136", + "name": "[628](10)豫园电源室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.32", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503050005015628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832906", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:28", + "echoMap": {}, + "deviceId": "1015060137", + "name": "[350](10)豫园3B#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057004015350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832907", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:28", + "echoMap": {}, + "deviceId": "1015060138", + "name": "[351](10)豫园3B#口楼梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832908", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:20:29", + "echoMap": {}, + "deviceId": "1015060139", + "name": "[352](10)豫园3B#口楼梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.35", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832909", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:19:34", + "echoMap": {}, + "deviceId": "1015060140", + "name": "[353](10)豫园3B#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.36", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832910", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:19:34", + "echoMap": {}, + "deviceId": "1015060141", + "name": "[354](10)豫园3B#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.37", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832911", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:19:34", + "echoMap": {}, + "deviceId": "1015060142", + "name": "[355](10)豫园3B#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.38", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832912", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-12-12 09:19:35", + "echoMap": {}, + "deviceId": "1015060143", + "name": "[356](10)豫园3B#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.39", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061501057006015356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693379644826832913", + "createdBy": null, + "createdTime": "2025-10-27 12:29:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1015060144", + "name": "[626](10)豫园气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.158.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061503067005015626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589888507992884387", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:27", + "echoMap": {}, + "deviceId": "1015070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.157.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061500000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112296\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1799047535\",\"inUcastPkts\":\"1157112182\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:67:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3110468111\",\"outQLen\":\"0\",\"outUcastPkts\":\"370242673\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.157.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:27\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZD0206\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:37:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589888507992884388", + "createdBy": "2", + "createdTime": "2025-02-24 14:46:16", + "updatedBy": null, + "updatedTime": "2026-01-07 21:06:40", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.157.51", + "manageUrl": "http:\\\\10.18.157.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884389", + "createdBy": "2", + "createdTime": "2025-02-24 14:46:36", + "updatedBy": null, + "updatedTime": "2025-12-23 10:14:15", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.157.52", + "manageUrl": "http:\\\\10.18.157.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589888507992884386", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:27", + "echoMap": {}, + "deviceId": "1015090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.157.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.98\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"165 days, 10:23:40.57\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"13785448\",\"inErrors\":\"0\",\"inNUcastPkts\":\"30535139\",\"inOctets\":\"3135251207\",\"inUcastPkts\":\"171300508\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"244 days, 23:29:31.27\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3c:60\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"175770716\",\"outQLen\":\"0\",\"outUcastPkts\":\"2179183266\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.157.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:37:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589888507992884351", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 14:45:04", + "echoMap": {}, + "deviceId": "1015050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.157.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061500000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.157.22;10.18.157.23" + }, + { + "id": "589888507992884352", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:28", + "echoMap": {}, + "deviceId": "1015050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.157.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061500000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13167774\",\"inErrors\":\"0\",\"inNUcastPkts\":\"31372721\",\"inOctets\":\"1723040997\",\"inUcastPkts\":\"594864273\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:58:a5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"733091108\",\"outQLen\":\"0\",\"outUcastPkts\":\"4167553111\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3280\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.157.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:27\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":291089029,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15722\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"49\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:37:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.157.22" + }, + { + "id": "589888507992884353", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:29", + "echoMap": {}, + "deviceId": "1015050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.157.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061500000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26092418\",\"inErrors\":\"0\",\"inNUcastPkts\":\"51028178\",\"inOctets\":\"2343298842\",\"inUcastPkts\":\"2929931943\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:6d:79\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3077922603\",\"outQLen\":\"0\",\"outUcastPkts\":\"4127651896\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3290\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3260\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.157.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:29\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":291089029,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15723\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"51\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:37:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.157.23" + } + ], + "ndmSecurityBox": [ + { + "id": "589888507992884370", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:27", + "echoMap": {}, + "deviceId": "1015030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"13826094\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"772081480\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"13826099\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0a:c0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":0,\"voltage\":27.312002},{\"current\":0.001,\"status\":0,\"voltage\":27.312002},{\"current\":0.51600003,\"status\":1,\"voltage\":27.312002},{\"current\":0.254,\"status\":1,\"voltage\":27.312002},{\"current\":0.238,\"status\":1,\"voltage\":27.312002},{\"current\":0.252,\"status\":1,\"voltage\":27.312002},{\"current\":0.26700002,\"status\":1,\"voltage\":27.312002},{\"current\":0.134,\"status\":1,\"voltage\":27.312002},{\"current\":0.286,\"status\":1,\"voltage\":27.312002},{\"current\":0.27400002,\"status\":1,\"voltage\":26.183},{\"current\":0.003,\"status\":1,\"voltage\":26.183},{\"current\":0.42000002,\"status\":1,\"voltage\":26.183},{\"current\":0.30200002,\"status\":1,\"voltage\":26.183},{\"current\":0.27100003,\"status\":1,\"voltage\":26.183},{\"current\":0.23200001,\"status\":1,\"voltage\":26.183},{\"current\":0.215,\"status\":1,\"voltage\":26.183}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302752\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884371", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:28", + "echoMap": {}, + "deviceId": "1015030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3055961\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"168138608\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3055966\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:35\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.789001},{\"current\":0.36900002,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.344,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.001,\"status\":1,\"voltage\":26.789001},{\"current\":0.30600002,\"status\":1,\"voltage\":26.789001},{\"current\":0.254,\"status\":1,\"voltage\":26.789001},{\"current\":0.263,\"status\":1,\"voltage\":26.534},{\"current\":0.002,\"status\":1,\"voltage\":26.534},{\"current\":0.344,\"status\":1,\"voltage\":26.534},{\"current\":0.358,\"status\":1,\"voltage\":26.534},{\"current\":0.24000001,\"status\":1,\"voltage\":26.534},{\"current\":0.53800005,\"status\":1,\"voltage\":26.534},{\"current\":0.001,\"status\":1,\"voltage\":26.534}],\"fanSpeeds\":[0,0],\"humidity\":40,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208302869\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884372", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:29", + "echoMap": {}, + "deviceId": "1015030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"13688112\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"764346116\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"13688117\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:40\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.35300002,\"status\":1,\"voltage\":26.081001},{\"current\":0.35000002,\"status\":1,\"voltage\":26.081001},{\"current\":0.526,\"status\":1,\"voltage\":26.081001},{\"current\":0.37,\"status\":1,\"voltage\":26.081001},{\"current\":0.38300002,\"status\":1,\"voltage\":26.081001},{\"current\":0.37,\"status\":1,\"voltage\":26.081001},{\"current\":0.38700002,\"status\":1,\"voltage\":26.081001},{\"current\":0.314,\"status\":1,\"voltage\":26.081001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.081001},{\"current\":0.25,\"status\":1,\"voltage\":26.313002},{\"current\":0.003,\"status\":1,\"voltage\":26.313002},{\"current\":0.41400003,\"status\":1,\"voltage\":26.313002},{\"current\":0.314,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301791\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884373", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:29", + "echoMap": {}, + "deviceId": "1015030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"13687290\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"764299699\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"13687295\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:bd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.33900002,\"status\":1,\"voltage\":26.585001},{\"current\":0.259,\"status\":1,\"voltage\":26.585001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.585001},{\"current\":0.0,\"status\":1,\"voltage\":26.585001},{\"current\":0.532,\"status\":1,\"voltage\":26.585001},{\"current\":0.37100002,\"status\":1,\"voltage\":26.585001},{\"current\":0.363,\"status\":1,\"voltage\":26.585001},{\"current\":0.36400002,\"status\":1,\"voltage\":26.585001},{\"current\":0.404,\"status\":1,\"voltage\":26.585001},{\"current\":0.30200002,\"status\":1,\"voltage\":26.969002},{\"current\":0.003,\"status\":1,\"voltage\":26.969002},{\"current\":0.272,\"status\":1,\"voltage\":26.969002},{\"current\":0.45700002,\"status\":1,\"voltage\":26.969002},{\"current\":0.001,\"status\":1,\"voltage\":26.969002},{\"current\":0.001,\"status\":1,\"voltage\":26.969002},{\"current\":0.001,\"status\":1,\"voltage\":26.969002}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301916\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884374", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "deviceId": "1015030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"13684686\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"764152254\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"13684691\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:2d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.33,\"status\":1,\"voltage\":26.432001},{\"current\":0.365,\"status\":1,\"voltage\":26.432001},{\"current\":0.42700002,\"status\":1,\"voltage\":26.432001},{\"current\":0.266,\"status\":1,\"voltage\":26.432001},{\"current\":0.27100003,\"status\":1,\"voltage\":26.432001},{\"current\":0.21900001,\"status\":1,\"voltage\":26.432001},{\"current\":0.512,\"status\":1,\"voltage\":26.432001},{\"current\":0.296,\"status\":1,\"voltage\":26.432001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.432001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.597002},{\"current\":0.002,\"status\":1,\"voltage\":26.597002},{\"current\":0.377,\"status\":1,\"voltage\":26.597002},{\"current\":0.388,\"status\":1,\"voltage\":26.597002},{\"current\":0.215,\"status\":1,\"voltage\":26.597002},{\"current\":0.001,\"status\":1,\"voltage\":26.597002},{\"current\":0.001,\"status\":1,\"voltage\":26.597002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302861\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884375", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:31", + "echoMap": {}, + "deviceId": "1015030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"13676668\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"763703673\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"13676673\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:89\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.468},{\"current\":0.266,\"status\":1,\"voltage\":26.468},{\"current\":0.282,\"status\":1,\"voltage\":26.468},{\"current\":0.32900003,\"status\":1,\"voltage\":26.468},{\"current\":0.319,\"status\":1,\"voltage\":26.468},{\"current\":0.28300002,\"status\":1,\"voltage\":26.468},{\"current\":0.25,\"status\":1,\"voltage\":26.468},{\"current\":0.50600004,\"status\":1,\"voltage\":26.468},{\"current\":0.24900001,\"status\":1,\"voltage\":26.468},{\"current\":0.24000001,\"status\":1,\"voltage\":26.894001},{\"current\":0.003,\"status\":1,\"voltage\":26.894001},{\"current\":0.29500002,\"status\":1,\"voltage\":26.894001},{\"current\":0.286,\"status\":1,\"voltage\":26.894001},{\"current\":0.293,\"status\":1,\"voltage\":26.894001},{\"current\":0.001,\"status\":1,\"voltage\":26.894001},{\"current\":0.001,\"status\":1,\"voltage\":26.894001}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302120\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884376", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1015030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"13658443\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"762682857\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"13658448\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:82\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23600002,\"status\":1,\"voltage\":26.487001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.487001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.487001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.487001},{\"current\":0.523,\"status\":1,\"voltage\":26.487001},{\"current\":0.26500002,\"status\":1,\"voltage\":26.487001},{\"current\":0.266,\"status\":1,\"voltage\":26.487001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.487001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.487001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.599},{\"current\":0.002,\"status\":1,\"voltage\":26.599},{\"current\":0.35200003,\"status\":1,\"voltage\":26.599},{\"current\":0.358,\"status\":1,\"voltage\":26.599},{\"current\":0.36800003,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301857\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884377", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1015030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6181084\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"344008570\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"256 days, 2:53:29.77\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6181089\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0a:e0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23400001,\"status\":1,\"voltage\":26.702002},{\"current\":0.34800002,\"status\":1,\"voltage\":26.702002},{\"current\":0.25,\"status\":1,\"voltage\":26.702002},{\"current\":0.001,\"status\":1,\"voltage\":26.702002},{\"current\":0.21400002,\"status\":1,\"voltage\":26.702002},{\"current\":0.001,\"status\":1,\"voltage\":26.702002},{\"current\":0.23900001,\"status\":1,\"voltage\":26.702002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.702002},{\"current\":0.23300001,\"status\":1,\"voltage\":26.702002},{\"current\":0.001,\"status\":1,\"voltage\":26.531002},{\"current\":0.002,\"status\":1,\"voltage\":26.531002},{\"current\":0.001,\"status\":1,\"voltage\":26.531002},{\"current\":0.001,\"status\":1,\"voltage\":26.531002},{\"current\":0.001,\"status\":1,\"voltage\":26.531002},{\"current\":0.001,\"status\":1,\"voltage\":26.531002},{\"current\":0.001,\"status\":1,\"voltage\":26.531002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302784\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884378", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1015030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12790736\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"714024191\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12790741\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:7b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.827002},{\"current\":0.23700002,\"status\":1,\"voltage\":26.827002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.827002},{\"current\":0.001,\"status\":1,\"voltage\":26.810001},{\"current\":0.002,\"status\":1,\"voltage\":26.810001},{\"current\":0.001,\"status\":1,\"voltage\":26.810001},{\"current\":0.001,\"status\":1,\"voltage\":26.810001},{\"current\":0.001,\"status\":1,\"voltage\":26.810001},{\"current\":0.001,\"status\":1,\"voltage\":26.810001},{\"current\":0.001,\"status\":1,\"voltage\":26.810001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303195\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884379", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1015030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12788194\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"713882442\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12788199\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:a9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23200001,\"status\":1,\"voltage\":26.492},{\"current\":0.261,\"status\":1,\"voltage\":26.492},{\"current\":0.256,\"status\":1,\"voltage\":26.492},{\"current\":0.23300001,\"status\":1,\"voltage\":26.492},{\"current\":0.24800001,\"status\":1,\"voltage\":26.492},{\"current\":0.535,\"status\":1,\"voltage\":26.492},{\"current\":0.202,\"status\":1,\"voltage\":26.492},{\"current\":0.52500004,\"status\":1,\"voltage\":26.492},{\"current\":0.25100002,\"status\":1,\"voltage\":26.492},{\"current\":0.23600002,\"status\":1,\"voltage\":26.532001},{\"current\":0.002,\"status\":1,\"voltage\":26.532001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.532001},{\"current\":0.28300002,\"status\":1,\"voltage\":26.532001},{\"current\":0.001,\"status\":1,\"voltage\":26.532001},{\"current\":0.001,\"status\":1,\"voltage\":26.532001},{\"current\":0.001,\"status\":1,\"voltage\":26.532001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302152\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884380", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:34", + "echoMap": {}, + "deviceId": "1015030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12789256\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"713942663\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12789261\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:99\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.284,\"status\":1,\"voltage\":26.263},{\"current\":0.272,\"status\":1,\"voltage\":26.263},{\"current\":0.23900001,\"status\":1,\"voltage\":26.263},{\"current\":0.245,\"status\":1,\"voltage\":26.263},{\"current\":0.51100004,\"status\":1,\"voltage\":26.263},{\"current\":0.23300001,\"status\":1,\"voltage\":26.263},{\"current\":0.53000003,\"status\":1,\"voltage\":26.263},{\"current\":0.24200001,\"status\":1,\"voltage\":26.263},{\"current\":0.224,\"status\":1,\"voltage\":26.263},{\"current\":0.25100002,\"status\":1,\"voltage\":27.029001},{\"current\":0.003,\"status\":1,\"voltage\":27.029001},{\"current\":0.25500003,\"status\":1,\"voltage\":27.029001},{\"current\":0.23600002,\"status\":1,\"voltage\":27.029001},{\"current\":0.001,\"status\":1,\"voltage\":27.029001},{\"current\":0.001,\"status\":1,\"voltage\":27.029001},{\"current\":0.001,\"status\":1,\"voltage\":27.029001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303225\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884381", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:34", + "echoMap": {}, + "deviceId": "1015030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12788979\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"713925827\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12788984\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:ba\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":1,\"voltage\":25.711},{\"current\":0.555,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":1,\"voltage\":25.711},{\"current\":0.001,\"status\":0,\"voltage\":25.711},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302337\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884382", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:35", + "echoMap": {}, + "deviceId": "1015030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12788453\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"713897889\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12788458\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:6e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.555,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":1,\"voltage\":25.962002},{\"current\":0.001,\"status\":0,\"voltage\":25.962002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302340\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884383", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:35", + "echoMap": {}, + "deviceId": "1015030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12788197\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"713885213\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12788202\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:10\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.55600005,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":0,\"voltage\":25.868002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302339\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589888507992884384", + "createdBy": "0", + "createdTime": "2025-02-24 14:45:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:36", + "echoMap": {}, + "deviceId": "1015030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"12788016\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"713872173\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12788021\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:15:36\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.743002},{\"current\":0.001,\"status\":1,\"voltage\":25.743002},{\"current\":0.549,\"status\":1,\"voltage\":25.743002},{\"current\":0.001,\"status\":1,\"voltage\":25.743002},{\"current\":0.0,\"status\":1,\"voltage\":25.743002},{\"current\":0.0,\"status\":1,\"voltage\":25.743002},{\"current\":0.0,\"status\":1,\"voltage\":25.743002},{\"current\":0.0,\"status\":1,\"voltage\":25.743002},{\"current\":0.0,\"status\":0,\"voltage\":25.743002},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302341\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "691388253175269633", + "createdBy": null, + "createdTime": "2025-10-23 08:57:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:44", + "echoMap": {}, + "deviceId": null, + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.158.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "704531029194703885", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:15", + "echoMap": {}, + "deviceId": "1015040017", + "name": "H3C前端交换机16", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"19839\",\"inUnknownProtos\":\"2706812636\",\"index\":\"634\",\"lastChange\":\"0:01:40.83\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:ac:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"759914367\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"4251975\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.146\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":388567,\"inBytes\":37495276,\"inFlow\":379142,\"lastChangeTime\":\"0:01:40.82\",\"lastInBytes\":37495276,\"lastOutBytes\":2202860957,\"outBytes\":2202860957,\"outFlow\":9424,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":419537,\"inBytes\":1744110127,\"inFlow\":410196,\"lastChangeTime\":\"0:01:40.96\",\"lastInBytes\":1744110127,\"lastOutBytes\":233975121,\"outBytes\":233975121,\"outFlow\":9341,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":444667,\"inBytes\":1758550389,\"inFlow\":435446,\"lastChangeTime\":\"0:01:41.76\",\"lastInBytes\":1758550389,\"lastOutBytes\":2943109159,\"outBytes\":2943109159,\"outFlow\":9220,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":420238,\"inBytes\":1558505939,\"inFlow\":410112,\"lastChangeTime\":\"0:01:41.20\",\"lastInBytes\":1558505939,\"lastOutBytes\":2360582349,\"outBytes\":2360582349,\"outFlow\":10126,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":421144,\"inBytes\":2819797395,\"inFlow\":410999,\"lastChangeTime\":\"0:01:41.29\",\"lastInBytes\":2819797395,\"lastOutBytes\":2706812636,\"outBytes\":2706812636,\"outFlow\":10144,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":420357,\"inBytes\":3188592005,\"inFlow\":410264,\"lastChangeTime\":\"0:01:41.36\",\"lastInBytes\":3188592005,\"lastOutBytes\":3027328097,\"outBytes\":3027328097,\"outFlow\":10092,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":420137,\"inBytes\":3087380899,\"inFlow\":409894,\"lastChangeTime\":\"0:01:41.84\",\"lastInBytes\":3087380899,\"lastOutBytes\":3137457687,\"outBytes\":3137457687,\"outFlow\":10243,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":418420,\"inBytes\":2747422889,\"inFlow\":408318,\"lastChangeTime\":\"0:01:41.62\",\"lastInBytes\":2747422889,\"lastOutBytes\":2848453454,\"outBytes\":2848453454,\"outFlow\":10101,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":388026,\"inBytes\":2503709868,\"inFlow\":378774,\"lastChangeTime\":\"0:01:41.84\",\"lastInBytes\":2503709868,\"lastOutBytes\":2138707036,\"outBytes\":2138707036,\"outFlow\":9251,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":388788,\"inBytes\":3937599110,\"inFlow\":379369,\"lastChangeTime\":\"0:01:41.84\",\"lastInBytes\":3937599110,\"lastOutBytes\":2946374773,\"outBytes\":2946374773,\"outFlow\":9418,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":388053,\"inBytes\":2300404686,\"inFlow\":378704,\"lastChangeTime\":\"0:01:41.99\",\"lastInBytes\":2300404686,\"lastOutBytes\":2637071391,\"outBytes\":2637071391,\"outFlow\":9348,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:42.34\",\"lastInBytes\":0,\"lastOutBytes\":521830717,\"outBytes\":521830717,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4676599,\"inBytes\":922389683,\"inFlow\":117297,\"lastChangeTime\":\"11 days, 9:04:48.11\",\"lastInBytes\":922389683,\"lastOutBytes\":2183019576,\"outBytes\":2183019576,\"outFlow\":4559301,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:11.586886000\"}}", + "lastDiagTime": "2026-02-02 14:37:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703886", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:07", + "echoMap": {}, + "deviceId": "1015040016", + "name": "H3C前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif158\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:80\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:07\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406743,\"inBytes\":3777671319,\"inFlow\":397654,\"lastChangeTime\":\"29 days, 12:02:27.14\",\"lastInBytes\":3777671319,\"lastOutBytes\":1464171039,\"outBytes\":1464171039,\"outFlow\":9089,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":99,\"inBytes\":1266762586,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1266762586,\"lastOutBytes\":366721994,\"outBytes\":366721994,\"outFlow\":98,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409849,\"inBytes\":1096048871,\"inFlow\":10527,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1096048871,\"lastOutBytes\":3247130352,\"outBytes\":3247130352,\"outFlow\":399321,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:36.594409000\"}}", + "lastDiagTime": "2026-02-02 14:39:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703887", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:12", + "echoMap": {}, + "deviceId": "1015040015", + "name": "H3C前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif158\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:7f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406814,\"inBytes\":173917369,\"inFlow\":397589,\"lastChangeTime\":\"29 days, 12:03:12.27\",\"lastInBytes\":173917369,\"lastOutBytes\":844034773,\"outBytes\":844034773,\"outFlow\":9225,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":221,\"inBytes\":1266638568,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1266638568,\"lastOutBytes\":364899899,\"outBytes\":364899899,\"outFlow\":220,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":403750,\"inBytes\":508828751,\"inFlow\":10674,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":508828751,\"lastOutBytes\":3760184846,\"outBytes\":3760184846,\"outFlow\":393075,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:37.544232000\"}}", + "lastDiagTime": "2026-02-02 14:39:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703888", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:07", + "echoMap": {}, + "deviceId": "1015040014", + "name": "H3C前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif158\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:06\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":404153,\"inBytes\":1859260882,\"inFlow\":395004,\"lastChangeTime\":\"29 days, 12:02:50.40\",\"lastInBytes\":1859260882,\"lastOutBytes\":2409596918,\"outBytes\":2409596918,\"outFlow\":9148,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":222,\"inBytes\":1266662260,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1266662260,\"lastOutBytes\":364355808,\"outBytes\":364355808,\"outFlow\":220,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407260,\"inBytes\":3014910784,\"inFlow\":10555,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3014910784,\"lastOutBytes\":752433279,\"outBytes\":752433279,\"outFlow\":396704,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:36.528250000\"}}", + "lastDiagTime": "2026-02-02 14:39:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703889", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:18", + "echoMap": {}, + "deviceId": "1015040013", + "name": "H3C前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif158\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:89\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:17\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":455743,\"inBytes\":2811060055,\"inFlow\":444839,\"lastChangeTime\":\"29 days, 12:02:54.11\",\"lastInBytes\":2811060055,\"lastOutBytes\":3097083871,\"outBytes\":3097083871,\"outFlow\":10903,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":223,\"inBytes\":1266712350,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1266712350,\"lastOutBytes\":367943200,\"outBytes\":367943200,\"outFlow\":222,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":484417,\"inBytes\":1580428231,\"inFlow\":12258,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1580428231,\"lastOutBytes\":3851429728,\"outBytes\":3851429728,\"outFlow\":472158,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:38.372176000\"}}", + "lastDiagTime": "2026-02-02 14:39:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703890", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1015040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"130532\",\"inUnknownProtos\":\"845112022\",\"index\":\"635\",\"lastChange\":\"0:01:18.47\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f2:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1899619069\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27276748\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":832605,\"inBytes\":4126476,\"inFlow\":811946,\"lastChangeTime\":\"341 days, 0:14:55.64\",\"lastInBytes\":4126476,\"lastOutBytes\":244391176,\"outBytes\":244391176,\"outFlow\":20658,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":836491,\"inBytes\":3883283687,\"inFlow\":815075,\"lastChangeTime\":\"341 days, 0:15:00.57\",\"lastInBytes\":3883283687,\"lastOutBytes\":3956182570,\"outBytes\":3956182570,\"outFlow\":21416,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":834688,\"inBytes\":3520446227,\"inFlow\":813328,\"lastChangeTime\":\"341 days, 0:14:58.47\",\"lastInBytes\":3520446227,\"lastOutBytes\":1938265145,\"outBytes\":1938265145,\"outFlow\":21360,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":902455,\"inBytes\":4237694111,\"inFlow\":880700,\"lastChangeTime\":\"124 days, 18:48:04.42\",\"lastInBytes\":4237694111,\"lastOutBytes\":3109192983,\"outBytes\":3109192983,\"outFlow\":21754,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":521190,\"inBytes\":1521937594,\"inFlow\":508713,\"lastChangeTime\":\"180 days, 14:08:16.18\",\"lastInBytes\":1521937594,\"lastOutBytes\":383501830,\"outBytes\":383501830,\"outFlow\":12477,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":416498,\"inBytes\":593501043,\"inFlow\":406535,\"lastChangeTime\":\"189 days, 13:17:52.40\",\"lastInBytes\":593501043,\"lastOutBytes\":845112022,\"outBytes\":845112022,\"outFlow\":9963,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416700,\"inBytes\":2564239658,\"inFlow\":406819,\"lastChangeTime\":\"189 days, 13:17:34.62\",\"lastInBytes\":2564239658,\"lastOutBytes\":2729406782,\"outBytes\":2729406782,\"outFlow\":9880,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1125431,\"inBytes\":2626989286,\"inFlow\":1099350,\"lastChangeTime\":\"29 days, 12:08:21.38\",\"lastInBytes\":2626989286,\"lastOutBytes\":3926361390,\"outBytes\":3926361390,\"outFlow\":26080,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":384212,\"inBytes\":1400484748,\"inFlow\":375016,\"lastChangeTime\":\"189 days, 13:17:54.22\",\"lastInBytes\":1400484748,\"lastOutBytes\":1220804435,\"outBytes\":1220804435,\"outFlow\":9196,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":838081,\"inBytes\":469590901,\"inFlow\":816829,\"lastChangeTime\":\"341 days, 0:14:57.13\",\"lastInBytes\":469590901,\"lastOutBytes\":984720651,\"outBytes\":984720651,\"outFlow\":21252,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":838001,\"inBytes\":2558039721,\"inFlow\":816600,\"lastChangeTime\":\"341 days, 0:14:56.48\",\"lastInBytes\":2558039721,\"lastOutBytes\":827146945,\"outBytes\":827146945,\"outFlow\":21400,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":834296,\"inBytes\":4070067253,\"inFlow\":813186,\"lastChangeTime\":\"341 days, 0:15:07.96\",\"lastInBytes\":4070067253,\"lastOutBytes\":2856057118,\"outBytes\":2856057118,\"outFlow\":21109,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":347,\"inBytes\":1318674796,\"inFlow\":134,\"lastChangeTime\":\"0:01:18.77\",\"lastInBytes\":1318674796,\"lastOutBytes\":305824450,\"outBytes\":305824450,\"outFlow\":213,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9279536,\"inBytes\":2127932335,\"inFlow\":240838,\"lastChangeTime\":\"0:02:12.37\",\"lastInBytes\":2127932335,\"lastOutBytes\":3287640771,\"outBytes\":3287640771,\"outFlow\":9038698,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.705634000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703891", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1015040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"4\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"523782\",\"inUnknownProtos\":\"2265435767\",\"index\":\"635\",\"lastChange\":\"0:01:22.22\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:73:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"899872791\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27305101\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":905830,\"inBytes\":637991375,\"inFlow\":882479,\"lastChangeTime\":\"408 days, 2:46:05.98\",\"lastInBytes\":637991375,\"lastOutBytes\":2754579197,\"outBytes\":2754579197,\"outFlow\":23351,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":907730,\"inBytes\":3979152292,\"inFlow\":884330,\"lastChangeTime\":\"364 days, 13:19:02.99\",\"lastInBytes\":3979152292,\"lastOutBytes\":3216187568,\"outBytes\":3216187568,\"outFlow\":23399,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":905306,\"inBytes\":579012526,\"inFlow\":882098,\"lastChangeTime\":\"341 days, 0:14:27.63\",\"lastInBytes\":579012526,\"lastOutBytes\":522894009,\"outBytes\":522894009,\"outFlow\":23207,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":417084,\"inBytes\":2275361396,\"inFlow\":406477,\"lastChangeTime\":\"200 days, 15:21:08.66\",\"lastInBytes\":2275361396,\"lastOutBytes\":2026496615,\"outBytes\":2026496615,\"outFlow\":10606,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":417186,\"inBytes\":22001445,\"inFlow\":406573,\"lastChangeTime\":\"200 days, 15:21:13.81\",\"lastInBytes\":22001445,\"lastOutBytes\":1467284380,\"outBytes\":1467284380,\"outFlow\":10612,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":427307,\"inBytes\":527080812,\"inFlow\":416379,\"lastChangeTime\":\"272 days, 19:44:57.09\",\"lastInBytes\":527080812,\"lastOutBytes\":2265435767,\"outBytes\":2265435767,\"outFlow\":10927,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":278903,\"inBytes\":300957929,\"inFlow\":271413,\"lastChangeTime\":\"200 days, 15:13:49.27\",\"lastInBytes\":300957929,\"lastOutBytes\":3940297272,\"outBytes\":3940297272,\"outFlow\":7489,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":415987,\"inBytes\":3327489529,\"inFlow\":406011,\"lastChangeTime\":\"159 days, 9:52:52.24\",\"lastInBytes\":3327489529,\"lastOutBytes\":3126637562,\"outBytes\":3126637562,\"outFlow\":9975,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":418897,\"inBytes\":177958713,\"inFlow\":408523,\"lastChangeTime\":\"417 days, 12:48:23.28\",\"lastInBytes\":177958713,\"lastOutBytes\":3052167914,\"outBytes\":3052167914,\"outFlow\":10373,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":906799,\"inBytes\":3362744554,\"inFlow\":884175,\"lastChangeTime\":\"341 days, 0:14:32.94\",\"lastInBytes\":3362744554,\"lastOutBytes\":1424628928,\"outBytes\":1424628928,\"outFlow\":22624,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":906340,\"inBytes\":2562599966,\"inFlow\":883579,\"lastChangeTime\":\"341 days, 0:14:25.93\",\"lastInBytes\":2562599966,\"lastOutBytes\":30245152,\"outBytes\":30245152,\"outFlow\":22760,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":904347,\"inBytes\":3025493200,\"inFlow\":881644,\"lastChangeTime\":\"341 days, 0:14:31.15\",\"lastInBytes\":3025493200,\"lastOutBytes\":3181680441,\"outBytes\":3181680441,\"outFlow\":22703,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":73127,\"inFlow\":0,\"lastChangeTime\":\"159 days, 9:52:07.26\",\"lastInBytes\":73127,\"lastOutBytes\":157739,\"outBytes\":157739,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":891869,\"inFlow\":0,\"lastChangeTime\":\"1 day, 1:11:58.59\",\"lastInBytes\":891869,\"lastOutBytes\":95648788,\"outBytes\":95648788,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":104,\"inBytes\":1318550147,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.22\",\"lastInBytes\":1318550147,\"lastOutBytes\":327238486,\"outBytes\":327238486,\"outFlow\":102,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7846155,\"inBytes\":899076985,\"inFlow\":204841,\"lastChangeTime\":\"159 days, 12:34:04.09\",\"lastInBytes\":899076985,\"lastOutBytes\":1233232135,\"outBytes\":1233232135,\"outFlow\":7641314,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:11.699986000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703892", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:15", + "echoMap": {}, + "deviceId": "1015040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189340\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:16.31\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:70:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:14\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":257156,\"inBytes\":3134151574,\"inFlow\":250431,\"lastChangeTime\":\"29 days, 12:01:53.45\",\"lastInBytes\":3134151574,\"lastOutBytes\":1487278630,\"outBytes\":1487278630,\"outFlow\":6724,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":385146,\"inBytes\":2437538992,\"inFlow\":375321,\"lastChangeTime\":\"124 days, 18:47:53.70\",\"lastInBytes\":2437538992,\"lastOutBytes\":2962980928,\"outBytes\":2962980928,\"outFlow\":9824,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":880983,\"inFlow\":0,\"lastChangeTime\":\"103 days, 0:27:08.36\",\"lastInBytes\":880983,\"lastOutBytes\":60265253,\"outBytes\":60265253,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":1318812212,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.31\",\"lastInBytes\":1318812212,\"lastOutBytes\":344258170,\"outBytes\":344258170,\"outFlow\":87,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":699318,\"inBytes\":3776218096,\"inFlow\":18857,\"lastChangeTime\":\"103 days, 0:24:24.56\",\"lastInBytes\":3776218096,\"lastOutBytes\":37349930,\"outBytes\":37349930,\"outFlow\":680460,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:11.656070000\"}}", + "lastDiagTime": "2026-02-02 14:37:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703893", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1015040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189952\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:27.58\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:69:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27276640\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":259642,\"inBytes\":2369334939,\"inFlow\":252650,\"lastChangeTime\":\"0:01:27.36\",\"lastInBytes\":2369334939,\"lastOutBytes\":3232914677,\"outBytes\":3232914677,\"outFlow\":6992,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":259656,\"inBytes\":2508737566,\"inFlow\":252840,\"lastChangeTime\":\"0:01:27.56\",\"lastInBytes\":2508737566,\"lastOutBytes\":3252792876,\"outBytes\":3252792876,\"outFlow\":6815,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":259587,\"inBytes\":286039838,\"inFlow\":252656,\"lastChangeTime\":\"0:01:27.57\",\"lastInBytes\":286039838,\"lastOutBytes\":1715906801,\"outBytes\":1715906801,\"outFlow\":6931,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":259532,\"inBytes\":2599968174,\"inFlow\":252482,\"lastChangeTime\":\"0:01:27.93\",\"lastInBytes\":2599968174,\"lastOutBytes\":1083898045,\"outBytes\":1083898045,\"outFlow\":7049,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":259101,\"inBytes\":290543325,\"inFlow\":252709,\"lastChangeTime\":\"103 days, 0:44:19.88\",\"lastInBytes\":290543325,\"lastOutBytes\":2214142472,\"outBytes\":2214142472,\"outFlow\":6392,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":258956,\"inBytes\":306665912,\"inFlow\":252544,\"lastChangeTime\":\"103 days, 0:44:25.23\",\"lastInBytes\":306665912,\"lastOutBytes\":1758826386,\"outBytes\":1758826386,\"outFlow\":6411,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":280840,\"inBytes\":1400465029,\"inFlow\":273749,\"lastChangeTime\":\"103 days, 0:44:29.62\",\"lastInBytes\":1400465029,\"lastOutBytes\":3682885052,\"outBytes\":3682885052,\"outFlow\":7090,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":259156,\"inBytes\":3670018305,\"inFlow\":252428,\"lastChangeTime\":\"103 days, 0:37:58.36\",\"lastInBytes\":3670018305,\"lastOutBytes\":235205529,\"outBytes\":235205529,\"outFlow\":6727,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5174930,\"inFlow\":0,\"lastChangeTime\":\"159 days, 8:40:22.59\",\"lastInBytes\":5174930,\"lastOutBytes\":48633667,\"outBytes\":48633667,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":450174,\"inFlow\":0,\"lastChangeTime\":\"103 days, 0:37:14.52\",\"lastInBytes\":450174,\"lastOutBytes\":15449826,\"outBytes\":15449826,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":702154816,\"inFlow\":1,\"lastChangeTime\":\"368 days, 7:19:56.23\",\"lastInBytes\":702154816,\"lastOutBytes\":2487174089,\"outBytes\":2487174089,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2256232,\"inBytes\":800865180,\"inFlow\":59178,\"lastChangeTime\":\"103 days, 0:52:02.42\",\"lastInBytes\":800865180,\"lastOutBytes\":3918784223,\"outBytes\":3918784223,\"outFlow\":2197054,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:11.584281000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703894", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1015040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189284\",\"inUnknownProtos\":\"2754692710\",\"index\":\"635\",\"lastChange\":\"0:01:15.90\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:68:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"968540690\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"289599008\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":417342,\"inBytes\":1171697249,\"inFlow\":406629,\"lastChangeTime\":\"341 days, 0:14:48.19\",\"lastInBytes\":1171697249,\"lastOutBytes\":1726728731,\"outBytes\":1726728731,\"outFlow\":10713,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416878,\"inBytes\":1428528599,\"inFlow\":406267,\"lastChangeTime\":\"341 days, 0:14:37.24\",\"lastInBytes\":1428528599,\"lastOutBytes\":1585339699,\"outBytes\":1585339699,\"outFlow\":10610,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":385226,\"inBytes\":489568898,\"inFlow\":375355,\"lastChangeTime\":\"341 days, 0:14:36.78\",\"lastInBytes\":489568898,\"lastOutBytes\":3709908513,\"outBytes\":3709908513,\"outFlow\":9870,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":384984,\"inBytes\":1094747491,\"inFlow\":375256,\"lastChangeTime\":\"341 days, 0:14:36.46\",\"lastInBytes\":1094747491,\"lastOutBytes\":535773024,\"outBytes\":535773024,\"outFlow\":9727,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":384603,\"inBytes\":2472060741,\"inFlow\":374935,\"lastChangeTime\":\"29 days, 12:08:33.94\",\"lastInBytes\":2472060741,\"lastOutBytes\":3542315503,\"outBytes\":3542315503,\"outFlow\":9668,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":385328,\"inBytes\":2808347086,\"inFlow\":375475,\"lastChangeTime\":\"341 days, 0:14:48.52\",\"lastInBytes\":2808347086,\"lastOutBytes\":2754591085,\"outBytes\":2754591085,\"outFlow\":9852,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":385169,\"inBytes\":1953090972,\"inFlow\":375365,\"lastChangeTime\":\"341 days, 0:14:33.48\",\"lastInBytes\":1953090972,\"lastOutBytes\":3095264548,\"outBytes\":3095264548,\"outFlow\":9803,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":385077,\"inBytes\":1191804225,\"inFlow\":375172,\"lastChangeTime\":\"124 days, 18:47:58.46\",\"lastInBytes\":1191804225,\"lastOutBytes\":1237410001,\"outBytes\":1237410001,\"outFlow\":9905,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":417129,\"inBytes\":3692780323,\"inFlow\":406497,\"lastChangeTime\":\"124 days, 18:47:58.42\",\"lastInBytes\":3692780323,\"lastOutBytes\":35828976,\"outBytes\":35828976,\"outFlow\":10632,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":417211,\"inBytes\":3531295183,\"inFlow\":406527,\"lastChangeTime\":\"124 days, 18:47:57.94\",\"lastInBytes\":3531295183,\"lastOutBytes\":2978522770,\"outBytes\":2978522770,\"outFlow\":10684,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":416090,\"inBytes\":2213773143,\"inFlow\":406246,\"lastChangeTime\":\"61 days, 16:36:51.75\",\"lastInBytes\":2213773143,\"lastOutBytes\":20536576,\"outBytes\":20536576,\"outFlow\":9843,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":417027,\"inBytes\":3445775215,\"inFlow\":407170,\"lastChangeTime\":\"61 days, 16:36:45.56\",\"lastInBytes\":3445775215,\"lastOutBytes\":1707251,\"outBytes\":1707251,\"outFlow\":9856,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":417378,\"inBytes\":1650324590,\"inFlow\":407320,\"lastChangeTime\":\"61 days, 16:36:46.40\",\"lastInBytes\":1650324590,\"lastOutBytes\":3366684612,\"outBytes\":3366684612,\"outFlow\":10058,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":352,\"inBytes\":1407397740,\"inFlow\":134,\"lastChangeTime\":\"0:01:15.89\",\"lastInBytes\":1407397740,\"lastOutBytes\":430273452,\"outBytes\":430273452,\"outFlow\":218,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5023495,\"inBytes\":1291987516,\"inFlow\":125440,\"lastChangeTime\":\"0:02:12.37\",\"lastInBytes\":1291987516,\"lastOutBytes\":520963261,\"outBytes\":520963261,\"outFlow\":4898055,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.684610000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703895", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1015040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"3\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"20\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"5265375\",\"inUnknownProtos\":\"721164564\",\"index\":\"635\",\"lastChange\":\"102 days, 23:41:13.10\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:57:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1081254105\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"289582873\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":384855,\"inBytes\":1668026816,\"inFlow\":375144,\"lastChangeTime\":\"124 days, 18:47:53.67\",\"lastInBytes\":1668026816,\"lastOutBytes\":972113257,\"outBytes\":972113257,\"outFlow\":9711,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":417142,\"inBytes\":3879932506,\"inFlow\":406569,\"lastChangeTime\":\"415 days, 14:19:27.49\",\"lastInBytes\":3879932506,\"lastOutBytes\":439966779,\"outBytes\":439966779,\"outFlow\":10572,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":935248,\"inBytes\":4134792141,\"inFlow\":909585,\"lastChangeTime\":\"124 days, 18:47:51.79\",\"lastInBytes\":4134792141,\"lastOutBytes\":1881684221,\"outBytes\":1881684221,\"outFlow\":25662,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":415047,\"inBytes\":466649508,\"inFlow\":405172,\"lastChangeTime\":\"391 days, 18:06:36.62\",\"lastInBytes\":466649508,\"lastOutBytes\":2860373690,\"outBytes\":2860373690,\"outFlow\":9874,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":417261,\"inBytes\":2990459269,\"inFlow\":407583,\"lastChangeTime\":\"61 days, 16:36:51.25\",\"lastInBytes\":2990459269,\"lastOutBytes\":1689618018,\"outBytes\":1689618018,\"outFlow\":9678,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418769,\"inBytes\":3138093305,\"inFlow\":407866,\"lastChangeTime\":\"61 days, 16:36:58.47\",\"lastInBytes\":3138093305,\"lastOutBytes\":721164564,\"outBytes\":721164564,\"outFlow\":10903,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":417266,\"inBytes\":3281697390,\"inFlow\":406682,\"lastChangeTime\":\"417 days, 10:41:16.60\",\"lastInBytes\":3281697390,\"lastOutBytes\":1050030366,\"outBytes\":1050030366,\"outFlow\":10583,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":416574,\"inBytes\":2689358971,\"inFlow\":406082,\"lastChangeTime\":\"114 days, 17:25:13.71\",\"lastInBytes\":2689358971,\"lastOutBytes\":4039276458,\"outBytes\":4039276458,\"outFlow\":10491,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":385234,\"inBytes\":2127125534,\"inFlow\":375424,\"lastChangeTime\":\"124 days, 18:47:53.75\",\"lastInBytes\":2127125534,\"lastOutBytes\":584347488,\"outBytes\":584347488,\"outFlow\":9810,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":384747,\"inBytes\":2118968934,\"inFlow\":374983,\"lastChangeTime\":\"124 days, 18:47:55.00\",\"lastInBytes\":2118968934,\"lastOutBytes\":2342780699,\"outBytes\":2342780699,\"outFlow\":9764,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":387017,\"inBytes\":1165906005,\"inFlow\":376724,\"lastChangeTime\":\"124 days, 18:47:53.63\",\"lastInBytes\":1165906005,\"lastOutBytes\":4114304542,\"outBytes\":4114304542,\"outFlow\":10293,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":386186,\"inBytes\":3401278821,\"inFlow\":375920,\"lastChangeTime\":\"124 days, 18:47:52.02\",\"lastInBytes\":3401278821,\"lastOutBytes\":2345341208,\"outBytes\":2345341208,\"outFlow\":10266,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":384815,\"inBytes\":617307633,\"inFlow\":375069,\"lastChangeTime\":\"124 days, 18:47:55.77\",\"lastInBytes\":617307633,\"lastOutBytes\":2876493396,\"outBytes\":2876493396,\"outFlow\":9746,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":31883,\"inFlow\":0,\"lastChangeTime\":\"102 days, 23:52:57.77\",\"lastInBytes\":31883,\"lastOutBytes\":2022570,\"outBytes\":2022570,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":346,\"inBytes\":1409263418,\"inFlow\":134,\"lastChangeTime\":\"102 days, 23:41:13.10\",\"lastInBytes\":1409263418,\"lastOutBytes\":429877999,\"outBytes\":429877999,\"outFlow\":212,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5961059,\"inBytes\":1284114437,\"inFlow\":152670,\"lastChangeTime\":\"102 days, 23:53:02.61\",\"lastInBytes\":1284114437,\"lastOutBytes\":2890963875,\"outBytes\":2890963875,\"outFlow\":5808389,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.633291000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703896", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:15", + "echoMap": {}, + "deviceId": "1015040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"4\",\"0\",\"0\",\"1\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189357\",\"inUnknownProtos\":\"2999463991\",\"index\":\"635\",\"lastChange\":\"0:01:22.53\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:67:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"785693548\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"289597538\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:14\",\"info\":{\"portInfoList\":[{\"flow\":1164380,\"inBytes\":1381285439,\"inFlow\":1136908,\"lastChangeTime\":\"61 days, 16:36:46.38\",\"lastInBytes\":1381285439,\"lastOutBytes\":636451439,\"outBytes\":636451439,\"outFlow\":27472,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":557298,\"inBytes\":200303282,\"inFlow\":542829,\"lastChangeTime\":\"61 days, 16:36:54.19\",\"lastInBytes\":200303282,\"lastOutBytes\":3275026750,\"outBytes\":3275026750,\"outFlow\":14469,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":278567,\"inBytes\":2345251288,\"inFlow\":271160,\"lastChangeTime\":\"406 days, 10:04:40.57\",\"lastInBytes\":2345251288,\"lastOutBytes\":4262269474,\"outBytes\":4262269474,\"outFlow\":7407,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":417121,\"inBytes\":1861002213,\"inFlow\":406468,\"lastChangeTime\":\"124 days, 18:47:59.48\",\"lastInBytes\":1861002213,\"lastOutBytes\":2431300973,\"outBytes\":2431300973,\"outFlow\":10653,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":418267,\"inBytes\":3652925776,\"inFlow\":407646,\"lastChangeTime\":\"341 days, 0:14:55.17\",\"lastInBytes\":3652925776,\"lastOutBytes\":5350456,\"outBytes\":5350456,\"outFlow\":10620,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":417780,\"inBytes\":907503811,\"inFlow\":407026,\"lastChangeTime\":\"402 days, 17:30:29.77\",\"lastInBytes\":907503811,\"lastOutBytes\":2999463991,\"outBytes\":2999463991,\"outFlow\":10753,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1110548,\"inBytes\":2614572290,\"inFlow\":1083756,\"lastChangeTime\":\"29 days, 12:08:58.01\",\"lastInBytes\":2614572290,\"lastOutBytes\":260149483,\"outBytes\":260149483,\"outFlow\":26792,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":417800,\"inBytes\":3142220542,\"inFlow\":407185,\"lastChangeTime\":\"341 days, 0:15:01.06\",\"lastInBytes\":3142220542,\"lastOutBytes\":946188637,\"outBytes\":946188637,\"outFlow\":10615,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":418518,\"inBytes\":417651473,\"inFlow\":407656,\"lastChangeTime\":\"400 days, 14:02:52.43\",\"lastInBytes\":417651473,\"lastOutBytes\":3880097535,\"outBytes\":3880097535,\"outFlow\":10862,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":906099,\"inBytes\":839667814,\"inFlow\":883110,\"lastChangeTime\":\"341 days, 0:15:01.59\",\"lastInBytes\":839667814,\"lastOutBytes\":2413049799,\"outBytes\":2413049799,\"outFlow\":22989,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1167734,\"inBytes\":551695698,\"inFlow\":1138270,\"lastChangeTime\":\"61 days, 16:36:40.30\",\"lastInBytes\":551695698,\"lastOutBytes\":3854195310,\"outBytes\":3854195310,\"outFlow\":29463,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1304642,\"inBytes\":359906166,\"inFlow\":1274237,\"lastChangeTime\":\"61 days, 16:36:44.17\",\"lastInBytes\":359906166,\"lastOutBytes\":1862105088,\"outBytes\":1862105088,\"outFlow\":30405,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":278314,\"inBytes\":1455706135,\"inFlow\":270961,\"lastChangeTime\":\"29 days, 12:02:03.96\",\"lastInBytes\":1455706135,\"lastOutBytes\":3506691097,\"outBytes\":3506691097,\"outFlow\":7353,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2518876,\"inFlow\":0,\"lastChangeTime\":\"406 days, 9:53:41.07\",\"lastInBytes\":2518876,\"lastOutBytes\":184385276,\"outBytes\":184385276,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":102,\"inBytes\":1410163383,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.52\",\"lastInBytes\":1410163383,\"lastOutBytes\":432572530,\"outBytes\":432572530,\"outFlow\":100,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8956622,\"inBytes\":3925903332,\"inFlow\":226084,\"lastChangeTime\":\"0:02:12.38\",\"lastInBytes\":3925903332,\"lastOutBytes\":1171594022,\"outBytes\":1171594022,\"outFlow\":8730537,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:11.718480000\"}}", + "lastDiagTime": "2026-02-02 14:37:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703897", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:15", + "echoMap": {}, + "deviceId": "1015040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189121\",\"inUnknownProtos\":\"1130489462\",\"index\":\"635\",\"lastChange\":\"0:01:36.81\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b2:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1821731745\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"289595945\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:14\",\"info\":{\"portInfoList\":[{\"flow\":871901,\"inBytes\":3552576117,\"inFlow\":848109,\"lastChangeTime\":\"124 days, 18:47:58.77\",\"lastInBytes\":3552576117,\"lastOutBytes\":1598717084,\"outBytes\":1598717084,\"outFlow\":23792,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":388207,\"inBytes\":3049148871,\"inFlow\":378319,\"lastChangeTime\":\"124 days, 18:48:01.66\",\"lastInBytes\":3049148871,\"lastOutBytes\":3385831621,\"outBytes\":3385831621,\"outFlow\":9887,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":388231,\"inBytes\":3976886554,\"inFlow\":378348,\"lastChangeTime\":\"124 days, 18:47:58.73\",\"lastInBytes\":3976886554,\"lastOutBytes\":3955449444,\"outBytes\":3955449444,\"outFlow\":9882,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":388359,\"inBytes\":2206229867,\"inFlow\":378518,\"lastChangeTime\":\"124 days, 18:47:59.93\",\"lastInBytes\":2206229867,\"lastOutBytes\":1619966537,\"outBytes\":1619966537,\"outFlow\":9840,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1290033,\"inBytes\":3429174133,\"inFlow\":1260075,\"lastChangeTime\":\"272 days, 19:49:57.76\",\"lastInBytes\":3429174133,\"lastOutBytes\":184378772,\"outBytes\":184378772,\"outFlow\":29957,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":967993,\"inBytes\":393923596,\"inFlow\":942462,\"lastChangeTime\":\"61 days, 16:34:37.30\",\"lastInBytes\":393923596,\"lastOutBytes\":1130075038,\"outBytes\":1130075038,\"outFlow\":25531,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":790503,\"inBytes\":2308484610,\"inFlow\":770127,\"lastChangeTime\":\"61 days, 16:34:38.17\",\"lastInBytes\":2308484610,\"lastOutBytes\":1714203044,\"outBytes\":1714203044,\"outFlow\":20375,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":705645,\"inBytes\":1420552897,\"inFlow\":687836,\"lastChangeTime\":\"61 days, 16:34:37.27\",\"lastInBytes\":1420552897,\"lastOutBytes\":186498322,\"outBytes\":186498322,\"outFlow\":17809,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1082622,\"inBytes\":2261982970,\"inFlow\":1053393,\"lastChangeTime\":\"61 days, 16:34:35.85\",\"lastInBytes\":2261982970,\"lastOutBytes\":646374052,\"outBytes\":646374052,\"outFlow\":29229,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419970,\"inBytes\":1845160335,\"inFlow\":409380,\"lastChangeTime\":\"124 days, 18:48:00.19\",\"lastInBytes\":1845160335,\"lastOutBytes\":3309713403,\"outBytes\":3309713403,\"outFlow\":10590,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":420366,\"inBytes\":1496257962,\"inFlow\":409699,\"lastChangeTime\":\"413 days, 18:28:35.17\",\"lastInBytes\":1496257962,\"lastOutBytes\":295549394,\"outBytes\":295549394,\"outFlow\":10667,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1025515,\"inBytes\":3851049694,\"inFlow\":998473,\"lastChangeTime\":\"61 days, 16:34:37.76\",\"lastInBytes\":3851049694,\"lastOutBytes\":541487252,\"outBytes\":541487252,\"outFlow\":27042,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":1410325204,\"inFlow\":1,\"lastChangeTime\":\"0:01:36.80\",\"lastInBytes\":1410325204,\"lastOutBytes\":433246615,\"outBytes\":433246615,\"outFlow\":96,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8617662,\"inBytes\":1367933320,\"inFlow\":226665,\"lastChangeTime\":\"0:02:12.33\",\"lastInBytes\":1367933320,\"lastOutBytes\":1743378095,\"outBytes\":1743378095,\"outFlow\":8390997,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:11.585070000\"}}", + "lastDiagTime": "2026-02-02 14:37:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703898", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1015040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189387\",\"inUnknownProtos\":\"703407455\",\"index\":\"635\",\"lastChange\":\"0:01:28.75\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:78:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1585179556\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"289595840\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":571856,\"inBytes\":988898165,\"inFlow\":558357,\"lastChangeTime\":\"61 days, 16:34:39.20\",\"lastInBytes\":988898165,\"lastOutBytes\":2813060664,\"outBytes\":2813060664,\"outFlow\":13498,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":624533,\"inBytes\":406798244,\"inFlow\":610039,\"lastChangeTime\":\"406 days, 8:56:43.45\",\"lastInBytes\":406798244,\"lastOutBytes\":1209418480,\"outBytes\":1209418480,\"outFlow\":14494,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":480548,\"inBytes\":3447946377,\"inFlow\":468535,\"lastChangeTime\":\"29 days, 12:13:35.49\",\"lastInBytes\":3447946377,\"lastOutBytes\":1302292578,\"outBytes\":1302292578,\"outFlow\":12013,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414397,\"inBytes\":2949283630,\"inFlow\":404118,\"lastChangeTime\":\"61 days, 16:34:24.63\",\"lastInBytes\":2949283630,\"lastOutBytes\":4038427210,\"outBytes\":4038427210,\"outFlow\":10278,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418518,\"inBytes\":2825804476,\"inFlow\":408156,\"lastChangeTime\":\"61 days, 16:34:33.69\",\"lastInBytes\":2825804476,\"lastOutBytes\":2936940526,\"outBytes\":2936940526,\"outFlow\":10362,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":554412,\"inBytes\":2631229732,\"inFlow\":540927,\"lastChangeTime\":\"61 days, 16:34:44.07\",\"lastInBytes\":2631229732,\"lastOutBytes\":703407455,\"outBytes\":703407455,\"outFlow\":13484,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":633484,\"inBytes\":3107646668,\"inFlow\":618100,\"lastChangeTime\":\"61 days, 16:34:35.09\",\"lastInBytes\":3107646668,\"lastOutBytes\":1075330707,\"outBytes\":1075330707,\"outFlow\":15383,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":416629,\"inBytes\":2582434813,\"inFlow\":406846,\"lastChangeTime\":\"61 days, 16:34:39.34\",\"lastInBytes\":2582434813,\"lastOutBytes\":1212337344,\"outBytes\":1212337344,\"outFlow\":9782,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14865694,\"inBytes\":638821463,\"inFlow\":407531,\"lastChangeTime\":\"124 days, 18:47:56.38\",\"lastInBytes\":638821463,\"lastOutBytes\":1836186799,\"outBytes\":1836186799,\"outFlow\":14458162,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":384142,\"inBytes\":233078207,\"inFlow\":374419,\"lastChangeTime\":\"124 days, 18:47:56.20\",\"lastInBytes\":233078207,\"lastOutBytes\":3297053193,\"outBytes\":3297053193,\"outFlow\":9723,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":257217,\"inBytes\":3892785286,\"inFlow\":250443,\"lastChangeTime\":\"406 days, 8:50:17.04\",\"lastInBytes\":3892785286,\"lastOutBytes\":2392497740,\"outBytes\":2392497740,\"outFlow\":6774,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":382628,\"inBytes\":760052436,\"inFlow\":375005,\"lastChangeTime\":\"29 days, 12:23:18.05\",\"lastInBytes\":760052436,\"lastOutBytes\":1386549132,\"outBytes\":1386549132,\"outFlow\":7622,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2200259967,\"inFlow\":0,\"lastChangeTime\":\"383 days, 10:22:29.89\",\"lastInBytes\":2200259967,\"lastOutBytes\":1229882729,\"outBytes\":1229882729,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":11598709,\"inFlow\":0,\"lastChangeTime\":\"406 days, 9:25:33.19\",\"lastInBytes\":11598709,\"lastOutBytes\":516654966,\"outBytes\":516654966,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":353,\"inBytes\":1410580900,\"inFlow\":134,\"lastChangeTime\":\"1 day, 1:38:51.28\",\"lastInBytes\":1410580900,\"lastOutBytes\":431945736,\"outBytes\":431945736,\"outFlow\":219,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5631164,\"inBytes\":2810237548,\"inFlow\":136078,\"lastChangeTime\":\"1 day, 1:38:53.42\",\"lastInBytes\":2810237548,\"lastOutBytes\":1357848825,\"outBytes\":1357848825,\"outFlow\":5495086,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.621269000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703899", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1015040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"6\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"11807\",\"inUnknownProtos\":\"3783502687\",\"index\":\"634\",\"lastChange\":\"0:01:18.24\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:be:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"678134779\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"7860245\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":1774776181,\"inFlow\":0,\"lastChangeTime\":\"25 days, 10:43:59.69\",\"lastInBytes\":1774776181,\"lastOutBytes\":1582429274,\"outBytes\":1582429274,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":2},{\"flow\":383420,\"inBytes\":2737068101,\"inFlow\":374875,\"lastChangeTime\":\"35 days, 20:05:08.39\",\"lastInBytes\":2737068101,\"lastOutBytes\":314833579,\"outBytes\":314833579,\"outFlow\":8544,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1591898821,\"inFlow\":0,\"lastChangeTime\":\"25 days, 10:39:34.85\",\"lastInBytes\":1591898821,\"lastOutBytes\":1042105376,\"outBytes\":1042105376,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3113027911,\"inFlow\":0,\"lastChangeTime\":\"25 days, 10:40:22.26\",\"lastInBytes\":3113027911,\"lastOutBytes\":2284043090,\"outBytes\":2284043090,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":2},{\"flow\":384020,\"inBytes\":3108395393,\"inFlow\":375062,\"lastChangeTime\":\"0:30:40.33\",\"lastInBytes\":3108395393,\"lastOutBytes\":3783409043,\"outBytes\":3783409043,\"outFlow\":8957,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1373200770,\"inFlow\":0,\"lastChangeTime\":\"25 days, 10:41:01.93\",\"lastInBytes\":1373200770,\"lastOutBytes\":759219970,\"outBytes\":759219970,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3935974236,\"inFlow\":0,\"lastChangeTime\":\"25 days, 10:41:40.05\",\"lastInBytes\":3935974236,\"lastOutBytes\":620930692,\"outBytes\":620930692,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":2},{\"flow\":384948,\"inBytes\":2822539289,\"inFlow\":375635,\"lastChangeTime\":\"35 days, 20:03:38.92\",\"lastInBytes\":2822539289,\"lastOutBytes\":1690920453,\"outBytes\":1690920453,\"outFlow\":9312,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":416823,\"inBytes\":1141498371,\"inFlow\":406271,\"lastChangeTime\":\"0:30:46.15\",\"lastInBytes\":1141498371,\"lastOutBytes\":1382505603,\"outBytes\":1382505603,\"outFlow\":10552,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":496467,\"inBytes\":2317669129,\"inFlow\":483529,\"lastChangeTime\":\"0:30:58.01\",\"lastInBytes\":2317669129,\"lastOutBytes\":3361252322,\"outBytes\":3361252322,\"outFlow\":12937,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":817109,\"inBytes\":2827475873,\"inFlow\":795732,\"lastChangeTime\":\"0:30:55.14\",\"lastInBytes\":2827475873,\"lastOutBytes\":1918197531,\"outBytes\":1918197531,\"outFlow\":21376,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1387301,\"inBytes\":1944940869,\"inFlow\":1355351,\"lastChangeTime\":\"0:30:32.00\",\"lastInBytes\":1944940869,\"lastOutBytes\":1026900006,\"outBytes\":1026900006,\"outFlow\":31950,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":416903,\"inBytes\":2660186908,\"inFlow\":406347,\"lastChangeTime\":\"0:30:48.43\",\"lastInBytes\":2660186908,\"lastOutBytes\":379796458,\"outBytes\":379796458,\"outFlow\":10555,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":1007601,\"inBytes\":3027333309,\"inFlow\":985455,\"lastChangeTime\":\"0:30:44.20\",\"lastInBytes\":3027333309,\"lastOutBytes\":1624656997,\"outBytes\":1624656997,\"outFlow\":22145,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":356,\"inBytes\":316174669,\"inFlow\":134,\"lastChangeTime\":\"0:01:19.44\",\"lastInBytes\":316174669,\"lastOutBytes\":826028473,\"outBytes\":826028473,\"outFlow\":222,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4358381,\"inBytes\":2742619762,\"inFlow\":4250411,\"lastChangeTime\":\"11 days, 9:04:25.55\",\"lastInBytes\":2742619762,\"lastOutBytes\":936605586,\"outBytes\":936605586,\"outFlow\":107969,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9738127,\"inBytes\":4050584137,\"inFlow\":238216,\"lastChangeTime\":\"0:20:58.60\",\"lastInBytes\":4050584137,\"lastOutBytes\":4241357175,\"outBytes\":4241357175,\"outFlow\":9499910,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.705306000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703900", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1015040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.158.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"4\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface158\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"189145\",\"inUnknownProtos\":\"646491989\",\"index\":\"635\",\"lastChange\":\"0:01:21.23\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b0:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3699311127\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"242615128\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.158.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":417244,\"inBytes\":1357014389,\"inFlow\":406519,\"lastChangeTime\":\"159 days, 12:15:32.38\",\"lastInBytes\":1357014389,\"lastOutBytes\":265350440,\"outBytes\":265350440,\"outFlow\":10724,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416768,\"inBytes\":2118223748,\"inFlow\":406214,\"lastChangeTime\":\"124 days, 18:47:57.04\",\"lastInBytes\":2118223748,\"lastOutBytes\":2158200185,\"outBytes\":2158200185,\"outFlow\":10553,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":956112,\"inBytes\":822206902,\"inFlow\":932947,\"lastChangeTime\":\"288 days, 7:20:28.07\",\"lastInBytes\":822206902,\"lastOutBytes\":1584247023,\"outBytes\":1584247023,\"outFlow\":23165,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":628065,\"inBytes\":2800625363,\"inFlow\":611615,\"lastChangeTime\":\"29 days, 12:01:50.48\",\"lastInBytes\":2800625363,\"lastOutBytes\":2648621541,\"outBytes\":2648621541,\"outFlow\":16449,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":278509,\"inBytes\":484454190,\"inFlow\":271062,\"lastChangeTime\":\"29 days, 12:01:50.30\",\"lastInBytes\":484454190,\"lastOutBytes\":2128011497,\"outBytes\":2128011497,\"outFlow\":7447,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":279077,\"inBytes\":503796720,\"inFlow\":271783,\"lastChangeTime\":\"29 days, 12:01:56.10\",\"lastInBytes\":503796720,\"lastOutBytes\":646491989,\"outBytes\":646491989,\"outFlow\":7293,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":418499,\"inBytes\":4098370193,\"inFlow\":407901,\"lastChangeTime\":\"159 days, 12:13:02.00\",\"lastInBytes\":4098370193,\"lastOutBytes\":1462602910,\"outBytes\":1462602910,\"outFlow\":10598,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":417470,\"inBytes\":1013548144,\"inFlow\":406830,\"lastChangeTime\":\"220 days, 8:30:43.95\",\"lastInBytes\":1013548144,\"lastOutBytes\":4218156535,\"outBytes\":4218156535,\"outFlow\":10640,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":910698,\"inBytes\":1770804811,\"inFlow\":887940,\"lastChangeTime\":\"124 days, 18:47:57.04\",\"lastInBytes\":1770804811,\"lastOutBytes\":4007482684,\"outBytes\":4007482684,\"outFlow\":22757,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":902249,\"inBytes\":627065319,\"inFlow\":879548,\"lastChangeTime\":\"220 days, 8:31:52.43\",\"lastInBytes\":627065319,\"lastOutBytes\":2002907408,\"outBytes\":2002907408,\"outFlow\":22700,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":417066,\"inBytes\":207053946,\"inFlow\":406434,\"lastChangeTime\":\"124 days, 18:48:05.98\",\"lastInBytes\":207053946,\"lastOutBytes\":547855324,\"outBytes\":547855324,\"outFlow\":10631,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":904713,\"inBytes\":759286612,\"inFlow\":882206,\"lastChangeTime\":\"102 days, 22:57:40.06\",\"lastInBytes\":759286612,\"lastOutBytes\":1598471486,\"outBytes\":1598471486,\"outFlow\":22507,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":904509,\"inBytes\":2669951072,\"inFlow\":882059,\"lastChangeTime\":\"124 days, 18:47:58.69\",\"lastInBytes\":2669951072,\"lastOutBytes\":2355771819,\"outBytes\":2355771819,\"outFlow\":22450,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":277990,\"inBytes\":1442703896,\"inFlow\":271265,\"lastChangeTime\":\"411 days, 17:21:33.54\",\"lastInBytes\":1442703896,\"lastOutBytes\":4253452519,\"outBytes\":4253452519,\"outFlow\":6724,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":627016,\"inBytes\":147817597,\"inFlow\":611467,\"lastChangeTime\":\"159 days, 12:12:04.22\",\"lastInBytes\":147817597,\"lastOutBytes\":717270655,\"outBytes\":717270655,\"outFlow\":15548,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":353,\"inBytes\":1425076325,\"inFlow\":134,\"lastChangeTime\":\"159 days, 12:21:32.46\",\"lastInBytes\":1425076325,\"lastOutBytes\":448339201,\"outBytes\":448339201,\"outFlow\":219,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8784832,\"inBytes\":227623244,\"inFlow\":224394,\"lastChangeTime\":\"1 day, 0:20:12.91\",\"lastInBytes\":227623244,\"lastOutBytes\":2770643323,\"outBytes\":2770643323,\"outFlow\":8560438,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.636688000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704531029194703901", + "createdBy": "0", + "createdTime": "2025-12-01 10:37:45", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:39", + "echoMap": {}, + "deviceId": "1015040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.157.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif157\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:05:19.42\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:16:78\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"7\",\"temperature\":\"36\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.157.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"957912299\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1287\",\"0\",\"0\",\"20722\",\"0\",\"12109\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:38\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":30899,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":599,\"opticalVoltage\":3295,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":30959,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":736,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35444,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":557,\"opticalVoltage\":3323,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35040,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":458,\"opticalVoltage\":3321,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36479,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":465,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32939,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":561,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35880,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":463,\"opticalVoltage\":3321,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34919,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":555,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35759,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":512,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42360,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":464,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36840,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":466,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35880,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":465,\"opticalVoltage\":3321,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34319,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":669,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37560,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":463,\"opticalVoltage\":3345,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":659,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36000,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":462,\"opticalVoltage\":3345,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40034,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":770,\"opticalVoltage\":3314,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39240,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":464,\"opticalVoltage\":3345,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42720,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":462,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42959,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":462,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38880,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":463,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36000,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":475,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":3627587,\"inBytes\":1969469294,\"inFlow\":2947,\"lastChangeTime\":\"0:09:15.16\",\"lastInBytes\":1969469294,\"lastOutBytes\":1193135524,\"opticalBiasCurrent\":35880,\"opticalReceivePower\":226,\"opticalTemperature\":48,\"opticalTransmitPower\":478,\"opticalVoltage\":3340,\"outBytes\":1193135524,\"outFlow\":3624639,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":5440862,\"inBytes\":3158426340,\"inFlow\":186609,\"lastChangeTime\":\"159 days, 11:55:51.28\",\"lastInBytes\":3158426340,\"lastOutBytes\":2057010906,\"opticalBiasCurrent\":37680,\"opticalReceivePower\":385,\"opticalTemperature\":47,\"opticalTransmitPower\":559,\"opticalVoltage\":3354,\"outBytes\":2057010906,\"outFlow\":5254252,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":8297523,\"inBytes\":3375532553,\"inFlow\":8032820,\"lastChangeTime\":\"1 day, 0:23:52.38\",\"lastInBytes\":3375532553,\"lastOutBytes\":3640643417,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":180,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3306,\"outBytes\":3640643417,\"outFlow\":264703,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9807730,\"inBytes\":593243237,\"inFlow\":9508795,\"lastChangeTime\":\"353 days, 23:24:05.05\",\"lastInBytes\":593243237,\"lastOutBytes\":2034889143,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":2,\"opticalTemperature\":41,\"opticalTransmitPower\":246,\"opticalVoltage\":3320,\"outBytes\":2034889143,\"outFlow\":298934,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5296902,\"inBytes\":2466053364,\"inFlow\":5135027,\"lastChangeTime\":\"1 day, 1:42:32.96\",\"lastInBytes\":2466053364,\"lastOutBytes\":4234756055,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":180,\"opticalTemperature\":41,\"opticalTransmitPower\":246,\"opticalVoltage\":3330,\"outBytes\":4234756055,\"outFlow\":161875,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8135529,\"inBytes\":1248524240,\"inFlow\":7870300,\"lastChangeTime\":\"0:05:55.11\",\"lastInBytes\":1248524240,\"lastOutBytes\":93179504,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":175,\"opticalTemperature\":39,\"opticalTransmitPower\":244,\"opticalVoltage\":3308,\"outBytes\":93179504,\"outFlow\":265229,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7847959,\"inBytes\":524049872,\"inFlow\":7604494,\"lastChangeTime\":\"0:05:55.13\",\"lastInBytes\":524049872,\"lastOutBytes\":2224292743,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":279,\"opticalTemperature\":40,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":2224292743,\"outFlow\":243465,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5698113,\"inBytes\":2037936156,\"inFlow\":5515839,\"lastChangeTime\":\"102 days, 23:52:03.47\",\"lastInBytes\":2037936156,\"lastOutBytes\":2539010552,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":188,\"opticalTemperature\":43,\"opticalTransmitPower\":240,\"opticalVoltage\":3308,\"outBytes\":2539010552,\"outFlow\":182273,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5159308,\"inBytes\":2165261496,\"inFlow\":4998733,\"lastChangeTime\":\"0:05:55.22\",\"lastInBytes\":2165261496,\"lastOutBytes\":2587127293,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":22,\"opticalTemperature\":41,\"opticalTransmitPower\":246,\"opticalVoltage\":3332,\"outBytes\":2587127293,\"outFlow\":160574,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2111017,\"inBytes\":1194096862,\"inFlow\":2042609,\"lastChangeTime\":\"103 days, 0:50:57.48\",\"lastInBytes\":1194096862,\"lastOutBytes\":718049745,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":9,\"opticalTemperature\":41,\"opticalTransmitPower\":245,\"opticalVoltage\":3308,\"outBytes\":718049745,\"outFlow\":68408,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":659646,\"inBytes\":1406168461,\"inFlow\":637650,\"lastChangeTime\":\"103 days, 0:23:25.17\",\"lastInBytes\":1406168461,\"lastOutBytes\":2787422196,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":231,\"opticalTemperature\":42,\"opticalTransmitPower\":243,\"opticalVoltage\":3308,\"outBytes\":2787422196,\"outFlow\":21995,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7393266,\"inBytes\":583341294,\"inFlow\":7155751,\"lastChangeTime\":\"159 days, 12:30:59.50\",\"lastInBytes\":583341294,\"lastOutBytes\":4263714153,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":5,\"opticalTemperature\":39,\"opticalTransmitPower\":240,\"opticalVoltage\":3352,\"outBytes\":4263714153,\"outFlow\":237514,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8547055,\"inBytes\":3944787490,\"inFlow\":8272820,\"lastChangeTime\":\"0:05:55.34\",\"lastInBytes\":3944787490,\"lastOutBytes\":3061331696,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":218,\"opticalTemperature\":38,\"opticalTransmitPower\":237,\"opticalVoltage\":3350,\"outBytes\":3061331696,\"outFlow\":274234,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":395739,\"inBytes\":1868434014,\"inFlow\":382182,\"lastChangeTime\":\"0:07:43.30\",\"lastInBytes\":1868434014,\"lastOutBytes\":1464565842,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":31,\"opticalTemperature\":40,\"opticalTransmitPower\":245,\"opticalVoltage\":3340,\"outBytes\":1464565842,\"outFlow\":13556,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":395549,\"inBytes\":3443109541,\"inFlow\":382150,\"lastChangeTime\":\"0:07:41.68\",\"lastInBytes\":3443109541,\"lastOutBytes\":2199522205,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":214,\"opticalTemperature\":39,\"opticalTransmitPower\":238,\"opticalVoltage\":3330,\"outBytes\":2199522205,\"outFlow\":13398,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":395410,\"inBytes\":4103489917,\"inFlow\":382002,\"lastChangeTime\":\"0:07:40.63\",\"lastInBytes\":4103489917,\"lastOutBytes\":3091040467,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":180,\"opticalTemperature\":37,\"opticalTransmitPower\":240,\"opticalVoltage\":3328,\"outBytes\":3091040467,\"outFlow\":13407,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":396572,\"inBytes\":358712520,\"inFlow\":383368,\"lastChangeTime\":\"0:07:42.22\",\"lastInBytes\":358712520,\"lastOutBytes\":3876158388,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":193,\"opticalTemperature\":38,\"opticalTransmitPower\":238,\"opticalVoltage\":3330,\"outBytes\":3876158388,\"outFlow\":13203,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":245,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":245,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":238,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":236,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":246,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":245,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":919,\"inBytes\":2567970232,\"inFlow\":64,\"lastChangeTime\":\"159 days, 11:57:06.53\",\"lastInBytes\":2567970232,\"lastOutBytes\":1306348549,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":171,\"opticalTemperature\":34,\"opticalTransmitPower\":239,\"opticalVoltage\":3330,\"outBytes\":1306348549,\"outFlow\":855,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":26919080,\"inBytes\":679854204,\"inFlow\":12339568,\"lastChangeTime\":\"0:05:20.64\",\"lastInBytes\":679854204,\"lastOutBytes\":3586597127,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3586597127,\"outFlow\":14579511,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":91240,\"inBytes\":2600372755,\"inFlow\":59795,\"lastChangeTime\":\"0:05:20.67\",\"lastInBytes\":2600372755,\"lastOutBytes\":1027796311,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1027796311,\"outFlow\":31444,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":827,\"inBytes\":33813338,\"inFlow\":14,\"lastChangeTime\":\"368 days, 7:12:40.38\",\"lastInBytes\":33813338,\"lastOutBytes\":3153324249,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3153324249,\"outFlow\":812,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":163782,\"inBytes\":3616739152,\"inFlow\":44277,\"lastChangeTime\":\"0:05:19.40\",\"lastInBytes\":3616739152,\"lastOutBytes\":1246212511,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1246212511,\"outFlow\":119504,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":13527490,\"inBytes\":3074938415,\"inFlow\":456057,\"lastChangeTime\":\"0:05:19.47\",\"lastInBytes\":3074938415,\"lastOutBytes\":2037965018,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2037965018,\"outFlow\":13071432,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2654353,\"inBytes\":491172362,\"inFlow\":51721,\"lastChangeTime\":\"411 days, 0:40:06.92\",\"lastInBytes\":491172362,\"lastOutBytes\":916617232,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":916617232,\"outFlow\":2602631,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1399139,\"inBytes\":1893365372,\"inFlow\":636645,\"lastChangeTime\":\"0:05:19.54\",\"lastInBytes\":1893365372,\"lastOutBytes\":3416311213,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3416311213,\"outFlow\":762493,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":12282229,\"inBytes\":3489815597,\"inFlow\":472075,\"lastChangeTime\":\"0:05:19.56\",\"lastInBytes\":3489815597,\"lastOutBytes\":3352468418,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3352468418,\"outFlow\":11810154,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1321,\"inBytes\":2660586290,\"inFlow\":219,\"lastChangeTime\":\"283 days, 7:18:48.10\",\"lastInBytes\":2660586290,\"lastOutBytes\":2546243627,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2546243627,\"outFlow\":1102,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":25446548,\"inBytes\":3929491902,\"inFlow\":645470,\"lastChangeTime\":\"0:05:19.60\",\"lastInBytes\":3929491902,\"lastOutBytes\":3898515039,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3898515039,\"outFlow\":24801077,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1044,\"inBytes\":1813251572,\"inFlow\":145,\"lastChangeTime\":\"283 days, 7:19:37.45\",\"lastInBytes\":1813251572,\"lastOutBytes\":90480020,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":90480020,\"outFlow\":899,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":385687,\"inBytes\":330473273,\"inFlow\":10741,\"lastChangeTime\":\"396 days, 21:06:43.50\",\"lastInBytes\":330473273,\"lastOutBytes\":3094124221,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3094124221,\"outFlow\":374946,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":809,\"inBytes\":757065859,\"inFlow\":5,\"lastChangeTime\":\"326 days, 17:28:03.99\",\"lastInBytes\":757065859,\"lastOutBytes\":133687652,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":133687652,\"outFlow\":803,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3664064,\"inBytes\":2583374270,\"inFlow\":28723,\"lastChangeTime\":\"241 days, 14:07:07.56\",\"lastInBytes\":2583374270,\"lastOutBytes\":3684639106,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3684639106,\"outFlow\":3635340,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1044,\"inBytes\":1797201912,\"inFlow\":145,\"lastChangeTime\":\"283 days, 7:15:40.27\",\"lastInBytes\":1797201912,\"lastOutBytes\":1639069861,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1639069861,\"outFlow\":899,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":264469612,\"inFlow\":0,\"lastChangeTime\":\"391 days, 19:53:58.69\",\"lastInBytes\":264469612,\"lastOutBytes\":3029163217,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3029163217,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":62361292,\"inFlow\":0,\"lastChangeTime\":\"283 days, 7:56:55.66\",\"lastInBytes\":62361292,\"lastOutBytes\":2031796749,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2031796749,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2321590,\"inFlow\":0,\"lastChangeTime\":\"375 days, 13:28:40.92\",\"lastInBytes\":2321590,\"lastOutBytes\":13854047,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":13854047,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":39,\"inBytes\":10643181,\"inFlow\":19,\"lastChangeTime\":\"411 days, 10:57:12.97\",\"lastInBytes\":10643181,\"lastOutBytes\":15163129,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":15163129,\"outFlow\":20,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":117,\"inBytes\":55910964,\"inFlow\":100,\"lastChangeTime\":\"411 days, 10:57:57.85\",\"lastInBytes\":55910964,\"lastOutBytes\":18981907,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":18981907,\"outFlow\":16,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:19.130204000\"}}", + "lastDiagTime": "2026-02-02 14:37:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589888507992884385", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:27", + "echoMap": {}, + "deviceId": "1015110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.157.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.85\",\"CPU使用率\":\"5.00\",\"系统运行时间\":\"165 days, 10:24:02.28\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"13788462\",\"inErrors\":\"0\",\"inNUcastPkts\":\"30532035\",\"inOctets\":\"1215689582\",\"inUcastPkts\":\"2176410732\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"244 days, 23:28:06.53\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ae:40\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2280900488\",\"outQLen\":\"0\",\"outUcastPkts\":\"1803264029\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.157.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:37:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1016": { + "ndmAlarmHost": [ + { + "id": "707152015808171704", + "createdBy": null, + "createdTime": "2025-12-08 13:44:10", + "updatedBy": null, + "updatedTime": "2025-12-08 13:44:10", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.159.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "598009801525197824", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1016060001", + "name": "[411](10)南京东5#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601009006016411", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197825", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060002", + "name": "[206](10)南京东厅6球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601035004016206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197826", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1016060003", + "name": "[344](10)南京东公共区6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197827", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060004", + "name": "[345](10)南京东公共区7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197828", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060005", + "name": "[412](10)南京东7#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016412", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197829", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1016060006", + "name": "[413](10)南京东7#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016413", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197830", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1016060007", + "name": "[414](10)南京东7#闸入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016414", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197831", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1016060008", + "name": "[511](10)南京东票亭3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601025006016511", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197832", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1016060009", + "name": "[365](10)南京东安检5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601085006016365", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197833", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1016060010", + "name": "[508](10)南京东票机7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016508", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197834", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1016060011", + "name": "[507](10)南京东票机6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016507", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197835", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1016060012", + "name": "[415](10)南京东7#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016415", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197836", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-14 12:26:31", + "echoMap": {}, + "deviceId": "1016060013", + "name": "[416](10)南京东7#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016416", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197837", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1016060014", + "name": "[417](10)南京东7#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016417", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197838", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1016060015", + "name": "[303](10)南京东2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197839", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1016060016", + "name": "[301](10)南京东2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197840", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060017", + "name": "[304](10)南京东2#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197841", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060018", + "name": "[305](10)南京东2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197842", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-12-18 15:58:05", + "echoMap": {}, + "deviceId": "1016060019", + "name": "[302](10)南京东2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197846", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1016060023", + "name": "[506](10)南京东票机5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016506", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197847", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060024", + "name": "[364](10)南京东安检4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601085006016364", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197848", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1016060025", + "name": "[205](10)南京东厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601035004016205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197849", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060026", + "name": "[408](10)南京东4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601008006016408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197850", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060027", + "name": "[357](10)南京东10-2换乘出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197851", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1016060028", + "name": "[356](10)南京东10-2换乘出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197852", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1016060029", + "name": "[355](10)南京东10-2换乘出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197853", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060030", + "name": "[354](10)南京东10-2换乘出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197854", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060031", + "name": "[350](10)南京东10-2换乘入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197855", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060032", + "name": "[351](10)南京东10-2换乘入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197856", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060033", + "name": "[352](10)南京东10-2换乘入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197857", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060034", + "name": "[353](10)南京东10-2换乘入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601081006016353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197858", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060035", + "name": "[405](10)南京东3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601007006016405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197859", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060036", + "name": "[343](10)南京东公共区5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197861", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060038", + "name": "[204](10)南京东厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601035004016204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197862", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060039", + "name": "[609](10)南京东内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197863", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060040", + "name": "[504](10)南京东票机3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197864", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1016060041", + "name": "[509](10)南京东票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601025006016509", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197865", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1016060042", + "name": "[406](10)南京东3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601007006016406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197866", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1016060043", + "name": "[407](10)南京东3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601007006016407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197867", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1016060044", + "name": "[320](10)南京东7#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197868", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1016060045", + "name": "[342](10)南京东公共区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197869", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1016060046", + "name": "[326](10)南京东7#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197870", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1016060047", + "name": "[325](10)南京东7#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197871", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1016060048", + "name": "[213](10)南京东7#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061004016213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197872", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1016060049", + "name": "[321](10)南京东7#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197873", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1016060050", + "name": "[322](10)南京东7#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197874", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1016060051", + "name": "[324](10)南京东7#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197875", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060052", + "name": "[323](10)南京东7#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601061006016323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197876", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060053", + "name": "[505](10)南京东票机4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016505", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197877", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060054", + "name": "[409](10)南京东5#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601009006016409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197878", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1016060055", + "name": "[332](10)南京东#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197879", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060056", + "name": "[331](10)南京东#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197880", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060057", + "name": "[346](10)南京东B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197881", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-02-02 12:01:28", + "echoMap": {}, + "deviceId": "1016060058", + "name": "[358](10)南京东1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601036005016358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197882", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060059", + "name": "[334](10)南京东#2厅扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197883", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1016060060", + "name": "[333](10)南京东#2厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197884", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-16 22:26:28", + "echoMap": {}, + "deviceId": "1016060061", + "name": "[330](10)南京东#1厅扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197885", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1016060062", + "name": "[329](10)南京东#1厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197886", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1016060063", + "name": "[361](10)南京东安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601085006016361", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197887", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-26 01:11:29", + "echoMap": {}, + "deviceId": "1016060064", + "name": "[363](10)南京东安检3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601085006016363", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197888", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1016060065", + "name": "[203](10)南京东厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601035004016203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197889", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-02-02 00:09:28", + "echoMap": {}, + "deviceId": "1016060066", + "name": "[502](10)南京东票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197890", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:29", + "echoMap": {}, + "deviceId": "1016060067", + "name": "[503](10)南京东票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601030006016503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197891", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:29", + "echoMap": {}, + "deviceId": "1016060068", + "name": "[211](10)南京东5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601059004016211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197892", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:29", + "echoMap": {}, + "deviceId": "1016060069", + "name": "[309](10)南京东5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601059006016309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197893", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:30", + "echoMap": {}, + "deviceId": "1016060070", + "name": "[311](10)南京东5#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601059006016311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197894", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:30", + "echoMap": {}, + "deviceId": "1016060071", + "name": "[308](10)南京东5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601059006016308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197895", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:30", + "echoMap": {}, + "deviceId": "1016060072", + "name": "[310](10)南京东5#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601059006016310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197896", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-29 00:07:28", + "echoMap": {}, + "deviceId": "1016060073", + "name": "[501](10)南京东客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601001005016501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197897", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:31", + "echoMap": {}, + "deviceId": "1016060074", + "name": "[601](10)南京东车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603042004016601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197898", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:18:29", + "echoMap": {}, + "deviceId": "1016060075", + "name": "[404](10)南京东2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601006006016404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197899", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:32", + "echoMap": {}, + "deviceId": "1016060076", + "name": "[362](10)南京东安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601085006016362", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197900", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:17:32", + "echoMap": {}, + "deviceId": "1016060077", + "name": "[402](10)南京东2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601006006016402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197901", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:15:41", + "echoMap": {}, + "deviceId": "1016060078", + "name": "[341](10)南京东公共区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197902", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:20:29", + "echoMap": {}, + "deviceId": "1016060079", + "name": "[403](10)南京东2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601006006016403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197903", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:06:29", + "echoMap": {}, + "deviceId": "1016060080", + "name": "[602](10)南京东编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603041005016602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197904", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:06:29", + "echoMap": {}, + "deviceId": "1016060081", + "name": "[603](10)南京东编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603041005016603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197905", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:06:30", + "echoMap": {}, + "deviceId": "1016060082", + "name": "[339](10)南京东公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197906", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:06:30", + "echoMap": {}, + "deviceId": "1016060083", + "name": "[202](10)南京东厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601035004016202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197907", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:11:29", + "echoMap": {}, + "deviceId": "1016060084", + "name": "[401](10)南京东1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601005006016401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197908", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-26 09:11:29", + "echoMap": {}, + "deviceId": "1016060085", + "name": "[347](10)南京东B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197909", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:05:34", + "echoMap": {}, + "deviceId": "1016060086", + "name": "[410](10)南京东5#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601009006016410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197910", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:05:34", + "echoMap": {}, + "deviceId": "1016060087", + "name": "[328](10)南京东#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197911", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:05:34", + "echoMap": {}, + "deviceId": "1016060088", + "name": "[327](10)南京东#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601050006016327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197912", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2026-01-26 01:44:30", + "echoMap": {}, + "deviceId": "1016060089", + "name": "[201](10)南京东厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601035004016201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197913", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060090", + "name": "[608](10)南京东内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197914", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060091", + "name": "[312](10)南京东6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197915", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1016060092", + "name": "[340](10)南京东公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197916", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1016060093", + "name": "[615](10)南京东消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197917", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060094", + "name": "[212](10)南京东6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060004016212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197918", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-12-04 22:05:28", + "echoMap": {}, + "deviceId": "1016060095", + "name": "[317](10)南京东6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197919", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1016060096", + "name": "[318](10)南京东6#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197920", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1016060097", + "name": "[359](10)南京东2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601036005016359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197921", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1016060098", + "name": "[316](10)南京东6#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197922", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-12-04 23:40:28", + "echoMap": {}, + "deviceId": "1016060099", + "name": "[315](10)南京东6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197923", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-12-04 21:45:29", + "echoMap": {}, + "deviceId": "1016060100", + "name": "[314](10)南京东6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197924", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060101", + "name": "[313](10)南京东6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197925", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1016060102", + "name": "[319](10)南京东6#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060005016319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197926", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1016060103", + "name": "[616](10)南京东变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197927", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1016060104", + "name": "[617](10)南京东变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197928", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1016060105", + "name": "[614](10)南京东环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.159.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603053005016614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197929", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1016060106", + "name": "[348](10)南京东B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601040006016348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197930", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1016060107", + "name": "[618](10)南京东变电所出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197931", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-20 10:06:34", + "echoMap": {}, + "deviceId": "1016060108", + "name": "[613](10)南京东环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603053005016613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197932", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060109", + "name": "[604](10)南京东弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603048005016604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197933", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060110", + "name": "[605](10)南京东弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603048005016605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197934", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060111", + "name": "[606](10)南京东弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603048005016606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197935", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060112", + "name": "[108](10)南京东下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602012006016108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197936", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060113", + "name": "[107](10)南京东下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602012006016107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197937", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060114", + "name": "[337](10)南京东#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602017006016337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197938", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060115", + "name": "[209](10)南京东下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602001004016209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197940", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060117", + "name": "[612](10)南京东内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603021006016612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197941", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060118", + "name": "[105](10)南京东上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602007006016105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197942", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060119", + "name": "[106](10)南京东上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602007006016106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197943", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060120", + "name": "[110](10)南京东下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602012006016110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197944", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060121", + "name": "[109](10)南京东下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602012006016109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197945", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060122", + "name": "[349](10)南京东B3垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602002006016349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197946", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060123", + "name": "[210](10)南京东下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602001004016210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197947", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1016060124", + "name": "[208](10)南京东上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602001004016208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197948", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060125", + "name": "[207](10)南京东上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602001004016207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197949", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060126", + "name": "[611](10)南京东内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603021006016611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197950", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060127", + "name": "[103](10)南京东上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602007006016103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197951", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060128", + "name": "[104](10)南京东上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602007006016104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197952", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060129", + "name": "[112](10)南京东下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602012006016112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197953", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060130", + "name": "[111](10)南京东下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602012006016111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197954", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1016060131", + "name": "[610](10)南京东内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603021006016610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197955", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1016060132", + "name": "[335](10)南京东#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602017006016335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197956", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060133", + "name": "[607](10)南京东屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603048005016607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197957", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1016060134", + "name": "[336](10)南京东#1台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602017006016336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197958", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1016060135", + "name": "[101](10)南京东上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602007006016101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525197959", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1016060136", + "name": "[102](10)南京东上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602007006016102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795855", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060137", + "name": "[121](10)南京东气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.55", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603067005016121", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795856", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060138", + "name": "[120](10)南京东民用机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.54", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603048005016120", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795857", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060139", + "name": "[338](10)南京东#2台扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.53", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602017006016338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795858", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1016060140", + "name": "[119](10)南京东民用配电间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.52", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603048005016119", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795859", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-12-16 16:10:08", + "echoMap": {}, + "deviceId": "1016060141", + "name": "[118](10)南京东2#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.51", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016118", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795860", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1016060142", + "name": "[117](10)南京东2#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.50", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056006016117", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795861", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060143", + "name": "[116](10)南京东上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.49", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603021006016116", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795862", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060144", + "name": "[130](10)南京东7#闸出5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.42", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016130", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795863", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060145", + "name": "[129](10)南京东7#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.41", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601011006016129", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795864", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060146", + "name": "[115](10)南京东下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.48", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603021006016115", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795865", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060147", + "name": "[114](10)南京东气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.47", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603067005016114", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795866", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060148", + "name": "[113](10)南京东#2台楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.46", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061602017006016113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795867", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060149", + "name": "[131](10)南京东2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.45", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601056004016131", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795868", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1016060150", + "name": "[128](10)南京东会议室内通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.40", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001006016128", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795869", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1016060151", + "name": "[127](10)南京东内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.39", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061603001005016127", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795870", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:07:30", + "echoMap": {}, + "deviceId": "1016060152", + "name": "[123](10)南京东5#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601009006016123", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795871", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2026-01-26 01:10:32", + "echoMap": {}, + "deviceId": "1016060153", + "name": "[126](10)南京东6#闸出", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.36", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601010006016126", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795872", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2026-02-01 21:49:28", + "echoMap": {}, + "deviceId": "1016060154", + "name": "[125](10)南京东6#闸入", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.35", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601010006016125", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409980181795873", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2026-01-25 02:06:32", + "echoMap": {}, + "deviceId": "1016060155", + "name": "[124](10)南京东5#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601009006016124", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702329124017044876", + "createdBy": null, + "createdTime": "2025-11-22 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-22 00:00:00", + "echoMap": {}, + "deviceId": "1016060156", + "name": "[360](10)南京东出入口步梯", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.160.56", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061601060006016360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "598009801525197960", + "createdBy": "0", + "createdTime": "2025-02-24 14:54:33", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:28", + "echoMap": {}, + "deviceId": "1016070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.159.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061600000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"145543\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"208301893\",\"inUcastPkts\":\"1019118548\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:19:3a:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4157537630\",\"outQLen\":\"0\",\"outUcastPkts\":\"389008870\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.159.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:28\",\"stCommonInfo\":{\"设备ID\":\"8L0027FPAZ5A754\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:36:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "598009801525198382", + "createdBy": "2", + "createdTime": "2025-02-24 14:57:44", + "updatedBy": null, + "updatedTime": "2025-12-23 10:15:08", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.159.51", + "manageUrl": "http:\\\\10.18.159.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "598009801525198406", + "createdBy": "2", + "createdTime": "2025-02-24 14:58:02", + "updatedBy": null, + "updatedTime": "2025-12-26 07:45:02", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.159.52", + "manageUrl": "http:\\\\10.18.159.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "598009801525197962", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:28", + "echoMap": {}, + "deviceId": "1016090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.159.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.87\",\"CPU使用率\":\"4.00\",\"系统运行时间\":\"426 days, 14:40:34.51\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"9622522\",\"inErrors\":\"0\",\"inNUcastPkts\":\"19659456\",\"inOctets\":\"658594966\",\"inUcastPkts\":\"3072291515\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9e:e4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2898551729\",\"outQLen\":\"0\",\"outUcastPkts\":\"1233711063\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.159.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "598009801525197963", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-24 14:54:54", + "echoMap": {}, + "deviceId": "1016050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.159.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061600000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.159.22;10.18.159.23" + }, + { + "id": "598009801525197964", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-12-29 11:09:20", + "echoMap": {}, + "deviceId": "1016050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.159.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061600000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.159.22" + }, + { + "id": "598009801525197965", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:29", + "echoMap": {}, + "deviceId": "1016050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.159.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061600000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"19879830\",\"inErrors\":\"0\",\"inNUcastPkts\":\"49514807\",\"inOctets\":\"2563067226\",\"inUcastPkts\":\"115695248\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:58:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1743291080\",\"outQLen\":\"0\",\"outUcastPkts\":\"3195490485\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3220\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3240\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3220\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.159.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:29\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":749969582,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node15923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"56\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:37:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.159.23" + } + ], + "ndmSecurityBox": [ + { + "id": "704536423674577837", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "deviceId": "1016030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5238481\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"288347184\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"265 days, 14:51:26.20\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5238486\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:28\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25500003,\"status\":1,\"voltage\":25.837002},{\"current\":0.26000002,\"status\":1,\"voltage\":25.837002},{\"current\":0.252,\"status\":1,\"voltage\":25.837002},{\"current\":0.26200002,\"status\":1,\"voltage\":25.837002},{\"current\":0.216,\"status\":1,\"voltage\":25.837002},{\"current\":0.26000002,\"status\":1,\"voltage\":25.837002},{\"current\":0.25300002,\"status\":1,\"voltage\":25.837002},{\"current\":0.263,\"status\":1,\"voltage\":25.837002},{\"current\":0.312,\"status\":1,\"voltage\":25.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.003,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301576\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577838", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "deviceId": "1016030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"5238648\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"288356377\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"265 days, 14:51:26.20\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"5238653\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:28\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25500003,\"status\":1,\"voltage\":25.837002},{\"current\":0.26000002,\"status\":1,\"voltage\":25.837002},{\"current\":0.252,\"status\":1,\"voltage\":25.837002},{\"current\":0.26200002,\"status\":1,\"voltage\":25.837002},{\"current\":0.216,\"status\":1,\"voltage\":25.837002},{\"current\":0.26000002,\"status\":1,\"voltage\":25.837002},{\"current\":0.25300002,\"status\":1,\"voltage\":25.837002},{\"current\":0.263,\"status\":1,\"voltage\":25.837002},{\"current\":0.312,\"status\":1,\"voltage\":25.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.003,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391},{\"current\":0.001,\"status\":1,\"voltage\":26.391}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301576\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577839", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:30", + "echoMap": {}, + "deviceId": "1016030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2617750\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"143918849\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"266 days, 14:22:27.59\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2617755\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:35\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.242},{\"current\":0.27100003,\"status\":1,\"voltage\":26.242},{\"current\":0.252,\"status\":1,\"voltage\":26.242},{\"current\":0.554,\"status\":1,\"voltage\":26.242},{\"current\":0.522,\"status\":1,\"voltage\":26.242},{\"current\":0.535,\"status\":1,\"voltage\":26.242},{\"current\":0.259,\"status\":1,\"voltage\":26.242},{\"current\":0.24000001,\"status\":1,\"voltage\":26.242},{\"current\":0.263,\"status\":1,\"voltage\":26.242},{\"current\":0.001,\"status\":1,\"voltage\":27.142002},{\"current\":0.002,\"status\":1,\"voltage\":27.142002},{\"current\":0.001,\"status\":1,\"voltage\":27.142002},{\"current\":0.001,\"status\":1,\"voltage\":27.142002},{\"current\":0.001,\"status\":1,\"voltage\":27.142002},{\"current\":0.001,\"status\":1,\"voltage\":27.142002},{\"current\":0.001,\"status\":1,\"voltage\":27.142002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301780\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577840", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:30", + "echoMap": {}, + "deviceId": "1016030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2620088\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144221722\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"263 days, 12:53:10.99\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2620093\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:b3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":26.165},{\"current\":0.25300002,\"status\":1,\"voltage\":26.165},{\"current\":0.26000002,\"status\":1,\"voltage\":26.165},{\"current\":0.577,\"status\":1,\"voltage\":26.165},{\"current\":0.25500003,\"status\":1,\"voltage\":26.165},{\"current\":0.27100003,\"status\":1,\"voltage\":26.165},{\"current\":0.24000001,\"status\":1,\"voltage\":26.165},{\"current\":0.24300002,\"status\":1,\"voltage\":26.165},{\"current\":0.29200003,\"status\":1,\"voltage\":26.165},{\"current\":0.24300002,\"status\":1,\"voltage\":26.319002},{\"current\":0.003,\"status\":1,\"voltage\":26.319002},{\"current\":0.001,\"status\":1,\"voltage\":26.319002},{\"current\":0.001,\"status\":1,\"voltage\":26.319002},{\"current\":0.001,\"status\":1,\"voltage\":26.319002},{\"current\":0.001,\"status\":1,\"voltage\":26.319002},{\"current\":0.001,\"status\":1,\"voltage\":26.319002}],\"fanSpeeds\":[1290,1260],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301650\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577841", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:31", + "echoMap": {}, + "deviceId": "1016030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2618752\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"143973970\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"264 days, 2:54:20.96\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2618757\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:41\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22200002,\"status\":1,\"voltage\":26.124},{\"current\":0.231,\"status\":1,\"voltage\":26.124},{\"current\":0.24900001,\"status\":1,\"voltage\":26.124},{\"current\":0.22700001,\"status\":1,\"voltage\":26.124},{\"current\":0.22900002,\"status\":1,\"voltage\":26.124},{\"current\":0.23300001,\"status\":1,\"voltage\":26.124},{\"current\":0.23200001,\"status\":1,\"voltage\":26.124},{\"current\":0.19600001,\"status\":1,\"voltage\":26.124},{\"current\":0.22800002,\"status\":1,\"voltage\":26.124},{\"current\":0.001,\"status\":1,\"voltage\":26.656002},{\"current\":0.003,\"status\":1,\"voltage\":26.656002},{\"current\":0.001,\"status\":1,\"voltage\":26.656002},{\"current\":0.001,\"status\":1,\"voltage\":26.656002},{\"current\":0.001,\"status\":1,\"voltage\":26.656002},{\"current\":0.001,\"status\":1,\"voltage\":26.656002},{\"current\":0.001,\"status\":1,\"voltage\":26.656002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301792\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577842", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:32", + "echoMap": {}, + "deviceId": "1016030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2618585\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"143964780\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"264 days, 7:10:39.60\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2618590\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:72\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28500003,\"status\":1,\"voltage\":26.821001},{\"current\":0.256,\"status\":1,\"voltage\":26.821001},{\"current\":0.246,\"status\":1,\"voltage\":26.821001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.821001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.821001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.821001},{\"current\":0.001,\"status\":1,\"voltage\":26.821001},{\"current\":0.001,\"status\":1,\"voltage\":26.821001},{\"current\":0.001,\"status\":1,\"voltage\":26.821001},{\"current\":0.001,\"status\":1,\"voltage\":26.476002},{\"current\":0.003,\"status\":1,\"voltage\":26.476002},{\"current\":0.001,\"status\":1,\"voltage\":26.476002},{\"current\":0.001,\"status\":1,\"voltage\":26.476002},{\"current\":0.001,\"status\":1,\"voltage\":26.476002},{\"current\":0.001,\"status\":1,\"voltage\":26.476002},{\"current\":0.001,\"status\":1,\"voltage\":26.476002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303186\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577843", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:32", + "echoMap": {}, + "deviceId": "1016030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2619921\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144211778\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"264 days, 2:57:48.54\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2619926\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:36\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28100002,\"status\":1,\"voltage\":26.531002},{\"current\":0.37300003,\"status\":1,\"voltage\":26.531002},{\"current\":0.263,\"status\":1,\"voltage\":26.531002},{\"current\":0.30400002,\"status\":1,\"voltage\":26.531002},{\"current\":0.50600004,\"status\":1,\"voltage\":26.531002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.531002},{\"current\":0.264,\"status\":1,\"voltage\":26.531002},{\"current\":0.41500002,\"status\":1,\"voltage\":26.531002},{\"current\":0.261,\"status\":1,\"voltage\":26.531002},{\"current\":0.23600002,\"status\":1,\"voltage\":26.423},{\"current\":0.002,\"status\":1,\"voltage\":26.423},{\"current\":0.23700002,\"status\":1,\"voltage\":26.423},{\"current\":0.344,\"status\":1,\"voltage\":26.423},{\"current\":0.21700001,\"status\":1,\"voltage\":26.423},{\"current\":0.23500001,\"status\":1,\"voltage\":26.423},{\"current\":0.245,\"status\":1,\"voltage\":26.423}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208301590\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577844", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:32", + "echoMap": {}, + "deviceId": "1016030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2619921\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144211502\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"347 days, 8:45:55.59\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2619926\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:13\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.203001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.203001},{\"current\":0.298,\"status\":1,\"voltage\":26.203001},{\"current\":0.513,\"status\":1,\"voltage\":26.203001},{\"current\":0.351,\"status\":1,\"voltage\":26.203001},{\"current\":0.261,\"status\":1,\"voltage\":26.203001},{\"current\":0.33200002,\"status\":1,\"voltage\":26.203001},{\"current\":0.257,\"status\":1,\"voltage\":26.203001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.203001},{\"current\":0.554,\"status\":1,\"voltage\":26.283},{\"current\":0.002,\"status\":1,\"voltage\":26.283},{\"current\":0.33,\"status\":1,\"voltage\":26.283},{\"current\":0.326,\"status\":1,\"voltage\":26.283},{\"current\":0.001,\"status\":1,\"voltage\":26.283},{\"current\":0.0,\"status\":1,\"voltage\":26.283},{\"current\":0.0,\"status\":1,\"voltage\":26.283}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301811\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577845", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:33", + "echoMap": {}, + "deviceId": "1016030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2620089\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144220223\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"347 days, 23:12:58.36\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2620094\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:a7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":26.009},{\"current\":0.23200001,\"status\":1,\"voltage\":26.009},{\"current\":0.523,\"status\":1,\"voltage\":26.009},{\"current\":0.337,\"status\":1,\"voltage\":26.009},{\"current\":0.37800002,\"status\":1,\"voltage\":26.009},{\"current\":0.24100001,\"status\":1,\"voltage\":26.009},{\"current\":0.275,\"status\":1,\"voltage\":26.009},{\"current\":0.541,\"status\":1,\"voltage\":26.009},{\"current\":0.367,\"status\":1,\"voltage\":26.009},{\"current\":0.286,\"status\":1,\"voltage\":25.942001},{\"current\":0.003,\"status\":1,\"voltage\":25.942001},{\"current\":0.342,\"status\":1,\"voltage\":25.942001},{\"current\":0.256,\"status\":1,\"voltage\":25.942001},{\"current\":0.349,\"status\":1,\"voltage\":25.942001},{\"current\":0.307,\"status\":1,\"voltage\":25.942001},{\"current\":0.001,\"status\":1,\"voltage\":25.942001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301703\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577846", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:41", + "echoMap": {}, + "deviceId": "1016030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577847", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:41", + "echoMap": {}, + "deviceId": "1016030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2618754\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144147335\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"346 days, 10:58:58.95\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2618759\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:ff\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.277,\"status\":1,\"voltage\":25.962002},{\"current\":0.254,\"status\":1,\"voltage\":25.962002},{\"current\":0.21700001,\"status\":1,\"voltage\":25.962002},{\"current\":0.36,\"status\":1,\"voltage\":25.962002},{\"current\":0.35500002,\"status\":1,\"voltage\":25.962002},{\"current\":0.29000002,\"status\":1,\"voltage\":25.962002},{\"current\":0.28,\"status\":1,\"voltage\":25.962002},{\"current\":0.22100002,\"status\":1,\"voltage\":25.962002},{\"current\":7.5860004,\"status\":1,\"voltage\":25.962002},{\"current\":0.51100004,\"status\":1,\"voltage\":25.958002},{\"current\":0.002,\"status\":1,\"voltage\":25.958002},{\"current\":0.347,\"status\":1,\"voltage\":25.958002},{\"current\":0.347,\"status\":1,\"voltage\":25.958002},{\"current\":0.22800002,\"status\":1,\"voltage\":25.958002},{\"current\":0.34100002,\"status\":1,\"voltage\":25.958002},{\"current\":0.365,\"status\":1,\"voltage\":25.958002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301535\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577848", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:42", + "echoMap": {}, + "deviceId": "1016030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2618752\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144146146\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"345 days, 11:26:25.59\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2618757\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:e4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.326,\"status\":1,\"voltage\":26.008001},{\"current\":0.37500003,\"status\":1,\"voltage\":26.008001},{\"current\":0.37600002,\"status\":1,\"voltage\":26.008001},{\"current\":0.377,\"status\":1,\"voltage\":26.008001},{\"current\":0.365,\"status\":1,\"voltage\":26.008001},{\"current\":0.268,\"status\":1,\"voltage\":26.008001},{\"current\":0.30600002,\"status\":1,\"voltage\":26.008001},{\"current\":0.555,\"status\":1,\"voltage\":26.008001},{\"current\":0.001,\"status\":1,\"voltage\":26.008001},{\"current\":0.001,\"status\":1,\"voltage\":26.080002},{\"current\":0.003,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":26.080002},{\"current\":0.001,\"status\":1,\"voltage\":26.080002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301764\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577849", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:42", + "echoMap": {}, + "deviceId": "1016030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2618427\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144128945\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"347 days, 17:40:22.27\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2618432\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:a1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.40100002,\"status\":1,\"voltage\":25.916},{\"current\":0.001,\"status\":1,\"voltage\":25.916},{\"current\":0.546,\"status\":1,\"voltage\":25.916},{\"current\":0.453,\"status\":1,\"voltage\":25.916},{\"current\":0.48200002,\"status\":1,\"voltage\":25.916},{\"current\":0.28,\"status\":1,\"voltage\":25.916},{\"current\":0.42400002,\"status\":1,\"voltage\":25.916},{\"current\":0.40600002,\"status\":1,\"voltage\":25.916},{\"current\":0.001,\"status\":1,\"voltage\":25.916},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.003,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301697\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577850", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:43", + "echoMap": {}, + "deviceId": "1016030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2618585\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"143965513\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"350 days, 2:50:11.49\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2618590\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:e9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25300002,\"status\":1,\"voltage\":26.400002},{\"current\":0.358,\"status\":1,\"voltage\":26.400002},{\"current\":0.358,\"status\":1,\"voltage\":26.400002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.400002},{\"current\":0.333,\"status\":1,\"voltage\":26.400002},{\"current\":0.335,\"status\":1,\"voltage\":26.400002},{\"current\":0.261,\"status\":1,\"voltage\":26.400002},{\"current\":0.254,\"status\":1,\"voltage\":26.400002},{\"current\":0.001,\"status\":1,\"voltage\":26.400002},{\"current\":0.001,\"status\":1,\"voltage\":26.836},{\"current\":0.002,\"status\":1,\"voltage\":26.836},{\"current\":0.001,\"status\":0,\"voltage\":26.836},{\"current\":0.24700001,\"status\":1,\"voltage\":26.836},{\"current\":0.254,\"status\":1,\"voltage\":26.836},{\"current\":0.526,\"status\":1,\"voltage\":26.836},{\"current\":0.001,\"status\":1,\"voltage\":26.836}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304073\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577851", + "createdBy": "0", + "createdTime": "2025-12-01 11:13:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:43", + "echoMap": {}, + "deviceId": "1016030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.160.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2616414\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"144017730\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"347 days, 18:26:20.52\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2616419\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:1b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.349,\"status\":1,\"voltage\":25.960001},{\"current\":0.555,\"status\":1,\"voltage\":25.960001},{\"current\":0.284,\"status\":1,\"voltage\":25.960001},{\"current\":0.284,\"status\":1,\"voltage\":25.960001},{\"current\":0.261,\"status\":1,\"voltage\":25.960001},{\"current\":0.33900002,\"status\":1,\"voltage\":25.960001},{\"current\":0.32500002,\"status\":1,\"voltage\":25.960001},{\"current\":0.27400002,\"status\":1,\"voltage\":25.960001},{\"current\":0.25300002,\"status\":1,\"voltage\":25.960001},{\"current\":0.25100002,\"status\":1,\"voltage\":26.250002},{\"current\":0.003,\"status\":1,\"voltage\":26.250002},{\"current\":0.264,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302331\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "704536423674577775", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "deviceId": "1016040016", + "name": "H3C前端交换机15", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"105265\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:20.78\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:75:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.145\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":1164787481,\"inFlow\":0,\"lastChangeTime\":\"421 days, 22:10:33.97\",\"lastInBytes\":1164787481,\"lastOutBytes\":588464004,\"outBytes\":588464004,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":2},{\"flow\":6829715,\"inBytes\":1719734766,\"inFlow\":44575,\"lastChangeTime\":\"171 days, 11:59:34.17\",\"lastInBytes\":1719734766,\"lastOutBytes\":2411586493,\"outBytes\":2411586493,\"outFlow\":6785140,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":930,\"inBytes\":1084826064,\"inFlow\":117,\"lastChangeTime\":\"371 days, 0:00:25.61\",\"lastInBytes\":1084826064,\"lastOutBytes\":3996112241,\"outBytes\":3996112241,\"outFlow\":813,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":730,\"inBytes\":7120307,\"inFlow\":0,\"lastChangeTime\":\"422 days, 23:55:04.50\",\"lastInBytes\":7120307,\"lastOutBytes\":70115778,\"outBytes\":70115778,\"outFlow\":730,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":10000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":19773,\"inFlow\":0,\"lastChangeTime\":\"256 days, 0:21:00.20\",\"lastInBytes\":19773,\"lastOutBytes\":791726,\"outBytes\":791726,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6853451,\"inBytes\":504541910,\"inFlow\":6804685,\"lastChangeTime\":\"0:01:20.77\",\"lastInBytes\":504541910,\"lastOutBytes\":1970225707,\"outBytes\":1970225707,\"outFlow\":48766,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.176516000\"}}", + "lastDiagTime": "2026-02-02 14:38:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577776", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1016040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133577\",\"inUnknownProtos\":\"3539932316\",\"index\":\"635\",\"lastChange\":\"0:01:28.10\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:da:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2917318317\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"33453035\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.144\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":897323,\"inBytes\":3406908872,\"inFlow\":875225,\"lastChangeTime\":\"349 days, 23:55:39.29\",\"lastInBytes\":3406908872,\"lastOutBytes\":807722246,\"outBytes\":807722246,\"outFlow\":22098,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":901445,\"inBytes\":1967480417,\"inFlow\":879182,\"lastChangeTime\":\"349 days, 23:55:26.07\",\"lastInBytes\":1967480417,\"lastOutBytes\":3886648065,\"outBytes\":3886648065,\"outFlow\":22262,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":826583,\"inBytes\":3293736836,\"inFlow\":807895,\"lastChangeTime\":\"1:49:41.27\",\"lastInBytes\":3293736836,\"lastOutBytes\":3336734946,\"outBytes\":3336734946,\"outFlow\":18687,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":899416,\"inBytes\":1245970830,\"inFlow\":878509,\"lastChangeTime\":\"1:49:40.77\",\"lastInBytes\":1245970830,\"lastOutBytes\":1262918787,\"outBytes\":1262918787,\"outFlow\":20906,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":622349,\"inBytes\":257795130,\"inFlow\":607349,\"lastChangeTime\":\"1:49:42.68\",\"lastInBytes\":257795130,\"lastOutBytes\":1686738811,\"outBytes\":1686738811,\"outFlow\":14999,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":900224,\"inBytes\":14147180,\"inFlow\":879479,\"lastChangeTime\":\"1:49:41.54\",\"lastInBytes\":14147180,\"lastOutBytes\":3539932316,\"outBytes\":3539932316,\"outFlow\":20744,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":901710,\"inBytes\":3534331982,\"inFlow\":879480,\"lastChangeTime\":\"349 days, 23:55:36.39\",\"lastInBytes\":3534331982,\"lastOutBytes\":3084306942,\"outBytes\":3084306942,\"outFlow\":22229,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":900092,\"inBytes\":80850030,\"inFlow\":878494,\"lastChangeTime\":\"349 days, 23:55:26.73\",\"lastInBytes\":80850030,\"lastOutBytes\":1922737689,\"outBytes\":1922737689,\"outFlow\":21597,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":826106,\"inBytes\":395084835,\"inFlow\":807529,\"lastChangeTime\":\"249 days, 13:00:46.66\",\"lastInBytes\":395084835,\"lastOutBytes\":1716292513,\"outBytes\":1716292513,\"outFlow\":18577,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":159,\"inBytes\":543413152,\"inFlow\":3,\"lastChangeTime\":\"1:48:35.88\",\"lastInBytes\":543413152,\"lastOutBytes\":1875524753,\"outBytes\":1875524753,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7701737,\"inBytes\":4084411667,\"inFlow\":192750,\"lastChangeTime\":\"0:01:28.10\",\"lastInBytes\":4084411667,\"lastOutBytes\":3177274554,\"outBytes\":3177274554,\"outFlow\":7508987,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.148501000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577777", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133524\",\"inUnknownProtos\":\"116834191\",\"index\":\"635\",\"lastChange\":\"0:01:12.83\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:47:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"93433792\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"33456218\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":829112,\"inBytes\":4291654551,\"inFlow\":809484,\"lastChangeTime\":\"349 days, 23:54:42.90\",\"lastInBytes\":4291654551,\"lastOutBytes\":3275871088,\"outBytes\":3275871088,\"outFlow\":19628,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":837581,\"inBytes\":2343708367,\"inFlow\":817823,\"lastChangeTime\":\"349 days, 23:54:36.45\",\"lastInBytes\":2343708367,\"lastOutBytes\":1128198649,\"outBytes\":1128198649,\"outFlow\":19757,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":892665,\"inBytes\":848943758,\"inFlow\":871953,\"lastChangeTime\":\"1:08:41.69\",\"lastInBytes\":848943758,\"lastOutBytes\":4120720025,\"outBytes\":4120720025,\"outFlow\":20712,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":967925,\"inBytes\":4239531086,\"inFlow\":946709,\"lastChangeTime\":\"281 days, 19:24:42.44\",\"lastInBytes\":4239531086,\"lastOutBytes\":1818347496,\"outBytes\":1818347496,\"outFlow\":21215,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":824533,\"inBytes\":1876895315,\"inFlow\":806424,\"lastChangeTime\":\"281 days, 19:24:44.05\",\"lastInBytes\":1876895315,\"lastOutBytes\":1544497728,\"outBytes\":1544497728,\"outFlow\":18108,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":983046,\"inBytes\":1185029470,\"inFlow\":961209,\"lastChangeTime\":\"281 days, 19:24:48.58\",\"lastInBytes\":1185029470,\"lastOutBytes\":116622535,\"outBytes\":116622535,\"outFlow\":21837,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":827022,\"inBytes\":2959451933,\"inFlow\":808506,\"lastChangeTime\":\"1:08:53.77\",\"lastInBytes\":2959451933,\"lastOutBytes\":1694508434,\"outBytes\":1694508434,\"outFlow\":18515,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":823136,\"inBytes\":3652838549,\"inFlow\":804115,\"lastChangeTime\":\"349 days, 23:54:37.86\",\"lastInBytes\":3652838549,\"lastOutBytes\":2680684883,\"outBytes\":2680684883,\"outFlow\":19021,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":816036,\"inBytes\":4135407388,\"inFlow\":797383,\"lastChangeTime\":\"349 days, 23:54:45.61\",\"lastInBytes\":4135407388,\"lastOutBytes\":3797617764,\"outBytes\":3797617764,\"outFlow\":18653,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":156,\"inBytes\":271505658,\"inFlow\":1,\"lastChangeTime\":\"1:09:05.43\",\"lastInBytes\":271505658,\"lastOutBytes\":1647025502,\"outBytes\":1647025502,\"outFlow\":154,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7854529,\"inBytes\":1724566544,\"inFlow\":188311,\"lastChangeTime\":\"0:01:12.82\",\"lastInBytes\":1724566544,\"lastOutBytes\":842549452,\"outBytes\":842549452,\"outFlow\":7666218,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.139051000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577778", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133665\",\"inUnknownProtos\":\"3261125276\",\"index\":\"635\",\"lastChange\":\"0:01:13.79\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d1:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2913775993\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"33460391\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":900204,\"inBytes\":1810927108,\"inFlow\":878461,\"lastChangeTime\":\"349 days, 23:54:58.62\",\"lastInBytes\":1810927108,\"lastOutBytes\":618599580,\"outBytes\":618599580,\"outFlow\":21743,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":903591,\"inBytes\":1418681911,\"inFlow\":881367,\"lastChangeTime\":\"349 days, 23:55:10.68\",\"lastInBytes\":1418681911,\"lastOutBytes\":3417189020,\"outBytes\":3417189020,\"outFlow\":22224,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":825220,\"inBytes\":2964670320,\"inFlow\":806692,\"lastChangeTime\":\"1:18:29.45\",\"lastInBytes\":2964670320,\"lastOutBytes\":493367665,\"outBytes\":493367665,\"outFlow\":18527,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1098199,\"inBytes\":2729812857,\"inFlow\":1073878,\"lastChangeTime\":\"281 days, 19:25:09.79\",\"lastInBytes\":2729812857,\"lastOutBytes\":4079437008,\"outBytes\":4079437008,\"outFlow\":24320,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":825129,\"inBytes\":3035473785,\"inFlow\":806460,\"lastChangeTime\":\"248 days, 0:41:51.31\",\"lastInBytes\":3035473785,\"lastOutBytes\":4271508531,\"outBytes\":4271508531,\"outFlow\":18668,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":897809,\"inBytes\":2476557196,\"inFlow\":877209,\"lastChangeTime\":\"248 days, 0:41:42.33\",\"lastInBytes\":2476557196,\"lastOutBytes\":3261125276,\"outBytes\":3261125276,\"outFlow\":20599,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":901048,\"inBytes\":1105519073,\"inFlow\":878563,\"lastChangeTime\":\"349 days, 23:55:06.84\",\"lastInBytes\":1105519073,\"lastOutBytes\":3214328126,\"outBytes\":3214328126,\"outFlow\":22484,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":902247,\"inBytes\":1234158969,\"inFlow\":880158,\"lastChangeTime\":\"349 days, 23:55:06.37\",\"lastInBytes\":1234158969,\"lastOutBytes\":2677328754,\"outBytes\":2677328754,\"outFlow\":22089,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":825582,\"inBytes\":1431676042,\"inFlow\":807090,\"lastChangeTime\":\"249 days, 13:00:37.11\",\"lastInBytes\":1431676042,\"lastOutBytes\":514195716,\"outBytes\":514195716,\"outFlow\":18491,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":825317,\"inBytes\":4187840633,\"inFlow\":806885,\"lastChangeTime\":\"248 days, 0:42:59.74\",\"lastInBytes\":4187840633,\"lastOutBytes\":736389661,\"outBytes\":736389661,\"outFlow\":18432,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":8161,\"inFlow\":0,\"lastChangeTime\":\"248 days, 0:44:45.98\",\"lastInBytes\":8161,\"lastOutBytes\":6361,\"outBytes\":6361,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":156,\"inBytes\":273196029,\"inFlow\":1,\"lastChangeTime\":\"248 days, 0:42:53.45\",\"lastInBytes\":273196029,\"lastOutBytes\":1662051976,\"outBytes\":1662051976,\"outFlow\":154,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8948713,\"inBytes\":3175880836,\"inFlow\":219014,\"lastChangeTime\":\"248 days, 0:42:50.69\",\"lastInBytes\":3175880836,\"lastOutBytes\":722161822,\"outBytes\":722161822,\"outFlow\":8729698,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.290629000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577779", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139088\",\"inUnknownProtos\":\"4189385195\",\"index\":\"635\",\"lastChange\":\"0:01:16.46\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:54:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2839579361\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"33479991\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":551865,\"inBytes\":3667525928,\"inFlow\":539095,\"lastChangeTime\":\"352 days, 7:59:13.69\",\"lastInBytes\":3667525928,\"lastOutBytes\":666074896,\"outBytes\":666074896,\"outFlow\":12770,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":551360,\"inBytes\":2447762778,\"inFlow\":538471,\"lastChangeTime\":\"258 days, 15:49:45.71\",\"lastInBytes\":2447762778,\"lastOutBytes\":598531500,\"outBytes\":598531500,\"outFlow\":12888,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":551843,\"inBytes\":2178997761,\"inFlow\":539097,\"lastChangeTime\":\"247 days, 23:13:29.14\",\"lastInBytes\":2178997761,\"lastOutBytes\":1380651292,\"outBytes\":1380651292,\"outFlow\":12745,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":551981,\"inBytes\":2865479106,\"inFlow\":539164,\"lastChangeTime\":\"247 days, 23:13:15.32\",\"lastInBytes\":2865479106,\"lastOutBytes\":868844281,\"outBytes\":868844281,\"outFlow\":12817,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":623595,\"inBytes\":2665302144,\"inFlow\":607835,\"lastChangeTime\":\"258 days, 15:50:39.20\",\"lastInBytes\":2665302144,\"lastOutBytes\":921750229,\"outBytes\":921750229,\"outFlow\":15760,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":622411,\"inBytes\":2209925177,\"inFlow\":606523,\"lastChangeTime\":\"258 days, 15:50:09.06\",\"lastInBytes\":2209925177,\"lastOutBytes\":4189385195,\"outBytes\":4189385195,\"outFlow\":15888,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":153,\"inBytes\":3305673275,\"inFlow\":0,\"lastChangeTime\":\"258 days, 15:49:10.24\",\"lastInBytes\":3305673275,\"lastOutBytes\":1231092957,\"outBytes\":1231092957,\"outFlow\":153,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":622675,\"inBytes\":3786116733,\"inFlow\":607310,\"lastChangeTime\":\"258 days, 15:49:26.97\",\"lastInBytes\":3786116733,\"lastOutBytes\":3829159267,\"outBytes\":3829159267,\"outFlow\":15365,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":551895,\"inBytes\":2097376848,\"inFlow\":539062,\"lastChangeTime\":\"258 days, 15:51:06.18\",\"lastInBytes\":2097376848,\"lastOutBytes\":1164276657,\"outBytes\":1164276657,\"outFlow\":12832,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1632579,\"inFlow\":0,\"lastChangeTime\":\"247 days, 22:45:08.17\",\"lastInBytes\":1632579,\"lastOutBytes\":12545643,\"outBytes\":12545643,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":24848441,\"inFlow\":0,\"lastChangeTime\":\"258 days, 15:48:35.78\",\"lastInBytes\":24848441,\"lastOutBytes\":1246414001,\"outBytes\":1246414001,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":11042979,\"inFlow\":0,\"lastChangeTime\":\"247 days, 23:15:55.35\",\"lastInBytes\":11042979,\"lastOutBytes\":453294391,\"outBytes\":453294391,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1461551,\"inFlow\":0,\"lastChangeTime\":\"247 days, 23:30:28.77\",\"lastInBytes\":1461551,\"lastOutBytes\":217585782,\"outBytes\":217585782,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":156,\"inBytes\":279797294,\"inFlow\":1,\"lastChangeTime\":\"258 days, 15:51:04.18\",\"lastInBytes\":279797294,\"lastOutBytes\":2056191477,\"outBytes\":2056191477,\"outFlow\":154,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4653011,\"inBytes\":1234498572,\"inFlow\":118137,\"lastChangeTime\":\"258 days, 15:51:13.71\",\"lastInBytes\":1234498572,\"lastOutBytes\":2021972461,\"outBytes\":2021972461,\"outFlow\":4534873,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.169263000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577780", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"198584\",\"inUnknownProtos\":\"1191438076\",\"index\":\"635\",\"lastChange\":\"0:01:16.24\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:53:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2852655551\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"1372\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":826158,\"inBytes\":3472532723,\"inFlow\":807139,\"lastChangeTime\":\"247 days, 23:40:57.64\",\"lastInBytes\":3472532723,\"lastOutBytes\":2587651820,\"outBytes\":2587651820,\"outFlow\":19018,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":826447,\"inBytes\":3557556627,\"inFlow\":807499,\"lastChangeTime\":\"247 days, 23:40:24.11\",\"lastInBytes\":3557556627,\"lastOutBytes\":4066369005,\"outBytes\":4066369005,\"outFlow\":18947,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1121246,\"inBytes\":2803294762,\"inFlow\":1095858,\"lastChangeTime\":\"249 days, 12:58:41.45\",\"lastInBytes\":2803294762,\"lastOutBytes\":3203036732,\"outBytes\":3203036732,\"outFlow\":25387,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":2041997,\"inBytes\":364912170,\"inFlow\":1415517,\"lastChangeTime\":\"247 days, 23:37:07.46\",\"lastInBytes\":364912170,\"lastOutBytes\":3337040456,\"outBytes\":3337040456,\"outFlow\":626480,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":826211,\"inBytes\":584682547,\"inFlow\":807669,\"lastChangeTime\":\"247 days, 23:36:32.07\",\"lastInBytes\":584682547,\"lastOutBytes\":1040274757,\"outBytes\":1040274757,\"outFlow\":18541,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":624707,\"inBytes\":3040531586,\"inFlow\":608951,\"lastChangeTime\":\"249 days, 12:58:35.02\",\"lastInBytes\":3040531586,\"lastOutBytes\":1191438076,\"outBytes\":1191438076,\"outFlow\":15756,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":607833,\"inFlow\":0,\"lastChangeTime\":\"247 days, 23:42:14.87\",\"lastInBytes\":607833,\"lastOutBytes\":9610685,\"outBytes\":9610685,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1479909,\"inFlow\":0,\"lastChangeTime\":\"247 days, 23:45:48.62\",\"lastInBytes\":1479909,\"lastOutBytes\":66395173,\"outBytes\":66395173,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":898982,\"inFlow\":0,\"lastChangeTime\":\"247 days, 23:41:40.63\",\"lastInBytes\":898982,\"lastOutBytes\":41919623,\"outBytes\":41919623,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":156,\"inBytes\":271736799,\"inFlow\":1,\"lastChangeTime\":\"247 days, 23:41:14.69\",\"lastInBytes\":271736799,\"lastOutBytes\":1673711112,\"outBytes\":1673711112,\"outFlow\":154,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6290297,\"inBytes\":2572341062,\"inFlow\":732047,\"lastChangeTime\":\"247 days, 23:45:31.24\",\"lastInBytes\":2572341062,\"lastOutBytes\":4131749304,\"outBytes\":4131749304,\"outFlow\":5558249,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.149612000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577781", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "deviceId": "1016040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"199041\",\"inUnknownProtos\":\"2680172111\",\"index\":\"635\",\"lastChange\":\"0:01:14.65\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:cc:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2568284775\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"503556755\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":896635,\"inBytes\":1875675053,\"inFlow\":875248,\"lastChangeTime\":\"0:37:08.46\",\"lastInBytes\":1875675053,\"lastOutBytes\":2092342838,\"outBytes\":2092342838,\"outFlow\":21387,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":898917,\"inBytes\":356507830,\"inFlow\":881668,\"lastChangeTime\":\"70 days, 16:17:05.08\",\"lastInBytes\":356507830,\"lastOutBytes\":3579958305,\"outBytes\":3579958305,\"outFlow\":17249,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":827763,\"inBytes\":3022965223,\"inFlow\":808552,\"lastChangeTime\":\"0:01:16.92\",\"lastInBytes\":3022965223,\"lastOutBytes\":4170422813,\"outBytes\":4170422813,\"outFlow\":19211,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":826212,\"inBytes\":530670508,\"inFlow\":807093,\"lastChangeTime\":\"0:01:16.91\",\"lastInBytes\":530670508,\"lastOutBytes\":2515272623,\"outBytes\":2515272623,\"outFlow\":19119,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1084418,\"inBytes\":3163967909,\"inFlow\":1060185,\"lastChangeTime\":\"281 days, 19:24:49.06\",\"lastInBytes\":3163967909,\"lastOutBytes\":1212420207,\"outBytes\":1212420207,\"outFlow\":24232,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":828182,\"inBytes\":739150116,\"inFlow\":809257,\"lastChangeTime\":\"366 days, 20:41:41.12\",\"lastInBytes\":739150116,\"lastOutBytes\":2680172111,\"outBytes\":2680172111,\"outFlow\":18924,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":826066,\"inBytes\":2543785743,\"inFlow\":806688,\"lastChangeTime\":\"0:01:16.44\",\"lastInBytes\":2543785743,\"lastOutBytes\":2124449479,\"outBytes\":2124449479,\"outFlow\":19378,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":553870,\"inBytes\":578471805,\"inFlow\":540509,\"lastChangeTime\":\"354 days, 9:45:07.11\",\"lastInBytes\":578471805,\"lastOutBytes\":1070415399,\"outBytes\":1070415399,\"outFlow\":13361,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":824924,\"inBytes\":1204803609,\"inFlow\":805724,\"lastChangeTime\":\"349 days, 23:54:42.81\",\"lastInBytes\":1204803609,\"lastOutBytes\":590637351,\"outBytes\":590637351,\"outFlow\":19200,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":826633,\"inBytes\":3932210700,\"inFlow\":806673,\"lastChangeTime\":\"366 days, 22:16:31.08\",\"lastInBytes\":3932210700,\"lastOutBytes\":3533656935,\"outBytes\":3533656935,\"outFlow\":19960,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":827930,\"inBytes\":2722312529,\"inFlow\":808505,\"lastChangeTime\":\"366 days, 20:21:24.39\",\"lastInBytes\":2722312529,\"lastOutBytes\":1762832893,\"outBytes\":1762832893,\"outFlow\":19424,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":873465,\"inBytes\":3733177576,\"inFlow\":856468,\"lastChangeTime\":\"70 days, 16:16:57.10\",\"lastInBytes\":3733177576,\"lastOutBytes\":1542896566,\"outBytes\":1542896566,\"outFlow\":16996,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":559176,\"inBytes\":2723593737,\"inFlow\":545756,\"lastChangeTime\":\"209 days, 14:41:06.42\",\"lastInBytes\":2723593737,\"lastOutBytes\":661572588,\"outBytes\":661572588,\"outFlow\":13420,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":909287,\"inBytes\":2853715684,\"inFlow\":887054,\"lastChangeTime\":\"249 days, 13:00:17.64\",\"lastInBytes\":2853715684,\"lastOutBytes\":238601499,\"outBytes\":238601499,\"outFlow\":22233,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":892976,\"inBytes\":358623618,\"inFlow\":871576,\"lastChangeTime\":\"353 days, 10:33:34.45\",\"lastInBytes\":358623618,\"lastOutBytes\":1061797254,\"outBytes\":1061797254,\"outFlow\":21400,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":157,\"inBytes\":274504793,\"inFlow\":1,\"lastChangeTime\":\"256 days, 1:29:31.38\",\"lastInBytes\":274504793,\"lastOutBytes\":1774907626,\"outBytes\":1774907626,\"outFlow\":156,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":12520611,\"inBytes\":1693561137,\"inFlow\":293788,\"lastChangeTime\":\"256 days, 0:30:19.39\",\"lastInBytes\":1693561137,\"lastOutBytes\":3656724544,\"outBytes\":3656724544,\"outFlow\":12226823,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.311765000\"}}", + "lastDiagTime": "2026-02-02 14:38:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577782", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1016040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1622\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"138069\",\"inUnknownProtos\":\"565089392\",\"index\":\"635\",\"lastChange\":\"0:01:19.30\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:0b:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4234449747\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"683644393\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"134\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":612050,\"inBytes\":4222143986,\"inFlow\":596124,\"lastChangeTime\":\"39 days, 23:35:45.31\",\"lastInBytes\":4222143986,\"lastOutBytes\":1315208862,\"outBytes\":1315208862,\"outFlow\":15926,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1101490,\"inBytes\":1039657939,\"inFlow\":1076175,\"lastChangeTime\":\"39 days, 23:35:38.64\",\"lastInBytes\":1039657939,\"lastOutBytes\":3253742079,\"outBytes\":3253742079,\"outFlow\":25314,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":804383,\"inBytes\":2863478608,\"inFlow\":785644,\"lastChangeTime\":\"39 days, 23:35:36.50\",\"lastInBytes\":2863478608,\"lastOutBytes\":4118071968,\"outBytes\":4118071968,\"outFlow\":18738,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":813093,\"inBytes\":2066734416,\"inFlow\":794468,\"lastChangeTime\":\"39 days, 23:35:24.04\",\"lastInBytes\":2066734416,\"lastOutBytes\":1490341982,\"outBytes\":1490341982,\"outFlow\":18625,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1228024,\"inBytes\":2584137898,\"inFlow\":1199527,\"lastChangeTime\":\"39 days, 23:40:22.76\",\"lastInBytes\":2584137898,\"lastOutBytes\":1914155992,\"outBytes\":1914155992,\"outFlow\":28496,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":818600,\"inBytes\":1910780409,\"inFlow\":799632,\"lastChangeTime\":\"41 days, 6:40:17.66\",\"lastInBytes\":1910780409,\"lastOutBytes\":565089392,\"outBytes\":565089392,\"outFlow\":18967,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1096868,\"inBytes\":417501151,\"inFlow\":1072412,\"lastChangeTime\":\"39 days, 23:34:13.73\",\"lastInBytes\":417501151,\"lastOutBytes\":3084864634,\"outBytes\":3084864634,\"outFlow\":24456,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":812265,\"inBytes\":1106488449,\"inFlow\":793512,\"lastChangeTime\":\"39 days, 23:34:18.07\",\"lastInBytes\":1106488449,\"lastOutBytes\":1916350896,\"outBytes\":1916350896,\"outFlow\":18752,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":813667,\"inBytes\":879537627,\"inFlow\":794715,\"lastChangeTime\":\"39 days, 23:34:26.56\",\"lastInBytes\":879537627,\"lastOutBytes\":1744366896,\"outBytes\":1744366896,\"outFlow\":18952,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1044903,\"inBytes\":3155107546,\"inFlow\":1020762,\"lastChangeTime\":\"40 days, 23:14:03.34\",\"lastInBytes\":3155107546,\"lastOutBytes\":1148129097,\"outBytes\":1148129097,\"outFlow\":24140,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":818005,\"inBytes\":2956678402,\"inFlow\":801468,\"lastChangeTime\":\"39 days, 23:36:15.31\",\"lastInBytes\":2956678402,\"lastOutBytes\":117580655,\"outBytes\":117580655,\"outFlow\":16536,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":809740,\"inBytes\":952235001,\"inFlow\":795238,\"lastChangeTime\":\"39 days, 23:35:26.73\",\"lastInBytes\":952235001,\"lastOutBytes\":297234391,\"outBytes\":297234391,\"outFlow\":14502,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":10810,\"inFlow\":0,\"lastChangeTime\":\"375 days, 1:45:08.38\",\"lastInBytes\":10810,\"lastOutBytes\":12466,\"outBytes\":12466,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":39955451,\"inFlow\":0,\"lastChangeTime\":\"376 days, 10:18:45.77\",\"lastInBytes\":39955451,\"lastOutBytes\":145326494,\"outBytes\":145326494,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":153,\"inBytes\":276044719,\"inFlow\":1,\"lastChangeTime\":\"376 days, 10:19:19.21\",\"lastInBytes\":276044719,\"lastOutBytes\":3236957555,\"outBytes\":3236957555,\"outFlow\":152,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10859026,\"inBytes\":4010639449,\"inFlow\":253022,\"lastChangeTime\":\"377 days, 11:09:44.27\",\"lastInBytes\":4010639449,\"lastOutBytes\":4022098521,\"outBytes\":4022098521,\"outFlow\":10606003,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.172309000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577783", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"405495\",\"inUnknownProtos\":\"1256510469\",\"index\":\"635\",\"lastChange\":\"367 days, 3:07:58.33\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f3:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4237026842\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"677480585\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":813989,\"inBytes\":411430999,\"inFlow\":795010,\"lastChangeTime\":\"39 days, 23:47:01.82\",\"lastInBytes\":411430999,\"lastOutBytes\":1644046426,\"outBytes\":1644046426,\"outFlow\":18978,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":813834,\"inBytes\":3497109588,\"inFlow\":794984,\"lastChangeTime\":\"39 days, 23:47:07.51\",\"lastInBytes\":3497109588,\"lastOutBytes\":1185494542,\"outBytes\":1185494542,\"outFlow\":18850,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1093032,\"inBytes\":1291363102,\"inFlow\":1069130,\"lastChangeTime\":\"39 days, 23:46:46.57\",\"lastInBytes\":1291363102,\"lastOutBytes\":1819018276,\"outBytes\":1819018276,\"outFlow\":23902,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":803969,\"inBytes\":734602903,\"inFlow\":790644,\"lastChangeTime\":\"39 days, 23:46:56.80\",\"lastInBytes\":734602903,\"lastOutBytes\":2410505259,\"outBytes\":2410505259,\"outFlow\":13325,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":879546,\"inBytes\":691904580,\"inFlow\":861615,\"lastChangeTime\":\"39 days, 23:46:53.09\",\"lastInBytes\":691904580,\"lastOutBytes\":2248344541,\"outBytes\":2248344541,\"outFlow\":17930,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":812028,\"inBytes\":4047634732,\"inFlow\":793444,\"lastChangeTime\":\"39 days, 23:47:03.32\",\"lastInBytes\":4047634732,\"lastOutBytes\":1256510469,\"outBytes\":1256510469,\"outFlow\":18584,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":997983,\"inBytes\":1534274731,\"inFlow\":972591,\"lastChangeTime\":\"39 days, 23:46:41.57\",\"lastInBytes\":1534274731,\"lastOutBytes\":3213828026,\"outBytes\":3213828026,\"outFlow\":25392,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1245978,\"inBytes\":956125802,\"inFlow\":1215523,\"lastChangeTime\":\"43 days, 21:36:33.32\",\"lastInBytes\":956125802,\"lastOutBytes\":2404163020,\"outBytes\":2404163020,\"outFlow\":30454,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":810209,\"inBytes\":1273115452,\"inFlow\":794045,\"lastChangeTime\":\"39 days, 23:48:07.67\",\"lastInBytes\":1273115452,\"lastOutBytes\":300654632,\"outBytes\":300654632,\"outFlow\":16163,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":883932,\"inBytes\":3782520979,\"inFlow\":862971,\"lastChangeTime\":\"39 days, 23:46:55.82\",\"lastInBytes\":3782520979,\"lastOutBytes\":1820862225,\"outBytes\":1820862225,\"outFlow\":20961,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":811847,\"inBytes\":1532032349,\"inFlow\":797127,\"lastChangeTime\":\"39 days, 23:47:04.11\",\"lastInBytes\":1532032349,\"lastOutBytes\":3884390608,\"outBytes\":3884390608,\"outFlow\":14719,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":809364,\"inBytes\":854878271,\"inFlow\":790814,\"lastChangeTime\":\"39 days, 23:45:34.81\",\"lastInBytes\":854878271,\"lastOutBytes\":2333059819,\"outBytes\":2333059819,\"outFlow\":18549,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":851526,\"inBytes\":4172455479,\"inFlow\":835169,\"lastChangeTime\":\"39 days, 23:49:42.01\",\"lastInBytes\":4172455479,\"lastOutBytes\":3312592339,\"outBytes\":3312592339,\"outFlow\":16357,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":884512,\"inBytes\":2870302181,\"inFlow\":862663,\"lastChangeTime\":\"47 days, 19:38:29.55\",\"lastInBytes\":2870302181,\"lastOutBytes\":141484070,\"outBytes\":141484070,\"outFlow\":21849,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":720,\"inBytes\":1981039702,\"inFlow\":275,\"lastChangeTime\":\"490 days, 1:19:33.61\",\"lastInBytes\":1981039702,\"lastOutBytes\":229590350,\"outBytes\":229590350,\"outFlow\":444,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":153,\"inBytes\":271971047,\"inFlow\":1,\"lastChangeTime\":\"367 days, 3:07:58.32\",\"lastInBytes\":271971047,\"lastOutBytes\":3052178773,\"outBytes\":3052178773,\"outFlow\":152,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":12557681,\"inBytes\":3901890079,\"inFlow\":283288,\"lastChangeTime\":\"375 days, 2:07:43.04\",\"lastInBytes\":3901890079,\"lastOutBytes\":3976378419,\"outBytes\":3976378419,\"outFlow\":12274393,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.318626000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577784", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"402849\",\"inUnknownProtos\":\"312018412\",\"index\":\"635\",\"lastChange\":\"367 days, 2:54:19.99\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e4:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1319876915\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"686085627\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":826027,\"inBytes\":1183940566,\"inFlow\":806968,\"lastChangeTime\":\"256 days, 1:08:07.23\",\"lastInBytes\":1183940566,\"lastOutBytes\":2245606000,\"outBytes\":2245606000,\"outFlow\":19058,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":821313,\"inBytes\":2194500367,\"inFlow\":805608,\"lastChangeTime\":\"387 days, 12:35:55.71\",\"lastInBytes\":2194500367,\"lastOutBytes\":2508880877,\"outBytes\":2508880877,\"outFlow\":15705,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":826867,\"inBytes\":1776854595,\"inFlow\":807563,\"lastChangeTime\":\"47 days, 17:23:04.69\",\"lastInBytes\":1776854595,\"lastOutBytes\":989557627,\"outBytes\":989557627,\"outFlow\":19304,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":822550,\"inBytes\":1782096925,\"inFlow\":803561,\"lastChangeTime\":\"0:01:19.35\",\"lastInBytes\":1782096925,\"lastOutBytes\":1422365175,\"outBytes\":1422365175,\"outFlow\":18988,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":826019,\"inBytes\":2706163172,\"inFlow\":807329,\"lastChangeTime\":\"0:01:19.35\",\"lastInBytes\":2706163172,\"lastOutBytes\":412567185,\"outBytes\":412567185,\"outFlow\":18689,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1123853,\"inBytes\":950053157,\"inFlow\":1098476,\"lastChangeTime\":\"473 days, 9:36:45.56\",\"lastInBytes\":950053157,\"lastOutBytes\":312018412,\"outBytes\":312018412,\"outFlow\":25376,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":827463,\"inBytes\":1258118497,\"inFlow\":808380,\"lastChangeTime\":\"0:01:19.37\",\"lastInBytes\":1258118497,\"lastOutBytes\":2132716181,\"outBytes\":2132716181,\"outFlow\":19082,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":826374,\"inBytes\":3469864941,\"inFlow\":807382,\"lastChangeTime\":\"0:34:08.90\",\"lastInBytes\":3469864941,\"lastOutBytes\":3912218164,\"outBytes\":3912218164,\"outFlow\":18992,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":827722,\"inBytes\":44793971,\"inFlow\":808445,\"lastChangeTime\":\"34 days, 0:33:36.69\",\"lastInBytes\":44793971,\"lastOutBytes\":3806126983,\"outBytes\":3806126983,\"outFlow\":19277,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":825457,\"inBytes\":4061762337,\"inFlow\":806490,\"lastChangeTime\":\"0:01:18.78\",\"lastInBytes\":4061762337,\"lastOutBytes\":1208138749,\"outBytes\":1208138749,\"outFlow\":18967,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":902492,\"inBytes\":2399430425,\"inFlow\":881061,\"lastChangeTime\":\"387 days, 10:54:23.39\",\"lastInBytes\":2399430425,\"lastOutBytes\":770668014,\"outBytes\":770668014,\"outFlow\":21430,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":827375,\"inBytes\":3886950399,\"inFlow\":808119,\"lastChangeTime\":\"40 days, 22:41:09.43\",\"lastInBytes\":3886950399,\"lastOutBytes\":1935166663,\"outBytes\":1935166663,\"outFlow\":19255,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":1098523,\"inBytes\":3893230611,\"inFlow\":1074552,\"lastChangeTime\":\"40 days, 22:38:03.52\",\"lastInBytes\":3893230611,\"lastOutBytes\":4264164460,\"outBytes\":4264164460,\"outFlow\":23971,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":826217,\"inBytes\":2016127960,\"inFlow\":807085,\"lastChangeTime\":\"47 days, 21:38:52.59\",\"lastInBytes\":2016127960,\"lastOutBytes\":2548393780,\"outBytes\":2548393780,\"outFlow\":19132,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":890389,\"inBytes\":763107853,\"inFlow\":874546,\"lastChangeTime\":\"40 days, 22:39:54.37\",\"lastInBytes\":763107853,\"lastOutBytes\":529930040,\"outBytes\":529930040,\"outFlow\":15842,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":153,\"inBytes\":1365863650,\"inFlow\":62,\"lastChangeTime\":\"387 days, 11:05:22.18\",\"lastInBytes\":1365863650,\"lastOutBytes\":1429070340,\"outBytes\":1429070340,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":13142948,\"inBytes\":1622308216,\"inFlow\":301232,\"lastChangeTime\":\"387 days, 10:57:51.46\",\"lastInBytes\":1622308216,\"lastOutBytes\":2984379275,\"outBytes\":2984379275,\"outFlow\":12841716,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.169600000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577785", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1016040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"404965\",\"inUnknownProtos\":\"1691396128\",\"index\":\"635\",\"lastChange\":\"367 days, 2:56:40.57\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d5:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1020447541\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"682785336\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":882509,\"inBytes\":2021631636,\"inFlow\":861227,\"lastChangeTime\":\"31 days, 10:03:42.00\",\"lastInBytes\":2021631636,\"lastOutBytes\":2574148765,\"outBytes\":2574148765,\"outFlow\":21281,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":810873,\"inBytes\":1626491910,\"inFlow\":792277,\"lastChangeTime\":\"367 days, 2:51:39.48\",\"lastInBytes\":1626491910,\"lastOutBytes\":746048959,\"outBytes\":746048959,\"outFlow\":18596,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":883293,\"inBytes\":2301693257,\"inFlow\":862103,\"lastChangeTime\":\"469 days, 0:42:06.10\",\"lastInBytes\":2301693257,\"lastOutBytes\":3020810155,\"outBytes\":3020810155,\"outFlow\":21190,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":871073,\"inBytes\":2381482708,\"inFlow\":852593,\"lastChangeTime\":\"367 days, 2:52:27.37\",\"lastInBytes\":2381482708,\"lastOutBytes\":1151662363,\"outBytes\":1151662363,\"outFlow\":18479,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":891309,\"inBytes\":3310058932,\"inFlow\":872639,\"lastChangeTime\":\"367 days, 2:53:05.37\",\"lastInBytes\":3310058932,\"lastOutBytes\":2569235988,\"outBytes\":2569235988,\"outFlow\":18670,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":811688,\"inBytes\":19942517,\"inFlow\":792155,\"lastChangeTime\":\"469 days, 0:42:08.45\",\"lastInBytes\":19942517,\"lastOutBytes\":1691195965,\"outBytes\":1691195965,\"outFlow\":19532,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":815891,\"inBytes\":1774303913,\"inFlow\":796702,\"lastChangeTime\":\"367 days, 2:51:04.71\",\"lastInBytes\":1774303913,\"lastOutBytes\":1142041407,\"outBytes\":1142041407,\"outFlow\":19189,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":812302,\"inBytes\":4214315419,\"inFlow\":793396,\"lastChangeTime\":\"469 days, 0:42:04.03\",\"lastInBytes\":4214315419,\"lastOutBytes\":575493326,\"outBytes\":575493326,\"outFlow\":18905,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":891295,\"inBytes\":1208057354,\"inFlow\":873019,\"lastChangeTime\":\"12:28:56.93\",\"lastInBytes\":1208057354,\"lastOutBytes\":822412016,\"outBytes\":822412016,\"outFlow\":18275,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1349634,\"inBytes\":328374381,\"inFlow\":1319614,\"lastChangeTime\":\"400 days, 20:17:10.24\",\"lastInBytes\":328374381,\"lastOutBytes\":2868219104,\"outBytes\":2868219104,\"outFlow\":30020,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":883196,\"inBytes\":4011568305,\"inFlow\":865390,\"lastChangeTime\":\"367 days, 2:54:59.00\",\"lastInBytes\":4011568305,\"lastOutBytes\":4161790560,\"outBytes\":4161790560,\"outFlow\":17805,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":940541,\"inBytes\":1623922499,\"inFlow\":920336,\"lastChangeTime\":\"375 days, 1:42:25.31\",\"lastInBytes\":1623922499,\"lastOutBytes\":2048692326,\"outBytes\":2048692326,\"outFlow\":20205,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":809909,\"inBytes\":188742936,\"inFlow\":791178,\"lastChangeTime\":\"469 days, 0:42:01.48\",\"lastInBytes\":188742936,\"lastOutBytes\":1399348854,\"outBytes\":1399348854,\"outFlow\":18731,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":807074,\"inBytes\":2465776143,\"inFlow\":792184,\"lastChangeTime\":\"368 days, 14:14:56.25\",\"lastInBytes\":2465776143,\"lastOutBytes\":1656331778,\"outBytes\":1656331778,\"outFlow\":14890,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":806709,\"inBytes\":2339886265,\"inFlow\":792139,\"lastChangeTime\":\"368 days, 14:14:54.61\",\"lastInBytes\":2339886265,\"lastOutBytes\":2923979109,\"outBytes\":2923979109,\"outFlow\":14570,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":709,\"inBytes\":273214673,\"inFlow\":282,\"lastChangeTime\":\"375 days, 1:42:10.46\",\"lastInBytes\":273214673,\"lastOutBytes\":3078538835,\"outBytes\":3078538835,\"outFlow\":426,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":13265677,\"inBytes\":3968663580,\"inFlow\":297554,\"lastChangeTime\":\"375 days, 1:42:28.97\",\"lastInBytes\":3968663580,\"lastOutBytes\":1227584794,\"outBytes\":1227584794,\"outFlow\":12968123,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.177530000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577786", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1016040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"407271\",\"inUnknownProtos\":\"1889460969\",\"index\":\"635\",\"lastChange\":\"0:01:17.93\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f7:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"106996047\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"685451380\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":820986,\"inBytes\":401444431,\"inFlow\":806961,\"lastChangeTime\":\"189 days, 17:34:05.94\",\"lastInBytes\":401444431,\"lastOutBytes\":939068731,\"outBytes\":939068731,\"outFlow\":14024,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1042791,\"inBytes\":178265000,\"inFlow\":1020671,\"lastChangeTime\":\"189 days, 17:34:15.74\",\"lastInBytes\":178265000,\"lastOutBytes\":1209328131,\"outBytes\":1209328131,\"outFlow\":22120,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1067893,\"inBytes\":795309875,\"inFlow\":1045744,\"lastChangeTime\":\"189 days, 17:34:08.44\",\"lastInBytes\":795309875,\"lastOutBytes\":33232087,\"outBytes\":33232087,\"outFlow\":22148,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1101043,\"inBytes\":4147871168,\"inFlow\":1077257,\"lastChangeTime\":\"189 days, 17:34:14.39\",\"lastInBytes\":4147871168,\"lastOutBytes\":86524005,\"outBytes\":86524005,\"outFlow\":23785,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":943932,\"inBytes\":886573225,\"inFlow\":924622,\"lastChangeTime\":\"189 days, 17:34:11.80\",\"lastInBytes\":886573225,\"lastOutBytes\":1904297589,\"outBytes\":1904297589,\"outFlow\":19309,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":898728,\"inBytes\":2442754415,\"inFlow\":877568,\"lastChangeTime\":\"471 days, 13:32:49.89\",\"lastInBytes\":2442754415,\"lastOutBytes\":1889460969,\"outBytes\":1889460969,\"outFlow\":21159,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":932521,\"inBytes\":2206720151,\"inFlow\":907243,\"lastChangeTime\":\"13:38:54.30\",\"lastInBytes\":2206720151,\"lastOutBytes\":1438853347,\"outBytes\":1438853347,\"outFlow\":25277,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1384088,\"inBytes\":2967426276,\"inFlow\":1353675,\"lastChangeTime\":\"491 days, 9:45:39.81\",\"lastInBytes\":2967426276,\"lastOutBytes\":3837237815,\"outBytes\":3837237815,\"outFlow\":30412,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1760649,\"inFlow\":0,\"lastChangeTime\":\"367 days, 2:08:14.49\",\"lastInBytes\":1760649,\"lastOutBytes\":191444420,\"outBytes\":191444420,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":27680311,\"inFlow\":0,\"lastChangeTime\":\"473 days, 12:40:03.62\",\"lastInBytes\":27680311,\"lastOutBytes\":979055492,\"outBytes\":979055492,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":133942522,\"inFlow\":0,\"lastChangeTime\":\"367 days, 2:12:53.33\",\"lastInBytes\":133942522,\"lastOutBytes\":68429863,\"outBytes\":68429863,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":719,\"inBytes\":271780319,\"inFlow\":287,\"lastChangeTime\":\"0:01:19.68\",\"lastInBytes\":271780319,\"lastOutBytes\":3028885178,\"outBytes\":3028885178,\"outFlow\":432,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8143554,\"inBytes\":3215142482,\"inFlow\":151364,\"lastChangeTime\":\"375 days, 1:53:52.59\",\"lastInBytes\":3215142482,\"lastOutBytes\":3693357417,\"outBytes\":3693357417,\"outFlow\":7992189,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.163550000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577787", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1016040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"407318\",\"inUnknownProtos\":\"1437695323\",\"index\":\"635\",\"lastChange\":\"118 days, 23:59:14.49\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:df:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3127966337\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"683570473\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":825455,\"inBytes\":3056934990,\"inFlow\":806328,\"lastChangeTime\":\"2:21:53.24\",\"lastInBytes\":3056934990,\"lastOutBytes\":2561661252,\"outBytes\":2561661252,\"outFlow\":19127,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":829801,\"inBytes\":320903684,\"inFlow\":810668,\"lastChangeTime\":\"118 days, 23:58:47.26\",\"lastInBytes\":320903684,\"lastOutBytes\":1293651029,\"outBytes\":1293651029,\"outFlow\":19132,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1100057,\"inBytes\":733556190,\"inFlow\":1075774,\"lastChangeTime\":\"400 days, 20:46:27.69\",\"lastInBytes\":733556190,\"lastOutBytes\":1938816178,\"outBytes\":1938816178,\"outFlow\":24282,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":869852,\"inBytes\":3280203971,\"inFlow\":853007,\"lastChangeTime\":\"189 days, 17:33:40.59\",\"lastInBytes\":3280203971,\"lastOutBytes\":53618444,\"outBytes\":53618444,\"outFlow\":16845,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":824544,\"inBytes\":3830345313,\"inFlow\":807565,\"lastChangeTime\":\"189 days, 17:33:42.66\",\"lastInBytes\":3830345313,\"lastOutBytes\":1802128568,\"outBytes\":1802128568,\"outFlow\":16979,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":824204,\"inBytes\":369929435,\"inFlow\":808145,\"lastChangeTime\":\"189 days, 17:33:48.82\",\"lastInBytes\":369929435,\"lastOutBytes\":1437695323,\"outBytes\":1437695323,\"outFlow\":16059,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":940203,\"inBytes\":4125109722,\"inFlow\":920271,\"lastChangeTime\":\"189 days, 17:33:58.88\",\"lastInBytes\":4125109722,\"lastOutBytes\":533149408,\"outBytes\":533149408,\"outFlow\":19931,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1505941,\"inBytes\":3726817382,\"inFlow\":1471589,\"lastChangeTime\":\"189 days, 17:33:48.15\",\"lastInBytes\":3726817382,\"lastOutBytes\":3285232070,\"outBytes\":3285232070,\"outFlow\":34352,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":83867,\"inFlow\":0,\"lastChangeTime\":\"375 days, 2:28:16.38\",\"lastInBytes\":83867,\"lastOutBytes\":14698812,\"outBytes\":14698812,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":113248504,\"inFlow\":0,\"lastChangeTime\":\"2:31:15.05\",\"lastInBytes\":113248504,\"lastOutBytes\":28016722,\"outBytes\":28016722,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":719,\"inBytes\":271748100,\"inFlow\":287,\"lastChangeTime\":\"118 days, 23:59:14.49\",\"lastInBytes\":271748100,\"lastOutBytes\":3052261453,\"outBytes\":3052261453,\"outFlow\":432,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7746491,\"inBytes\":1144093211,\"inFlow\":172346,\"lastChangeTime\":\"375 days, 2:28:11.58\",\"lastInBytes\":1144093211,\"lastOutBytes\":17625673,\"outBytes\":17625673,\"outFlow\":7574145,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.152761000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577788", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1957970\",\"inUnknownProtos\":\"4038625521\",\"index\":\"635\",\"lastChange\":\"367 days, 0:10:42.69\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:65:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2760453735\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"622163692\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":828396,\"inBytes\":3994217500,\"inFlow\":808382,\"lastChangeTime\":\"491 days, 7:34:59.89\",\"lastInBytes\":3994217500,\"lastOutBytes\":2703470679,\"outBytes\":2703470679,\"outFlow\":20014,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1088555,\"inBytes\":4147370614,\"inFlow\":1064485,\"lastChangeTime\":\"491 days, 7:34:44.76\",\"lastInBytes\":4147370614,\"lastOutBytes\":1124709333,\"outBytes\":1124709333,\"outFlow\":24069,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1099335,\"inBytes\":2386379910,\"inFlow\":1074395,\"lastChangeTime\":\"491 days, 7:34:51.66\",\"lastInBytes\":2386379910,\"lastOutBytes\":572038631,\"outBytes\":572038631,\"outFlow\":24939,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":825728,\"inBytes\":3567083798,\"inFlow\":806906,\"lastChangeTime\":\"491 days, 7:34:55.55\",\"lastInBytes\":3567083798,\"lastOutBytes\":907729687,\"outBytes\":907729687,\"outFlow\":18821,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":888720,\"inBytes\":4039328677,\"inFlow\":871691,\"lastChangeTime\":\"491 days, 7:34:50.83\",\"lastInBytes\":4039328677,\"lastOutBytes\":2390006959,\"outBytes\":2390006959,\"outFlow\":17029,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":819743,\"inBytes\":3276219508,\"inFlow\":805093,\"lastChangeTime\":\"491 days, 7:34:47.83\",\"lastInBytes\":3276219508,\"lastOutBytes\":4038478250,\"outBytes\":4038478250,\"outFlow\":14650,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":825173,\"inBytes\":2303451801,\"inFlow\":806067,\"lastChangeTime\":\"491 days, 7:34:50.60\",\"lastInBytes\":2303451801,\"lastOutBytes\":3749074174,\"outBytes\":3749074174,\"outFlow\":19106,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":823877,\"inBytes\":2416343821,\"inFlow\":804767,\"lastChangeTime\":\"2 days, 11:06:24.91\",\"lastInBytes\":2416343821,\"lastOutBytes\":2778888596,\"outBytes\":2778888596,\"outFlow\":19109,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2217539327,\"inFlow\":0,\"lastChangeTime\":\"31 days, 21:31:08.32\",\"lastInBytes\":2217539327,\"lastOutBytes\":3878818365,\"outBytes\":3878818365,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":815130,\"inBytes\":3383852391,\"inFlow\":801716,\"lastChangeTime\":\"11:18:30.85\",\"lastInBytes\":3383852391,\"lastOutBytes\":543333640,\"outBytes\":543333640,\"outFlow\":13413,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":820911,\"inBytes\":2093577402,\"inFlow\":806788,\"lastChangeTime\":\"491 days, 7:34:51.94\",\"lastInBytes\":2093577402,\"lastOutBytes\":235972404,\"outBytes\":235972404,\"outFlow\":14123,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":27285364,\"inFlow\":0,\"lastChangeTime\":\"2 days, 11:07:55.02\",\"lastInBytes\":27285364,\"lastOutBytes\":368171890,\"outBytes\":368171890,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1095610,\"inBytes\":942268924,\"inFlow\":1071113,\"lastChangeTime\":\"491 days, 7:34:40.17\",\"lastInBytes\":942268924,\"lastOutBytes\":1955303777,\"outBytes\":1955303777,\"outFlow\":24496,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":720,\"inBytes\":271899051,\"inFlow\":287,\"lastChangeTime\":\"375 days, 0:16:51.60\",\"lastInBytes\":271899051,\"lastOutBytes\":2891386535,\"outBytes\":2891386535,\"outFlow\":433,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9982644,\"inBytes\":1222716968,\"inFlow\":216670,\"lastChangeTime\":\"375 days, 0:19:02.19\",\"lastInBytes\":1222716968,\"lastOutBytes\":875790918,\"outBytes\":875790918,\"outFlow\":9765974,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.170258000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577789", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1016040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.160.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface160\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"403586\",\"inUnknownProtos\":\"26922708\",\"index\":\"635\",\"lastChange\":\"375 days, 2:23:52.79\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:12:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"738779996\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"685322216\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.160.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":891781,\"inBytes\":3770900835,\"inFlow\":874110,\"lastChangeTime\":\"189 days, 17:33:49.51\",\"lastInBytes\":3770900835,\"lastOutBytes\":545145521,\"outBytes\":545145521,\"outFlow\":17671,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1105623,\"inBytes\":1097026196,\"inFlow\":1081259,\"lastChangeTime\":\"400 days, 20:47:05.29\",\"lastInBytes\":1097026196,\"lastOutBytes\":1743047418,\"outBytes\":1743047418,\"outFlow\":24363,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":826491,\"inBytes\":1795762881,\"inFlow\":807686,\"lastChangeTime\":\"119 days, 0:43:33.20\",\"lastInBytes\":1795762881,\"lastOutBytes\":3723564614,\"outBytes\":3723564614,\"outFlow\":18804,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":895117,\"inBytes\":4113339124,\"inFlow\":873754,\"lastChangeTime\":\"119 days, 0:43:35.44\",\"lastInBytes\":4113339124,\"lastOutBytes\":516235823,\"outBytes\":516235823,\"outFlow\":21362,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":906340,\"inBytes\":1739876388,\"inFlow\":884143,\"lastChangeTime\":\"119 days, 0:43:44.70\",\"lastInBytes\":1739876388,\"lastOutBytes\":1015362769,\"outBytes\":1015362769,\"outFlow\":22196,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1255823,\"inBytes\":778998350,\"inFlow\":1227877,\"lastChangeTime\":\"189 days, 17:34:03.91\",\"lastInBytes\":778998350,\"lastOutBytes\":26922708,\"outBytes\":26922708,\"outFlow\":27946,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1125951,\"inBytes\":1639606896,\"inFlow\":1100319,\"lastChangeTime\":\"189 days, 17:34:04.15\",\"lastInBytes\":1639606896,\"lastOutBytes\":2146474332,\"outBytes\":2146474332,\"outFlow\":25632,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":931544,\"inBytes\":3159428316,\"inFlow\":906493,\"lastChangeTime\":\"119 days, 0:44:10.52\",\"lastInBytes\":3159428316,\"lastOutBytes\":3583505879,\"outBytes\":3583505879,\"outFlow\":25051,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":826338,\"inBytes\":3680173564,\"inFlow\":807137,\"lastChangeTime\":\"119 days, 0:44:14.44\",\"lastInBytes\":3680173564,\"lastOutBytes\":1948922423,\"outBytes\":1948922423,\"outFlow\":19201,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":826602,\"inBytes\":1646152910,\"inFlow\":807503,\"lastChangeTime\":\"119 days, 0:44:18.06\",\"lastInBytes\":1646152910,\"lastOutBytes\":3367479228,\"outBytes\":3367479228,\"outFlow\":19099,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":827593,\"inBytes\":3759289862,\"inFlow\":808287,\"lastChangeTime\":\"119 days, 0:44:20.58\",\"lastInBytes\":3759289862,\"lastOutBytes\":915521438,\"outBytes\":915521438,\"outFlow\":19306,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":59120,\"inFlow\":0,\"lastChangeTime\":\"376 days, 10:15:16.64\",\"lastInBytes\":59120,\"lastOutBytes\":1572663,\"outBytes\":1572663,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":28497341,\"inFlow\":0,\"lastChangeTime\":\"0:26:13.37\",\"lastInBytes\":28497341,\"lastOutBytes\":3543794,\"outBytes\":3543794,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":719,\"inBytes\":272659549,\"inFlow\":287,\"lastChangeTime\":\"375 days, 2:27:01.43\",\"lastInBytes\":272659549,\"lastOutBytes\":3085497096,\"outBytes\":3085497096,\"outFlow\":432,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10456884,\"inBytes\":1990825090,\"inFlow\":248022,\"lastChangeTime\":\"376 days, 10:15:22.43\",\"lastInBytes\":1990825090,\"lastOutBytes\":2275202012,\"outBytes\":2275202012,\"outFlow\":10208862,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:29.154916000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704536423674577790", + "createdBy": "0", + "createdTime": "2025-12-01 11:11:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1016040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.159.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif159\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"56\",\"lastChange\":\"0:05:19.04\",\"mTU\":\"1500\",\"macAddress\":\"58:ae:a8:72:83:0a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"9\",\"temperature\":\"34\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.159.64\",\"index\":\"56\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"27727\",\"329\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1772\",\"0\",\"2006\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:55\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":30989,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":633,\"opticalVoltage\":3290,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32520,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":558,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34409,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":561,\"opticalVoltage\":3260,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36419,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":558,\"opticalVoltage\":3260,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31860,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":561,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33689,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":559,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35250,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":561,\"opticalVoltage\":3242,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33060,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":562,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33389,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":616,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35700,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":561,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32459,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":601,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35130,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":559,\"opticalVoltage\":3239,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33419,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":601,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33840,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":563,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37380,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":562,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33990,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34169,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":559,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33869,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":578,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33299,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":597,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34979,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":558,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":1161,\"inBytes\":1591601832,\"inFlow\":62,\"lastChangeTime\":\"168 days, 13:39:11.26\",\"lastInBytes\":1591601832,\"lastOutBytes\":3695054792,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":214,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":3695054792,\"outFlow\":1099,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1058009664,\"inFlow\":0,\"lastChangeTime\":\"168 days, 13:38:34.67\",\"lastInBytes\":1058009664,\"lastOutBytes\":2315294445,\"opticalBiasCurrent\":35069,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":561,\"opticalVoltage\":3347,\"outBytes\":2315294445,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":12416442,\"inBytes\":1444201193,\"inFlow\":180688,\"lastChangeTime\":\"0:06:06.30\",\"lastInBytes\":1444201193,\"lastOutBytes\":2151656223,\"opticalBiasCurrent\":33060,\"opticalReceivePower\":530,\"opticalTemperature\":44,\"opticalTransmitPower\":563,\"opticalVoltage\":3339,\"outBytes\":2151656223,\"outFlow\":12235753,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":8512351,\"inBytes\":3581142491,\"inFlow\":2548,\"lastChangeTime\":\"0:06:06.37\",\"lastInBytes\":3581142491,\"lastOutBytes\":2629389352,\"opticalBiasCurrent\":38099,\"opticalReceivePower\":500,\"opticalTemperature\":44,\"opticalTransmitPower\":561,\"opticalVoltage\":3315,\"outBytes\":2629389352,\"outFlow\":8509803,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":10439411,\"inBytes\":1483754250,\"inFlow\":10132933,\"lastChangeTime\":\"257 days, 9:47:59.65\",\"lastInBytes\":1483754250,\"lastOutBytes\":138303328,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":206,\"opticalTemperature\":39,\"opticalTransmitPower\":251,\"opticalVoltage\":3344,\"outBytes\":138303328,\"outFlow\":306478,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10599988,\"inBytes\":1249438133,\"inFlow\":10311515,\"lastChangeTime\":\"256 days, 2:10:27.85\",\"lastInBytes\":1249438133,\"lastOutBytes\":3222925778,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":214,\"opticalTemperature\":40,\"opticalTransmitPower\":244,\"opticalVoltage\":3332,\"outBytes\":3222925778,\"outFlow\":288472,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7614885,\"inBytes\":1541512303,\"inFlow\":7405072,\"lastChangeTime\":\"256 days, 2:01:23.25\",\"lastInBytes\":1541512303,\"lastOutBytes\":1793384114,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":3,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3376,\"outBytes\":1793384114,\"outFlow\":209812,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8772009,\"inBytes\":2621933223,\"inFlow\":8524120,\"lastChangeTime\":\"256 days, 1:26:21.49\",\"lastInBytes\":2621933223,\"lastOutBytes\":4902264,\"opticalBiasCurrent\":11855,\"opticalReceivePower\":231,\"opticalTemperature\":36,\"opticalTransmitPower\":270,\"opticalVoltage\":3325,\"outBytes\":4902264,\"outFlow\":247889,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13717156,\"inBytes\":2126781142,\"inFlow\":13335580,\"lastChangeTime\":\"256 days, 1:44:55.31\",\"lastInBytes\":2126781142,\"lastOutBytes\":1977579911,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":128,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":1977579911,\"outFlow\":381575,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13419910,\"inBytes\":182844716,\"inFlow\":13036995,\"lastChangeTime\":\"268 days, 10:29:50.55\",\"lastInBytes\":182844716,\"lastOutBytes\":73943294,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":210,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":73943294,\"outFlow\":382914,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13249310,\"inBytes\":3294595973,\"inFlow\":12874446,\"lastChangeTime\":\"256 days, 1:40:07.67\",\"lastInBytes\":3294595973,\"lastOutBytes\":784754520,\"opticalBiasCurrent\":12685,\"opticalReceivePower\":20,\"opticalTemperature\":38,\"opticalTransmitPower\":247,\"opticalVoltage\":3325,\"outBytes\":784754520,\"outFlow\":374863,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10937555,\"inBytes\":677129682,\"inFlow\":10625760,\"lastChangeTime\":\"258 days, 10:42:20.16\",\"lastInBytes\":677129682,\"lastOutBytes\":1631637377,\"opticalBiasCurrent\":12939,\"opticalReceivePower\":178,\"opticalTemperature\":39,\"opticalTransmitPower\":242,\"opticalVoltage\":3325,\"outBytes\":1631637377,\"outFlow\":311794,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":12902824,\"inBytes\":1970599496,\"inFlow\":12524528,\"lastChangeTime\":\"256 days, 1:20:19.88\",\"lastInBytes\":1970599496,\"lastOutBytes\":3175820664,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":227,\"opticalTemperature\":40,\"opticalTransmitPower\":251,\"opticalVoltage\":3354,\"outBytes\":3175820664,\"outFlow\":378296,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6445394,\"inBytes\":29331339,\"inFlow\":5664747,\"lastChangeTime\":\"248 days, 0:35:32.17\",\"lastInBytes\":29331339,\"lastOutBytes\":1270156331,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":15,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":1270156331,\"outFlow\":780647,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4765818,\"inBytes\":476506609,\"inFlow\":4615721,\"lastChangeTime\":\"258 days, 17:24:28.56\",\"lastInBytes\":476506609,\"lastOutBytes\":56083463,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":5,\"opticalTemperature\":41,\"opticalTransmitPower\":245,\"opticalVoltage\":3376,\"outBytes\":56083463,\"outFlow\":150097,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9117296,\"inBytes\":2422225881,\"inFlow\":8842906,\"lastChangeTime\":\"248 days, 1:32:49.60\",\"lastInBytes\":2422225881,\"lastOutBytes\":388061278,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":119,\"opticalTemperature\":40,\"opticalTransmitPower\":250,\"opticalVoltage\":3376,\"outBytes\":388061278,\"outFlow\":274389,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8189912,\"inBytes\":2187656804,\"inFlow\":7947322,\"lastChangeTime\":\"1:01:41.27\",\"lastInBytes\":2187656804,\"lastOutBytes\":2194107104,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":109,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3378,\"outBytes\":2194107104,\"outFlow\":242589,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7877291,\"inBytes\":2361877353,\"inFlow\":7635567,\"lastChangeTime\":\"1:01:57.64\",\"lastInBytes\":2361877353,\"lastOutBytes\":3138859590,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":1,\"opticalTemperature\":36,\"opticalTransmitPower\":244,\"opticalVoltage\":3378,\"outBytes\":3138859590,\"outFlow\":241724,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6972436,\"inBytes\":650901290,\"inFlow\":62856,\"lastChangeTime\":\"1:01:50.80\",\"lastInBytes\":650901290,\"lastOutBytes\":849023547,\"opticalBiasCurrent\":13392,\"opticalReceivePower\":279,\"opticalTemperature\":40,\"opticalTransmitPower\":244,\"opticalVoltage\":3328,\"outBytes\":849023547,\"outFlow\":6909580,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":228,\"opticalVoltage\":3376,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":246,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":251,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12960,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":243,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":246,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":244,\"opticalVoltage\":3376,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12527,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":237,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31889,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":562,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":28608,\"inBytes\":3131247679,\"inFlow\":11856,\"lastChangeTime\":\"0:05:37.37\",\"lastInBytes\":3131247679,\"lastOutBytes\":483424861,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":483424861,\"outFlow\":16752,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":98004205,\"inBytes\":2148157974,\"inFlow\":31420252,\"lastChangeTime\":\"0:05:21.35\",\"lastInBytes\":2148157974,\"lastOutBytes\":790787457,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":790787457,\"outFlow\":66583953,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":73781,\"inBytes\":262628650,\"inFlow\":37225,\"lastChangeTime\":\"0:05:19.65\",\"lastInBytes\":262628650,\"lastOutBytes\":1308584525,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1308584525,\"outFlow\":36555,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":992,\"inBytes\":236324952,\"inFlow\":17,\"lastChangeTime\":\"300 days, 10:19:14.62\",\"lastInBytes\":236324952,\"lastOutBytes\":3881156253,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3881156253,\"outFlow\":975,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2496320,\"inBytes\":58946918,\"inFlow\":58933,\"lastChangeTime\":\"420 days, 1:25:08.99\",\"lastInBytes\":58946918,\"lastOutBytes\":2638568563,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2638568563,\"outFlow\":2437386,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":28732506,\"inBytes\":3302506740,\"inFlow\":563538,\"lastChangeTime\":\"168 days, 13:41:54.75\",\"lastInBytes\":3302506740,\"lastOutBytes\":773165582,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":773165582,\"outFlow\":28168968,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3709728,\"inBytes\":2745401531,\"inFlow\":549334,\"lastChangeTime\":\"0:05:19.72\",\"lastInBytes\":2745401531,\"lastOutBytes\":3969647012,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3969647012,\"outFlow\":3160394,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27992808,\"inBytes\":1835741654,\"inFlow\":879048,\"lastChangeTime\":\"0:05:19.77\",\"lastInBytes\":1835741654,\"lastOutBytes\":2957322516,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2957322516,\"outFlow\":27113760,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4949680,\"inBytes\":691150193,\"inFlow\":857705,\"lastChangeTime\":\"0:05:19.81\",\"lastInBytes\":691150193,\"lastOutBytes\":1285388322,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1285388322,\"outFlow\":4091975,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1582,\"inBytes\":2551662209,\"inFlow\":260,\"lastChangeTime\":\"292 days, 9:06:58.62\",\"lastInBytes\":2551662209,\"lastOutBytes\":3098351637,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3098351637,\"outFlow\":1321,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1229,\"inBytes\":1789515125,\"inFlow\":158,\"lastChangeTime\":\"292 days, 9:09:41.75\",\"lastInBytes\":1789515125,\"lastOutBytes\":855089326,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":855089326,\"outFlow\":1070,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":3949601,\"inBytes\":2886062756,\"inFlow\":33285,\"lastChangeTime\":\"412 days, 13:59:47.64\",\"lastInBytes\":2886062756,\"lastOutBytes\":544222205,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":544222205,\"outFlow\":3916315,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":40820,\"inFlow\":0,\"lastChangeTime\":\"168 days, 14:42:31.51\",\"lastInBytes\":40820,\"lastOutBytes\":1025861,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1025861,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":131,\"inBytes\":44839546,\"inFlow\":111,\"lastChangeTime\":\"420 days, 12:27:23.79\",\"lastInBytes\":44839546,\"lastOutBytes\":9576966,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":9576966,\"outFlow\":20,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":13265707,\"inFlow\":0,\"lastChangeTime\":\"421 days, 22:50:27.76\",\"lastInBytes\":13265707,\"lastOutBytes\":2253430,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2253430,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:36.422143000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "598009801525197961", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:28", + "echoMap": {}, + "deviceId": "1016110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.159.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.90\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"426 days, 14:40:36.42\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"9622574\",\"inErrors\":\"0\",\"inNUcastPkts\":\"19659447\",\"inOctets\":\"4118202169\",\"inUcastPkts\":\"2079451648\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9d:34\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3827219027\",\"outQLen\":\"0\",\"outUcastPkts\":\"1842392404\",\"specific\":\"0.0\",\"speed\":\"100000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.159.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1017": { + "ndmAlarmHost": [ + { + "id": "707147368653402305", + "createdBy": null, + "createdTime": "2025-12-08 13:44:37", + "updatedBy": null, + "updatedTime": "2025-12-08 13:44:37", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.161.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "600593172812292099", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060001", + "name": "[611](10)天潼内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703001006017611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292100", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060002", + "name": "[607](10)天潼环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703053005017607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292102", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060004", + "name": "[612](10)天潼内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703001006017612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292103", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060005", + "name": "[613](10)天潼内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703001006017613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292104", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060006", + "name": "[618](10)天潼消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703001006017618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292105", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060007", + "name": "[321](10)天潼5#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292106", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1017060008", + "name": "[312](10)天潼5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292107", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060009", + "name": "[320](10)天潼5#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292109", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060011", + "name": "[313](10)天潼5#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292110", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1017060012", + "name": "[322](10)天潼5#口楼梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292111", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1017060013", + "name": "[316](10)天潼5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593172812292112", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060014", + "name": "[315](10)天潼5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259392", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060015", + "name": "[208](10)天潼5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059004017208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259393", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060016", + "name": "[311](10)天潼5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259394", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060017", + "name": "[319](10)天潼5#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259395", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060018", + "name": "[318](10)天潼5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259396", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060019", + "name": "[323](10)天潼5#口楼梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259397", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060020", + "name": "[324](10)天潼5#口楼梯7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259398", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060021", + "name": "[407](10)天潼3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701007006017407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259399", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060022", + "name": "[408](10)天潼3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701007006017408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259400", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060023", + "name": "[502](10)天潼票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701030006017502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259401", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060024", + "name": "[354](10)天潼公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701040006017354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259402", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060025", + "name": "[355](10)天潼公共区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701040006017355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259403", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060026", + "name": "[314](10)天潼5#口入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701059006017314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259404", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1017060027", + "name": "[329](10)天潼6#口入5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259405", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1017060028", + "name": "[356](10)天潼公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701040006017356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259406", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1017060029", + "name": "[362](10)天潼安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701085006017362", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259407", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1017060030", + "name": "[201](10)天潼厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701035004017201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593177107259408", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1017060031", + "name": "[404](10)天潼2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701006006017404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226688", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1017060032", + "name": "[405](10)天潼3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701007006017405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226689", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1017060033", + "name": "[406](10)天潼3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701007006017406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226691", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1017060035", + "name": "[401](10)天潼1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701005006017401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226692", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1017060036", + "name": "[501](10)天潼客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701001006017501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226693", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1017060037", + "name": "[340](10)天潼#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701045006017340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226694", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1017060038", + "name": "[343](10)天潼#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701045006017343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226695", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1017060039", + "name": "[341](10)天潼#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701045006017341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226696", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1017060040", + "name": "[338](10)天潼#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701045006017338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226697", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1017060041", + "name": "[342](10)天潼#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701045006017342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226698", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1017060042", + "name": "[339](10)天潼#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701045006017339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226699", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1017060043", + "name": "[202](10)天潼厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701035004017202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226700", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1017060044", + "name": "[601](10)天潼车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703042004017601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226701", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1017060045", + "name": "[402](10)天潼1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701005006017402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226702", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1017060046", + "name": "[403](10)天潼1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701005006017403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226703", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1017060047", + "name": "[360](10)天潼10-12换乘通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701081006017360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593181402226704", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1017060048", + "name": "[358](10)天潼B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701040006017358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193985", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060050", + "name": "[363](10)天潼安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701085006017363", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193986", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060051", + "name": "[203](10)天潼厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701035004017203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193987", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060052", + "name": "[504](10)天潼票机3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701030006017504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193988", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1017060053", + "name": "[506](10)天潼票亭2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701025006017506", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193989", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-12-22 12:55:58", + "echoMap": {}, + "deviceId": "1017060054", + "name": "[361](10)天潼1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701036005017361", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193990", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1017060055", + "name": "[357](10)天潼B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701040006017357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193991", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1017060056", + "name": "[303](10)天潼1#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193992", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060057", + "name": "[609](10)天潼环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703053005017609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193993", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060058", + "name": "[610](10)天潼环控室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703053005017610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193994", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060059", + "name": "[614](10)天潼内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703001006017614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193995", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060060", + "name": "[307](10)天潼1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193996", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060061", + "name": "[302](10)天潼1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193997", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060062", + "name": "[309](10)天潼1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193998", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1017060063", + "name": "[301](10)天潼1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697193999", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1017060064", + "name": "[306](10)天潼1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593185697194000", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060065", + "name": "[305](10)天潼1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161280", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060066", + "name": "[304](10)天潼1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161281", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060067", + "name": "[310](10)天潼1#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161282", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1017060068", + "name": "[308](10)天潼1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055006017308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161283", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1017060069", + "name": "[207](10)天潼1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701055004017207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161284", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060070", + "name": "[335](10)天潼6#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161285", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060071", + "name": "[334](10)天潼6#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161286", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060072", + "name": "[330](10)天潼6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161287", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060073", + "name": "[333](10)天潼6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060005017333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161288", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1017060074", + "name": "[337](10)天潼6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060005017337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161289", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1017060075", + "name": "[331](10)天潼6#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161290", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1017060076", + "name": "[332](10)天潼6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060005017332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161291", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060077", + "name": "[209](10)天潼6#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161292", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060078", + "name": "[336](10)天潼6#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161293", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1017060079", + "name": "[327](10)天潼6#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161294", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060080", + "name": "[326](10)天潼6#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161295", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060081", + "name": "[325](10)天潼6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593189992161296", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1017060082", + "name": "[328](10)天潼6#口入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128577", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2026-02-02 11:58:17", + "echoMap": {}, + "deviceId": "1017060084", + "name": "[602](10)天潼弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128578", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1017060085", + "name": "[603](10)天潼弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128579", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060086", + "name": "[604](10)天潼弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128580", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060087", + "name": "[605](10)天潼弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128581", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060088", + "name": "[105](10)天潼上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702007006017105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128582", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1017060089", + "name": "[108](10)天潼下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702012006017108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128583", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1017060090", + "name": "[107](10)天潼下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702012006017107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128584", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1017060091", + "name": "[205](10)天潼上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702001004017205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128585", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1017060092", + "name": "[616](10)天潼内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703021006017616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128586", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1017060093", + "name": "[606](10)天潼屏蔽门设备室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128587", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1017060094", + "name": "[350](10)天潼10-12换乘楼梯2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128588", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1017060095", + "name": "[349](10)天潼10-12换乘楼梯2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128589", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1017060096", + "name": "[344](10)天潼#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128590", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1017060097", + "name": "[106](10)天潼上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702007006017106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128591", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1017060098", + "name": "[352](10)天潼10-12换乘楼梯2-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593194287128592", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1017060099", + "name": "[351](10)天潼10-12换乘楼梯2-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017005017351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095872", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1017060100", + "name": "[353](10)天潼10-12换乘楼梯2-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095873", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1017060101", + "name": "[110](10)天潼下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702012006017110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095874", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1017060102", + "name": "[109](10)天潼下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702012006017109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095875", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1017060103", + "name": "[206](10)天潼下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702001004017206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095876", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1017060104", + "name": "[346](10)天潼10-12换乘楼梯1-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.161.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095877", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1017060105", + "name": "[347](10)天潼10-12换乘楼梯1-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095878", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1017060106", + "name": "[103](10)天潼上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702007006017103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095879", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1017060107", + "name": "[104](10)天潼上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702007006017104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095880", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1017060108", + "name": "[348](10)天潼10-12换乘楼梯1-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017005017348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095881", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1017060109", + "name": "[112](10)天潼下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702012006017112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095882", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1017060110", + "name": "[111](10)天潼下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702012006017111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095883", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1017060111", + "name": "[204](10)天潼上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702001004017204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095884", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1017060112", + "name": "[345](10)天潼#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702017006017345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095885", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1017060113", + "name": "[359](10)天潼B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702002006017359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095886", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1017060114", + "name": "[101](10)天潼上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702007006017101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095887", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1017060115", + "name": "[102](10)天潼上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061702007006017102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593198582095888", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1017060116", + "name": "[619](10)天潼通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063168", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1017060117", + "name": "[620](10)天潼通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703048005017620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063169", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1017060118", + "name": "[621](10)天潼气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703067005017621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063170", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1017060119", + "name": "[622](10)天潼内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703004006017622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063171", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1017060120", + "name": "[623](10)天潼内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703001006017623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063172", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1017060121", + "name": "[364](10)天潼6#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017364", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063173", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1017060122", + "name": "[365](10)天潼6#口入6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061701060006017365", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593202877063174", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1017060123", + "name": "[624](10)天潼气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061703067005017624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410109030660438", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1017060124", + "name": "[626](10)天潼四川北下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061704012004017626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410109030660439", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-12-11 10:42:06", + "echoMap": {}, + "deviceId": "1017060125", + "name": "[625](10)天潼四川北上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.162.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061704012004017625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "600593172812292098", + "createdBy": "0", + "createdTime": "2025-02-28 10:15:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "deviceId": "1017070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.161.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061700000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"393922\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4245578171\",\"inUcastPkts\":\"1130620109\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:65:5b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3264223592\",\"outQLen\":\"0\",\"outUcastPkts\":\"530866477\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.161.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:17\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZC1589\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"40\",\"CPU使用率\":\"14\"}}", + "lastDiagTime": "2026-02-02 14:35:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "566515343212695570", + "createdBy": "0", + "createdTime": "2024-11-26 13:53:07", + "updatedBy": null, + "updatedTime": "2025-12-23 10:15:39", + "echoMap": {}, + "deviceId": "1001060010", + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.161.51", + "manageUrl": "http:\\\\10.18.161.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "600593263006605318", + "createdBy": "2", + "createdTime": "2025-02-28 10:19:22", + "updatedBy": null, + "updatedTime": "2026-01-29 09:31:17", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.161.52", + "manageUrl": "http:\\\\10.18.161.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "600593172812292097", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "deviceId": "1017090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.161.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"14.66\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"201 days, 23:13:29.43\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3475318\",\"inErrors\":\"0\",\"inNUcastPkts\":\"9307568\",\"inOctets\":\"3499084787\",\"inUcastPkts\":\"1738161813\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ab:fc\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1761743809\",\"outQLen\":\"0\",\"outUcastPkts\":\"1588833786\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.161.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "600593353200918535", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 10:29:09", + "echoMap": {}, + "deviceId": "1017050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.161.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061700000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.161.22;10.18.161.23" + }, + { + "id": "600593353200918536", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:18", + "echoMap": {}, + "deviceId": "1017050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.161.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061700000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"11216515\",\"inErrors\":\"0\",\"inNUcastPkts\":\"19459499\",\"inOctets\":\"2377515416\",\"inUcastPkts\":\"750111368\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:73:39\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3918532995\",\"outQLen\":\"0\",\"outUcastPkts\":\"4016736496\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.161.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:18\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":886093173,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16122\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"59\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:35:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.161.22" + }, + { + "id": "600593353200918537", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:19", + "echoMap": {}, + "deviceId": "1017050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.161.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061700000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"11216223\",\"inErrors\":\"0\",\"inNUcastPkts\":\"24714573\",\"inOctets\":\"2832621992\",\"inUcastPkts\":\"1885954004\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:73:b7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"885924158\",\"outQLen\":\"0\",\"outUcastPkts\":\"2949710285\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3220\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3280\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.161.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:19\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":886093173,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16123\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"59\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:35:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.161.23" + } + ], + "ndmSecurityBox": [ + { + "id": "704530565339030651", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:25", + "echoMap": {}, + "deviceId": "1017030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030652", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "deviceId": "1017030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3034278\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166921646\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"14 days, 22:14:33.16\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3034283\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:f3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.326002},{\"current\":0.001,\"status\":1,\"voltage\":26.326002},{\"current\":0.569,\"status\":1,\"voltage\":26.326002},{\"current\":0.001,\"status\":1,\"voltage\":26.326002},{\"current\":0.0,\"status\":1,\"voltage\":26.326002},{\"current\":0.0,\"status\":1,\"voltage\":26.326002},{\"current\":0.0,\"status\":1,\"voltage\":26.326002},{\"current\":0.0,\"status\":1,\"voltage\":26.326002},{\"current\":0.0,\"status\":1,\"voltage\":26.326002},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208305399\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030653", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "deviceId": "1017030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2598712\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"142873050\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2598717\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:12:81\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.429},{\"current\":0.001,\"status\":1,\"voltage\":26.504002},{\"current\":0.003,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.504002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208303566\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030654", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:27", + "echoMap": {}, + "deviceId": "1017030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10698704\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"597476746\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10698709\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:64\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.257002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.257002},{\"current\":0.52900004,\"status\":1,\"voltage\":26.257002},{\"current\":0.26000002,\"status\":1,\"voltage\":26.257002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.257002},{\"current\":0.259,\"status\":1,\"voltage\":26.257002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.257002},{\"current\":0.0,\"status\":1,\"voltage\":26.257002},{\"current\":0.0,\"status\":1,\"voltage\":26.257002},{\"current\":0.0,\"status\":1,\"voltage\":26.337002},{\"current\":0.003,\"status\":1,\"voltage\":26.337002},{\"current\":0.001,\"status\":1,\"voltage\":26.337002},{\"current\":0.001,\"status\":1,\"voltage\":26.337002},{\"current\":0.001,\"status\":1,\"voltage\":26.337002},{\"current\":0.001,\"status\":1,\"voltage\":26.337002},{\"current\":0.001,\"status\":1,\"voltage\":26.337002}],\"fanSpeeds\":[1260,1260],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300868\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030655", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:27", + "echoMap": {}, + "deviceId": "1017030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10699744\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"597535940\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10699749\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:42\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.273,\"status\":1,\"voltage\":26.121},{\"current\":0.291,\"status\":1,\"voltage\":26.121},{\"current\":0.528,\"status\":1,\"voltage\":26.121},{\"current\":0.30900002,\"status\":1,\"voltage\":26.121},{\"current\":0.24900001,\"status\":1,\"voltage\":26.121},{\"current\":0.27600002,\"status\":1,\"voltage\":26.121},{\"current\":0.25100002,\"status\":1,\"voltage\":26.121},{\"current\":0.21100001,\"status\":1,\"voltage\":26.121},{\"current\":0.0,\"status\":1,\"voltage\":26.121},{\"current\":0.0,\"status\":1,\"voltage\":26.417002},{\"current\":0.003,\"status\":1,\"voltage\":26.417002},{\"current\":0.001,\"status\":1,\"voltage\":26.417002},{\"current\":0.001,\"status\":1,\"voltage\":26.417002},{\"current\":0.001,\"status\":1,\"voltage\":26.417002},{\"current\":0.001,\"status\":1,\"voltage\":26.417002},{\"current\":0.001,\"status\":1,\"voltage\":26.417002}],\"fanSpeeds\":[1230,1260],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301858\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030656", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:28", + "echoMap": {}, + "deviceId": "1017030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10701032\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"597607221\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10701037\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:16\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24100001,\"status\":1,\"voltage\":25.957},{\"current\":0.261,\"status\":1,\"voltage\":25.957},{\"current\":0.535,\"status\":1,\"voltage\":25.957},{\"current\":0.266,\"status\":1,\"voltage\":25.957},{\"current\":0.26700002,\"status\":1,\"voltage\":25.957},{\"current\":0.298,\"status\":1,\"voltage\":25.957},{\"current\":0.256,\"status\":1,\"voltage\":25.957},{\"current\":0.24000001,\"status\":1,\"voltage\":25.957},{\"current\":0.231,\"status\":1,\"voltage\":25.957},{\"current\":0.256,\"status\":1,\"voltage\":26.512001},{\"current\":0.003,\"status\":1,\"voltage\":26.512001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.512001},{\"current\":0.319,\"status\":1,\"voltage\":26.512001},{\"current\":0.31800002,\"status\":1,\"voltage\":26.512001},{\"current\":0.25,\"status\":1,\"voltage\":26.512001},{\"current\":0.001,\"status\":1,\"voltage\":26.512001}],\"fanSpeeds\":[1980,1920],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0001512208301302\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030657", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:28", + "echoMap": {}, + "deviceId": "1017030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10701594\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"597637101\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10701599\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:79\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25500003,\"status\":1,\"voltage\":25.782001},{\"current\":0.22200002,\"status\":1,\"voltage\":25.782001},{\"current\":0.22900002,\"status\":1,\"voltage\":25.782001},{\"current\":0.256,\"status\":1,\"voltage\":25.782001},{\"current\":0.22200002,\"status\":1,\"voltage\":25.782001},{\"current\":0.252,\"status\":1,\"voltage\":25.782001},{\"current\":0.23,\"status\":1,\"voltage\":25.782001},{\"current\":0.23,\"status\":1,\"voltage\":25.782001},{\"current\":0.23,\"status\":1,\"voltage\":25.782001},{\"current\":0.001,\"status\":1,\"voltage\":26.646002},{\"current\":0.003,\"status\":1,\"voltage\":26.646002},{\"current\":0.001,\"status\":1,\"voltage\":26.646002},{\"current\":0.001,\"status\":1,\"voltage\":26.646002},{\"current\":0.001,\"status\":1,\"voltage\":26.646002},{\"current\":0.001,\"status\":1,\"voltage\":26.646002},{\"current\":0.001,\"status\":1,\"voltage\":26.646002}],\"fanSpeeds\":[1440,1500],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301080\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997824", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "deviceId": "1017030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"10703063\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"597721190\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"10703068\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:73\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25800002,\"status\":1,\"voltage\":26.267002},{\"current\":0.22900002,\"status\":1,\"voltage\":26.267002},{\"current\":0.209,\"status\":1,\"voltage\":26.267002},{\"current\":0.19900002,\"status\":1,\"voltage\":26.267002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.267002},{\"current\":0.349,\"status\":1,\"voltage\":26.267002},{\"current\":0.201,\"status\":1,\"voltage\":26.267002},{\"current\":0.19800001,\"status\":1,\"voltage\":26.267002},{\"current\":0.282,\"status\":1,\"voltage\":26.267002},{\"current\":0.24000001,\"status\":1,\"voltage\":26.455002},{\"current\":0.002,\"status\":1,\"voltage\":26.455002},{\"current\":0.29700002,\"status\":1,\"voltage\":26.455002},{\"current\":0.34100002,\"status\":1,\"voltage\":26.455002},{\"current\":0.296,\"status\":1,\"voltage\":26.455002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.455002},{\"current\":0.25,\"status\":1,\"voltage\":26.455002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208301907\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997825", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "deviceId": "1017030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2599213\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"142899781\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"263 days, 1:47:47.58\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2599218\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:5a:00:01\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.275,\"status\":1,\"voltage\":26.071001},{\"current\":0.28300002,\"status\":1,\"voltage\":26.071001},{\"current\":0.25100002,\"status\":1,\"voltage\":26.071001},{\"current\":0.27600002,\"status\":1,\"voltage\":26.071001},{\"current\":0.335,\"status\":1,\"voltage\":26.071001},{\"current\":0.257,\"status\":1,\"voltage\":26.071001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.071001},{\"current\":0.535,\"status\":1,\"voltage\":26.071001},{\"current\":0.001,\"status\":1,\"voltage\":26.071001},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.003,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.992}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300001\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997826", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:29", + "echoMap": {}, + "deviceId": "1017030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6747084\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"375595959\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6747089\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:51\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.1},{\"current\":0.256,\"status\":1,\"voltage\":26.1},{\"current\":0.54800004,\"status\":1,\"voltage\":26.1},{\"current\":0.25100002,\"status\":1,\"voltage\":26.1},{\"current\":0.26200002,\"status\":1,\"voltage\":26.1},{\"current\":0.423,\"status\":1,\"voltage\":26.1},{\"current\":0.259,\"status\":1,\"voltage\":26.1},{\"current\":0.245,\"status\":1,\"voltage\":26.1},{\"current\":0.223,\"status\":1,\"voltage\":26.1},{\"current\":0.21100001,\"status\":1,\"voltage\":26.043001},{\"current\":0.003,\"status\":1,\"voltage\":26.043001},{\"current\":0.259,\"status\":1,\"voltage\":26.043001},{\"current\":0.335,\"status\":1,\"voltage\":26.043001},{\"current\":0.284,\"status\":1,\"voltage\":26.043001},{\"current\":0.0,\"status\":1,\"voltage\":26.043001},{\"current\":0.0,\"status\":1,\"voltage\":26.043001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301361\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997827", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:30", + "echoMap": {}, + "deviceId": "1017030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6746829\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"375582953\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6746834\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:60\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22800002,\"status\":1,\"voltage\":25.662},{\"current\":0.23900001,\"status\":1,\"voltage\":25.662},{\"current\":0.25800002,\"status\":1,\"voltage\":25.662},{\"current\":0.254,\"status\":1,\"voltage\":25.662},{\"current\":0.23700002,\"status\":1,\"voltage\":25.662},{\"current\":0.541,\"status\":1,\"voltage\":25.662},{\"current\":0.564,\"status\":1,\"voltage\":25.662},{\"current\":0.58900005,\"status\":1,\"voltage\":25.662},{\"current\":0.342,\"status\":1,\"voltage\":25.662},{\"current\":0.26000002,\"status\":1,\"voltage\":26.253002},{\"current\":0.002,\"status\":1,\"voltage\":26.253002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.253002},{\"current\":0.001,\"status\":1,\"voltage\":26.253002},{\"current\":0.001,\"status\":1,\"voltage\":26.253002},{\"current\":0.001,\"status\":1,\"voltage\":26.253002},{\"current\":0.001,\"status\":1,\"voltage\":26.253002}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301632\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997828", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:30", + "echoMap": {}, + "deviceId": "1017030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6745944\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"375532114\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6745949\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:21:bc\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.55700004,\"status\":1,\"voltage\":26.314001},{\"current\":0.381,\"status\":1,\"voltage\":26.314001},{\"current\":0.379,\"status\":1,\"voltage\":26.314001},{\"current\":0.293,\"status\":1,\"voltage\":26.314001},{\"current\":0.37600002,\"status\":1,\"voltage\":26.314001},{\"current\":0.321,\"status\":1,\"voltage\":26.314001},{\"current\":0.33900002,\"status\":1,\"voltage\":26.314001},{\"current\":0.001,\"status\":1,\"voltage\":26.314001},{\"current\":0.001,\"status\":1,\"voltage\":26.314001},{\"current\":0.001,\"status\":1,\"voltage\":26.187002},{\"current\":0.003,\"status\":1,\"voltage\":26.187002},{\"current\":0.001,\"status\":1,\"voltage\":26.187002},{\"current\":0.001,\"status\":1,\"voltage\":26.187002},{\"current\":0.001,\"status\":1,\"voltage\":26.187002},{\"current\":0.001,\"status\":1,\"voltage\":26.187002},{\"current\":0.001,\"status\":1,\"voltage\":26.187002}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300635\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997829", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:31", + "echoMap": {}, + "deviceId": "1017030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6745617\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"375512613\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6745622\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:b6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26000002,\"status\":1,\"voltage\":26.315},{\"current\":0.37100002,\"status\":1,\"voltage\":26.315},{\"current\":0.36900002,\"status\":1,\"voltage\":26.315},{\"current\":0.296,\"status\":1,\"voltage\":26.315},{\"current\":0.286,\"status\":1,\"voltage\":26.315},{\"current\":0.24200001,\"status\":1,\"voltage\":26.315},{\"current\":0.33900002,\"status\":1,\"voltage\":26.315},{\"current\":0.238,\"status\":1,\"voltage\":26.315},{\"current\":0.307,\"status\":1,\"voltage\":26.315},{\"current\":0.24000001,\"status\":1,\"voltage\":26.268002},{\"current\":0.003,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.268002},{\"current\":0.001,\"status\":1,\"voltage\":26.268002}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300950\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997830", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:32", + "echoMap": {}, + "deviceId": "1017030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6745614\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"375512726\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6745619\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:80\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25,\"status\":1,\"voltage\":25.992},{\"current\":0.252,\"status\":1,\"voltage\":25.992},{\"current\":0.25800002,\"status\":1,\"voltage\":25.992},{\"current\":0.31100002,\"status\":1,\"voltage\":25.992},{\"current\":0.254,\"status\":1,\"voltage\":25.992},{\"current\":0.25300002,\"status\":1,\"voltage\":25.992},{\"current\":0.24800001,\"status\":1,\"voltage\":25.992},{\"current\":0.24700001,\"status\":1,\"voltage\":25.992},{\"current\":0.528,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":25.887001},{\"current\":0.003,\"status\":1,\"voltage\":25.887001},{\"current\":0.25,\"status\":1,\"voltage\":25.887001},{\"current\":0.257,\"status\":1,\"voltage\":25.887001},{\"current\":0.282,\"status\":1,\"voltage\":25.887001},{\"current\":0.001,\"status\":1,\"voltage\":25.887001},{\"current\":0.001,\"status\":1,\"voltage\":25.887001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301408\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530569633997831", + "createdBy": "0", + "createdTime": "2025-12-01 11:20:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:32", + "echoMap": {}, + "deviceId": "1017030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.162.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"15809612\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"884451073\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"15809617\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:6e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26000002,\"status\":1,\"voltage\":25.975},{\"current\":0.252,\"status\":1,\"voltage\":25.975},{\"current\":0.298,\"status\":1,\"voltage\":25.975},{\"current\":0.27800003,\"status\":1,\"voltage\":25.975},{\"current\":0.22500001,\"status\":1,\"voltage\":25.975},{\"current\":0.001,\"status\":1,\"voltage\":25.975},{\"current\":0.001,\"status\":1,\"voltage\":25.975},{\"current\":0.001,\"status\":1,\"voltage\":25.975},{\"current\":0.001,\"status\":1,\"voltage\":25.975},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.003,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166}],\"fanSpeeds\":[1290,1320],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301069\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "704530565339030622", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:17", + "echoMap": {}, + "deviceId": "1017040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif162\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"1 day, 21:40:47.38\",\"mTU\":\"1500\",\"macAddress\":\"c4:e2:87:7b:da:d0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:16\",\"info\":{\"portInfoList\":[{\"flow\":402016,\"inBytes\":4010867093,\"inFlow\":392997,\"lastChangeTime\":\"35 days, 18:14:37.87\",\"lastInBytes\":4010867093,\"lastOutBytes\":1099796027,\"outBytes\":1099796027,\"outFlow\":9018,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":309587,\"inFlow\":0,\"lastChangeTime\":\"15 days, 22:03:34.84\",\"lastInBytes\":309587,\"lastOutBytes\":131814900,\"outBytes\":131814900,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405686,\"inBytes\":232885219,\"inFlow\":10095,\"lastChangeTime\":\"1 day, 21:34:00.81\",\"lastInBytes\":232885219,\"lastOutBytes\":1864560283,\"outBytes\":1864560283,\"outFlow\":395590,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":90,\"inBytes\":42544246,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":42544246,\"lastOutBytes\":1517555406,\"outBytes\":1517555406,\"outFlow\":90,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:46.809442000\"}}", + "lastDiagTime": "2026-02-02 14:39:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030623", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:17", + "echoMap": {}, + "deviceId": "1017040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif162\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"1 day, 21:34:51.56\",\"mTU\":\"1500\",\"macAddress\":\"c4:e2:87:7b:da:be\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:16\",\"info\":{\"portInfoList\":[{\"flow\":407210,\"inBytes\":3507040057,\"inFlow\":398031,\"lastChangeTime\":\"35 days, 18:14:56.50\",\"lastInBytes\":3507040057,\"lastOutBytes\":1291896917,\"outBytes\":1291896917,\"outFlow\":9178,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":11012,\"inFlow\":0,\"lastChangeTime\":\"15 days, 22:13:12.64\",\"lastInBytes\":11012,\"lastOutBytes\":1056970,\"outBytes\":1056970,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":365,\"inBytes\":301876693,\"inFlow\":142,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":301876693,\"lastOutBytes\":1765992364,\"outBytes\":1765992364,\"outFlow\":222,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":410245,\"inBytes\":758961935,\"inFlow\":10421,\"lastChangeTime\":\"0:29:17.86\",\"lastInBytes\":758961935,\"lastOutBytes\":1696035834,\"outBytes\":1696035834,\"outFlow\":399823,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:46.870382000\"}}", + "lastDiagTime": "2026-02-02 14:39:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030624", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1017040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"3268498917\",\"index\":\"634\",\"lastChange\":\"0:01:24.05\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:e5:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1841259\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"24355523\",\"speed\":\"4294967295\"},\"cpuRatio\":\"8\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.143\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":254,\"inBytes\":399597108,\"inFlow\":12,\"lastChangeTime\":\"127 days, 23:02:51.92\",\"lastInBytes\":399597108,\"lastOutBytes\":3268498917,\"outBytes\":3268498917,\"outFlow\":241,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":228,\"inBytes\":15471,\"inFlow\":0,\"lastChangeTime\":\"130 days, 19:28:09.24\",\"lastInBytes\":15471,\"lastOutBytes\":2612412991,\"outBytes\":2612412991,\"outFlow\":228,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":10000000,\"upDown\":1},{\"flow\":432,\"inBytes\":1309472662,\"inFlow\":119,\"lastChangeTime\":\"29 days, 13:23:05.47\",\"lastInBytes\":1309472662,\"lastOutBytes\":3547105244,\"outBytes\":3547105244,\"outFlow\":313,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":7338143,\"inBytes\":2033558217,\"inFlow\":49839,\"lastChangeTime\":\"127 days, 22:51:29.30\",\"lastInBytes\":2033558217,\"lastOutBytes\":3889082590,\"outBytes\":3889082590,\"outFlow\":7288304,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":269580989,\"inFlow\":1,\"lastChangeTime\":\"29 days, 13:32:30.58\",\"lastInBytes\":269580989,\"lastOutBytes\":1289452451,\"outBytes\":1289452451,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7363102,\"inBytes\":3301648843,\"inFlow\":7309424,\"lastChangeTime\":\"0:01:24.05\",\"lastInBytes\":3301648843,\"lastOutBytes\":1878919167,\"outBytes\":1878919167,\"outFlow\":53677,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.156913000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030625", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133059\",\"inUnknownProtos\":\"3888180385\",\"index\":\"634\",\"lastChange\":\"0:01:15.22\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e5:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3468431315\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"66\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.142\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":845318,\"inBytes\":1496632095,\"inFlow\":824458,\"lastChangeTime\":\"350 days, 1:07:40.69\",\"lastInBytes\":1496632095,\"lastOutBytes\":3591869975,\"outBytes\":3591869975,\"outFlow\":20860,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":847836,\"inBytes\":4015682788,\"inFlow\":826581,\"lastChangeTime\":\"350 days, 1:07:39.81\",\"lastInBytes\":4015682788,\"lastOutBytes\":3387601070,\"outBytes\":3387601070,\"outFlow\":21254,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1041501,\"inBytes\":3277915628,\"inFlow\":1017361,\"lastChangeTime\":\"281 days, 20:37:29.50\",\"lastInBytes\":3277915628,\"lastOutBytes\":3712045306,\"outBytes\":3712045306,\"outFlow\":24140,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":844918,\"inBytes\":3353133517,\"inFlow\":824337,\"lastChangeTime\":\"0:01:17.16\",\"lastInBytes\":3353133517,\"lastOutBytes\":4138746998,\"outBytes\":4138746998,\"outFlow\":20580,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":845259,\"inBytes\":1847064036,\"inFlow\":824638,\"lastChangeTime\":\"0:01:16.87\",\"lastInBytes\":1847064036,\"lastOutBytes\":4272860622,\"outBytes\":4272860622,\"outFlow\":20621,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":841336,\"inBytes\":2919207266,\"inFlow\":820232,\"lastChangeTime\":\"350 days, 1:07:37.23\",\"lastInBytes\":2919207266,\"lastOutBytes\":3888180385,\"outBytes\":3888180385,\"outFlow\":21103,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":846654,\"inBytes\":3832733015,\"inFlow\":825585,\"lastChangeTime\":\"350 days, 1:07:36.26\",\"lastInBytes\":3832733015,\"lastOutBytes\":4287307145,\"outBytes\":4287307145,\"outFlow\":21069,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5822,\"inFlow\":0,\"lastChangeTime\":\"136 days, 14:44:02.79\",\"lastInBytes\":5822,\"lastOutBytes\":74577,\"outBytes\":74577,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":10830,\"inFlow\":0,\"lastChangeTime\":\"136 days, 14:47:01.80\",\"lastInBytes\":10830,\"lastOutBytes\":104749,\"outBytes\":104749,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":82,\"inBytes\":1105833277,\"inFlow\":0,\"lastChangeTime\":\"0:01:16.87\",\"lastInBytes\":1105833277,\"lastOutBytes\":1266537476,\"outBytes\":1266537476,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":20995655,\"inBytes\":527385755,\"inFlow\":172409,\"lastChangeTime\":\"136 days, 14:47:11.36\",\"lastInBytes\":527385755,\"lastOutBytes\":2394731558,\"outBytes\":2394731558,\"outFlow\":20823246,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.977280000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030626", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1017040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"214216\",\"inUnknownProtos\":\"986686076\",\"index\":\"634\",\"lastChange\":\"0:01:19.92\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:ed:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3642355518\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"39531191\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":847653,\"inBytes\":3949449618,\"inFlow\":826510,\"lastChangeTime\":\"350 days, 1:07:45.65\",\"lastInBytes\":3949449618,\"lastOutBytes\":2506253088,\"outBytes\":2506253088,\"outFlow\":21143,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":847473,\"inBytes\":3618370219,\"inFlow\":826093,\"lastChangeTime\":\"350 days, 1:07:40.31\",\"lastInBytes\":3618370219,\"lastOutBytes\":4059354351,\"outBytes\":4059354351,\"outFlow\":21380,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1109747,\"inBytes\":3625618385,\"inFlow\":1084295,\"lastChangeTime\":\"281 days, 20:37:28.43\",\"lastInBytes\":3625618385,\"lastOutBytes\":3672476849,\"outBytes\":3672476849,\"outFlow\":25451,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":857391,\"inBytes\":231438015,\"inFlow\":838611,\"lastChangeTime\":\"136 days, 14:49:23.45\",\"lastInBytes\":231438015,\"lastOutBytes\":460674031,\"outBytes\":460674031,\"outFlow\":18780,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":844299,\"inBytes\":2186999705,\"inFlow\":823778,\"lastChangeTime\":\"350 days, 1:07:47.11\",\"lastInBytes\":2186999705,\"lastOutBytes\":527727373,\"outBytes\":527727373,\"outFlow\":20521,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":847950,\"inBytes\":2925243998,\"inFlow\":826848,\"lastChangeTime\":\"350 days, 1:07:37.76\",\"lastInBytes\":2925243998,\"lastOutBytes\":986467116,\"outBytes\":986467116,\"outFlow\":21102,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":842883,\"inBytes\":3442049625,\"inFlow\":822011,\"lastChangeTime\":\"350 days, 1:07:38.26\",\"lastInBytes\":3442049625,\"lastOutBytes\":3666842321,\"outBytes\":3666842321,\"outFlow\":20871,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":260341,\"inBytes\":400534721,\"inFlow\":253985,\"lastChangeTime\":\"136 days, 14:48:26.91\",\"lastInBytes\":400534721,\"lastOutBytes\":49887773,\"outBytes\":49887773,\"outFlow\":6355,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":19284,\"inFlow\":0,\"lastChangeTime\":\"136 days, 14:48:08.31\",\"lastInBytes\":19284,\"lastOutBytes\":228478,\"outBytes\":228478,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":82,\"inBytes\":1105940263,\"inFlow\":0,\"lastChangeTime\":\"0:01:21.97\",\"lastInBytes\":1105940263,\"lastOutBytes\":1331898337,\"outBytes\":1331898337,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6482627,\"inBytes\":2508833635,\"inFlow\":164087,\"lastChangeTime\":\"136 days, 14:49:28.55\",\"lastInBytes\":2508833635,\"lastOutBytes\":2595695542,\"outBytes\":2595695542,\"outFlow\":6318539,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.989252000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030627", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"214429\",\"inUnknownProtos\":\"2039289314\",\"index\":\"635\",\"lastChange\":\"0:01:16.69\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d4:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1521720597\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"335325925\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":585372,\"inBytes\":3359883070,\"inFlow\":570486,\"lastChangeTime\":\"0:01:18.27\",\"lastInBytes\":3359883070,\"lastOutBytes\":2087652269,\"outBytes\":2087652269,\"outFlow\":14885,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":846232,\"inBytes\":3907881075,\"inFlow\":825104,\"lastChangeTime\":\"350 days, 1:06:41.89\",\"lastInBytes\":3907881075,\"lastOutBytes\":3330538754,\"outBytes\":3330538754,\"outFlow\":21127,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1040730,\"inBytes\":1118109358,\"inFlow\":1016215,\"lastChangeTime\":\"281 days, 20:36:59.42\",\"lastInBytes\":1118109358,\"lastOutBytes\":2640231843,\"outBytes\":2640231843,\"outFlow\":24514,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":791250,\"inBytes\":3698407417,\"inFlow\":772452,\"lastChangeTime\":\"232 days, 1:03:22.44\",\"lastInBytes\":3698407417,\"lastOutBytes\":900754007,\"outBytes\":900754007,\"outFlow\":18798,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":847639,\"inBytes\":710281904,\"inFlow\":826329,\"lastChangeTime\":\"350 days, 1:06:46.40\",\"lastInBytes\":710281904,\"lastOutBytes\":1994197528,\"outBytes\":1994197528,\"outFlow\":21310,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1081220,\"inBytes\":1533748700,\"inFlow\":1058891,\"lastChangeTime\":\"70 days, 17:29:28.33\",\"lastInBytes\":1533748700,\"lastOutBytes\":2039289314,\"outBytes\":2039289314,\"outFlow\":22329,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":423848,\"inBytes\":2813097991,\"inFlow\":413550,\"lastChangeTime\":\"350 days, 1:06:48.83\",\"lastInBytes\":2813097991,\"lastOutBytes\":1040580671,\"outBytes\":1040580671,\"outFlow\":10298,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":424980,\"inBytes\":261238229,\"inFlow\":414702,\"lastChangeTime\":\"0:01:18.29\",\"lastInBytes\":261238229,\"lastOutBytes\":346736991,\"outBytes\":346736991,\"outFlow\":10277,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":260221,\"inBytes\":1968335550,\"inFlow\":253801,\"lastChangeTime\":\"229 days, 13:42:01.93\",\"lastInBytes\":1968335550,\"lastOutBytes\":2027604143,\"outBytes\":2027604143,\"outFlow\":6420,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":850239,\"inBytes\":2193207647,\"inFlow\":829191,\"lastChangeTime\":\"350 days, 1:06:50.54\",\"lastInBytes\":2193207647,\"lastOutBytes\":773557229,\"outBytes\":773557229,\"outFlow\":21047,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":259360,\"inBytes\":4054834991,\"inFlow\":252836,\"lastChangeTime\":\"0:01:18.86\",\"lastInBytes\":4054834991,\"lastOutBytes\":3213835524,\"outBytes\":3213835524,\"outFlow\":6523,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":398819,\"inBytes\":4124175325,\"inFlow\":390940,\"lastChangeTime\":\"70 days, 17:29:56.52\",\"lastInBytes\":4124175325,\"lastOutBytes\":3700274210,\"outBytes\":3700274210,\"outFlow\":7879,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":387281,\"inBytes\":3995782270,\"inFlow\":379749,\"lastChangeTime\":\"70 days, 17:29:48.81\",\"lastInBytes\":3995782270,\"lastOutBytes\":3768493332,\"outBytes\":3768493332,\"outFlow\":7532,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":844498,\"inBytes\":1440718967,\"inFlow\":823636,\"lastChangeTime\":\"350 days, 1:06:49.87\",\"lastInBytes\":1440718967,\"lastOutBytes\":1241185522,\"outBytes\":1241185522,\"outFlow\":20862,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":125183,\"inFlow\":0,\"lastChangeTime\":\"229 days, 13:46:27.88\",\"lastInBytes\":125183,\"lastOutBytes\":67764376,\"outBytes\":67764376,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":79,\"inBytes\":1106093331,\"inFlow\":0,\"lastChangeTime\":\"229 days, 13:44:18.49\",\"lastInBytes\":1106093331,\"lastOutBytes\":1371682247,\"outBytes\":1371682247,\"outFlow\":78,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9912554,\"inBytes\":1448255346,\"inFlow\":244369,\"lastChangeTime\":\"229 days, 13:45:56.34\",\"lastInBytes\":1448255346,\"lastOutBytes\":2157703827,\"outBytes\":2157703827,\"outFlow\":9668185,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.018603000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030628", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"5\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"215575\",\"inUnknownProtos\":\"296807373\",\"index\":\"635\",\"lastChange\":\"0:01:18.09\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e4:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1680068967\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"272338374\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":283661,\"inBytes\":520656367,\"inFlow\":276650,\"lastChangeTime\":\"229 days, 13:10:30.36\",\"lastInBytes\":520656367,\"lastOutBytes\":2046427210,\"outBytes\":2046427210,\"outFlow\":7011,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":286161,\"inBytes\":3097025521,\"inFlow\":278828,\"lastChangeTime\":\"232 days, 12:01:02.10\",\"lastInBytes\":3097025521,\"lastOutBytes\":4006857433,\"outBytes\":4006857433,\"outFlow\":7333,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":562835,\"inBytes\":1078762367,\"inFlow\":549000,\"lastChangeTime\":\"426 days, 14:30:25.59\",\"lastInBytes\":1078762367,\"lastOutBytes\":2970822246,\"outBytes\":2970822246,\"outFlow\":13834,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":424611,\"inBytes\":19515568,\"inFlow\":414441,\"lastChangeTime\":\"393 days, 0:15:47.36\",\"lastInBytes\":19515568,\"lastOutBytes\":3175401718,\"outBytes\":3175401718,\"outFlow\":10170,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":295205,\"inBytes\":3342346133,\"inFlow\":286996,\"lastChangeTime\":\"419 days, 0:13:12.22\",\"lastInBytes\":3342346133,\"lastOutBytes\":1805974048,\"outBytes\":1805974048,\"outFlow\":8208,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":35611866,\"inBytes\":2085360887,\"inFlow\":822572,\"lastChangeTime\":\"229 days, 13:09:54.16\",\"lastInBytes\":2085360887,\"lastOutBytes\":171,\"outBytes\":171,\"outFlow\":34789293,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":260016,\"inBytes\":577983039,\"inFlow\":253425,\"lastChangeTime\":\"167 days, 14:14:03.68\",\"lastInBytes\":577983039,\"lastOutBytes\":3047920505,\"outBytes\":3047920505,\"outFlow\":6590,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":259721,\"inBytes\":1219510396,\"inFlow\":253529,\"lastChangeTime\":\"229 days, 13:09:34.62\",\"lastInBytes\":1219510396,\"lastOutBytes\":1267972857,\"outBytes\":1267972857,\"outFlow\":6191,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":283680,\"inBytes\":1262328415,\"inFlow\":276760,\"lastChangeTime\":\"229 days, 13:09:15.71\",\"lastInBytes\":1262328415,\"lastOutBytes\":2712173105,\"outBytes\":2712173105,\"outFlow\":6920,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3569240,\"inFlow\":0,\"lastChangeTime\":\"167 days, 14:11:02.42\",\"lastInBytes\":3569240,\"lastOutBytes\":502061103,\"outBytes\":502061103,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":63834,\"inFlow\":0,\"lastChangeTime\":\"136 days, 14:22:15.94\",\"lastInBytes\":63834,\"lastOutBytes\":154476,\"outBytes\":154476,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":67408,\"inFlow\":0,\"lastChangeTime\":\"167 days, 14:14:09.82\",\"lastInBytes\":67408,\"lastOutBytes\":78485921,\"outBytes\":78485921,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":34708,\"inFlow\":0,\"lastChangeTime\":\"229 days, 13:04:23.38\",\"lastInBytes\":34708,\"lastOutBytes\":4257346,\"outBytes\":4257346,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":1106473336,\"inFlow\":1,\"lastChangeTime\":\"229 days, 13:27:48.19\",\"lastInBytes\":1106473336,\"lastOutBytes\":1343601842,\"outBytes\":1343601842,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3333485,\"inBytes\":3793341017,\"inFlow\":86686,\"lastChangeTime\":\"229 days, 13:27:44.15\",\"lastInBytes\":3793341017,\"lastOutBytes\":1379046648,\"outBytes\":1379046648,\"outFlow\":3246799,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.007068000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030629", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1017040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"214150\",\"inUnknownProtos\":\"2284341927\",\"index\":\"635\",\"lastChange\":\"0:01:21.07\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c6:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2888986851\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"335272565\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":385564,\"inBytes\":4160434923,\"inFlow\":376378,\"lastChangeTime\":\"350 days, 1:07:13.89\",\"lastInBytes\":4160434923,\"lastOutBytes\":2321922997,\"outBytes\":2321922997,\"outFlow\":9186,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":385494,\"inBytes\":2858090377,\"inFlow\":376187,\"lastChangeTime\":\"350 days, 1:07:05.85\",\"lastInBytes\":2858090377,\"lastOutBytes\":788989510,\"outBytes\":788989510,\"outFlow\":9306,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":386900,\"inBytes\":1576696117,\"inFlow\":377578,\"lastChangeTime\":\"350 days, 1:07:02.63\",\"lastInBytes\":1576696117,\"lastOutBytes\":917949813,\"outBytes\":917949813,\"outFlow\":9321,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":257906,\"inBytes\":1736061930,\"inFlow\":251441,\"lastChangeTime\":\"262 days, 0:01:44.84\",\"lastInBytes\":1736061930,\"lastOutBytes\":3581856635,\"outBytes\":3581856635,\"outFlow\":6464,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":385144,\"inBytes\":3918835963,\"inFlow\":375927,\"lastChangeTime\":\"373 days, 5:58:29.21\",\"lastInBytes\":3918835963,\"lastOutBytes\":3351353919,\"outBytes\":3351353919,\"outFlow\":9216,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":422661,\"inBytes\":2198983716,\"inFlow\":413593,\"lastChangeTime\":\"262 days, 0:01:32.15\",\"lastInBytes\":2198983716,\"lastOutBytes\":2284210098,\"outBytes\":2284210098,\"outFlow\":9067,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":256768,\"inBytes\":1189625949,\"inFlow\":250364,\"lastChangeTime\":\"317 days, 3:52:18.84\",\"lastInBytes\":1189625949,\"lastOutBytes\":1933020029,\"outBytes\":1933020029,\"outFlow\":6403,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":257845,\"inBytes\":3886598583,\"inFlow\":251305,\"lastChangeTime\":\"262 days, 0:01:30.91\",\"lastInBytes\":3886598583,\"lastOutBytes\":307033587,\"outBytes\":307033587,\"outFlow\":6540,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":385822,\"inBytes\":43101940,\"inFlow\":376514,\"lastChangeTime\":\"350 days, 1:07:06.62\",\"lastInBytes\":43101940,\"lastOutBytes\":3338080168,\"outBytes\":3338080168,\"outFlow\":9308,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":385977,\"inBytes\":4134276821,\"inFlow\":376620,\"lastChangeTime\":\"350 days, 1:07:05.05\",\"lastInBytes\":4134276821,\"lastOutBytes\":4291193999,\"outBytes\":4291193999,\"outFlow\":9356,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":21401036,\"inBytes\":1062746213,\"inFlow\":377150,\"lastChangeTime\":\"350 days, 0:12:08.56\",\"lastInBytes\":1062746213,\"lastOutBytes\":173,\"outBytes\":173,\"outFlow\":21023885,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":521432,\"inBytes\":2711563549,\"inFlow\":509763,\"lastChangeTime\":\"70 days, 17:29:48.95\",\"lastInBytes\":2711563549,\"lastOutBytes\":4036597922,\"outBytes\":4036597922,\"outFlow\":11668,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":385389,\"inBytes\":857592433,\"inFlow\":377815,\"lastChangeTime\":\"350 days, 0:30:07.70\",\"lastInBytes\":857592433,\"lastOutBytes\":210621438,\"outBytes\":210621438,\"outFlow\":7574,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":385221,\"inBytes\":804890492,\"inFlow\":375880,\"lastChangeTime\":\"350 days, 1:07:07.39\",\"lastInBytes\":804890492,\"lastOutBytes\":3812219695,\"outBytes\":3812219695,\"outFlow\":9341,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":386312,\"inBytes\":1767933049,\"inFlow\":376937,\"lastChangeTime\":\"350 days, 1:07:02.91\",\"lastInBytes\":1767933049,\"lastOutBytes\":2182695803,\"outBytes\":2182695803,\"outFlow\":9374,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":78,\"inBytes\":1106561747,\"inFlow\":0,\"lastChangeTime\":\"136 days, 15:25:32.63\",\"lastInBytes\":1106561747,\"lastOutBytes\":1378311788,\"outBytes\":1378311788,\"outFlow\":77,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6050139,\"inBytes\":427451627,\"inFlow\":146326,\"lastChangeTime\":\"262 days, 0:02:56.06\",\"lastInBytes\":427451627,\"lastOutBytes\":2607360723,\"outBytes\":2607360723,\"outFlow\":5903813,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.138211000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030630", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1817111\",\"inUnknownProtos\":\"3856616992\",\"index\":\"634\",\"lastChange\":\"0:01:26.38\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d2:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3778301778\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"289399287\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":427677,\"inBytes\":3542770798,\"inFlow\":417292,\"lastChangeTime\":\"350 days, 1:07:47.06\",\"lastInBytes\":3542770798,\"lastOutBytes\":591129448,\"outBytes\":591129448,\"outFlow\":10385,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":424196,\"inBytes\":681081995,\"inFlow\":413507,\"lastChangeTime\":\"350 days, 1:07:42.46\",\"lastInBytes\":681081995,\"lastOutBytes\":183904448,\"outBytes\":183904448,\"outFlow\":10689,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":425779,\"inBytes\":3539422430,\"inFlow\":415512,\"lastChangeTime\":\"350 days, 1:07:49.36\",\"lastInBytes\":3539422430,\"lastOutBytes\":2285731003,\"outBytes\":2285731003,\"outFlow\":10266,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":430011,\"inBytes\":1321330235,\"inFlow\":419314,\"lastChangeTime\":\"350 days, 1:07:55.90\",\"lastInBytes\":1321330235,\"lastOutBytes\":1206514928,\"outBytes\":1206514928,\"outFlow\":10697,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":422490,\"inBytes\":1348549665,\"inFlow\":413756,\"lastChangeTime\":\"350 days, 0:30:54.02\",\"lastInBytes\":1348549665,\"lastOutBytes\":2007267954,\"outBytes\":2007267954,\"outFlow\":8734,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":425293,\"inBytes\":2762996487,\"inFlow\":415019,\"lastChangeTime\":\"350 days, 1:07:47.40\",\"lastInBytes\":2762996487,\"lastOutBytes\":3856616992,\"outBytes\":3856616992,\"outFlow\":10273,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":425152,\"inBytes\":2371415843,\"inFlow\":414779,\"lastChangeTime\":\"350 days, 1:07:46.88\",\"lastInBytes\":2371415843,\"lastOutBytes\":247257556,\"outBytes\":247257556,\"outFlow\":10373,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1127553,\"inBytes\":3890052399,\"inFlow\":1100983,\"lastChangeTime\":\"281 days, 20:38:14.15\",\"lastInBytes\":3890052399,\"lastOutBytes\":1533477588,\"outBytes\":1533477588,\"outFlow\":26570,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":8243932,\"inFlow\":0,\"lastChangeTime\":\"372 days, 14:28:34.24\",\"lastInBytes\":8243932,\"lastOutBytes\":617245591,\"outBytes\":617245591,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":269687112,\"inFlow\":1,\"lastChangeTime\":\"372 days, 13:44:44.25\",\"lastInBytes\":269687112,\"lastOutBytes\":400607629,\"outBytes\":400607629,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4127164,\"inBytes\":2169580595,\"inFlow\":102594,\"lastChangeTime\":\"167 days, 14:01:38.16\",\"lastInBytes\":2169580595,\"lastOutBytes\":3683864353,\"outBytes\":3683864353,\"outFlow\":4024569,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.987874000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030631", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41194\",\"inUnknownProtos\":\"3511156698\",\"index\":\"635\",\"lastChange\":\"0:01:18.70\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:ed:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2415018214\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"24333793\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":913100,\"inBytes\":752753661,\"inFlow\":890835,\"lastChangeTime\":\"0:01:21.16\",\"lastInBytes\":752753661,\"lastOutBytes\":1506881595,\"outBytes\":1506881595,\"outFlow\":22264,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":418521,\"inBytes\":2708480819,\"inFlow\":408357,\"lastChangeTime\":\"0:01:20.67\",\"lastInBytes\":2708480819,\"lastOutBytes\":2785648119,\"outBytes\":2785648119,\"outFlow\":10164,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":908814,\"inBytes\":2549937889,\"inFlow\":886474,\"lastChangeTime\":\"0:01:20.66\",\"lastInBytes\":2549937889,\"lastOutBytes\":158927906,\"outBytes\":158927906,\"outFlow\":22340,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":419707,\"inBytes\":2330080751,\"inFlow\":409412,\"lastChangeTime\":\"0:01:20.66\",\"lastInBytes\":2330080751,\"lastOutBytes\":2568992642,\"outBytes\":2568992642,\"outFlow\":10294,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":634556,\"inBytes\":3251925093,\"inFlow\":618797,\"lastChangeTime\":\"90 days, 3:10:30.05\",\"lastInBytes\":3251925093,\"lastOutBytes\":3511156698,\"outBytes\":3511156698,\"outFlow\":15759,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":916661,\"inBytes\":794148490,\"inFlow\":894005,\"lastChangeTime\":\"0:01:21.16\",\"lastInBytes\":794148490,\"lastOutBytes\":1842086359,\"outBytes\":1842086359,\"outFlow\":22656,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":418619,\"inBytes\":2468349998,\"inFlow\":408433,\"lastChangeTime\":\"55 days, 15:31:10.81\",\"lastInBytes\":2468349998,\"lastOutBytes\":1026546985,\"outBytes\":1026546985,\"outFlow\":10185,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":280883,\"inBytes\":193245735,\"inFlow\":274035,\"lastChangeTime\":\"0:01:21.17\",\"lastInBytes\":193245735,\"lastOutBytes\":3173141951,\"outBytes\":3173141951,\"outFlow\":6848,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":281084,\"inBytes\":127445818,\"inFlow\":274158,\"lastChangeTime\":\"0:01:20.65\",\"lastInBytes\":127445818,\"lastOutBytes\":3884619207,\"outBytes\":3884619207,\"outFlow\":6925,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":421022,\"inBytes\":1899014020,\"inFlow\":410837,\"lastChangeTime\":\"0:01:21.15\",\"lastInBytes\":1899014020,\"lastOutBytes\":1478481711,\"outBytes\":1478481711,\"outFlow\":10185,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":419458,\"inBytes\":117982060,\"inFlow\":410757,\"lastChangeTime\":\"0:01:21.18\",\"lastInBytes\":117982060,\"lastOutBytes\":451115126,\"outBytes\":451115126,\"outFlow\":8701,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":421095,\"inBytes\":2879647770,\"inFlow\":410862,\"lastChangeTime\":\"55 days, 15:31:15.50\",\"lastInBytes\":2879647770,\"lastOutBytes\":2589810858,\"outBytes\":2589810858,\"outFlow\":10233,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":696126072,\"inFlow\":1,\"lastChangeTime\":\"0:01:20.67\",\"lastInBytes\":696126072,\"lastOutBytes\":1700657118,\"outBytes\":1700657118,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6480127,\"inBytes\":3946199261,\"inFlow\":163428,\"lastChangeTime\":\"0:01:18.69\",\"lastInBytes\":3946199261,\"lastOutBytes\":894573136,\"outBytes\":894573136,\"outFlow\":6316699,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.132432000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030632", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41196\",\"inUnknownProtos\":\"3673313946\",\"index\":\"635\",\"lastChange\":\"0:01:13.68\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:dc:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3888206827\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"24319349\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":389003,\"inBytes\":3512988000,\"inFlow\":379616,\"lastChangeTime\":\"0:01:17.16\",\"lastInBytes\":3512988000,\"lastOutBytes\":3231914451,\"outBytes\":3231914451,\"outFlow\":9386,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":389455,\"inBytes\":1332711074,\"inFlow\":380017,\"lastChangeTime\":\"0:01:17.17\",\"lastInBytes\":1332711074,\"lastOutBytes\":1733885948,\"outBytes\":1733885948,\"outFlow\":9438,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":389676,\"inBytes\":2864412626,\"inFlow\":380234,\"lastChangeTime\":\"0:01:17.15\",\"lastInBytes\":2864412626,\"lastOutBytes\":3880171753,\"outBytes\":3880171753,\"outFlow\":9442,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":389394,\"inBytes\":1710679401,\"inFlow\":380013,\"lastChangeTime\":\"0:01:17.15\",\"lastInBytes\":1710679401,\"lastOutBytes\":1416939252,\"outBytes\":1416939252,\"outFlow\":9381,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":389327,\"inBytes\":3270792348,\"inFlow\":379923,\"lastChangeTime\":\"0:01:17.15\",\"lastInBytes\":3270792348,\"lastOutBytes\":1493967717,\"outBytes\":1493967717,\"outFlow\":9403,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1034993,\"inBytes\":988573303,\"inFlow\":1010947,\"lastChangeTime\":\"0:01:17.77\",\"lastInBytes\":988573303,\"lastOutBytes\":3673313946,\"outBytes\":3673313946,\"outFlow\":24045,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":918940,\"inBytes\":323905989,\"inFlow\":897237,\"lastChangeTime\":\"0:01:17.16\",\"lastInBytes\":323905989,\"lastOutBytes\":91322467,\"outBytes\":91322467,\"outFlow\":21703,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":388040,\"inBytes\":2582485983,\"inFlow\":378994,\"lastChangeTime\":\"0:01:17.78\",\"lastInBytes\":2582485983,\"lastOutBytes\":649416394,\"outBytes\":649416394,\"outFlow\":9046,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":840442,\"inBytes\":1964989533,\"inFlow\":822769,\"lastChangeTime\":\"0:01:17.78\",\"lastInBytes\":1964989533,\"lastOutBytes\":846202727,\"outBytes\":846202727,\"outFlow\":17673,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":845504,\"inBytes\":933108029,\"inFlow\":824876,\"lastChangeTime\":\"101 days, 7:59:24.92\",\"lastInBytes\":933108029,\"lastOutBytes\":2639527096,\"outBytes\":2639527096,\"outFlow\":20627,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":848689,\"inBytes\":3600673113,\"inFlow\":827660,\"lastChangeTime\":\"0:01:17.14\",\"lastInBytes\":3600673113,\"lastOutBytes\":773220475,\"outBytes\":773220475,\"outFlow\":21029,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":82,\"inBytes\":695847854,\"inFlow\":0,\"lastChangeTime\":\"0:01:17.14\",\"lastInBytes\":695847854,\"lastOutBytes\":1697915209,\"outBytes\":1697915209,\"outFlow\":81,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7470791,\"inBytes\":507761276,\"inFlow\":183990,\"lastChangeTime\":\"0:01:13.68\",\"lastInBytes\":507761276,\"lastOutBytes\":2830714384,\"outBytes\":2830714384,\"outFlow\":7286800,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.983969000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030633", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1017040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41171\",\"inUnknownProtos\":\"580938806\",\"index\":\"635\",\"lastChange\":\"0:01:15.95\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:13:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3835086298\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:21\",\"info\":{\"portInfoList\":[{\"flow\":1026802,\"inBytes\":230660094,\"inFlow\":1003060,\"lastChangeTime\":\"0:01:17.97\",\"lastInBytes\":230660094,\"lastOutBytes\":2785638987,\"outBytes\":2785638987,\"outFlow\":23741,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":486983,\"inBytes\":2225667512,\"inFlow\":474917,\"lastChangeTime\":\"0:01:18.36\",\"lastInBytes\":2225667512,\"lastOutBytes\":4164935746,\"outBytes\":4164935746,\"outFlow\":12066,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1032502,\"inBytes\":4045093622,\"inFlow\":1009425,\"lastChangeTime\":\"0:01:18.36\",\"lastInBytes\":4045093622,\"lastOutBytes\":289285825,\"outBytes\":289285825,\"outFlow\":23077,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":421053,\"inBytes\":2330706681,\"inFlow\":410841,\"lastChangeTime\":\"0:01:17.76\",\"lastInBytes\":2330706681,\"lastOutBytes\":1809769166,\"outBytes\":1809769166,\"outFlow\":10211,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":679228,\"inBytes\":93248,\"inFlow\":662202,\"lastChangeTime\":\"0:01:18.29\",\"lastInBytes\":93248,\"lastOutBytes\":3154782927,\"outBytes\":3154782927,\"outFlow\":17025,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":946742,\"inBytes\":693529344,\"inFlow\":921519,\"lastChangeTime\":\"0:01:17.75\",\"lastInBytes\":693529344,\"lastOutBytes\":580938806,\"outBytes\":580938806,\"outFlow\":25222,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":488057,\"inBytes\":3434092616,\"inFlow\":475011,\"lastChangeTime\":\"0:01:27.22\",\"lastInBytes\":3434092616,\"lastOutBytes\":392291236,\"outBytes\":392291236,\"outFlow\":13045,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":81,\"inBytes\":695754307,\"inFlow\":0,\"lastChangeTime\":\"0:01:17.76\",\"lastInBytes\":695754307,\"lastOutBytes\":1696030973,\"outBytes\":1696030973,\"outFlow\":80,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5317805,\"inBytes\":1573866975,\"inFlow\":135707,\"lastChangeTime\":\"0:01:15.95\",\"lastInBytes\":1573866975,\"lastOutBytes\":1618244665,\"outBytes\":1618244665,\"outFlow\":5182097,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:18.065937000\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030634", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1017040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41161\",\"inUnknownProtos\":\"1502532872\",\"index\":\"635\",\"lastChange\":\"0:01:15.09\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:2c:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1561264305\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"24276277\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":389895,\"inBytes\":2261945105,\"inFlow\":380417,\"lastChangeTime\":\"55 days, 13:35:08.08\",\"lastInBytes\":2261945105,\"lastOutBytes\":3846402521,\"outBytes\":3846402521,\"outFlow\":9477,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":649602,\"inBytes\":609222855,\"inFlow\":633163,\"lastChangeTime\":\"0:01:17.34\",\"lastInBytes\":609222855,\"lastOutBytes\":1326804169,\"outBytes\":1326804169,\"outFlow\":16438,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418096,\"inBytes\":2751364404,\"inFlow\":408344,\"lastChangeTime\":\"0:01:17.41\",\"lastInBytes\":2751364404,\"lastOutBytes\":3949715639,\"outBytes\":3949715639,\"outFlow\":9751,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":851129,\"inBytes\":3377950384,\"inFlow\":830091,\"lastChangeTime\":\"0:01:16.80\",\"lastInBytes\":3377950384,\"lastOutBytes\":1148858242,\"outBytes\":1148858242,\"outFlow\":21038,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":388295,\"inBytes\":3046007274,\"inFlow\":378933,\"lastChangeTime\":\"0:01:16.78\",\"lastInBytes\":3046007274,\"lastOutBytes\":2362468891,\"outBytes\":2362468891,\"outFlow\":9362,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":13479837,\"inBytes\":4277571366,\"inFlow\":414334,\"lastChangeTime\":\"55 days, 13:35:13.20\",\"lastInBytes\":4277571366,\"lastOutBytes\":1502532872,\"outBytes\":1502532872,\"outFlow\":13065503,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":511376,\"inBytes\":3597891467,\"inFlow\":500454,\"lastChangeTime\":\"0:01:17.52\",\"lastInBytes\":3597891467,\"lastOutBytes\":978108888,\"outBytes\":978108888,\"outFlow\":10921,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":425194,\"inBytes\":978455312,\"inFlow\":414900,\"lastChangeTime\":\"0:01:16.80\",\"lastInBytes\":978455312,\"lastOutBytes\":3985521280,\"outBytes\":3985521280,\"outFlow\":10294,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":387885,\"inBytes\":126258604,\"inFlow\":379868,\"lastChangeTime\":\"0:01:17.41\",\"lastInBytes\":126258604,\"lastOutBytes\":2063421400,\"outBytes\":2063421400,\"outFlow\":8017,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":844206,\"inBytes\":2255418287,\"inFlow\":823578,\"lastChangeTime\":\"0:01:16.79\",\"lastInBytes\":2255418287,\"lastOutBytes\":742156164,\"outBytes\":742156164,\"outFlow\":20628,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":79,\"inBytes\":695718894,\"inFlow\":0,\"lastChangeTime\":\"0:01:16.79\",\"lastInBytes\":695718894,\"lastOutBytes\":1692460963,\"outBytes\":1692460963,\"outFlow\":78,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5657223,\"inBytes\":4052000650,\"inFlow\":140686,\"lastChangeTime\":\"0:01:15.08\",\"lastInBytes\":4052000650,\"lastOutBytes\":3959744665,\"outBytes\":3959744665,\"outFlow\":5516537,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.996890000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030635", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1017040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41315\",\"inUnknownProtos\":\"2373651107\",\"index\":\"635\",\"lastChange\":\"0:01:13.57\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:2d:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1574294297\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"24267336\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":426126,\"inBytes\":440031376,\"inFlow\":415810,\"lastChangeTime\":\"55 days, 13:25:10.88\",\"lastInBytes\":440031376,\"lastOutBytes\":1984496612,\"outBytes\":1984496612,\"outFlow\":10315,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":423608,\"inBytes\":1187191565,\"inFlow\":413314,\"lastChangeTime\":\"55 days, 13:25:15.09\",\"lastInBytes\":1187191565,\"lastOutBytes\":2059959429,\"outBytes\":2059959429,\"outFlow\":10294,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":424314,\"inBytes\":346660116,\"inFlow\":413959,\"lastChangeTime\":\"55 days, 13:25:14.06\",\"lastInBytes\":346660116,\"lastOutBytes\":2085655533,\"outBytes\":2085655533,\"outFlow\":10355,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":425598,\"inBytes\":1337939020,\"inFlow\":416859,\"lastChangeTime\":\"0:01:16.07\",\"lastInBytes\":1337939020,\"lastOutBytes\":3495985693,\"outBytes\":3495985693,\"outFlow\":8738,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":424072,\"inBytes\":4184426139,\"inFlow\":413852,\"lastChangeTime\":\"55 days, 13:25:07.60\",\"lastInBytes\":4184426139,\"lastOutBytes\":2112813011,\"outBytes\":2112813011,\"outFlow\":10219,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":425891,\"inBytes\":236947982,\"inFlow\":415456,\"lastChangeTime\":\"55 days, 13:25:15.82\",\"lastInBytes\":236947982,\"lastOutBytes\":2373651107,\"outBytes\":2373651107,\"outFlow\":10434,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":424697,\"inBytes\":2297342148,\"inFlow\":414419,\"lastChangeTime\":\"55 days, 13:25:09.26\",\"lastInBytes\":2297342148,\"lastOutBytes\":2443896523,\"outBytes\":2443896523,\"outFlow\":10278,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":424019,\"inBytes\":2724491005,\"inFlow\":413768,\"lastChangeTime\":\"55 days, 13:25:07.40\",\"lastInBytes\":2724491005,\"lastOutBytes\":2259804636,\"outBytes\":2259804636,\"outFlow\":10250,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":424300,\"inBytes\":830384083,\"inFlow\":414016,\"lastChangeTime\":\"0:01:15.56\",\"lastInBytes\":830384083,\"lastOutBytes\":700132303,\"outBytes\":700132303,\"outFlow\":10283,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":423133,\"inBytes\":276318978,\"inFlow\":412905,\"lastChangeTime\":\"55 days, 13:25:07.43\",\"lastInBytes\":276318978,\"lastOutBytes\":2379450415,\"outBytes\":2379450415,\"outFlow\":10228,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":424497,\"inBytes\":2068341376,\"inFlow\":414241,\"lastChangeTime\":\"55 days, 13:25:12.29\",\"lastInBytes\":2068341376,\"lastOutBytes\":1765841106,\"outBytes\":1765841106,\"outFlow\":10256,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":427169,\"inBytes\":4240182170,\"inFlow\":416781,\"lastChangeTime\":\"55 days, 13:25:10.30\",\"lastInBytes\":4240182170,\"lastOutBytes\":1770486899,\"outBytes\":1770486899,\"outFlow\":10388,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":695719451,\"inFlow\":1,\"lastChangeTime\":\"0:01:15.55\",\"lastInBytes\":695719451,\"lastOutBytes\":1689804743,\"outBytes\":1689804743,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5107227,\"inBytes\":4103782778,\"inFlow\":116469,\"lastChangeTime\":\"0:01:13.57\",\"lastInBytes\":4103782778,\"lastOutBytes\":4192564071,\"outBytes\":4192564071,\"outFlow\":4990757,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.986636000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030636", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1017040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.162.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface162\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"214016\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:16.44\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:07:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.162.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:22\",\"info\":{\"portInfoList\":[{\"flow\":424577,\"inBytes\":536601120,\"inFlow\":414289,\"lastChangeTime\":\"0:01:18.33\",\"lastInBytes\":536601120,\"lastOutBytes\":746894545,\"outBytes\":746894545,\"outFlow\":10287,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":283310,\"inBytes\":1655918400,\"inFlow\":276421,\"lastChangeTime\":\"0:01:18.05\",\"lastInBytes\":1655918400,\"lastOutBytes\":3707797653,\"outBytes\":3707797653,\"outFlow\":6889,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":424479,\"inBytes\":3866713933,\"inFlow\":414217,\"lastChangeTime\":\"0:01:18.06\",\"lastInBytes\":3866713933,\"lastOutBytes\":2874257289,\"outBytes\":2874257289,\"outFlow\":10262,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":425003,\"inBytes\":4087960512,\"inFlow\":414639,\"lastChangeTime\":\"0:01:18.33\",\"lastInBytes\":4087960512,\"lastOutBytes\":3708325134,\"outBytes\":3708325134,\"outFlow\":10363,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":424641,\"inBytes\":3117452000,\"inFlow\":414331,\"lastChangeTime\":\"0:01:18.05\",\"lastInBytes\":3117452000,\"lastOutBytes\":1554881570,\"outBytes\":1554881570,\"outFlow\":10309,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":73457,\"inFlow\":0,\"lastChangeTime\":\"136 days, 15:53:42.49\",\"lastInBytes\":73457,\"lastOutBytes\":1771387,\"outBytes\":1771387,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":1630103584,\"inFlow\":1,\"lastChangeTime\":\"136 days, 15:53:12.35\",\"lastInBytes\":1630103584,\"lastOutBytes\":1910542474,\"outBytes\":1910542474,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1990211,\"inBytes\":1850866922,\"inFlow\":50493,\"lastChangeTime\":\"136 days, 15:52:23.45\",\"lastInBytes\":1850866922,\"lastOutBytes\":3395972133,\"outBytes\":3395972133,\"outFlow\":1939717,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:17.988630000\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530565339030637", + "createdBy": "0", + "createdTime": "2025-12-01 11:18:28", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1017040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.161.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif161\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:11.84\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:1b:5c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"4\",\"temperature\":\"37\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.161.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"6653\",\"0\",\"0\",\"0\",\"6710\",\"6808\",\"6768\",\"6768\",\"6807\",\"6787\",\"6808\",\"0\",\"6744\",\"6844\",\"6797\",\"6864\",\"6701\",\"6775\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"12076\",\"2395984282\",\"12066\",\"12075\",\"0\",\"12054\",\"0\",\"40\",\"299196\",\"311585\",\"325824\",\"841\",\"868\",\"1154212\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:48\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36029,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":562,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31739,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":559,\"opticalVoltage\":3246,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38040,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":562,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39209,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":563,\"opticalVoltage\":3242,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33150,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":563,\"opticalVoltage\":3254,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32700,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":563,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34919,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":558,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36930,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3247,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41880,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":436,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39330,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":559,\"opticalVoltage\":3240,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35580,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3257,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37169,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":562,\"opticalVoltage\":3230,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42299,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":453,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37500,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":558,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39900,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":563,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36240,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":561,\"opticalVoltage\":3314,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34259,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":650,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34560,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":575,\"opticalVoltage\":3345,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40139,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":563,\"opticalVoltage\":3315,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39180,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":431,\"inBytes\":1610029046,\"inFlow\":81,\"lastChangeTime\":\"362 days, 12:20:12.56\",\"lastInBytes\":1610029046,\"lastOutBytes\":2380810917,\"opticalBiasCurrent\":18143,\"opticalReceivePower\":236,\"opticalTemperature\":53,\"opticalTransmitPower\":237,\"opticalVoltage\":3338,\"outBytes\":2380810917,\"outFlow\":350,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2309932984,\"inFlow\":0,\"lastChangeTime\":\"362 days, 11:40:04.33\",\"lastInBytes\":2309932984,\"lastOutBytes\":2295034550,\"opticalBiasCurrent\":41729,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":454,\"opticalVoltage\":3341,\"outBytes\":2295034550,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":3302170,\"inBytes\":3759567984,\"inFlow\":3209,\"lastChangeTime\":\"0:04:06.03\",\"lastInBytes\":3759567984,\"lastOutBytes\":2737978687,\"opticalBiasCurrent\":36689,\"opticalReceivePower\":418,\"opticalTemperature\":49,\"opticalTransmitPower\":561,\"opticalVoltage\":3340,\"outBytes\":2737978687,\"outFlow\":3298960,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2174265,\"inBytes\":1771055636,\"inFlow\":508909,\"lastChangeTime\":\"0:04:12.02\",\"lastInBytes\":1771055636,\"lastOutBytes\":1372983364,\"opticalBiasCurrent\":42659,\"opticalReceivePower\":298,\"opticalTemperature\":50,\"opticalTransmitPower\":529,\"opticalVoltage\":3276,\"outBytes\":1372983364,\"outFlow\":1665355,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2031990,\"inBytes\":1399780910,\"inFlow\":1967525,\"lastChangeTime\":\"331 days, 14:44:20.28\",\"lastInBytes\":1399780910,\"lastOutBytes\":3402386758,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":5,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":3402386758,\"outFlow\":64464,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6275843,\"inBytes\":1315198097,\"inFlow\":6078844,\"lastChangeTime\":\"489 days, 10:29:33.05\",\"lastInBytes\":1315198097,\"lastOutBytes\":2626146791,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":128,\"opticalTemperature\":47,\"opticalTransmitPower\":241,\"opticalVoltage\":3320,\"outBytes\":2626146791,\"outFlow\":196998,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5757600,\"inBytes\":1978815589,\"inFlow\":5578497,\"lastChangeTime\":\"489 days, 10:19:35.99\",\"lastInBytes\":1978815589,\"lastOutBytes\":3311677110,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":206,\"opticalTemperature\":46,\"opticalTransmitPower\":237,\"opticalVoltage\":3350,\"outBytes\":3311677110,\"outFlow\":179103,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5956016,\"inBytes\":2905269756,\"inFlow\":5765698,\"lastChangeTime\":\"489 days, 9:43:29.10\",\"lastInBytes\":2905269756,\"lastOutBytes\":3305195745,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":128,\"opticalTemperature\":47,\"opticalTransmitPower\":240,\"opticalVoltage\":3364,\"outBytes\":3305195745,\"outFlow\":190318,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7630279,\"inBytes\":2681750665,\"inFlow\":7396223,\"lastChangeTime\":\"489 days, 8:45:54.34\",\"lastInBytes\":2681750665,\"lastOutBytes\":3446598151,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":158,\"opticalTemperature\":51,\"opticalTransmitPower\":244,\"opticalVoltage\":3374,\"outBytes\":3446598151,\"outFlow\":234055,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6934191,\"inBytes\":4060394073,\"inFlow\":6715988,\"lastChangeTime\":\"489 days, 8:23:35.74\",\"lastInBytes\":4060394073,\"lastOutBytes\":3158765135,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":171,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3350,\"outBytes\":3158765135,\"outFlow\":218203,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6438985,\"inBytes\":2614542802,\"inFlow\":6243149,\"lastChangeTime\":\"456 days, 22:50:26.41\",\"lastInBytes\":2614542802,\"lastOutBytes\":3585234912,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":171,\"opticalTemperature\":45,\"opticalTransmitPower\":238,\"opticalVoltage\":3400,\"outBytes\":3585234912,\"outFlow\":195836,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":674471990,\"inFlow\":0,\"lastChangeTime\":\"331 days, 13:57:40.38\",\"lastInBytes\":674471990,\"lastOutBytes\":2508974034,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":241,\"opticalVoltage\":3343,\"outBytes\":2508974034,\"outFlow\":0,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3731233,\"inBytes\":4269646493,\"inFlow\":3610507,\"lastChangeTime\":\"424 days, 12:16:34.80\",\"lastInBytes\":4269646493,\"lastOutBytes\":2562340223,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":141,\"opticalTemperature\":44,\"opticalTransmitPower\":250,\"opticalVoltage\":3376,\"outBytes\":2562340223,\"outFlow\":120726,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9990084,\"inBytes\":2492527297,\"inFlow\":9683331,\"lastChangeTime\":\"424 days, 12:34:51.38\",\"lastInBytes\":2492527297,\"lastOutBytes\":4091690635,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":197,\"opticalTemperature\":49,\"opticalTransmitPower\":240,\"opticalVoltage\":3343,\"outBytes\":4091690635,\"outFlow\":306753,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6618098,\"inBytes\":2111639708,\"inFlow\":6408601,\"lastChangeTime\":\"331 days, 13:41:27.84\",\"lastInBytes\":2111639708,\"lastOutBytes\":2758417811,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":218,\"opticalTemperature\":46,\"opticalTransmitPower\":239,\"opticalVoltage\":3362,\"outBytes\":2758417811,\"outFlow\":209497,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6763574,\"inBytes\":3878071301,\"inFlow\":6546221,\"lastChangeTime\":\"331 days, 13:39:11.21\",\"lastInBytes\":3878071301,\"lastOutBytes\":1870484557,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":124,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3388,\"outBytes\":1870484557,\"outFlow\":217352,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7568347,\"inBytes\":2067517481,\"inFlow\":69586,\"lastChangeTime\":\"489 days, 9:07:58.63\",\"lastInBytes\":2067517481,\"lastOutBytes\":766969664,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":141,\"opticalTemperature\":45,\"opticalTransmitPower\":240,\"opticalVoltage\":3364,\"outBytes\":766969664,\"outFlow\":7498761,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4216174,\"inBytes\":4077749959,\"inFlow\":4085232,\"lastChangeTime\":\"362 days, 12:52:23.65\",\"lastInBytes\":4077749959,\"lastOutBytes\":3041253608,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":201,\"opticalTemperature\":47,\"opticalTransmitPower\":246,\"opticalVoltage\":3350,\"outBytes\":3041253608,\"outFlow\":130941,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":437218,\"inBytes\":3021682608,\"inFlow\":422741,\"lastChangeTime\":\"441 days, 1:38:30.85\",\"lastInBytes\":3021682608,\"lastOutBytes\":2223808997,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":240,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":2223808997,\"outFlow\":14477,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":435925,\"inBytes\":2978724814,\"inFlow\":421722,\"lastChangeTime\":\"442 days, 22:43:28.03\",\"lastInBytes\":2978724814,\"lastOutBytes\":1552599516,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":158,\"opticalTemperature\":47,\"opticalTransmitPower\":250,\"opticalVoltage\":3338,\"outBytes\":1552599516,\"outFlow\":14202,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9885,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":255,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":238,\"opticalVoltage\":3343,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9866,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":256,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13067,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":281,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10279,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":249,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37119,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":462,\"opticalVoltage\":3360,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12590,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":269,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85256,\"inBytes\":2387650002,\"inFlow\":56728,\"lastChangeTime\":\"414 days, 10:17:00.35\",\"lastInBytes\":2387650002,\"lastOutBytes\":2084039409,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2084039409,\"outFlow\":28528,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":34272568,\"inBytes\":2134103464,\"inFlow\":14000206,\"lastChangeTime\":\"419 days, 13:58:00.62\",\"lastInBytes\":2134103464,\"lastOutBytes\":1729487966,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1729487966,\"outFlow\":20272361,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":165110,\"inBytes\":523833194,\"inFlow\":47357,\"lastChangeTime\":\"83 days, 12:07:36.10\",\"lastInBytes\":523833194,\"lastOutBytes\":226859898,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":226859898,\"outFlow\":117752,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":352,\"inBytes\":506775775,\"inFlow\":10,\"lastChangeTime\":\"30 days, 5:57:09.31\",\"lastInBytes\":506775775,\"lastOutBytes\":1939437695,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1939437695,\"outFlow\":342,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2837121,\"inBytes\":3849593667,\"inFlow\":84032,\"lastChangeTime\":\"117 days, 22:07:34.92\",\"lastInBytes\":3849593667,\"lastOutBytes\":2714903299,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2714903299,\"outFlow\":2753089,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8663769,\"inBytes\":2213652902,\"inFlow\":650015,\"lastChangeTime\":\"83 days, 12:07:36.14\",\"lastInBytes\":2213652902,\"lastOutBytes\":1927779785,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1927779785,\"outFlow\":8013753,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16860810,\"inBytes\":1169208784,\"inFlow\":622006,\"lastChangeTime\":\"83 days, 12:07:36.17\",\"lastInBytes\":1169208784,\"lastOutBytes\":3716597709,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3716597709,\"outFlow\":16238803,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13427246,\"inBytes\":2708032039,\"inFlow\":554572,\"lastChangeTime\":\"83 days, 12:07:36.19\",\"lastInBytes\":2708032039,\"lastOutBytes\":668696638,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":668696638,\"outFlow\":12872673,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13050732,\"inBytes\":3200192179,\"inFlow\":702781,\"lastChangeTime\":\"83 days, 12:07:36.23\",\"lastInBytes\":3200192179,\"lastOutBytes\":2001340363,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2001340363,\"outFlow\":12347950,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":603,\"inBytes\":1781117733,\"inFlow\":159,\"lastChangeTime\":\"487 days, 9:08:29.18\",\"lastInBytes\":1781117733,\"lastOutBytes\":817735880,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":817735880,\"outFlow\":444,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":909,\"inBytes\":2689692712,\"inFlow\":241,\"lastChangeTime\":\"487 days, 9:06:47.07\",\"lastInBytes\":2689692712,\"lastOutBytes\":3288708060,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3288708060,\"outFlow\":667,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":867107,\"inBytes\":4240301927,\"inFlow\":25550,\"lastChangeTime\":\"81 days, 17:55:59.80\",\"lastInBytes\":4240301927,\"lastOutBytes\":4231088251,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4231088251,\"outFlow\":841557,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3208763861,\"inFlow\":0,\"lastChangeTime\":\"83 days, 9:02:41.05\",\"lastInBytes\":3208763861,\"lastOutBytes\":1921663395,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1921663395,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1285533,\"inFlow\":0,\"lastChangeTime\":\"487 days, 9:22:32.73\",\"lastInBytes\":1285533,\"lastOutBytes\":10110905,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":10110905,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":36,\"inBytes\":7960873,\"inFlow\":16,\"lastChangeTime\":\"118 days, 10:22:14.01\",\"lastInBytes\":7960873,\"lastOutBytes\":9424266,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":9424266,\"outFlow\":19,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":131,\"inBytes\":55590214,\"inFlow\":111,\"lastChangeTime\":\"118 days, 10:22:31.54\",\"lastInBytes\":55590214,\"lastOutBytes\":9384838,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":9384838,\"outFlow\":19,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:30.071231000\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "600593172812292096", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:17", + "echoMap": {}, + "deviceId": "1017110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.161.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.74\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"207 days, 2:58:38.58\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3562094\",\"inErrors\":\"0\",\"inNUcastPkts\":\"9545063\",\"inOctets\":\"4125915418\",\"inUcastPkts\":\"595270649\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:4a:d8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"486422564\",\"outQLen\":\"0\",\"outUcastPkts\":\"642870371\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.161.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1018": { + "ndmAlarmHost": [ + { + "id": "707147265573957669", + "createdBy": null, + "createdTime": "2025-12-08 13:45:05", + "updatedBy": null, + "updatedTime": "2025-12-08 13:45:05", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.163.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "589890767145673731", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1018060001", + "name": "[620](10)四川北消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803002006018620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673732", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-08 00:00:01", + "echoMap": {}, + "deviceId": "1018060002", + "name": "[602](10)四川北编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803041005018602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673733", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-08 00:00:00", + "echoMap": {}, + "deviceId": "1018060003", + "name": "[603](10)四川北编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803041005018603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673734", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1018060004", + "name": "[619](10)四川北消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803002006018619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673735", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-08 00:00:00", + "echoMap": {}, + "deviceId": "1018060005", + "name": "[616](10)四川北环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803046005018616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673736", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1018060006", + "name": "[604](10)四川北内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803001006018604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673737", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1018060007", + "name": "[612](10)四川北弱电机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803048005018612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673738", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1018060008", + "name": "[613](10)四川北弱电机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803048005018613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673739", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1018060009", + "name": "[614](10)四川北弱电机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803048005018614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673740", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1018060010", + "name": "[615](10)四川北弱电机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803048005018615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673741", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1018060011", + "name": "[338](10)四川北4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673742", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1018060012", + "name": "[339](10)四川北4#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673743", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1018060013", + "name": "[343](10)四川北4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673744", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1018060014", + "name": "[337](10)四川北4#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673745", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-26 11:36:48", + "echoMap": {}, + "deviceId": "1018060015", + "name": "[344](10)四川北4#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673746", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1018060016", + "name": "[214](10)四川北4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058004018214", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673747", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1018060017", + "name": "[340](10)四川北4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673748", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1018060018", + "name": "[341](10)四川北4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673749", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1018060019", + "name": "[342](10)四川北4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673750", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1018060020", + "name": "[335](10)四川北4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673751", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1018060021", + "name": "[336](10)四川北4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801058006018336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673752", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1018060022", + "name": "[407](10)四川北2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801006006018407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673753", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1018060023", + "name": "[504](10)四川北票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801030006018504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673754", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1018060024", + "name": "[502](10)四川北客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801001006018502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673755", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060025", + "name": "[369](10)四川北安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801085006018369", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673756", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060026", + "name": "[408](10)四川北2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801006006018408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673757", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060027", + "name": "[406](10)四川北2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801006006018406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673758", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1018060028", + "name": "[204](10)四川北厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801035004018204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673759", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060029", + "name": "[327](10)四川北3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673760", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1018060030", + "name": "[328](10)四川北3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673761", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1018060031", + "name": "[356](10)四川北#4厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673762", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1018060032", + "name": "[355](10)四川北#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673763", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1018060033", + "name": "[354](10)四川北#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673764", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1018060034", + "name": "[202](10)四川北厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801035004018202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673765", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1018060035", + "name": "[402](10)四川北1#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801005006018402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673766", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1018060036", + "name": "[350](10)四川北#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673767", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060037", + "name": "[367](10)四川北3#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801036005018367", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673768", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060038", + "name": "[362](10)四川北B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801040006018362", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673769", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060039", + "name": "[349](10)四川北#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673770", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060040", + "name": "[348](10)四川北#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673771", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060041", + "name": "[366](10)四川北2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801036005018366", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673772", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060042", + "name": "[352](10)四川北#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673773", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060043", + "name": "[351](10)四川北#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673774", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060044", + "name": "[346](10)四川北#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673775", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060045", + "name": "[345](10)四川北#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673776", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060046", + "name": "[361](10)四川北B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801040006018361", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673777", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060047", + "name": "[353](10)四川北#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673778", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060048", + "name": "[601](10)四川北车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803042004018601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673779", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060049", + "name": "[347](10)四川北#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801045006018347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673780", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-15 00:00:00", + "echoMap": {}, + "deviceId": "1018060050", + "name": "[501](10)四川北客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801001005018501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673781", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060051", + "name": "[401](10)四川北1#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801005006018401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673782", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060052", + "name": "[203](10)四川北厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801035004018203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673783", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060053", + "name": "[701](10)四川北3#-7#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673784", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1018060054", + "name": "[316](10)四川北2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673785", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060055", + "name": "[317](10)四川北2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673786", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060056", + "name": "[368](10)四川北安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801085006018368", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673787", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060057", + "name": "[324](10)四川北2#口厕所", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673788", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1018060058", + "name": "[213](10)四川北2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056004018213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673789", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1018060059", + "name": "[320](10)四川北2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673790", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060060", + "name": "[325](10)四川北2#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056005018325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673791", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060061", + "name": "[365](10)四川北1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801036005018365", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673792", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060062", + "name": "[326](10)四川北2#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673793", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060063", + "name": "[323](10)四川北2#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673794", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060064", + "name": "[322](10)四川北2#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673795", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1018060065", + "name": "[321](10)四川北2#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673796", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1018060066", + "name": "[318](10)四川北2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673797", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1018060067", + "name": "[319](10)四川北2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801056006018319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673798", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1018060068", + "name": "[303](10)四川北1#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673799", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1018060069", + "name": "[302](10)四川北1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673800", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060070", + "name": "[301](10)四川北1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673801", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060071", + "name": "[403](10)四川北1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801005006018403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673802", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060072", + "name": "[201](10)四川北厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801035004018201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673803", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1018060073", + "name": "[404](10)四川北1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801005006018404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673804", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060074", + "name": "[405](10)四川北1#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801005006018405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673805", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060075", + "name": "[605](10)四川北内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803001006018605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673806", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060076", + "name": "[503](10)四川北票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801030006018503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673808", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-22 04:33:48", + "echoMap": {}, + "deviceId": "1018060078", + "name": "[331](10)四川北3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673809", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1018060079", + "name": "[212](10)四川北3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057004018212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673810", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1018060080", + "name": "[332](10)四川北3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673811", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-24 03:55:48", + "echoMap": {}, + "deviceId": "1018060081", + "name": "[333](10)四川北3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673812", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1018060082", + "name": "[334](10)四川北3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673813", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1018060083", + "name": "[329](10)四川北3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673814", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1018060084", + "name": "[330](10)四川北3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801057006018330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673815", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1018060085", + "name": "[311](10)四川北1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673816", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1018060086", + "name": "[312](10)四川北1#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673817", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1018060087", + "name": "[308](10)四川北1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673818", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1018060088", + "name": "[307](10)四川北1#口入7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673819", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1018060089", + "name": "[306](10)四川北1#口入6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673820", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1018060090", + "name": "[315](10)四川北1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673821", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1018060091", + "name": "[313](10)四川北1#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673822", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1018060092", + "name": "[310](10)四川北1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673823", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-26 02:45:48", + "echoMap": {}, + "deviceId": "1018060093", + "name": "[309](10)四川北1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673824", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1018060094", + "name": "[314](10)四川北1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673825", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1018060095", + "name": "[210](10)四川北1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055004018210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673826", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1018060096", + "name": "[304](10)四川北1#口入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673827", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1018060097", + "name": "[305](10)四川北1#口入5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061801055006018305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673828", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1018060098", + "name": "[606](10)四川北内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021006018606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673829", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2026-01-08 00:00:01", + "echoMap": {}, + "deviceId": "1018060099", + "name": "[618](10)四川北屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021005018618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673830", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1018060100", + "name": "[359](10)四川北#3台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802017006018359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673831", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1018060101", + "name": "[207](10)四川北下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802001004018207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673832", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1018060102", + "name": "[107](10)四川北下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802012006018107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673833", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1018060103", + "name": "[108](10)四川北下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802012006018108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673834", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1018060104", + "name": "[110](10)四川北下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802012006018110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673835", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1018060105", + "name": "[357](10)四川北#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.163.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802017006018357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673836", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1018060106", + "name": "[363](10)四川北B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802002006018363", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673837", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1018060107", + "name": "[208](10)四川北下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802001004018208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673838", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060108", + "name": "[111](10)四川北下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802012006018111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673839", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060109", + "name": "[109](10)四川北下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802012006018109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673840", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1018060110", + "name": "[112](10)四川北下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802012006018112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673841", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1018060111", + "name": "[209](10)四川北下行球3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802001004018209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673842", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1018060112", + "name": "[106](10)四川北上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673843", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1018060113", + "name": "[105](10)四川北上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673844", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1018060114", + "name": "[113](10)四川北上行端头门2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673845", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060115", + "name": "[611](10)四川北内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021006018611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673846", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1018060116", + "name": "[206](10)四川北上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802001004018206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673847", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060117", + "name": "[360](10)四川北#4台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802017006018360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673848", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060118", + "name": "[102](10)四川北上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673849", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060119", + "name": "[104](10)四川北上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673850", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060120", + "name": "[101](10)四川北上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673851", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1018060121", + "name": "[103](10)四川北上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802007006018103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673852", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060122", + "name": "[205](10)四川北上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802001004018205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673853", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1018060123", + "name": "[358](10)四川北#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802017006018358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673854", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1018060124", + "name": "[364](10)四川北B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802002006018364", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673855", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1018060125", + "name": "[607](10)四川北内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021006018607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673856", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1018060126", + "name": "[608](10)四川北内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021006018608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673857", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1018060127", + "name": "[609](10)四川北内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021006018609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673858", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1018060128", + "name": "[610](10)四川北内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803021006018610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673859", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1018060129", + "name": "[704](10)四川北下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673860", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1018060130", + "name": "[705](10)四川北6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673861", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1018060131", + "name": "[706](10)四川北2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673862", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1018060132", + "name": "[707](10)四川北上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673863", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1018060133", + "name": "[708](10)四川北4#-8#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673864", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1018060134", + "name": "[702](10)四川北5#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673865", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1018060135", + "name": "[703](10)四川北1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804013006018703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300452", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1018060136", + "name": "[617](10)四川北环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.41", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803046005018617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300453", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1018060137", + "name": "[631](10)四川北海伦路上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.42", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804012004018631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300454", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1018060138", + "name": "[632](10)四川北海伦路下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.43", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061804012004018632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300455", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1018060139", + "name": "[630](10)四川北站台公共区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.40", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802002006018630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300457", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1018060140", + "name": "[628](10)四川北站台公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.38", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802002006018628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300458", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:01", + "echoMap": {}, + "deviceId": "1018060141", + "name": "[629](10)四川北站台公共区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.39", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802002006018629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300459", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2026-01-08 00:00:01", + "echoMap": {}, + "deviceId": "1018060142", + "name": "[624](10)四川北内通道9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803001005018624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300460", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1018060143", + "name": "[625](10)四川北通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.35", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803048005018625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300461", + "createdBy": null, + "createdTime": "2025-10-28 00:00:24", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1018060144", + "name": "[626](10)四川北气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.36", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803067005018626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300462", + "createdBy": null, + "createdTime": "2025-10-28 00:00:24", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:01", + "echoMap": {}, + "deviceId": "1018060145", + "name": "[627](10)四川北站台公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.37", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061802002006018627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300463", + "createdBy": null, + "createdTime": "2025-10-28 00:00:24", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1018060146", + "name": "[621](10)四川北气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803067005018621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300464", + "createdBy": null, + "createdTime": "2025-10-28 00:00:24", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1018060147", + "name": "[622](10)四川北通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.32", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803048005018622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410126210300465", + "createdBy": null, + "createdTime": "2025-10-28 00:00:24", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1018060148", + "name": "[623](10)四川北消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.164.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061803001005018623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589890767145673730", + "createdBy": "0", + "createdTime": "2025-02-28 10:39:00", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1018070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.163.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061800000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112035\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2356123989\",\"inUcastPkts\":\"662886966\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:67:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2554592445\",\"outQLen\":\"0\",\"outUcastPkts\":\"281265128\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.163.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:47\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ2C6ED\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589890767145673911", + "createdBy": "2", + "createdTime": "2025-02-28 10:40:45", + "updatedBy": null, + "updatedTime": "2025-12-23 10:16:20", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.163.51", + "manageUrl": "http:\\\\10.18.163.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589890767145673912", + "createdBy": "2", + "createdTime": "2025-02-28 10:41:05", + "updatedBy": null, + "updatedTime": "2025-12-23 10:16:15", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.163.52", + "manageUrl": "http:\\\\10.18.163.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589890767145673729", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1018090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.163.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.98\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"102 days, 11:09:53.96\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10487349\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27631986\",\"inOctets\":\"3607683291\",\"inUcastPkts\":\"2108521189\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:43:d4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"187766684\",\"outQLen\":\"0\",\"outUcastPkts\":\"980552699\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.163.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589890767145673867", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 10:39:19", + "echoMap": {}, + "deviceId": "1018050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.163.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061800000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.163.22;10.18.163.23" + }, + { + "id": "589890767145673868", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1018050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.163.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061800000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26094506\",\"inErrors\":\"0\",\"inNUcastPkts\":\"46626620\",\"inOctets\":\"1073180319\",\"inUcastPkts\":\"1590832988\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:55:cd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1614710872\",\"outQLen\":\"0\",\"outUcastPkts\":\"4236642006\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.163.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:48\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":799766701,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16322\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.163.22" + }, + { + "id": "589890767145673869", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1018050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.163.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061800000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26083915\",\"inErrors\":\"0\",\"inNUcastPkts\":\"58828498\",\"inOctets\":\"2361489865\",\"inUcastPkts\":\"3017888875\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:57:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2855165904\",\"outQLen\":\"0\",\"outUcastPkts\":\"3491224948\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3290\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.163.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:49\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":799766701,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16323\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"55\",\"CPU使用率\":\"23\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.163.23" + } + ], + "ndmSecurityBox": [ + { + "id": "704530707072722079", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1018030023", + "name": "安防箱23", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3031531\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166767055\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 18:48:25.44\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3031536\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2c:d5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.55,\"status\":1,\"voltage\":25.976002},{\"current\":0.001,\"status\":1,\"voltage\":25.976002},{\"current\":0.0,\"status\":1,\"voltage\":25.976002},{\"current\":0.0,\"status\":1,\"voltage\":25.976002},{\"current\":0.0,\"status\":1,\"voltage\":25.976002},{\"current\":0.0,\"status\":1,\"voltage\":25.976002},{\"current\":0.0,\"status\":1,\"voltage\":25.976002},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208308989\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722080", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1018030022", + "name": "安防箱22", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3031531\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166767433\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 14:37:49.10\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3031536\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2c:51\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.809002},{\"current\":0.001,\"status\":1,\"voltage\":25.809002},{\"current\":0.546,\"status\":1,\"voltage\":25.809002},{\"current\":0.001,\"status\":1,\"voltage\":25.809002},{\"current\":0.0,\"status\":1,\"voltage\":25.809002},{\"current\":0.0,\"status\":1,\"voltage\":25.809002},{\"current\":0.0,\"status\":1,\"voltage\":25.809002},{\"current\":0.0,\"status\":1,\"voltage\":25.809002},{\"current\":0.0,\"status\":1,\"voltage\":25.809002},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208309025\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722081", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1018030021", + "name": "安防箱21", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3031531\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166767047\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"260 days, 23:53:41.43\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3031536\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:d4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.001,\"status\":1,\"voltage\":26.826002},{\"current\":0.0,\"status\":1,\"voltage\":26.826002},{\"current\":0.0,\"status\":1,\"voltage\":26.826002},{\"current\":24.421001,\"status\":1,\"voltage\":26.826002},{\"current\":0.0,\"status\":1,\"voltage\":26.826002},{\"current\":0.0,\"status\":1,\"voltage\":26.826002},{\"current\":0.0,\"status\":1,\"voltage\":26.496002},{\"current\":0.003,\"status\":1,\"voltage\":26.496002},{\"current\":0.001,\"status\":1,\"voltage\":26.496002},{\"current\":0.001,\"status\":1,\"voltage\":26.496002},{\"current\":0.001,\"status\":1,\"voltage\":26.496002},{\"current\":0.001,\"status\":1,\"voltage\":26.496002},{\"current\":0.001,\"status\":1,\"voltage\":26.496002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0012512208303524\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722082", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1018030020", + "name": "安防箱20", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4173333\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"230795694\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4173338\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:d7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":1,\"voltage\":26.068},{\"current\":0.284,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":1,\"voltage\":26.068},{\"current\":0.001,\"status\":0,\"voltage\":26.068},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302327\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722083", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:58", + "echoMap": {}, + "deviceId": "1018030019", + "name": "安防箱19", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:35:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722084", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:58", + "echoMap": {}, + "deviceId": "1018030018", + "name": "安防箱18", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3029259\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166640572\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3029264\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:77\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.28300002,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":0,\"voltage\":26.165},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302322\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722085", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:59", + "echoMap": {}, + "deviceId": "1018030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3029221\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166638321\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3029226\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:d0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.296,\"status\":1,\"voltage\":25.910002},{\"current\":0.28300002,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":1,\"voltage\":25.910002},{\"current\":0.001,\"status\":0,\"voltage\":25.910002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302326\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722086", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:59", + "echoMap": {}, + "deviceId": "1018030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3029384\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166648282\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3029389\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:9e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.03},{\"current\":0.001,\"status\":1,\"voltage\":26.03},{\"current\":0.26200002,\"status\":1,\"voltage\":26.03},{\"current\":0.28800002,\"status\":1,\"voltage\":26.03},{\"current\":0.001,\"status\":1,\"voltage\":26.03},{\"current\":0.001,\"status\":1,\"voltage\":26.03},{\"current\":0.001,\"status\":1,\"voltage\":26.03},{\"current\":0.001,\"status\":1,\"voltage\":26.03},{\"current\":0.001,\"status\":0,\"voltage\":26.03},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302321\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722087", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1018030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722088", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1018030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554053\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196310032\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"260 days, 16:47:31.86\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554058\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:6e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":26.171001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.171001},{\"current\":0.27800003,\"status\":1,\"voltage\":26.171001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.171001},{\"current\":0.528,\"status\":1,\"voltage\":26.171001},{\"current\":0.268,\"status\":1,\"voltage\":26.171001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.171001},{\"current\":0.001,\"status\":1,\"voltage\":26.171001},{\"current\":0.001,\"status\":1,\"voltage\":26.171001},{\"current\":0.001,\"status\":1,\"voltage\":26.084002},{\"current\":0.003,\"status\":1,\"voltage\":26.084002},{\"current\":0.001,\"status\":1,\"voltage\":26.084002},{\"current\":0.001,\"status\":1,\"voltage\":26.084002},{\"current\":0.001,\"status\":1,\"voltage\":26.084002},{\"current\":0.001,\"status\":1,\"voltage\":26.084002},{\"current\":0.001,\"status\":1,\"voltage\":26.084002}],\"fanSpeeds\":[1260,1290],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301902\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722089", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1018030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3553890\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196300463\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"259 days, 16:16:57.23\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3553895\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:d2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27600002,\"status\":1,\"voltage\":25.863},{\"current\":0.27400002,\"status\":1,\"voltage\":25.863},{\"current\":0.259,\"status\":1,\"voltage\":25.863},{\"current\":0.27400002,\"status\":1,\"voltage\":25.863},{\"current\":0.559,\"status\":1,\"voltage\":25.863},{\"current\":0.26200002,\"status\":1,\"voltage\":25.863},{\"current\":0.24400002,\"status\":1,\"voltage\":25.863},{\"current\":0.257,\"status\":1,\"voltage\":25.863},{\"current\":0.001,\"status\":1,\"voltage\":25.863},{\"current\":0.001,\"status\":1,\"voltage\":26.292002},{\"current\":0.003,\"status\":1,\"voltage\":26.292002},{\"current\":0.001,\"status\":1,\"voltage\":26.292002},{\"current\":0.001,\"status\":1,\"voltage\":26.292002},{\"current\":0.001,\"status\":1,\"voltage\":26.292002},{\"current\":0.001,\"status\":1,\"voltage\":26.292002},{\"current\":0.001,\"status\":1,\"voltage\":26.292002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300978\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722090", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1018030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3553727\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196291492\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"264 days, 10:14:03.91\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3553732\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:89\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":25.992},{\"current\":0.286,\"status\":1,\"voltage\":25.992},{\"current\":0.544,\"status\":1,\"voltage\":25.992},{\"current\":0.24900001,\"status\":1,\"voltage\":25.992},{\"current\":0.28500003,\"status\":1,\"voltage\":25.992},{\"current\":0.257,\"status\":1,\"voltage\":25.992},{\"current\":0.532,\"status\":1,\"voltage\":25.992},{\"current\":0.26500002,\"status\":1,\"voltage\":25.992},{\"current\":0.19600001,\"status\":1,\"voltage\":25.992},{\"current\":0.001,\"status\":1,\"voltage\":26.081001},{\"current\":0.003,\"status\":1,\"voltage\":26.081001},{\"current\":0.001,\"status\":1,\"voltage\":26.081001},{\"current\":0.001,\"status\":1,\"voltage\":26.081001},{\"current\":0.001,\"status\":1,\"voltage\":26.081001},{\"current\":0.001,\"status\":1,\"voltage\":26.081001},{\"current\":0.001,\"status\":1,\"voltage\":26.081001}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300137\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722091", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1018030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3553890\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196300380\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"261 days, 15:19:18.67\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3553895\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:84\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.259,\"status\":1,\"voltage\":26.163002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.163002},{\"current\":0.273,\"status\":1,\"voltage\":26.163002},{\"current\":0.52400005,\"status\":1,\"voltage\":26.163002},{\"current\":0.27100003,\"status\":1,\"voltage\":26.163002},{\"current\":0.261,\"status\":1,\"voltage\":26.163002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.003,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256},{\"current\":0.001,\"status\":1,\"voltage\":26.256}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300132\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722092", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1018030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3555683\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196400559\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"261 days, 7:28:28.86\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3555688\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:53\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23,\"status\":1,\"voltage\":26.146002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.146002},{\"current\":0.28300002,\"status\":1,\"voltage\":26.146002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.146002},{\"current\":0.245,\"status\":1,\"voltage\":26.146002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.146002},{\"current\":0.245,\"status\":1,\"voltage\":26.146002},{\"current\":0.23,\"status\":1,\"voltage\":26.146002},{\"current\":0.22200002,\"status\":1,\"voltage\":26.146002},{\"current\":0.224,\"status\":1,\"voltage\":26.224},{\"current\":0.002,\"status\":1,\"voltage\":26.224},{\"current\":0.507,\"status\":1,\"voltage\":26.224},{\"current\":0.30100003,\"status\":1,\"voltage\":26.224},{\"current\":0.30200002,\"status\":1,\"voltage\":26.224},{\"current\":0.001,\"status\":1,\"voltage\":26.224},{\"current\":0.001,\"status\":1,\"voltage\":26.224}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301619\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722093", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1018030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554379\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196328040\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"261 days, 19:39:55.75\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554384\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:73\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25800002,\"status\":1,\"voltage\":26.007002},{\"current\":0.514,\"status\":1,\"voltage\":26.007002},{\"current\":0.273,\"status\":1,\"voltage\":26.007002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.007002},{\"current\":0.34300002,\"status\":1,\"voltage\":26.007002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.007002},{\"current\":0.386,\"status\":1,\"voltage\":26.007002},{\"current\":0.001,\"status\":1,\"voltage\":26.007002},{\"current\":0.001,\"status\":1,\"voltage\":26.007002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.002,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.001,\"status\":1,\"voltage\":26.028002},{\"current\":0.0,\"status\":1,\"voltage\":26.028002},{\"current\":0.0,\"status\":1,\"voltage\":26.028002}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301395\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722094", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1018030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554705\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196345278\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"262 days, 3:06:16.39\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554710\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:60\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34800002,\"status\":1,\"voltage\":25.85},{\"current\":0.36600003,\"status\":1,\"voltage\":25.85},{\"current\":0.335,\"status\":1,\"voltage\":25.85},{\"current\":0.347,\"status\":1,\"voltage\":25.85},{\"current\":0.546,\"status\":1,\"voltage\":25.85},{\"current\":0.34500003,\"status\":1,\"voltage\":25.85},{\"current\":0.34600002,\"status\":1,\"voltage\":25.85},{\"current\":0.26900002,\"status\":1,\"voltage\":25.85},{\"current\":0.287,\"status\":1,\"voltage\":25.85},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.003,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.0,\"status\":1,\"voltage\":26.384}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302400\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722095", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1018030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554705\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196346929\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"261 days, 19:48:32.02\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554710\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:82\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.44400004,\"status\":1,\"voltage\":25.79},{\"current\":0.44900003,\"status\":1,\"voltage\":25.79},{\"current\":0.001,\"status\":1,\"voltage\":25.79},{\"current\":0.001,\"status\":1,\"voltage\":25.79},{\"current\":0.51600003,\"status\":1,\"voltage\":25.79},{\"current\":0.001,\"status\":1,\"voltage\":25.79},{\"current\":0.27,\"status\":1,\"voltage\":25.79},{\"current\":0.42600003,\"status\":1,\"voltage\":25.79},{\"current\":0.333,\"status\":1,\"voltage\":25.79},{\"current\":0.32200003,\"status\":1,\"voltage\":25.844002},{\"current\":0.003,\"status\":1,\"voltage\":25.844002},{\"current\":0.30600002,\"status\":1,\"voltage\":25.844002},{\"current\":0.298,\"status\":1,\"voltage\":25.844002},{\"current\":0.4,\"status\":1,\"voltage\":25.844002},{\"current\":0.39800003,\"status\":1,\"voltage\":25.844002},{\"current\":0.001,\"status\":1,\"voltage\":25.844002}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301922\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722096", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1018030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3028379\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166593067\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3028384\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:15:3c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":1,\"voltage\":25.821001},{\"current\":0.272,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":1,\"voltage\":25.821001},{\"current\":0.001,\"status\":0,\"voltage\":25.821001},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302319\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722097", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:12", + "echoMap": {}, + "deviceId": "1018030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554379\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196328365\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"263 days, 23:17:30.92\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554384\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:06\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.416,\"status\":1,\"voltage\":25.949001},{\"current\":0.294,\"status\":1,\"voltage\":25.949001},{\"current\":0.26000002,\"status\":1,\"voltage\":25.949001},{\"current\":0.23400001,\"status\":1,\"voltage\":25.949001},{\"current\":0.25,\"status\":1,\"voltage\":25.949001},{\"current\":0.26000002,\"status\":1,\"voltage\":25.949001},{\"current\":0.256,\"status\":1,\"voltage\":25.949001},{\"current\":0.51000005,\"status\":1,\"voltage\":25.949001},{\"current\":0.24300002,\"status\":1,\"voltage\":25.949001},{\"current\":0.261,\"status\":1,\"voltage\":26.222002},{\"current\":0.002,\"status\":1,\"voltage\":26.222002},{\"current\":0.31500003,\"status\":1,\"voltage\":26.222002},{\"current\":0.55300003,\"status\":1,\"voltage\":26.222002},{\"current\":0.001,\"status\":1,\"voltage\":26.222002},{\"current\":0.0,\"status\":1,\"voltage\":26.222002},{\"current\":0.0,\"status\":1,\"voltage\":26.222002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301286\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722098", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:12", + "echoMap": {}, + "deviceId": "1018030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554216\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196319686\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"261 days, 15:21:41.09\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554221\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:ce\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.53400004,\"status\":1,\"voltage\":25.948002},{\"current\":0.38000003,\"status\":1,\"voltage\":25.948002},{\"current\":0.294,\"status\":1,\"voltage\":25.948002},{\"current\":0.43400002,\"status\":1,\"voltage\":25.948002},{\"current\":0.402,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.31100002,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":25.948002},{\"current\":0.001,\"status\":1,\"voltage\":26.457},{\"current\":0.003,\"status\":1,\"voltage\":26.457},{\"current\":0.001,\"status\":1,\"voltage\":26.457},{\"current\":0.001,\"status\":1,\"voltage\":26.457},{\"current\":0.001,\"status\":1,\"voltage\":26.457},{\"current\":0.001,\"status\":1,\"voltage\":26.457},{\"current\":0.001,\"status\":1,\"voltage\":26.457}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301742\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722099", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:13", + "echoMap": {}, + "deviceId": "1018030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554379\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196327272\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"264 days, 6:09:37.88\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554384\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:1a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.011002},{\"current\":0.293,\"status\":1,\"voltage\":26.011002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.011002},{\"current\":0.319,\"status\":1,\"voltage\":26.011002},{\"current\":0.342,\"status\":1,\"voltage\":26.011002},{\"current\":0.518,\"status\":1,\"voltage\":26.011002},{\"current\":0.29200003,\"status\":1,\"voltage\":26.011002},{\"current\":0.298,\"status\":1,\"voltage\":26.011002},{\"current\":0.287,\"status\":1,\"voltage\":26.011002},{\"current\":0.275,\"status\":1,\"voltage\":26.062002},{\"current\":0.003,\"status\":1,\"voltage\":26.062002},{\"current\":0.34800002,\"status\":1,\"voltage\":26.062002},{\"current\":0.001,\"status\":1,\"voltage\":26.062002},{\"current\":0.001,\"status\":1,\"voltage\":26.062002},{\"current\":0.001,\"status\":1,\"voltage\":26.062002},{\"current\":0.001,\"status\":1,\"voltage\":26.062002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301562\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:13", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722100", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:13", + "echoMap": {}, + "deviceId": "1018030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554216\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196318816\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"263 days, 23:46:27.64\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554221\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:e3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.333,\"status\":1,\"voltage\":26.058},{\"current\":0.32700002,\"status\":1,\"voltage\":26.058},{\"current\":0.231,\"status\":1,\"voltage\":26.058},{\"current\":0.26500002,\"status\":1,\"voltage\":26.058},{\"current\":0.256,\"status\":1,\"voltage\":26.058},{\"current\":0.505,\"status\":1,\"voltage\":26.058},{\"current\":0.23700002,\"status\":1,\"voltage\":26.058},{\"current\":0.23300001,\"status\":1,\"voltage\":26.058},{\"current\":0.263,\"status\":1,\"voltage\":26.058},{\"current\":0.337,\"status\":1,\"voltage\":25.898},{\"current\":0.003,\"status\":1,\"voltage\":25.898},{\"current\":0.32900003,\"status\":1,\"voltage\":25.898},{\"current\":0.35700002,\"status\":1,\"voltage\":25.898},{\"current\":0.001,\"status\":1,\"voltage\":25.898},{\"current\":0.001,\"status\":1,\"voltage\":25.898},{\"current\":0.001,\"status\":1,\"voltage\":25.898}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301507\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:13", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722101", + "createdBy": "0", + "createdTime": "2025-12-01 13:19:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:14", + "echoMap": {}, + "deviceId": "1018030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.164.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3554542\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"196338263\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"261 days, 22:59:39.07\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3554547\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:85\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23700002,\"status\":1,\"voltage\":25.887001},{\"current\":0.22100002,\"status\":1,\"voltage\":25.887001},{\"current\":0.21900001,\"status\":1,\"voltage\":25.887001},{\"current\":0.21000001,\"status\":1,\"voltage\":25.887001},{\"current\":0.193,\"status\":1,\"voltage\":25.887001},{\"current\":0.24900001,\"status\":1,\"voltage\":25.887001},{\"current\":0.22200002,\"status\":1,\"voltage\":25.887001},{\"current\":0.24200001,\"status\":1,\"voltage\":25.887001},{\"current\":0.21300001,\"status\":1,\"voltage\":25.887001},{\"current\":0.21400002,\"status\":1,\"voltage\":26.043001},{\"current\":0.002,\"status\":1,\"voltage\":26.043001},{\"current\":0.21900001,\"status\":1,\"voltage\":26.043001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.043001},{\"current\":0.22200002,\"status\":1,\"voltage\":26.043001},{\"current\":0.25,\"status\":1,\"voltage\":26.043001},{\"current\":0.22100002,\"status\":1,\"voltage\":26.043001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300901\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "704530707072722025", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:52", + "echoMap": {}, + "deviceId": "1018040024", + "name": "华为前端交换机23", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"11 days, 12:06:23.09\",\"mTU\":\"1500\",\"macAddress\":\"c4:e2:87:7b:db:29\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.153\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:51\",\"info\":{\"portInfoList\":[{\"flow\":405163,\"inBytes\":1554166247,\"inFlow\":396097,\"lastChangeTime\":\"11 days, 13:05:29.23\",\"lastInBytes\":1554166247,\"lastOutBytes\":3664580066,\"outBytes\":3664580066,\"outFlow\":9065,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":301,\"inBytes\":301636392,\"inFlow\":105,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":301636392,\"lastOutBytes\":1996067110,\"outBytes\":1996067110,\"outFlow\":195,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407960,\"inBytes\":3220050529,\"inFlow\":10233,\"lastChangeTime\":\"0:08:55.03\",\"lastInBytes\":3220050529,\"lastOutBytes\":4078753640,\"outBytes\":4078753640,\"outFlow\":397727,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:35:16.686677000\"}}", + "lastDiagTime": "2026-02-02 14:36:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722026", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:48", + "echoMap": {}, + "deviceId": "1018040023", + "name": "华为前端交换机22", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"11 days, 13:16:31.21\",\"mTU\":\"1500\",\"macAddress\":\"c4:e2:87:7b:da:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.152\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:47\",\"info\":{\"portInfoList\":[{\"flow\":407448,\"inBytes\":682956150,\"inFlow\":398263,\"lastChangeTime\":\"11 days, 14:07:46.99\",\"lastInBytes\":682956150,\"lastOutBytes\":2520494465,\"outBytes\":2520494465,\"outFlow\":9185,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":303,\"inBytes\":301640260,\"inFlow\":106,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":301640260,\"lastOutBytes\":1997265444,\"outBytes\":1997265444,\"outFlow\":197,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409396,\"inBytes\":1987972364,\"inFlow\":10325,\"lastChangeTime\":\"96 days, 11:17:20.00\",\"lastInBytes\":1987972364,\"lastOutBytes\":3132967628,\"outBytes\":3132967628,\"outFlow\":399070,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:35:15.601182000\"}}", + "lastDiagTime": "2026-02-02 14:36:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722027", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1018040022", + "name": "H3C前端交换机21", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"271917\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"124 days, 0:22:23.85\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:c1:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"35\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.151\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:32\",\"info\":{\"portInfoList\":[{\"flow\":3253235,\"inBytes\":4018688771,\"inFlow\":18931,\"lastChangeTime\":\"216 days, 21:58:10.27\",\"lastInBytes\":4018688771,\"lastOutBytes\":599817526,\"outBytes\":599817526,\"outFlow\":3234303,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":306,\"inBytes\":730097071,\"inFlow\":4,\"lastChangeTime\":\"419 days, 11:11:30.63\",\"lastInBytes\":730097071,\"lastOutBytes\":1722194547,\"outBytes\":1722194547,\"outFlow\":302,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":482,\"inBytes\":717432364,\"inFlow\":108,\"lastChangeTime\":\"310 days, 13:24:09.52\",\"lastInBytes\":717432364,\"lastOutBytes\":1773817526,\"outBytes\":1773817526,\"outFlow\":374,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":296,\"inBytes\":387736613,\"inFlow\":11,\"lastChangeTime\":\"24 days, 14:08:25.43\",\"lastInBytes\":387736613,\"lastOutBytes\":105353591,\"outBytes\":105353591,\"outFlow\":285,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":18776,\"inFlow\":0,\"lastChangeTime\":\"369 days, 12:52:35.84\",\"lastInBytes\":18776,\"lastOutBytes\":17550,\"outBytes\":17550,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2888,\"inFlow\":0,\"lastChangeTime\":\"124 days, 0:21:51.21\",\"lastInBytes\":2888,\"lastOutBytes\":4008,\"outBytes\":4008,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":22506,\"inFlow\":0,\"lastChangeTime\":\"124 days, 0:26:54.13\",\"lastInBytes\":22506,\"lastOutBytes\":4518155,\"outBytes\":4518155,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":21496,\"inFlow\":0,\"lastChangeTime\":\"369 days, 12:51:34.99\",\"lastInBytes\":21496,\"lastOutBytes\":15805,\"outBytes\":15805,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":314,\"inBytes\":314327392,\"inFlow\":108,\"lastChangeTime\":\"369 days, 12:52:38.28\",\"lastInBytes\":314327392,\"lastOutBytes\":132488878,\"outBytes\":132488878,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3484426,\"inBytes\":1740628881,\"inFlow\":3462263,\"lastChangeTime\":\"124 days, 0:27:31.83\",\"lastInBytes\":1740628881,\"lastOutBytes\":1556498467,\"outBytes\":1556498467,\"outFlow\":22162,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.521550000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722028", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:27", + "echoMap": {}, + "deviceId": "1018040021", + "name": "华为前端交换机20", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:46\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"17\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.150\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:27\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406903,\"inBytes\":3417547446,\"inFlow\":397575,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3417547446,\"lastOutBytes\":3925276345,\"outBytes\":3925276345,\"outFlow\":9327,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":302,\"inBytes\":416710071,\"inFlow\":105,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":416710071,\"lastOutBytes\":2110476373,\"outBytes\":2110476373,\"outFlow\":197,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":408419,\"inBytes\":4079433622,\"inFlow\":398169,\"lastChangeTime\":\"0:09:54.51\",\"lastInBytes\":4079433622,\"lastOutBytes\":3220169783,\"outBytes\":3220169783,\"outFlow\":10250,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":820103,\"inBytes\":3755083367,\"inFlow\":20379,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3755083367,\"lastOutBytes\":4276032503,\"outBytes\":4276032503,\"outFlow\":799723,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:24.319054000\"}}", + "lastDiagTime": "2026-02-02 14:37:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722029", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:46", + "echoMap": {}, + "deviceId": "1018040020", + "name": "华为前端交换机19", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:86\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.149\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:45\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":412538,\"inBytes\":3629778014,\"inFlow\":403256,\"lastChangeTime\":\"314 days, 23:33:43.52\",\"lastInBytes\":3629778014,\"lastOutBytes\":1015951163,\"outBytes\":1015951163,\"outFlow\":9282,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"272 days, 23:33:10.92\",\"lastInBytes\":0,\"lastOutBytes\":2589906529,\"outBytes\":2589906529,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":417188,\"inBytes\":3131322238,\"inFlow\":406771,\"lastChangeTime\":\"369 days, 10:56:24.72\",\"lastInBytes\":3131322238,\"lastOutBytes\":1988017564,\"outBytes\":1988017564,\"outFlow\":10417,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":823658,\"inBytes\":3192349596,\"inFlow\":20595,\"lastChangeTime\":\"259 days, 0:36:46.07\",\"lastInBytes\":3192349596,\"lastOutBytes\":3907545922,\"outBytes\":3907545922,\"outFlow\":803063,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:15.366521000\"}}", + "lastDiagTime": "2026-02-02 14:36:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722030", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:56", + "echoMap": {}, + "deviceId": "1018040019", + "name": "华为前端交换机18", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:45\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.148\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:55\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405153,\"inBytes\":1173966958,\"inFlow\":395867,\"lastChangeTime\":\"315 days, 0:29:06.44\",\"lastInBytes\":1173966958,\"lastOutBytes\":3810472441,\"outBytes\":3810472441,\"outFlow\":9286,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2690,\"inFlow\":0,\"lastChangeTime\":\"315 days, 0:28:29.73\",\"lastInBytes\":2690,\"lastOutBytes\":1890,\"outBytes\":1890,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":97,\"inBytes\":301221137,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":301221137,\"lastOutBytes\":2860291765,\"outBytes\":2860291765,\"outFlow\":95,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405897,\"inBytes\":2892581982,\"inFlow\":10344,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2892581982,\"lastOutBytes\":1446411839,\"outBytes\":1446411839,\"outFlow\":395553,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:18.009892000\"}}", + "lastDiagTime": "2026-02-02 14:36:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722031", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:48", + "echoMap": {}, + "deviceId": "1018040018", + "name": "华为前端交换机17", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:3f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.147\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:48\",\"info\":{\"portInfoList\":[{\"flow\":405888,\"inBytes\":2902097421,\"inFlow\":396503,\"lastChangeTime\":\"11 days, 10:39:36.52\",\"lastInBytes\":2902097421,\"lastOutBytes\":180347675,\"outBytes\":180347675,\"outFlow\":9384,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":405701,\"inBytes\":3780060509,\"inFlow\":396313,\"lastChangeTime\":\"11 days, 10:41:36.86\",\"lastInBytes\":3780060509,\"lastOutBytes\":1477817356,\"outBytes\":1477817356,\"outFlow\":9388,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":301217170,\"inFlow\":2,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":301217170,\"lastOutBytes\":2891112601,\"outBytes\":2891112601,\"outFlow\":96,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":817189,\"inBytes\":2851602736,\"inFlow\":20343,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2851602736,\"lastOutBytes\":1707396621,\"outBytes\":1707396621,\"outFlow\":796846,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:15.861705000\"}}", + "lastDiagTime": "2026-02-02 14:36:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722032", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:47", + "echoMap": {}, + "deviceId": "1018040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:91\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:47\",\"info\":{\"portInfoList\":[{\"flow\":407884,\"inBytes\":2115040643,\"inFlow\":398686,\"lastChangeTime\":\"56 days, 11:31:11.18\",\"lastInBytes\":2115040643,\"lastOutBytes\":3892005807,\"outBytes\":3892005807,\"outFlow\":9198,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":408065,\"inBytes\":3548186376,\"inFlow\":398726,\"lastChangeTime\":\"11 days, 23:18:12.27\",\"lastInBytes\":3548186376,\"lastOutBytes\":1818824621,\"outBytes\":1818824621,\"outFlow\":9338,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":301234123,\"inFlow\":2,\"lastChangeTime\":\"11 days, 23:14:01.87\",\"lastInBytes\":301234123,\"lastOutBytes\":2932060074,\"outBytes\":2932060074,\"outFlow\":96,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":817402,\"inBytes\":1284020519,\"inFlow\":20078,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1284020519,\"lastOutBytes\":3262089851,\"outBytes\":3262089851,\"outFlow\":797323,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:15.629201000\"}}", + "lastDiagTime": "2026-02-02 14:36:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722033", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1018040016", + "name": "H3C前端交换机15", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"138694\",\"inUnknownProtos\":\"1156600156\",\"index\":\"635\",\"lastChange\":\"0:01:16.89\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e2:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1656877718\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.145\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:32\",\"info\":{\"portInfoList\":[{\"flow\":412067,\"inBytes\":3502603043,\"inFlow\":402140,\"lastChangeTime\":\"0:37:37.21\",\"lastInBytes\":3502603043,\"lastOutBytes\":967548486,\"outBytes\":967548486,\"outFlow\":9926,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":414607,\"inBytes\":2959599911,\"inFlow\":404705,\"lastChangeTime\":\"0:37:37.60\",\"lastInBytes\":2959599911,\"lastOutBytes\":1176592897,\"outBytes\":1176592897,\"outFlow\":9901,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":411935,\"inBytes\":2226039042,\"inFlow\":402012,\"lastChangeTime\":\"0:37:40.51\",\"lastInBytes\":2226039042,\"lastOutBytes\":2495269745,\"outBytes\":2495269745,\"outFlow\":9923,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":412163,\"inBytes\":2899277854,\"inFlow\":402268,\"lastChangeTime\":\"0:37:36.65\",\"lastInBytes\":2899277854,\"lastOutBytes\":1564953853,\"outBytes\":1564953853,\"outFlow\":9894,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":275063,\"inBytes\":88396665,\"inFlow\":268446,\"lastChangeTime\":\"11 days, 10:41:16.60\",\"lastInBytes\":88396665,\"lastOutBytes\":711531252,\"outBytes\":711531252,\"outFlow\":6616,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":274987,\"inBytes\":1840148521,\"inFlow\":268392,\"lastChangeTime\":\"229 days, 8:42:59.31\",\"lastInBytes\":1840148521,\"lastOutBytes\":1156600156,\"outBytes\":1156600156,\"outFlow\":6594,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":571178,\"inFlow\":0,\"lastChangeTime\":\"124 days, 1:26:09.60\",\"lastInBytes\":571178,\"lastOutBytes\":20166763,\"outBytes\":20166763,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":1038149,\"inFlow\":0,\"lastChangeTime\":\"124 days, 1:49:24.22\",\"lastInBytes\":1038149,\"lastOutBytes\":4051474381,\"outBytes\":4051474381,\"outFlow\":98,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2207612,\"inBytes\":2913249795,\"inFlow\":55917,\"lastChangeTime\":\"0:01:16.89\",\"lastInBytes\":2913249795,\"lastOutBytes\":1576590784,\"outBytes\":1576590784,\"outFlow\":2151694,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.621786000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722034", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"16\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"169666\",\"inUnknownProtos\":\"3752335525\",\"index\":\"635\",\"lastChange\":\"0:01:11.32\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f1:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1117126233\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.144\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":904442,\"inBytes\":1408814706,\"inFlow\":881755,\"lastChangeTime\":\"368 days, 0:38:45.69\",\"lastInBytes\":1408814706,\"lastOutBytes\":2227939092,\"outBytes\":2227939092,\"outFlow\":22686,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":896909,\"inBytes\":2226548748,\"inFlow\":874568,\"lastChangeTime\":\"435 days, 5:34:13.01\",\"lastInBytes\":2226548748,\"lastOutBytes\":1309578186,\"outBytes\":1309578186,\"outFlow\":22340,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":904939,\"inBytes\":2742022740,\"inFlow\":882267,\"lastChangeTime\":\"368 days, 0:38:48.12\",\"lastInBytes\":2742022740,\"lastOutBytes\":698676052,\"outBytes\":698676052,\"outFlow\":22671,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":906468,\"inBytes\":1989043902,\"inFlow\":883851,\"lastChangeTime\":\"368 days, 0:38:47.84\",\"lastInBytes\":1989043902,\"lastOutBytes\":2063430730,\"outBytes\":2063430730,\"outFlow\":22616,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415282,\"inBytes\":638260945,\"inFlow\":405328,\"lastChangeTime\":\"299 days, 20:08:59.09\",\"lastInBytes\":638260945,\"lastOutBytes\":882583372,\"outBytes\":882583372,\"outFlow\":9953,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414654,\"inBytes\":3379916911,\"inFlow\":404673,\"lastChangeTime\":\"0:32:02.20\",\"lastInBytes\":3379916911,\"lastOutBytes\":3752335525,\"outBytes\":3752335525,\"outFlow\":9981,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414787,\"inBytes\":1742821562,\"inFlow\":404788,\"lastChangeTime\":\"0:32:01.84\",\"lastInBytes\":1742821562,\"lastOutBytes\":227474031,\"outBytes\":227474031,\"outFlow\":9999,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":367605757,\"inFlow\":109,\"lastChangeTime\":\"0:01:13.19\",\"lastInBytes\":367605757,\"lastOutBytes\":64616861,\"outBytes\":64616861,\"outFlow\":212,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4873520,\"inBytes\":3785936502,\"inFlow\":127065,\"lastChangeTime\":\"0:01:11.32\",\"lastInBytes\":3785936502,\"lastOutBytes\":1478155460,\"outBytes\":1478155460,\"outFlow\":4746455,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.499147000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722035", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139060\",\"inUnknownProtos\":\"3807317982\",\"index\":\"635\",\"lastChange\":\"0:01:16.40\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f8:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1117659845\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.143\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":906622,\"inBytes\":4075183255,\"inFlow\":883970,\"lastChangeTime\":\"368 days, 0:38:55.30\",\"lastInBytes\":4075183255,\"lastOutBytes\":3558118643,\"outBytes\":3558118643,\"outFlow\":22651,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":905745,\"inBytes\":1593994778,\"inFlow\":883111,\"lastChangeTime\":\"368 days, 0:38:53.04\",\"lastInBytes\":1593994778,\"lastOutBytes\":185345638,\"outBytes\":185345638,\"outFlow\":22633,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414696,\"inBytes\":1080575235,\"inFlow\":404748,\"lastChangeTime\":\"124 days, 1:26:30.75\",\"lastInBytes\":1080575235,\"lastOutBytes\":3461079997,\"outBytes\":3461079997,\"outFlow\":9948,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414725,\"inBytes\":1564213432,\"inFlow\":404612,\"lastChangeTime\":\"124 days, 1:26:32.56\",\"lastInBytes\":1564213432,\"lastOutBytes\":77700980,\"outBytes\":77700980,\"outFlow\":10112,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415663,\"inBytes\":3245469195,\"inFlow\":405715,\"lastChangeTime\":\"299 days, 20:09:05.14\",\"lastInBytes\":3245469195,\"lastOutBytes\":1117164378,\"outBytes\":1117164378,\"outFlow\":9947,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414603,\"inBytes\":2688257537,\"inFlow\":404651,\"lastChangeTime\":\"124 days, 1:26:31.99\",\"lastInBytes\":2688257537,\"lastOutBytes\":3807317982,\"outBytes\":3807317982,\"outFlow\":9951,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":785709,\"inBytes\":3466794543,\"inFlow\":767053,\"lastChangeTime\":\"247 days, 14:14:31.28\",\"lastInBytes\":3466794543,\"lastOutBytes\":4225932284,\"outBytes\":4225932284,\"outFlow\":18655,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":388451,\"inBytes\":440683181,\"inFlow\":378951,\"lastChangeTime\":\"247 days, 13:56:35.39\",\"lastInBytes\":440683181,\"lastOutBytes\":3700884947,\"outBytes\":3700884947,\"outFlow\":9500,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":516082,\"inFlow\":0,\"lastChangeTime\":\"247 days, 13:47:15.89\",\"lastInBytes\":516082,\"lastOutBytes\":20291990,\"outBytes\":20291990,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":308,\"inBytes\":367588536,\"inFlow\":108,\"lastChangeTime\":\"124 days, 1:46:05.24\",\"lastInBytes\":367588536,\"lastOutBytes\":57165656,\"outBytes\":57165656,\"outFlow\":199,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4745898,\"inBytes\":451086143,\"inFlow\":121799,\"lastChangeTime\":\"247 days, 13:47:11.07\",\"lastInBytes\":451086143,\"lastOutBytes\":894558671,\"outBytes\":894558671,\"outFlow\":4624098,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.492191000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722036", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"138697\",\"inUnknownProtos\":\"3921060590\",\"index\":\"635\",\"lastChange\":\"0:01:29.27\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e0:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3080773912\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"26741926\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":389086,\"inBytes\":4258321428,\"inFlow\":379320,\"lastChangeTime\":\"0:18:01.06\",\"lastInBytes\":4258321428,\"lastOutBytes\":418644126,\"outBytes\":418644126,\"outFlow\":9765,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":389402,\"inBytes\":16331934,\"inFlow\":379977,\"lastChangeTime\":\"0:18:06.89\",\"lastInBytes\":16331934,\"lastOutBytes\":590955444,\"outBytes\":590955444,\"outFlow\":9425,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":389237,\"inBytes\":2640516951,\"inFlow\":379966,\"lastChangeTime\":\"299 days, 20:09:33.95\",\"lastInBytes\":2640516951,\"lastOutBytes\":697616695,\"outBytes\":697616695,\"outFlow\":9271,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":843455,\"inBytes\":1116025032,\"inFlow\":822260,\"lastChangeTime\":\"368 days, 0:39:05.01\",\"lastInBytes\":1116025032,\"lastOutBytes\":3063606496,\"outBytes\":3063606496,\"outFlow\":21194,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":845589,\"inBytes\":3852274392,\"inFlow\":824611,\"lastChangeTime\":\"368 days, 0:39:08.57\",\"lastInBytes\":3852274392,\"lastOutBytes\":4005402466,\"outBytes\":4005402466,\"outFlow\":20977,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":845298,\"inBytes\":275502906,\"inFlow\":824408,\"lastChangeTime\":\"368 days, 0:39:20.86\",\"lastInBytes\":275502906,\"lastOutBytes\":3920844945,\"outBytes\":3920844945,\"outFlow\":20889,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":388059,\"inBytes\":4079231430,\"inFlow\":378726,\"lastChangeTime\":\"299 days, 20:09:16.52\",\"lastInBytes\":4079231430,\"lastOutBytes\":452885235,\"outBytes\":452885235,\"outFlow\":9333,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":388391,\"inBytes\":299574528,\"inFlow\":378935,\"lastChangeTime\":\"229 days, 9:08:57.41\",\"lastInBytes\":299574528,\"lastOutBytes\":1933069394,\"outBytes\":1933069394,\"outFlow\":9456,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415636,\"inBytes\":130133615,\"inFlow\":405538,\"lastChangeTime\":\"229 days, 9:08:57.24\",\"lastInBytes\":130133615,\"lastOutBytes\":2227833308,\"outBytes\":2227833308,\"outFlow\":10098,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":317,\"inBytes\":367572959,\"inFlow\":109,\"lastChangeTime\":\"0:18:24.81\",\"lastInBytes\":367572959,\"lastOutBytes\":60111309,\"outBytes\":60111309,\"outFlow\":208,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5218227,\"inBytes\":2468204983,\"inFlow\":134776,\"lastChangeTime\":\"0:01:29.27\",\"lastInBytes\":2468204983,\"lastOutBytes\":327740885,\"outBytes\":327740885,\"outFlow\":5083451,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.500429000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722037", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139368\",\"inUnknownProtos\":\"3027348142\",\"index\":\"635\",\"lastChange\":\"0:01:16.37\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:49:4d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2857045151\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":415191,\"inBytes\":2106464713,\"inFlow\":404747,\"lastChangeTime\":\"0:05:23.68\",\"lastInBytes\":2106464713,\"lastOutBytes\":3647438127,\"outBytes\":3647438127,\"outFlow\":10444,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":277525,\"inBytes\":3838906588,\"inFlow\":270285,\"lastChangeTime\":\"11 days, 10:45:56.45\",\"lastInBytes\":3838906588,\"lastOutBytes\":1092291820,\"outBytes\":1092291820,\"outFlow\":7239,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":902164,\"inBytes\":3514905499,\"inFlow\":879382,\"lastChangeTime\":\"368 days, 0:18:16.08\",\"lastInBytes\":3514905499,\"lastOutBytes\":1543419459,\"outBytes\":1543419459,\"outFlow\":22781,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416972,\"inBytes\":3357546053,\"inFlow\":406577,\"lastChangeTime\":\"369 days, 13:52:21.26\",\"lastInBytes\":3357546053,\"lastOutBytes\":4118779721,\"outBytes\":4118779721,\"outFlow\":10395,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415242,\"inBytes\":1004238909,\"inFlow\":404797,\"lastChangeTime\":\"0:05:38.93\",\"lastInBytes\":1004238909,\"lastOutBytes\":3264285795,\"outBytes\":3264285795,\"outFlow\":10444,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":899949,\"inBytes\":3615363299,\"inFlow\":877200,\"lastChangeTime\":\"368 days, 0:18:20.86\",\"lastInBytes\":3615363299,\"lastOutBytes\":3027348142,\"outBytes\":3027348142,\"outFlow\":22748,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":901788,\"inBytes\":369320021,\"inFlow\":878999,\"lastChangeTime\":\"368 days, 0:18:09.53\",\"lastInBytes\":369320021,\"lastOutBytes\":655000325,\"outBytes\":655000325,\"outFlow\":22789,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":367588629,\"inFlow\":109,\"lastChangeTime\":\"0:05:45.45\",\"lastInBytes\":367588629,\"lastOutBytes\":73961033,\"outBytes\":73961033,\"outFlow\":211,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3977149,\"inBytes\":1463659426,\"inFlow\":104530,\"lastChangeTime\":\"0:01:16.37\",\"lastInBytes\":1463659426,\"lastOutBytes\":2528132984,\"outBytes\":2528132984,\"outFlow\":3872619,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.513995000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722038", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1018040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139368\",\"inUnknownProtos\":\"2766662459\",\"index\":\"634\",\"lastChange\":\"0:01:19.92\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:11:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1616868181\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153686208\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:32\",\"info\":{\"portInfoList\":[{\"flow\":415644,\"inBytes\":3609417545,\"inFlow\":405244,\"lastChangeTime\":\"368 days, 0:38:49.42\",\"lastInBytes\":3609417545,\"lastOutBytes\":2006537623,\"outBytes\":2006537623,\"outFlow\":10400,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":415551,\"inBytes\":2520159301,\"inFlow\":405308,\"lastChangeTime\":\"368 days, 0:38:53.60\",\"lastInBytes\":2520159301,\"lastOutBytes\":16241061,\"outBytes\":16241061,\"outFlow\":10242,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":428779,\"inBytes\":2001439213,\"inFlow\":419875,\"lastChangeTime\":\"88 days, 17:03:26.10\",\"lastInBytes\":2001439213,\"lastOutBytes\":4132912554,\"outBytes\":4132912554,\"outFlow\":8903,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415522,\"inBytes\":2036440627,\"inFlow\":405284,\"lastChangeTime\":\"368 days, 0:38:50.57\",\"lastInBytes\":2036440627,\"lastOutBytes\":4112698997,\"outBytes\":4112698997,\"outFlow\":10237,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414264,\"inBytes\":3684050777,\"inFlow\":404098,\"lastChangeTime\":\"368 days, 0:38:51.28\",\"lastInBytes\":3684050777,\"lastOutBytes\":2869998819,\"outBytes\":2869998819,\"outFlow\":10165,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414203,\"inBytes\":253035854,\"inFlow\":403888,\"lastChangeTime\":\"368 days, 0:38:52.70\",\"lastInBytes\":253035854,\"lastOutBytes\":2766662459,\"outBytes\":2766662459,\"outFlow\":10314,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":415494,\"inBytes\":3634803420,\"inFlow\":405230,\"lastChangeTime\":\"368 days, 0:38:56.32\",\"lastInBytes\":3634803420,\"lastOutBytes\":1128654455,\"outBytes\":1128654455,\"outFlow\":10263,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414868,\"inBytes\":1851666018,\"inFlow\":404665,\"lastChangeTime\":\"368 days, 0:39:00.10\",\"lastInBytes\":1851666018,\"lastOutBytes\":2357710666,\"outBytes\":2357710666,\"outFlow\":10202,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415934,\"inBytes\":2803157347,\"inFlow\":405655,\"lastChangeTime\":\"444 days, 4:04:29.94\",\"lastInBytes\":2803157347,\"lastOutBytes\":1739616712,\"outBytes\":1739616712,\"outFlow\":10278,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":415361,\"inBytes\":1982128195,\"inFlow\":405114,\"lastChangeTime\":\"368 days, 0:38:56.95\",\"lastInBytes\":1982128195,\"lastOutBytes\":3860827454,\"outBytes\":3860827454,\"outFlow\":10247,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106004,\"inBytes\":2308115752,\"inFlow\":1079954,\"lastChangeTime\":\"299 days, 20:09:03.16\",\"lastInBytes\":2308115752,\"lastOutBytes\":3210635337,\"outBytes\":3210635337,\"outFlow\":26049,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":415989,\"inBytes\":2193420494,\"inFlow\":405703,\"lastChangeTime\":\"368 days, 0:38:59.89\",\"lastInBytes\":2193420494,\"lastOutBytes\":885478718,\"outBytes\":885478718,\"outFlow\":10286,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":416121,\"inBytes\":3094926499,\"inFlow\":405810,\"lastChangeTime\":\"368 days, 0:38:44.81\",\"lastInBytes\":3094926499,\"lastOutBytes\":1969625454,\"outBytes\":1969625454,\"outFlow\":10310,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":6593566,\"inFlow\":0,\"lastChangeTime\":\"392 days, 12:27:23.43\",\"lastInBytes\":6593566,\"lastOutBytes\":428898416,\"outBytes\":428898416,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":317,\"inBytes\":367798682,\"inFlow\":109,\"lastChangeTime\":\"0:01:21.82\",\"lastInBytes\":367798682,\"lastOutBytes\":70635306,\"outBytes\":70635306,\"outFlow\":207,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6126561,\"inBytes\":101388886,\"inFlow\":152895,\"lastChangeTime\":\"0:01:19.92\",\"lastInBytes\":101388886,\"lastOutBytes\":2533858789,\"outBytes\":2533858789,\"outFlow\":5973666,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.463550000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722039", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"10\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139274\",\"inUnknownProtos\":\"3673798015\",\"index\":\"635\",\"lastChange\":\"0:01:19.29\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:47:8d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"85980438\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":391588,\"inBytes\":4182139523,\"inFlow\":381703,\"lastChangeTime\":\"441 days, 9:32:54.56\",\"lastInBytes\":4182139523,\"lastOutBytes\":3639358209,\"outBytes\":3639358209,\"outFlow\":9885,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1088662,\"inBytes\":871004060,\"inFlow\":1063092,\"lastChangeTime\":\"299 days, 19:19:40.09\",\"lastInBytes\":871004060,\"lastOutBytes\":299026296,\"outBytes\":299026296,\"outFlow\":25570,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":416747,\"inBytes\":2174333394,\"inFlow\":406285,\"lastChangeTime\":\"367 days, 23:49:30.79\",\"lastInBytes\":2174333394,\"lastOutBytes\":2921790444,\"outBytes\":2921790444,\"outFlow\":10461,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416670,\"inBytes\":2795132316,\"inFlow\":406106,\"lastChangeTime\":\"444 days, 2:53:31.93\",\"lastInBytes\":2795132316,\"lastOutBytes\":3551264451,\"outBytes\":3551264451,\"outFlow\":10564,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415671,\"inBytes\":3166822977,\"inFlow\":405364,\"lastChangeTime\":\"367 days, 23:49:26.67\",\"lastInBytes\":3166822977,\"lastOutBytes\":453660596,\"outBytes\":453660596,\"outFlow\":10307,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":415169,\"inBytes\":2097706520,\"inFlow\":406931,\"lastChangeTime\":\"88 days, 16:13:25.06\",\"lastInBytes\":2097706520,\"lastOutBytes\":3673798015,\"outBytes\":3673798015,\"outFlow\":8237,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419416,\"inBytes\":374508246,\"inFlow\":411065,\"lastChangeTime\":\"88 days, 16:13:52.68\",\"lastInBytes\":374508246,\"lastOutBytes\":358020335,\"outBytes\":358020335,\"outFlow\":8350,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":313,\"inBytes\":367639383,\"inFlow\":109,\"lastChangeTime\":\"0:01:21.27\",\"lastInBytes\":367639383,\"lastOutBytes\":57759703,\"outBytes\":57759703,\"outFlow\":203,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3594693,\"inBytes\":3734706485,\"inFlow\":87147,\"lastChangeTime\":\"0:01:19.29\",\"lastInBytes\":3734706485,\"lastOutBytes\":187755916,\"outBytes\":187755916,\"outFlow\":3507545,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.509051000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722040", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139504\",\"inUnknownProtos\":\"3032739070\",\"index\":\"635\",\"lastChange\":\"124 days, 0:46:07.97\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:2b:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1343934663\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153686449\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":440136,\"inBytes\":1928087160,\"inFlow\":430844,\"lastChangeTime\":\"88 days, 17:03:25.07\",\"lastInBytes\":1928087160,\"lastOutBytes\":3202646619,\"outBytes\":3202646619,\"outFlow\":9291,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":448503,\"inBytes\":1658130868,\"inFlow\":439154,\"lastChangeTime\":\"88 days, 17:03:32.71\",\"lastInBytes\":1658130868,\"lastOutBytes\":1492183671,\"outBytes\":1492183671,\"outFlow\":9348,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":903216,\"inBytes\":3740876717,\"inFlow\":885852,\"lastChangeTime\":\"88 days, 17:03:17.05\",\"lastInBytes\":3740876717,\"lastOutBytes\":1176007774,\"outBytes\":1176007774,\"outFlow\":17364,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":493615,\"inBytes\":2066391084,\"inFlow\":481825,\"lastChangeTime\":\"88 days, 17:03:33.04\",\"lastInBytes\":2066391084,\"lastOutBytes\":2217881291,\"outBytes\":2217881291,\"outFlow\":11790,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415433,\"inBytes\":3886684493,\"inFlow\":405236,\"lastChangeTime\":\"299 days, 20:09:37.40\",\"lastInBytes\":3886684493,\"lastOutBytes\":3469508905,\"outBytes\":3469508905,\"outFlow\":10197,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":477075,\"inBytes\":3176990677,\"inFlow\":465729,\"lastChangeTime\":\"88 days, 17:03:32.75\",\"lastInBytes\":3176990677,\"lastOutBytes\":3032739070,\"outBytes\":3032739070,\"outFlow\":11345,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":438614,\"inBytes\":2275749862,\"inFlow\":428584,\"lastChangeTime\":\"88 days, 17:03:15.36\",\"lastInBytes\":2275749862,\"lastOutBytes\":4064394548,\"outBytes\":4064394548,\"outFlow\":10030,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415135,\"inBytes\":3818153498,\"inFlow\":404758,\"lastChangeTime\":\"0:01:18.42\",\"lastInBytes\":3818153498,\"lastOutBytes\":1504910080,\"outBytes\":1504910080,\"outFlow\":10376,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415254,\"inBytes\":4087749099,\"inFlow\":405016,\"lastChangeTime\":\"0:01:18.60\",\"lastInBytes\":4087749099,\"lastOutBytes\":3556940630,\"outBytes\":3556940630,\"outFlow\":10238,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":9386279,\"inFlow\":0,\"lastChangeTime\":\"369 days, 13:18:32.68\",\"lastInBytes\":9386279,\"lastOutBytes\":345424751,\"outBytes\":345424751,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":318,\"inBytes\":371557161,\"inFlow\":109,\"lastChangeTime\":\"314 days, 22:45:12.70\",\"lastInBytes\":371557161,\"lastOutBytes\":209501141,\"outBytes\":209501141,\"outFlow\":209,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4466982,\"inBytes\":705970147,\"inFlow\":103730,\"lastChangeTime\":\"124 days, 0:46:18.74\",\"lastInBytes\":705970147,\"lastOutBytes\":3301295024,\"outBytes\":3301295024,\"outFlow\":4363251,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.473749000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722041", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1018040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"15\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"141159\",\"inUnknownProtos\":\"3852857482\",\"index\":\"635\",\"lastChange\":\"0:01:15.46\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:48:cd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3829847343\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153667874\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:32\",\"info\":{\"portInfoList\":[{\"flow\":414224,\"inBytes\":267899254,\"inFlow\":405417,\"lastChangeTime\":\"88 days, 17:03:35.87\",\"lastInBytes\":267899254,\"lastOutBytes\":3961551772,\"outBytes\":3961551772,\"outFlow\":8806,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":646562,\"inBytes\":5370572,\"inFlow\":631987,\"lastChangeTime\":\"88 days, 17:03:31.36\",\"lastInBytes\":5370572,\"lastOutBytes\":2667359943,\"outBytes\":2667359943,\"outFlow\":14575,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":899714,\"inBytes\":888833385,\"inFlow\":877526,\"lastChangeTime\":\"123 days, 23:47:48.56\",\"lastInBytes\":888833385,\"lastOutBytes\":4005844851,\"outBytes\":4005844851,\"outFlow\":22187,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414815,\"inBytes\":3326503381,\"inFlow\":404602,\"lastChangeTime\":\"368 days, 0:39:21.11\",\"lastInBytes\":3326503381,\"lastOutBytes\":2719744963,\"outBytes\":2719744963,\"outFlow\":10213,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1107785,\"inBytes\":2121816058,\"inFlow\":1081442,\"lastChangeTime\":\"299 days, 20:09:50.01\",\"lastInBytes\":2121816058,\"lastOutBytes\":3368650243,\"outBytes\":3368650243,\"outFlow\":26342,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414973,\"inBytes\":1646999831,\"inFlow\":404800,\"lastChangeTime\":\"368 days, 0:39:29.98\",\"lastInBytes\":1646999831,\"lastOutBytes\":502324669,\"outBytes\":502324669,\"outFlow\":10172,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":277564,\"inBytes\":967814070,\"inFlow\":270441,\"lastChangeTime\":\"388 days, 21:31:01.56\",\"lastInBytes\":967814070,\"lastOutBytes\":3852857482,\"outBytes\":3852857482,\"outFlow\":7122,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":277288,\"inBytes\":2911347041,\"inFlow\":270340,\"lastChangeTime\":\"363 days, 9:13:21.94\",\"lastInBytes\":2911347041,\"lastOutBytes\":2512276188,\"outBytes\":2512276188,\"outFlow\":6948,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415192,\"inBytes\":3426024435,\"inFlow\":404918,\"lastChangeTime\":\"0:01:18.62\",\"lastInBytes\":3426024435,\"lastOutBytes\":3148479166,\"outBytes\":3148479166,\"outFlow\":10273,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":417002,\"inBytes\":1186970845,\"inFlow\":406614,\"lastChangeTime\":\"368 days, 0:39:24.11\",\"lastInBytes\":1186970845,\"lastOutBytes\":3136392922,\"outBytes\":3136392922,\"outFlow\":10388,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":414928,\"inBytes\":3441310330,\"inFlow\":404701,\"lastChangeTime\":\"368 days, 0:39:15.79\",\"lastInBytes\":3441310330,\"lastOutBytes\":118265682,\"outBytes\":118265682,\"outFlow\":10227,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":416754,\"inBytes\":4015354959,\"inFlow\":406420,\"lastChangeTime\":\"368 days, 0:39:20.66\",\"lastInBytes\":4015354959,\"lastOutBytes\":1574793665,\"outBytes\":1574793665,\"outFlow\":10334,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":950301,\"inBytes\":3088123925,\"inFlow\":931238,\"lastChangeTime\":\"88 days, 17:03:34.71\",\"lastInBytes\":3088123925,\"lastOutBytes\":2553117006,\"outBytes\":2553117006,\"outFlow\":19063,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":466365,\"inBytes\":1240790199,\"inFlow\":456476,\"lastChangeTime\":\"185 days, 10:43:27.39\",\"lastInBytes\":1240790199,\"lastOutBytes\":1899416147,\"outBytes\":1899416147,\"outFlow\":9888,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":176216,\"inFlow\":0,\"lastChangeTime\":\"185 days, 10:44:01.07\",\"lastInBytes\":176216,\"lastOutBytes\":4250256,\"outBytes\":4250256,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":315,\"inBytes\":367682067,\"inFlow\":109,\"lastChangeTime\":\"124 days, 2:39:06.97\",\"lastInBytes\":367682067,\"lastOutBytes\":4251225478,\"outBytes\":4251225478,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:41.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:41.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7576844,\"inBytes\":612301935,\"inFlow\":183197,\"lastChangeTime\":\"185 days, 10:45:05.74\",\"lastInBytes\":612301935,\"lastOutBytes\":3769506575,\"outBytes\":3769506575,\"outFlow\":7393646,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.527844000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722042", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:56", + "echoMap": {}, + "deviceId": "1018040007", + "name": "华为前端交换机6", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif164\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:64\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.136\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:36:55\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":404469,\"inBytes\":1487867117,\"inFlow\":394819,\"lastChangeTime\":\"56 days, 11:58:05.89\",\"lastInBytes\":1487867117,\"lastOutBytes\":233159445,\"outBytes\":233159445,\"outFlow\":9650,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":97,\"inBytes\":301137274,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":301137274,\"lastOutBytes\":410038065,\"outBytes\":410038065,\"outFlow\":95,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407813,\"inBytes\":3259528028,\"inFlow\":10526,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3259528028,\"lastOutBytes\":1637704775,\"outBytes\":1637704775,\"outFlow\":397286,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:17.823790000\"}}", + "lastDiagTime": "2026-02-02 14:36:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722043", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1018040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139278\",\"inUnknownProtos\":\"2168014815\",\"index\":\"636\",\"lastChange\":\"0:01:18.09\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:05:8d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1131164126\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153687071\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.135\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:33\",\"info\":{\"portInfoList\":[{\"flow\":276562,\"inBytes\":1751899468,\"inFlow\":269640,\"lastChangeTime\":\"363 days, 9:21:50.49\",\"lastInBytes\":1751899468,\"lastOutBytes\":1461149045,\"outBytes\":1461149045,\"outFlow\":6921,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413463,\"inBytes\":833580354,\"inFlow\":403273,\"lastChangeTime\":\"0:46:40.28\",\"lastInBytes\":833580354,\"lastOutBytes\":2731477121,\"outBytes\":2731477121,\"outFlow\":10189,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":412935,\"inBytes\":1759018550,\"inFlow\":402839,\"lastChangeTime\":\"0:46:43.65\",\"lastInBytes\":1759018550,\"lastOutBytes\":1425991825,\"outBytes\":1425991825,\"outFlow\":10095,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":412469,\"inBytes\":2632241111,\"inFlow\":402328,\"lastChangeTime\":\"0:46:40.98\",\"lastInBytes\":2632241111,\"lastOutBytes\":2195743259,\"outBytes\":2195743259,\"outFlow\":10141,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":475302,\"inBytes\":3489072858,\"inFlow\":463464,\"lastChangeTime\":\"0:46:40.61\",\"lastInBytes\":3489072858,\"lastOutBytes\":4189064765,\"outBytes\":4189064765,\"outFlow\":11837,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":412445,\"inBytes\":1379575531,\"inFlow\":402264,\"lastChangeTime\":\"0:46:41.17\",\"lastInBytes\":1379575531,\"lastOutBytes\":1705587247,\"outBytes\":1705587247,\"outFlow\":10180,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414136,\"inBytes\":1940686856,\"inFlow\":403931,\"lastChangeTime\":\"0:46:40.67\",\"lastInBytes\":1940686856,\"lastOutBytes\":2168014815,\"outBytes\":2168014815,\"outFlow\":10205,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":412245,\"inBytes\":879649357,\"inFlow\":402001,\"lastChangeTime\":\"299 days, 20:09:38.78\",\"lastInBytes\":879649357,\"lastOutBytes\":234889871,\"outBytes\":234889871,\"outFlow\":10244,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":413996,\"inBytes\":2261030341,\"inFlow\":403821,\"lastChangeTime\":\"0:46:39.41\",\"lastInBytes\":2261030341,\"lastOutBytes\":1391137406,\"outBytes\":1391137406,\"outFlow\":10174,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":286901,\"inBytes\":1039866159,\"inFlow\":278592,\"lastChangeTime\":\"11 days, 11:06:58.83\",\"lastInBytes\":1039866159,\"lastOutBytes\":3177887752,\"outBytes\":3177887752,\"outFlow\":8308,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":902729,\"inBytes\":517459749,\"inFlow\":884007,\"lastChangeTime\":\"123 days, 23:41:52.67\",\"lastInBytes\":517459749,\"lastOutBytes\":2897254489,\"outBytes\":2897254489,\"outFlow\":18722,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":411833,\"inBytes\":2635883388,\"inFlow\":401743,\"lastChangeTime\":\"299 days, 20:09:28.98\",\"lastInBytes\":2635883388,\"lastOutBytes\":2826060605,\"outBytes\":2826060605,\"outFlow\":10090,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":313,\"inBytes\":367639266,\"inFlow\":108,\"lastChangeTime\":\"0:01:21.22\",\"lastInBytes\":367639266,\"lastOutBytes\":63088473,\"outBytes\":63088473,\"outFlow\":204,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:45.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:45.46\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5262224,\"inBytes\":2292450477,\"inFlow\":131308,\"lastChangeTime\":\"0:01:18.09\",\"lastInBytes\":2292450477,\"lastOutBytes\":429925251,\"outBytes\":429925251,\"outFlow\":5130916,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.713810000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722044", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139574\",\"inUnknownProtos\":\"1297813815\",\"index\":\"635\",\"lastChange\":\"0:01:10.97\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:51:0d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1118143536\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":414851,\"inBytes\":3613572199,\"inFlow\":404739,\"lastChangeTime\":\"299 days, 20:09:00.08\",\"lastInBytes\":3613572199,\"lastOutBytes\":2727242236,\"outBytes\":2727242236,\"outFlow\":10111,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1202722,\"inBytes\":3989013634,\"inFlow\":1174835,\"lastChangeTime\":\"88 days, 17:03:42.79\",\"lastInBytes\":3989013634,\"lastOutBytes\":3880296568,\"outBytes\":3880296568,\"outFlow\":27887,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414720,\"inBytes\":621610887,\"inFlow\":404513,\"lastChangeTime\":\"0:54:36.19\",\"lastInBytes\":621610887,\"lastOutBytes\":2389792604,\"outBytes\":2389792604,\"outFlow\":10207,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":277097,\"inBytes\":3680840887,\"inFlow\":270184,\"lastChangeTime\":\"363 days, 9:26:54.19\",\"lastInBytes\":3680840887,\"lastOutBytes\":2768020723,\"outBytes\":2768020723,\"outFlow\":6912,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415317,\"inBytes\":1382267126,\"inFlow\":405100,\"lastChangeTime\":\"0:54:35.11\",\"lastInBytes\":1382267126,\"lastOutBytes\":1991461959,\"outBytes\":1991461959,\"outFlow\":10216,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414935,\"inBytes\":3501581615,\"inFlow\":404807,\"lastChangeTime\":\"0:54:36.04\",\"lastInBytes\":3501581615,\"lastOutBytes\":1297813815,\"outBytes\":1297813815,\"outFlow\":10128,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416050,\"inBytes\":3813721738,\"inFlow\":405825,\"lastChangeTime\":\"0:54:34.88\",\"lastInBytes\":3813721738,\"lastOutBytes\":3255585855,\"outBytes\":3255585855,\"outFlow\":10224,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":39158,\"inFlow\":0,\"lastChangeTime\":\"340 days, 8:30:26.16\",\"lastInBytes\":39158,\"lastOutBytes\":867781,\"outBytes\":867781,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":319,\"inBytes\":367622999,\"inFlow\":109,\"lastChangeTime\":\"0:01:12.66\",\"lastInBytes\":367622999,\"lastOutBytes\":69774371,\"outBytes\":69774371,\"outFlow\":209,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3348704,\"inBytes\":868237222,\"inFlow\":83749,\"lastChangeTime\":\"0:01:10.97\",\"lastInBytes\":868237222,\"lastOutBytes\":1627491762,\"outBytes\":1627491762,\"outFlow\":3264955,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.502507000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722045", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139373\",\"inUnknownProtos\":\"2511605024\",\"index\":\"635\",\"lastChange\":\"0:01:12.86\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:58:0d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2831351089\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153687473\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":415404,\"inBytes\":17551813,\"inFlow\":405150,\"lastChangeTime\":\"0:53:39.10\",\"lastInBytes\":17551813,\"lastOutBytes\":1453790486,\"outBytes\":1453790486,\"outFlow\":10254,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":929026,\"inBytes\":17930269,\"inFlow\":904214,\"lastChangeTime\":\"0:53:40.88\",\"lastInBytes\":17930269,\"lastOutBytes\":853451786,\"outBytes\":853451786,\"outFlow\":24812,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":902110,\"inBytes\":3824507835,\"inFlow\":879650,\"lastChangeTime\":\"0:53:38.76\",\"lastInBytes\":3824507835,\"lastOutBytes\":3414543386,\"outBytes\":3414543386,\"outFlow\":22460,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":436318,\"inBytes\":11749695,\"inFlow\":426421,\"lastChangeTime\":\"88 days, 17:03:15.71\",\"lastInBytes\":11749695,\"lastOutBytes\":4201860327,\"outBytes\":4201860327,\"outFlow\":9897,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":492998,\"inBytes\":2961622529,\"inFlow\":481119,\"lastChangeTime\":\"88 days, 17:03:26.64\",\"lastInBytes\":2961622529,\"lastOutBytes\":2817807143,\"outBytes\":2817807143,\"outFlow\":11878,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414035,\"inBytes\":2006000463,\"inFlow\":403801,\"lastChangeTime\":\"299 days, 20:09:33.43\",\"lastInBytes\":2006000463,\"lastOutBytes\":2511605024,\"outBytes\":2511605024,\"outFlow\":10233,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":422837,\"inBytes\":958234327,\"inFlow\":414275,\"lastChangeTime\":\"88 days, 17:03:20.47\",\"lastInBytes\":958234327,\"lastOutBytes\":62677018,\"outBytes\":62677018,\"outFlow\":8561,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":433659,\"inBytes\":2341835217,\"inFlow\":424973,\"lastChangeTime\":\"88 days, 17:03:12.64\",\"lastInBytes\":2341835217,\"lastOutBytes\":1678265246,\"outBytes\":1678265246,\"outFlow\":8685,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415541,\"inBytes\":1807995295,\"inFlow\":405331,\"lastChangeTime\":\"0:53:38.51\",\"lastInBytes\":1807995295,\"lastOutBytes\":2092067779,\"outBytes\":2092067779,\"outFlow\":10209,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":415072,\"inBytes\":1216316158,\"inFlow\":404854,\"lastChangeTime\":\"0:53:37.03\",\"lastInBytes\":1216316158,\"lastOutBytes\":2301316132,\"outBytes\":2301316132,\"outFlow\":10218,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":416052,\"inBytes\":1069797522,\"inFlow\":405801,\"lastChangeTime\":\"0:53:37.52\",\"lastInBytes\":1069797522,\"lastOutBytes\":281520735,\"outBytes\":281520735,\"outFlow\":10250,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":318,\"inBytes\":367638461,\"inFlow\":109,\"lastChangeTime\":\"0:01:14.67\",\"lastInBytes\":367638461,\"lastOutBytes\":65086933,\"outBytes\":65086933,\"outFlow\":209,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5369480,\"inBytes\":2607261092,\"inFlow\":134042,\"lastChangeTime\":\"0:01:12.86\",\"lastInBytes\":2607261092,\"lastOutBytes\":1784370704,\"outBytes\":1784370704,\"outFlow\":5235437,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.500900000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722046", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"12\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"7\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139586\",\"inUnknownProtos\":\"1063218122\",\"index\":\"635\",\"lastChange\":\"0:01:21.01\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:50:8d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3115846964\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153686815\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":469151,\"inBytes\":3068510450,\"inFlow\":458511,\"lastChangeTime\":\"88 days, 17:01:43.04\",\"lastInBytes\":3068510450,\"lastOutBytes\":2858558285,\"outBytes\":2858558285,\"outFlow\":10639,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":421708,\"inBytes\":2843031162,\"inFlow\":412436,\"lastChangeTime\":\"88 days, 17:01:29.73\",\"lastInBytes\":2843031162,\"lastOutBytes\":433741974,\"outBytes\":433741974,\"outFlow\":9272,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414285,\"inBytes\":2910347498,\"inFlow\":403816,\"lastChangeTime\":\"368 days, 0:39:27.38\",\"lastInBytes\":2910347498,\"lastOutBytes\":1626854519,\"outBytes\":1626854519,\"outFlow\":10468,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":415707,\"inBytes\":50186875,\"inFlow\":405277,\"lastChangeTime\":\"368 days, 0:39:26.42\",\"lastInBytes\":50186875,\"lastOutBytes\":2200434125,\"outBytes\":2200434125,\"outFlow\":10429,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":416133,\"inBytes\":4010381336,\"inFlow\":405658,\"lastChangeTime\":\"437 days, 15:10:15.27\",\"lastInBytes\":4010381336,\"lastOutBytes\":1585408020,\"outBytes\":1585408020,\"outFlow\":10475,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":415060,\"inBytes\":1352717604,\"inFlow\":404855,\"lastChangeTime\":\"390 days, 8:13:03.67\",\"lastInBytes\":1352717604,\"lastOutBytes\":1063218122,\"outBytes\":1063218122,\"outFlow\":10205,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":389879,\"inBytes\":3509546998,\"inFlow\":379473,\"lastChangeTime\":\"368 days, 0:39:17.19\",\"lastInBytes\":3509546998,\"lastOutBytes\":3991430616,\"outBytes\":3991430616,\"outFlow\":10405,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":389643,\"inBytes\":3430123498,\"inFlow\":379888,\"lastChangeTime\":\"368 days, 0:39:35.14\",\"lastInBytes\":3430123498,\"lastOutBytes\":3416042596,\"outBytes\":3416042596,\"outFlow\":9754,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":416829,\"inBytes\":445082388,\"inFlow\":406301,\"lastChangeTime\":\"368 days, 0:39:28.81\",\"lastInBytes\":445082388,\"lastOutBytes\":1007640223,\"outBytes\":1007640223,\"outFlow\":10527,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":422390,\"inBytes\":1051098065,\"inFlow\":414173,\"lastChangeTime\":\"88 days, 17:01:38.77\",\"lastInBytes\":1051098065,\"lastOutBytes\":4048113076,\"outBytes\":4048113076,\"outFlow\":8217,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":956706,\"inBytes\":2283745069,\"inFlow\":937936,\"lastChangeTime\":\"88 days, 17:01:25.88\",\"lastInBytes\":2283745069,\"lastOutBytes\":2195407148,\"outBytes\":2195407148,\"outFlow\":18769,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":464055,\"inBytes\":1879143067,\"inFlow\":453272,\"lastChangeTime\":\"390 days, 8:13:11.53\",\"lastInBytes\":1879143067,\"lastOutBytes\":4209590074,\"outBytes\":4209590074,\"outFlow\":10782,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1209254,\"inFlow\":0,\"lastChangeTime\":\"185 days, 11:44:10.99\",\"lastInBytes\":1209254,\"lastOutBytes\":56456039,\"outBytes\":56456039,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":315,\"inBytes\":368674905,\"inFlow\":109,\"lastChangeTime\":\"185 days, 11:45:58.15\",\"lastInBytes\":368674905,\"lastOutBytes\":101065973,\"outBytes\":101065973,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5276407,\"inBytes\":2968754759,\"inFlow\":125716,\"lastChangeTime\":\"185 days, 11:39:20.78\",\"lastInBytes\":2968754759,\"lastOutBytes\":3343561526,\"outBytes\":3343561526,\"outFlow\":5150691,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.498796000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722047", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1018040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.164.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface164\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139634\",\"inUnknownProtos\":\"3115966048\",\"index\":\"635\",\"lastChange\":\"124 days, 0:31:25.63\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:fa:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2951536603\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"153685943\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.164.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:31\",\"info\":{\"portInfoList\":[{\"flow\":412069,\"inBytes\":2405328528,\"inFlow\":401701,\"lastChangeTime\":\"0:39:33.49\",\"lastInBytes\":2405328528,\"lastOutBytes\":2213282196,\"outBytes\":2213282196,\"outFlow\":10367,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":620048,\"inBytes\":4284674021,\"inFlow\":604072,\"lastChangeTime\":\"369 days, 13:41:43.26\",\"lastInBytes\":4284674021,\"lastOutBytes\":3295280966,\"outBytes\":3295280966,\"outFlow\":15975,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":275908,\"inBytes\":1075446998,\"inFlow\":268581,\"lastChangeTime\":\"369 days, 13:41:32.00\",\"lastInBytes\":1075446998,\"lastOutBytes\":3108233227,\"outBytes\":3108233227,\"outFlow\":7326,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":412675,\"inBytes\":1207259519,\"inFlow\":402174,\"lastChangeTime\":\"369 days, 13:41:33.91\",\"lastInBytes\":1207259519,\"lastOutBytes\":41786291,\"outBytes\":41786291,\"outFlow\":10501,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276858,\"inBytes\":1602187883,\"inFlow\":269970,\"lastChangeTime\":\"369 days, 13:41:47.35\",\"lastInBytes\":1602187883,\"lastOutBytes\":447630917,\"outBytes\":447630917,\"outFlow\":6887,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":894633,\"inBytes\":2214633241,\"inFlow\":872228,\"lastChangeTime\":\"369 days, 13:41:34.21\",\"lastInBytes\":2214633241,\"lastOutBytes\":3115966048,\"outBytes\":3115966048,\"outFlow\":22404,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":275536,\"inBytes\":2836551250,\"inFlow\":268365,\"lastChangeTime\":\"369 days, 13:41:45.06\",\"lastInBytes\":2836551250,\"lastOutBytes\":253130012,\"outBytes\":253130012,\"outFlow\":7171,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":275506,\"inBytes\":2682563027,\"inFlow\":268495,\"lastChangeTime\":\"369 days, 13:41:48.17\",\"lastInBytes\":2682563027,\"lastOutBytes\":959974527,\"outBytes\":959974527,\"outFlow\":7010,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":258413,\"inBytes\":2486384110,\"inFlow\":251790,\"lastChangeTime\":\"369 days, 13:41:38.14\",\"lastInBytes\":2486384110,\"lastOutBytes\":1199766535,\"outBytes\":1199766535,\"outFlow\":6622,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":581625,\"inBytes\":1442558935,\"inFlow\":566548,\"lastChangeTime\":\"369 days, 13:41:40.17\",\"lastInBytes\":1442558935,\"lastOutBytes\":1975149547,\"outBytes\":1975149547,\"outFlow\":15077,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":581648,\"inBytes\":3249058204,\"inFlow\":567041,\"lastChangeTime\":\"369 days, 13:41:54.50\",\"lastInBytes\":3249058204,\"lastOutBytes\":2550646601,\"outBytes\":2550646601,\"outFlow\":14607,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":257906,\"inBytes\":601639313,\"inFlow\":251651,\"lastChangeTime\":\"369 days, 13:41:41.60\",\"lastInBytes\":601639313,\"lastOutBytes\":4206695538,\"outBytes\":4206695538,\"outFlow\":6254,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":275226,\"inBytes\":2498189205,\"inFlow\":268495,\"lastChangeTime\":\"369 days, 13:41:48.53\",\"lastInBytes\":2498189205,\"lastOutBytes\":417199321,\"outBytes\":417199321,\"outFlow\":6730,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":275298,\"inBytes\":2186995476,\"inFlow\":268467,\"lastChangeTime\":\"369 days, 13:41:38.48\",\"lastInBytes\":2186995476,\"lastOutBytes\":2359133484,\"outBytes\":2359133484,\"outFlow\":6830,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":275092,\"inBytes\":4198894671,\"inFlow\":268640,\"lastChangeTime\":\"369 days, 13:41:38.51\",\"lastInBytes\":4198894671,\"lastOutBytes\":1838839922,\"outBytes\":1838839922,\"outFlow\":6451,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":307,\"inBytes\":368186603,\"inFlow\":107,\"lastChangeTime\":\"185 days, 9:53:20.62\",\"lastInBytes\":368186603,\"lastOutBytes\":77924990,\"outBytes\":77924990,\"outFlow\":199,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6081629,\"inBytes\":576202489,\"inFlow\":159111,\"lastChangeTime\":\"124 days, 0:31:25.62\",\"lastInBytes\":576202489,\"lastOutBytes\":4102025511,\"outBytes\":4102025511,\"outFlow\":5922517,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.628138000\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "704530707072722048", + "createdBy": "0", + "createdTime": "2025-12-01 13:17:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:55", + "echoMap": {}, + "deviceId": "1018040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.163.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif163\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"56\",\"lastChange\":\"0:03:13.83\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:81:29:8e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"34\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.163.64\",\"index\":\"56\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"29958\",\"0\",\"0\",\"0\",\"0\",\"0\",\"14490\",\"233802\",\"79\",\"76080\",\"355\",\"350\",\"35226\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:54\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37049,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":561,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36029,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":558,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31680,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":633,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34259,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":562,\"opticalVoltage\":3226,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37110,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":564,\"opticalVoltage\":3256,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33959,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":564,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41340,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":559,\"opticalVoltage\":3246,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40470,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":506,\"opticalVoltage\":3234,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39930,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":559,\"opticalVoltage\":3309,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32250,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":562,\"opticalVoltage\":3275,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":508,\"opticalVoltage\":3242,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":75839,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":9,\"opticalVoltage\":3247,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37500,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":562,\"opticalVoltage\":3373,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36509,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":559,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34259,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":558,\"opticalVoltage\":3359,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34680,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":562,\"opticalVoltage\":3349,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37680,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32819,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":563,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36270,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":559,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41159,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":547,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":579,\"inBytes\":3614417298,\"inFlow\":82,\"lastChangeTime\":\"53 days, 21:58:26.69\",\"lastInBytes\":3614417298,\"lastOutBytes\":1373790032,\"opticalBiasCurrent\":33720,\"opticalReceivePower\":540,\"opticalTemperature\":45,\"opticalTransmitPower\":632,\"opticalVoltage\":3332,\"outBytes\":1373790032,\"outFlow\":497,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12750,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":266,\"opticalVoltage\":3357,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2243545,\"inBytes\":2655259883,\"inFlow\":3559,\"lastChangeTime\":\"47 days, 10:31:03.83\",\"lastInBytes\":2655259883,\"lastOutBytes\":1372895262,\"opticalBiasCurrent\":32310,\"opticalReceivePower\":299,\"opticalTemperature\":43,\"opticalTransmitPower\":650,\"opticalVoltage\":3363,\"outBytes\":1372895262,\"outFlow\":2239985,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":802733,\"inBytes\":3390736928,\"inFlow\":65989,\"lastChangeTime\":\"53 days, 22:10:21.09\",\"lastInBytes\":3390736928,\"lastOutBytes\":365353963,\"opticalBiasCurrent\":38369,\"opticalReceivePower\":223,\"opticalTemperature\":43,\"opticalTransmitPower\":561,\"opticalVoltage\":3344,\"outBytes\":365353963,\"outFlow\":736743,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":6989486,\"inBytes\":2311239302,\"inFlow\":6763022,\"lastChangeTime\":\"332 days, 22:07:43.21\",\"lastInBytes\":2311239302,\"lastOutBytes\":1096360231,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":96,\"opticalTemperature\":38,\"opticalTransmitPower\":239,\"opticalVoltage\":3330,\"outBytes\":1096360231,\"outFlow\":226463,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6461027,\"inBytes\":579184772,\"inFlow\":6269836,\"lastChangeTime\":\"394 days, 9:13:15.83\",\"lastInBytes\":579184772,\"lastOutBytes\":4047123214,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":193,\"opticalTemperature\":38,\"opticalTransmitPower\":239,\"opticalVoltage\":3378,\"outBytes\":4047123214,\"outFlow\":191191,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6556611,\"inBytes\":2003935165,\"inFlow\":6354001,\"lastChangeTime\":\"208 days, 21:42:18.60\",\"lastInBytes\":2003935165,\"lastOutBytes\":2607409471,\"opticalBiasCurrent\":12960,\"opticalReceivePower\":10,\"opticalTemperature\":39,\"opticalTransmitPower\":237,\"opticalVoltage\":3352,\"outBytes\":2607409471,\"outFlow\":202610,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4092850,\"inBytes\":899596748,\"inFlow\":3965929,\"lastChangeTime\":\"208 days, 21:42:17.02\",\"lastInBytes\":899596748,\"lastOutBytes\":1958922402,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":5,\"opticalTemperature\":36,\"opticalTransmitPower\":239,\"opticalVoltage\":3340,\"outBytes\":1958922402,\"outFlow\":126920,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6030726,\"inBytes\":1493048087,\"inFlow\":5844368,\"lastChangeTime\":\"208 days, 21:42:24.03\",\"lastInBytes\":1493048087,\"lastOutBytes\":1794146185,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":96,\"opticalTemperature\":39,\"opticalTransmitPower\":244,\"opticalVoltage\":3380,\"outBytes\":1794146185,\"outFlow\":186357,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":476254,\"inBytes\":337365016,\"inFlow\":460170,\"lastChangeTime\":\"208 days, 22:13:43.15\",\"lastInBytes\":337365016,\"lastOutBytes\":2079763564,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":201,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3356,\"outBytes\":2079763564,\"outFlow\":16084,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8631058,\"inBytes\":582392096,\"inFlow\":8372178,\"lastChangeTime\":\"394 days, 8:19:00.64\",\"lastInBytes\":582392096,\"lastOutBytes\":4117048023,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":214,\"opticalTemperature\":37,\"opticalTransmitPower\":244,\"opticalVoltage\":3378,\"outBytes\":4117048023,\"outFlow\":258879,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5072914,\"inBytes\":2550719567,\"inFlow\":4926993,\"lastChangeTime\":\"332 days, 22:22:44.11\",\"lastInBytes\":2550719567,\"lastOutBytes\":1934629383,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":227,\"opticalTemperature\":37,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":1934629383,\"outFlow\":145921,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4128726,\"inBytes\":3879323533,\"inFlow\":4004635,\"lastChangeTime\":\"208 days, 22:32:16.48\",\"lastInBytes\":3879323533,\"lastOutBytes\":2612102866,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":68,\"opticalTemperature\":38,\"opticalTransmitPower\":238,\"opticalVoltage\":3352,\"outBytes\":2612102866,\"outFlow\":124091,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6990933,\"inBytes\":2322159584,\"inFlow\":6774737,\"lastChangeTime\":\"208 days, 21:42:27.79\",\"lastInBytes\":2322159584,\"lastOutBytes\":2934762586,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":188,\"opticalTemperature\":37,\"opticalTransmitPower\":238,\"opticalVoltage\":3366,\"outBytes\":2934762586,\"outFlow\":216196,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4847655,\"inBytes\":3698347954,\"inFlow\":4689749,\"lastChangeTime\":\"208 days, 22:03:11.69\",\"lastInBytes\":3698347954,\"lastOutBytes\":2491551698,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":236,\"opticalTemperature\":40,\"opticalTransmitPower\":244,\"opticalVoltage\":3378,\"outBytes\":2491551698,\"outFlow\":157905,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5957728,\"inBytes\":4079228053,\"inFlow\":5766925,\"lastChangeTime\":\"208 days, 21:42:37.85\",\"lastInBytes\":4079228053,\"lastOutBytes\":2843800793,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":193,\"opticalTemperature\":37,\"opticalTransmitPower\":240,\"opticalVoltage\":3392,\"outBytes\":2843800793,\"outFlow\":190803,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5400670,\"inBytes\":1267406746,\"inFlow\":5228847,\"lastChangeTime\":\"456 days, 11:18:58.12\",\"lastInBytes\":1267406746,\"lastOutBytes\":2248430525,\"opticalBiasCurrent\":13392,\"opticalReceivePower\":13,\"opticalTemperature\":43,\"opticalTransmitPower\":237,\"opticalVoltage\":3352,\"outBytes\":2248430525,\"outFlow\":171823,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5555622,\"inBytes\":2187547031,\"inFlow\":5376048,\"lastChangeTime\":\"208 days, 21:42:33.06\",\"lastInBytes\":2187547031,\"lastOutBytes\":2165880254,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":145,\"opticalTemperature\":35,\"opticalTransmitPower\":235,\"opticalVoltage\":3380,\"outBytes\":2165880254,\"outFlow\":179574,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2535581,\"inBytes\":2008658263,\"inFlow\":2455978,\"lastChangeTime\":\"208 days, 22:07:41.98\",\"lastInBytes\":2008658263,\"lastOutBytes\":2054782791,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":193,\"opticalTemperature\":35,\"opticalTransmitPower\":245,\"opticalVoltage\":3364,\"outBytes\":2054782791,\"outFlow\":79602,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":953296,\"inBytes\":3352250689,\"inFlow\":922886,\"lastChangeTime\":\"208 days, 22:41:01.50\",\"lastInBytes\":3352250689,\"lastOutBytes\":3177141877,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":110,\"opticalTemperature\":39,\"opticalTransmitPower\":239,\"opticalVoltage\":3352,\"outBytes\":3177141877,\"outFlow\":30409,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":955648,\"inBytes\":1436550492,\"inFlow\":924613,\"lastChangeTime\":\"208 days, 22:13:25.57\",\"lastInBytes\":1436550492,\"lastOutBytes\":3983523634,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":45,\"opticalTemperature\":38,\"opticalTransmitPower\":239,\"opticalVoltage\":3376,\"outBytes\":3983523634,\"outFlow\":31034,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":476946,\"inBytes\":2485390168,\"inFlow\":461129,\"lastChangeTime\":\"208 days, 22:13:26.65\",\"lastInBytes\":2485390168,\"lastOutBytes\":1840556188,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":107,\"opticalTemperature\":37,\"opticalTransmitPower\":233,\"opticalVoltage\":3366,\"outBytes\":1840556188,\"outFlow\":15816,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":950979,\"inBytes\":3142530887,\"inFlow\":920351,\"lastChangeTime\":\"467 days, 22:52:00.67\",\"lastInBytes\":3142530887,\"lastOutBytes\":2535685617,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":111,\"opticalTemperature\":36,\"opticalTransmitPower\":238,\"opticalVoltage\":3380,\"outBytes\":2535685617,\"outFlow\":30627,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":951042,\"inBytes\":1203163734,\"inFlow\":920289,\"lastChangeTime\":\"481 days, 22:55:52.68\",\"lastInBytes\":1203163734,\"lastOutBytes\":701111321,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":197,\"opticalTemperature\":34,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":701111321,\"outFlow\":30753,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3962323,\"inBytes\":522821413,\"inFlow\":31880,\"lastChangeTime\":\"332 days, 22:18:09.61\",\"lastInBytes\":522821413,\"lastOutBytes\":951367606,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":149,\"opticalTemperature\":36,\"opticalTransmitPower\":245,\"opticalVoltage\":3318,\"outBytes\":951367606,\"outFlow\":3930443,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":246,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":238,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13175,\"opticalReceivePower\":0,\"opticalTemperature\":32,\"opticalTransmitPower\":244,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":60617,\"inBytes\":3246604855,\"inFlow\":41358,\"lastChangeTime\":\"53 days, 21:35:31.08\",\"lastInBytes\":3246604855,\"lastOutBytes\":2689615396,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2689615396,\"outFlow\":19259,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15353900,\"inBytes\":1309411367,\"inFlow\":5403243,\"lastChangeTime\":\"53 days, 21:46:37.73\",\"lastInBytes\":1309411367,\"lastOutBytes\":2661927738,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2661927738,\"outFlow\":9950656,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":129409,\"inBytes\":3733777323,\"inFlow\":37715,\"lastChangeTime\":\"0:05:01.62\",\"lastInBytes\":3733777323,\"lastOutBytes\":4006111324,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4006111324,\"outFlow\":91693,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":320,\"inBytes\":599869933,\"inFlow\":13,\"lastChangeTime\":\"488 days, 9:31:46.35\",\"lastInBytes\":599869933,\"lastOutBytes\":2042736090,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2042736090,\"outFlow\":306,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1167289,\"inBytes\":427575432,\"inFlow\":32034,\"lastChangeTime\":\"149 days, 20:22:09.25\",\"lastInBytes\":427575432,\"lastOutBytes\":4252470270,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4252470270,\"outFlow\":1135255,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8813733,\"inBytes\":124236177,\"inFlow\":598180,\"lastChangeTime\":\"115 days, 7:19:04.14\",\"lastInBytes\":124236177,\"lastOutBytes\":44390300,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":44390300,\"outFlow\":8215553,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":17502560,\"inBytes\":2587251232,\"inFlow\":395263,\"lastChangeTime\":\"0:05:57.17\",\"lastInBytes\":2587251232,\"lastOutBytes\":1201209724,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1201209724,\"outFlow\":17107296,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5605904,\"inBytes\":2804411258,\"inFlow\":398931,\"lastChangeTime\":\"0:05:56.51\",\"lastInBytes\":2804411258,\"lastOutBytes\":2183232696,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2183232696,\"outFlow\":5206973,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13935207,\"inBytes\":2881467112,\"inFlow\":514744,\"lastChangeTime\":\"115 days, 7:19:02.54\",\"lastInBytes\":2881467112,\"lastOutBytes\":3830439596,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3830439596,\"outFlow\":13420463,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":713,\"inBytes\":1462167534,\"inFlow\":176,\"lastChangeTime\":\"84 days, 2:24:03.07\",\"lastInBytes\":1462167534,\"lastOutBytes\":679719186,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":679719186,\"outFlow\":537,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":491,\"inBytes\":950872337,\"inFlow\":116,\"lastChangeTime\":\"84 days, 2:24:03.66\",\"lastInBytes\":950872337,\"lastOutBytes\":3638936544,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3638936544,\"outFlow\":374,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":303862,\"inBytes\":3713977213,\"inFlow\":2021,\"lastChangeTime\":\"155 days, 9:38:46.46\",\"lastInBytes\":3713977213,\"lastOutBytes\":2789472670,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2789472670,\"outFlow\":301841,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2996679904,\"inFlow\":0,\"lastChangeTime\":\"277 days, 13:30:21.71\",\"lastInBytes\":2996679904,\"lastOutBytes\":216781421,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":216781421,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":47879589,\"inFlow\":81,\"lastChangeTime\":\"151 days, 3:49:08.16\",\"lastInBytes\":47879589,\"lastOutBytes\":7787174,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":7787174,\"outFlow\":13,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":24,\"inBytes\":6506006,\"inFlow\":11,\"lastChangeTime\":\"151 days, 3:49:13.06\",\"lastInBytes\":6506006,\"lastOutBytes\":7749844,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":7749844,\"outFlow\":13,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":284020715,\"inFlow\":0,\"lastChangeTime\":\"54 days, 0:49:04.57\",\"lastInBytes\":284020715,\"lastOutBytes\":511252280,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":511252280,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:36.562754000\"}}", + "lastDiagTime": "2026-02-02 14:37:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589890767145673728", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:48", + "echoMap": {}, + "deviceId": "1018110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.163.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.89\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"102 days, 11:21:09.22\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10486171\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27637667\",\"inOctets\":\"2421258993\",\"inUcastPkts\":\"1415632673\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:99:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3171431942\",\"outQLen\":\"0\",\"outUcastPkts\":\"1475165784\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.163.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1019": { + "ndmAlarmHost": [ + { + "id": "707147828213858792", + "createdBy": null, + "createdTime": "2025-12-08 13:45:50", + "updatedBy": null, + "updatedTime": "2025-12-08 13:45:50", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.165.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "589889178007775368", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1019060001", + "name": "[602](10)海伦编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903041005019602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775369", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1019060002", + "name": "[603](10)海伦编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903041005019603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775370", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060003", + "name": "[609](10)海伦环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903053005019609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775371", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060004", + "name": "[612](10)海伦内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903001006019612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775372", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2026-02-02 11:19:38", + "echoMap": {}, + "deviceId": "1019060005", + "name": "[604](10)海伦弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775373", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1019060006", + "name": "[605](10)海伦弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775374", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1019060007", + "name": "[606](10)海伦弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775375", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1019060008", + "name": "[607](10)海伦弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775376", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1019060009", + "name": "[613](10)海伦内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903001006019613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775377", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060010", + "name": "[617](10)海伦消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903001006019617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775378", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060011", + "name": "[404](10)海伦2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901006006019404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775379", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060012", + "name": "[324](10)海伦B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901040006019324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775380", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060013", + "name": "[317](10)海伦#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901045006019317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775381", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060014", + "name": "[402](10)海伦2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901006006019402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775382", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060015", + "name": "[316](10)海伦#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901045006019316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775383", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060016", + "name": "[346](10)海伦安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901085006019346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775384", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060017", + "name": "[201](10)海伦厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901035004019201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775385", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060018", + "name": "[501](10)海伦客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901001005019501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775386", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060019", + "name": "[601](10)海伦车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903042004019601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775387", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2026-01-26 10:21:39", + "echoMap": {}, + "deviceId": "1019060020", + "name": "[344](10)海伦1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901036005019344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775388", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060021", + "name": "[320](10)海伦#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901045006019320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775389", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060022", + "name": "[319](10)海伦#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901045006019319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775390", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060023", + "name": "[301](10)海伦5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775391", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060024", + "name": "[302](10)海伦5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775392", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060025", + "name": "[204](10)海伦厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901035004019204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775393", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060026", + "name": "[303](10)海伦5#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775394", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060027", + "name": "[347](10)海伦安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901085006019347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775395", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060028", + "name": "[503](10)海伦票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901030006019503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775396", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060029", + "name": "[405](10)海伦3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901007006019405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775397", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060030", + "name": "[318](10)海伦#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901045006019318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775398", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060031", + "name": "[403](10)海伦2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901006006019403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775399", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1019060032", + "name": "[315](10)海伦#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901045006019315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775400", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1019060033", + "name": "[203](10)海伦厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901035004019203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775401", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060034", + "name": "[401](10)海伦1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901005006019401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775402", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060035", + "name": "[406](10)海伦3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901007006019406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775403", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1019060036", + "name": "[614](10)海伦内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903001006019614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775404", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1019060037", + "name": "[610](10)海伦环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903053005019610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775405", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1019060038", + "name": "[615](10)海伦内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903001006019615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775406", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1019060039", + "name": "[205](10)海伦厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901035004019205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775407", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1019060040", + "name": "[325](10)海伦B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901040006019325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775408", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060041", + "name": "[335](10)海伦10-4换乘出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775409", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060042", + "name": "[334](10)海伦10-4换乘出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775410", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1019060043", + "name": "[332](10)海伦10-4换乘出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775412", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060045", + "name": "[502](10)海伦票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901030006019502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775413", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060046", + "name": "[339](10)海伦10-4换乘扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775414", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060047", + "name": "[336](10)海伦10-4换乘扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775415", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060048", + "name": "[323](10)海伦1F垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901040005019323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775416", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-12-22 13:40:55", + "echoMap": {}, + "deviceId": "1019060049", + "name": "[345](10)海伦2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901036005019345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775417", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060050", + "name": "[337](10)海伦10-4换乘扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775418", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060051", + "name": "[340](10)海伦10-4换乘扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775419", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060052", + "name": "[342](10)海伦10-4换乘楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775420", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060053", + "name": "[343](10)海伦10-4换乘楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775421", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060054", + "name": "[341](10)海伦10-4换乘扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775422", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060055", + "name": "[338](10)海伦10-4换乘扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775423", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060056", + "name": "[328](10)海伦10-4换乘入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775424", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060057", + "name": "[329](10)海伦10-4换乘入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775425", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060058", + "name": "[330](10)海伦10-4换乘入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775426", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060059", + "name": "[331](10)海伦10-4换乘入4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901081006019331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775427", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060060", + "name": "[326](10)海伦B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901040006019326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775428", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060061", + "name": "[313](10)海伦7#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061006019313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775429", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060062", + "name": "[310](10)海伦7#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061006019310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775430", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060063", + "name": "[314](10)海伦7#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061006019314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775431", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060064", + "name": "[211](10)海伦7#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061004019211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775432", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060065", + "name": "[312](10)海伦7#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061006019312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775433", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060066", + "name": "[311](10)海伦7#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061006019311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775434", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060067", + "name": "[107](10)海伦下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902012006019107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775435", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060068", + "name": "[108](10)海伦下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902012006019108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775436", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060069", + "name": "[702](10)海伦下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061904013006019702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775437", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1019060070", + "name": "[611](10)海伦环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903053005019611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775438", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060071", + "name": "[106](10)海伦上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902007006019106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775439", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060072", + "name": "[701](10)海伦上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061904013006019701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775440", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060073", + "name": "[105](10)海伦上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902007006019105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775441", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2026-02-02 13:55:39", + "echoMap": {}, + "deviceId": "1019060074", + "name": "[109](10)海伦下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902012006019109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775442", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060075", + "name": "[110](10)海伦下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902012006019110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775443", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060076", + "name": "[208](10)海伦下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902001004019208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775444", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060077", + "name": "[327](10)海伦B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902002006019327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775445", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060078", + "name": "[322](10)海伦#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902017006019322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775446", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1019060079", + "name": "[207](10)海伦上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902001004019207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775447", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060080", + "name": "[104](10)海伦上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902007006019104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775448", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060081", + "name": "[206](10)海伦上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902001004019206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775449", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060082", + "name": "[103](10)海伦上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902007006019103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775450", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060083", + "name": "[112](10)海伦下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902012006019112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775451", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060084", + "name": "[111](10)海伦下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902012006019111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775452", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060085", + "name": "[209](10)海伦下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902001004019209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775453", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2026-01-22 21:35:39", + "echoMap": {}, + "deviceId": "1019060086", + "name": "[321](10)海伦#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902017006019321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775454", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1019060087", + "name": "[608](10)海伦屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775455", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060088", + "name": "[616](10)海伦内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903021006019616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775456", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060089", + "name": "[101](10)海伦上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902007006019101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775457", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060090", + "name": "[102](10)海伦上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902007006019102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775458", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060091", + "name": "[618](10)海伦变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903021006019618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775459", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060092", + "name": "[304](10)海伦5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775460", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060093", + "name": "[305](10)海伦5#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775461", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2026-01-23 01:15:39", + "echoMap": {}, + "deviceId": "1019060094", + "name": "[307](10)海伦5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775462", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1019060095", + "name": "[309](10)海伦5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775463", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060096", + "name": "[306](10)海伦5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775464", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1019060097", + "name": "[210](10)海伦5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059004019210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775465", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060098", + "name": "[308](10)海伦5#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775466", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1019060099", + "name": "[619](10)海伦气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903067005019619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775467", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1019060100", + "name": "[620](10)海伦消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903068005019620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775468", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2026-01-09 00:00:00", + "echoMap": {}, + "deviceId": "1019060101", + "name": "[621](10)海伦内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903001005019621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775469", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1019060102", + "name": "[622](10)海伦通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775470", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060103", + "name": "[623](10)海伦通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903048005019623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775471", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060104", + "name": "[407](10)海伦2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901006006019407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775472", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060105", + "name": "[624](10)海伦气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903067005019624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775474", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1019060107", + "name": "[348](10)海伦5#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901059006019348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775475", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060108", + "name": "[212](10)海伦厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901061004019212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672016", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060109", + "name": "[625](10)海伦地下一层", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672017", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060110", + "name": "[626](10)海伦地下二层", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672018", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1019060111", + "name": "[627](10)海伦地下三层", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672019", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060112", + "name": "[639](10)海伦厕所门口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902002005019639", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672020", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1019060113", + "name": "[638](10)海伦厕所门口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061902002005019638", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672021", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060114", + "name": "[637](10)海伦出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019637", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672022", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060115", + "name": "[636](10)海伦围墙5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019636", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672023", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060116", + "name": "[633](10)海伦大门2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019633", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672024", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060117", + "name": "[632](10)海伦围墙3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672025", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060118", + "name": "[635](10)海伦大门3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019635", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672026", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060119", + "name": "[634](10)海伦围墙4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019634", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672027", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060120", + "name": "[629](10)海伦围墙1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672028", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1019060121", + "name": "[628](10)海伦地面出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672029", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060122", + "name": "[631](10)海伦大门1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693407081077672030", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1019060123", + "name": "[630](10)海伦围墙2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.166.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061903044006019630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701577844041458810", + "createdBy": null, + "createdTime": "2025-11-19 00:00:13", + "updatedBy": null, + "updatedTime": "2025-12-19 00:00:00", + "echoMap": {}, + "deviceId": "1019060124", + "name": "[408](10)海伦3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.165.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061901007006019408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "589889178007775477", + "createdBy": "0", + "createdTime": "2025-02-28 10:49:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:39", + "echoMap": {}, + "deviceId": "1019070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.165.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061900000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"265667\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1703885186\",\"inUcastPkts\":\"442844625\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:c5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1042917726\",\"outQLen\":\"0\",\"outUcastPkts\":\"254828822\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.165.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:38\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ6F85E\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"39\",\"CPU使用率\":\"12\"}}", + "lastDiagTime": "2026-02-02 14:35:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "589889178007775678", + "createdBy": "2", + "createdTime": "2025-02-28 10:52:32", + "updatedBy": null, + "updatedTime": "2025-12-23 10:17:27", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.165.51", + "manageUrl": "http:\\\\10.18.165.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "589889178007775681", + "createdBy": "2", + "createdTime": "2025-02-28 10:53:21", + "updatedBy": null, + "updatedTime": "2026-01-26 10:56:39", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.165.52", + "manageUrl": "http:\\\\10.18.165.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "589889178007775480", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:39", + "echoMap": {}, + "deviceId": "1019090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.165.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.85\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"81 days, 1:14:26.05\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"12235446\",\"inErrors\":\"0\",\"inNUcastPkts\":\"26643173\",\"inOctets\":\"293378348\",\"inUcastPkts\":\"4100168645\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:41:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3752678826\",\"outQLen\":\"0\",\"outUcastPkts\":\"3691338729\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.165.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "589889178007775481", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 10:50:12", + "echoMap": {}, + "deviceId": "1019050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.165.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061900000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.165.22;10.18.165.23" + }, + { + "id": "589889178007775482", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "deviceId": "1019050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.165.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061900000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"12356986\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28601876\",\"inOctets\":\"1516834840\",\"inUcastPkts\":\"4079478281\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:72:39\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"12813601\",\"outQLen\":\"0\",\"outUcastPkts\":\"3493080646\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4330\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.165.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:39\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":889974293,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16522\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"48\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:35:40", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.165.22" + }, + { + "id": "589889178007775483", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "deviceId": "1019050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.165.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01061900000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18632480\",\"inErrors\":\"0\",\"inNUcastPkts\":\"36825521\",\"inOctets\":\"2779442426\",\"inUcastPkts\":\"3012214468\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8b:73\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3233488498\",\"outQLen\":\"0\",\"outUcastPkts\":\"3470562980\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4300\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.165.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:40\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":889974293,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16523\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"57\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:35:40", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.165.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706388061384096638", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:47", + "echoMap": {}, + "deviceId": "1019030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096639", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:47", + "echoMap": {}, + "deviceId": "1019030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3024490\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166373742\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3024495\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:5a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.617},{\"current\":0.001,\"status\":1,\"voltage\":27.617},{\"current\":0.23300001,\"status\":1,\"voltage\":27.617},{\"current\":0.245,\"status\":1,\"voltage\":27.617},{\"current\":0.001,\"status\":1,\"voltage\":27.617},{\"current\":0.001,\"status\":1,\"voltage\":27.617},{\"current\":0.001,\"status\":1,\"voltage\":27.617},{\"current\":0.001,\"status\":1,\"voltage\":27.617},{\"current\":0.001,\"status\":0,\"voltage\":27.617},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":36,\"switches\":[1,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208301305\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096640", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:55", + "echoMap": {}, + "deviceId": "1019030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096641", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:55", + "echoMap": {}, + "deviceId": "1019030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3025440\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166428299\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3025445\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:9c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":26.974},{\"current\":0.24900001,\"status\":1,\"voltage\":26.974},{\"current\":0.24700001,\"status\":1,\"voltage\":26.974},{\"current\":0.23400001,\"status\":1,\"voltage\":26.974},{\"current\":0.001,\"status\":1,\"voltage\":26.974},{\"current\":0.001,\"status\":1,\"voltage\":26.974},{\"current\":0.001,\"status\":1,\"voltage\":26.974},{\"current\":0.001,\"status\":1,\"voltage\":26.974},{\"current\":0.001,\"status\":1,\"voltage\":26.974},{\"current\":0.001,\"status\":1,\"voltage\":26.328001},{\"current\":0.002,\"status\":1,\"voltage\":26.328001},{\"current\":0.001,\"status\":1,\"voltage\":26.328001},{\"current\":0.001,\"status\":1,\"voltage\":26.328001},{\"current\":0.001,\"status\":1,\"voltage\":26.328001},{\"current\":0.001,\"status\":1,\"voltage\":26.328001},{\"current\":0.001,\"status\":1,\"voltage\":26.328001}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208303560\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096642", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:56", + "echoMap": {}, + "deviceId": "1019030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9723935\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"542049777\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9723940\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:b0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.36800003,\"status\":1,\"voltage\":27.268002},{\"current\":0.35000002,\"status\":1,\"voltage\":27.268002},{\"current\":0.25,\"status\":1,\"voltage\":27.268002},{\"current\":0.21400002,\"status\":1,\"voltage\":27.268002},{\"current\":0.231,\"status\":1,\"voltage\":27.268002},{\"current\":0.52500004,\"status\":1,\"voltage\":27.268002},{\"current\":0.28300002,\"status\":1,\"voltage\":27.268002},{\"current\":0.287,\"status\":1,\"voltage\":27.268002},{\"current\":0.001,\"status\":1,\"voltage\":27.268002},{\"current\":0.001,\"status\":1,\"voltage\":27.092001},{\"current\":0.003,\"status\":1,\"voltage\":27.092001},{\"current\":0.001,\"status\":1,\"voltage\":27.092001},{\"current\":0.001,\"status\":1,\"voltage\":27.092001},{\"current\":0.001,\"status\":1,\"voltage\":27.092001},{\"current\":0.001,\"status\":1,\"voltage\":27.092001},{\"current\":0.001,\"status\":1,\"voltage\":27.092001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208302159\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096643", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:56", + "echoMap": {}, + "deviceId": "1019030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9743146\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"543129457\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9743151\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:e0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.279,\"status\":1,\"voltage\":26.433},{\"current\":0.257,\"status\":1,\"voltage\":26.433},{\"current\":0.53900003,\"status\":1,\"voltage\":26.433},{\"current\":0.26500002,\"status\":1,\"voltage\":26.433},{\"current\":0.22200002,\"status\":1,\"voltage\":26.433},{\"current\":0.24400002,\"status\":1,\"voltage\":26.433},{\"current\":0.256,\"status\":1,\"voltage\":26.433},{\"current\":0.24900001,\"status\":1,\"voltage\":26.433},{\"current\":0.224,\"status\":1,\"voltage\":26.433},{\"current\":0.238,\"status\":1,\"voltage\":27.491001},{\"current\":0.003,\"status\":1,\"voltage\":27.491001},{\"current\":0.001,\"status\":1,\"voltage\":27.491001},{\"current\":0.001,\"status\":1,\"voltage\":27.491001},{\"current\":0.001,\"status\":1,\"voltage\":27.491001},{\"current\":0.001,\"status\":1,\"voltage\":27.491001},{\"current\":0.0,\"status\":1,\"voltage\":27.491001}],\"fanSpeeds\":[0,0],\"humidity\":36,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302207\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096644", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:57", + "echoMap": {}, + "deviceId": "1019030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9751961\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"543622067\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9751966\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:5b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.254,\"status\":1,\"voltage\":26.738},{\"current\":0.27600002,\"status\":1,\"voltage\":26.738},{\"current\":0.554,\"status\":1,\"voltage\":26.738},{\"current\":0.24800001,\"status\":1,\"voltage\":26.738},{\"current\":0.24800001,\"status\":1,\"voltage\":26.738},{\"current\":0.527,\"status\":1,\"voltage\":26.738},{\"current\":0.24100001,\"status\":1,\"voltage\":26.738},{\"current\":0.517,\"status\":1,\"voltage\":26.738},{\"current\":0.25100002,\"status\":1,\"voltage\":26.738},{\"current\":0.22200002,\"status\":1,\"voltage\":26.427002},{\"current\":0.003,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002},{\"current\":0.001,\"status\":1,\"voltage\":26.427002}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303163\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096645", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:57", + "echoMap": {}, + "deviceId": "1019030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9760301\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"544090886\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9760306\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:29\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28800002,\"status\":1,\"voltage\":26.699001},{\"current\":0.266,\"status\":1,\"voltage\":26.699001},{\"current\":0.24000001,\"status\":1,\"voltage\":26.699001},{\"current\":0.23,\"status\":1,\"voltage\":26.699001},{\"current\":0.279,\"status\":1,\"voltage\":26.699001},{\"current\":0.23400001,\"status\":1,\"voltage\":26.699001},{\"current\":0.263,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.758001},{\"current\":0.002,\"status\":1,\"voltage\":26.758001},{\"current\":0.001,\"status\":1,\"voltage\":26.758001},{\"current\":0.001,\"status\":1,\"voltage\":26.758001},{\"current\":0.001,\"status\":1,\"voltage\":26.758001},{\"current\":0.001,\"status\":1,\"voltage\":26.758001},{\"current\":0.001,\"status\":1,\"voltage\":26.758001}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303113\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096646", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1019030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9778530\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"545114904\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9778535\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:84\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28100002,\"status\":1,\"voltage\":26.334002},{\"current\":0.349,\"status\":1,\"voltage\":26.334002},{\"current\":0.35300002,\"status\":1,\"voltage\":26.334002},{\"current\":0.246,\"status\":1,\"voltage\":26.334002},{\"current\":0.528,\"status\":1,\"voltage\":26.334002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.334002},{\"current\":0.23700002,\"status\":1,\"voltage\":26.334002},{\"current\":0.554,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.003,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874},{\"current\":0.001,\"status\":1,\"voltage\":26.874}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303204\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096647", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1019030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9798253\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"546219621\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9798258\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:8f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":26.354002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.354002},{\"current\":0.272,\"status\":1,\"voltage\":26.354002},{\"current\":0.28500003,\"status\":1,\"voltage\":26.354002},{\"current\":0.27400002,\"status\":1,\"voltage\":26.354002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.354002},{\"current\":0.30900002,\"status\":1,\"voltage\":26.354002},{\"current\":0.30400002,\"status\":1,\"voltage\":26.354002},{\"current\":0.316,\"status\":1,\"voltage\":26.354002},{\"current\":0.30600002,\"status\":1,\"voltage\":26.699001},{\"current\":0.003,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.699001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303215\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096648", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1019030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9813491\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"547075622\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9813496\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:05\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.577,\"status\":1,\"voltage\":26.666},{\"current\":0.27600002,\"status\":1,\"voltage\":26.666},{\"current\":0.32500002,\"status\":1,\"voltage\":26.666},{\"current\":0.319,\"status\":1,\"voltage\":26.666},{\"current\":0.29900002,\"status\":1,\"voltage\":26.666},{\"current\":0.001,\"status\":1,\"voltage\":26.666},{\"current\":0.27400002,\"status\":1,\"voltage\":26.666},{\"current\":0.291,\"status\":1,\"voltage\":26.666},{\"current\":0.26700002,\"status\":1,\"voltage\":26.666},{\"current\":0.22600001,\"status\":1,\"voltage\":26.418001},{\"current\":0.003,\"status\":1,\"voltage\":26.418001},{\"current\":0.41200003,\"status\":1,\"voltage\":26.418001},{\"current\":0.001,\"status\":1,\"voltage\":26.418001},{\"current\":0.001,\"status\":1,\"voltage\":26.418001},{\"current\":0.001,\"status\":1,\"voltage\":26.418001},{\"current\":0.001,\"status\":1,\"voltage\":26.418001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301988\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096649", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:59", + "echoMap": {}, + "deviceId": "1019030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9819054\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"547385173\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9819059\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:24\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.279,\"status\":1,\"voltage\":26.678001},{\"current\":0.386,\"status\":1,\"voltage\":26.678001},{\"current\":0.266,\"status\":1,\"voltage\":26.678001},{\"current\":0.001,\"status\":1,\"voltage\":26.678001},{\"current\":0.33400002,\"status\":1,\"voltage\":26.678001},{\"current\":0.537,\"status\":1,\"voltage\":26.678001},{\"current\":0.37100002,\"status\":1,\"voltage\":26.678001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.678001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.678001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.568},{\"current\":0.003,\"status\":1,\"voltage\":26.568},{\"current\":0.23400001,\"status\":1,\"voltage\":26.568},{\"current\":0.001,\"status\":1,\"voltage\":26.568},{\"current\":0.001,\"status\":1,\"voltage\":26.568},{\"current\":0.001,\"status\":1,\"voltage\":26.568},{\"current\":0.001,\"status\":1,\"voltage\":26.568}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302852\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096650", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:00", + "echoMap": {}, + "deviceId": "1019030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9820554\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"547470451\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9820559\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:a0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.55,\"status\":1,\"voltage\":27.048},{\"current\":0.001,\"status\":1,\"voltage\":27.048},{\"current\":0.38500002,\"status\":1,\"voltage\":27.048},{\"current\":0.33400002,\"status\":1,\"voltage\":27.048},{\"current\":0.41200003,\"status\":1,\"voltage\":27.048},{\"current\":0.40600002,\"status\":1,\"voltage\":27.048},{\"current\":0.001,\"status\":1,\"voltage\":27.048},{\"current\":0.001,\"status\":1,\"voltage\":27.048},{\"current\":0.001,\"status\":1,\"voltage\":27.048},{\"current\":0.001,\"status\":1,\"voltage\":26.726002},{\"current\":0.002,\"status\":1,\"voltage\":26.726002},{\"current\":0.001,\"status\":1,\"voltage\":26.726002},{\"current\":0.001,\"status\":1,\"voltage\":26.726002},{\"current\":0.001,\"status\":1,\"voltage\":26.726002},{\"current\":0.001,\"status\":1,\"voltage\":26.726002},{\"current\":0.001,\"status\":1,\"voltage\":26.726002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302143\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096651", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:00", + "echoMap": {}, + "deviceId": "1019030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9820910\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"547490548\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9820915\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:fd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26500002,\"status\":1,\"voltage\":26.823002},{\"current\":0.54800004,\"status\":1,\"voltage\":26.823002},{\"current\":0.42600003,\"status\":1,\"voltage\":26.823002},{\"current\":0.264,\"status\":1,\"voltage\":26.823002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.823002},{\"current\":0.35500002,\"status\":1,\"voltage\":26.823002},{\"current\":0.34100002,\"status\":1,\"voltage\":26.823002},{\"current\":0.0,\"status\":1,\"voltage\":26.823002},{\"current\":0.0,\"status\":1,\"voltage\":26.823002},{\"current\":0.0,\"status\":1,\"voltage\":26.77},{\"current\":0.003,\"status\":1,\"voltage\":26.77},{\"current\":0.001,\"status\":1,\"voltage\":26.77},{\"current\":0.001,\"status\":1,\"voltage\":26.77},{\"current\":0.001,\"status\":1,\"voltage\":26.77},{\"current\":0.001,\"status\":1,\"voltage\":26.77},{\"current\":0.001,\"status\":1,\"voltage\":26.77}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302236\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096652", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:01", + "echoMap": {}, + "deviceId": "1019030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9821399\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"547518718\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9821404\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:77\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.36800003,\"status\":1,\"voltage\":26.509},{\"current\":0.001,\"status\":1,\"voltage\":26.509},{\"current\":0.263,\"status\":1,\"voltage\":26.509},{\"current\":0.273,\"status\":1,\"voltage\":26.509},{\"current\":0.35700002,\"status\":1,\"voltage\":26.509},{\"current\":0.27600002,\"status\":1,\"voltage\":26.509},{\"current\":0.261,\"status\":1,\"voltage\":26.509},{\"current\":0.55200005,\"status\":1,\"voltage\":26.509},{\"current\":0.367,\"status\":1,\"voltage\":26.509},{\"current\":0.001,\"status\":1,\"voltage\":27.223001},{\"current\":0.003,\"status\":1,\"voltage\":27.223001},{\"current\":0.001,\"status\":1,\"voltage\":27.223001},{\"current\":0.001,\"status\":1,\"voltage\":27.223001},{\"current\":0.001,\"status\":1,\"voltage\":27.223001},{\"current\":0.001,\"status\":1,\"voltage\":27.223001},{\"current\":0.001,\"status\":1,\"voltage\":27.223001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303191\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:38:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096653", + "createdBy": "0", + "createdTime": "2025-12-01 15:05:59", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:01", + "echoMap": {}, + "deviceId": "1019030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.166.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9829774\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"547985670\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9829779\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:b5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.21000001,\"status\":1,\"voltage\":26.508001},{\"current\":0.215,\"status\":1,\"voltage\":26.508001},{\"current\":0.208,\"status\":1,\"voltage\":26.508001},{\"current\":0.266,\"status\":1,\"voltage\":26.508001},{\"current\":0.22900002,\"status\":1,\"voltage\":26.508001},{\"current\":0.223,\"status\":1,\"voltage\":26.508001},{\"current\":0.256,\"status\":1,\"voltage\":26.508001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.508001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.508001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.794},{\"current\":0.002,\"status\":1,\"voltage\":26.794},{\"current\":0.20700002,\"status\":1,\"voltage\":26.794},{\"current\":0.21000001,\"status\":1,\"voltage\":26.794},{\"current\":0.22700001,\"status\":1,\"voltage\":26.794},{\"current\":0.223,\"status\":1,\"voltage\":26.794},{\"current\":0.22200002,\"status\":1,\"voltage\":26.794}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208303253\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:38:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706388061384096589", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:07", + "echoMap": {}, + "deviceId": "1019040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif166\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:88\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:06\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":884409,\"inBytes\":46983475,\"inFlow\":864038,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":46983475,\"lastOutBytes\":532257785,\"outBytes\":532257785,\"outFlow\":20370,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":408260,\"inBytes\":1132360684,\"inFlow\":398911,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1132360684,\"lastOutBytes\":1158968384,\"outBytes\":1158968384,\"outFlow\":9348,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":408744,\"inBytes\":3513757363,\"inFlow\":399264,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3513757363,\"lastOutBytes\":4141343490,\"outBytes\":4141343490,\"outFlow\":9480,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":362,\"inBytes\":594835356,\"inFlow\":224,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":594835356,\"lastOutBytes\":351186376,\"outBytes\":351186376,\"outFlow\":138,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1697759,\"inBytes\":192776281,\"inFlow\":41146,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":192776281,\"lastOutBytes\":375938106,\"outBytes\":375938106,\"outFlow\":1656612,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:37.510235000\"}}", + "lastDiagTime": "2026-02-02 14:39:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096590", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:12", + "echoMap": {}, + "deviceId": "1019040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif166\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"58:d0:61:ab:b8:77\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:11\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405471,\"inBytes\":3786123126,\"inFlow\":396475,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3786123126,\"lastOutBytes\":65062971,\"outBytes\":65062971,\"outFlow\":8996,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":878209,\"inBytes\":3693920216,\"inFlow\":858283,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3693920216,\"lastOutBytes\":4106872392,\"outBytes\":4106872392,\"outFlow\":19926,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":300751899,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":300751899,\"lastOutBytes\":797726236,\"outBytes\":797726236,\"outFlow\":97,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":2990709,\"inBytes\":2195080715,\"inFlow\":71410,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2195080715,\"lastOutBytes\":3072997479,\"outBytes\":3072997479,\"outFlow\":2919298,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1699558,\"inBytes\":136582293,\"inFlow\":1658751,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":136582293,\"lastOutBytes\":187253693,\"outBytes\":187253693,\"outFlow\":40807,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:18.302733000\"}}", + "lastDiagTime": "2026-02-02 14:37:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096591", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:05", + "echoMap": {}, + "deviceId": "1019040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif166\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:65\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:05\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":882591,\"inBytes\":1649578788,\"inFlow\":862362,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1649578788,\"lastOutBytes\":4052773621,\"outBytes\":4052773621,\"outFlow\":20228,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":885541,\"inBytes\":803206732,\"inFlow\":865243,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":803206732,\"lastOutBytes\":1751615302,\"outBytes\":1751615302,\"outFlow\":20298,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":884691,\"inBytes\":3456536535,\"inFlow\":864495,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3456536535,\"lastOutBytes\":3308561792,\"outBytes\":3308561792,\"outFlow\":20195,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":410404,\"inBytes\":705137575,\"inFlow\":401219,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":705137575,\"lastOutBytes\":510659819,\"outBytes\":510659819,\"outFlow\":9184,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":349460496,\"outBytes\":349460496,\"outFlow\":91,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":6073786,\"inBytes\":1633496605,\"inFlow\":145547,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1633496605,\"lastOutBytes\":1691580974,\"outBytes\":1691580974,\"outFlow\":5928238,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3004713,\"inBytes\":3056154039,\"inFlow\":2933121,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3056154039,\"lastOutBytes\":2195396826,\"outBytes\":2195396826,\"outFlow\":71591,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:17.085093000\"}}", + "lastDiagTime": "2026-02-02 14:37:05", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096592", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1019040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"54487\",\"inUnknownProtos\":\"1565587203\",\"index\":\"634\",\"lastChange\":\"0:01:20.80\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:d6:e2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1547187061\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.143\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:17\",\"info\":{\"portInfoList\":[{\"flow\":852625,\"inBytes\":4109342215,\"inFlow\":831988,\"lastChangeTime\":\"20 days, 14:23:40.73\",\"lastInBytes\":4109342215,\"lastOutBytes\":3823723549,\"outBytes\":3823723549,\"outFlow\":20637,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":852552,\"inBytes\":292225927,\"inFlow\":831588,\"lastChangeTime\":\"20 days, 14:23:45.05\",\"lastInBytes\":292225927,\"lastOutBytes\":1670318174,\"outBytes\":1670318174,\"outFlow\":20963,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":852756,\"inBytes\":413652998,\"inFlow\":831719,\"lastChangeTime\":\"20 days, 14:23:48.20\",\"lastInBytes\":413652998,\"lastOutBytes\":3860296834,\"outBytes\":3860296834,\"outFlow\":21037,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":854302,\"inBytes\":3839510643,\"inFlow\":833290,\"lastChangeTime\":\"20 days, 14:23:45.26\",\"lastInBytes\":3839510643,\"lastOutBytes\":1296805008,\"outBytes\":1296805008,\"outFlow\":21012,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":3460005,\"inBytes\":2752472409,\"inFlow\":66736,\"lastChangeTime\":\"44 days, 20:48:52.63\",\"lastInBytes\":2752472409,\"lastOutBytes\":1565587203,\"outBytes\":1565587203,\"outFlow\":3393269,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":269,\"inBytes\":313635320,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.98\",\"lastInBytes\":313635320,\"lastOutBytes\":2462397948,\"outBytes\":2462397948,\"outFlow\":267,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6289745,\"inBytes\":1089616000,\"inFlow\":6130373,\"lastChangeTime\":\"0:03:58.61\",\"lastInBytes\":1089616000,\"lastOutBytes\":1316598770,\"outBytes\":1316598770,\"outFlow\":159372,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13687190,\"inBytes\":3291191055,\"inFlow\":3903001,\"lastChangeTime\":\"0:01:20.79\",\"lastInBytes\":3291191055,\"lastOutBytes\":4280507298,\"outBytes\":4280507298,\"outFlow\":9784189,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.837086000\"}}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096593", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"7\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61188\",\"inUnknownProtos\":\"1036325407\",\"index\":\"635\",\"lastChange\":\"0:01:17.09\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:3a:8b\",\"operStatus\":\"1\",\"outDiscards\":\"6\",\"outErrors\":\"0\",\"outNUcastPkts\":\"1\",\"outOctets\":\"1765268769\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42734375\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":454369,\"inBytes\":3726137672,\"inFlow\":444747,\"lastChangeTime\":\"0:01:19.49\",\"lastInBytes\":3726137672,\"lastOutBytes\":2213193454,\"outBytes\":2213193454,\"outFlow\":9622,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":449713,\"inBytes\":412249487,\"inFlow\":440379,\"lastChangeTime\":\"0:01:19.42\",\"lastInBytes\":412249487,\"lastOutBytes\":1578490604,\"outBytes\":1578490604,\"outFlow\":9333,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":421142,\"inBytes\":721293687,\"inFlow\":410970,\"lastChangeTime\":\"185 days, 0:04:55.63\",\"lastInBytes\":721293687,\"lastOutBytes\":2070088529,\"outBytes\":2070088529,\"outFlow\":10171,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":423762,\"inBytes\":696358434,\"inFlow\":413405,\"lastChangeTime\":\"119 days, 0:04:30.68\",\"lastInBytes\":696358434,\"lastOutBytes\":2061045966,\"outBytes\":2061045966,\"outFlow\":10357,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":422337,\"inBytes\":3412517041,\"inFlow\":412065,\"lastChangeTime\":\"119 days, 0:04:33.64\",\"lastInBytes\":3412517041,\"lastOutBytes\":1999729006,\"outBytes\":1999729006,\"outFlow\":10271,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1125995,\"inBytes\":70788190,\"inFlow\":1099485,\"lastChangeTime\":\"109 days, 13:43:23.05\",\"lastInBytes\":70788190,\"lastOutBytes\":1036325407,\"outBytes\":1036325407,\"outFlow\":26509,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":914101,\"inBytes\":350222698,\"inFlow\":891553,\"lastChangeTime\":\"119 days, 0:04:22.36\",\"lastInBytes\":350222698,\"lastOutBytes\":3942838511,\"outBytes\":3942838511,\"outFlow\":22547,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":421125,\"inBytes\":3847013227,\"inFlow\":410842,\"lastChangeTime\":\"119 days, 0:04:19.53\",\"lastInBytes\":3847013227,\"lastOutBytes\":517186752,\"outBytes\":517186752,\"outFlow\":10282,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":112388,\"inFlow\":0,\"lastChangeTime\":\"95 days, 8:14:40.84\",\"lastInBytes\":112388,\"lastOutBytes\":4373158,\"outBytes\":4373158,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1109715,\"inFlow\":0,\"lastChangeTime\":\"109 days, 14:00:26.73\",\"lastInBytes\":1109715,\"lastOutBytes\":49248313,\"outBytes\":49248313,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":285,\"inBytes\":1001153370,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.71\",\"lastInBytes\":1001153370,\"lastOutBytes\":3146545733,\"outBytes\":3146545733,\"outFlow\":283,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.71\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4650576,\"inBytes\":1581593431,\"inFlow\":114042,\"lastChangeTime\":\"26 days, 9:28:53.45\",\"lastInBytes\":1581593431,\"lastOutBytes\":1853654056,\"outBytes\":1853654056,\"outFlow\":4536533,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.71\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.673687000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096594", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61172\",\"inUnknownProtos\":\"2021897364\",\"index\":\"635\",\"lastChange\":\"0:01:23.09\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:cf:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2327351202\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42732487\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":849284,\"inBytes\":4235410123,\"inFlow\":827881,\"lastChangeTime\":\"119 days, 0:04:24.18\",\"lastInBytes\":4235410123,\"lastOutBytes\":1307171166,\"outBytes\":1307171166,\"outFlow\":21403,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":12979176,\"inBytes\":2725283154,\"inFlow\":892693,\"lastChangeTime\":\"119 days, 0:04:27.96\",\"lastInBytes\":2725283154,\"lastOutBytes\":1752540058,\"outBytes\":1752540058,\"outFlow\":12086482,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":421406,\"inBytes\":2926038334,\"inFlow\":411171,\"lastChangeTime\":\"50 days, 19:34:15.52\",\"lastInBytes\":2926038334,\"lastOutBytes\":3620163675,\"outBytes\":3620163675,\"outFlow\":10234,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":914367,\"inBytes\":1599571451,\"inFlow\":892038,\"lastChangeTime\":\"184 days, 20:24:38.56\",\"lastInBytes\":1599571451,\"lastOutBytes\":2231676760,\"outBytes\":2231676760,\"outFlow\":22328,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":281342,\"inBytes\":1162047850,\"inFlow\":274279,\"lastChangeTime\":\"0:01:24.68\",\"lastInBytes\":1162047850,\"lastOutBytes\":596042581,\"outBytes\":596042581,\"outFlow\":7063,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421215,\"inBytes\":3716810867,\"inFlow\":410905,\"lastChangeTime\":\"0:01:25.11\",\"lastInBytes\":3716810867,\"lastOutBytes\":2021897364,\"outBytes\":2021897364,\"outFlow\":10310,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":915121,\"inBytes\":1414047596,\"inFlow\":892218,\"lastChangeTime\":\"119 days, 0:04:30.27\",\"lastInBytes\":1414047596,\"lastOutBytes\":994737807,\"outBytes\":994737807,\"outFlow\":22902,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":915238,\"inBytes\":1434488494,\"inFlow\":892152,\"lastChangeTime\":\"119 days, 0:04:39.00\",\"lastInBytes\":1434488494,\"lastOutBytes\":795184672,\"outBytes\":795184672,\"outFlow\":23086,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":392975,\"inBytes\":3552234489,\"inFlow\":383425,\"lastChangeTime\":\"0:01:25.11\",\"lastInBytes\":3552234489,\"lastOutBytes\":816562931,\"outBytes\":816562931,\"outFlow\":9550,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":533367,\"inBytes\":4083463235,\"inFlow\":520281,\"lastChangeTime\":\"68 days, 8:36:17.53\",\"lastInBytes\":4083463235,\"lastOutBytes\":2843740378,\"outBytes\":2843740378,\"outFlow\":13085,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":270,\"inBytes\":1003119556,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.67\",\"lastInBytes\":1003119556,\"lastOutBytes\":3146015387,\"outBytes\":3146015387,\"outFlow\":269,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6714718,\"inBytes\":113714528,\"inFlow\":173619,\"lastChangeTime\":\"0:01:23.08\",\"lastInBytes\":113714528,\"lastOutBytes\":2615488113,\"outBytes\":2615488113,\"outFlow\":6541098,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.675321000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096595", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61171\",\"inUnknownProtos\":\"1437108860\",\"index\":\"635\",\"lastChange\":\"0:01:22.86\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:8b:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3829086334\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42732625\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:16\",\"info\":{\"portInfoList\":[{\"flow\":852105,\"inBytes\":1156994826,\"inFlow\":830941,\"lastChangeTime\":\"119 days, 0:04:17.68\",\"lastInBytes\":1156994826,\"lastOutBytes\":1750683246,\"outBytes\":1750683246,\"outFlow\":21163,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":854912,\"inBytes\":4163667439,\"inFlow\":833568,\"lastChangeTime\":\"119 days, 0:04:16.16\",\"lastInBytes\":4163667439,\"lastOutBytes\":549866344,\"outBytes\":549866344,\"outFlow\":21343,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":392492,\"inBytes\":2719796914,\"inFlow\":383006,\"lastChangeTime\":\"50 days, 19:34:15.28\",\"lastInBytes\":2719796914,\"lastOutBytes\":1675063677,\"outBytes\":1675063677,\"outFlow\":9485,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":394789,\"inBytes\":809210440,\"inFlow\":385168,\"lastChangeTime\":\"64 days, 14:08:06.23\",\"lastInBytes\":809210440,\"lastOutBytes\":1753572912,\"outBytes\":1753572912,\"outFlow\":9621,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":852454,\"inBytes\":2444196746,\"inFlow\":831376,\"lastChangeTime\":\"0:01:24.83\",\"lastInBytes\":2444196746,\"lastOutBytes\":4045049114,\"outBytes\":4045049114,\"outFlow\":21077,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":396437,\"inBytes\":1771861450,\"inFlow\":386822,\"lastChangeTime\":\"50 days, 19:34:17.94\",\"lastInBytes\":1771861450,\"lastOutBytes\":1437108860,\"outBytes\":1437108860,\"outFlow\":9614,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":852051,\"inBytes\":3757731139,\"inFlow\":831089,\"lastChangeTime\":\"119 days, 0:04:14.16\",\"lastInBytes\":3757731139,\"lastOutBytes\":4271235667,\"outBytes\":4271235667,\"outFlow\":20961,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":421952,\"inBytes\":3859693373,\"inFlow\":411741,\"lastChangeTime\":\"50 days, 19:34:23.08\",\"lastInBytes\":3859693373,\"lastOutBytes\":1497374223,\"outBytes\":1497374223,\"outFlow\":10210,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":854066,\"inBytes\":827740411,\"inFlow\":832941,\"lastChangeTime\":\"119 days, 0:04:17.60\",\"lastInBytes\":827740411,\"lastOutBytes\":968015322,\"outBytes\":968015322,\"outFlow\":21124,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":534440,\"inBytes\":3948333509,\"inFlow\":521273,\"lastChangeTime\":\"68 days, 8:25:47.36\",\"lastInBytes\":3948333509,\"lastOutBytes\":3712110184,\"outBytes\":3712110184,\"outFlow\":13166,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":269,\"inBytes\":1004016088,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.82\",\"lastInBytes\":1004016088,\"lastOutBytes\":3146693269,\"outBytes\":3146693269,\"outFlow\":268,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":6861938,\"inBytes\":2228195412,\"inFlow\":175913,\"lastChangeTime\":\"0:01:22.85\",\"lastInBytes\":2228195412,\"lastOutBytes\":1757515703,\"outBytes\":1757515703,\"outFlow\":6686025,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.62\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.745696000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096596", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1019040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61168\",\"inUnknownProtos\":\"2120684966\",\"index\":\"635\",\"lastChange\":\"0:01:16.03\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:cc:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3292834604\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:16\",\"info\":{\"portInfoList\":[{\"flow\":854292,\"inBytes\":3451901189,\"inFlow\":832836,\"lastChangeTime\":\"119 days, 0:04:24.71\",\"lastInBytes\":3451901189,\"lastOutBytes\":544166960,\"outBytes\":544166960,\"outFlow\":21456,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":851786,\"inBytes\":2250388003,\"inFlow\":830259,\"lastChangeTime\":\"119 days, 0:04:18.59\",\"lastInBytes\":2250388003,\"lastOutBytes\":1930403780,\"outBytes\":1930403780,\"outFlow\":21526,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":392972,\"inBytes\":375038509,\"inFlow\":383249,\"lastChangeTime\":\"0:01:17.82\",\"lastInBytes\":375038509,\"lastOutBytes\":1702065352,\"outBytes\":1702065352,\"outFlow\":9723,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":262501,\"inBytes\":2773024874,\"inFlow\":256031,\"lastChangeTime\":\"0:01:17.82\",\"lastInBytes\":2773024874,\"lastOutBytes\":2346542706,\"outBytes\":2346542706,\"outFlow\":6469,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":856935,\"inBytes\":3794395812,\"inFlow\":835175,\"lastChangeTime\":\"119 days, 0:04:13.87\",\"lastInBytes\":3794395812,\"lastOutBytes\":910631376,\"outBytes\":910631376,\"outFlow\":21759,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":392679,\"inBytes\":3512097087,\"inFlow\":382985,\"lastChangeTime\":\"0:01:17.82\",\"lastInBytes\":3512097087,\"lastOutBytes\":2120684966,\"outBytes\":2120684966,\"outFlow\":9693,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":851608,\"inBytes\":2338368849,\"inFlow\":829918,\"lastChangeTime\":\"119 days, 0:04:10.36\",\"lastInBytes\":2338368849,\"lastOutBytes\":2278213369,\"outBytes\":2278213369,\"outFlow\":21689,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":268,\"inBytes\":1004866035,\"inFlow\":1,\"lastChangeTime\":\"0:01:17.83\",\"lastInBytes\":1004866035,\"lastOutBytes\":3149273292,\"outBytes\":3149273292,\"outFlow\":267,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":4804544,\"inBytes\":1131820267,\"inFlow\":126071,\"lastChangeTime\":\"0:01:16.03\",\"lastInBytes\":1131820267,\"lastOutBytes\":1394361449,\"outBytes\":1394361449,\"outFlow\":4678473,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.667279000\"}}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096597", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61023\",\"inUnknownProtos\":\"2096193731\",\"index\":\"635\",\"lastChange\":\"0:01:22.65\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:81:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2324834783\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"21942074\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":420776,\"inBytes\":2034772516,\"inFlow\":410566,\"lastChangeTime\":\"0:01:24.42\",\"lastInBytes\":2034772516,\"lastOutBytes\":1661556415,\"outBytes\":1661556415,\"outFlow\":10210,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":976970,\"inBytes\":1594742898,\"inFlow\":956907,\"lastChangeTime\":\"0:01:24.99\",\"lastInBytes\":1594742898,\"lastOutBytes\":1305402656,\"outBytes\":1305402656,\"outFlow\":20062,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":458786,\"inBytes\":234278013,\"inFlow\":449392,\"lastChangeTime\":\"0:01:25.11\",\"lastInBytes\":234278013,\"lastOutBytes\":2021412788,\"outBytes\":2021412788,\"outFlow\":9394,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":421188,\"inBytes\":2330171789,\"inFlow\":410829,\"lastChangeTime\":\"119 days, 0:04:37.55\",\"lastInBytes\":2330171789,\"lastOutBytes\":2706914516,\"outBytes\":2706914516,\"outFlow\":10359,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1106826,\"inBytes\":1803365389,\"inFlow\":1080777,\"lastChangeTime\":\"50 days, 19:34:16.66\",\"lastInBytes\":1803365389,\"lastOutBytes\":2901058632,\"outBytes\":2901058632,\"outFlow\":26048,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421916,\"inBytes\":360563601,\"inFlow\":411587,\"lastChangeTime\":\"119 days, 0:04:24.96\",\"lastInBytes\":360563601,\"lastOutBytes\":2096193731,\"outBytes\":2096193731,\"outFlow\":10328,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":420840,\"inBytes\":1939938841,\"inFlow\":410548,\"lastChangeTime\":\"119 days, 0:04:34.41\",\"lastInBytes\":1939938841,\"lastOutBytes\":3525835162,\"outBytes\":3525835162,\"outFlow\":10291,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":9041055,\"inBytes\":611260868,\"inFlow\":383474,\"lastChangeTime\":\"50 days, 19:34:19.70\",\"lastInBytes\":611260868,\"lastOutBytes\":44,\"outBytes\":44,\"outFlow\":8657581,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":288,\"inBytes\":1006728251,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.41\",\"lastInBytes\":1006728251,\"lastOutBytes\":3149345495,\"outBytes\":3149345495,\"outFlow\":286,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4366116,\"inBytes\":3878469938,\"inFlow\":104436,\"lastChangeTime\":\"0:01:22.64\",\"lastInBytes\":3878469938,\"lastOutBytes\":3353705815,\"outBytes\":3353705815,\"outFlow\":4261680,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.674201000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096598", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61184\",\"inUnknownProtos\":\"449049730\",\"index\":\"635\",\"lastChange\":\"0:01:18.87\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:11:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"535704357\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42735846\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:15\",\"info\":{\"portInfoList\":[{\"flow\":393549,\"inBytes\":1024534585,\"inFlow\":383905,\"lastChangeTime\":\"119 days, 0:04:51.79\",\"lastInBytes\":1024534585,\"lastOutBytes\":97744144,\"outBytes\":97744144,\"outFlow\":9643,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":393280,\"inBytes\":1881873460,\"inFlow\":383698,\"lastChangeTime\":\"119 days, 0:04:43.65\",\"lastInBytes\":1881873460,\"lastOutBytes\":4250940137,\"outBytes\":4250940137,\"outFlow\":9582,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":391756,\"inBytes\":1677941927,\"inFlow\":382107,\"lastChangeTime\":\"119 days, 0:04:36.86\",\"lastInBytes\":1677941927,\"lastOutBytes\":2168970299,\"outBytes\":2168970299,\"outFlow\":9648,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":394442,\"inBytes\":1711547882,\"inFlow\":384751,\"lastChangeTime\":\"119 days, 0:04:37.02\",\"lastInBytes\":1711547882,\"lastOutBytes\":2458010627,\"outBytes\":2458010627,\"outFlow\":9690,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":856062,\"inBytes\":2509985427,\"inFlow\":835011,\"lastChangeTime\":\"153 days, 2:06:47.11\",\"lastInBytes\":2509985427,\"lastOutBytes\":306102025,\"outBytes\":306102025,\"outFlow\":21051,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":852800,\"inBytes\":875086982,\"inFlow\":831852,\"lastChangeTime\":\"119 days, 3:42:28.56\",\"lastInBytes\":875086982,\"lastOutBytes\":449049730,\"outBytes\":449049730,\"outFlow\":20948,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":457050,\"inBytes\":2054858729,\"inFlow\":447137,\"lastChangeTime\":\"0:01:21.37\",\"lastInBytes\":2054858729,\"lastOutBytes\":4244424793,\"outBytes\":4244424793,\"outFlow\":9912,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":563478,\"inBytes\":391606804,\"inFlow\":550890,\"lastChangeTime\":\"0:01:21.28\",\"lastInBytes\":391606804,\"lastOutBytes\":1288395129,\"outBytes\":1288395129,\"outFlow\":12587,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":583681,\"inBytes\":3192867040,\"inFlow\":570450,\"lastChangeTime\":\"0:01:21.50\",\"lastInBytes\":3192867040,\"lastOutBytes\":2855139627,\"outBytes\":2855139627,\"outFlow\":13230,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428595,\"inBytes\":3002379016,\"inFlow\":419504,\"lastChangeTime\":\"95 days, 8:24:05.70\",\"lastInBytes\":3002379016,\"lastOutBytes\":2880229332,\"outBytes\":2880229332,\"outFlow\":9090,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":264,\"inBytes\":1008740258,\"inFlow\":1,\"lastChangeTime\":\"0:01:20.62\",\"lastInBytes\":1008740258,\"lastOutBytes\":3150076775,\"outBytes\":3150076775,\"outFlow\":262,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":5277993,\"inBytes\":1363452278,\"inFlow\":129553,\"lastChangeTime\":\"0:01:18.87\",\"lastInBytes\":1363452278,\"lastOutBytes\":2230699046,\"outBytes\":2230699046,\"outFlow\":5148439,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.677305000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096599", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61030\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:14.03\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:33:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42734293\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:16\",\"info\":{\"portInfoList\":[{\"flow\":976660,\"inBytes\":1267826451,\"inFlow\":953559,\"lastChangeTime\":\"50 days, 19:34:12.21\",\"lastInBytes\":1267826451,\"lastOutBytes\":315165298,\"outBytes\":315165298,\"outFlow\":23100,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":394278,\"inBytes\":3102682502,\"inFlow\":384613,\"lastChangeTime\":\"0:01:15.61\",\"lastInBytes\":3102682502,\"lastOutBytes\":2335900977,\"outBytes\":2335900977,\"outFlow\":9664,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":449632,\"inBytes\":2565330118,\"inFlow\":440158,\"lastChangeTime\":\"0:01:16.51\",\"lastInBytes\":2565330118,\"lastOutBytes\":642751449,\"outBytes\":642751449,\"outFlow\":9473,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":467810,\"inBytes\":4279905042,\"inFlow\":457801,\"lastChangeTime\":\"0:01:16.43\",\"lastInBytes\":4279905042,\"lastOutBytes\":2789169199,\"outBytes\":2789169199,\"outFlow\":10008,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":934793,\"inBytes\":3285636284,\"inFlow\":913060,\"lastChangeTime\":\"0:01:16.60\",\"lastInBytes\":3285636284,\"lastOutBytes\":3487966622,\"outBytes\":3487966622,\"outFlow\":21732,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":422272,\"inBytes\":353206917,\"inFlow\":411944,\"lastChangeTime\":\"0:01:15.71\",\"lastInBytes\":353206917,\"lastOutBytes\":202489395,\"outBytes\":202489395,\"outFlow\":10328,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":913995,\"inBytes\":1875598513,\"inFlow\":891519,\"lastChangeTime\":\"119 days, 0:04:27.83\",\"lastInBytes\":1875598513,\"lastOutBytes\":2147205091,\"outBytes\":2147205091,\"outFlow\":22476,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":852468,\"inBytes\":1665828316,\"inFlow\":831501,\"lastChangeTime\":\"119 days, 0:04:26.09\",\"lastInBytes\":1665828316,\"lastOutBytes\":2124847219,\"outBytes\":2124847219,\"outFlow\":20967,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":591527,\"inBytes\":1106615635,\"inFlow\":576254,\"lastChangeTime\":\"0:01:15.99\",\"lastInBytes\":1106615635,\"lastOutBytes\":2033178891,\"outBytes\":2033178891,\"outFlow\":15272,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":262964,\"inBytes\":1168095285,\"inFlow\":256415,\"lastChangeTime\":\"153 days, 12:28:42.36\",\"lastInBytes\":1168095285,\"lastOutBytes\":3490797204,\"outBytes\":3490797204,\"outFlow\":6548,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":270,\"inBytes\":1010297175,\"inFlow\":1,\"lastChangeTime\":\"0:01:15.70\",\"lastInBytes\":1010297175,\"lastOutBytes\":3151637332,\"outBytes\":3151637332,\"outFlow\":269,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6514424,\"inBytes\":1641725470,\"inFlow\":162017,\"lastChangeTime\":\"0:01:14.02\",\"lastInBytes\":1641725470,\"lastOutBytes\":3403470811,\"outBytes\":3403470811,\"outFlow\":6352407,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.690400000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096600", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1019040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61009\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:20.19\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:13:4b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42735494\",\"speed\":\"4294967295\"},\"cpuRatio\":\"8\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:17\",\"info\":{\"portInfoList\":[{\"flow\":916831,\"inBytes\":2601332793,\"inFlow\":894357,\"lastChangeTime\":\"0:01:22.76\",\"lastInBytes\":2601332793,\"lastOutBytes\":2181898489,\"outBytes\":2181898489,\"outFlow\":22474,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":504905,\"inBytes\":2783375536,\"inFlow\":492965,\"lastChangeTime\":\"0:01:22.77\",\"lastInBytes\":2783375536,\"lastOutBytes\":3551259344,\"outBytes\":3551259344,\"outFlow\":11939,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":851623,\"inBytes\":340813255,\"inFlow\":830714,\"lastChangeTime\":\"0:01:22.76\",\"lastInBytes\":340813255,\"lastOutBytes\":2873413144,\"outBytes\":2873413144,\"outFlow\":20909,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1042554,\"inBytes\":3538061542,\"inFlow\":1018134,\"lastChangeTime\":\"50 days, 19:34:38.47\",\"lastInBytes\":3538061542,\"lastOutBytes\":3941822172,\"outBytes\":3941822172,\"outFlow\":24419,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":393574,\"inBytes\":592417778,\"inFlow\":384371,\"lastChangeTime\":\"111 days, 15:16:27.45\",\"lastInBytes\":592417778,\"lastOutBytes\":2032464322,\"outBytes\":2032464322,\"outFlow\":9202,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":399647,\"inBytes\":243564262,\"inFlow\":390677,\"lastChangeTime\":\"0:01:22.77\",\"lastInBytes\":243564262,\"lastOutBytes\":4094540212,\"outBytes\":4094540212,\"outFlow\":8970,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":394543,\"inBytes\":505654278,\"inFlow\":384863,\"lastChangeTime\":\"0:01:22.08\",\"lastInBytes\":505654278,\"lastOutBytes\":73454432,\"outBytes\":73454432,\"outFlow\":9680,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":281055,\"inBytes\":1241579168,\"inFlow\":274223,\"lastChangeTime\":\"0:01:22.09\",\"lastInBytes\":1241579168,\"lastOutBytes\":429102604,\"outBytes\":429102604,\"outFlow\":6831,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":421238,\"inBytes\":3924030092,\"inFlow\":410953,\"lastChangeTime\":\"0:01:22.08\",\"lastInBytes\":3924030092,\"lastOutBytes\":1688938406,\"outBytes\":1688938406,\"outFlow\":10284,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":281385,\"inBytes\":1814880489,\"inFlow\":274328,\"lastChangeTime\":\"0:01:22.09\",\"lastInBytes\":1814880489,\"lastOutBytes\":4051677497,\"outBytes\":4051677497,\"outFlow\":7057,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":287,\"inBytes\":1010862128,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.07\",\"lastInBytes\":1010862128,\"lastOutBytes\":3153305802,\"outBytes\":3153305802,\"outFlow\":286,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5357927,\"inBytes\":3896740897,\"inFlow\":133629,\"lastChangeTime\":\"0:01:20.19\",\"lastInBytes\":3896740897,\"lastOutBytes\":3441047022,\"outBytes\":3441047022,\"outFlow\":5224297,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.688062000\"}}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096601", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61166\",\"inUnknownProtos\":\"1982157263\",\"index\":\"635\",\"lastChange\":\"0:01:30.57\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:43:8b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9225157\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:16\",\"info\":{\"portInfoList\":[{\"flow\":420722,\"inBytes\":3652332510,\"inFlow\":410464,\"lastChangeTime\":\"50 days, 19:34:17.97\",\"lastInBytes\":3652332510,\"lastOutBytes\":3587815200,\"outBytes\":3587815200,\"outFlow\":10258,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":421025,\"inBytes\":2436871937,\"inFlow\":410714,\"lastChangeTime\":\"119 days, 0:04:26.26\",\"lastInBytes\":2436871937,\"lastOutBytes\":1806429347,\"outBytes\":1806429347,\"outFlow\":10311,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":915434,\"inBytes\":3457128971,\"inFlow\":893028,\"lastChangeTime\":\"0:01:32.42\",\"lastInBytes\":3457128971,\"lastOutBytes\":2434685908,\"outBytes\":2434685908,\"outFlow\":22405,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":912840,\"inBytes\":918298507,\"inFlow\":890366,\"lastChangeTime\":\"0:01:32.43\",\"lastInBytes\":918298507,\"lastOutBytes\":1911384424,\"outBytes\":1911384424,\"outFlow\":22473,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":428879,\"inBytes\":3492410139,\"inFlow\":419217,\"lastChangeTime\":\"0:01:32.90\",\"lastInBytes\":3492410139,\"lastOutBytes\":1216591810,\"outBytes\":1216591810,\"outFlow\":9661,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":555,\"inBytes\":2782966551,\"inFlow\":181,\"lastChangeTime\":\"0:01:32.86\",\"lastInBytes\":2782966551,\"lastOutBytes\":1982157263,\"outBytes\":1982157263,\"outFlow\":374,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":285,\"inBytes\":1011017750,\"inFlow\":1,\"lastChangeTime\":\"0:01:32.42\",\"lastInBytes\":1011017750,\"lastOutBytes\":3153400462,\"outBytes\":3153400462,\"outFlow\":284,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2903445,\"inBytes\":3958726466,\"inFlow\":73765,\"lastChangeTime\":\"0:01:30.56\",\"lastInBytes\":3958726466,\"lastOutBytes\":4097487459,\"outBytes\":4097487459,\"outFlow\":2829679,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.702095000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096602", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1019040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61119\",\"inUnknownProtos\":\"8337207\",\"index\":\"635\",\"lastChange\":\"0:01:28.89\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:48:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2118375628\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:17\",\"info\":{\"portInfoList\":[{\"flow\":273321,\"inBytes\":1297757941,\"inFlow\":265614,\"lastChangeTime\":\"0:01:30.69\",\"lastInBytes\":1297757941,\"lastOutBytes\":3670857839,\"outBytes\":3670857839,\"outFlow\":7707,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":945358,\"inBytes\":1791001749,\"inFlow\":923108,\"lastChangeTime\":\"50 days, 19:34:22.53\",\"lastInBytes\":1791001749,\"lastOutBytes\":3540565653,\"outBytes\":3540565653,\"outFlow\":22249,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":264032,\"inBytes\":1061615083,\"inFlow\":257407,\"lastChangeTime\":\"188 days, 9:10:19.92\",\"lastInBytes\":1061615083,\"lastOutBytes\":3779405664,\"outBytes\":3779405664,\"outFlow\":6625,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":395567,\"inBytes\":1812702536,\"inFlow\":385875,\"lastChangeTime\":\"0:01:30.67\",\"lastInBytes\":1812702536,\"lastOutBytes\":1829375814,\"outBytes\":1829375814,\"outFlow\":9692,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":393146,\"inBytes\":2747220306,\"inFlow\":383477,\"lastChangeTime\":\"0:01:30.68\",\"lastInBytes\":2747220306,\"lastOutBytes\":1207511049,\"outBytes\":1207511049,\"outFlow\":9669,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":428388,\"inBytes\":1967752921,\"inFlow\":419419,\"lastChangeTime\":\"0:01:31.27\",\"lastInBytes\":1967752921,\"lastOutBytes\":8337207,\"outBytes\":8337207,\"outFlow\":8968,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":459275,\"inBytes\":750894640,\"inFlow\":449645,\"lastChangeTime\":\"0:01:31.44\",\"lastInBytes\":750894640,\"lastOutBytes\":4107463041,\"outBytes\":4107463041,\"outFlow\":9630,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":268,\"inBytes\":1011052943,\"inFlow\":1,\"lastChangeTime\":\"0:01:30.68\",\"lastInBytes\":1011052943,\"lastOutBytes\":3156054030,\"outBytes\":3156054030,\"outFlow\":267,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3170386,\"inBytes\":772036696,\"inFlow\":77815,\"lastChangeTime\":\"0:01:28.89\",\"lastInBytes\":772036696,\"lastOutBytes\":3206869256,\"outBytes\":3206869256,\"outFlow\":3092570,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.802107000\"}}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096603", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:17", + "echoMap": {}, + "deviceId": "1019040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61014\",\"inUnknownProtos\":\"3802233028\",\"index\":\"635\",\"lastChange\":\"0:01:27.47\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:20:8b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2351922968\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42733981\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:16\",\"info\":{\"portInfoList\":[{\"flow\":394602,\"inBytes\":3986420817,\"inFlow\":385511,\"lastChangeTime\":\"111 days, 15:15:23.40\",\"lastInBytes\":3986420817,\"lastOutBytes\":3379089906,\"outBytes\":3379089906,\"outFlow\":9091,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":490036,\"inBytes\":2189215465,\"inFlow\":478243,\"lastChangeTime\":\"0:01:29.86\",\"lastInBytes\":2189215465,\"lastOutBytes\":3671969080,\"outBytes\":3671969080,\"outFlow\":11792,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":852427,\"inBytes\":3564066913,\"inFlow\":831609,\"lastChangeTime\":\"0:01:29.34\",\"lastInBytes\":3564066913,\"lastOutBytes\":4292759769,\"outBytes\":4292759769,\"outFlow\":20818,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":420919,\"inBytes\":411804334,\"inFlow\":410632,\"lastChangeTime\":\"0:01:29.34\",\"lastInBytes\":411804334,\"lastOutBytes\":1469380655,\"outBytes\":1469380655,\"outFlow\":10286,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":433030,\"inBytes\":396533826,\"inFlow\":423130,\"lastChangeTime\":\"0:01:30.00\",\"lastInBytes\":396533826,\"lastOutBytes\":1464863417,\"outBytes\":1464863417,\"outFlow\":9899,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":421191,\"inBytes\":1466338223,\"inFlow\":410883,\"lastChangeTime\":\"0:01:29.33\",\"lastInBytes\":1466338223,\"lastOutBytes\":3802233028,\"outBytes\":3802233028,\"outFlow\":10308,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":911319,\"inBytes\":2729887084,\"inFlow\":888863,\"lastChangeTime\":\"0:01:29.32\",\"lastInBytes\":2729887084,\"lastOutBytes\":2098334166,\"outBytes\":2098334166,\"outFlow\":22456,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":423329,\"inBytes\":4078826212,\"inFlow\":413069,\"lastChangeTime\":\"50 days, 19:34:30.62\",\"lastInBytes\":4078826212,\"lastOutBytes\":4181678849,\"outBytes\":4181678849,\"outFlow\":10259,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":272,\"inBytes\":1011103831,\"inFlow\":1,\"lastChangeTime\":\"0:01:29.33\",\"lastInBytes\":1011103831,\"lastOutBytes\":3154636380,\"outBytes\":3154636380,\"outFlow\":270,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4490338,\"inBytes\":3778638055,\"inFlow\":112646,\"lastChangeTime\":\"0:01:27.47\",\"lastInBytes\":3778638055,\"lastOutBytes\":30233326,\"outBytes\":30233326,\"outFlow\":4377692,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:12.681751000\"}}", + "lastDiagTime": "2026-02-02 14:37:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096604", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:16", + "echoMap": {}, + "deviceId": "1019040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.166.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface166\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"61057\",\"inUnknownProtos\":\"44607387\",\"index\":\"635\",\"lastChange\":\"0:01:19.44\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:88:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1562820341\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"42732139\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.166.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:16\",\"info\":{\"portInfoList\":[{\"flow\":262641,\"inBytes\":847227471,\"inFlow\":255973,\"lastChangeTime\":\"145 days, 11:07:04.87\",\"lastInBytes\":847227471,\"lastOutBytes\":2856866738,\"outBytes\":2856866738,\"outFlow\":6667,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":280795,\"inBytes\":411900666,\"inFlow\":274195,\"lastChangeTime\":\"0:01:21.38\",\"lastInBytes\":411900666,\"lastOutBytes\":808826583,\"outBytes\":808826583,\"outFlow\":6600,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":281355,\"inBytes\":4008104889,\"inFlow\":274442,\"lastChangeTime\":\"0:01:21.95\",\"lastInBytes\":4008104889,\"lastOutBytes\":2136311592,\"outBytes\":2136311592,\"outFlow\":6913,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":913909,\"inBytes\":3848699075,\"inFlow\":891307,\"lastChangeTime\":\"0:01:21.93\",\"lastInBytes\":3848699075,\"lastOutBytes\":4095419072,\"outBytes\":4095419072,\"outFlow\":22601,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":281368,\"inBytes\":2231484051,\"inFlow\":274332,\"lastChangeTime\":\"195 days, 13:23:12.10\",\"lastInBytes\":2231484051,\"lastOutBytes\":2602947678,\"outBytes\":2602947678,\"outFlow\":7035,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":281136,\"inBytes\":1194362614,\"inFlow\":274162,\"lastChangeTime\":\"0:01:21.92\",\"lastInBytes\":1194362614,\"lastOutBytes\":44607387,\"outBytes\":44607387,\"outFlow\":6974,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":281551,\"inBytes\":1465235814,\"inFlow\":274416,\"lastChangeTime\":\"0:01:21.94\",\"lastInBytes\":1465235814,\"lastOutBytes\":4250670446,\"outBytes\":4250670446,\"outFlow\":7135,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":281261,\"inBytes\":1364405528,\"inFlow\":274196,\"lastChangeTime\":\"0:01:21.93\",\"lastInBytes\":1364405528,\"lastOutBytes\":580349281,\"outBytes\":580349281,\"outFlow\":7064,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":393082,\"inBytes\":4093595643,\"inFlow\":383497,\"lastChangeTime\":\"102 days, 1:17:31.74\",\"lastInBytes\":4093595643,\"lastOutBytes\":1163371300,\"outBytes\":1163371300,\"outFlow\":9585,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":393022,\"inBytes\":2899484669,\"inFlow\":383497,\"lastChangeTime\":\"0:01:21.92\",\"lastInBytes\":2899484669,\"lastOutBytes\":1536748571,\"outBytes\":1536748571,\"outFlow\":9524,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":262856,\"inBytes\":2094105504,\"inFlow\":256136,\"lastChangeTime\":\"0:01:21.95\",\"lastInBytes\":2094105504,\"lastOutBytes\":1886984341,\"outBytes\":1886984341,\"outFlow\":6719,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":262529,\"inBytes\":3670525794,\"inFlow\":255977,\"lastChangeTime\":\"146 days, 9:37:05.68\",\"lastInBytes\":3670525794,\"lastOutBytes\":1363423029,\"outBytes\":1363423029,\"outFlow\":6551,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":262930,\"inBytes\":1395016281,\"inFlow\":256203,\"lastChangeTime\":\"0:01:21.38\",\"lastInBytes\":1395016281,\"lastOutBytes\":828408593,\"outBytes\":828408593,\"outFlow\":6727,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":262633,\"inBytes\":587073620,\"inFlow\":255974,\"lastChangeTime\":\"0:01:21.39\",\"lastInBytes\":587073620,\"lastOutBytes\":1695604387,\"outBytes\":1695604387,\"outFlow\":6658,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":262688,\"inBytes\":2547207151,\"inFlow\":256130,\"lastChangeTime\":\"0:01:21.39\",\"lastInBytes\":2547207151,\"lastOutBytes\":2658276492,\"outBytes\":2658276492,\"outFlow\":6557,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":271,\"inBytes\":1011957867,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.38\",\"lastInBytes\":1011957867,\"lastOutBytes\":3148145256,\"outBytes\":3148145256,\"outFlow\":270,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5154744,\"inBytes\":3731157095,\"inFlow\":131778,\"lastChangeTime\":\"0:01:19.44\",\"lastInBytes\":3731157095,\"lastOutBytes\":1977658258,\"outBytes\":1977658258,\"outFlow\":5022966,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:12.672686000\"}}", + "lastDiagTime": "2026-02-02 14:37:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388061384096605", + "createdBy": "0", + "createdTime": "2025-12-01 15:04:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:39", + "echoMap": {}, + "deviceId": "1019040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.165.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif165\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:09.35\",\"mTU\":\"1500\",\"macAddress\":\"c4:e2:87:2a:57:b1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"36\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.165.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"896\",\"895\",\"894\",\"895\",\"894\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"892\",\"0\",\"1221\",\"508042438\",\"1217\",\"1217\",\"0\",\"0\",\"1218\",\"208700\",\"263883\",\"19678\",\"507878\",\"10149\",\"10002\",\"4418\",\"0\",\"0\",\"5424\",\"0\",\"19935\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:38\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.73\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32520,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":561,\"opticalVoltage\":3243,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31500,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":583,\"opticalVoltage\":3238,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32939,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":618,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31559,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":599,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33330,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":576,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32220,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":618,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32310,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":575,\"opticalVoltage\":3237,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37889,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":594,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33389,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":619,\"opticalVoltage\":3266,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33840,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":561,\"opticalVoltage\":3266,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38970,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":567,\"opticalVoltage\":3247,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37799,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":559,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35069,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":563,\"opticalVoltage\":3378,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34979,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34799,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":580,\"opticalVoltage\":3317,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37290,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":559,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38220,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":558,\"opticalVoltage\":3315,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34020,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":610,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40259,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":559,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33689,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":561,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36450,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":559,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":530,\"inBytes\":3848333895,\"inFlow\":53,\"lastChangeTime\":\"83 days, 2:14:41.73\",\"lastInBytes\":3848333895,\"lastOutBytes\":1318316072,\"opticalBiasCurrent\":18143,\"opticalReceivePower\":197,\"opticalTemperature\":50,\"opticalTransmitPower\":242,\"opticalVoltage\":3364,\"outBytes\":1318316072,\"outFlow\":477,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1745869,\"inBytes\":1317566311,\"inFlow\":385560,\"lastChangeTime\":\"0:04:11.31\",\"lastInBytes\":1317566311,\"lastOutBytes\":1918083102,\"opticalBiasCurrent\":34139,\"opticalReceivePower\":612,\"opticalTemperature\":48,\"opticalTransmitPower\":630,\"opticalVoltage\":3323,\"outBytes\":1918083102,\"outFlow\":1360308,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":321296,\"inBytes\":2497865942,\"inFlow\":2837,\"lastChangeTime\":\"210 days, 23:52:32.95\",\"lastInBytes\":2497865942,\"lastOutBytes\":3294430968,\"opticalBiasCurrent\":37080,\"opticalReceivePower\":357,\"opticalTemperature\":46,\"opticalTransmitPower\":561,\"opticalVoltage\":3349,\"outBytes\":3294430968,\"outFlow\":318459,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4202962,\"inBytes\":1281151327,\"inFlow\":4070189,\"lastChangeTime\":\"439 days, 23:52:19.29\",\"lastInBytes\":1281151327,\"lastOutBytes\":1290722142,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":149,\"opticalTemperature\":44,\"opticalTransmitPower\":243,\"opticalVoltage\":3346,\"outBytes\":1290722142,\"outFlow\":132772,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3654370,\"inBytes\":2408098339,\"inFlow\":3541082,\"lastChangeTime\":\"439 days, 23:52:13.77\",\"lastInBytes\":2408098339,\"lastOutBytes\":2173412428,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":3,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3352,\"outBytes\":2173412428,\"outFlow\":113287,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2541552,\"inBytes\":2421111019,\"inFlow\":2461751,\"lastChangeTime\":\"439 days, 23:52:29.37\",\"lastInBytes\":2421111019,\"lastOutBytes\":134997628,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":261,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3332,\"outBytes\":134997628,\"outFlow\":79800,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2796101,\"inBytes\":1695585561,\"inFlow\":2711182,\"lastChangeTime\":\"439 days, 23:52:13.87\",\"lastInBytes\":1695585561,\"lastOutBytes\":2974889645,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":35,\"opticalTemperature\":42,\"opticalTransmitPower\":243,\"opticalVoltage\":3316,\"outBytes\":2974889645,\"outFlow\":84918,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4702822,\"inBytes\":3799056144,\"inFlow\":4557552,\"lastChangeTime\":\"439 days, 23:52:04.74\",\"lastInBytes\":3799056144,\"lastOutBytes\":4005836842,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":2,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3340,\"outBytes\":4005836842,\"outFlow\":145269,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5299680,\"inBytes\":1420018074,\"inFlow\":5136177,\"lastChangeTime\":\"439 days, 23:52:11.16\",\"lastInBytes\":1420018074,\"lastOutBytes\":3093436366,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":2,\"opticalTemperature\":43,\"opticalTransmitPower\":240,\"opticalVoltage\":3356,\"outBytes\":3093436366,\"outFlow\":163503,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4645410,\"inBytes\":3638511977,\"inFlow\":4504074,\"lastChangeTime\":\"439 days, 23:52:01.06\",\"lastInBytes\":3638511977,\"lastOutBytes\":3754808454,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":188,\"opticalTemperature\":45,\"opticalTransmitPower\":239,\"opticalVoltage\":3352,\"outBytes\":3754808454,\"outFlow\":141335,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3783600,\"inBytes\":2827176498,\"inFlow\":3671724,\"lastChangeTime\":\"439 days, 23:52:19.77\",\"lastInBytes\":2827176498,\"lastOutBytes\":1286749692,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":253,\"opticalTemperature\":45,\"opticalTransmitPower\":242,\"opticalVoltage\":3334,\"outBytes\":1286749692,\"outFlow\":111875,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3919575,\"inBytes\":3515502729,\"inFlow\":3792530,\"lastChangeTime\":\"439 days, 23:52:11.19\",\"lastInBytes\":3515502729,\"lastOutBytes\":1895934577,\"opticalBiasCurrent\":10154,\"opticalReceivePower\":207,\"opticalTemperature\":44,\"opticalTransmitPower\":254,\"opticalVoltage\":3340,\"outBytes\":1895934577,\"outFlow\":127044,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5603453,\"inBytes\":4124129719,\"inFlow\":5425709,\"lastChangeTime\":\"439 days, 23:52:18.65\",\"lastInBytes\":4124129719,\"lastOutBytes\":3231047681,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":197,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3342,\"outBytes\":3231047681,\"outFlow\":177743,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3805280,\"inBytes\":1450866525,\"inFlow\":3689697,\"lastChangeTime\":\"466 days, 9:18:47.45\",\"lastInBytes\":1450866525,\"lastOutBytes\":142602833,\"opticalBiasCurrent\":10083,\"opticalReceivePower\":158,\"opticalTemperature\":43,\"opticalTransmitPower\":248,\"opticalVoltage\":3340,\"outBytes\":142602833,\"outFlow\":115582,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5484703,\"inBytes\":617468454,\"inFlow\":5309401,\"lastChangeTime\":\"439 days, 23:52:18.74\",\"lastInBytes\":617468454,\"lastOutBytes\":258717681,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":2,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3342,\"outBytes\":258717681,\"outFlow\":175301,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":11157531,\"inBytes\":2938447155,\"inFlow\":7941049,\"lastChangeTime\":\"439 days, 23:51:59.42\",\"lastInBytes\":2938447155,\"lastOutBytes\":2555772764,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":210,\"opticalTemperature\":45,\"opticalTransmitPower\":242,\"opticalVoltage\":3330,\"outBytes\":2555772764,\"outFlow\":3216482,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":244,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3358,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":18143,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":246,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":242,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3378,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10324,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":251,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":237,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9701,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":264,\"opticalVoltage\":3369,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":242,\"opticalVoltage\":3370,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":320045825,\"inFlow\":0,\"lastChangeTime\":\"57 days, 12:14:30.69\",\"lastInBytes\":320045825,\"lastOutBytes\":2145159066,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":2145159066,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":118413746,\"inFlow\":0,\"lastChangeTime\":\"98 days, 22:31:47.53\",\"lastInBytes\":118413746,\"lastOutBytes\":495701495,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":243,\"opticalVoltage\":3354,\"outBytes\":495701495,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":22207,\"inBytes\":509493673,\"inFlow\":12584,\"lastChangeTime\":\"57 days, 9:24:43.47\",\"lastInBytes\":509493673,\"lastOutBytes\":1310747082,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1310747082,\"outFlow\":9622,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":38624741,\"inBytes\":3233143991,\"inFlow\":18835639,\"lastChangeTime\":\"57 days, 9:22:11.00\",\"lastInBytes\":3233143991,\"lastOutBytes\":1530500118,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1530500118,\"outFlow\":19789101,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":25136,\"inBytes\":164421516,\"inFlow\":16053,\"lastChangeTime\":\"0:03:09.98\",\"lastInBytes\":164421516,\"lastOutBytes\":2505867023,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2505867023,\"outFlow\":9083,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":300,\"inBytes\":471253983,\"inFlow\":13,\"lastChangeTime\":\"6 days, 11:25:33.44\",\"lastInBytes\":471253983,\"lastOutBytes\":2100999699,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2100999699,\"outFlow\":286,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1299560,\"inBytes\":2218527795,\"inFlow\":70944,\"lastChangeTime\":\"134 days, 1:06:28.45\",\"lastInBytes\":2218527795,\"lastOutBytes\":1498833156,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1498833156,\"outFlow\":1228615,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3042384,\"inBytes\":3425525143,\"inFlow\":2709060,\"lastChangeTime\":\"57 days, 12:55:01.06\",\"lastInBytes\":3425525143,\"lastOutBytes\":954664771,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":954664771,\"outFlow\":333323,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":22732733,\"inBytes\":3226660829,\"inFlow\":2771920,\"lastChangeTime\":\"57 days, 12:55:20.08\",\"lastInBytes\":3226660829,\"lastOutBytes\":260362053,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":260362053,\"outFlow\":19960813,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10231088,\"inBytes\":2892882091,\"inFlow\":2456789,\"lastChangeTime\":\"6 days, 10:27:41.31\",\"lastInBytes\":2892882091,\"lastOutBytes\":616494200,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":616494200,\"outFlow\":7774299,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16116662,\"inBytes\":2325830127,\"inFlow\":2597777,\"lastChangeTime\":\"138 days, 8:16:49.27\",\"lastInBytes\":2325830127,\"lastOutBytes\":2679028241,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2679028241,\"outFlow\":13518885,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":553,\"inBytes\":1742670813,\"inFlow\":187,\"lastChangeTime\":\"6 days, 10:48:00.02\",\"lastInBytes\":1742670813,\"lastOutBytes\":1576003942,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1576003942,\"outFlow\":365,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":829,\"inBytes\":2935772918,\"inFlow\":286,\"lastChangeTime\":\"6 days, 10:15:10.28\",\"lastInBytes\":2935772918,\"lastOutBytes\":4023730383,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4023730383,\"outFlow\":543,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2397980836,\"inFlow\":0,\"lastChangeTime\":\"138 days, 13:23:27.32\",\"lastInBytes\":2397980836,\"lastOutBytes\":787170750,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":787170750,\"outFlow\":0,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":295,\"inBytes\":568423635,\"inFlow\":11,\"lastChangeTime\":\"131 days, 7:01:11.63\",\"lastInBytes\":568423635,\"lastOutBytes\":1288317264,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1288317264,\"outFlow\":284,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":375,\"inBytes\":1279968441,\"inFlow\":77,\"lastChangeTime\":\"440 days, 0:52:25.55\",\"lastInBytes\":1279968441,\"lastOutBytes\":3759962991,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3759962991,\"outFlow\":297,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2750827,\"inBytes\":3969355092,\"inFlow\":78520,\"lastChangeTime\":\"44 days, 5:15:01.29\",\"lastInBytes\":3969355092,\"lastOutBytes\":218865720,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":218865720,\"outFlow\":2672306,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5208648,\"inBytes\":3265525719,\"inFlow\":59549,\"lastChangeTime\":\"440 days, 0:51:58.13\",\"lastInBytes\":3265525719,\"lastOutBytes\":190326090,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":190326090,\"outFlow\":5149098,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":557,\"inBytes\":1740921394,\"inFlow\":190,\"lastChangeTime\":\"6 days, 10:42:06.20\",\"lastInBytes\":1740921394,\"lastOutBytes\":4286793672,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4286793672,\"outFlow\":367,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":146,\"inBytes\":47502848,\"inFlow\":132,\"lastChangeTime\":\"133 days, 6:28:23.17\",\"lastInBytes\":47502848,\"lastOutBytes\":7711900,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":7711900,\"outFlow\":14,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":32,\"inBytes\":6428540,\"inFlow\":18,\"lastChangeTime\":\"133 days, 6:28:57.54\",\"lastInBytes\":6428540,\"lastOutBytes\":7678634,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":7678634,\"outFlow\":14,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:20.247547000\"}}", + "lastDiagTime": "2026-02-02 14:37:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "589889178007775479", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:39", + "echoMap": {}, + "deviceId": "1019110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.165.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.92\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"81 days, 1:17:37.27\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"12235003\",\"inErrors\":\"0\",\"inNUcastPkts\":\"26643092\",\"inOctets\":\"2301394047\",\"inUcastPkts\":\"1496051380\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3c:cc\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"613599345\",\"outQLen\":\"0\",\"outUcastPkts\":\"1486545102\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.165.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1020": { + "ndmAlarmHost": [ + { + "id": "707147639235672192", + "createdBy": null, + "createdTime": "2025-12-08 13:46:09", + "updatedBy": null, + "updatedTime": "2025-12-08 13:46:09", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.167.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585047491439763456", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060001", + "name": "[605](10)邮电弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763457", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060002", + "name": "[606](10)邮电弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763458", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060003", + "name": "[610](10)邮电内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763459", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060004", + "name": "[607](10)邮电弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763460", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060005", + "name": "[602](10)邮电编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003041005020602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763461", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060006", + "name": "[201](10)邮电厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001035004020201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763462", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060007", + "name": "[603](10)邮电编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003041005020603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763463", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060008", + "name": "[604](10)邮电编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003041005020604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763464", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060009", + "name": "[608](10)邮电弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763465", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060010", + "name": "[353](10)邮电安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001085006020353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763466", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060011", + "name": "[502](10)邮电票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001030006020502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763467", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060012", + "name": "[403](10)邮电1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001005006020403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763468", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060013", + "name": "[501](10)邮电客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001001005020501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763469", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060014", + "name": "[331](10)邮电#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763470", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "deviceId": "1020060015", + "name": "[332](10)邮电#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763471", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-20 20:55:33", + "echoMap": {}, + "deviceId": "1020060016", + "name": "[333](10)邮电#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763472", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060017", + "name": "[401](10)邮电1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001005006020401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763473", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1020060018", + "name": "[312](10)邮电2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763474", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1020060019", + "name": "[311](10)邮电2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763475", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1020060020", + "name": "[402](10)邮电1#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001005006020402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763476", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1020060021", + "name": "[202](10)邮电厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001035004020202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763477", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1020060022", + "name": "[404](10)邮电1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001005006020404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763478", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060023", + "name": "[601](10)邮电车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003042004020601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763479", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1020060024", + "name": "[330](10)邮电#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763480", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060025", + "name": "[329](10)邮电#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763481", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060026", + "name": "[328](10)邮电#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763482", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1020060027", + "name": "[611](10)邮电内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763483", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060028", + "name": "[612](10)邮电内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763484", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1020060029", + "name": "[616](10)邮电环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003053005020616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763485", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060030", + "name": "[347](10)邮电B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001040006020347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763486", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060031", + "name": "[317](10)邮电2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763487", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060032", + "name": "[319](10)邮电2#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763488", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060033", + "name": "[314](10)邮电2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763489", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060034", + "name": "[313](10)邮电2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763490", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060035", + "name": "[618](10)邮电消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763491", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060036", + "name": "[210](10)邮电2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056004020210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763492", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060037", + "name": "[315](10)邮电2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763493", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1020060038", + "name": "[316](10)邮电2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763494", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:55", + "echoMap": {}, + "deviceId": "1020060039", + "name": "[318](10)邮电2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001056006020318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763495", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2026-01-17 10:07:55", + "echoMap": {}, + "deviceId": "1020060040", + "name": "[351](10)邮电2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001036005020351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763496", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060041", + "name": "[337](10)邮电#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763497", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060042", + "name": "[338](10)邮电#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763498", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060043", + "name": "[345](10)邮电B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001040006020345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763499", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1020060044", + "name": "[323](10)邮电4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763500", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060045", + "name": "[339](10)邮电#4厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763501", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060046", + "name": "[346](10)邮电公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001040006020346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763502", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060047", + "name": "[322](10)邮电4#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763503", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1020060048", + "name": "[503](10)邮电票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001030006020503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763504", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1020060049", + "name": "[203](10)邮电厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001035004020203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763505", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1020060050", + "name": "[407](10)邮电2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001006006020407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763506", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1020060051", + "name": "[619](10)邮电变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763507", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1020060052", + "name": "[620](10)邮电变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763508", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1020060053", + "name": "[621](10)邮电变电所出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763509", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1020060054", + "name": "[504](10)邮电票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001025006020504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763510", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1020060055", + "name": "[405](10)邮电2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001006006020405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763511", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060056", + "name": "[408](10)邮电2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001006006020408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763512", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060057", + "name": "[204](10)邮电厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001035004020204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763513", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060058", + "name": "[406](10)邮电2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001006006020406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763514", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1020060059", + "name": "[302](10)邮电1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763515", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060060", + "name": "[354](10)邮电安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001085006020354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763516", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060061", + "name": "[336](10)邮电#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763517", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060062", + "name": "[350](10)邮电1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001036005020350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763518", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1020060063", + "name": "[344](10)邮电B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001040006020344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763519", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060064", + "name": "[334](10)邮电#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763520", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1020060065", + "name": "[335](10)邮电#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001045006020335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763521", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060066", + "name": "[327](10)邮电4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763522", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060067", + "name": "[211](10)邮电4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058004020211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763523", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060068", + "name": "[324](10)邮电4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763524", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060069", + "name": "[325](10)邮电4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763525", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060070", + "name": "[320](10)邮电4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763526", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060071", + "name": "[321](10)邮电4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763527", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060072", + "name": "[326](10)邮电4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001058006020326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763528", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060073", + "name": "[209](10)邮电1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055004020209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763529", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060074", + "name": "[310](10)邮电1#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055005020310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763530", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060075", + "name": "[307](10)邮电1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763531", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060076", + "name": "[613](10)邮电内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001006020613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763532", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060077", + "name": "[305](10)邮电1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763533", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1020060078", + "name": "[304](10)邮电1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763534", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060079", + "name": "[617](10)邮电环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003053005020617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763535", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060080", + "name": "[301](10)邮电1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763536", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060081", + "name": "[308](10)邮电1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763537", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060082", + "name": "[352](10)邮电3#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001036005020352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763538", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1020060083", + "name": "[306](10)邮电1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763539", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060084", + "name": "[303](10)邮电1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763540", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060085", + "name": "[309](10)邮电1#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062001055006020309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763541", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060086", + "name": "[615](10)邮电内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003021006020615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763542", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1020060087", + "name": "[341](10)邮电#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002017006020341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763543", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060088", + "name": "[207](10)邮电下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002001004020207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763544", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060089", + "name": "[609](10)邮电屏蔽门设备室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763545", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060090", + "name": "[108](10)邮电下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002012006020108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763546", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060091", + "name": "[702](10)邮电下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062004013006020702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763547", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060092", + "name": "[107](10)邮电下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002012006020107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763548", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060093", + "name": "[110](10)邮电下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002012006020110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763549", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060094", + "name": "[349](10)邮电B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002002006020349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763550", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060095", + "name": "[343](10)邮电#4台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002017006020343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763551", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060096", + "name": "[208](10)邮电下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002001004020208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763552", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060097", + "name": "[109](10)邮电下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002012006020109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763553", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060098", + "name": "[112](10)邮电下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002012006020112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763554", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060099", + "name": "[111](10)邮电下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002012006020111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763555", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060100", + "name": "[103](10)邮电上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002007006020103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763556", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060101", + "name": "[106](10)邮电上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002007006020106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763557", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060102", + "name": "[105](10)邮电上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002007006020105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763558", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060103", + "name": "[701](10)邮电上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062004013006020701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763559", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060104", + "name": "[206](10)邮电上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002001004020206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763560", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060105", + "name": "[340](10)邮电#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.167.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002017006020340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763561", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1020060106", + "name": "[614](10)邮电内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003021006020614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763562", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1020060107", + "name": "[101](10)邮电上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002007006020101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763563", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060108", + "name": "[102](10)邮电上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002007006020102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763564", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060109", + "name": "[104](10)邮电上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002007006020104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763565", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060110", + "name": "[205](10)邮电上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002001004020205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763566", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1020060111", + "name": "[342](10)邮电#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002017006020342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763567", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060112", + "name": "[348](10)邮电B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062002002006020348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763568", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060113", + "name": "[622](10)邮电内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003001005020622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763569", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-12-26 11:38:26", + "echoMap": {}, + "deviceId": "1020060114", + "name": "[623](10)邮电通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763570", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060115", + "name": "[624](10)邮电通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003048005020624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763571", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060116", + "name": "[625](10)邮电气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003067005020625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763572", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060117", + "name": "[626](10)邮电消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003068005020626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763573", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1020060118", + "name": "[627](10)邮电气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062003067005020627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409503439601957", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060119", + "name": "[628](10)邮电海伦-邮电上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062004012004020628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693409503439601958", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1020060120", + "name": "[629](10)邮电海伦-邮电下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.168.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062004012004020629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585047491439763575", + "createdBy": "0", + "createdTime": "2025-02-28 11:15:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "deviceId": "1020070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.167.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062000000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112158\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"741958258\",\"inUcastPkts\":\"979970110\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:0a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2942621262\",\"outQLen\":\"0\",\"outUcastPkts\":\"366668634\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.167.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:55\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ119B5\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:36:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585047491439763605", + "createdBy": "2", + "createdTime": "2025-02-28 11:16:53", + "updatedBy": null, + "updatedTime": "2025-12-23 10:17:58", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.167.51", + "manageUrl": "http:\\\\10.18.167.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585047491439763606", + "createdBy": "2", + "createdTime": "2025-02-28 11:17:10", + "updatedBy": null, + "updatedTime": "2025-12-23 10:17:53", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.167.52", + "manageUrl": "http:\\\\10.18.167.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585047491439763577", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "deviceId": "1020090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.167.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.97\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"3 days, 22:58:04.17\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"8613874\",\"inErrors\":\"0\",\"inNUcastPkts\":\"23089896\",\"inOctets\":\"3357459219\",\"inUcastPkts\":\"1265684798\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:fb:f7:80\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"650456011\",\"outQLen\":\"0\",\"outUcastPkts\":\"248842339\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.167.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585047491439763578", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 11:16:00", + "echoMap": {}, + "deviceId": "1020050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.167.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062000000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.167.22;10.18.167.23" + }, + { + "id": "585047491439763579", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:56", + "echoMap": {}, + "deviceId": "1020050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.167.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062000000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18634876\",\"inErrors\":\"0\",\"inNUcastPkts\":\"34617614\",\"inOctets\":\"4138959581\",\"inUcastPkts\":\"1450830270\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8b:4f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3121380\",\"outQLen\":\"0\",\"outUcastPkts\":\"2577574921\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4320\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4360\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.167.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:55\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":877923517,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16722\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"53\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:36:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.167.22" + }, + { + "id": "585047491439763580", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:57", + "echoMap": {}, + "deviceId": "1020050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.167.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062000000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18632556\",\"inErrors\":\"3\",\"inNUcastPkts\":\"43924854\",\"inOctets\":\"3000809117\",\"inUcastPkts\":\"1173693531\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8a:d3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3863517287\",\"outQLen\":\"0\",\"outUcastPkts\":\"2911548250\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4350\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4350\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.167.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:56\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":877923517,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16723\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"56\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:36:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.167.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706388477996299254", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "deviceId": "1020030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3026639\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166492443\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"53 days, 2:05:05.33\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3026644\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2b:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.911001},{\"current\":0.001,\"status\":1,\"voltage\":26.911001},{\"current\":0.609,\"status\":1,\"voltage\":26.911001},{\"current\":0.001,\"status\":1,\"voltage\":26.911001},{\"current\":0.001,\"status\":1,\"voltage\":26.911001},{\"current\":0.0,\"status\":1,\"voltage\":26.911001},{\"current\":0.0,\"status\":1,\"voltage\":26.911001},{\"current\":0.001,\"status\":1,\"voltage\":26.911001},{\"current\":0.0,\"status\":1,\"voltage\":26.911001},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208305415\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299255", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "deviceId": "1020030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3026638\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"166493380\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:10:02.70\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3026643\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2c:75\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.569,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":25.693},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208309030\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299256", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:56", + "echoMap": {}, + "deviceId": "1020030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6763195\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"376021795\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6763200\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:f7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27100003,\"status\":1,\"voltage\":26.252},{\"current\":0.25300002,\"status\":1,\"voltage\":26.252},{\"current\":0.282,\"status\":1,\"voltage\":26.252},{\"current\":0.24900001,\"status\":1,\"voltage\":26.252},{\"current\":0.24900001,\"status\":1,\"voltage\":26.252},{\"current\":0.53400004,\"status\":1,\"voltage\":26.252},{\"current\":0.001,\"status\":1,\"voltage\":26.252},{\"current\":0.001,\"status\":1,\"voltage\":26.252},{\"current\":0.001,\"status\":1,\"voltage\":26.252},{\"current\":0.001,\"status\":1,\"voltage\":26.367},{\"current\":0.003,\"status\":1,\"voltage\":26.367},{\"current\":0.001,\"status\":1,\"voltage\":26.367},{\"current\":0.001,\"status\":1,\"voltage\":26.367},{\"current\":0.001,\"status\":1,\"voltage\":26.367},{\"current\":0.001,\"status\":1,\"voltage\":26.367},{\"current\":0.001,\"status\":1,\"voltage\":26.367}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301974\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299257", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:56", + "echoMap": {}, + "deviceId": "1020030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6770667\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"376441814\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6770672\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:bf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.254,\"status\":1,\"voltage\":26.897001},{\"current\":0.28300002,\"status\":1,\"voltage\":26.897001},{\"current\":0.264,\"status\":1,\"voltage\":26.897001},{\"current\":0.21300001,\"status\":1,\"voltage\":26.897001},{\"current\":0.564,\"status\":1,\"voltage\":26.897001},{\"current\":0.25,\"status\":1,\"voltage\":26.897001},{\"current\":0.25800002,\"status\":1,\"voltage\":26.897001},{\"current\":0.001,\"status\":1,\"voltage\":26.897001},{\"current\":0.001,\"status\":1,\"voltage\":26.897001},{\"current\":0.001,\"status\":1,\"voltage\":26.355001},{\"current\":0.002,\"status\":1,\"voltage\":26.355001},{\"current\":0.001,\"status\":1,\"voltage\":26.355001},{\"current\":0.001,\"status\":1,\"voltage\":26.355001},{\"current\":0.001,\"status\":1,\"voltage\":26.355001},{\"current\":0.0,\"status\":1,\"voltage\":26.355001},{\"current\":0.0,\"status\":1,\"voltage\":26.355001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304031\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299258", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:57", + "echoMap": {}, + "deviceId": "1020030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6783848\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"377183111\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6783853\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:cc\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.284,\"status\":1,\"voltage\":27.126001},{\"current\":0.25500003,\"status\":1,\"voltage\":27.126001},{\"current\":0.53800005,\"status\":1,\"voltage\":27.126001},{\"current\":0.277,\"status\":1,\"voltage\":27.126001},{\"current\":0.257,\"status\":1,\"voltage\":27.126001},{\"current\":0.24400002,\"status\":1,\"voltage\":27.126001},{\"current\":0.0,\"status\":1,\"voltage\":27.126001},{\"current\":0.0,\"status\":1,\"voltage\":27.126001},{\"current\":0.0,\"status\":1,\"voltage\":27.126001},{\"current\":0.0,\"status\":1,\"voltage\":26.35},{\"current\":0.003,\"status\":1,\"voltage\":26.35},{\"current\":0.001,\"status\":1,\"voltage\":26.35},{\"current\":0.001,\"status\":1,\"voltage\":26.35},{\"current\":0.001,\"status\":1,\"voltage\":26.35},{\"current\":0.001,\"status\":1,\"voltage\":26.35},{\"current\":0.001,\"status\":1,\"voltage\":26.35}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304556\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299259", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:57", + "echoMap": {}, + "deviceId": "1020030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6806943\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"378477742\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6806948\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:13\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25,\"status\":1,\"voltage\":26.605001},{\"current\":0.261,\"status\":1,\"voltage\":26.605001},{\"current\":0.555,\"status\":1,\"voltage\":26.605001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.605001},{\"current\":0.24000001,\"status\":1,\"voltage\":26.605001},{\"current\":0.21400002,\"status\":1,\"voltage\":26.605001},{\"current\":0.28500003,\"status\":1,\"voltage\":26.605001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.605001},{\"current\":0.001,\"status\":1,\"voltage\":26.605001},{\"current\":0.001,\"status\":1,\"voltage\":27.909},{\"current\":0.002,\"status\":1,\"voltage\":27.909},{\"current\":0.001,\"status\":1,\"voltage\":27.909},{\"current\":0.001,\"status\":1,\"voltage\":27.909},{\"current\":0.001,\"status\":1,\"voltage\":27.909},{\"current\":0.0,\"status\":1,\"voltage\":27.909},{\"current\":0.0,\"status\":1,\"voltage\":27.909}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302002\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299260", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:58", + "echoMap": {}, + "deviceId": "1020030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8577955\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"477789021\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8577960\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:97\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.505,\"status\":1,\"voltage\":26.363},{\"current\":0.223,\"status\":1,\"voltage\":26.363},{\"current\":0.23700002,\"status\":1,\"voltage\":26.363},{\"current\":0.261,\"status\":1,\"voltage\":26.363},{\"current\":0.22700001,\"status\":1,\"voltage\":26.363},{\"current\":0.223,\"status\":1,\"voltage\":26.363},{\"current\":0.22100002,\"status\":1,\"voltage\":26.363},{\"current\":0.22200002,\"status\":1,\"voltage\":26.363},{\"current\":0.268,\"status\":1,\"voltage\":26.363},{\"current\":0.407,\"status\":1,\"voltage\":26.371002},{\"current\":0.002,\"status\":1,\"voltage\":26.371002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.371002},{\"current\":0.317,\"status\":1,\"voltage\":26.371002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302134\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299261", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:58", + "echoMap": {}, + "deviceId": "1020030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6838489\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380246035\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6838494\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:98\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":27.218},{\"current\":0.517,\"status\":1,\"voltage\":27.218},{\"current\":0.238,\"status\":1,\"voltage\":27.218},{\"current\":0.25,\"status\":1,\"voltage\":27.218},{\"current\":0.312,\"status\":1,\"voltage\":27.218},{\"current\":0.216,\"status\":1,\"voltage\":27.218},{\"current\":0.312,\"status\":1,\"voltage\":27.218},{\"current\":0.001,\"status\":1,\"voltage\":27.218},{\"current\":0.001,\"status\":1,\"voltage\":27.218},{\"current\":0.001,\"status\":1,\"voltage\":27.260002},{\"current\":0.003,\"status\":1,\"voltage\":27.260002},{\"current\":0.001,\"status\":1,\"voltage\":27.260002},{\"current\":0.001,\"status\":1,\"voltage\":27.260002},{\"current\":0.001,\"status\":1,\"voltage\":27.260002},{\"current\":0.001,\"status\":1,\"voltage\":27.260002},{\"current\":0.001,\"status\":1,\"voltage\":27.260002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208302135\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299262", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:59", + "echoMap": {}, + "deviceId": "1020030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6839515\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380302906\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6839520\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:9b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.29000002,\"status\":1,\"voltage\":26.607},{\"current\":0.33200002,\"status\":1,\"voltage\":26.607},{\"current\":0.33100003,\"status\":1,\"voltage\":26.607},{\"current\":0.532,\"status\":1,\"voltage\":26.607},{\"current\":0.32700002,\"status\":1,\"voltage\":26.607},{\"current\":0.29900002,\"status\":1,\"voltage\":26.607},{\"current\":0.259,\"status\":1,\"voltage\":26.607},{\"current\":0.256,\"status\":1,\"voltage\":26.607},{\"current\":0.41900003,\"status\":1,\"voltage\":26.607},{\"current\":0.252,\"status\":1,\"voltage\":26.680002},{\"current\":0.003,\"status\":1,\"voltage\":26.680002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.680002},{\"current\":0.268,\"status\":1,\"voltage\":26.680002},{\"current\":0.001,\"status\":1,\"voltage\":26.680002},{\"current\":0.001,\"status\":1,\"voltage\":26.680002},{\"current\":0.001,\"status\":1,\"voltage\":26.680002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302138\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388477996299263", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:59", + "echoMap": {}, + "deviceId": "1020030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6840332\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380351082\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6840337\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:ce\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.40800002,\"status\":1,\"voltage\":26.549002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.549002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.549002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.549002},{\"current\":0.26700002,\"status\":1,\"voltage\":26.549002},{\"current\":0.246,\"status\":1,\"voltage\":26.549002},{\"current\":0.28100002,\"status\":1,\"voltage\":26.549002},{\"current\":0.22100002,\"status\":1,\"voltage\":26.549002},{\"current\":0.28300002,\"status\":1,\"voltage\":26.549002},{\"current\":0.56200004,\"status\":1,\"voltage\":26.506},{\"current\":0.003,\"status\":1,\"voltage\":26.506},{\"current\":0.35500002,\"status\":1,\"voltage\":26.506},{\"current\":0.25,\"status\":1,\"voltage\":26.506},{\"current\":0.25300002,\"status\":1,\"voltage\":26.506},{\"current\":0.22500001,\"status\":1,\"voltage\":26.506},{\"current\":0.21400002,\"status\":1,\"voltage\":26.506}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304558\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388482291265536", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:59", + "echoMap": {}, + "deviceId": "1020030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6840305\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380348737\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6840310\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:6b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.286,\"status\":1,\"voltage\":26.993002},{\"current\":0.254,\"status\":1,\"voltage\":26.993002},{\"current\":0.22600001,\"status\":1,\"voltage\":26.993002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.993002},{\"current\":0.25,\"status\":1,\"voltage\":26.993002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.993002},{\"current\":0.286,\"status\":1,\"voltage\":26.993002},{\"current\":0.286,\"status\":1,\"voltage\":26.993002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.993002},{\"current\":0.48700002,\"status\":1,\"voltage\":26.364},{\"current\":0.002,\"status\":1,\"voltage\":26.364},{\"current\":0.23,\"status\":1,\"voltage\":26.364},{\"current\":0.24100001,\"status\":1,\"voltage\":26.364},{\"current\":0.23300001,\"status\":1,\"voltage\":26.364},{\"current\":0.22100002,\"status\":1,\"voltage\":26.364},{\"current\":0.216,\"status\":1,\"voltage\":26.364}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302090\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388482291265537", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:00", + "echoMap": {}, + "deviceId": "1020030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16599569\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"927608974\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"58 days, 20:07:23.91\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16599574\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:2b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":26.338001},{\"current\":0.254,\"status\":1,\"voltage\":26.338001},{\"current\":0.26200002,\"status\":1,\"voltage\":26.338001},{\"current\":0.33100003,\"status\":1,\"voltage\":26.338001},{\"current\":0.30800003,\"status\":1,\"voltage\":26.338001},{\"current\":0.32000002,\"status\":1,\"voltage\":26.338001},{\"current\":0.305,\"status\":1,\"voltage\":26.338001},{\"current\":0.535,\"status\":1,\"voltage\":26.338001},{\"current\":0.32000002,\"status\":1,\"voltage\":26.338001},{\"current\":0.518,\"status\":1,\"voltage\":26.422},{\"current\":0.003,\"status\":1,\"voltage\":26.422},{\"current\":0.25,\"status\":1,\"voltage\":26.422},{\"current\":0.24100001,\"status\":1,\"voltage\":26.422},{\"current\":0.24900001,\"status\":1,\"voltage\":26.422},{\"current\":0.21800001,\"status\":1,\"voltage\":26.422},{\"current\":0.216,\"status\":1,\"voltage\":26.422}],\"fanSpeeds\":[1230,1230],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302026\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388482291265538", + "createdBy": "0", + "createdTime": "2025-12-01 15:41:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:00", + "echoMap": {}, + "deviceId": "1020030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.168.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16600472\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"928857224\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"59 days, 12:55:56.05\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16600477\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:07:98\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22600001,\"status\":1,\"voltage\":26.204},{\"current\":0.22600001,\"status\":1,\"voltage\":26.204},{\"current\":0.273,\"status\":1,\"voltage\":26.204},{\"current\":0.22700001,\"status\":1,\"voltage\":26.204},{\"current\":0.22500001,\"status\":1,\"voltage\":26.204},{\"current\":0.52500004,\"status\":1,\"voltage\":26.204},{\"current\":0.22100002,\"status\":1,\"voltage\":26.204},{\"current\":0.21800001,\"status\":1,\"voltage\":26.204},{\"current\":0.231,\"status\":1,\"voltage\":26.204},{\"current\":0.25800002,\"status\":1,\"voltage\":26.244001},{\"current\":0.003,\"status\":1,\"voltage\":26.244001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.244001},{\"current\":0.335,\"status\":1,\"voltage\":26.244001},{\"current\":0.256,\"status\":1,\"voltage\":26.244001},{\"current\":0.21000001,\"status\":1,\"voltage\":26.244001},{\"current\":0.001,\"status\":1,\"voltage\":26.244001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301944\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706388473701331406", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1020040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif168\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"66 days, 12:42:35.78\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:2a:f8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"78\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:28\",\"info\":{\"portInfoList\":[{\"flow\":405405,\"inBytes\":1558393571,\"inFlow\":396222,\"lastChangeTime\":\"57 days, 21:32:35.86\",\"lastInBytes\":1558393571,\"lastOutBytes\":2921351815,\"outBytes\":2921351815,\"outFlow\":9182,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"57 days, 21:29:47.32\",\"lastInBytes\":0,\"lastOutBytes\":354292070,\"outBytes\":354292070,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1122632,\"inFlow\":0,\"lastChangeTime\":\"57 days, 21:34:13.73\",\"lastInBytes\":1122632,\"lastOutBytes\":10726188,\"outBytes\":10726188,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":101,\"inBytes\":300698358,\"inFlow\":1,\"lastChangeTime\":\"57 days, 21:32:39.16\",\"lastInBytes\":300698358,\"lastOutBytes\":1167285778,\"outBytes\":1167285778,\"outFlow\":99,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":411418,\"inBytes\":244667600,\"inFlow\":10303,\"lastChangeTime\":\"66 days, 12:35:40.43\",\"lastInBytes\":244667600,\"lastOutBytes\":546078500,\"outBytes\":546078500,\"outFlow\":401115,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:50.304841000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331407", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1020040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif168\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"8 days, 15:01:51.51\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:2b:1e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:29\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407747,\"inBytes\":3723372919,\"inFlow\":398610,\"lastChangeTime\":\"0:47:01.40\",\"lastInBytes\":3723372919,\"lastOutBytes\":3350161231,\"outBytes\":3350161231,\"outFlow\":9137,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":22718,\"inFlow\":0,\"lastChangeTime\":\"0:10:46.75\",\"lastInBytes\":22718,\"lastOutBytes\":4248,\"outBytes\":4248,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":97,\"inBytes\":300702040,\"inFlow\":1,\"lastChangeTime\":\"0:46:45.58\",\"lastInBytes\":300702040,\"lastOutBytes\":1162358410,\"outBytes\":1162358410,\"outFlow\":96,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409567,\"inBytes\":4247015060,\"inFlow\":10225,\"lastChangeTime\":\"0:41:47.89\",\"lastInBytes\":4247015060,\"lastOutBytes\":2712099719,\"outBytes\":2712099719,\"outFlow\":399342,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:50.539773000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331408", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1020040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41001\",\"inUnknownProtos\":\"2820722256\",\"index\":\"635\",\"lastChange\":\"0:01:11.10\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:89:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1545228742\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":387550,\"inBytes\":2243906864,\"inFlow\":378359,\"lastChangeTime\":\"0:01:13.38\",\"lastInBytes\":2243906864,\"lastOutBytes\":774928999,\"outBytes\":774928999,\"outFlow\":9190,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":30974529,\"inBytes\":2846188389,\"inFlow\":411077,\"lastChangeTime\":\"54 days, 15:14:26.52\",\"lastInBytes\":2846188389,\"lastOutBytes\":3850995021,\"outBytes\":3850995021,\"outFlow\":30563452,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":916661,\"inBytes\":1262704950,\"inFlow\":894167,\"lastChangeTime\":\"54 days, 15:14:22.65\",\"lastInBytes\":1262704950,\"lastOutBytes\":3602124428,\"outBytes\":3602124428,\"outFlow\":22494,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":911300,\"inBytes\":1943443423,\"inFlow\":888778,\"lastChangeTime\":\"54 days, 15:14:35.36\",\"lastInBytes\":1943443423,\"lastOutBytes\":74704646,\"outBytes\":74704646,\"outFlow\":22521,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":420210,\"inBytes\":2066269341,\"inFlow\":410017,\"lastChangeTime\":\"0:01:12.93\",\"lastInBytes\":2066269341,\"lastOutBytes\":3527815057,\"outBytes\":3527815057,\"outFlow\":10192,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":420719,\"inBytes\":1317467869,\"inFlow\":410609,\"lastChangeTime\":\"0:01:12.92\",\"lastInBytes\":1317467869,\"lastOutBytes\":2820722256,\"outBytes\":2820722256,\"outFlow\":10109,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":343,\"inBytes\":696991902,\"inFlow\":135,\"lastChangeTime\":\"0:01:12.93\",\"lastInBytes\":696991902,\"lastOutBytes\":1661885351,\"outBytes\":1661885351,\"outFlow\":208,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3524579,\"inBytes\":3050145032,\"inFlow\":91066,\"lastChangeTime\":\"0:01:11.10\",\"lastInBytes\":3050145032,\"lastOutBytes\":3202899631,\"outBytes\":3202899631,\"outFlow\":3433513,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.230577000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331409", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41033\",\"inUnknownProtos\":\"3403344999\",\"index\":\"634\",\"lastChange\":\"0:01:21.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:4c:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1584158931\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"7890251\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":913839,\"inBytes\":253115056,\"inFlow\":890990,\"lastChangeTime\":\"54 days, 15:24:51.71\",\"lastInBytes\":253115056,\"lastOutBytes\":3850646670,\"outBytes\":3850646670,\"outFlow\":22849,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":912723,\"inBytes\":837028814,\"inFlow\":890241,\"lastChangeTime\":\"54 days, 15:24:50.67\",\"lastInBytes\":837028814,\"lastOutBytes\":3526027921,\"outBytes\":3526027921,\"outFlow\":22481,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":911599,\"inBytes\":169765782,\"inFlow\":888568,\"lastChangeTime\":\"54 days, 15:24:57.07\",\"lastInBytes\":169765782,\"lastOutBytes\":3370941231,\"outBytes\":3370941231,\"outFlow\":23030,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":422003,\"inBytes\":1092161290,\"inFlow\":411553,\"lastChangeTime\":\"0:01:20.93\",\"lastInBytes\":1092161290,\"lastOutBytes\":1219750482,\"outBytes\":1219750482,\"outFlow\":10449,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":420374,\"inBytes\":2302766026,\"inFlow\":410095,\"lastChangeTime\":\"0:01:21.20\",\"lastInBytes\":2302766026,\"lastOutBytes\":3403344999,\"outBytes\":3403344999,\"outFlow\":10278,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":419469,\"inBytes\":1273563473,\"inFlow\":409095,\"lastChangeTime\":\"0:01:21.29\",\"lastInBytes\":1273563473,\"lastOutBytes\":1434991279,\"outBytes\":1434991279,\"outFlow\":10374,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419980,\"inBytes\":564540433,\"inFlow\":409734,\"lastChangeTime\":\"0:01:21.44\",\"lastInBytes\":564540433,\"lastOutBytes\":243101285,\"outBytes\":243101285,\"outFlow\":10246,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":344,\"inBytes\":697802245,\"inFlow\":135,\"lastChangeTime\":\"0:01:22.14\",\"lastInBytes\":697802245,\"lastOutBytes\":1669376875,\"outBytes\":1669376875,\"outFlow\":209,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4444889,\"inBytes\":2335517247,\"inFlow\":114983,\"lastChangeTime\":\"0:01:21.00\",\"lastInBytes\":2335517247,\"lastOutBytes\":2790103365,\"outBytes\":2790103365,\"outFlow\":4329905,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.410920000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331410", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"40884\",\"inUnknownProtos\":\"3752312234\",\"index\":\"634\",\"lastChange\":\"0:01:24.40\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:8c:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3448827287\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":390085,\"inBytes\":246076047,\"inFlow\":380459,\"lastChangeTime\":\"0:01:23.99\",\"lastInBytes\":246076047,\"lastOutBytes\":2064863400,\"outBytes\":2064863400,\"outFlow\":9625,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":387726,\"inBytes\":1334332575,\"inFlow\":378141,\"lastChangeTime\":\"0:01:24.11\",\"lastInBytes\":1334332575,\"lastOutBytes\":1100864424,\"outBytes\":1100864424,\"outFlow\":9585,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":388507,\"inBytes\":3158187569,\"inFlow\":379014,\"lastChangeTime\":\"0:01:24.19\",\"lastInBytes\":3158187569,\"lastOutBytes\":4245377683,\"outBytes\":4245377683,\"outFlow\":9492,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":842359,\"inBytes\":128739944,\"inFlow\":821045,\"lastChangeTime\":\"54 days, 15:03:20.72\",\"lastInBytes\":128739944,\"lastOutBytes\":3432284140,\"outBytes\":3432284140,\"outFlow\":21314,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":847561,\"inBytes\":2077771943,\"inFlow\":826493,\"lastChangeTime\":\"54 days, 15:03:18.40\",\"lastInBytes\":2077771943,\"lastOutBytes\":3752096579,\"outBytes\":3752096579,\"outFlow\":21068,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":389082,\"inBytes\":1984168797,\"inFlow\":379131,\"lastChangeTime\":\"54 days, 15:03:23.62\",\"lastInBytes\":1984168797,\"lastOutBytes\":2673714043,\"outBytes\":2673714043,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":699102948,\"inFlow\":135,\"lastChangeTime\":\"0:01:25.48\",\"lastInBytes\":699102948,\"lastOutBytes\":1669478848,\"outBytes\":1669478848,\"outFlow\":213,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3259189,\"inBytes\":1154710569,\"inFlow\":84778,\"lastChangeTime\":\"0:01:24.40\",\"lastInBytes\":1154710569,\"lastOutBytes\":309525539,\"outBytes\":309525539,\"outFlow\":3174410,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.270639000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331411", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"40888\",\"inUnknownProtos\":\"2694799256\",\"index\":\"634\",\"lastChange\":\"0:01:42.06\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:b6:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1625277025\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31144665\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":388611,\"inBytes\":1381269496,\"inFlow\":378140,\"lastChangeTime\":\"0:01:41.70\",\"lastInBytes\":1381269496,\"lastOutBytes\":1972342098,\"outBytes\":1972342098,\"outFlow\":10471,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":387716,\"inBytes\":2025093008,\"inFlow\":378155,\"lastChangeTime\":\"0:01:41.93\",\"lastInBytes\":2025093008,\"lastOutBytes\":1142790427,\"outBytes\":1142790427,\"outFlow\":9561,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":387517,\"inBytes\":113115145,\"inFlow\":378033,\"lastChangeTime\":\"0:01:41.77\",\"lastInBytes\":113115145,\"lastOutBytes\":1240524088,\"outBytes\":1240524088,\"outFlow\":9484,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":583229,\"inBytes\":1267467419,\"inFlow\":568186,\"lastChangeTime\":\"0:01:41.85\",\"lastInBytes\":1267467419,\"lastOutBytes\":2542692939,\"outBytes\":2542692939,\"outFlow\":15043,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":387874,\"inBytes\":3960309383,\"inFlow\":377966,\"lastChangeTime\":\"54 days, 14:44:00.06\",\"lastInBytes\":3960309383,\"lastOutBytes\":2694700288,\"outBytes\":2694700288,\"outFlow\":9908,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":545579,\"inBytes\":3842506761,\"inFlow\":531883,\"lastChangeTime\":\"0:01:42.32\",\"lastInBytes\":3842506761,\"lastOutBytes\":1494130947,\"outBytes\":1494130947,\"outFlow\":13695,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":839075,\"inBytes\":2883776163,\"inFlow\":818087,\"lastChangeTime\":\"54 days, 14:43:56.26\",\"lastInBytes\":2883776163,\"lastOutBytes\":2916447772,\"outBytes\":2916447772,\"outFlow\":20988,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":840849,\"inBytes\":1177769153,\"inFlow\":819506,\"lastChangeTime\":\"54 days, 14:44:04.15\",\"lastInBytes\":1177769153,\"lastOutBytes\":514101141,\"outBytes\":514101141,\"outFlow\":21342,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":701459381,\"inFlow\":135,\"lastChangeTime\":\"0:01:43.10\",\"lastInBytes\":701459381,\"lastOutBytes\":1669284429,\"outBytes\":1669284429,\"outFlow\":213,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4378483,\"inBytes\":2495479746,\"inFlow\":114357,\"lastChangeTime\":\"0:01:42.06\",\"lastInBytes\":2495479746,\"lastOutBytes\":2896939886,\"outBytes\":2896939886,\"outFlow\":4264125,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.281269000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331412", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"52581\",\"inUnknownProtos\":\"833905004\",\"index\":\"634\",\"lastChange\":\"0:01:24.58\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:4b:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4066349079\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"39317117\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":387190,\"inBytes\":1772973262,\"inFlow\":377727,\"lastChangeTime\":\"23 days, 17:47:24.61\",\"lastInBytes\":1772973262,\"lastOutBytes\":2583878396,\"outBytes\":2583878396,\"outFlow\":9463,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":258938,\"inBytes\":1936936529,\"inFlow\":252213,\"lastChangeTime\":\"0:01:24.32\",\"lastInBytes\":1936936529,\"lastOutBytes\":1646737232,\"outBytes\":1646737232,\"outFlow\":6724,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":387932,\"inBytes\":2794681272,\"inFlow\":378384,\"lastChangeTime\":\"0:01:24.78\",\"lastInBytes\":2794681272,\"lastOutBytes\":3083533130,\"outBytes\":3083533130,\"outFlow\":9548,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":389160,\"inBytes\":669039459,\"inFlow\":379442,\"lastChangeTime\":\"91 days, 22:17:35.23\",\"lastInBytes\":669039459,\"lastOutBytes\":617465120,\"outBytes\":617465120,\"outFlow\":9717,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":842517,\"inBytes\":3896605462,\"inFlow\":821544,\"lastChangeTime\":\"91 days, 22:17:48.49\",\"lastInBytes\":3896605462,\"lastOutBytes\":833689299,\"outBytes\":833689299,\"outFlow\":20972,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":681674,\"inBytes\":1341420244,\"inFlow\":664510,\"lastChangeTime\":\"91 days, 22:17:40.85\",\"lastInBytes\":1341420244,\"lastOutBytes\":659654598,\"outBytes\":659654598,\"outFlow\":17163,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":259141,\"inBytes\":1259578426,\"inFlow\":252684,\"lastChangeTime\":\"0:01:24.98\",\"lastInBytes\":1259578426,\"lastOutBytes\":3430235393,\"outBytes\":3430235393,\"outFlow\":6456,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":837870,\"inBytes\":1106659912,\"inFlow\":817072,\"lastChangeTime\":\"91 days, 22:17:38.40\",\"lastInBytes\":1106659912,\"lastOutBytes\":3822969426,\"outBytes\":3822969426,\"outFlow\":20798,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":420980,\"inBytes\":1493917790,\"inFlow\":410467,\"lastChangeTime\":\"91 days, 22:17:40.76\",\"lastInBytes\":1493917790,\"lastOutBytes\":44495284,\"outBytes\":44495284,\"outFlow\":10512,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":280041,\"inBytes\":814040559,\"inFlow\":273030,\"lastChangeTime\":\"96 days, 9:03:02.62\",\"lastInBytes\":814040559,\"lastOutBytes\":2374882572,\"outBytes\":2374882572,\"outFlow\":7011,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":421132,\"inBytes\":4031717821,\"inFlow\":410658,\"lastChangeTime\":\"91 days, 22:17:47.46\",\"lastInBytes\":4031717821,\"lastOutBytes\":2145261553,\"outBytes\":2145261553,\"outFlow\":10474,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":446576,\"inBytes\":1258441834,\"inFlow\":437110,\"lastChangeTime\":\"0:01:26.05\",\"lastInBytes\":1258441834,\"lastOutBytes\":637950827,\"outBytes\":637950827,\"outFlow\":9465,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":390047,\"inBytes\":1483188459,\"inFlow\":380372,\"lastChangeTime\":\"0:01:25.55\",\"lastInBytes\":1483188459,\"lastOutBytes\":3468287696,\"outBytes\":3468287696,\"outFlow\":9675,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":883379304,\"inFlow\":135,\"lastChangeTime\":\"0:01:25.74\",\"lastInBytes\":883379304,\"lastOutBytes\":2129848154,\"outBytes\":2129848154,\"outFlow\":213,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5924662,\"inBytes\":2723425864,\"inFlow\":162142,\"lastChangeTime\":\"0:01:24.57\",\"lastInBytes\":2723425864,\"lastOutBytes\":1879197121,\"outBytes\":1879197121,\"outFlow\":5762519,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.275411000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331413", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"40881\",\"inUnknownProtos\":\"1639342741\",\"index\":\"636\",\"lastChange\":\"0:01:23.79\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:88:2a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1556650388\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.136\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":388673,\"inBytes\":1170528031,\"inFlow\":378707,\"lastChangeTime\":\"54 days, 14:20:45.42\",\"lastInBytes\":1170528031,\"lastOutBytes\":2318003907,\"outBytes\":2318003907,\"outFlow\":9966,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1006921,\"inBytes\":730215617,\"inFlow\":983291,\"lastChangeTime\":\"0:01:26.65\",\"lastInBytes\":730215617,\"lastOutBytes\":595963453,\"outBytes\":595963453,\"outFlow\":23630,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":843028,\"inBytes\":608872732,\"inFlow\":821583,\"lastChangeTime\":\"54 days, 14:20:46.36\",\"lastInBytes\":608872732,\"lastOutBytes\":507517477,\"outBytes\":507517477,\"outFlow\":21444,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":546193,\"inBytes\":3755174607,\"inFlow\":532450,\"lastChangeTime\":\"54 days, 14:20:42.69\",\"lastInBytes\":3755174607,\"lastOutBytes\":2283489091,\"outBytes\":2283489091,\"outFlow\":13742,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":835895,\"inBytes\":2005203665,\"inFlow\":820947,\"lastChangeTime\":\"0:01:26.67\",\"lastInBytes\":2005203665,\"lastOutBytes\":2909905944,\"outBytes\":2909905944,\"outFlow\":14948,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":385481,\"inBytes\":3654070694,\"inFlow\":375968,\"lastChangeTime\":\"54 days, 14:20:41.75\",\"lastInBytes\":3654070694,\"lastOutBytes\":1766134030,\"outBytes\":1766134030,\"outFlow\":9513,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":389799,\"inBytes\":583766990,\"inFlow\":380061,\"lastChangeTime\":\"54 days, 14:20:42.83\",\"lastInBytes\":583766990,\"lastOutBytes\":1639242607,\"outBytes\":1639242607,\"outFlow\":9738,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":351,\"inBytes\":704676292,\"inFlow\":135,\"lastChangeTime\":\"0:01:26.65\",\"lastInBytes\":704676292,\"lastOutBytes\":1662344384,\"outBytes\":1662344384,\"outFlow\":216,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:41.58\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:41.71\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4414122,\"inBytes\":3925862952,\"inFlow\":107545,\"lastChangeTime\":\"0:01:23.79\",\"lastInBytes\":3925862952,\"lastOutBytes\":259436786,\"outBytes\":259436786,\"outFlow\":4306577,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.305240000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331414", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:34", + "echoMap": {}, + "deviceId": "1020040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"40866\",\"inUnknownProtos\":\"4043256547\",\"index\":\"634\",\"lastChange\":\"0:01:21.46\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:b5:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2496940958\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31075660\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:33\",\"info\":{\"portInfoList\":[{\"flow\":429967,\"inBytes\":2405778946,\"inFlow\":418479,\"lastChangeTime\":\"0:01:21.07\",\"lastInBytes\":2405778946,\"lastOutBytes\":3940000629,\"outBytes\":3940000629,\"outFlow\":11487,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":420092,\"inBytes\":1681682314,\"inFlow\":410404,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":1681682314,\"lastOutBytes\":2959430157,\"outBytes\":2959430157,\"outFlow\":9687,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":449650,\"inBytes\":3067371962,\"inFlow\":439007,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":3067371962,\"lastOutBytes\":2238248837,\"outBytes\":2238248837,\"outFlow\":10642,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1133902,\"inBytes\":2414917433,\"inFlow\":1107345,\"lastChangeTime\":\"0:01:21.77\",\"lastInBytes\":2414917433,\"lastOutBytes\":2249779157,\"outBytes\":2249779157,\"outFlow\":26556,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":979396,\"inBytes\":1804934887,\"inFlow\":957816,\"lastChangeTime\":\"0:01:22.32\",\"lastInBytes\":1804934887,\"lastOutBytes\":4043256547,\"outBytes\":4043256547,\"outFlow\":21579,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":467471,\"inBytes\":2927329275,\"inFlow\":457550,\"lastChangeTime\":\"0:01:22.33\",\"lastInBytes\":2927329275,\"lastOutBytes\":3066256934,\"outBytes\":3066256934,\"outFlow\":9921,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":909680,\"inBytes\":171420444,\"inFlow\":887315,\"lastChangeTime\":\"0:01:21.68\",\"lastInBytes\":171420444,\"lastOutBytes\":1208516206,\"outBytes\":1208516206,\"outFlow\":22365,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":420324,\"inBytes\":3421926385,\"inFlow\":409930,\"lastChangeTime\":\"0:01:21.87\",\"lastInBytes\":3421926385,\"lastOutBytes\":710253783,\"outBytes\":710253783,\"outFlow\":10393,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":634415,\"inBytes\":2441183645,\"inFlow\":618328,\"lastChangeTime\":\"89 days, 1:32:02.62\",\"lastInBytes\":2441183645,\"lastOutBytes\":1683503526,\"outBytes\":1683503526,\"outFlow\":16087,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":419216,\"inBytes\":2351840456,\"inFlow\":408845,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":2351840456,\"lastOutBytes\":1846642342,\"outBytes\":1846642342,\"outFlow\":10371,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":420082,\"inBytes\":130392736,\"inFlow\":409769,\"lastChangeTime\":\"0:01:22.31\",\"lastInBytes\":130392736,\"lastOutBytes\":721336691,\"outBytes\":721336691,\"outFlow\":10312,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":910563,\"inBytes\":2203473125,\"inFlow\":888136,\"lastChangeTime\":\"0:01:22.76\",\"lastInBytes\":2203473125,\"lastOutBytes\":1288282712,\"outBytes\":1288282712,\"outFlow\":22427,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":704782667,\"inFlow\":135,\"lastChangeTime\":\"0:01:22.76\",\"lastInBytes\":704782667,\"lastOutBytes\":1670256389,\"outBytes\":1670256389,\"outFlow\":214,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7052054,\"inBytes\":188707806,\"inFlow\":174750,\"lastChangeTime\":\"0:01:21.46\",\"lastInBytes\":188707806,\"lastOutBytes\":1090642314,\"outBytes\":1090642314,\"outFlow\":6877304,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.294179000\"}}", + "lastDiagTime": "2026-02-02 14:38:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331415", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"40882\",\"inUnknownProtos\":\"1835396219\",\"index\":\"635\",\"lastChange\":\"0:01:24.18\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:8d:6a\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1562298787\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31096393\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":283051,\"inBytes\":206579858,\"inFlow\":276409,\"lastChangeTime\":\"114 days, 23:01:55.60\",\"lastInBytes\":206579858,\"lastOutBytes\":2869456880,\"outBytes\":2869456880,\"outFlow\":6641,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":421920,\"inBytes\":3876739432,\"inFlow\":411539,\"lastChangeTime\":\"0:01:26.70\",\"lastInBytes\":3876739432,\"lastOutBytes\":1180606617,\"outBytes\":1180606617,\"outFlow\":10381,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":420409,\"inBytes\":157443708,\"inFlow\":410014,\"lastChangeTime\":\"0:01:26.09\",\"lastInBytes\":157443708,\"lastOutBytes\":806281527,\"outBytes\":806281527,\"outFlow\":10395,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":420321,\"inBytes\":1867259120,\"inFlow\":409913,\"lastChangeTime\":\"0:01:26.10\",\"lastInBytes\":1867259120,\"lastOutBytes\":1431984227,\"outBytes\":1431984227,\"outFlow\":10408,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":437370,\"inBytes\":3385920844,\"inFlow\":428513,\"lastChangeTime\":\"0:01:26.73\",\"lastInBytes\":3385920844,\"lastOutBytes\":2741038759,\"outBytes\":2741038759,\"outFlow\":8857,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419888,\"inBytes\":1727224377,\"inFlow\":409542,\"lastChangeTime\":\"0:01:26.72\",\"lastInBytes\":1727224377,\"lastOutBytes\":1835396219,\"outBytes\":1835396219,\"outFlow\":10345,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":420348,\"inBytes\":102196224,\"inFlow\":409869,\"lastChangeTime\":\"0:01:26.10\",\"lastInBytes\":102196224,\"lastOutBytes\":1804671935,\"outBytes\":1804671935,\"outFlow\":10478,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":420177,\"inBytes\":3454639783,\"inFlow\":409833,\"lastChangeTime\":\"54 days, 14:09:49.42\",\"lastInBytes\":3454639783,\"lastOutBytes\":1783037020,\"outBytes\":1783037020,\"outFlow\":10343,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":387958,\"inBytes\":1180247429,\"inFlow\":378322,\"lastChangeTime\":\"0:01:26.73\",\"lastInBytes\":1180247429,\"lastOutBytes\":1566876375,\"outBytes\":1566876375,\"outFlow\":9635,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":959862,\"inBytes\":1958551705,\"inFlow\":937052,\"lastChangeTime\":\"0:01:26.09\",\"lastInBytes\":1958551705,\"lastOutBytes\":3392438518,\"outBytes\":3392438518,\"outFlow\":22809,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":427746,\"inBytes\":1500071756,\"inFlow\":417792,\"lastChangeTime\":\"0:01:26.73\",\"lastInBytes\":1500071756,\"lastOutBytes\":355703024,\"outBytes\":355703024,\"outFlow\":9953,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":389543,\"inBytes\":244451127,\"inFlow\":379970,\"lastChangeTime\":\"0:01:26.71\",\"lastInBytes\":244451127,\"lastOutBytes\":1060849237,\"outBytes\":1060849237,\"outFlow\":9573,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":387958,\"inBytes\":377109878,\"inFlow\":378384,\"lastChangeTime\":\"0:01:26.09\",\"lastInBytes\":377109878,\"lastOutBytes\":1043490747,\"outBytes\":1043490747,\"outFlow\":9573,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":387881,\"inBytes\":2378102686,\"inFlow\":378277,\"lastChangeTime\":\"0:01:26.70\",\"lastInBytes\":2378102686,\"lastOutBytes\":1612418218,\"outBytes\":1612418218,\"outFlow\":9604,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":258753,\"inBytes\":1434616127,\"inFlow\":252463,\"lastChangeTime\":\"17 days, 2:37:16.54\",\"lastInBytes\":1434616127,\"lastOutBytes\":1329520738,\"outBytes\":1329520738,\"outFlow\":6290,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":343,\"inBytes\":704868017,\"inFlow\":135,\"lastChangeTime\":\"0:01:26.08\",\"lastInBytes\":704868017,\"lastOutBytes\":1670408726,\"outBytes\":1670408726,\"outFlow\":208,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6734156,\"inBytes\":2492810907,\"inFlow\":167577,\"lastChangeTime\":\"0:01:24.17\",\"lastInBytes\":2492810907,\"lastOutBytes\":3360904468,\"outBytes\":3360904468,\"outFlow\":6566579,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.235625000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331416", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"40873\",\"inUnknownProtos\":\"2922122117\",\"index\":\"634\",\"lastChange\":\"0:01:20.55\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:e0:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1755568810\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"31092509\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":911002,\"inBytes\":218824230,\"inFlow\":888204,\"lastChangeTime\":\"0:01:20.10\",\"lastInBytes\":218824230,\"lastOutBytes\":2487766972,\"outBytes\":2487766972,\"outFlow\":22798,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":420256,\"inBytes\":152505332,\"inFlow\":409877,\"lastChangeTime\":\"0:01:20.19\",\"lastInBytes\":152505332,\"lastOutBytes\":1495099719,\"outBytes\":1495099719,\"outFlow\":10378,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":280708,\"inBytes\":3933946456,\"inFlow\":273864,\"lastChangeTime\":\"0:01:20.30\",\"lastInBytes\":3933946456,\"lastOutBytes\":1013952849,\"outBytes\":1013952849,\"outFlow\":6844,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":421792,\"inBytes\":1355753958,\"inFlow\":411366,\"lastChangeTime\":\"0:01:20.44\",\"lastInBytes\":1355753958,\"lastOutBytes\":2411043093,\"outBytes\":2411043093,\"outFlow\":10425,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":421902,\"inBytes\":1779855892,\"inFlow\":411409,\"lastChangeTime\":\"54 days, 14:06:34.77\",\"lastInBytes\":1779855892,\"lastOutBytes\":2922122117,\"outBytes\":2922122117,\"outFlow\":10493,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421946,\"inBytes\":1447870190,\"inFlow\":411370,\"lastChangeTime\":\"54 days, 14:06:33.59\",\"lastInBytes\":1447870190,\"lastOutBytes\":1664661821,\"outBytes\":1664661821,\"outFlow\":10576,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":462973,\"inBytes\":3991891476,\"inFlow\":453041,\"lastChangeTime\":\"0:01:21.77\",\"lastInBytes\":3991891476,\"lastOutBytes\":2428613902,\"outBytes\":2428613902,\"outFlow\":9932,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419582,\"inBytes\":2524108563,\"inFlow\":410851,\"lastChangeTime\":\"0:01:21.78\",\"lastInBytes\":2524108563,\"lastOutBytes\":2910284084,\"outBytes\":2910284084,\"outFlow\":8730,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":387691,\"inBytes\":860634830,\"inFlow\":378108,\"lastChangeTime\":\"0:01:20.95\",\"lastInBytes\":860634830,\"lastOutBytes\":702299102,\"outBytes\":702299102,\"outFlow\":9583,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":386056,\"inBytes\":1750749061,\"inFlow\":376601,\"lastChangeTime\":\"0:01:21.15\",\"lastInBytes\":1750749061,\"lastOutBytes\":2437638266,\"outBytes\":2437638266,\"outFlow\":9454,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":392317,\"inBytes\":1565279148,\"inFlow\":382229,\"lastChangeTime\":\"54 days, 14:06:38.73\",\"lastInBytes\":1565279148,\"lastOutBytes\":1703253604,\"outBytes\":1703253604,\"outFlow\":10088,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":842060,\"inBytes\":445631001,\"inFlow\":821134,\"lastChangeTime\":\"54 days, 14:06:42.06\",\"lastInBytes\":445631001,\"lastOutBytes\":3294763963,\"outBytes\":3294763963,\"outFlow\":20926,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":419107,\"inBytes\":4179945840,\"inFlow\":409618,\"lastChangeTime\":\"131 days, 2:14:19.42\",\"lastInBytes\":4179945840,\"lastOutBytes\":1291371243,\"outBytes\":1291371243,\"outFlow\":9489,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":258818,\"inBytes\":3476913357,\"inFlow\":252493,\"lastChangeTime\":\"0:01:21.77\",\"lastInBytes\":3476913357,\"lastOutBytes\":3220521629,\"outBytes\":3220521629,\"outFlow\":6324,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":258843,\"inBytes\":2244703884,\"inFlow\":252492,\"lastChangeTime\":\"0:01:21.79\",\"lastInBytes\":2244703884,\"lastOutBytes\":1982754094,\"outBytes\":1982754094,\"outFlow\":6350,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":343,\"inBytes\":704862372,\"inFlow\":135,\"lastChangeTime\":\"0:01:21.78\",\"lastInBytes\":704862372,\"lastOutBytes\":1661761618,\"outBytes\":1661761618,\"outFlow\":208,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6941765,\"inBytes\":2335953086,\"inFlow\":174314,\"lastChangeTime\":\"0:01:20.54\",\"lastInBytes\":2335953086,\"lastOutBytes\":2310728023,\"outBytes\":2310728023,\"outFlow\":6767450,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.267754000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331417", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"198121\",\"inUnknownProtos\":\"1694871455\",\"index\":\"634\",\"lastChange\":\"83 days, 9:10:26.92\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:b3:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"425222573\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"148613383\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":421695,\"inBytes\":2197596132,\"inFlow\":411316,\"lastChangeTime\":\"55 days, 12:56:56.58\",\"lastInBytes\":2197596132,\"lastOutBytes\":943357357,\"outBytes\":943357357,\"outFlow\":10379,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":421291,\"inBytes\":3409874390,\"inFlow\":410444,\"lastChangeTime\":\"418 days, 9:41:25.41\",\"lastInBytes\":3409874390,\"lastOutBytes\":3257438544,\"outBytes\":3257438544,\"outFlow\":10846,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":389896,\"inBytes\":3802879174,\"inFlow\":379507,\"lastChangeTime\":\"85 days, 11:32:11.47\",\"lastInBytes\":3802879174,\"lastOutBytes\":1789346017,\"outBytes\":1789346017,\"outFlow\":10389,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":892684,\"inBytes\":55842558,\"inFlow\":873018,\"lastChangeTime\":\"277 days, 16:51:32.27\",\"lastInBytes\":55842558,\"lastOutBytes\":3044968063,\"outBytes\":3044968063,\"outFlow\":19666,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":456227,\"inBytes\":2525770829,\"inFlow\":446406,\"lastChangeTime\":\"25 days, 22:14:55.54\",\"lastInBytes\":2525770829,\"lastOutBytes\":1694721916,\"outBytes\":1694721916,\"outFlow\":9821,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":456442,\"inBytes\":3943094897,\"inFlow\":446633,\"lastChangeTime\":\"277 days, 16:51:37.30\",\"lastInBytes\":3943094897,\"lastOutBytes\":3691191777,\"outBytes\":3691191777,\"outFlow\":9809,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":390575,\"inBytes\":2691984474,\"inFlow\":381592,\"lastChangeTime\":\"371 days, 14:24:37.63\",\"lastInBytes\":2691984474,\"lastOutBytes\":108965141,\"outBytes\":108965141,\"outFlow\":8982,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1030658,\"inBytes\":2116950700,\"inFlow\":1006822,\"lastChangeTime\":\"488 days, 19:56:43.18\",\"lastInBytes\":2116950700,\"lastOutBytes\":2821539683,\"outBytes\":2821539683,\"outFlow\":23835,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":976020,\"inBytes\":2281279513,\"inFlow\":954801,\"lastChangeTime\":\"277 days, 16:51:37.47\",\"lastInBytes\":2281279513,\"lastOutBytes\":4205256357,\"outBytes\":4205256357,\"outFlow\":21218,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":963845,\"inBytes\":279508399,\"inFlow\":941004,\"lastChangeTime\":\"488 days, 19:56:49.15\",\"lastInBytes\":279508399,\"lastOutBytes\":2653647304,\"outBytes\":2653647304,\"outFlow\":22840,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":420604,\"inBytes\":922087491,\"inFlow\":410245,\"lastChangeTime\":\"311 days, 23:56:26.27\",\"lastInBytes\":922087491,\"lastOutBytes\":4197855943,\"outBytes\":4197855943,\"outFlow\":10359,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":420171,\"inBytes\":3022940400,\"inFlow\":409840,\"lastChangeTime\":\"55 days, 12:56:53.94\",\"lastInBytes\":3022940400,\"lastOutBytes\":2700630724,\"outBytes\":2700630724,\"outFlow\":10331,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":421140,\"inBytes\":185933458,\"inFlow\":410732,\"lastChangeTime\":\"55 days, 12:57:43.56\",\"lastInBytes\":185933458,\"lastOutBytes\":753309239,\"outBytes\":753309239,\"outFlow\":10408,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":282680,\"inBytes\":3805288480,\"inFlow\":275794,\"lastChangeTime\":\"5 days, 7:26:24.79\",\"lastInBytes\":3805288480,\"lastOutBytes\":3395535098,\"outBytes\":3395535098,\"outFlow\":6886,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":291887,\"inBytes\":1968528028,\"inFlow\":284018,\"lastChangeTime\":\"98 days, 8:20:24.17\",\"lastInBytes\":1968528028,\"lastOutBytes\":2947193319,\"outBytes\":2947193319,\"outFlow\":7869,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":349,\"inBytes\":1708338770,\"inFlow\":135,\"lastChangeTime\":\"371 days, 14:23:43.32\",\"lastInBytes\":1708338770,\"lastOutBytes\":2484307032,\"outBytes\":2484307032,\"outFlow\":214,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7901144,\"inBytes\":2854061552,\"inFlow\":191147,\"lastChangeTime\":\"83 days, 9:27:51.88\",\"lastInBytes\":2854061552,\"lastOutBytes\":751099491,\"outBytes\":751099491,\"outFlow\":7709996,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:30.421819000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331418", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1020040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.168.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface168\",\"ifType\":\"136\",\"inDiscards\":\"35\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"198299\",\"inUnknownProtos\":\"185517277\",\"index\":\"634\",\"lastChange\":\"0:05:24.39\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:e1:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"531751710\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"148615752\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.168.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:34\",\"info\":{\"portInfoList\":[{\"flow\":258854,\"inBytes\":4026599686,\"inFlow\":252375,\"lastChangeTime\":\"83 days, 9:06:13.16\",\"lastInBytes\":4026599686,\"lastOutBytes\":1016615729,\"outBytes\":1016615729,\"outFlow\":6478,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":259230,\"inBytes\":1618710335,\"inFlow\":252602,\"lastChangeTime\":\"83 days, 9:06:19.76\",\"lastInBytes\":1618710335,\"lastOutBytes\":428425946,\"outBytes\":428425946,\"outFlow\":6627,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":387769,\"inBytes\":1374567339,\"inFlow\":378191,\"lastChangeTime\":\"313 days, 2:27:08.26\",\"lastInBytes\":1374567339,\"lastOutBytes\":3278023675,\"outBytes\":3278023675,\"outFlow\":9577,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":259368,\"inBytes\":408837219,\"inFlow\":252722,\"lastChangeTime\":\"83 days, 9:06:22.55\",\"lastInBytes\":408837219,\"lastOutBytes\":691817692,\"outBytes\":691817692,\"outFlow\":6646,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":583410,\"inBytes\":2762774264,\"inFlow\":568210,\"lastChangeTime\":\"200 days, 10:52:00.50\",\"lastInBytes\":2762774264,\"lastOutBytes\":185360111,\"outBytes\":185360111,\"outFlow\":15199,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":915409,\"inBytes\":1373562460,\"inFlow\":893610,\"lastChangeTime\":\"488 days, 19:57:35.65\",\"lastInBytes\":1373562460,\"lastOutBytes\":1345315304,\"outBytes\":1345315304,\"outFlow\":21798,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":259135,\"inBytes\":1824082493,\"inFlow\":252584,\"lastChangeTime\":\"200 days, 10:52:09.27\",\"lastInBytes\":1824082493,\"lastOutBytes\":3195602886,\"outBytes\":3195602886,\"outFlow\":6550,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":259035,\"inBytes\":2740789738,\"inFlow\":252506,\"lastChangeTime\":\"200 days, 10:52:10.62\",\"lastInBytes\":2740789738,\"lastOutBytes\":2750240723,\"outBytes\":2750240723,\"outFlow\":6529,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":280852,\"inBytes\":3555906236,\"inFlow\":273746,\"lastChangeTime\":\"83 days, 9:06:18.90\",\"lastInBytes\":3555906236,\"lastOutBytes\":1366284388,\"outBytes\":1366284388,\"outFlow\":7106,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":910220,\"inBytes\":2599557303,\"inFlow\":887620,\"lastChangeTime\":\"57 days, 0:57:00.87\",\"lastInBytes\":2599557303,\"lastOutBytes\":1205230165,\"outBytes\":1205230165,\"outFlow\":22599,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":421599,\"inBytes\":466016409,\"inFlow\":411143,\"lastChangeTime\":\"83 days, 9:06:08.28\",\"lastInBytes\":466016409,\"lastOutBytes\":3629331360,\"outBytes\":3629331360,\"outFlow\":10455,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":421116,\"inBytes\":426806085,\"inFlow\":411310,\"lastChangeTime\":\"277 days, 16:51:58.25\",\"lastInBytes\":426806085,\"lastOutBytes\":2932941762,\"outBytes\":2932941762,\"outFlow\":9806,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":616076,\"inBytes\":3763645807,\"inFlow\":598190,\"lastChangeTime\":\"200 days, 10:52:08.51\",\"lastInBytes\":3763645807,\"lastOutBytes\":2471135494,\"outBytes\":2471135494,\"outFlow\":17886,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":259263,\"inBytes\":948597550,\"inFlow\":252475,\"lastChangeTime\":\"200 days, 10:52:04.32\",\"lastInBytes\":948597550,\"lastOutBytes\":721701344,\"outBytes\":721701344,\"outFlow\":6787,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":565108,\"inFlow\":0,\"lastChangeTime\":\"83 days, 9:07:03.22\",\"lastInBytes\":565108,\"lastOutBytes\":10095520,\"outBytes\":10095520,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":1709634049,\"inFlow\":135,\"lastChangeTime\":\"207 days, 23:21:41.56\",\"lastInBytes\":1709634049,\"lastOutBytes\":1892609819,\"outBytes\":1892609819,\"outFlow\":213,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5960874,\"inBytes\":1494001849,\"inFlow\":154918,\"lastChangeTime\":\"83 days, 9:07:00.19\",\"lastInBytes\":1494001849,\"lastOutBytes\":1149501253,\"outBytes\":1149501253,\"outFlow\":5805955,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:30.283871000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388473701331419", + "createdBy": "0", + "createdTime": "2025-12-01 15:12:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:57", + "echoMap": {}, + "deviceId": "1020040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.167.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif167\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:10.39\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:15:c3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"34\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.167.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"150810349\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1998\",\"415450\",\"5895\",\"578423\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:56\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.66\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34319,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":463,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37993,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":767,\"opticalVoltage\":3317,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34529,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":563,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33959,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":473,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39013,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":647,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33029,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":576,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33209,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":668,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39167,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":480,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33479,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":647,\"opticalVoltage\":3314,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33659,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":644,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40919,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":404,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37375,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":466,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36608,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":469,\"opticalVoltage\":3376,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35840,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":488,\"opticalVoltage\":3360,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33599,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":663,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":868,\"opticalVoltage\":3375,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36330,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":562,\"opticalVoltage\":3321,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35840,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":474,\"opticalVoltage\":3379,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35669,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":564,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":506,\"inBytes\":1598878617,\"inFlow\":69,\"lastChangeTime\":\"371 days, 14:09:07.26\",\"lastInBytes\":1598878617,\"lastOutBytes\":2327262850,\"opticalBiasCurrent\":13706,\"opticalReceivePower\":194,\"opticalTemperature\":43,\"opticalTransmitPower\":243,\"opticalVoltage\":3302,\"outBytes\":2327262850,\"outFlow\":436,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2729133274,\"inFlow\":0,\"lastChangeTime\":\"371 days, 14:08:48.23\",\"lastInBytes\":2729133274,\"lastOutBytes\":3474195716,\"opticalBiasCurrent\":34560,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":564,\"opticalVoltage\":3357,\"outBytes\":3474195716,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":565908,\"inBytes\":1295852321,\"inFlow\":3217,\"lastChangeTime\":\"0:04:17.21\",\"lastInBytes\":1295852321,\"lastOutBytes\":2068487271,\"opticalBiasCurrent\":37290,\"opticalReceivePower\":368,\"opticalTemperature\":47,\"opticalTransmitPower\":561,\"opticalVoltage\":3340,\"outBytes\":2068487271,\"outFlow\":562690,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":266155,\"inBytes\":1396590559,\"inFlow\":26872,\"lastChangeTime\":\"0:04:10.60\",\"lastInBytes\":1396590559,\"lastOutBytes\":1736619640,\"opticalBiasCurrent\":38759,\"opticalReceivePower\":465,\"opticalTemperature\":46,\"opticalTransmitPower\":462,\"opticalVoltage\":3355,\"outBytes\":1736619640,\"outFlow\":239282,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":6077446,\"inBytes\":3052476271,\"inFlow\":5881595,\"lastChangeTime\":\"83 days, 9:01:04.22\",\"lastInBytes\":3052476271,\"lastOutBytes\":712833715,\"opticalBiasCurrent\":12048,\"opticalReceivePower\":226,\"opticalTemperature\":42,\"opticalTransmitPower\":281,\"opticalVoltage\":3310,\"outBytes\":712833715,\"outFlow\":195851,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8118973,\"inBytes\":986029765,\"inFlow\":7875377,\"lastChangeTime\":\"83 days, 9:21:53.15\",\"lastInBytes\":986029765,\"lastOutBytes\":1540405392,\"opticalBiasCurrent\":13609,\"opticalReceivePower\":155,\"opticalTemperature\":41,\"opticalTransmitPower\":298,\"opticalVoltage\":3318,\"outBytes\":1540405392,\"outFlow\":243596,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6507579,\"inBytes\":1587703334,\"inFlow\":6305242,\"lastChangeTime\":\"5 days, 7:25:18.76\",\"lastInBytes\":1587703334,\"lastOutBytes\":1244804645,\"opticalBiasCurrent\":13578,\"opticalReceivePower\":151,\"opticalTemperature\":43,\"opticalTransmitPower\":288,\"opticalVoltage\":3310,\"outBytes\":1244804645,\"outFlow\":202337,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6313615,\"inBytes\":2597298900,\"inFlow\":6118606,\"lastChangeTime\":\"5 days, 7:22:19.76\",\"lastInBytes\":2597298900,\"lastOutBytes\":2338252254,\"opticalBiasCurrent\":13289,\"opticalReceivePower\":163,\"opticalTemperature\":41,\"opticalTransmitPower\":272,\"opticalVoltage\":3310,\"outBytes\":2338252254,\"outFlow\":195008,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7194964,\"inBytes\":2406455090,\"inFlow\":6973483,\"lastChangeTime\":\"5 days, 7:44:24.19\",\"lastInBytes\":2406455090,\"lastOutBytes\":2173600101,\"opticalBiasCurrent\":13131,\"opticalReceivePower\":208,\"opticalTemperature\":43,\"opticalTransmitPower\":240,\"opticalVoltage\":3302,\"outBytes\":2173600101,\"outFlow\":221480,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4489138,\"inBytes\":3948094596,\"inFlow\":4354061,\"lastChangeTime\":\"5 days, 7:11:22.52\",\"lastInBytes\":3948094596,\"lastOutBytes\":639940816,\"opticalBiasCurrent\":13449,\"opticalReceivePower\":164,\"opticalTemperature\":41,\"opticalTransmitPower\":274,\"opticalVoltage\":3310,\"outBytes\":639940816,\"outFlow\":135076,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5861786,\"inBytes\":4283930282,\"inFlow\":5677578,\"lastChangeTime\":\"465 days, 1:43:43.67\",\"lastInBytes\":4283930282,\"lastOutBytes\":3338727209,\"opticalBiasCurrent\":13418,\"opticalReceivePower\":183,\"opticalTemperature\":42,\"opticalTransmitPower\":277,\"opticalVoltage\":3310,\"outBytes\":3338727209,\"outFlow\":184208,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4343794,\"inBytes\":51227136,\"inFlow\":4203793,\"lastChangeTime\":\"5 days, 6:48:18.08\",\"lastInBytes\":51227136,\"lastOutBytes\":456407980,\"opticalBiasCurrent\":12590,\"opticalReceivePower\":179,\"opticalTemperature\":40,\"opticalTransmitPower\":277,\"opticalVoltage\":3325,\"outBytes\":456407980,\"outFlow\":140001,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3324106,\"inBytes\":3104703634,\"inFlow\":3217545,\"lastChangeTime\":\"5 days, 6:28:35.70\",\"lastInBytes\":3104703634,\"lastOutBytes\":2034450458,\"opticalBiasCurrent\":13960,\"opticalReceivePower\":221,\"opticalTemperature\":42,\"opticalTransmitPower\":292,\"opticalVoltage\":3310,\"outBytes\":2034450458,\"outFlow\":106560,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4183636,\"inBytes\":2366805149,\"inFlow\":4049882,\"lastChangeTime\":\"5 days, 6:07:05.03\",\"lastInBytes\":2366805149,\"lastOutBytes\":149071003,\"opticalBiasCurrent\":13545,\"opticalReceivePower\":203,\"opticalTemperature\":41,\"opticalTransmitPower\":285,\"opticalVoltage\":3318,\"outBytes\":149071003,\"outFlow\":133753,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3319956,\"inBytes\":1770890948,\"inFlow\":3213441,\"lastChangeTime\":\"5 days, 6:17:23.35\",\"lastInBytes\":1770890948,\"lastOutBytes\":2462728452,\"opticalBiasCurrent\":13321,\"opticalReceivePower\":220,\"opticalTemperature\":42,\"opticalTransmitPower\":259,\"opticalVoltage\":3318,\"outBytes\":2462728452,\"outFlow\":106514,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12526,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":286,\"opticalVoltage\":3333,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":397221,\"inBytes\":1187734932,\"inFlow\":384001,\"lastChangeTime\":\"25 days, 21:24:57.83\",\"lastInBytes\":1187734932,\"lastOutBytes\":4264780314,\"opticalBiasCurrent\":12621,\"opticalReceivePower\":240,\"opticalTemperature\":40,\"opticalTransmitPower\":242,\"opticalVoltage\":3294,\"outBytes\":4264780314,\"outFlow\":13219,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":398056,\"inBytes\":3295901306,\"inFlow\":384817,\"lastChangeTime\":\"34 days, 11:46:24.45\",\"lastInBytes\":3295901306,\"lastOutBytes\":280618552,\"opticalBiasCurrent\":13003,\"opticalReceivePower\":232,\"opticalTemperature\":39,\"opticalTransmitPower\":277,\"opticalVoltage\":3286,\"outBytes\":280618552,\"outFlow\":13238,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13289,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":285,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13036,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":291,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13545,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":266,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13321,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":251,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13163,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":286,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12270,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":240,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13131,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":246,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13321,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":241,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37740,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":829,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12079,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":258,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":68164,\"inBytes\":3217908014,\"inFlow\":45283,\"lastChangeTime\":\"0:03:12.79\",\"lastInBytes\":3217908014,\"lastOutBytes\":1193970677,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1193970677,\"outFlow\":22880,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":20862968,\"inBytes\":605505851,\"inFlow\":6111898,\"lastChangeTime\":\"132 days, 11:42:52.89\",\"lastInBytes\":605505851,\"lastOutBytes\":3206033282,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3206033282,\"outFlow\":14751070,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":140209,\"inBytes\":3978898259,\"inFlow\":41426,\"lastChangeTime\":\"0:03:11.13\",\"lastInBytes\":3978898259,\"lastOutBytes\":144290293,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":144290293,\"outFlow\":98782,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":398,\"inBytes\":425546321,\"inFlow\":9,\"lastChangeTime\":\"5 days, 6:07:42.59\",\"lastInBytes\":425546321,\"lastOutBytes\":141352506,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":141352506,\"outFlow\":388,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2318914,\"inBytes\":3814010975,\"inFlow\":52715,\"lastChangeTime\":\"129 days, 22:12:22.73\",\"lastInBytes\":3814010975,\"lastOutBytes\":3355149369,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3355149369,\"outFlow\":2266199,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5215723,\"inBytes\":2002414251,\"inFlow\":595615,\"lastChangeTime\":\"5 days, 6:04:53.46\",\"lastInBytes\":2002414251,\"lastOutBytes\":750377488,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":750377488,\"outFlow\":4620108,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":23022358,\"inBytes\":3208295184,\"inFlow\":420804,\"lastChangeTime\":\"133 days, 8:13:33.47\",\"lastInBytes\":3208295184,\"lastOutBytes\":62386205,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":62386205,\"outFlow\":22601553,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":674530,\"inBytes\":1727094819,\"inFlow\":418194,\"lastChangeTime\":\"5 days, 6:06:44.06\",\"lastInBytes\":1727094819,\"lastOutBytes\":3919882518,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3919882518,\"outFlow\":256336,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":17084833,\"inBytes\":1735276985,\"inFlow\":522840,\"lastChangeTime\":\"83 days, 11:21:23.83\",\"lastInBytes\":1735276985,\"lastOutBytes\":3916706256,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3916706256,\"outFlow\":16561993,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":910,\"inBytes\":1939905366,\"inFlow\":222,\"lastChangeTime\":\"5 days, 6:45:00.88\",\"lastInBytes\":1939905366,\"lastOutBytes\":2391070147,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2391070147,\"outFlow\":688,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":630,\"inBytes\":1736074272,\"inFlow\":147,\"lastChangeTime\":\"5 days, 6:45:01.44\",\"lastInBytes\":1736074272,\"lastOutBytes\":1023484515,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1023484515,\"outFlow\":483,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":17187,\"inFlow\":0,\"lastChangeTime\":\"133 days, 8:11:32.86\",\"lastInBytes\":17187,\"lastOutBytes\":2561154976,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2561154976,\"outFlow\":0,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":793,\"inBytes\":1808567514,\"inFlow\":98,\"lastChangeTime\":\"77 days, 6:31:32.06\",\"lastInBytes\":1808567514,\"lastOutBytes\":3651930522,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3651930522,\"outFlow\":695,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3064460,\"inBytes\":3207342885,\"inFlow\":27429,\"lastChangeTime\":\"433 days, 13:05:51.78\",\"lastInBytes\":3207342885,\"lastOutBytes\":249944434,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":249944434,\"outFlow\":3037030,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":378,\"inBytes\":1178085202,\"inFlow\":0,\"lastChangeTime\":\"25 days, 22:27:33.46\",\"lastInBytes\":1178085202,\"lastOutBytes\":3106991196,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3106991196,\"outFlow\":378,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":399,\"inBytes\":498634095,\"inFlow\":9,\"lastChangeTime\":\"90 days, 20:01:56.46\",\"lastInBytes\":498634095,\"lastOutBytes\":1932489155,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1932489155,\"outFlow\":390,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":623,\"inBytes\":546826879,\"inFlow\":144,\"lastChangeTime\":\"94 days, 10:01:37.39\",\"lastInBytes\":546826879,\"lastOutBytes\":1815166045,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1815166045,\"outFlow\":479,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":58699313,\"inFlow\":0,\"lastChangeTime\":\"133 days, 13:37:04.61\",\"lastInBytes\":58699313,\"lastOutBytes\":1847665252,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1847665252,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":33,\"inBytes\":6850268,\"inFlow\":15,\"lastChangeTime\":\"131 days, 7:27:07.48\",\"lastInBytes\":6850268,\"lastOutBytes\":8084758,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8084758,\"outFlow\":17,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":120,\"inBytes\":47558688,\"inFlow\":102,\"lastChangeTime\":\"131 days, 7:27:34.82\",\"lastInBytes\":47558688,\"lastOutBytes\":8050197,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8050197,\"outFlow\":17,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:37.635617000\"}}", + "lastDiagTime": "2026-02-02 14:38:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585047491439763576", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:55", + "echoMap": {}, + "deviceId": "1020110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.167.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.84\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"136 days, 10:43:36.80\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10894997\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29194869\",\"inOctets\":\"1386208419\",\"inUcastPkts\":\"1320133446\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3e:14\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"339515017\",\"outQLen\":\"0\",\"outUcastPkts\":\"1411542984\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.167.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1021": { + "ndmAlarmHost": [ + { + "id": "707147201142402084", + "createdBy": null, + "createdTime": "2025-12-08 13:46:24", + "updatedBy": null, + "updatedTime": "2025-12-08 13:46:24", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.169.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046413402976375", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1021060001", + "name": "[328](10)四平B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101040006021328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976376", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1021060002", + "name": "[606](10)四平环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103053005021606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976377", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1021060003", + "name": "[601](10)四平弱电综合室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976378", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1021060004", + "name": "[602](10)四平弱电综合室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976379", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1021060005", + "name": "[603](10)四平弱电综合室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976380", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1021060006", + "name": "[604](10)四平弱电综合室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976381", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1021060007", + "name": "[327](10)四平B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101040006021327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976382", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1021060008", + "name": "[612](10)四平变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103001006021612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976383", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060009", + "name": "[613](10)四平变电所出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103001006021613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976384", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1021060010", + "name": "[611](10)四平变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103001006021611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976385", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1021060011", + "name": "[315](10)四平#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976386", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1021060012", + "name": "[314](10)四平#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976387", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1021060013", + "name": "[316](10)四平#4厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976388", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1021060014", + "name": "[610](10)四平内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103021006021610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976389", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1021060015", + "name": "[330](10)四平B3垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102002006021330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976390", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1021060016", + "name": "[326](10)四平10-8换乘楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976391", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1021060017", + "name": "[322](10)四平#4台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976392", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-12-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060018", + "name": "[206](10)四平上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102001004021206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976393", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1021060019", + "name": "[111](10)四平上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102007006021111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976394", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060020", + "name": "[112](10)四平上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102007006021112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976395", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060021", + "name": "[109](10)四平上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102007006021109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976396", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060022", + "name": "[110](10)四平上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102007006021110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976397", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060023", + "name": "[319](10)四平#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976398", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060024", + "name": "[605](10)四平屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976399", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060025", + "name": "[325](10)四平10-8换乘楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976400", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060026", + "name": "[320](10)四平#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976401", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:04", + "updatedBy": null, + "updatedTime": "2025-12-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060027", + "name": "[205](10)四平上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102001004021205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976402", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060028", + "name": "[107](10)四平上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102007006021107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976403", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060029", + "name": "[108](10)四平上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102007006021108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976404", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1021060030", + "name": "[106](10)四平下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102012006021106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976405", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2026-01-31 13:21:32", + "echoMap": {}, + "deviceId": "1021060031", + "name": "[105](10)四平下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102012006021105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976406", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-12-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060032", + "name": "[204](10)四平下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102001004021204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976407", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1021060033", + "name": "[318](10)四平#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976408", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1021060034", + "name": "[323](10)四平10-8换乘楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976409", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1021060035", + "name": "[317](10)四平#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976410", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1021060036", + "name": "[313](10)四平#3厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976411", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060037", + "name": "[311](10)四平#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976412", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1021060038", + "name": "[312](10)四平#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976413", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1021060039", + "name": "[102](10)四平下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102012006021102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976414", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060040", + "name": "[101](10)四平下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102012006021101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976415", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060041", + "name": "[104](10)四平下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102012006021104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976416", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1021060042", + "name": "[103](10)四平下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102012006021103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976417", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-12-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060043", + "name": "[203](10)四平下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102001004021203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976418", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1021060044", + "name": "[321](10)四平#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976419", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060045", + "name": "[324](10)四平10-8换乘楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102017006021324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976420", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060046", + "name": "[329](10)四平B3垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102002006021329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976421", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060047", + "name": "[609](10)四平内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103021006021609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976422", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060048", + "name": "[306](10)四平#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976423", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060049", + "name": "[307](10)四平#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976424", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060050", + "name": "[308](10)四平#2厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976425", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060051", + "name": "[310](10)四平#2厅楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976426", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1021060052", + "name": "[309](10)四平#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976427", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060053", + "name": "[608](10)四平内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103001006021608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976428", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060054", + "name": "[607](10)四平环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103053005021607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976429", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1021060055", + "name": "[201](10)四平厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101035004021201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976430", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1021060056", + "name": "[202](10)四平厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101035004021202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976431", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1021060057", + "name": "[305](10)四平#1厅楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976432", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1021060058", + "name": "[304](10)四平#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976433", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1021060059", + "name": "[301](10)四平#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976434", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1021060060", + "name": "[302](10)四平#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046413402976435", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1021060061", + "name": "[303](10)四平#1厅扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062101045006021303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410323771749534", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1021060062", + "name": "[614](10)四平气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103067005021614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410323771749535", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1021060063", + "name": "[615](10)四平气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103067005021615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410328066716672", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060064", + "name": "[616](10)四平通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410328066716673", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1021060065", + "name": "[617](10)四平通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062103048005021617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702329944348367879", + "createdBy": null, + "createdTime": "2025-11-23 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1021060066", + "name": "[618](10)四平下行站台厕所通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102002005021618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702329944348367880", + "createdBy": null, + "createdTime": "2025-11-23 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1021060067", + "name": "[619](10)四平上行站台厕所通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102002005021619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702329944348367881", + "createdBy": null, + "createdTime": "2025-11-23 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-12 00:00:00", + "echoMap": {}, + "deviceId": "1021060068", + "name": "[620](10)四平上行站台厕所通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.169.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062102002005021620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046413402976460", + "createdBy": "0", + "createdTime": "2025-02-28 11:24:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:31", + "echoMap": {}, + "deviceId": "1021070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.169.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112183\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1815991162\",\"inUcastPkts\":\"485242404\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:de\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2368951094\",\"outQLen\":\"0\",\"outUcastPkts\":\"199335889\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.169.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:30\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ8228B\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:35:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046421992911120", + "createdBy": "2", + "createdTime": "2025-02-28 12:52:36", + "updatedBy": null, + "updatedTime": "2025-12-23 10:18:20", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.169.51", + "manageUrl": "http:\\\\10.18.169.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046421992911121", + "createdBy": "2", + "createdTime": "2025-02-28 12:52:54", + "updatedBy": null, + "updatedTime": "2025-12-23 10:18:15", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.169.52", + "manageUrl": "http:\\\\10.18.169.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046413402976544", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:31", + "echoMap": {}, + "deviceId": "1021090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.169.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.07\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"122 days, 10:53:00.86\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10669730\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28549138\",\"inOctets\":\"2086192491\",\"inUcastPkts\":\"4092571267\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:fb:f8:8c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3530053082\",\"outQLen\":\"0\",\"outUcastPkts\":\"4093652801\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.169.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046413402976437", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-05-16 12:54:36", + "echoMap": {}, + "deviceId": "1021050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.169.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.169.22;10.18.169.23" + }, + { + "id": "585046413402976438", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:32", + "echoMap": {}, + "deviceId": "1021050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.169.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062100000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18634797\",\"inErrors\":\"4\",\"inNUcastPkts\":\"33078093\",\"inOctets\":\"2962401524\",\"inUcastPkts\":\"4009825412\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8a:9b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3735638012\",\"outQLen\":\"0\",\"outUcastPkts\":\"209620224\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4290\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.169.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:31\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":1051595001,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"51\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:35:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.169.22" + }, + { + "id": "585046413402976439", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:33", + "echoMap": {}, + "deviceId": "1021050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.169.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062100000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18632463\",\"inErrors\":\"2\",\"inNUcastPkts\":\"42385607\",\"inOctets\":\"76262906\",\"inUcastPkts\":\"973818796\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8a:f5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2578563442\",\"outQLen\":\"0\",\"outUcastPkts\":\"3121663572\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4380\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4310\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.169.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:32\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":1051595001,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node16923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"54\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:35:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.169.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706388112917472931", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:31", + "echoMap": {}, + "deviceId": "1021030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8452894\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"470776960\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"83 days, 19:55:44.31\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8452899\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:6d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.30100003,\"status\":1,\"voltage\":26.37},{\"current\":0.23900001,\"status\":1,\"voltage\":26.37},{\"current\":0.245,\"status\":1,\"voltage\":26.37},{\"current\":0.24800001,\"status\":1,\"voltage\":26.37},{\"current\":0.29200003,\"status\":1,\"voltage\":26.37},{\"current\":0.24900001,\"status\":1,\"voltage\":26.37},{\"current\":0.22100002,\"status\":1,\"voltage\":26.37},{\"current\":0.53000003,\"status\":1,\"voltage\":26.37},{\"current\":0.514,\"status\":1,\"voltage\":26.37},{\"current\":0.223,\"status\":1,\"voltage\":26.469002},{\"current\":0.003,\"status\":1,\"voltage\":26.469002},{\"current\":0.23900001,\"status\":1,\"voltage\":26.469002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.469002},{\"current\":0.21900001,\"status\":1,\"voltage\":26.469002},{\"current\":0.223,\"status\":1,\"voltage\":26.469002},{\"current\":0.001,\"status\":1,\"voltage\":26.469002}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301580\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472932", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:32", + "echoMap": {}, + "deviceId": "1021030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2597712\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"142816894\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"400 days, 4:37:23.35\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2597717\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:02\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.257,\"status\":1,\"voltage\":26.606},{\"current\":0.24900001,\"status\":1,\"voltage\":26.606},{\"current\":0.24100001,\"status\":1,\"voltage\":26.606},{\"current\":0.238,\"status\":1,\"voltage\":26.606},{\"current\":0.24300002,\"status\":1,\"voltage\":26.606},{\"current\":0.272,\"status\":1,\"voltage\":26.606},{\"current\":0.25300002,\"status\":1,\"voltage\":26.606},{\"current\":0.526,\"status\":1,\"voltage\":26.606},{\"current\":0.27600002,\"status\":1,\"voltage\":26.606},{\"current\":0.31,\"status\":1,\"voltage\":26.503002},{\"current\":0.002,\"status\":1,\"voltage\":26.503002},{\"current\":0.289,\"status\":1,\"voltage\":26.503002},{\"current\":0.294,\"status\":1,\"voltage\":26.503002},{\"current\":0.231,\"status\":1,\"voltage\":26.503002},{\"current\":0.0,\"status\":1,\"voltage\":26.503002},{\"current\":0.0,\"status\":1,\"voltage\":26.503002}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301894\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472933", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:32", + "echoMap": {}, + "deviceId": "1021030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2598044\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"142836176\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"400 days, 22:45:57.24\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2598049\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:18\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.259,\"status\":1,\"voltage\":26.274002},{\"current\":0.264,\"status\":1,\"voltage\":26.274002},{\"current\":0.57600003,\"status\":1,\"voltage\":26.274002},{\"current\":0.272,\"status\":1,\"voltage\":26.274002},{\"current\":0.33900002,\"status\":1,\"voltage\":26.274002},{\"current\":0.27800003,\"status\":1,\"voltage\":26.274002},{\"current\":0.001,\"status\":1,\"voltage\":26.274002},{\"current\":0.001,\"status\":1,\"voltage\":26.274002},{\"current\":0.001,\"status\":1,\"voltage\":26.274002},{\"current\":0.001,\"status\":1,\"voltage\":26.864002},{\"current\":0.003,\"status\":1,\"voltage\":26.864002},{\"current\":0.001,\"status\":1,\"voltage\":26.864002},{\"current\":0.001,\"status\":1,\"voltage\":26.864002},{\"current\":0.001,\"status\":1,\"voltage\":26.864002},{\"current\":0.001,\"status\":1,\"voltage\":26.864002},{\"current\":0.001,\"status\":1,\"voltage\":26.864002}],\"fanSpeeds\":[0,0],\"humidity\":43,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303608\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472934", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:33", + "echoMap": {}, + "deviceId": "1021030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8460956\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"471231203\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"83 days, 20:23:58.82\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8460961\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:7b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.286,\"status\":1,\"voltage\":26.798},{\"current\":0.22500001,\"status\":1,\"voltage\":26.798},{\"current\":0.316,\"status\":1,\"voltage\":26.798},{\"current\":0.277,\"status\":1,\"voltage\":26.798},{\"current\":0.568,\"status\":1,\"voltage\":26.798},{\"current\":0.26700002,\"status\":1,\"voltage\":26.798},{\"current\":0.26900002,\"status\":1,\"voltage\":26.798},{\"current\":0.23500001,\"status\":1,\"voltage\":26.798},{\"current\":0.23400001,\"status\":1,\"voltage\":26.798},{\"current\":0.0,\"status\":1,\"voltage\":26.493002},{\"current\":0.003,\"status\":1,\"voltage\":26.493002},{\"current\":0.001,\"status\":1,\"voltage\":26.493002},{\"current\":0.001,\"status\":1,\"voltage\":26.493002},{\"current\":0.001,\"status\":1,\"voltage\":26.493002},{\"current\":0.001,\"status\":1,\"voltage\":26.493002},{\"current\":0.001,\"status\":1,\"voltage\":26.493002}],\"fanSpeeds\":[0,0],\"humidity\":39,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301594\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472935", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:34", + "echoMap": {}, + "deviceId": "1021030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8461025\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"471229411\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"84 days, 14:50:29.96\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8461030\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:52\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.254,\"status\":1,\"voltage\":26.715002},{\"current\":0.252,\"status\":1,\"voltage\":26.715002},{\"current\":0.263,\"status\":1,\"voltage\":26.715002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.715002},{\"current\":0.268,\"status\":1,\"voltage\":26.715002},{\"current\":0.32500002,\"status\":1,\"voltage\":26.715002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.715002},{\"current\":0.52400005,\"status\":1,\"voltage\":26.715002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.715002},{\"current\":0.24100001,\"status\":1,\"voltage\":27.275002},{\"current\":0.002,\"status\":1,\"voltage\":27.275002},{\"current\":0.28100002,\"status\":1,\"voltage\":27.275002},{\"current\":0.27,\"status\":1,\"voltage\":27.275002},{\"current\":0.001,\"status\":1,\"voltage\":27.275002},{\"current\":0.0,\"status\":1,\"voltage\":27.275002},{\"current\":0.0,\"status\":1,\"voltage\":27.275002}],\"fanSpeeds\":[0,0],\"humidity\":40,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0022512208301895\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472936", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:34", + "echoMap": {}, + "deviceId": "1021030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8461025\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"471233220\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"84 days, 6:56:54.61\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8461030\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:08\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.286,\"status\":1,\"voltage\":26.698002},{\"current\":0.28,\"status\":1,\"voltage\":26.698002},{\"current\":0.25,\"status\":1,\"voltage\":26.698002},{\"current\":0.24000001,\"status\":1,\"voltage\":26.698002},{\"current\":0.0,\"status\":1,\"voltage\":26.698002},{\"current\":0.0,\"status\":1,\"voltage\":26.698002},{\"current\":0.0,\"status\":1,\"voltage\":26.698002},{\"current\":0.0,\"status\":1,\"voltage\":26.698002},{\"current\":0.0,\"status\":1,\"voltage\":26.698002},{\"current\":0.0,\"status\":1,\"voltage\":26.527},{\"current\":0.003,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303592\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:34", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472937", + "createdBy": "0", + "createdTime": "2025-12-01 15:51:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:35", + "echoMap": {}, + "deviceId": "1021030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.170.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"8461031\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"471232924\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"83 days, 16:10:15.67\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"8461036\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:48\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":26.574001},{\"current\":0.22200002,\"status\":1,\"voltage\":26.574001},{\"current\":0.24700001,\"status\":1,\"voltage\":26.574001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.574001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.574001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.574001},{\"current\":0.25800002,\"status\":1,\"voltage\":26.574001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.574001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.574001},{\"current\":0.22200002,\"status\":1,\"voltage\":26.863},{\"current\":0.003,\"status\":1,\"voltage\":26.863},{\"current\":0.001,\"status\":1,\"voltage\":26.863},{\"current\":0.001,\"status\":1,\"voltage\":26.863},{\"current\":0.001,\"status\":1,\"voltage\":26.863},{\"current\":0.001,\"status\":1,\"voltage\":26.863},{\"current\":0.001,\"status\":1,\"voltage\":26.863}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301543\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706388112917472913", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"538417\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:31:59.11\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bf:e9:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"9\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":381167746,\"inFlow\":0,\"lastChangeTime\":\"166 days, 21:14:41.48\",\"lastInBytes\":381167746,\"lastOutBytes\":2373285838,\"outBytes\":2373285838,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":294,\"inBytes\":1012168103,\"inFlow\":53,\"lastChangeTime\":\"22 days, 6:32:10.02\",\"lastInBytes\":1012168103,\"lastOutBytes\":1131511202,\"outBytes\":1131511202,\"outFlow\":241,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3527671,\"inBytes\":1530652504,\"inFlow\":19611,\"lastChangeTime\":\"137 days, 7:13:53.29\",\"lastInBytes\":1530652504,\"lastOutBytes\":2556917575,\"outBytes\":2556917575,\"outFlow\":3508060,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":529,\"inBytes\":483895499,\"inFlow\":85,\"lastChangeTime\":\"160 days, 21:24:37.90\",\"lastInBytes\":483895499,\"lastOutBytes\":3875228246,\"outBytes\":3875228246,\"outFlow\":444,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":217,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:18.28\",\"lastInBytes\":0,\"lastOutBytes\":322556691,\"outBytes\":322556691,\"outFlow\":217,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3540811,\"inBytes\":2645986784,\"inFlow\":3518645,\"lastChangeTime\":\"0:31:59.10\",\"lastInBytes\":2645986784,\"lastOutBytes\":704648821,\"outBytes\":704648821,\"outFlow\":22166,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1947913161,\"inFlow\":0,\"lastChangeTime\":\"0:17:28.22\",\"lastInBytes\":1947913161,\"lastOutBytes\":39221857,\"outBytes\":39221857,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:31.720461000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472914", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193233\",\"inUnknownProtos\":\"2853029352\",\"index\":\"634\",\"lastChange\":\"118 days, 10:13:44.61\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:31:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1718399140\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"150027155\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":407069,\"inBytes\":2759422359,\"inFlow\":397069,\"lastChangeTime\":\"41 days, 13:01:16.45\",\"lastInBytes\":2759422359,\"lastOutBytes\":3983823855,\"outBytes\":3983823855,\"outFlow\":9999,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":397181,\"inBytes\":882724676,\"inFlow\":387361,\"lastChangeTime\":\"41 days, 13:01:22.85\",\"lastInBytes\":882724676,\"lastOutBytes\":3605817945,\"outBytes\":3605817945,\"outFlow\":9819,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406253,\"inBytes\":308371842,\"inFlow\":396327,\"lastChangeTime\":\"41 days, 13:01:36.39\",\"lastInBytes\":308371842,\"lastOutBytes\":2316393030,\"outBytes\":2316393030,\"outFlow\":9926,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":401551,\"inBytes\":3099951863,\"inFlow\":391705,\"lastChangeTime\":\"41 days, 13:01:41.01\",\"lastInBytes\":3099951863,\"lastOutBytes\":3052177914,\"outBytes\":3052177914,\"outFlow\":9846,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407049,\"inBytes\":4128940961,\"inFlow\":397135,\"lastChangeTime\":\"41 days, 13:01:29.36\",\"lastInBytes\":4128940961,\"lastOutBytes\":2852932327,\"outBytes\":2852932327,\"outFlow\":9914,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407399,\"inBytes\":1363773769,\"inFlow\":397327,\"lastChangeTime\":\"41 days, 13:01:26.24\",\"lastInBytes\":1363773769,\"lastOutBytes\":1846359350,\"outBytes\":1846359350,\"outFlow\":10071,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":272218,\"inBytes\":1441190679,\"inFlow\":265339,\"lastChangeTime\":\"41 days, 10:17:38.54\",\"lastInBytes\":1441190679,\"lastOutBytes\":911662077,\"outBytes\":911662077,\"outFlow\":6879,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1019651,\"inBytes\":3931255070,\"inFlow\":995682,\"lastChangeTime\":\"474 days, 20:18:30.34\",\"lastInBytes\":3931255070,\"lastOutBytes\":2140683976,\"outBytes\":2140683976,\"outFlow\":23969,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1034123,\"inBytes\":2998749332,\"inFlow\":1009697,\"lastChangeTime\":\"474 days, 20:18:20.77\",\"lastInBytes\":2998749332,\"lastOutBytes\":537794359,\"outBytes\":537794359,\"outFlow\":24425,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":408392,\"inBytes\":3887814724,\"inFlow\":398355,\"lastChangeTime\":\"41 days, 13:01:26.82\",\"lastInBytes\":3887814724,\"lastOutBytes\":1285475123,\"outBytes\":1285475123,\"outFlow\":10036,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":408482,\"inBytes\":3783216027,\"inFlow\":398500,\"lastChangeTime\":\"41 days, 13:01:41.62\",\"lastInBytes\":3783216027,\"lastOutBytes\":1647042031,\"outBytes\":1647042031,\"outFlow\":9982,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":407437,\"inBytes\":1683512451,\"inFlow\":397495,\"lastChangeTime\":\"41 days, 13:01:26.52\",\"lastInBytes\":1683512451,\"lastOutBytes\":3853048196,\"outBytes\":3853048196,\"outFlow\":9941,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":404354,\"inBytes\":2510213785,\"inFlow\":394453,\"lastChangeTime\":\"41 days, 13:01:58.54\",\"lastInBytes\":2510213785,\"lastOutBytes\":2500354750,\"outBytes\":2500354750,\"outFlow\":9900,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":406713,\"inBytes\":4171297174,\"inFlow\":396860,\"lastChangeTime\":\"41 days, 13:01:51.67\",\"lastInBytes\":4171297174,\"lastOutBytes\":1603527016,\"outBytes\":1603527016,\"outFlow\":9853,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":14129,\"inFlow\":0,\"lastChangeTime\":\"118 days, 10:13:34.77\",\"lastInBytes\":14129,\"lastOutBytes\":2932158,\"outBytes\":2932158,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":876104773,\"inFlow\":1,\"lastChangeTime\":\"118 days, 10:13:53.97\",\"lastInBytes\":876104773,\"lastOutBytes\":960939431,\"outBytes\":960939431,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6800545,\"inBytes\":2993169505,\"inFlow\":171745,\"lastChangeTime\":\"143 days, 0:16:47.12\",\"lastInBytes\":2993169505,\"lastOutBytes\":2896969613,\"outBytes\":2896969613,\"outFlow\":6628800,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.724197000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472915", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193227\",\"inUnknownProtos\":\"3524140207\",\"index\":\"634\",\"lastChange\":\"0:01:21.23\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:41:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3642775862\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"150026651\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":407083,\"inBytes\":686990323,\"inFlow\":397087,\"lastChangeTime\":\"41 days, 13:01:34.24\",\"lastInBytes\":686990323,\"lastOutBytes\":3683124558,\"outBytes\":3683124558,\"outFlow\":9995,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407902,\"inBytes\":1271147988,\"inFlow\":397908,\"lastChangeTime\":\"41 days, 13:00:50.93\",\"lastInBytes\":1271147988,\"lastOutBytes\":3199682776,\"outBytes\":3199682776,\"outFlow\":9994,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":407244,\"inBytes\":536906899,\"inFlow\":397313,\"lastChangeTime\":\"41 days, 13:01:26.88\",\"lastInBytes\":536906899,\"lastOutBytes\":1995062974,\"outBytes\":1995062974,\"outFlow\":9931,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413306,\"inBytes\":1037210591,\"inFlow\":402964,\"lastChangeTime\":\"45 days, 22:03:30.54\",\"lastInBytes\":1037210591,\"lastOutBytes\":1023359496,\"outBytes\":1023359496,\"outFlow\":10342,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":412600,\"inBytes\":2225934872,\"inFlow\":402448,\"lastChangeTime\":\"45 days, 22:03:20.34\",\"lastInBytes\":2225934872,\"lastOutBytes\":3524044320,\"outBytes\":3524044320,\"outFlow\":10151,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":889567,\"inBytes\":2517158159,\"inFlow\":867148,\"lastChangeTime\":\"45 days, 22:03:19.55\",\"lastInBytes\":2517158159,\"lastOutBytes\":2310305718,\"outBytes\":2310305718,\"outFlow\":22418,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":886092,\"inBytes\":672053543,\"inFlow\":863782,\"lastChangeTime\":\"45 days, 22:03:25.45\",\"lastInBytes\":672053543,\"lastOutBytes\":1123290707,\"outBytes\":1123290707,\"outFlow\":22310,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":405775,\"inBytes\":1088475148,\"inFlow\":395817,\"lastChangeTime\":\"68 days, 11:12:34.03\",\"lastInBytes\":1088475148,\"lastOutBytes\":725400404,\"outBytes\":725400404,\"outFlow\":9958,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":883590,\"inBytes\":255918793,\"inFlow\":861667,\"lastChangeTime\":\"41 days, 13:01:28.49\",\"lastInBytes\":255918793,\"lastOutBytes\":3314699260,\"outBytes\":3314699260,\"outFlow\":21923,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":493972,\"inBytes\":1238413256,\"inFlow\":483499,\"lastChangeTime\":\"263 days, 16:55:51.04\",\"lastInBytes\":1238413256,\"lastOutBytes\":174328420,\"outBytes\":174328420,\"outFlow\":10473,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":884121,\"inBytes\":2451451143,\"inFlow\":862361,\"lastChangeTime\":\"41 days, 13:01:27.88\",\"lastInBytes\":2451451143,\"lastOutBytes\":2553395199,\"outBytes\":2553395199,\"outFlow\":21760,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":407118,\"inBytes\":4177970937,\"inFlow\":397038,\"lastChangeTime\":\"41 days, 13:01:21.96\",\"lastInBytes\":4177970937,\"lastOutBytes\":1108217248,\"outBytes\":1108217248,\"outFlow\":10079,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":716,\"inBytes\":810887785,\"inFlow\":319,\"lastChangeTime\":\"68 days, 11:12:54.85\",\"lastInBytes\":810887785,\"lastOutBytes\":1666887522,\"outBytes\":1666887522,\"outFlow\":397,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":269478401,\"inFlow\":1,\"lastChangeTime\":\"0:01:21.23\",\"lastInBytes\":269478401,\"lastOutBytes\":383517500,\"outBytes\":383517500,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6931729,\"inBytes\":931168725,\"inFlow\":177793,\"lastChangeTime\":\"118 days, 11:03:41.35\",\"lastInBytes\":931168725,\"lastOutBytes\":3914481378,\"outBytes\":3914481378,\"outFlow\":6753936,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.707184000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472916", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193378\",\"inUnknownProtos\":\"1687589346\",\"index\":\"634\",\"lastChange\":\"0:01:25.18\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:36:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"461922568\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":407398,\"inBytes\":1636308795,\"inFlow\":397163,\"lastChangeTime\":\"45 days, 22:03:02.05\",\"lastInBytes\":1636308795,\"lastOutBytes\":3495369710,\"outBytes\":3495369710,\"outFlow\":10235,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":367,\"inBytes\":2991449447,\"inFlow\":49,\"lastChangeTime\":\"120 days, 10:07:10.56\",\"lastInBytes\":2991449447,\"lastOutBytes\":1349648598,\"outBytes\":1349648598,\"outFlow\":318,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1052335,\"inBytes\":1220624477,\"inFlow\":1027333,\"lastChangeTime\":\"68 days, 11:06:29.62\",\"lastInBytes\":1220624477,\"lastOutBytes\":1042431944,\"outBytes\":1042431944,\"outFlow\":25001,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407501,\"inBytes\":1538922455,\"inFlow\":397514,\"lastChangeTime\":\"41 days, 13:01:33.15\",\"lastInBytes\":1538922455,\"lastOutBytes\":2783368353,\"outBytes\":2783368353,\"outFlow\":9986,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":408639,\"inBytes\":1109071100,\"inFlow\":399987,\"lastChangeTime\":\"68 days, 11:06:46.59\",\"lastInBytes\":1109071100,\"lastOutBytes\":1687589346,\"outBytes\":1687589346,\"outFlow\":8651,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407005,\"inBytes\":1257337589,\"inFlow\":397030,\"lastChangeTime\":\"41 days, 13:01:27.89\",\"lastInBytes\":1257337589,\"lastOutBytes\":537112443,\"outBytes\":537112443,\"outFlow\":9974,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":14707,\"inFlow\":0,\"lastChangeTime\":\"328 days, 9:21:24.92\",\"lastInBytes\":14707,\"lastOutBytes\":2773104,\"outBytes\":2773104,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6092,\"inFlow\":0,\"lastChangeTime\":\"118 days, 10:57:37.10\",\"lastInBytes\":6092,\"lastOutBytes\":111746,\"outBytes\":111746,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":269512757,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.18\",\"lastInBytes\":269512757,\"lastOutBytes\":383838571,\"outBytes\":383838571,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2688930,\"inBytes\":959764888,\"inFlow\":67748,\"lastChangeTime\":\"328 days, 9:21:07.62\",\"lastInBytes\":959764888,\"lastOutBytes\":397141314,\"outBytes\":397141314,\"outFlow\":2621181,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.708373000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472917", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193217\",\"inUnknownProtos\":\"3309730710\",\"index\":\"634\",\"lastChange\":\"0:01:20.72\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:5b:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1799271003\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"150025683\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":882585,\"inBytes\":1451304884,\"inFlow\":860649,\"lastChangeTime\":\"41 days, 13:01:16.45\",\"lastInBytes\":1451304884,\"lastOutBytes\":4140742038,\"outBytes\":4140742038,\"outFlow\":21936,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":272452,\"inBytes\":3104988252,\"inFlow\":265588,\"lastChangeTime\":\"41 days, 10:17:39.46\",\"lastInBytes\":3104988252,\"lastOutBytes\":1894335467,\"outBytes\":1894335467,\"outFlow\":6864,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":424472,\"inBytes\":2795083512,\"inFlow\":415398,\"lastChangeTime\":\"5 days, 9:31:27.34\",\"lastInBytes\":2795083512,\"lastOutBytes\":749350473,\"outBytes\":749350473,\"outFlow\":9073,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":884099,\"inBytes\":2473008940,\"inFlow\":861989,\"lastChangeTime\":\"41 days, 13:01:47.06\",\"lastInBytes\":2473008940,\"lastOutBytes\":1202132923,\"outBytes\":1202132923,\"outFlow\":22109,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1084627,\"inBytes\":2436534412,\"inFlow\":1058717,\"lastChangeTime\":\"474 days, 20:17:44.81\",\"lastInBytes\":2436534412,\"lastOutBytes\":3309730710,\"outBytes\":3309730710,\"outFlow\":25909,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":411763,\"inBytes\":432348430,\"inFlow\":401083,\"lastChangeTime\":\"45 days, 22:02:38.44\",\"lastInBytes\":432348430,\"lastOutBytes\":3892825387,\"outBytes\":3892825387,\"outFlow\":10679,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":885162,\"inBytes\":3665714724,\"inFlow\":862573,\"lastChangeTime\":\"45 days, 22:02:46.39\",\"lastInBytes\":3665714724,\"lastOutBytes\":3182292971,\"outBytes\":3182292971,\"outFlow\":22588,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":713,\"inBytes\":746796819,\"inFlow\":318,\"lastChangeTime\":\"50 days, 0:37:31.54\",\"lastInBytes\":746796819,\"lastOutBytes\":1651985102,\"outBytes\":1651985102,\"outFlow\":394,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":709,\"inBytes\":3198575768,\"inFlow\":319,\"lastChangeTime\":\"50 days, 0:40:29.59\",\"lastInBytes\":3198575768,\"lastOutBytes\":1946404059,\"outBytes\":1946404059,\"outFlow\":390,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5251,\"inFlow\":0,\"lastChangeTime\":\"118 days, 10:23:05.85\",\"lastInBytes\":5251,\"lastOutBytes\":4307900,\"outBytes\":4307900,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":876932582,\"inFlow\":1,\"lastChangeTime\":\"0:01:20.71\",\"lastInBytes\":876932582,\"lastOutBytes\":965497609,\"outBytes\":965497609,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4865719,\"inBytes\":3826380765,\"inFlow\":125953,\"lastChangeTime\":\"118 days, 10:23:00.63\",\"lastInBytes\":3826380765,\"lastOutBytes\":2065606389,\"outBytes\":2065606389,\"outFlow\":4739765,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.723196000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472918", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193098\",\"inUnknownProtos\":\"1109220309\",\"index\":\"634\",\"lastChange\":\"0:01:25.68\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:94:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3012751414\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"150023631\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:36\",\"info\":{\"portInfoList\":[{\"flow\":407525,\"inBytes\":401802072,\"inFlow\":397558,\"lastChangeTime\":\"186 days, 10:53:42.94\",\"lastInBytes\":401802072,\"lastOutBytes\":1823942211,\"outBytes\":1823942211,\"outFlow\":9966,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":408026,\"inBytes\":1963045843,\"inFlow\":397905,\"lastChangeTime\":\"186 days, 10:53:50.40\",\"lastInBytes\":1963045843,\"lastOutBytes\":3114365130,\"outBytes\":3114365130,\"outFlow\":10120,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":407524,\"inBytes\":1385595770,\"inFlow\":397522,\"lastChangeTime\":\"186 days, 10:53:48.35\",\"lastInBytes\":1385595770,\"lastOutBytes\":2800063782,\"outBytes\":2800063782,\"outFlow\":10002,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407257,\"inBytes\":2402883110,\"inFlow\":397221,\"lastChangeTime\":\"41 days, 13:01:25.93\",\"lastInBytes\":2402883110,\"lastOutBytes\":2837849009,\"outBytes\":2837849009,\"outFlow\":10036,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":405461,\"inBytes\":2397257832,\"inFlow\":397277,\"lastChangeTime\":\"263 days, 16:55:32.66\",\"lastInBytes\":2397257832,\"lastOutBytes\":1109134141,\"outBytes\":1109134141,\"outFlow\":8184,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":876117,\"inBytes\":3176964784,\"inFlow\":853568,\"lastChangeTime\":\"45 days, 22:02:49.14\",\"lastInBytes\":3176964784,\"lastOutBytes\":2600083722,\"outBytes\":2600083722,\"outFlow\":22548,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407221,\"inBytes\":4129857977,\"inFlow\":397257,\"lastChangeTime\":\"41 days, 13:01:35.86\",\"lastInBytes\":4129857977,\"lastOutBytes\":4219737313,\"outBytes\":4219737313,\"outFlow\":9963,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":402565,\"inBytes\":1762298122,\"inFlow\":392731,\"lastChangeTime\":\"474 days, 20:18:08.58\",\"lastInBytes\":1762298122,\"lastOutBytes\":2082653050,\"outBytes\":2082653050,\"outFlow\":9834,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":404128,\"inBytes\":2921686355,\"inFlow\":394147,\"lastChangeTime\":\"45 days, 22:02:51.33\",\"lastInBytes\":2921686355,\"lastOutBytes\":3936143051,\"outBytes\":3936143051,\"outFlow\":9981,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":403271,\"inBytes\":3794294169,\"inFlow\":393438,\"lastChangeTime\":\"45 days, 22:02:59.52\",\"lastInBytes\":3794294169,\"lastOutBytes\":2476153266,\"outBytes\":2476153266,\"outFlow\":9832,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":876632,\"inBytes\":1483712357,\"inFlow\":854260,\"lastChangeTime\":\"45 days, 22:03:03.89\",\"lastInBytes\":1483712357,\"lastOutBytes\":1953754566,\"outBytes\":1953754566,\"outFlow\":22372,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":891615,\"inBytes\":3452646523,\"inFlow\":869656,\"lastChangeTime\":\"41 days, 13:01:02.95\",\"lastInBytes\":3452646523,\"lastOutBytes\":271191856,\"outBytes\":271191856,\"outFlow\":21959,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5357044,\"inFlow\":0,\"lastChangeTime\":\"118 days, 10:40:58.90\",\"lastInBytes\":5357044,\"lastOutBytes\":234098771,\"outBytes\":234098771,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":83,\"inBytes\":876930700,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.67\",\"lastInBytes\":876930700,\"lastOutBytes\":965166895,\"outBytes\":965166895,\"outFlow\":82,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6326419,\"inBytes\":1573700478,\"inFlow\":162093,\"lastChangeTime\":\"118 days, 10:40:57.23\",\"lastInBytes\":1573700478,\"lastOutBytes\":235168248,\"outBytes\":235168248,\"outFlow\":6164325,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.721362000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472919", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:36", + "echoMap": {}, + "deviceId": "1021040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193199\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:29.76\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:36:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:35\",\"info\":{\"portInfoList\":[{\"flow\":414129,\"inBytes\":178804852,\"inFlow\":403941,\"lastChangeTime\":\"186 days, 10:53:54.90\",\"lastInBytes\":178804852,\"lastOutBytes\":2758743171,\"outBytes\":2758743171,\"outFlow\":10188,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":414171,\"inBytes\":3621994327,\"inFlow\":403984,\"lastChangeTime\":\"186 days, 10:53:58.05\",\"lastInBytes\":3621994327,\"lastOutBytes\":3448632557,\"outBytes\":3448632557,\"outFlow\":10186,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414076,\"inBytes\":2592814706,\"inFlow\":403955,\"lastChangeTime\":\"186 days, 10:53:59.08\",\"lastInBytes\":2592814706,\"lastOutBytes\":2719220161,\"outBytes\":2719220161,\"outFlow\":10121,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":276932,\"inBytes\":2760110050,\"inFlow\":269950,\"lastChangeTime\":\"201 days, 9:18:34.88\",\"lastInBytes\":2760110050,\"lastOutBytes\":3568290104,\"outBytes\":3568290104,\"outFlow\":6982,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":69284,\"inFlow\":0,\"lastChangeTime\":\"328 days, 9:03:23.19\",\"lastInBytes\":69284,\"lastOutBytes\":1264289,\"outBytes\":1264289,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":63476,\"inFlow\":0,\"lastChangeTime\":\"328 days, 9:04:36.24\",\"lastInBytes\":63476,\"lastOutBytes\":4349097,\"outBytes\":4349097,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":647183,\"inFlow\":0,\"lastChangeTime\":\"118 days, 10:18:52.97\",\"lastInBytes\":647183,\"lastOutBytes\":29596053,\"outBytes\":29596053,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":876935376,\"inFlow\":1,\"lastChangeTime\":\"328 days, 9:03:49.62\",\"lastInBytes\":876935376,\"lastOutBytes\":964697767,\"outBytes\":964697767,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1527607,\"inBytes\":592984099,\"inFlow\":40137,\"lastChangeTime\":\"328 days, 9:04:06.58\",\"lastInBytes\":592984099,\"lastOutBytes\":3413656032,\"outBytes\":3413656032,\"outFlow\":1487469,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.705204000\"}}", + "lastDiagTime": "2026-02-02 14:38:36", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472920", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:35", + "echoMap": {}, + "deviceId": "1021040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.170.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface170\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193387\",\"inUnknownProtos\":\"1361609330\",\"index\":\"634\",\"lastChange\":\"0:01:24.23\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:3e:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2866223041\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"150024509\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.170.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:35\",\"info\":{\"portInfoList\":[{\"flow\":896368,\"inBytes\":572255814,\"inFlow\":874175,\"lastChangeTime\":\"41 days, 13:01:18.05\",\"lastInBytes\":572255814,\"lastOutBytes\":1903317150,\"outBytes\":1903317150,\"outFlow\":22193,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":277071,\"inBytes\":2038383378,\"inFlow\":270299,\"lastChangeTime\":\"41 days, 10:17:19.36\",\"lastInBytes\":2038383378,\"lastOutBytes\":1576541951,\"outBytes\":1576541951,\"outFlow\":6771,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":276374,\"inBytes\":4068704770,\"inFlow\":269466,\"lastChangeTime\":\"41 days, 10:17:24.26\",\"lastInBytes\":4068704770,\"lastOutBytes\":3054296340,\"outBytes\":3054296340,\"outFlow\":6908,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":276495,\"inBytes\":3887836923,\"inFlow\":269440,\"lastChangeTime\":\"41 days, 10:17:22.79\",\"lastInBytes\":3887836923,\"lastOutBytes\":754472847,\"outBytes\":754472847,\"outFlow\":7055,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276809,\"inBytes\":3441182736,\"inFlow\":269905,\"lastChangeTime\":\"41 days, 10:17:32.53\",\"lastInBytes\":3441182736,\"lastOutBytes\":1361609330,\"outBytes\":1361609330,\"outFlow\":6904,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":277218,\"inBytes\":2339285202,\"inFlow\":270068,\"lastChangeTime\":\"41 days, 10:17:24.91\",\"lastInBytes\":2339285202,\"lastOutBytes\":1258917879,\"outBytes\":1258917879,\"outFlow\":7150,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":898384,\"inBytes\":1203383061,\"inFlow\":876488,\"lastChangeTime\":\"41 days, 13:01:32.45\",\"lastInBytes\":1203383061,\"lastOutBytes\":4293990219,\"outBytes\":4293990219,\"outFlow\":21896,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":276684,\"inBytes\":1560010578,\"inFlow\":269666,\"lastChangeTime\":\"201 days, 9:18:28.16\",\"lastInBytes\":1560010578,\"lastOutBytes\":2951721370,\"outBytes\":2951721370,\"outFlow\":7018,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":276801,\"inBytes\":4140263413,\"inFlow\":269761,\"lastChangeTime\":\"186 days, 10:52:46.70\",\"lastInBytes\":4140263413,\"lastOutBytes\":1421966821,\"outBytes\":1421966821,\"outFlow\":7039,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":277438,\"inBytes\":916330053,\"inFlow\":270445,\"lastChangeTime\":\"186 days, 10:52:40.41\",\"lastInBytes\":916330053,\"lastOutBytes\":1683936826,\"outBytes\":1683936826,\"outFlow\":6993,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2636457,\"inFlow\":0,\"lastChangeTime\":\"357 days, 12:18:44.91\",\"lastInBytes\":2636457,\"lastOutBytes\":109953392,\"outBytes\":109953392,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":876937369,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.22\",\"lastInBytes\":876937369,\"lastOutBytes\":965145187,\"outBytes\":965145187,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4028485,\"inBytes\":1493156423,\"inFlow\":104692,\"lastChangeTime\":\"118 days, 10:04:07.67\",\"lastInBytes\":1493156423,\"lastOutBytes\":2712149393,\"outBytes\":2712149393,\"outFlow\":3923793,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:31.850154000\"}}", + "lastDiagTime": "2026-02-02 14:38:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388112917472921", + "createdBy": "0", + "createdTime": "2025-12-01 15:49:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:58", + "echoMap": {}, + "deviceId": "1021040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.169.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif169\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"7\",\"lastChange\":\"0:03:02.77\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:17:45\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"8\",\"temperature\":\"36\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.169.64\",\"index\":\"7\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"35271\",\"0\",\"0\",\"0\",\"0\",\"0\",\"3952\",\"1766023\",\"37\",\"650871\",\"10366\",\"10484\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:57\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.34\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34439,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":563,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32639,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":779,\"opticalVoltage\":3297,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36060,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":562,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36720,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":638,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36464,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":835,\"opticalVoltage\":3297,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33479,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":654,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35639,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":559,\"opticalVoltage\":3269,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34259,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":553,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37860,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3295,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33630,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":601,\"opticalVoltage\":3309,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33360,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":612,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35549,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":562,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":80400,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":3,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35009,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":561,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":76244,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":181,\"opticalVoltage\":3333,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34919,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":612,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37439,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":517,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37919,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":459,\"opticalVoltage\":3355,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38189,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":841,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":451,\"inBytes\":1602642118,\"inFlow\":71,\"lastChangeTime\":\"357 days, 11:38:15.53\",\"lastInBytes\":1602642118,\"lastOutBytes\":1361256496,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":248,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3316,\"outBytes\":1361256496,\"outFlow\":379,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2196040650,\"inFlow\":0,\"lastChangeTime\":\"357 days, 11:37:47.97\",\"lastInBytes\":2196040650,\"lastOutBytes\":793859695,\"opticalBiasCurrent\":33299,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":578,\"opticalVoltage\":3340,\"outBytes\":793859695,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":533238,\"inBytes\":2994282809,\"inFlow\":11230,\"lastChangeTime\":\"0:04:11.29\",\"lastInBytes\":2994282809,\"lastOutBytes\":2466048207,\"opticalBiasCurrent\":39270,\"opticalReceivePower\":358,\"opticalTemperature\":46,\"opticalTransmitPower\":837,\"opticalVoltage\":3328,\"outBytes\":2466048207,\"outFlow\":522007,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":8432,\"inBytes\":4280315616,\"inFlow\":2526,\"lastChangeTime\":\"0:04:14.68\",\"lastInBytes\":4280315616,\"lastOutBytes\":488712070,\"opticalBiasCurrent\":33599,\"opticalReceivePower\":107,\"opticalTemperature\":48,\"opticalTransmitPower\":561,\"opticalVoltage\":3314,\"outBytes\":488712070,\"outFlow\":5906,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4108497,\"inBytes\":2851177597,\"inFlow\":3976166,\"lastChangeTime\":\"118 days, 9:55:39.89\",\"lastInBytes\":2851177597,\"lastOutBytes\":2154427591,\"opticalBiasCurrent\":10055,\"opticalReceivePower\":181,\"opticalTemperature\":44,\"opticalTransmitPower\":247,\"opticalVoltage\":3319,\"outBytes\":2154427591,\"outFlow\":132330,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1559280,\"inBytes\":427141598,\"inFlow\":1508544,\"lastChangeTime\":\"328 days, 8:44:49.50\",\"lastInBytes\":427141598,\"lastOutBytes\":2793635781,\"opticalBiasCurrent\":10140,\"opticalReceivePower\":192,\"opticalTemperature\":45,\"opticalTransmitPower\":254,\"opticalVoltage\":3332,\"outBytes\":2793635781,\"outFlow\":50735,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6569691,\"inBytes\":704377406,\"inFlow\":6361234,\"lastChangeTime\":\"118 days, 10:32:23.81\",\"lastInBytes\":704377406,\"lastOutBytes\":1952189439,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":206,\"opticalTemperature\":45,\"opticalTransmitPower\":242,\"opticalVoltage\":3338,\"outBytes\":1952189439,\"outFlow\":208456,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5054126,\"inBytes\":741623024,\"inFlow\":4892387,\"lastChangeTime\":\"118 days, 10:14:31.02\",\"lastInBytes\":741623024,\"lastOutBytes\":194226906,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":223,\"opticalTemperature\":36,\"opticalTransmitPower\":237,\"opticalVoltage\":3310,\"outBytes\":194226906,\"outFlow\":161738,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2800783,\"inBytes\":3655816514,\"inFlow\":2713350,\"lastChangeTime\":\"328 days, 9:02:02.01\",\"lastInBytes\":3655816514,\"lastOutBytes\":3457924390,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":49,\"opticalTemperature\":42,\"opticalTransmitPower\":238,\"opticalVoltage\":3368,\"outBytes\":3457924390,\"outFlow\":87432,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7194041,\"inBytes\":40280278,\"inFlow\":6965397,\"lastChangeTime\":\"118 days, 10:55:01.14\",\"lastInBytes\":40280278,\"lastOutBytes\":4011710815,\"opticalBiasCurrent\":10343,\"opticalReceivePower\":106,\"opticalTemperature\":44,\"opticalTransmitPower\":255,\"opticalVoltage\":3319,\"outBytes\":4011710815,\"outFlow\":228643,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7055756,\"inBytes\":3941196485,\"inFlow\":6834739,\"lastChangeTime\":\"143 days, 0:06:44.34\",\"lastInBytes\":3941196485,\"lastOutBytes\":3847357063,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":257,\"opticalTemperature\":42,\"opticalTransmitPower\":238,\"opticalVoltage\":3350,\"outBytes\":3847357063,\"outFlow\":221017,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3671461,\"inBytes\":2104929660,\"inFlow\":29090,\"lastChangeTime\":\"405 days, 16:37:35.50\",\"lastInBytes\":2104929660,\"lastOutBytes\":3696004078,\"opticalBiasCurrent\":10201,\"opticalReceivePower\":167,\"opticalTemperature\":44,\"opticalTransmitPower\":243,\"opticalVoltage\":3340,\"outBytes\":3696004078,\"outFlow\":3642371,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10173,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":254,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10133,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":250,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10357,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":259,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9921,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":257,\"opticalVoltage\":3369,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":240,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10347,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":249,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10373,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":258,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10819,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":248,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3374,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9975,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":255,\"opticalVoltage\":3323,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9449,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":264,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":238,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9982,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":246,\"opticalVoltage\":3356,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":244,\"opticalVoltage\":3374,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":16515,\"inBytes\":1670950559,\"inFlow\":7462,\"lastChangeTime\":\"0:03:10.69\",\"lastInBytes\":1670950559,\"lastOutBytes\":1029468206,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1029468206,\"outFlow\":9053,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13822353,\"inBytes\":111967691,\"inFlow\":5375060,\"lastChangeTime\":\"0:03:15.04\",\"lastInBytes\":111967691,\"lastOutBytes\":823377416,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":823377416,\"outFlow\":8447292,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":44332,\"inBytes\":3497848276,\"inFlow\":22651,\"lastChangeTime\":\"357 days, 11:40:55.03\",\"lastInBytes\":3497848276,\"lastOutBytes\":1279771077,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1279771077,\"outFlow\":21681,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":349,\"inBytes\":528042775,\"inFlow\":11,\"lastChangeTime\":\"427 days, 21:27:06.03\",\"lastInBytes\":528042775,\"lastOutBytes\":2731688152,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2731688152,\"outFlow\":338,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1122226,\"inBytes\":420621590,\"inFlow\":30492,\"lastChangeTime\":\"115 days, 22:19:46.17\",\"lastInBytes\":420621590,\"lastOutBytes\":3481570967,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3481570967,\"outFlow\":1091734,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1920471,\"inBytes\":3473132759,\"inFlow\":285992,\"lastChangeTime\":\"117 days, 8:27:13.16\",\"lastInBytes\":3473132759,\"lastOutBytes\":3987732060,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3987732060,\"outFlow\":1634479,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":12518400,\"inBytes\":2740365541,\"inFlow\":267665,\"lastChangeTime\":\"143 days, 0:54:20.91\",\"lastInBytes\":2740365541,\"lastOutBytes\":2317547824,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2317547824,\"outFlow\":12250735,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1586912,\"inBytes\":1548216668,\"inFlow\":370085,\"lastChangeTime\":\"117 days, 8:27:17.75\",\"lastInBytes\":1548216668,\"lastOutBytes\":4137494524,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4137494524,\"outFlow\":1216827,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10442358,\"inBytes\":3328022086,\"inFlow\":344863,\"lastChangeTime\":\"143 days, 0:54:36.41\",\"lastInBytes\":3328022086,\"lastOutBytes\":3677753075,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3677753075,\"outFlow\":10097495,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":628,\"inBytes\":220757289,\"inFlow\":128,\"lastChangeTime\":\"488 days, 11:38:23.33\",\"lastInBytes\":220757289,\"lastOutBytes\":3079191860,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3079191860,\"outFlow\":500,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":596,\"inBytes\":1430594784,\"inFlow\":158,\"lastChangeTime\":\"488 days, 11:38:56.50\",\"lastInBytes\":1430594784,\"lastOutBytes\":1441685592,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1441685592,\"outFlow\":437,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2854868398,\"inFlow\":0,\"lastChangeTime\":\"41 days, 10:14:03.67\",\"lastInBytes\":2854868398,\"lastOutBytes\":320485720,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":320485720,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":131,\"inBytes\":47543298,\"inFlow\":110,\"lastChangeTime\":\"117 days, 8:26:32.09\",\"lastInBytes\":47543298,\"lastOutBytes\":8325066,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8325066,\"outFlow\":20,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":37,\"inBytes\":7039236,\"inFlow\":17,\"lastChangeTime\":\"117 days, 8:27:17.17\",\"lastInBytes\":7039236,\"lastOutBytes\":8290776,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8290776,\"outFlow\":20,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":496420822,\"inFlow\":0,\"lastChangeTime\":\"118 days, 9:48:35.53\",\"lastInBytes\":496420822,\"lastOutBytes\":105217991,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":105217991,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"118 days, 9:02:41.88\",\"lastInBytes\":0,\"lastOutBytes\":2194730883,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2194730883,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:38.885087000\"}}", + "lastDiagTime": "2026-02-02 14:38:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046413402976506", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:31", + "echoMap": {}, + "deviceId": "1021110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.169.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.77\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"122 days, 10:53:08.54\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10669578\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28549140\",\"inOctets\":\"1172672105\",\"inUcastPkts\":\"873624704\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:fb:f2:e4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"206818915\",\"outQLen\":\"0\",\"outUcastPkts\":\"863559566\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.169.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1022": { + "ndmAlarmHost": [ + { + "id": "707147643531331733", + "createdBy": null, + "createdTime": "2025-12-08 13:46:39", + "updatedBy": null, + "updatedTime": "2025-12-08 13:46:39", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.171.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046177179774977", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1022060002", + "name": "[204](10)同济厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201035004022204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774978", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1022060003", + "name": "[604](10)同济弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774979", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1022060004", + "name": "[602](10)同济编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203041005022602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774980", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1022060005", + "name": "[612](10)同济内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774981", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1022060006", + "name": "[605](10)同济弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774982", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1022060007", + "name": "[603](10)同济编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203041005022603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774983", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1022060008", + "name": "[606](10)同济弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774984", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1022060009", + "name": "[607](10)同济弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774985", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1022060010", + "name": "[620](10)同济消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774986", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1022060011", + "name": "[354](10)同济长通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201083006022354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774987", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1022060012", + "name": "[614](10)同济内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774988", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1022060013", + "name": "[613](10)同济内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774989", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-19 15:42:21", + "echoMap": {}, + "deviceId": "1022060014", + "name": "[610](10)同济环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203055005022610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774990", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1022060015", + "name": "[615](10)同济内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774991", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1022060016", + "name": "[616](10)同济内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774992", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1022060017", + "name": "[355](10)同济长通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201083006022355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774993", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1022060018", + "name": "[356](10)同济长通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201083006022356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774994", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1022060019", + "name": "[352](10)同济B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201040006022352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774995", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1022060020", + "name": "[205](10)同济厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201035004022205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774996", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1022060021", + "name": "[206](10)同济厅6球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201035004022206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774997", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1022060022", + "name": "[701](10)同济2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062204013006022701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774998", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1022060023", + "name": "[320](10)同济2#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179774999", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1022060024", + "name": "[315](10)同济2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775000", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1022060025", + "name": "[314](10)同济2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775001", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1022060026", + "name": "[319](10)同济2#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056005022319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775002", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-12-26 10:41:12", + "echoMap": {}, + "deviceId": "1022060027", + "name": "[359](10)同济2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201036005022359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775003", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1022060028", + "name": "[317](10)同济2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775004", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1022060029", + "name": "[318](10)同济2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775005", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1022060030", + "name": "[316](10)同济2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775006", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1022060031", + "name": "[212](10)同济2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056004022212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775007", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1022060032", + "name": "[348](10)同济#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201045006022348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775008", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1022060033", + "name": "[347](10)同济#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201045006022347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775009", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1022060034", + "name": "[402](10)同济2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201006006022402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775010", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1022060035", + "name": "[349](10)同济#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201045006022349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775011", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1022060036", + "name": "[361](10)同济安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201085006022361", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775012", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1022060037", + "name": "[313](10)同济2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775013", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1022060038", + "name": "[312](10)同济2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201056006022312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775014", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1022060039", + "name": "[503](10)同济票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201030006022503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775015", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1022060040", + "name": "[408](10)同济3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201007006022408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775016", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-12-26 10:19:12", + "echoMap": {}, + "deviceId": "1022060041", + "name": "[358](10)同济1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201036005022358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775017", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1022060042", + "name": "[501](10)同济客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201001005022501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775018", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060043", + "name": "[344](10)同济#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201045006022344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775019", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060044", + "name": "[345](10)同济#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201045006022345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775020", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060045", + "name": "[403](10)同济2#闸出5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201006006022403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775021", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060046", + "name": "[346](10)同济#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201045006022346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775022", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060047", + "name": "[401](10)同济1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201005006022401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775023", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060048", + "name": "[353](10)同济B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201040006022353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775024", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1022060049", + "name": "[202](10)同济厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201035004022202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775025", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1022060050", + "name": "[609](10)同济环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203055005022609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775026", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1022060051", + "name": "[611](10)同济内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001006022611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775027", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1022060052", + "name": "[201](10)同济厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201035004022201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775028", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1022060053", + "name": "[360](10)同济安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201085006022360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775029", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1022060054", + "name": "[302](10)同济1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775030", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1022060055", + "name": "[301](10)同济1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775031", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1022060056", + "name": "[502](10)同济票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201030006022502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775032", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-02-02 10:28:21", + "echoMap": {}, + "deviceId": "1022060057", + "name": "[303](10)同济1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775033", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1022060058", + "name": "[304](10)同济1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775034", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1022060059", + "name": "[308](10)同济1#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775035", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1022060060", + "name": "[311](10)同济1#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775036", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060061", + "name": "[307](10)同济1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775037", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060062", + "name": "[310](10)同济1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775038", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1022060063", + "name": "[306](10)同济1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775039", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1022060064", + "name": "[309](10)同济1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775040", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1022060065", + "name": "[211](10)同济1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055004022211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775041", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1022060066", + "name": "[305](10)同济1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201055006022305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775042", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060067", + "name": "[340](10)同济5#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775043", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060068", + "name": "[339](10)同济5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775044", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1022060069", + "name": "[343](10)同济5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775045", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1022060070", + "name": "[337](10)同济5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775046", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1022060071", + "name": "[215](10)同济5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059004022215", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775047", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1022060072", + "name": "[338](10)同济5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775048", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1022060073", + "name": "[342](10)同济5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775049", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1022060074", + "name": "[341](10)同济5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201059006022341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775050", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1022060075", + "name": "[406](10)同济2#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201006006022406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775051", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1022060076", + "name": "[407](10)同济2#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201006006022407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775052", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1022060077", + "name": "[404](10)同济2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201006006022404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775053", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1022060078", + "name": "[405](10)同济2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201006006022405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775054", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1022060079", + "name": "[601](10)同济车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203042004022601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775055", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1022060080", + "name": "[111](10)同济下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202012006022111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775056", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1022060081", + "name": "[112](10)同济下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202012006022112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775057", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1022060082", + "name": "[704](10)同济下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062204013006022704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775058", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1022060083", + "name": "[350](10)同济#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202017006022350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775059", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1022060084", + "name": "[207](10)同济上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202001004022207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775060", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1022060085", + "name": "[703](10)同济上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062204013006022703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775061", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1022060086", + "name": "[102](10)同济上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202007006022102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775062", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1022060087", + "name": "[101](10)同济上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202007006022101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775063", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1022060088", + "name": "[109](10)同济下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202012006022109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775064", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1022060089", + "name": "[110](10)同济下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202012006022110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775065", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1022060090", + "name": "[208](10)同济上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202001004022208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775066", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1022060091", + "name": "[210](10)同济下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202001004022210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775067", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1022060092", + "name": "[357](10)同济B2垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202002006022357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775068", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1022060093", + "name": "[104](10)同济上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202007006022104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775069", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1022060094", + "name": "[103](10)同济上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202007006022103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775070", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:21", + "echoMap": {}, + "deviceId": "1022060095", + "name": "[107](10)同济下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202012006022107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775071", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:21", + "echoMap": {}, + "deviceId": "1022060096", + "name": "[108](10)同济下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202012006022108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775072", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:21", + "echoMap": {}, + "deviceId": "1022060097", + "name": "[351](10)同济#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202017006022351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775073", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:22", + "echoMap": {}, + "deviceId": "1022060098", + "name": "[619](10)同济内通道9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203021006022619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775074", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:22", + "echoMap": {}, + "deviceId": "1022060099", + "name": "[209](10)同济下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202001004022209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775075", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:22", + "echoMap": {}, + "deviceId": "1022060100", + "name": "[608](10)同济屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775076", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:22", + "echoMap": {}, + "deviceId": "1022060101", + "name": "[106](10)同济上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202007006022106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775077", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-26 09:23:22", + "echoMap": {}, + "deviceId": "1022060102", + "name": "[105](10)同济上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062202007006022105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775078", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1022060103", + "name": "[618](10)同济内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203021006022618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775079", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-30 10:07:21", + "echoMap": {}, + "deviceId": "1022060104", + "name": "[617](10)同济内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203021006022617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775080", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2026-01-27 18:27:22", + "echoMap": {}, + "deviceId": "1022060105", + "name": "[702](10)同济4#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.171.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062204013006022702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775081", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1022060106", + "name": "[621](10)同济变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203021006022621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775082", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1022060107", + "name": "[706](10)同济同济国权下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062204012004022706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775083", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1022060108", + "name": "[705](10)同济同济国权上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062204012004022705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775084", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1022060109", + "name": "[334](10)同济4#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775085", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1022060110", + "name": "[333](10)同济4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775086", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1022060111", + "name": "[336](10)同济4#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775087", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1022060112", + "name": "[330](10)同济4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775088", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1022060113", + "name": "[329](10)同济4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775089", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1022060114", + "name": "[332](10)同济4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775090", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1022060115", + "name": "[335](10)同济4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775091", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1022060116", + "name": "[331](10)同济4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058006022331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775092", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1022060117", + "name": "[214](10)同济4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201058004022214", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775093", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1022060118", + "name": "[326](10)同济3#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775094", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1022060119", + "name": "[325](10)同济3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775095", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1022060120", + "name": "[328](10)同济3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775096", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1022060121", + "name": "[322](10)同济3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775097", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1022060122", + "name": "[321](10)同济3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775098", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1022060123", + "name": "[324](10)同济3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775099", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1022060124", + "name": "[327](10)同济3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775100", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1022060125", + "name": "[323](10)同济3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057006022323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775101", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:21", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1022060126", + "name": "[213](10)同济3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062201057004022213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080179", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1022060127", + "name": "[622](10)同济气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203067005022622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080180", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1022060128", + "name": "[623](10)同济消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203068005022623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080181", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1022060129", + "name": "[626](10)同济通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080182", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060130", + "name": "[627](10)同济内通道10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203001005022627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080183", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060131", + "name": "[624](10)同济气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203067005022624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080184", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1022060132", + "name": "[625](10)同济通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203048005022625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410319484080185", + "createdBy": null, + "createdTime": "2025-10-28 00:00:23", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1022060133", + "name": "[628](10)同济气瓶间3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.172.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062203067005022628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046177179775103", + "createdBy": "0", + "createdTime": "2025-02-28 13:05:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1022070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.171.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062200000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112168\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1376388446\",\"inUcastPkts\":\"651552145\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ed:c6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3550344649\",\"outQLen\":\"0\",\"outUcastPkts\":\"379180924\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.171.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:20\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZEABED\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"39\",\"CPU使用率\":\"14\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046177179775148", + "createdBy": "2", + "createdTime": "2025-02-28 13:07:33", + "updatedBy": null, + "updatedTime": "2025-12-23 10:18:47", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.171.51", + "manageUrl": "http:\\\\10.18.171.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775149", + "createdBy": "2", + "createdTime": "2025-02-28 13:07:50", + "updatedBy": null, + "updatedTime": "2025-12-23 10:18:42", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.171.52", + "manageUrl": "http:\\\\10.18.171.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046177179775106", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1022090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.171.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.94\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"297 days, 11:09:28.78\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"5112998\",\"inErrors\":\"0\",\"inNUcastPkts\":\"13707729\",\"inOctets\":\"526235826\",\"inUcastPkts\":\"3126634457\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:02:05.67\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9a:e0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4125836118\",\"outQLen\":\"0\",\"outUcastPkts\":\"3983189487\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.171.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046177179775107", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-04-09 17:49:52", + "echoMap": {}, + "deviceId": "1022050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.171.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062200000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.171.22;10.18.171.23" + }, + { + "id": "585046177179775108", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1022050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.171.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062200000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"10802174\",\"inErrors\":\"0\",\"inNUcastPkts\":\"19389535\",\"inOctets\":\"4168158721\",\"inUcastPkts\":\"2627334428\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:73:87\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2673177998\",\"outQLen\":\"0\",\"outUcastPkts\":\"1357437246\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4370\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.171.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:21\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":822637623,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17122\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"49\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.171.22" + }, + { + "id": "585046177179775109", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:22", + "echoMap": {}, + "deviceId": "1022050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.171.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062200000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"10801009\",\"inErrors\":\"0\",\"inNUcastPkts\":\"24785362\",\"inOctets\":\"3780716032\",\"inUcastPkts\":\"333896617\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:73:49\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3220140542\",\"outQLen\":\"0\",\"outUcastPkts\":\"263594272\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4350\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4320\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.171.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:22\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":822637623,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17123\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"47\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:36:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.171.23" + } + ], + "ndmSecurityBox": [ + { + "id": "585046177179775130", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1022030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6620173\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"368003011\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6620178\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.104002},{\"current\":0.52000004,\"status\":1,\"voltage\":26.104002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.104002},{\"current\":0.22800002,\"status\":1,\"voltage\":26.104002},{\"current\":0.20400001,\"status\":1,\"voltage\":26.104002},{\"current\":0.22600001,\"status\":1,\"voltage\":26.104002},{\"current\":0.21200001,\"status\":1,\"voltage\":26.104002},{\"current\":0.245,\"status\":1,\"voltage\":26.104002},{\"current\":0.245,\"status\":1,\"voltage\":26.104002},{\"current\":0.25100002,\"status\":1,\"voltage\":25.802002},{\"current\":0.003,\"status\":1,\"voltage\":25.802002},{\"current\":0.19900002,\"status\":1,\"voltage\":25.802002},{\"current\":0.22600001,\"status\":1,\"voltage\":25.802002},{\"current\":0.001,\"status\":1,\"voltage\":25.802002},{\"current\":0.001,\"status\":1,\"voltage\":25.802002},{\"current\":0.001,\"status\":1,\"voltage\":25.802002}],\"fanSpeeds\":[3540,3510],\"humidity\":23,\"switches\":[1,0,0,0],\"temperature\":30}],\"stCommonInfo\":{\"设备ID\":\"0001512208302117\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775131", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:22", + "echoMap": {}, + "deviceId": "1022030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6619628\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"367971255\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6619633\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:3f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24900001,\"status\":1,\"voltage\":26.687002},{\"current\":0.277,\"status\":1,\"voltage\":26.687002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.687002},{\"current\":0.224,\"status\":1,\"voltage\":26.687002},{\"current\":0.001,\"status\":1,\"voltage\":26.687002},{\"current\":0.001,\"status\":1,\"voltage\":26.687002},{\"current\":0.001,\"status\":1,\"voltage\":26.687002},{\"current\":0.001,\"status\":1,\"voltage\":26.687002},{\"current\":0.001,\"status\":1,\"voltage\":26.687002},{\"current\":0.001,\"status\":1,\"voltage\":25.965002},{\"current\":0.003,\"status\":1,\"voltage\":25.965002},{\"current\":0.001,\"status\":1,\"voltage\":25.965002},{\"current\":0.001,\"status\":1,\"voltage\":25.965002},{\"current\":0.001,\"status\":1,\"voltage\":25.965002},{\"current\":0.001,\"status\":1,\"voltage\":25.965002},{\"current\":0.001,\"status\":1,\"voltage\":25.965002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303903\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775132", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:22", + "echoMap": {}, + "deviceId": "1022030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7527302\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"418872050\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7527307\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.32500002,\"status\":1,\"voltage\":26.28},{\"current\":0.223,\"status\":1,\"voltage\":26.28},{\"current\":0.252,\"status\":1,\"voltage\":26.28},{\"current\":0.21700001,\"status\":1,\"voltage\":26.28},{\"current\":0.22800002,\"status\":1,\"voltage\":26.28},{\"current\":0.53300005,\"status\":1,\"voltage\":26.28},{\"current\":0.21900001,\"status\":1,\"voltage\":26.28},{\"current\":0.20700002,\"status\":1,\"voltage\":26.28},{\"current\":0.48900002,\"status\":1,\"voltage\":26.28},{\"current\":0.22200002,\"status\":1,\"voltage\":26.322},{\"current\":0.003,\"status\":1,\"voltage\":26.322},{\"current\":0.27100003,\"status\":1,\"voltage\":26.322},{\"current\":0.001,\"status\":1,\"voltage\":26.322},{\"current\":0.001,\"status\":1,\"voltage\":26.322},{\"current\":0.001,\"status\":1,\"voltage\":26.322},{\"current\":0.001,\"status\":1,\"voltage\":26.322}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301861\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775133", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:23", + "echoMap": {}, + "deviceId": "1022030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6618487\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"368374468\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6618492\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:45\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.29700002,\"status\":1,\"voltage\":26.716002},{\"current\":0.35700002,\"status\":1,\"voltage\":26.716002},{\"current\":0.33,\"status\":1,\"voltage\":26.716002},{\"current\":0.22200002,\"status\":1,\"voltage\":26.716002},{\"current\":0.39900002,\"status\":1,\"voltage\":26.716002},{\"current\":0.24100001,\"status\":1,\"voltage\":26.716002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.716002},{\"current\":0.23600002,\"status\":1,\"voltage\":26.716002},{\"current\":0.51600003,\"status\":1,\"voltage\":26.716002},{\"current\":0.001,\"status\":1,\"voltage\":26.914001},{\"current\":0.003,\"status\":1,\"voltage\":26.914001},{\"current\":0.001,\"status\":1,\"voltage\":26.914001},{\"current\":0.001,\"status\":1,\"voltage\":26.914001},{\"current\":0.001,\"status\":1,\"voltage\":26.914001},{\"current\":0.001,\"status\":1,\"voltage\":26.914001},{\"current\":0.001,\"status\":1,\"voltage\":26.914001}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208300325\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775134", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:24", + "echoMap": {}, + "deviceId": "1022030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7497544\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"417202235\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7497549\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:4f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25800002,\"status\":1,\"voltage\":26.911001},{\"current\":0.25100002,\"status\":1,\"voltage\":26.911001},{\"current\":0.33600003,\"status\":1,\"voltage\":26.911001},{\"current\":0.25800002,\"status\":1,\"voltage\":26.911001},{\"current\":0.279,\"status\":1,\"voltage\":26.911001},{\"current\":0.358,\"status\":1,\"voltage\":26.911001},{\"current\":0.335,\"status\":1,\"voltage\":26.911001},{\"current\":0.28100002,\"status\":1,\"voltage\":26.911001},{\"current\":0.342,\"status\":1,\"voltage\":26.911001},{\"current\":0.001,\"status\":1,\"voltage\":27.233002},{\"current\":0.003,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208303151\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775135", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:24", + "echoMap": {}, + "deviceId": "1022030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7521017\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"418519930\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7521022\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:bb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.411,\"status\":1,\"voltage\":26.824001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.824001},{\"current\":0.246,\"status\":1,\"voltage\":26.824001},{\"current\":0.264,\"status\":1,\"voltage\":26.824001},{\"current\":0.33600003,\"status\":1,\"voltage\":26.824001},{\"current\":0.268,\"status\":1,\"voltage\":26.824001},{\"current\":0.363,\"status\":1,\"voltage\":26.824001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.824001},{\"current\":0.51600003,\"status\":1,\"voltage\":26.824001},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.003,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002},{\"current\":0.001,\"status\":1,\"voltage\":26.250002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208302170\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775136", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:25", + "echoMap": {}, + "deviceId": "1022030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6596327\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"366665879\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6596332\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:97\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.20700002,\"status\":1,\"voltage\":26.568},{\"current\":0.246,\"status\":1,\"voltage\":26.568},{\"current\":0.521,\"status\":1,\"voltage\":26.568},{\"current\":0.268,\"status\":1,\"voltage\":26.568},{\"current\":0.33900002,\"status\":1,\"voltage\":26.568},{\"current\":0.32200003,\"status\":1,\"voltage\":26.568},{\"current\":0.27,\"status\":1,\"voltage\":26.568},{\"current\":0.30200002,\"status\":1,\"voltage\":26.568},{\"current\":0.32700002,\"status\":1,\"voltage\":26.568},{\"current\":0.001,\"status\":1,\"voltage\":26.783},{\"current\":0.003,\"status\":1,\"voltage\":26.783},{\"current\":0.001,\"status\":1,\"voltage\":26.783},{\"current\":0.001,\"status\":1,\"voltage\":26.783},{\"current\":0.001,\"status\":1,\"voltage\":26.783},{\"current\":0.001,\"status\":1,\"voltage\":26.783},{\"current\":0.001,\"status\":1,\"voltage\":26.783}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208302134\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775137", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:25", + "echoMap": {}, + "deviceId": "1022030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7447966\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"414422203\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7447971\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:f9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28,\"status\":1,\"voltage\":26.665},{\"current\":0.001,\"status\":1,\"voltage\":26.665},{\"current\":0.33600003,\"status\":1,\"voltage\":26.665},{\"current\":0.3,\"status\":1,\"voltage\":26.665},{\"current\":0.26500002,\"status\":1,\"voltage\":26.665},{\"current\":0.291,\"status\":1,\"voltage\":26.665},{\"current\":0.517,\"status\":1,\"voltage\":26.665},{\"current\":0.25800002,\"status\":1,\"voltage\":26.665},{\"current\":0.001,\"status\":1,\"voltage\":26.665},{\"current\":0.001,\"status\":1,\"voltage\":26.365002},{\"current\":0.003,\"status\":1,\"voltage\":26.365002},{\"current\":0.001,\"status\":1,\"voltage\":26.365002},{\"current\":0.001,\"status\":1,\"voltage\":26.365002},{\"current\":0.001,\"status\":1,\"voltage\":26.365002},{\"current\":0.001,\"status\":1,\"voltage\":26.365002},{\"current\":0.001,\"status\":1,\"voltage\":26.365002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208303065\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775138", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "deviceId": "1022030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7437779\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"413853036\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7437784\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:4b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37300003,\"status\":1,\"voltage\":27.749},{\"current\":0.35900003,\"status\":1,\"voltage\":27.749},{\"current\":0.22900002,\"status\":1,\"voltage\":27.749},{\"current\":0.388,\"status\":1,\"voltage\":27.749},{\"current\":0.522,\"status\":1,\"voltage\":27.749},{\"current\":0.35200003,\"status\":1,\"voltage\":27.749},{\"current\":0.223,\"status\":1,\"voltage\":27.749},{\"current\":0.22100002,\"status\":1,\"voltage\":27.749},{\"current\":0.001,\"status\":1,\"voltage\":27.749},{\"current\":0.001,\"status\":1,\"voltage\":27.439001},{\"current\":0.003,\"status\":1,\"voltage\":27.439001},{\"current\":0.001,\"status\":1,\"voltage\":27.439001},{\"current\":0.001,\"status\":1,\"voltage\":27.439001},{\"current\":0.001,\"status\":1,\"voltage\":27.439001},{\"current\":0.001,\"status\":1,\"voltage\":27.439001},{\"current\":0.001,\"status\":1,\"voltage\":27.439001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208301290\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775139", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "deviceId": "1022030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7374819\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"410319916\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7374824\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:81\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37,\"status\":1,\"voltage\":26.994001},{\"current\":0.365,\"status\":1,\"voltage\":26.994001},{\"current\":0.37300003,\"status\":1,\"voltage\":26.994001},{\"current\":0.37300003,\"status\":1,\"voltage\":26.994001},{\"current\":0.51600003,\"status\":1,\"voltage\":26.994001},{\"current\":0.0,\"status\":1,\"voltage\":26.994001},{\"current\":0.0,\"status\":1,\"voltage\":26.994001},{\"current\":0.0,\"status\":1,\"voltage\":26.994001},{\"current\":0.0,\"status\":1,\"voltage\":26.994001},{\"current\":0.0,\"status\":1,\"voltage\":27.299002},{\"current\":0.003,\"status\":1,\"voltage\":27.299002},{\"current\":0.001,\"status\":1,\"voltage\":27.299002},{\"current\":0.001,\"status\":1,\"voltage\":27.299002},{\"current\":0.001,\"status\":1,\"voltage\":27.299002},{\"current\":0.001,\"status\":1,\"voltage\":27.299002},{\"current\":0.001,\"status\":1,\"voltage\":27.299002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208303201\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775140", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:26", + "echoMap": {}, + "deviceId": "1022030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6246056\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"347025173\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6246061\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0b:e7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.653002},{\"current\":0.245,\"status\":1,\"voltage\":26.653002},{\"current\":0.252,\"status\":1,\"voltage\":26.653002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.653002},{\"current\":0.55300003,\"status\":1,\"voltage\":26.653002},{\"current\":0.24800001,\"status\":1,\"voltage\":26.653002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.653002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.653002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.653002},{\"current\":0.001,\"status\":1,\"voltage\":25.999},{\"current\":0.002,\"status\":1,\"voltage\":25.999},{\"current\":0.001,\"status\":1,\"voltage\":25.999},{\"current\":0.001,\"status\":1,\"voltage\":25.999},{\"current\":0.001,\"status\":1,\"voltage\":25.999},{\"current\":0.0,\"status\":1,\"voltage\":25.999},{\"current\":0.0,\"status\":1,\"voltage\":25.999}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303047\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775141", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:27", + "echoMap": {}, + "deviceId": "1022030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6670809\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"370843021\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6670814\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:b7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.456001},{\"current\":0.245,\"status\":1,\"voltage\":26.456001},{\"current\":0.51900005,\"status\":1,\"voltage\":26.456001},{\"current\":0.53900003,\"status\":1,\"voltage\":26.456001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.456001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.456001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.456001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.003,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.001,\"status\":1,\"voltage\":26.623001},{\"current\":0.0,\"status\":1,\"voltage\":26.623001}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302166\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775142", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:35", + "echoMap": {}, + "deviceId": "1022030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:35", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775143", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1022030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775144", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1022030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775145", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:00", + "echoMap": {}, + "deviceId": "1022030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775146", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:00", + "echoMap": {}, + "deviceId": "1022030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6359327\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"353381249\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6359332\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0a:df\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.507002},{\"current\":0.263,\"status\":1,\"voltage\":27.507002},{\"current\":0.27100003,\"status\":1,\"voltage\":27.507002},{\"current\":12.684001,\"status\":1,\"voltage\":27.507002},{\"current\":0.36600003,\"status\":1,\"voltage\":27.507002},{\"current\":0.23400001,\"status\":1,\"voltage\":27.507002},{\"current\":0.22700001,\"status\":1,\"voltage\":27.507002},{\"current\":0.51500005,\"status\":1,\"voltage\":27.507002},{\"current\":0.223,\"status\":1,\"voltage\":27.507002},{\"current\":0.001,\"status\":1,\"voltage\":27.293001},{\"current\":0.003,\"status\":1,\"voltage\":27.293001},{\"current\":0.001,\"status\":1,\"voltage\":27.293001},{\"current\":0.001,\"status\":1,\"voltage\":27.293001},{\"current\":0.001,\"status\":1,\"voltage\":27.293001},{\"current\":0.001,\"status\":1,\"voltage\":27.293001},{\"current\":0.001,\"status\":1,\"voltage\":27.293001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208302783\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775147", + "createdBy": "0", + "createdTime": "2025-02-28 13:07:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:01", + "echoMap": {}, + "deviceId": "1022030018", + "name": "安防箱18", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.172.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6358922\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"353357496\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6358927\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:2c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.375002},{\"current\":0.27100003,\"status\":1,\"voltage\":26.375002},{\"current\":0.284,\"status\":1,\"voltage\":26.375002},{\"current\":0.33800003,\"status\":1,\"voltage\":26.375002},{\"current\":0.36,\"status\":1,\"voltage\":26.375002},{\"current\":0.23600002,\"status\":1,\"voltage\":26.375002},{\"current\":0.22000001,\"status\":1,\"voltage\":26.375002},{\"current\":0.223,\"status\":1,\"voltage\":26.375002},{\"current\":0.514,\"status\":1,\"voltage\":26.375002},{\"current\":0.001,\"status\":1,\"voltage\":26.271002},{\"current\":0.003,\"status\":1,\"voltage\":26.271002},{\"current\":0.001,\"status\":1,\"voltage\":26.271002},{\"current\":0.001,\"status\":1,\"voltage\":26.271002},{\"current\":0.001,\"status\":1,\"voltage\":26.271002},{\"current\":0.001,\"status\":1,\"voltage\":26.271002},{\"current\":0.001,\"status\":1,\"voltage\":26.271002}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303116\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "585046177179775110", + "createdBy": "2", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:12", + "echoMap": {}, + "deviceId": "1022040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.171.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif171\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:05:17.07\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:80:ca:97\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"40\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.171.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"4276\",\"1949477\",\"6451\",\"2726302\",\"0\",\"0\",\"0\",\"0\",\"438871578\",\"666\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:11\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34290,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":561,\"opticalVoltage\":3232,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41369,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":508,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33389,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":579,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34709,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":561,\"opticalVoltage\":3295,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35790,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":561,\"opticalVoltage\":3281,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35669,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":558,\"opticalVoltage\":3281,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42330,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":772,\"opticalVoltage\":3284,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36569,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":561,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39540,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":562,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43950,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":527,\"opticalVoltage\":3274,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41819,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":601,\"opticalVoltage\":3243,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41310,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":657,\"opticalVoltage\":3284,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42074,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":688,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42583,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":849,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44113,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":679,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43349,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":741,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39479,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":558,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39840,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":561,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":45270,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":528,\"opticalVoltage\":3287,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":45840,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":468,\"opticalVoltage\":3371,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":528,\"inBytes\":1640056429,\"inFlow\":62,\"lastChangeTime\":\"35 days, 8:27:33.12\",\"lastInBytes\":1640056429,\"lastOutBytes\":3088402237,\"opticalBiasCurrent\":11654,\"opticalReceivePower\":253,\"opticalTemperature\":57,\"opticalTransmitPower\":252,\"opticalVoltage\":3324,\"outBytes\":3088402237,\"outFlow\":465,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":233026702,\"inFlow\":0,\"lastChangeTime\":\"35 days, 8:26:43.98\",\"lastInBytes\":233026702,\"lastOutBytes\":3212912426,\"opticalBiasCurrent\":36810,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":563,\"opticalVoltage\":3347,\"outBytes\":3212912426,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":385891,\"inBytes\":374781046,\"inFlow\":2539,\"lastChangeTime\":\"0:06:18.69\",\"lastInBytes\":374781046,\"lastOutBytes\":640628329,\"opticalBiasCurrent\":43604,\"opticalReceivePower\":398,\"opticalTemperature\":57,\"opticalTransmitPower\":726,\"opticalVoltage\":3320,\"outBytes\":640628329,\"outFlow\":383352,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1156138,\"inBytes\":2258863692,\"inFlow\":353545,\"lastChangeTime\":\"0:06:18.71\",\"lastInBytes\":2258863692,\"lastOutBytes\":195860609,\"opticalBiasCurrent\":45029,\"opticalReceivePower\":508,\"opticalTemperature\":56,\"opticalTransmitPower\":452,\"opticalVoltage\":3344,\"outBytes\":195860609,\"outFlow\":802593,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":3399616,\"inBytes\":2382113158,\"inFlow\":3290734,\"lastChangeTime\":\"166 days, 11:40:47.52\",\"lastInBytes\":2382113158,\"lastOutBytes\":738157152,\"opticalBiasCurrent\":11048,\"opticalReceivePower\":216,\"opticalTemperature\":52,\"opticalTransmitPower\":244,\"opticalVoltage\":3312,\"outBytes\":738157152,\"outFlow\":108881,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1233628,\"inBytes\":2871198034,\"inFlow\":1193953,\"lastChangeTime\":\"166 days, 12:16:59.30\",\"lastInBytes\":2871198034,\"lastOutBytes\":3309290086,\"opticalBiasCurrent\":10873,\"opticalReceivePower\":187,\"opticalTemperature\":52,\"opticalTransmitPower\":248,\"opticalVoltage\":3332,\"outBytes\":3309290086,\"outFlow\":39674,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4317160,\"inBytes\":2199388712,\"inFlow\":4182403,\"lastChangeTime\":\"5 days, 8:33:14.72\",\"lastInBytes\":2199388712,\"lastOutBytes\":126810916,\"opticalBiasCurrent\":11020,\"opticalReceivePower\":169,\"opticalTemperature\":53,\"opticalTransmitPower\":248,\"opticalVoltage\":3332,\"outBytes\":126810916,\"outFlow\":134756,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2998238,\"inBytes\":3664296395,\"inFlow\":2907326,\"lastChangeTime\":\"166 days, 12:06:28.87\",\"lastInBytes\":3664296395,\"lastOutBytes\":1116324973,\"opticalBiasCurrent\":10850,\"opticalReceivePower\":2,\"opticalTemperature\":54,\"opticalTransmitPower\":253,\"opticalVoltage\":3319,\"outBytes\":1116324973,\"outFlow\":90911,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3799937,\"inBytes\":2150291041,\"inFlow\":3687718,\"lastChangeTime\":\"5 days, 6:53:16.06\",\"lastInBytes\":2150291041,\"lastOutBytes\":2909741580,\"opticalBiasCurrent\":11078,\"opticalReceivePower\":132,\"opticalTemperature\":54,\"opticalTransmitPower\":254,\"opticalVoltage\":3319,\"outBytes\":2909741580,\"outFlow\":112218,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2896791,\"inBytes\":1636244997,\"inFlow\":2805283,\"lastChangeTime\":\"5 days, 7:37:09.14\",\"lastInBytes\":1636244997,\"lastOutBytes\":3786216609,\"opticalBiasCurrent\":10975,\"opticalReceivePower\":233,\"opticalTemperature\":52,\"opticalTransmitPower\":250,\"opticalVoltage\":3312,\"outBytes\":3786216609,\"outFlow\":91508,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3752219,\"inBytes\":1185129455,\"inFlow\":3635069,\"lastChangeTime\":\"166 days, 11:55:30.69\",\"lastInBytes\":1185129455,\"lastOutBytes\":1154171760,\"opticalBiasCurrent\":11119,\"opticalReceivePower\":150,\"opticalTemperature\":56,\"opticalTransmitPower\":256,\"opticalVoltage\":3332,\"outBytes\":1154171760,\"outFlow\":117150,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3168450,\"inBytes\":2298668706,\"inFlow\":3069057,\"lastChangeTime\":\"100 days, 12:15:35.89\",\"lastInBytes\":2298668706,\"lastOutBytes\":2070747512,\"opticalBiasCurrent\":11454,\"opticalReceivePower\":164,\"opticalTemperature\":53,\"opticalTransmitPower\":252,\"opticalVoltage\":3332,\"outBytes\":2070747512,\"outFlow\":99393,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3304543,\"inBytes\":971394222,\"inFlow\":3208632,\"lastChangeTime\":\"1:37:55.11\",\"lastInBytes\":971394222,\"lastOutBytes\":2782231528,\"opticalBiasCurrent\":10838,\"opticalReceivePower\":221,\"opticalTemperature\":54,\"opticalTransmitPower\":257,\"opticalVoltage\":3332,\"outBytes\":2782231528,\"outFlow\":95910,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3329786,\"inBytes\":2225630235,\"inFlow\":3240730,\"lastChangeTime\":\"5 days, 6:56:19.17\",\"lastInBytes\":2225630235,\"lastOutBytes\":3767351248,\"opticalBiasCurrent\":10494,\"opticalReceivePower\":271,\"opticalTemperature\":55,\"opticalTransmitPower\":249,\"opticalVoltage\":3312,\"outBytes\":3767351248,\"outFlow\":89056,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4091065,\"inBytes\":63528645,\"inFlow\":3959687,\"lastChangeTime\":\"166 days, 12:28:02.43\",\"lastInBytes\":63528645,\"lastOutBytes\":1902368301,\"opticalBiasCurrent\":10357,\"opticalReceivePower\":2,\"opticalTemperature\":51,\"opticalTransmitPower\":247,\"opticalVoltage\":3332,\"outBytes\":1902368301,\"outFlow\":131377,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4545688,\"inBytes\":1461042269,\"inFlow\":4400504,\"lastChangeTime\":\"1:38:16.06\",\"lastInBytes\":1461042269,\"lastOutBytes\":3854820362,\"opticalBiasCurrent\":10472,\"opticalReceivePower\":160,\"opticalTemperature\":50,\"opticalTransmitPower\":255,\"opticalVoltage\":3319,\"outBytes\":3854820362,\"outFlow\":145184,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4045635,\"inBytes\":1238342773,\"inFlow\":3915250,\"lastChangeTime\":\"290 days, 5:55:36.35\",\"lastInBytes\":1238342773,\"lastOutBytes\":45370135,\"opticalBiasCurrent\":10383,\"opticalReceivePower\":178,\"opticalTemperature\":55,\"opticalTransmitPower\":249,\"opticalVoltage\":3321,\"outBytes\":45370135,\"outFlow\":130385,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2026789,\"inBytes\":3743308387,\"inFlow\":1962453,\"lastChangeTime\":\"130 days, 21:11:26.07\",\"lastInBytes\":3743308387,\"lastOutBytes\":3004685915,\"opticalBiasCurrent\":10805,\"opticalReceivePower\":181,\"opticalTemperature\":50,\"opticalTransmitPower\":259,\"opticalVoltage\":3296,\"outBytes\":3004685915,\"outFlow\":64335,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":337966,\"inBytes\":3517659410,\"inFlow\":326785,\"lastChangeTime\":\"1:40:39.77\",\"lastInBytes\":3517659410,\"lastOutBytes\":1983437609,\"opticalBiasCurrent\":10630,\"opticalReceivePower\":153,\"opticalTemperature\":50,\"opticalTransmitPower\":242,\"opticalVoltage\":3288,\"outBytes\":1983437609,\"outFlow\":11181,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":486748,\"inBytes\":1753570745,\"inFlow\":471179,\"lastChangeTime\":\"1:40:41.38\",\"lastInBytes\":1753570745,\"lastOutBytes\":1664486130,\"opticalBiasCurrent\":10772,\"opticalReceivePower\":480,\"opticalTemperature\":52,\"opticalTransmitPower\":251,\"opticalVoltage\":3308,\"outBytes\":1664486130,\"outFlow\":15568,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4247677,\"inBytes\":986050337,\"inFlow\":4122815,\"lastChangeTime\":\"1:38:03.68\",\"lastInBytes\":986050337,\"lastOutBytes\":1991323826,\"opticalBiasCurrent\":10574,\"opticalReceivePower\":70,\"opticalTemperature\":52,\"opticalTransmitPower\":243,\"opticalVoltage\":3316,\"outBytes\":1991323826,\"outFlow\":124862,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3662953,\"inBytes\":2651784012,\"inFlow\":3553167,\"lastChangeTime\":\"5 days, 7:40:42.65\",\"lastInBytes\":2651784012,\"lastOutBytes\":3259159111,\"opticalBiasCurrent\":10739,\"opticalReceivePower\":1,\"opticalTemperature\":50,\"opticalTransmitPower\":261,\"opticalVoltage\":3296,\"outBytes\":3259159111,\"outFlow\":109786,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10871,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":251,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10434,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":251,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10732,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":257,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10437,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":250,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10774,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":245,\"opticalVoltage\":3303,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10064,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":251,\"opticalVoltage\":3296,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":42240,\"inBytes\":4085243795,\"inFlow\":25239,\"lastChangeTime\":\"0:05:18.91\",\"lastInBytes\":4085243795,\"lastOutBytes\":710876661,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":710876661,\"outFlow\":17001,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18223306,\"inBytes\":1951216096,\"inFlow\":6264178,\"lastChangeTime\":\"0:05:18.95\",\"lastInBytes\":1951216096,\"lastOutBytes\":980215123,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":980215123,\"outFlow\":11959127,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":76129,\"inBytes\":358081008,\"inFlow\":27033,\"lastChangeTime\":\"0:05:17.06\",\"lastInBytes\":358081008,\"lastOutBytes\":2593542618,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2593542618,\"outFlow\":49096,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":372,\"inBytes\":170121526,\"inFlow\":5,\"lastChangeTime\":\"35 days, 8:20:05.53\",\"lastInBytes\":170121526,\"lastOutBytes\":2464240504,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2464240504,\"outFlow\":367,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1241046,\"inBytes\":2080267570,\"inFlow\":46216,\"lastChangeTime\":\"290 days, 22:33:50.57\",\"lastInBytes\":2080267570,\"lastOutBytes\":2416897954,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2416897954,\"outFlow\":1194829,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":360,\"inBytes\":17253332,\"inFlow\":0,\"lastChangeTime\":\"184 days, 11:38:52.26\",\"lastInBytes\":17253332,\"lastOutBytes\":2242766142,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2242766142,\"outFlow\":360,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10586465,\"inBytes\":2541015840,\"inFlow\":1186521,\"lastChangeTime\":\"0:05:17.23\",\"lastInBytes\":2541015840,\"lastOutBytes\":645715043,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":645715043,\"outFlow\":9399944,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16210337,\"inBytes\":2538234163,\"inFlow\":916800,\"lastChangeTime\":\"0:05:17.26\",\"lastInBytes\":2538234163,\"lastOutBytes\":4032530660,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":4032530660,\"outFlow\":15293537,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1220404,\"inBytes\":888345988,\"inFlow\":1220051,\"lastChangeTime\":\"0:05:17.28\",\"lastInBytes\":888345988,\"lastOutBytes\":3586295573,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3586295573,\"outFlow\":352,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":21053019,\"inBytes\":1184303729,\"inFlow\":1094674,\"lastChangeTime\":\"0:05:17.32\",\"lastInBytes\":1184303729,\"lastOutBytes\":677312204,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":677312204,\"outFlow\":19958344,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":801,\"inBytes\":2612155227,\"inFlow\":184,\"lastChangeTime\":\"166 days, 11:03:55.59\",\"lastInBytes\":2612155227,\"lastOutBytes\":3035393813,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3035393813,\"outFlow\":617,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":570,\"inBytes\":1728584696,\"inFlow\":122,\"lastChangeTime\":\"166 days, 11:23:05.42\",\"lastInBytes\":1728584696,\"lastOutBytes\":645987477,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":645987477,\"outFlow\":447,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":433,\"inBytes\":1125200733,\"inFlow\":52,\"lastChangeTime\":\"131 days, 21:29:13.27\",\"lastInBytes\":1125200733,\"lastOutBytes\":2275274513,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2275274513,\"outFlow\":381,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":95,\"inBytes\":3606061285,\"inFlow\":0,\"lastChangeTime\":\"0:05:17.79\",\"lastInBytes\":3606061285,\"lastOutBytes\":4112468562,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":4112468562,\"outFlow\":95,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":3006906,\"inBytes\":2083359889,\"inFlow\":25553,\"lastChangeTime\":\"201 days, 21:15:05.10\",\"lastInBytes\":2083359889,\"lastOutBytes\":1713331854,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1713331854,\"outFlow\":2981352,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":569,\"inBytes\":1720502514,\"inFlow\":122,\"lastChangeTime\":\"201 days, 21:19:25.18\",\"lastInBytes\":1720502514,\"lastOutBytes\":2661297267,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2661297267,\"outFlow\":447,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1753105926,\"inFlow\":0,\"lastChangeTime\":\"252 days, 8:20:37.00\",\"lastInBytes\":1753105926,\"lastOutBytes\":3746849293,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3746849293,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1293183,\"inBytes\":4033113364,\"inFlow\":7858,\"lastChangeTime\":\"290 days, 4:14:56.32\",\"lastInBytes\":4033113364,\"lastOutBytes\":3493329489,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3493329489,\"outFlow\":1285324,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":100,\"inBytes\":46173135,\"inFlow\":85,\"lastChangeTime\":\"292 days, 10:28:04.88\",\"lastInBytes\":46173135,\"lastOutBytes\":7506894,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":7506894,\"outFlow\":14,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":26,\"inBytes\":6273720,\"inFlow\":11,\"lastChangeTime\":\"292 days, 10:28:52.40\",\"lastInBytes\":6273720,\"lastOutBytes\":7473031,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":7473031,\"outFlow\":14,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:52.107220000\"}}", + "lastDiagTime": "2026-02-02 14:38:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775111", + "createdBy": "2", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"3\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"361592239\",\"index\":\"634\",\"lastChange\":\"0:01:29.63\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:e9:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1053536125\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27632613\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":410098,\"inBytes\":1438779013,\"inFlow\":400138,\"lastChangeTime\":\"35 days, 10:39:21.65\",\"lastInBytes\":1438779013,\"lastOutBytes\":1699029067,\"outBytes\":1699029067,\"outFlow\":9960,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":273609,\"inBytes\":987211899,\"inFlow\":266801,\"lastChangeTime\":\"0:01:29.45\",\"lastInBytes\":987211899,\"lastOutBytes\":2628518606,\"outBytes\":2628518606,\"outFlow\":6807,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":616601,\"inBytes\":1147026507,\"inFlow\":600741,\"lastChangeTime\":\"0:01:29.54\",\"lastInBytes\":1147026507,\"lastOutBytes\":3379108552,\"outBytes\":3379108552,\"outFlow\":15859,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":273915,\"inBytes\":4203380065,\"inFlow\":266970,\"lastChangeTime\":\"0:01:29.84\",\"lastInBytes\":4203380065,\"lastOutBytes\":361523030,\"outBytes\":361523030,\"outFlow\":6944,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":273240,\"inBytes\":4194109536,\"inFlow\":266489,\"lastChangeTime\":\"55 days, 20:05:57.22\",\"lastInBytes\":4194109536,\"lastOutBytes\":679347623,\"outBytes\":679347623,\"outFlow\":6751,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":617147,\"inBytes\":1410761562,\"inFlow\":601073,\"lastChangeTime\":\"0:01:29.85\",\"lastInBytes\":1410761562,\"lastOutBytes\":3911339434,\"outBytes\":3911339434,\"outFlow\":16073,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409736,\"inBytes\":167503751,\"inFlow\":399700,\"lastChangeTime\":\"0:01:30.56\",\"lastInBytes\":167503751,\"lastOutBytes\":3743323816,\"outBytes\":3743323816,\"outFlow\":10036,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":273917,\"inBytes\":3608269388,\"inFlow\":266903,\"lastChangeTime\":\"0:01:30.14\",\"lastInBytes\":3608269388,\"lastOutBytes\":1306577272,\"outBytes\":1306577272,\"outFlow\":7014,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":409244,\"inBytes\":2430158670,\"inFlow\":399877,\"lastChangeTime\":\"0:01:30.29\",\"lastInBytes\":2430158670,\"lastOutBytes\":102722675,\"outBytes\":102722675,\"outFlow\":9366,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":257056,\"inBytes\":133001090,\"inFlow\":250740,\"lastChangeTime\":\"0:01:30.21\",\"lastInBytes\":133001090,\"lastOutBytes\":156344973,\"outBytes\":156344973,\"outFlow\":6316,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":255573,\"inBytes\":287409995,\"inFlow\":249075,\"lastChangeTime\":\"55 days, 20:05:54.97\",\"lastInBytes\":287409995,\"lastOutBytes\":2326323721,\"outBytes\":2326323721,\"outFlow\":6497,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2848822,\"inFlow\":0,\"lastChangeTime\":\"55 days, 17:54:34.59\",\"lastInBytes\":2848822,\"lastOutBytes\":184203526,\"outBytes\":184203526,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":686103156,\"inFlow\":114,\"lastChangeTime\":\"55 days, 17:52:00.69\",\"lastInBytes\":686103156,\"lastOutBytes\":1933286743,\"outBytes\":1933286743,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4120455,\"inBytes\":722733540,\"inFlow\":106270,\"lastChangeTime\":\"0:01:29.62\",\"lastInBytes\":722733540,\"lastOutBytes\":1620372826,\"outBytes\":1620372826,\"outFlow\":4014184,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.817145000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775112", + "createdBy": "2", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41347\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:22.67\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8f:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"9\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":410751,\"inBytes\":3016100259,\"inFlow\":400619,\"lastChangeTime\":\"0:01:22.23\",\"lastInBytes\":3016100259,\"lastOutBytes\":3486651308,\"outBytes\":3486651308,\"outFlow\":10131,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":382982,\"inBytes\":1277795632,\"inFlow\":372949,\"lastChangeTime\":\"0:01:22.34\",\"lastInBytes\":1277795632,\"lastOutBytes\":113200911,\"outBytes\":113200911,\"outFlow\":10033,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":383864,\"inBytes\":2167597414,\"inFlow\":374427,\"lastChangeTime\":\"0:01:22.48\",\"lastInBytes\":2167597414,\"lastOutBytes\":581794897,\"outBytes\":581794897,\"outFlow\":9436,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":255659,\"inBytes\":3044754167,\"inFlow\":249123,\"lastChangeTime\":\"118 days, 3:28:01.40\",\"lastInBytes\":3044754167,\"lastOutBytes\":1438508775,\"outBytes\":1438508775,\"outFlow\":6536,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":682363600,\"inFlow\":114,\"lastChangeTime\":\"0:01:23.69\",\"lastInBytes\":682363600,\"lastOutBytes\":1783055104,\"outBytes\":1783055104,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1511253,\"inBytes\":2396682738,\"inFlow\":39067,\"lastChangeTime\":\"0:01:22.66\",\"lastInBytes\":2396682738,\"lastOutBytes\":2288173564,\"outBytes\":2288173564,\"outFlow\":1472185,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.827219000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775113", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"93825\",\"inUnknownProtos\":\"210708206\",\"index\":\"634\",\"lastChange\":\"0:01:35.86\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8d:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"315569377\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"1194\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":545682,\"inBytes\":3213311654,\"inFlow\":532787,\"lastChangeTime\":\"0:01:35.27\",\"lastInBytes\":3213311654,\"lastOutBytes\":3682185071,\"outBytes\":3682185071,\"outFlow\":12895,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409817,\"inBytes\":578142071,\"inFlow\":399754,\"lastChangeTime\":\"0:01:35.59\",\"lastInBytes\":578142071,\"lastOutBytes\":1153345360,\"outBytes\":1153345360,\"outFlow\":10063,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409572,\"inBytes\":2854927396,\"inFlow\":399507,\"lastChangeTime\":\"0:01:35.60\",\"lastInBytes\":2854927396,\"lastOutBytes\":1952282056,\"outBytes\":1952282056,\"outFlow\":10064,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":411133,\"inBytes\":239747132,\"inFlow\":400943,\"lastChangeTime\":\"0:01:35.60\",\"lastInBytes\":239747132,\"lastOutBytes\":2891262424,\"outBytes\":2891262424,\"outFlow\":10189,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1160859,\"inBytes\":2632877134,\"inFlow\":1133216,\"lastChangeTime\":\"0:01:35.85\",\"lastInBytes\":2632877134,\"lastOutBytes\":210708206,\"outBytes\":210708206,\"outFlow\":27643,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":409747,\"inBytes\":2268867367,\"inFlow\":399756,\"lastChangeTime\":\"152 days, 16:09:06.75\",\"lastInBytes\":2268867367,\"lastOutBytes\":3107171867,\"outBytes\":3107171867,\"outFlow\":9991,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":111160,\"inFlow\":0,\"lastChangeTime\":\"5 days, 6:55:48.06\",\"lastInBytes\":111160,\"lastOutBytes\":7977537,\"outBytes\":7977537,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":382493,\"inBytes\":4161624097,\"inFlow\":373018,\"lastChangeTime\":\"130 days, 20:36:57.47\",\"lastInBytes\":4161624097,\"lastOutBytes\":3836475608,\"outBytes\":3836475608,\"outFlow\":9475,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":409561,\"inBytes\":933528866,\"inFlow\":399748,\"lastChangeTime\":\"220 days, 20:22:01.48\",\"lastInBytes\":933528866,\"lastOutBytes\":2014747601,\"outBytes\":2014747601,\"outFlow\":9812,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":273751,\"inBytes\":3168587376,\"inFlow\":266837,\"lastChangeTime\":\"0:01:36.63\",\"lastInBytes\":3168587376,\"lastOutBytes\":1915936505,\"outBytes\":1915936505,\"outFlow\":6914,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":410738,\"inBytes\":459562090,\"inFlow\":400875,\"lastChangeTime\":\"220 days, 20:21:59.31\",\"lastInBytes\":459562090,\"lastOutBytes\":4017919325,\"outBytes\":4017919325,\"outFlow\":9862,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":409163,\"inBytes\":1509136725,\"inFlow\":399342,\"lastChangeTime\":\"152 days, 16:09:05.52\",\"lastInBytes\":1509136725,\"lastOutBytes\":1536983207,\"outBytes\":1536983207,\"outFlow\":9821,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":779654820,\"inFlow\":114,\"lastChangeTime\":\"5 days, 6:56:56.65\",\"lastInBytes\":779654820,\"lastOutBytes\":3512342546,\"outBytes\":3512342546,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5275069,\"inBytes\":4237492853,\"inFlow\":132546,\"lastChangeTime\":\"5 days, 6:56:57.37\",\"lastInBytes\":4237492853,\"lastOutBytes\":1445453635,\"outBytes\":1445453635,\"outFlow\":5142523,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.824164000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775114", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1022040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41353\",\"inUnknownProtos\":\"3575805932\",\"index\":\"634\",\"lastChange\":\"0:01:32.43\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:6d:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1396974743\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27613260\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:48\",\"info\":{\"portInfoList\":[{\"flow\":409766,\"inBytes\":174002874,\"inFlow\":399708,\"lastChangeTime\":\"0:01:32.03\",\"lastInBytes\":174002874,\"lastOutBytes\":2050826265,\"outBytes\":2050826265,\"outFlow\":10057,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":470702,\"inBytes\":2021475690,\"inFlow\":460926,\"lastChangeTime\":\"0:01:32.98\",\"lastInBytes\":2021475690,\"lastOutBytes\":1755768637,\"outBytes\":1755768637,\"outFlow\":9776,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406896,\"inBytes\":1506613479,\"inFlow\":398784,\"lastChangeTime\":\"0:01:32.98\",\"lastInBytes\":1506613479,\"lastOutBytes\":1379022191,\"outBytes\":1379022191,\"outFlow\":8111,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":273791,\"inBytes\":1372575764,\"inFlow\":266890,\"lastChangeTime\":\"0:01:32.41\",\"lastInBytes\":1372575764,\"lastOutBytes\":316445692,\"outBytes\":316445692,\"outFlow\":6900,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":273722,\"inBytes\":2581618815,\"inFlow\":266841,\"lastChangeTime\":\"92 days, 19:35:07.67\",\"lastInBytes\":2581618815,\"lastOutBytes\":3575805932,\"outBytes\":3575805932,\"outFlow\":6880,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":495947,\"inBytes\":2979187792,\"inFlow\":483863,\"lastChangeTime\":\"54 days, 9:47:24.96\",\"lastInBytes\":2979187792,\"lastOutBytes\":3426236250,\"outBytes\":3426236250,\"outFlow\":12083,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":409753,\"inBytes\":1334658471,\"inFlow\":399601,\"lastChangeTime\":\"54 days, 9:47:10.04\",\"lastInBytes\":1334658471,\"lastOutBytes\":1724609069,\"outBytes\":1724609069,\"outFlow\":10151,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409950,\"inBytes\":1678444585,\"inFlow\":399961,\"lastChangeTime\":\"54 days, 9:47:09.53\",\"lastInBytes\":1678444585,\"lastOutBytes\":1419600572,\"outBytes\":1419600572,\"outFlow\":9988,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":411658,\"inBytes\":131757316,\"inFlow\":401674,\"lastChangeTime\":\"0:01:33.34\",\"lastInBytes\":131757316,\"lastOutBytes\":3806262118,\"outBytes\":3806262118,\"outFlow\":9984,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":682714987,\"inFlow\":115,\"lastChangeTime\":\"0:01:33.47\",\"lastInBytes\":682714987,\"lastOutBytes\":1783887374,\"outBytes\":1783887374,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3568449,\"inBytes\":2808971610,\"inFlow\":86525,\"lastChangeTime\":\"0:01:32.42\",\"lastInBytes\":2808971610,\"lastOutBytes\":2913602334,\"outBytes\":2913602334,\"outFlow\":3481924,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:44.951378000\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775115", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"367821\",\"inUnknownProtos\":\"245817715\",\"index\":\"634\",\"lastChange\":\"5 days, 7:00:52.61\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:67:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2862005932\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"82193401\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":409927,\"inBytes\":401803474,\"inFlow\":399867,\"lastChangeTime\":\"0:01:20.65\",\"lastInBytes\":401803474,\"lastOutBytes\":612597199,\"outBytes\":612597199,\"outFlow\":10060,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409889,\"inBytes\":2347798807,\"inFlow\":399844,\"lastChangeTime\":\"0:01:20.80\",\"lastInBytes\":2347798807,\"lastOutBytes\":906492203,\"outBytes\":906492203,\"outFlow\":10045,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":405657,\"inBytes\":2903137050,\"inFlow\":396991,\"lastChangeTime\":\"0:01:21.74\",\"lastInBytes\":2903137050,\"lastOutBytes\":2187387303,\"outBytes\":2187387303,\"outFlow\":8666,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409666,\"inBytes\":2361689939,\"inFlow\":399538,\"lastChangeTime\":\"0:01:21.14\",\"lastInBytes\":2361689939,\"lastOutBytes\":1214809948,\"outBytes\":1214809948,\"outFlow\":10127,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":888733,\"inBytes\":2137864795,\"inFlow\":866556,\"lastChangeTime\":\"0:01:21.14\",\"lastInBytes\":2137864795,\"lastOutBytes\":245817715,\"outBytes\":245817715,\"outFlow\":22177,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":884805,\"inBytes\":2957782956,\"inFlow\":867207,\"lastChangeTime\":\"220 days, 19:44:41.15\",\"lastInBytes\":2957782956,\"lastOutBytes\":631480428,\"outBytes\":631480428,\"outFlow\":17598,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407980,\"inBytes\":1326889602,\"inFlow\":399501,\"lastChangeTime\":\"220 days, 19:44:47.45\",\"lastInBytes\":1326889602,\"lastOutBytes\":39383240,\"outBytes\":39383240,\"outFlow\":8479,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409483,\"inBytes\":1004186895,\"inFlow\":399396,\"lastChangeTime\":\"0:01:21.36\",\"lastInBytes\":1004186895,\"lastOutBytes\":1631304727,\"outBytes\":1631304727,\"outFlow\":10087,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":409512,\"inBytes\":3764857128,\"inFlow\":400175,\"lastChangeTime\":\"213 days, 11:37:50.25\",\"lastInBytes\":3764857128,\"lastOutBytes\":2900618845,\"outBytes\":2900618845,\"outFlow\":9336,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":47104,\"inFlow\":0,\"lastChangeTime\":\"5 days, 7:02:10.76\",\"lastInBytes\":47104,\"lastOutBytes\":1293548,\"outBytes\":1293548,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":776099710,\"inFlow\":114,\"lastChangeTime\":\"0:01:22.21\",\"lastInBytes\":776099710,\"lastOutBytes\":3608911645,\"outBytes\":3608911645,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":30299473,\"inFlow\":0,\"lastChangeTime\":\"5 days, 5:13:49.14\",\"lastInBytes\":30299473,\"lastOutBytes\":46066,\"outBytes\":46066,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4651418,\"inBytes\":1988998240,\"inFlow\":110464,\"lastChangeTime\":\"5 days, 5:16:56.48\",\"lastInBytes\":1988998240,\"lastOutBytes\":456378741,\"outBytes\":456378741,\"outFlow\":4540954,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.840844000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775116", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1862638\",\"inUnknownProtos\":\"2450422594\",\"index\":\"634\",\"lastChange\":\"0:01:23.78\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:6d:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3369172914\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"88490554\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":273758,\"inBytes\":807801165,\"inFlow\":266801,\"lastChangeTime\":\"259 days, 5:42:44.22\",\"lastInBytes\":807801165,\"lastOutBytes\":3329353399,\"outBytes\":3329353399,\"outFlow\":6956,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":284626,\"inBytes\":3150658024,\"inFlow\":276558,\"lastChangeTime\":\"234 days, 8:35:03.52\",\"lastInBytes\":3150658024,\"lastOutBytes\":3691819947,\"outBytes\":3691819947,\"outFlow\":8067,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409709,\"inBytes\":1059367088,\"inFlow\":399721,\"lastChangeTime\":\"0:01:23.76\",\"lastInBytes\":1059367088,\"lastOutBytes\":597500612,\"outBytes\":597500612,\"outFlow\":9987,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":409809,\"inBytes\":1290780510,\"inFlow\":399711,\"lastChangeTime\":\"0:01:23.63\",\"lastInBytes\":1290780510,\"lastOutBytes\":110188266,\"outBytes\":110188266,\"outFlow\":10097,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407217,\"inBytes\":790139852,\"inFlow\":398273,\"lastChangeTime\":\"0:01:25.14\",\"lastInBytes\":790139852,\"lastOutBytes\":2450422594,\"outBytes\":2450422594,\"outFlow\":8943,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409708,\"inBytes\":3332027086,\"inFlow\":399561,\"lastChangeTime\":\"0:01:24.11\",\"lastInBytes\":3332027086,\"lastOutBytes\":1254186251,\"outBytes\":1254186251,\"outFlow\":10146,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":491379,\"inBytes\":1263407208,\"inFlow\":479222,\"lastChangeTime\":\"0:01:24.69\",\"lastInBytes\":1263407208,\"lastOutBytes\":3332280129,\"outBytes\":3332280129,\"outFlow\":12156,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410781,\"inBytes\":1453710095,\"inFlow\":400609,\"lastChangeTime\":\"0:01:24.22\",\"lastInBytes\":1453710095,\"lastOutBytes\":3004420683,\"outBytes\":3004420683,\"outFlow\":10172,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":409621,\"inBytes\":3990120639,\"inFlow\":399648,\"lastChangeTime\":\"152 days, 16:09:13.74\",\"lastInBytes\":3990120639,\"lastOutBytes\":577435199,\"outBytes\":577435199,\"outFlow\":9972,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":178230,\"inFlow\":0,\"lastChangeTime\":\"5 days, 6:00:44.90\",\"lastInBytes\":178230,\"lastOutBytes\":4555862,\"outBytes\":4555862,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":778662521,\"inFlow\":114,\"lastChangeTime\":\"0:01:24.83\",\"lastInBytes\":778662521,\"lastOutBytes\":3510672082,\"outBytes\":3510672082,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3517999,\"inBytes\":1723876451,\"inFlow\":89312,\"lastChangeTime\":\"5 days, 6:00:49.11\",\"lastInBytes\":1723876451,\"lastOutBytes\":3749257720,\"outBytes\":3749257720,\"outFlow\":3428686,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.808482000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775117", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41375\",\"inUnknownProtos\":\"1924709370\",\"index\":\"634\",\"lastChange\":\"0:01:23.38\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:58:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2056002814\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27623365\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":273765,\"inBytes\":2673298550,\"inFlow\":266818,\"lastChangeTime\":\"0:01:23.04\",\"lastInBytes\":2673298550,\"lastOutBytes\":3796664863,\"outBytes\":3796664863,\"outFlow\":6947,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":410959,\"inBytes\":2516632948,\"inFlow\":400858,\"lastChangeTime\":\"0:01:23.12\",\"lastInBytes\":2516632948,\"lastOutBytes\":670300230,\"outBytes\":670300230,\"outFlow\":10100,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":410102,\"inBytes\":1535789088,\"inFlow\":400064,\"lastChangeTime\":\"0:01:23.29\",\"lastInBytes\":1535789088,\"lastOutBytes\":1326182217,\"outBytes\":1326182217,\"outFlow\":10038,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":889099,\"inBytes\":529569939,\"inFlow\":867168,\"lastChangeTime\":\"0:01:23.59\",\"lastInBytes\":529569939,\"lastOutBytes\":2882091398,\"outBytes\":2882091398,\"outFlow\":21931,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":932553,\"inBytes\":3308347739,\"inFlow\":913811,\"lastChangeTime\":\"0:01:24.16\",\"lastInBytes\":3308347739,\"lastOutBytes\":1924709370,\"outBytes\":1924709370,\"outFlow\":18741,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408229,\"inBytes\":3558378092,\"inFlow\":399619,\"lastChangeTime\":\"0:01:24.39\",\"lastInBytes\":3558378092,\"lastOutBytes\":1417020666,\"outBytes\":1417020666,\"outFlow\":8610,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409764,\"inBytes\":250127427,\"inFlow\":399693,\"lastChangeTime\":\"0:01:23.60\",\"lastInBytes\":250127427,\"lastOutBytes\":1135533454,\"outBytes\":1135533454,\"outFlow\":10071,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":430933,\"inBytes\":1175872967,\"inFlow\":414959,\"lastChangeTime\":\"0:01:26.83\",\"lastInBytes\":1175872967,\"lastOutBytes\":1553566128,\"outBytes\":1553566128,\"outFlow\":15973,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":404970,\"inBytes\":2131923883,\"inFlow\":396701,\"lastChangeTime\":\"0:01:24.55\",\"lastInBytes\":2131923883,\"lastOutBytes\":3562831986,\"outBytes\":3562831986,\"outFlow\":8268,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":679987702,\"inFlow\":114,\"lastChangeTime\":\"0:01:24.51\",\"lastInBytes\":679987702,\"lastOutBytes\":1783893488,\"outBytes\":1783893488,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4588689,\"inBytes\":3667391500,\"inFlow\":115401,\"lastChangeTime\":\"0:01:23.37\",\"lastInBytes\":3667391500,\"lastOutBytes\":396070681,\"outBytes\":396070681,\"outFlow\":4473288,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.829073000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775118", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"92312\",\"inUnknownProtos\":\"1598700682\",\"index\":\"634\",\"lastChange\":\"0:01:41.12\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:49:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3675229231\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"80161429\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":409878,\"inBytes\":1148269815,\"inFlow\":399855,\"lastChangeTime\":\"215 days, 13:41:12.75\",\"lastInBytes\":1148269815,\"lastOutBytes\":2895959337,\"outBytes\":2895959337,\"outFlow\":10022,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409848,\"inBytes\":728099528,\"inFlow\":399728,\"lastChangeTime\":\"215 days, 13:41:10.78\",\"lastInBytes\":728099528,\"lastOutBytes\":558180091,\"outBytes\":558180091,\"outFlow\":10119,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409667,\"inBytes\":3558969541,\"inFlow\":399677,\"lastChangeTime\":\"215 days, 13:41:14.02\",\"lastInBytes\":3558969541,\"lastOutBytes\":2028343955,\"outBytes\":2028343955,\"outFlow\":9990,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":410262,\"inBytes\":3110811619,\"inFlow\":400197,\"lastChangeTime\":\"215 days, 13:41:11.11\",\"lastInBytes\":3110811619,\"lastOutBytes\":700380249,\"outBytes\":700380249,\"outFlow\":10065,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":503778,\"inBytes\":2733852553,\"inFlow\":491568,\"lastChangeTime\":\"215 days, 13:41:15.68\",\"lastInBytes\":2733852553,\"lastOutBytes\":1598700682,\"outBytes\":1598700682,\"outFlow\":12210,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":827470,\"inBytes\":2155824713,\"inFlow\":807775,\"lastChangeTime\":\"215 days, 13:41:12.81\",\"lastInBytes\":2155824713,\"lastOutBytes\":1835511397,\"outBytes\":1835511397,\"outFlow\":19695,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":382949,\"inBytes\":951097633,\"inFlow\":372960,\"lastChangeTime\":\"147 days, 9:28:23.73\",\"lastInBytes\":951097633,\"lastOutBytes\":1496282168,\"outBytes\":1496282168,\"outFlow\":9988,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":382754,\"inBytes\":1451294461,\"inFlow\":373346,\"lastChangeTime\":\"215 days, 13:41:16.43\",\"lastInBytes\":1451294461,\"lastOutBytes\":1819971197,\"outBytes\":1819971197,\"outFlow\":9407,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":771048048,\"inFlow\":114,\"lastChangeTime\":\"0:01:42.13\",\"lastInBytes\":771048048,\"lastOutBytes\":3420885357,\"outBytes\":3420885357,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3830663,\"inBytes\":2163287023,\"inFlow\":96381,\"lastChangeTime\":\"95 days, 4:02:03.35\",\"lastInBytes\":2163287023,\"lastOutBytes\":861947592,\"outBytes\":861947592,\"outFlow\":3734282,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.839729000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775119", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"93736\",\"inUnknownProtos\":\"2582277151\",\"index\":\"634\",\"lastChange\":\"0:01:20.26\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:77:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1635706727\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"88492810\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":419618,\"inBytes\":1490490312,\"inFlow\":411222,\"lastChangeTime\":\"0:01:20.60\",\"lastInBytes\":1490490312,\"lastOutBytes\":1551719257,\"outBytes\":1551719257,\"outFlow\":8395,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406983,\"inBytes\":1112457481,\"inFlow\":398839,\"lastChangeTime\":\"0:01:20.70\",\"lastInBytes\":1112457481,\"lastOutBytes\":3703340249,\"outBytes\":3703340249,\"outFlow\":8143,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410166,\"inBytes\":845746797,\"inFlow\":400071,\"lastChangeTime\":\"220 days, 20:22:02.25\",\"lastInBytes\":845746797,\"lastOutBytes\":2313897466,\"outBytes\":2313897466,\"outFlow\":10095,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":425442,\"inBytes\":212200258,\"inFlow\":416536,\"lastChangeTime\":\"0:01:20.93\",\"lastInBytes\":212200258,\"lastOutBytes\":4072272256,\"outBytes\":4072272256,\"outFlow\":8905,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1087150,\"inBytes\":3747764184,\"inFlow\":1061682,\"lastChangeTime\":\"152 days, 16:09:15.66\",\"lastInBytes\":3747764184,\"lastOutBytes\":2582277151,\"outBytes\":2582277151,\"outFlow\":25468,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":441843,\"inBytes\":2761568425,\"inFlow\":432574,\"lastChangeTime\":\"0:01:21.18\",\"lastInBytes\":2761568425,\"lastOutBytes\":1524821250,\"outBytes\":1524821250,\"outFlow\":9269,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409796,\"inBytes\":3692779853,\"inFlow\":399787,\"lastChangeTime\":\"220 days, 20:22:04.80\",\"lastInBytes\":3692779853,\"lastOutBytes\":4234516751,\"outBytes\":4234516751,\"outFlow\":10008,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409908,\"inBytes\":984500970,\"inFlow\":399856,\"lastChangeTime\":\"220 days, 20:22:01.56\",\"lastInBytes\":984500970,\"lastOutBytes\":503068387,\"outBytes\":503068387,\"outFlow\":10052,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":18989,\"inFlow\":0,\"lastChangeTime\":\"5 days, 8:31:16.88\",\"lastInBytes\":18989,\"lastOutBytes\":1214998,\"outBytes\":1214998,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":770174935,\"inFlow\":114,\"lastChangeTime\":\"5 days, 8:30:57.89\",\"lastInBytes\":770174935,\"lastOutBytes\":3504054621,\"outBytes\":3504054621,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3758998,\"inBytes\":3424485664,\"inFlow\":87663,\"lastChangeTime\":\"0:01:20.25\",\"lastInBytes\":3424485664,\"lastOutBytes\":2407073464,\"outBytes\":2407073464,\"outFlow\":3671334,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.838855000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775120", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"93770\",\"inUnknownProtos\":\"3127915566\",\"index\":\"634\",\"lastChange\":\"0:01:19.62\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:58:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3155086518\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":920832,\"inBytes\":78764426,\"inFlow\":902148,\"lastChangeTime\":\"0:01:26.87\",\"lastInBytes\":78764426,\"lastOutBytes\":997687973,\"outBytes\":997687973,\"outFlow\":18683,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":980837,\"inBytes\":3602144775,\"inFlow\":960547,\"lastChangeTime\":\"0:01:20.10\",\"lastInBytes\":3602144775,\"lastOutBytes\":1095936169,\"outBytes\":1095936169,\"outFlow\":20290,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":925839,\"inBytes\":677689232,\"inFlow\":906410,\"lastChangeTime\":\"0:01:20.61\",\"lastInBytes\":677689232,\"lastOutBytes\":2311528171,\"outBytes\":2311528171,\"outFlow\":19428,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":880385,\"inBytes\":907230869,\"inFlow\":862610,\"lastChangeTime\":\"0:01:24.21\",\"lastInBytes\":907230869,\"lastOutBytes\":151742365,\"outBytes\":151742365,\"outFlow\":17774,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":409005,\"inBytes\":4014635384,\"inFlow\":399023,\"lastChangeTime\":\"152 days, 16:08:59.17\",\"lastInBytes\":4014635384,\"lastOutBytes\":3127915566,\"outBytes\":3127915566,\"outFlow\":9982,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3308,\"inFlow\":0,\"lastChangeTime\":\"5 days, 5:19:56.13\",\"lastInBytes\":3308,\"lastOutBytes\":2621677,\"outBytes\":2621677,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":763736023,\"inFlow\":114,\"lastChangeTime\":\"0:01:20.74\",\"lastInBytes\":763736023,\"lastOutBytes\":3502431794,\"outBytes\":3502431794,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4156830,\"inBytes\":3141261520,\"inFlow\":91238,\"lastChangeTime\":\"5 days, 5:19:54.88\",\"lastInBytes\":3141261520,\"lastOutBytes\":3337618484,\"outBytes\":3337618484,\"outFlow\":4065591,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.872134000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775121", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1022040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"41498\",\"inUnknownProtos\":\"568573244\",\"index\":\"634\",\"lastChange\":\"0:01:19.72\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8b:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1547310456\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"27596426\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:48\",\"info\":{\"portInfoList\":[{\"flow\":412742,\"inBytes\":11177738,\"inFlow\":402394,\"lastChangeTime\":\"54 days, 9:25:29.06\",\"lastInBytes\":11177738,\"lastOutBytes\":1208121612,\"outBytes\":1208121612,\"outFlow\":10347,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":891989,\"inBytes\":57796847,\"inFlow\":869777,\"lastChangeTime\":\"54 days, 9:25:32.50\",\"lastInBytes\":57796847,\"lastOutBytes\":3096344274,\"outBytes\":3096344274,\"outFlow\":22212,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":410579,\"inBytes\":3341506837,\"inFlow\":400464,\"lastChangeTime\":\"0:01:19.70\",\"lastInBytes\":3341506837,\"lastOutBytes\":1005648082,\"outBytes\":1005648082,\"outFlow\":10114,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":889278,\"inBytes\":322009967,\"inFlow\":867250,\"lastChangeTime\":\"0:01:19.71\",\"lastInBytes\":322009967,\"lastOutBytes\":1268057436,\"outBytes\":1268057436,\"outFlow\":22028,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":411724,\"inBytes\":1309890075,\"inFlow\":401688,\"lastChangeTime\":\"0:01:20.18\",\"lastInBytes\":1309890075,\"lastOutBytes\":568573244,\"outBytes\":568573244,\"outFlow\":10035,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410410,\"inBytes\":2375403597,\"inFlow\":400242,\"lastChangeTime\":\"0:01:20.17\",\"lastInBytes\":2375403597,\"lastOutBytes\":1340321950,\"outBytes\":1340321950,\"outFlow\":10167,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":410888,\"inBytes\":2506399971,\"inFlow\":400644,\"lastChangeTime\":\"54 days, 9:25:22.70\",\"lastInBytes\":2506399971,\"lastOutBytes\":3553706621,\"outBytes\":3553706621,\"outFlow\":10243,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":895290,\"inBytes\":3292890783,\"inFlow\":872733,\"lastChangeTime\":\"54 days, 9:25:41.24\",\"lastInBytes\":3292890783,\"lastOutBytes\":2668393720,\"outBytes\":2668393720,\"outFlow\":22556,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":273554,\"inBytes\":2322287840,\"inFlow\":266870,\"lastChangeTime\":\"0:01:20.61\",\"lastInBytes\":2322287840,\"lastOutBytes\":2167687884,\"outBytes\":2167687884,\"outFlow\":6684,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":644233164,\"inFlow\":114,\"lastChangeTime\":\"0:01:20.76\",\"lastInBytes\":644233164,\"lastOutBytes\":1746363384,\"outBytes\":1746363384,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5026943,\"inBytes\":3755455755,\"inFlow\":129642,\"lastChangeTime\":\"0:01:19.71\",\"lastInBytes\":3755455755,\"lastOutBytes\":731762503,\"outBytes\":731762503,\"outFlow\":4897300,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.821737000\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775122", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1022040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"93867\",\"inUnknownProtos\":\"2578497274\",\"index\":\"634\",\"lastChange\":\"0:01:37.99\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8f:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3630624332\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"88489685\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.142\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:48\",\"info\":{\"portInfoList\":[{\"flow\":891601,\"inBytes\":1250056892,\"inFlow\":869433,\"lastChangeTime\":\"220 days, 20:21:55.76\",\"lastInBytes\":1250056892,\"lastOutBytes\":3476747993,\"outBytes\":3476747993,\"outFlow\":22168,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":889761,\"inBytes\":453838789,\"inFlow\":867633,\"lastChangeTime\":\"220 days, 20:21:38.64\",\"lastInBytes\":453838789,\"lastOutBytes\":2424266285,\"outBytes\":2424266285,\"outFlow\":22128,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":411357,\"inBytes\":50218610,\"inFlow\":401445,\"lastChangeTime\":\"152 days, 16:08:48.52\",\"lastInBytes\":50218610,\"lastOutBytes\":4022750913,\"outBytes\":4022750913,\"outFlow\":9911,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1113198,\"inBytes\":3440274406,\"inFlow\":1086742,\"lastChangeTime\":\"152 days, 16:08:53.82\",\"lastInBytes\":3440274406,\"lastOutBytes\":250727083,\"outBytes\":250727083,\"outFlow\":26456,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":411269,\"inBytes\":1248937734,\"inFlow\":401103,\"lastChangeTime\":\"0:01:37.98\",\"lastInBytes\":1248937734,\"lastOutBytes\":2578497274,\"outBytes\":2578497274,\"outFlow\":10166,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":891214,\"inBytes\":1624017433,\"inFlow\":868768,\"lastChangeTime\":\"220 days, 20:21:54.38\",\"lastInBytes\":1624017433,\"lastOutBytes\":907723540,\"outBytes\":907723540,\"outFlow\":22446,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":889744,\"inBytes\":1980174080,\"inFlow\":867225,\"lastChangeTime\":\"220 days, 20:21:38.36\",\"lastInBytes\":1980174080,\"lastOutBytes\":2615283626,\"outBytes\":2615283626,\"outFlow\":22519,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":691874566,\"inFlow\":114,\"lastChangeTime\":\"0:01:38.92\",\"lastInBytes\":691874566,\"lastOutBytes\":3429505979,\"outBytes\":3429505979,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5516525,\"inBytes\":2893466534,\"inFlow\":142059,\"lastChangeTime\":\"0:01:37.97\",\"lastInBytes\":2893466534,\"lastOutBytes\":4203347043,\"outBytes\":4203347043,\"outFlow\":5374465,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.814096000\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775123", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"2539\",\"inUnknownProtos\":\"3560020416\",\"index\":\"634\",\"lastChange\":\"0:02:57.85\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:b4:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"108228618\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"2112103\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.143\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":892467,\"inBytes\":493991618,\"inFlow\":870122,\"lastChangeTime\":\"0:02:23.83\",\"lastInBytes\":493991618,\"lastOutBytes\":1034671111,\"outBytes\":1034671111,\"outFlow\":22344,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":410882,\"inBytes\":3472462568,\"inFlow\":400825,\"lastChangeTime\":\"0:02:30.17\",\"lastInBytes\":3472462568,\"lastOutBytes\":3190763448,\"outBytes\":3190763448,\"outFlow\":10056,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":890269,\"inBytes\":436496677,\"inFlow\":868192,\"lastChangeTime\":\"0:02:20.70\",\"lastInBytes\":436496677,\"lastOutBytes\":746834861,\"outBytes\":746834861,\"outFlow\":22076,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":409907,\"inBytes\":2887570437,\"inFlow\":399839,\"lastChangeTime\":\"0:02:12.70\",\"lastInBytes\":2887570437,\"lastOutBytes\":1937211173,\"outBytes\":1937211173,\"outFlow\":10067,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":410716,\"inBytes\":3215791870,\"inFlow\":400692,\"lastChangeTime\":\"0:01:53.29\",\"lastInBytes\":3215791870,\"lastOutBytes\":3560020416,\"outBytes\":3560020416,\"outFlow\":10024,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":616870,\"inBytes\":1639857898,\"inFlow\":600763,\"lastChangeTime\":\"0:01:58.04\",\"lastInBytes\":1639857898,\"lastOutBytes\":616868541,\"outBytes\":616868541,\"outFlow\":16107,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":895133,\"inBytes\":300769307,\"inFlow\":872938,\"lastChangeTime\":\"0:01:42.53\",\"lastInBytes\":300769307,\"lastOutBytes\":806327736,\"outBytes\":806327736,\"outFlow\":22194,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":411721,\"inBytes\":3972736730,\"inFlow\":401264,\"lastChangeTime\":\"0:01:44.29\",\"lastInBytes\":3972736730,\"lastOutBytes\":3615609952,\"outBytes\":3615609952,\"outFlow\":10456,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":23078974,\"inFlow\":0,\"lastChangeTime\":\"0:58:17.60\",\"lastInBytes\":23078974,\"lastOutBytes\":2246884832,\"outBytes\":2246884832,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:16:02.25\",\"lastInBytes\":0,\"lastOutBytes\":59958727,\"outBytes\":59958727,\"outFlow\":94,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4952709,\"inBytes\":3956502694,\"inFlow\":128370,\"lastChangeTime\":\"0:07:40.49\",\"lastInBytes\":3956502694,\"lastOutBytes\":4035023068,\"outBytes\":4035023068,\"outFlow\":4824338,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.820016000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775124", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"6358303\",\"inErrors\":\"0\",\"inNUcastPkts\":\"2\",\"inOctets\":\"0\",\"inUcastPkts\":\"93911\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:19.62\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:5a:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"53161664\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.144\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":409988,\"inBytes\":3523122545,\"inFlow\":399941,\"lastChangeTime\":\"130 days, 19:38:34.68\",\"lastInBytes\":3523122545,\"lastOutBytes\":3038105240,\"outBytes\":3038105240,\"outFlow\":10047,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":409720,\"inBytes\":2639406371,\"inFlow\":399665,\"lastChangeTime\":\"130 days, 19:38:17.83\",\"lastInBytes\":2639406371,\"lastOutBytes\":2209192738,\"outBytes\":2209192738,\"outFlow\":10054,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":462,\"inBytes\":385784838,\"inFlow\":38,\"lastChangeTime\":\"291 days, 13:34:24.59\",\"lastInBytes\":385784838,\"lastOutBytes\":458331444,\"outBytes\":458331444,\"outFlow\":423,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":826554,\"inBytes\":132127400,\"inFlow\":807044,\"lastChangeTime\":\"130 days, 19:39:33.97\",\"lastInBytes\":132127400,\"lastOutBytes\":1155033895,\"outBytes\":1155033895,\"outFlow\":19510,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":273428,\"inBytes\":738060714,\"inFlow\":266738,\"lastChangeTime\":\"130 days, 19:37:59.41\",\"lastInBytes\":738060714,\"lastOutBytes\":39663018,\"outBytes\":39663018,\"outFlow\":6689,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":273725,\"inBytes\":2459791136,\"inFlow\":266929,\"lastChangeTime\":\"130 days, 19:39:05.83\",\"lastInBytes\":2459791136,\"lastOutBytes\":1059949141,\"outBytes\":1059949141,\"outFlow\":6796,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":273686,\"inBytes\":3251672370,\"inFlow\":266937,\"lastChangeTime\":\"130 days, 19:38:49.60\",\"lastInBytes\":3251672370,\"lastOutBytes\":1873113725,\"outBytes\":1873113725,\"outFlow\":6748,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":121542,\"inFlow\":0,\"lastChangeTime\":\"130 days, 19:39:18.80\",\"lastInBytes\":121542,\"lastOutBytes\":1178497,\"outBytes\":1178497,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":4933,\"inFlow\":0,\"lastChangeTime\":\"130 days, 19:37:43.40\",\"lastInBytes\":4933,\"lastOutBytes\":1331287988,\"outBytes\":1331287988,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2478234,\"inBytes\":491841422,\"inFlow\":63218,\"lastChangeTime\":\"130 days, 19:39:42.97\",\"lastInBytes\":491841422,\"lastOutBytes\":84972953,\"outBytes\":84972953,\"outFlow\":2415015,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.820892000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775125", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1022040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif172\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:f1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:32\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405432,\"inBytes\":422602195,\"inFlow\":396177,\"lastChangeTime\":\"152 days, 15:56:29.18\",\"lastInBytes\":422602195,\"lastOutBytes\":756777575,\"outBytes\":756777575,\"outFlow\":9254,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":410540,\"inBytes\":3305968263,\"inFlow\":10444,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3305968263,\"lastOutBytes\":1430132614,\"outBytes\":1430132614,\"outFlow\":400096,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:45.335745000\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775126", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:44", + "echoMap": {}, + "deviceId": "1022040017", + "name": "H3C前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif172\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:61\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"17\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:43\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":572149,\"inBytes\":3690449710,\"inFlow\":559319,\"lastChangeTime\":\"152 days, 15:57:37.82\",\"lastInBytes\":3690449710,\"lastOutBytes\":1812712581,\"outBytes\":1812712581,\"outFlow\":12830,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":575445,\"inBytes\":2911156531,\"inFlow\":14160,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2911156531,\"lastOutBytes\":2184908312,\"outBytes\":2184908312,\"outFlow\":561285,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:35:47.159605000\"}}", + "lastDiagTime": "2026-02-02 14:37:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775127", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040018", + "name": "H3C前端交换机17", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"1526224084\",\"index\":\"634\",\"lastChange\":\"0:01:19.47\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:90:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1969138380\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23640809\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.147\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":545422,\"inBytes\":3715356989,\"inFlow\":532826,\"lastChangeTime\":\"220 days, 20:21:56.66\",\"lastInBytes\":3715356989,\"lastOutBytes\":2414105423,\"outBytes\":2414105423,\"outFlow\":12595,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":545644,\"inBytes\":3781469279,\"inFlow\":532849,\"lastChangeTime\":\"220 days, 20:22:03.18\",\"lastInBytes\":3781469279,\"lastOutBytes\":3031760795,\"outBytes\":3031760795,\"outFlow\":12795,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":829449,\"inBytes\":3083871739,\"inFlow\":813973,\"lastChangeTime\":\"0:01:20.51\",\"lastInBytes\":3083871739,\"lastOutBytes\":4024499889,\"outBytes\":4024499889,\"outFlow\":15475,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":428264,\"inBytes\":2990894096,\"inFlow\":419338,\"lastChangeTime\":\"0:01:20.58\",\"lastInBytes\":2990894096,\"lastOutBytes\":1526224084,\"outBytes\":1526224084,\"outFlow\":8925,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":545121,\"inBytes\":200979223,\"inFlow\":532531,\"lastChangeTime\":\"220 days, 20:21:52.19\",\"lastInBytes\":200979223,\"lastOutBytes\":2381436877,\"outBytes\":2381436877,\"outFlow\":12590,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":816928,\"inBytes\":24651647,\"inFlow\":798285,\"lastChangeTime\":\"220 days, 20:22:07.86\",\"lastInBytes\":24651647,\"lastOutBytes\":1086242945,\"outBytes\":1086242945,\"outFlow\":18642,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1052067,\"inBytes\":1260841095,\"inFlow\":1027698,\"lastChangeTime\":\"152 days, 16:09:03.89\",\"lastInBytes\":1260841095,\"lastOutBytes\":2602179657,\"outBytes\":2602179657,\"outFlow\":24369,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":409953,\"inBytes\":2204972005,\"inFlow\":400063,\"lastChangeTime\":\"220 days, 20:22:06.80\",\"lastInBytes\":2204972005,\"lastOutBytes\":2820543844,\"outBytes\":2820543844,\"outFlow\":9890,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":321,\"inBytes\":660086066,\"inFlow\":114,\"lastChangeTime\":\"0:01:20.98\",\"lastInBytes\":660086066,\"lastOutBytes\":3373534109,\"outBytes\":3373534109,\"outFlow\":206,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5193671,\"inBytes\":1948171183,\"inFlow\":122014,\"lastChangeTime\":\"0:01:19.93\",\"lastInBytes\":1948171183,\"lastOutBytes\":2928407307,\"outBytes\":2928407307,\"outFlow\":5071657,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.823418000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046177179775128", + "createdBy": "0", + "createdTime": "2025-02-28 13:06:40", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1022040019", + "name": "H3C前端交换机18", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.172.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface172\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"300141257\",\"index\":\"634\",\"lastChange\":\"0:01:24.06\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8e:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1755866187\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23639684\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.172.148\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:49\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":545296,\"inBytes\":1965216244,\"inFlow\":532665,\"lastChangeTime\":\"220 days, 20:21:50.22\",\"lastInBytes\":1965216244,\"lastOutBytes\":3805295472,\"outBytes\":3805295472,\"outFlow\":12631,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":545407,\"inBytes\":3759239992,\"inFlow\":532651,\"lastChangeTime\":\"220 days, 20:21:54.05\",\"lastInBytes\":3759239992,\"lastOutBytes\":1976465340,\"outBytes\":1976465340,\"outFlow\":12755,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":418002,\"inBytes\":394920579,\"inFlow\":410042,\"lastChangeTime\":\"0:01:25.03\",\"lastInBytes\":394920579,\"lastOutBytes\":312138329,\"outBytes\":312138329,\"outFlow\":7959,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":907610,\"inBytes\":3816561107,\"inFlow\":887324,\"lastChangeTime\":\"0:01:25.08\",\"lastInBytes\":3816561107,\"lastOutBytes\":300141257,\"outBytes\":300141257,\"outFlow\":20285,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":545477,\"inBytes\":4079341504,\"inFlow\":532914,\"lastChangeTime\":\"220 days, 20:21:42.55\",\"lastInBytes\":4079341504,\"lastOutBytes\":3490253596,\"outBytes\":3490253596,\"outFlow\":12562,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":546873,\"inBytes\":2660311715,\"inFlow\":534113,\"lastChangeTime\":\"220 days, 20:21:46.27\",\"lastInBytes\":2660311715,\"lastOutBytes\":2242959699,\"outBytes\":2242959699,\"outFlow\":12759,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":545314,\"inBytes\":1760531942,\"inFlow\":532620,\"lastChangeTime\":\"220 days, 20:21:48.60\",\"lastInBytes\":1760531942,\"lastOutBytes\":518407363,\"outBytes\":518407363,\"outFlow\":12693,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":408602,\"inBytes\":1111106087,\"inFlow\":398984,\"lastChangeTime\":\"152 days, 16:08:53.44\",\"lastInBytes\":1111106087,\"lastOutBytes\":1919266466,\"outBytes\":1919266466,\"outFlow\":9617,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":84199,\"inFlow\":0,\"lastChangeTime\":\"5 days, 5:44:40.75\",\"lastInBytes\":84199,\"lastOutBytes\":3562838,\"outBytes\":3562838,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":320,\"inBytes\":660043197,\"inFlow\":114,\"lastChangeTime\":\"0:01:25.44\",\"lastInBytes\":660043197,\"lastOutBytes\":3370865319,\"outBytes\":3370865319,\"outFlow\":205,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4471526,\"inBytes\":1290423554,\"inFlow\":100109,\"lastChangeTime\":\"5 days, 6:04:09.39\",\"lastInBytes\":1290423554,\"lastOutBytes\":2244132102,\"outBytes\":2244132102,\"outFlow\":4371416,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:44.824092000\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046177179775105", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1022110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.171.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.90\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"297 days, 11:09:29.92\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"5112998\",\"inErrors\":\"0\",\"inNUcastPkts\":\"13707732\",\"inOctets\":\"1374374337\",\"inUcastPkts\":\"1124610169\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:01:31.52\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9b:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"406524552\",\"outQLen\":\"0\",\"outUcastPkts\":\"1158168132\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.171.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1023": { + "ndmAlarmHost": [ + { + "id": "707150104547555444", + "createdBy": null, + "createdTime": "2025-12-08 13:46:56", + "updatedBy": null, + "updatedTime": "2025-12-13 09:57:42", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.173.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046086985457791", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060001", + "name": "[604](10)国权弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457792", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1023060002", + "name": "[605](10)国权弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457793", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1023060003", + "name": "[616](10)国权消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303001006023616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457794", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1023060004", + "name": "[606](10)国权弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457795", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1023060005", + "name": "[607](10)国权弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457796", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060006", + "name": "[611](10)国权内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303001006023611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457797", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060007", + "name": "[602](10)国权编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303041005023602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457798", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1023060008", + "name": "[603](10)国权编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303041005023603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457799", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1023060009", + "name": "[609](10)国权环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303053005023609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457800", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060010", + "name": "[612](10)国权内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303001006023612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457801", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060011", + "name": "[305](10)国权3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457802", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060012", + "name": "[306](10)国权3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457803", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1023060013", + "name": "[209](10)国权3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057004023209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457804", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-01-15 12:59:43", + "echoMap": {}, + "deviceId": "1023060014", + "name": "[308](10)国权3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457805", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1023060015", + "name": "[307](10)国权3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457806", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1023060016", + "name": "[309](10)国权3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457807", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1023060017", + "name": "[303](10)国权3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457808", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060018", + "name": "[304](10)国权3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457809", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1023060019", + "name": "[330](10)国权B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301040006023330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457810", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1023060020", + "name": "[601](10)国权车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303042004023601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457811", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1023060021", + "name": "[501](10)国权客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301001005023501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457812", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1023060022", + "name": "[401](10)国权1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301005006023401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457813", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1023060023", + "name": "[402](10)国权1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301005006023402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457814", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1023060024", + "name": "[302](10)国权3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457815", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1023060025", + "name": "[301](10)国权3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457816", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1023060026", + "name": "[202](10)国权厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301035004023202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457817", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:37:44", + "echoMap": {}, + "deviceId": "1023060027", + "name": "[503](10)国权票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301030006023503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457818", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1023060028", + "name": "[336](10)国权1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301036005023336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457819", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1023060029", + "name": "[321](10)国权#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301045006023321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457820", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1023060030", + "name": "[320](10)国权#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301045006023320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457821", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1023060031", + "name": "[331](10)国权B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301040006023331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457822", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1023060032", + "name": "[322](10)国权#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301045006023322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457823", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1023060033", + "name": "[201](10)国权厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301035004023201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457824", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1023060034", + "name": "[338](10)国权安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301085006023338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457825", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1023060035", + "name": "[403](10)国权2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301006006023403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457826", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:01:21", + "echoMap": {}, + "deviceId": "1023060036", + "name": "[325](10)国权#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301045006023325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457827", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:00:22", + "echoMap": {}, + "deviceId": "1023060037", + "name": "[339](10)国权安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301085006023339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457828", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:01:22", + "echoMap": {}, + "deviceId": "1023060038", + "name": "[405](10)国权3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301007006023405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457829", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:00:24", + "echoMap": {}, + "deviceId": "1023060039", + "name": "[613](10)国权内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303001006023613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457830", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:00:24", + "echoMap": {}, + "deviceId": "1023060040", + "name": "[406](10)国权3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301007006023406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457831", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-01-01 14:05:48", + "echoMap": {}, + "deviceId": "1023060041", + "name": "[335](10)国权10-18换乘入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301081006023335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457832", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:22:21", + "echoMap": {}, + "deviceId": "1023060042", + "name": "[333](10)国权10-18换乘入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301081006023333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457833", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:00:26", + "echoMap": {}, + "deviceId": "1023060043", + "name": "[334](10)国权10-18换乘入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301081006023334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457834", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:00:26", + "echoMap": {}, + "deviceId": "1023060044", + "name": "[203](10)国权厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301035004023203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457835", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:01:23", + "echoMap": {}, + "deviceId": "1023060045", + "name": "[407](10)国权3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301007006023407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457836", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-19 03:01:24", + "echoMap": {}, + "deviceId": "1023060046", + "name": "[610](10)国权环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303053005023610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457837", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1023060047", + "name": "[313](10)国权4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457838", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1023060048", + "name": "[311](10)国权4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457839", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1023060049", + "name": "[310](10)国权4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457840", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1023060050", + "name": "[404](10)国权3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301007006023404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457841", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1023060051", + "name": "[312](10)国权4#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457842", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1023060052", + "name": "[204](10)国权厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301035004023204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457843", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1023060053", + "name": "[323](10)国权#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301045006023323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457844", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1023060054", + "name": "[324](10)国权#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301045006023324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457845", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-02-01 09:03:44", + "echoMap": {}, + "deviceId": "1023060055", + "name": "[502](10)国权客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301001006023502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457846", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1023060056", + "name": "[314](10)国权4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457847", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1023060057", + "name": "[210](10)国权4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058004023210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457848", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1023060058", + "name": "[317](10)国权4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457849", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1023060059", + "name": "[315](10)国权4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457850", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1023060060", + "name": "[318](10)国权4#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058005023318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457851", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1023060061", + "name": "[614](10)国权内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303001006023614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457852", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1023060062", + "name": "[319](10)国权4#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457853", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-22 09:19:20", + "echoMap": {}, + "deviceId": "1023060063", + "name": "[337](10)国权2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301036005023337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457854", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 14:09:44", + "echoMap": {}, + "deviceId": "1023060064", + "name": "[316](10)国权4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301058006023316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457855", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1023060065", + "name": "[618](10)国权变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303021006023618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457856", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060066", + "name": "[617](10)国权变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303021006023617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457857", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060067", + "name": "[108](10)国权下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302012006023108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457858", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060068", + "name": "[107](10)国权下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302012006023107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457859", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1023060069", + "name": "[702](10)国权下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062304013006023702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457860", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1023060070", + "name": "[207](10)国权下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302001004023207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457861", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1023060071", + "name": "[608](10)国权屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457862", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1023060072", + "name": "[615](10)国权内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303021006023615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457863", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1023060073", + "name": "[206](10)国权上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302001004023206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457864", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-01-23 00:18:44", + "echoMap": {}, + "deviceId": "1023060074", + "name": "[701](10)国权上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062304013006023701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457865", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1023060075", + "name": "[105](10)国权上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302007006023105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457866", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1023060076", + "name": "[106](10)国权上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302007006023106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457867", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-12-07 14:40:51", + "echoMap": {}, + "deviceId": "1023060077", + "name": "[110](10)国权下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302012006023110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457868", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1023060078", + "name": "[109](10)国权下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302012006023109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457869", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1023060079", + "name": "[326](10)国权#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302017006023326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457870", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1023060080", + "name": "[332](10)国权B2垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302002006023332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457871", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1023060081", + "name": "[327](10)国权#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302017006023327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457872", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1023060082", + "name": "[205](10)国权上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302001004023205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457873", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2026-02-02 07:19:44", + "echoMap": {}, + "deviceId": "1023060083", + "name": "[103](10)国权上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302007006023103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457874", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1023060084", + "name": "[104](10)国权上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302007006023104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457875", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1023060085", + "name": "[111](10)国权下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302012006023111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457876", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1023060086", + "name": "[112](10)国权下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302012006023112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457877", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1023060087", + "name": "[328](10)国权#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302017006023328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457878", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1023060088", + "name": "[208](10)国权下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302001004023208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457879", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1023060089", + "name": "[329](10)国权#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302017006023329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457880", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060090", + "name": "[102](10)国权上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302007006023102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457881", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060091", + "name": "[101](10)国权上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062302007006023101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457882", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1023060092", + "name": "[619](10)国权通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457883", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1023060093", + "name": "[620](10)国权通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303048005023620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457884", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1023060094", + "name": "[621](10)国权内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303021005023621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457885", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060095", + "name": "[622](10)国权气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303067005023622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457886", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1023060096", + "name": "[623](10)国权消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303068005023623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457887", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1023060097", + "name": "[340](10)国权3号出入口通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062301057006023340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457888", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1023060098", + "name": "[624](10)国权内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303021006023624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985457889", + "createdBy": "0", + "createdTime": "2025-02-28 13:22:35", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1023060099", + "name": "[625](10)国权气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.173.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062303067005023625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046086985457896", + "createdBy": "0", + "createdTime": "2025-02-28 13:23:48", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:45", + "echoMap": {}, + "deviceId": "1023070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.173.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062300000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112152\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3996676976\",\"inUcastPkts\":\"505555268\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:66:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"395730203\",\"outQLen\":\"0\",\"outUcastPkts\":\"241657318\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.173.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:44\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ04E7B\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:37:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046086985458633", + "createdBy": "2", + "createdTime": "2025-02-28 13:28:05", + "updatedBy": null, + "updatedTime": "2025-12-23 10:19:11", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.173.51", + "manageUrl": "http:\\\\10.18.173.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046086985458634", + "createdBy": "2", + "createdTime": "2025-02-28 13:28:21", + "updatedBy": null, + "updatedTime": "2025-12-23 10:19:06", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.173.52", + "manageUrl": "http:\\\\10.18.173.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046086985457895", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:45", + "echoMap": {}, + "deviceId": "1023090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.173.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.87\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"96 days, 0:20:04.38\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10602740\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27331450\",\"inOctets\":\"2240762108\",\"inUcastPkts\":\"3044508602\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:ab:00\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2263514945\",\"outQLen\":\"0\",\"outUcastPkts\":\"787256368\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.173.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:37:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046086985457891", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 13:22:48", + "echoMap": {}, + "deviceId": "1023050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.173.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062300000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.173.22;10.18.173.23" + }, + { + "id": "585046086985457892", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-12-29 11:07:59", + "echoMap": {}, + "deviceId": "1023050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.173.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062300000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"166\",\"inErrors\":\"0\",\"inNUcastPkts\":\"320\",\"inOctets\":\"25463518\",\"inUcastPkts\":\"47455\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:73:7b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4680450\",\"outQLen\":\"0\",\"outUcastPkts\":\"38274\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.173.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2025-09-11 21:55:56\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":432638848,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"生产厂商\":\"HIKVISION\",\"设备别名\":\"node17322\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"17\",\"CPU使用率\":\"11\"}}", + "lastDiagTime": "2025-09-11 21:55:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": false, + "clusterList": "10.18.173.22" + }, + { + "id": "585046086985457893", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:45", + "echoMap": {}, + "deviceId": "1023050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.173.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062300000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"12414028\",\"inErrors\":\"0\",\"inNUcastPkts\":\"23236551\",\"inOctets\":\"3347301008\",\"inUcastPkts\":\"3846073260\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8b:11\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1540654837\",\"outQLen\":\"0\",\"outUcastPkts\":\"3495541359\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.173.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:45\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":926567908,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17323\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"50\",\"CPU使用率\":\"15\"}}", + "lastDiagTime": "2026-02-02 14:37:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.173.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706389427184726057", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:45", + "echoMap": {}, + "deviceId": "1023030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"510880\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"28087003\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"370 days, 1:03:00.68\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"510885\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:0f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.738},{\"current\":0.001,\"status\":1,\"voltage\":26.738},{\"current\":0.001,\"status\":1,\"voltage\":26.738},{\"current\":0.001,\"status\":1,\"voltage\":26.738},{\"current\":0.001,\"status\":1,\"voltage\":26.738},{\"current\":0.0,\"status\":1,\"voltage\":26.738},{\"current\":0.0,\"status\":1,\"voltage\":26.738},{\"current\":0.0,\"status\":1,\"voltage\":26.738},{\"current\":0.0,\"status\":1,\"voltage\":26.738},{\"current\":0.0,\"status\":1,\"voltage\":26.928001},{\"current\":0.003,\"status\":1,\"voltage\":26.928001},{\"current\":0.001,\"status\":1,\"voltage\":26.928001},{\"current\":0.001,\"status\":1,\"voltage\":26.928001},{\"current\":0.001,\"status\":1,\"voltage\":26.928001},{\"current\":0.001,\"status\":1,\"voltage\":26.928001},{\"current\":0.001,\"status\":1,\"voltage\":26.928001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303599\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726058", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:45", + "echoMap": {}, + "deviceId": "1023030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16150041\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"902398241\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"111 days, 14:35:34.68\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16150046\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:48\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25300002,\"status\":1,\"voltage\":26.372002},{\"current\":0.257,\"status\":1,\"voltage\":26.372002},{\"current\":0.256,\"status\":1,\"voltage\":26.372002},{\"current\":0.54,\"status\":1,\"voltage\":26.372002},{\"current\":0.259,\"status\":1,\"voltage\":26.372002},{\"current\":0.252,\"status\":1,\"voltage\":26.372002},{\"current\":0.256,\"status\":1,\"voltage\":26.372002},{\"current\":0.22200002,\"status\":1,\"voltage\":26.372002},{\"current\":0.001,\"status\":1,\"voltage\":26.372002},{\"current\":0.001,\"status\":1,\"voltage\":26.627},{\"current\":0.003,\"status\":1,\"voltage\":26.627},{\"current\":0.001,\"status\":1,\"voltage\":26.627},{\"current\":0.001,\"status\":1,\"voltage\":26.627},{\"current\":0.001,\"status\":1,\"voltage\":26.627},{\"current\":0.001,\"status\":1,\"voltage\":26.627},{\"current\":0.0,\"status\":1,\"voltage\":26.627}],\"fanSpeeds\":[0,0],\"humidity\":42,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301898\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726059", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:46", + "echoMap": {}, + "deviceId": "1023030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16281583\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"909775956\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"111 days, 22:21:05.90\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16281588\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:0b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26900002,\"status\":1,\"voltage\":26.446001},{\"current\":0.257,\"status\":1,\"voltage\":26.446001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.446001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.446001},{\"current\":0.24700001,\"status\":1,\"voltage\":26.446001},{\"current\":0.554,\"status\":1,\"voltage\":26.446001},{\"current\":0.27400002,\"status\":1,\"voltage\":26.446001},{\"current\":0.261,\"status\":1,\"voltage\":26.446001},{\"current\":0.0,\"status\":1,\"voltage\":26.446001},{\"current\":0.0,\"status\":1,\"voltage\":26.527},{\"current\":0.003,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527},{\"current\":0.001,\"status\":1,\"voltage\":26.527}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303595\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726060", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:46", + "echoMap": {}, + "deviceId": "1023030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16358824\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"914106082\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"113 days, 8:39:57.31\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16358829\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:13\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":26.673},{\"current\":0.25300002,\"status\":1,\"voltage\":26.673},{\"current\":0.238,\"status\":1,\"voltage\":26.673},{\"current\":0.54700005,\"status\":1,\"voltage\":26.673},{\"current\":0.22100002,\"status\":1,\"voltage\":26.673},{\"current\":0.268,\"status\":1,\"voltage\":26.673},{\"current\":0.564,\"status\":1,\"voltage\":26.673},{\"current\":0.238,\"status\":1,\"voltage\":26.673},{\"current\":0.272,\"status\":1,\"voltage\":26.673},{\"current\":0.259,\"status\":1,\"voltage\":26.182001},{\"current\":0.003,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301490\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726061", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:47", + "echoMap": {}, + "deviceId": "1023030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16389498\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"915827097\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16389503\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:f4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24900001,\"status\":1,\"voltage\":26.326002},{\"current\":0.504,\"status\":1,\"voltage\":26.326002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.326002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.326002},{\"current\":0.223,\"status\":1,\"voltage\":26.326002},{\"current\":0.252,\"status\":1,\"voltage\":26.326002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.326002},{\"current\":0.41400003,\"status\":1,\"voltage\":26.326002},{\"current\":0.27600002,\"status\":1,\"voltage\":26.326002},{\"current\":0.231,\"status\":1,\"voltage\":26.218},{\"current\":0.003,\"status\":1,\"voltage\":26.218},{\"current\":0.22000001,\"status\":1,\"voltage\":26.218},{\"current\":0.001,\"status\":1,\"voltage\":26.218},{\"current\":0.001,\"status\":1,\"voltage\":26.218},{\"current\":0.001,\"status\":1,\"voltage\":26.218},{\"current\":0.001,\"status\":1,\"voltage\":26.218}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301897\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726062", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:47", + "echoMap": {}, + "deviceId": "1023030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16408327\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"916883112\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"112 days, 17:31:41.82\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16408332\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:16\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.351,\"status\":1,\"voltage\":26.563002},{\"current\":0.316,\"status\":1,\"voltage\":26.563002},{\"current\":0.28300002,\"status\":1,\"voltage\":26.563002},{\"current\":0.47200003,\"status\":1,\"voltage\":26.563002},{\"current\":0.397,\"status\":1,\"voltage\":26.563002},{\"current\":0.001,\"status\":0,\"voltage\":26.563002},{\"current\":0.32500002,\"status\":1,\"voltage\":26.563002},{\"current\":0.31,\"status\":1,\"voltage\":26.563002},{\"current\":0.34,\"status\":1,\"voltage\":26.563002},{\"current\":0.001,\"status\":1,\"voltage\":26.963001},{\"current\":0.003,\"status\":1,\"voltage\":26.963001},{\"current\":0.001,\"status\":1,\"voltage\":26.963001},{\"current\":0.001,\"status\":1,\"voltage\":26.963001},{\"current\":0.001,\"status\":1,\"voltage\":26.963001},{\"current\":0.001,\"status\":1,\"voltage\":26.963001},{\"current\":0.001,\"status\":1,\"voltage\":26.963001}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301493\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726063", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1023030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16416055\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"917318923\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"113 days, 12:49:26.26\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16416060\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:1b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.284,\"status\":1,\"voltage\":26.597002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.597002},{\"current\":0.33400002,\"status\":1,\"voltage\":26.597002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.597002},{\"current\":0.31,\"status\":1,\"voltage\":26.597002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.597002},{\"current\":0.31500003,\"status\":1,\"voltage\":26.597002},{\"current\":0.305,\"status\":1,\"voltage\":26.597002},{\"current\":0.558,\"status\":1,\"voltage\":26.597002},{\"current\":0.33400002,\"status\":1,\"voltage\":26.674002},{\"current\":0.003,\"status\":1,\"voltage\":26.674002},{\"current\":0.21900001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002},{\"current\":0.001,\"status\":1,\"voltage\":26.674002}],\"fanSpeeds\":[0,0],\"humidity\":47,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301498\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726064", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:48", + "echoMap": {}, + "deviceId": "1023030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16418498\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"917455585\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"112 days, 11:34:32.07\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16418503\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:4f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.425,\"status\":1,\"voltage\":26.999},{\"current\":0.26000002,\"status\":1,\"voltage\":26.999},{\"current\":0.261,\"status\":1,\"voltage\":26.999},{\"current\":0.25,\"status\":1,\"voltage\":26.999},{\"current\":0.268,\"status\":1,\"voltage\":26.999},{\"current\":0.545,\"status\":1,\"voltage\":26.999},{\"current\":0.264,\"status\":1,\"voltage\":26.999},{\"current\":0.324,\"status\":1,\"voltage\":26.999},{\"current\":0.001,\"status\":1,\"voltage\":26.999},{\"current\":0.001,\"status\":1,\"voltage\":26.988},{\"current\":0.003,\"status\":1,\"voltage\":26.988},{\"current\":0.001,\"status\":1,\"voltage\":26.988},{\"current\":0.001,\"status\":1,\"voltage\":26.988},{\"current\":0.001,\"status\":1,\"voltage\":26.988},{\"current\":0.001,\"status\":1,\"voltage\":26.988},{\"current\":0.0,\"status\":1,\"voltage\":26.988}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208303663\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726065", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:49", + "echoMap": {}, + "deviceId": "1023030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"9903550\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"552126246\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9903555\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:ed\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24700001,\"status\":1,\"voltage\":26.890001},{\"current\":0.55200005,\"status\":1,\"voltage\":26.890001},{\"current\":0.28300002,\"status\":1,\"voltage\":26.890001},{\"current\":0.335,\"status\":1,\"voltage\":26.890001},{\"current\":0.33600003,\"status\":1,\"voltage\":26.890001},{\"current\":0.312,\"status\":1,\"voltage\":26.890001},{\"current\":0.305,\"status\":1,\"voltage\":26.890001},{\"current\":0.537,\"status\":1,\"voltage\":26.890001},{\"current\":0.261,\"status\":1,\"voltage\":26.890001},{\"current\":0.30200002,\"status\":1,\"voltage\":26.878002},{\"current\":0.003,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002},{\"current\":0.001,\"status\":1,\"voltage\":26.878002}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301452\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726066", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:50", + "echoMap": {}, + "deviceId": "1023030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16425569\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"917850383\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"112 days, 16:53:43.79\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16425574\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:63\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.264,\"status\":1,\"voltage\":27.011002},{\"current\":0.27,\"status\":1,\"voltage\":27.011002},{\"current\":0.52900004,\"status\":1,\"voltage\":27.011002},{\"current\":0.25800002,\"status\":1,\"voltage\":27.011002},{\"current\":0.27600002,\"status\":1,\"voltage\":27.011002},{\"current\":0.264,\"status\":1,\"voltage\":27.011002},{\"current\":0.303,\"status\":1,\"voltage\":27.011002},{\"current\":0.30400002,\"status\":1,\"voltage\":27.011002},{\"current\":0.256,\"status\":1,\"voltage\":27.011002},{\"current\":0.001,\"status\":1,\"voltage\":26.946001},{\"current\":0.003,\"status\":1,\"voltage\":26.946001},{\"current\":0.001,\"status\":1,\"voltage\":26.946001},{\"current\":0.001,\"status\":1,\"voltage\":26.946001},{\"current\":0.001,\"status\":1,\"voltage\":26.946001},{\"current\":0.001,\"status\":1,\"voltage\":26.946001},{\"current\":0.001,\"status\":1,\"voltage\":26.946001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208301570\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726067", + "createdBy": "0", + "createdTime": "2025-12-02 08:54:27", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:50", + "echoMap": {}, + "deviceId": "1023030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.174.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"16661703\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"931094091\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:53.37\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"16661708\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:17\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22600001,\"status\":1,\"voltage\":26.603},{\"current\":0.22200002,\"status\":1,\"voltage\":26.603},{\"current\":0.26900002,\"status\":1,\"voltage\":26.603},{\"current\":0.22800002,\"status\":1,\"voltage\":26.603},{\"current\":0.22600001,\"status\":1,\"voltage\":26.603},{\"current\":0.24800001,\"status\":1,\"voltage\":26.603},{\"current\":0.22200002,\"status\":1,\"voltage\":26.603},{\"current\":0.22200002,\"status\":1,\"voltage\":26.603},{\"current\":0.21400002,\"status\":1,\"voltage\":26.603},{\"current\":0.22500001,\"status\":1,\"voltage\":27.323002},{\"current\":0.002,\"status\":1,\"voltage\":27.323002},{\"current\":0.22500001,\"status\":1,\"voltage\":27.323002},{\"current\":0.231,\"status\":1,\"voltage\":27.323002},{\"current\":0.22500001,\"status\":1,\"voltage\":27.323002},{\"current\":0.22200002,\"status\":1,\"voltage\":27.323002},{\"current\":0.215,\"status\":1,\"voltage\":27.323002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301494\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389427184726034", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"728694\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"71 days, 12:37:58.69\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:0a:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":261,\"inBytes\":441224255,\"inFlow\":4,\"lastChangeTime\":\"409 days, 8:59:47.70\",\"lastInBytes\":441224255,\"lastOutBytes\":1378553813,\"outBytes\":1378553813,\"outFlow\":257,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":452,\"inBytes\":1291091055,\"inFlow\":117,\"lastChangeTime\":\"409 days, 8:04:15.28\",\"lastInBytes\":1291091055,\"lastOutBytes\":2233178441,\"outBytes\":2233178441,\"outFlow\":335,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":321,\"inBytes\":1053086462,\"inFlow\":54,\"lastChangeTime\":\"276 days, 12:38:21.02\",\"lastInBytes\":1053086462,\"lastOutBytes\":726182409,\"outBytes\":726182409,\"outFlow\":267,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3574599,\"inBytes\":3412337248,\"inFlow\":20296,\"lastChangeTime\":\"318 days, 6:45:15.65\",\"lastInBytes\":3412337248,\"lastOutBytes\":4029917764,\"outBytes\":4029917764,\"outFlow\":3554303,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3334148,\"inFlow\":0,\"lastChangeTime\":\"31 days, 20:06:09.47\",\"lastInBytes\":3334148,\"lastOutBytes\":293222104,\"outBytes\":293222104,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":648,\"inBytes\":53078542,\"inFlow\":287,\"lastChangeTime\":\"31 days, 19:48:09.74\",\"lastInBytes\":53078542,\"lastOutBytes\":373806561,\"outBytes\":373806561,\"outFlow\":360,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3607416,\"inBytes\":445104011,\"inFlow\":3584168,\"lastChangeTime\":\"0:05:27.93\",\"lastInBytes\":445104011,\"lastOutBytes\":3726026293,\"outBytes\":3726026293,\"outFlow\":23247,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.712403000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726035", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196102\",\"inUnknownProtos\":\"2183137158\",\"index\":\"634\",\"lastChange\":\"33 days, 10:43:26.84\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8c:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1399998296\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"210026232\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":883865,\"inBytes\":590919219,\"inFlow\":861383,\"lastChangeTime\":\"52 days, 21:43:22.93\",\"lastInBytes\":590919219,\"lastOutBytes\":1672704837,\"outBytes\":1672704837,\"outFlow\":22482,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":884889,\"inBytes\":3936448393,\"inFlow\":862383,\"lastChangeTime\":\"52 days, 21:43:22.16\",\"lastInBytes\":3936448393,\"lastOutBytes\":2673682771,\"outBytes\":2673682771,\"outFlow\":22505,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":882199,\"inBytes\":2999453838,\"inFlow\":860540,\"lastChangeTime\":\"208 days, 22:48:55.05\",\"lastInBytes\":2999453838,\"lastOutBytes\":2221914671,\"outBytes\":2221914671,\"outFlow\":21659,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1076792,\"inBytes\":2375363317,\"inFlow\":1051806,\"lastChangeTime\":\"481 days, 19:58:11.91\",\"lastInBytes\":2375363317,\"lastOutBytes\":760732086,\"outBytes\":760732086,\"outFlow\":24985,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":884405,\"inBytes\":2689094101,\"inFlow\":862660,\"lastChangeTime\":\"208 days, 22:48:58.76\",\"lastInBytes\":2689094101,\"lastOutBytes\":2183135484,\"outBytes\":2183135484,\"outFlow\":21744,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":889805,\"inBytes\":3657048503,\"inFlow\":867330,\"lastChangeTime\":\"52 days, 21:43:05.62\",\"lastInBytes\":3657048503,\"lastOutBytes\":1441614826,\"outBytes\":1441614826,\"outFlow\":22474,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":884799,\"inBytes\":3181923853,\"inFlow\":862434,\"lastChangeTime\":\"71 days, 5:03:50.57\",\"lastInBytes\":3181923853,\"lastOutBytes\":1678328791,\"outBytes\":1678328791,\"outFlow\":22364,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":272148,\"inBytes\":2427202355,\"inFlow\":265226,\"lastChangeTime\":\"208 days, 22:49:08.39\",\"lastInBytes\":2427202355,\"lastOutBytes\":3762384360,\"outBytes\":3762384360,\"outFlow\":6922,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":383218,\"inFlow\":0,\"lastChangeTime\":\"158 days, 10:05:16.60\",\"lastInBytes\":383218,\"lastOutBytes\":12404711,\"outBytes\":12404711,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":637,\"inBytes\":1662164436,\"inFlow\":282,\"lastChangeTime\":\"0:01:20.78\",\"lastInBytes\":1662164436,\"lastOutBytes\":2127877557,\"outBytes\":2127877557,\"outFlow\":355,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6662954,\"inBytes\":3266564738,\"inFlow\":173427,\"lastChangeTime\":\"158 days, 10:05:14.77\",\"lastInBytes\":3266564738,\"lastOutBytes\":3938882693,\"outBytes\":3938882693,\"outFlow\":6489527,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.588892000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726036", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"12\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196143\",\"inUnknownProtos\":\"2902193262\",\"index\":\"634\",\"lastChange\":\"0:01:18.70\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:b3:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1515753657\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"262621440\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":898976,\"inBytes\":2197897349,\"inFlow\":876548,\"lastChangeTime\":\"72 days, 11:02:41.84\",\"lastInBytes\":2197897349,\"lastOutBytes\":4081693260,\"outBytes\":4081693260,\"outFlow\":22428,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":897739,\"inBytes\":272977176,\"inFlow\":875202,\"lastChangeTime\":\"52 days, 21:43:08.44\",\"lastInBytes\":272977176,\"lastOutBytes\":507694251,\"outBytes\":507694251,\"outFlow\":22536,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":899693,\"inBytes\":284493031,\"inFlow\":877499,\"lastChangeTime\":\"34 days, 19:56:20.88\",\"lastInBytes\":284493031,\"lastOutBytes\":4166843945,\"outBytes\":4166843945,\"outFlow\":22193,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":411127,\"inBytes\":562109297,\"inFlow\":401109,\"lastChangeTime\":\"158 days, 12:16:15.57\",\"lastInBytes\":562109297,\"lastOutBytes\":1224671920,\"outBytes\":1224671920,\"outFlow\":10017,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":897880,\"inBytes\":264026676,\"inFlow\":875700,\"lastChangeTime\":\"158 days, 12:16:30.88\",\"lastInBytes\":264026676,\"lastOutBytes\":2902193262,\"outBytes\":2902193262,\"outFlow\":22179,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":409752,\"inBytes\":3612778253,\"inFlow\":399786,\"lastChangeTime\":\"481 days, 19:58:05.11\",\"lastInBytes\":3612778253,\"lastOutBytes\":2105145371,\"outBytes\":2105145371,\"outFlow\":9966,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":896705,\"inBytes\":1713914981,\"inFlow\":873723,\"lastChangeTime\":\"123 days, 8:47:17.88\",\"lastInBytes\":1713914981,\"lastOutBytes\":2267010618,\"outBytes\":2267010618,\"outFlow\":22982,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":890192,\"inBytes\":123802076,\"inFlow\":867527,\"lastChangeTime\":\"73 days, 12:07:45.17\",\"lastInBytes\":123802076,\"lastOutBytes\":973553084,\"outBytes\":973553084,\"outFlow\":22664,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":82107,\"inFlow\":0,\"lastChangeTime\":\"33 days, 10:45:58.87\",\"lastInBytes\":82107,\"lastOutBytes\":2853731,\"outBytes\":2853731,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":648,\"inBytes\":1675594189,\"inFlow\":287,\"lastChangeTime\":\"0:01:18.70\",\"lastInBytes\":1675594189,\"lastOutBytes\":1778758600,\"outBytes\":1778758600,\"outFlow\":361,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6232426,\"inBytes\":759613801,\"inFlow\":163437,\"lastChangeTime\":\"33 days, 10:45:55.94\",\"lastInBytes\":759613801,\"lastOutBytes\":2655247948,\"outBytes\":2655247948,\"outFlow\":6068989,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.573845000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726037", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"42\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196390\",\"inUnknownProtos\":\"2157363346\",\"index\":\"634\",\"lastChange\":\"429 days, 15:02:43.95\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8d:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1207039757\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"263924858\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":891396,\"inBytes\":3065739177,\"inFlow\":868643,\"lastChangeTime\":\"52 days, 21:43:16.06\",\"lastInBytes\":3065739177,\"lastOutBytes\":2950079148,\"outBytes\":2950079148,\"outFlow\":22753,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":889150,\"inBytes\":2902857453,\"inFlow\":867081,\"lastChangeTime\":\"52 days, 21:43:26.55\",\"lastInBytes\":2902857453,\"lastOutBytes\":2727550624,\"outBytes\":2727550624,\"outFlow\":22069,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406944,\"inBytes\":474743947,\"inFlow\":396917,\"lastChangeTime\":\"208 days, 22:58:32.52\",\"lastInBytes\":474743947,\"lastOutBytes\":2715793576,\"outBytes\":2715793576,\"outFlow\":10027,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":403665,\"inBytes\":3931361606,\"inFlow\":393767,\"lastChangeTime\":\"481 days, 19:58:15.46\",\"lastInBytes\":3931361606,\"lastOutBytes\":1290610815,\"outBytes\":1290610815,\"outFlow\":9897,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":271695,\"inBytes\":855935734,\"inFlow\":264952,\"lastChangeTime\":\"208 days, 22:58:46.36\",\"lastInBytes\":855935734,\"lastOutBytes\":2157363346,\"outBytes\":2157363346,\"outFlow\":6742,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407074,\"inBytes\":117311255,\"inFlow\":397008,\"lastChangeTime\":\"208 days, 22:58:34.71\",\"lastInBytes\":117311255,\"lastOutBytes\":500480391,\"outBytes\":500480391,\"outFlow\":10066,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":408021,\"inBytes\":189341748,\"inFlow\":398122,\"lastChangeTime\":\"481 days, 19:58:08.67\",\"lastInBytes\":189341748,\"lastOutBytes\":2828737132,\"outBytes\":2828737132,\"outFlow\":9898,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407843,\"inBytes\":2386241993,\"inFlow\":397893,\"lastChangeTime\":\"118 days, 20:46:37.46\",\"lastInBytes\":2386241993,\"lastOutBytes\":628152213,\"outBytes\":628152213,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":880305,\"inBytes\":3180275092,\"inFlow\":857916,\"lastChangeTime\":\"52 days, 21:43:23.70\",\"lastInBytes\":3180275092,\"lastOutBytes\":836745260,\"outBytes\":836745260,\"outFlow\":22388,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":875497,\"inBytes\":3045506927,\"inFlow\":853541,\"lastChangeTime\":\"52 days, 21:43:17.77\",\"lastInBytes\":3045506927,\"lastOutBytes\":3191098548,\"outBytes\":3191098548,\"outFlow\":21956,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2185756,\"inFlow\":0,\"lastChangeTime\":\"118 days, 20:52:21.02\",\"lastInBytes\":2185756,\"lastOutBytes\":74273762,\"outBytes\":74273762,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":894998,\"inFlow\":0,\"lastChangeTime\":\"429 days, 15:03:05.77\",\"lastInBytes\":894998,\"lastOutBytes\":69560728,\"outBytes\":69560728,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":637,\"inBytes\":1683481957,\"inFlow\":282,\"lastChangeTime\":\"429 days, 15:03:11.86\",\"lastInBytes\":1683481957,\"lastOutBytes\":1788090840,\"outBytes\":1788090840,\"outFlow\":355,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5886585,\"inBytes\":2067308159,\"inFlow\":153570,\"lastChangeTime\":\"429 days, 15:02:43.94\",\"lastInBytes\":2067308159,\"lastOutBytes\":1621686053,\"outBytes\":1621686053,\"outFlow\":5733015,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.582841000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726038", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"7\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"130500\",\"inUnknownProtos\":\"1090064746\",\"index\":\"634\",\"lastChange\":\"0:01:23.72\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:4e:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3907195084\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"106134152\",\"speed\":\"4294967295\"},\"cpuRatio\":\"11\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":415662,\"inBytes\":3818383767,\"inFlow\":405472,\"lastChangeTime\":\"341 days, 1:04:34.08\",\"lastInBytes\":3818383767,\"lastOutBytes\":1388936121,\"outBytes\":1388936121,\"outFlow\":10189,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413550,\"inBytes\":2365049888,\"inFlow\":403656,\"lastChangeTime\":\"272 days, 20:51:44.88\",\"lastInBytes\":2365049888,\"lastOutBytes\":2102978202,\"outBytes\":2102978202,\"outFlow\":9893,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414702,\"inBytes\":250525510,\"inFlow\":404504,\"lastChangeTime\":\"341 days, 1:04:34.87\",\"lastInBytes\":250525510,\"lastOutBytes\":4091848932,\"outBytes\":4091848932,\"outFlow\":10198,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414844,\"inBytes\":3829465919,\"inFlow\":404766,\"lastChangeTime\":\"341 days, 1:04:28.40\",\"lastInBytes\":3829465919,\"lastOutBytes\":1661279389,\"outBytes\":1661279389,\"outFlow\":10077,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":274378,\"inBytes\":3433088531,\"inFlow\":267489,\"lastChangeTime\":\"0:17:44.72\",\"lastInBytes\":3433088531,\"lastOutBytes\":1090064746,\"outBytes\":1090064746,\"outFlow\":6888,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413827,\"inBytes\":1280516924,\"inFlow\":403740,\"lastChangeTime\":\"0:17:32.47\",\"lastInBytes\":1280516924,\"lastOutBytes\":380673290,\"outBytes\":380673290,\"outFlow\":10086,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414159,\"inBytes\":2912363483,\"inFlow\":404027,\"lastChangeTime\":\"0:17:36.14\",\"lastInBytes\":2912363483,\"lastOutBytes\":2326501743,\"outBytes\":2326501743,\"outFlow\":10132,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":275168,\"inBytes\":1621398802,\"inFlow\":268401,\"lastChangeTime\":\"345 days, 9:34:05.34\",\"lastInBytes\":1621398802,\"lastOutBytes\":3888003734,\"outBytes\":3888003734,\"outFlow\":6767,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414417,\"inBytes\":2350372244,\"inFlow\":404292,\"lastChangeTime\":\"417 days, 14:25:34.98\",\"lastInBytes\":2350372244,\"lastOutBytes\":3442161444,\"outBytes\":3442161444,\"outFlow\":10125,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":414075,\"inBytes\":1538933009,\"inFlow\":403831,\"lastChangeTime\":\"0:17:39.75\",\"lastInBytes\":1538933009,\"lastOutBytes\":3249836995,\"outBytes\":3249836995,\"outFlow\":10243,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":414001,\"inBytes\":3886608683,\"inFlow\":403867,\"lastChangeTime\":\"0:17:39.06\",\"lastInBytes\":3886608683,\"lastOutBytes\":843120582,\"outBytes\":843120582,\"outFlow\":10133,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":649,\"inBytes\":1686374892,\"inFlow\":287,\"lastChangeTime\":\"0:16:04.30\",\"lastInBytes\":1686374892,\"lastOutBytes\":306322432,\"outBytes\":306322432,\"outFlow\":362,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4303866,\"inBytes\":2807746192,\"inFlow\":109752,\"lastChangeTime\":\"0:01:23.72\",\"lastInBytes\":2807746192,\"lastOutBytes\":257215769,\"outBytes\":257215769,\"outFlow\":4194113,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.559809000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726039", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1023040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196374\",\"inUnknownProtos\":\"1251042791\",\"index\":\"634\",\"lastChange\":\"0:01:27.22\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:49:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3742008137\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"263927666\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":412057,\"inBytes\":2868682947,\"inFlow\":403461,\"lastChangeTime\":\"270 days, 16:37:31.53\",\"lastInBytes\":2868682947,\"lastOutBytes\":3164235926,\"outBytes\":3164235926,\"outFlow\":8596,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412502,\"inBytes\":693348101,\"inFlow\":402402,\"lastChangeTime\":\"52 days, 21:42:53.70\",\"lastInBytes\":693348101,\"lastOutBytes\":786334971,\"outBytes\":786334971,\"outFlow\":10099,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414567,\"inBytes\":632960820,\"inFlow\":404385,\"lastChangeTime\":\"52 days, 21:42:50.80\",\"lastInBytes\":632960820,\"lastOutBytes\":2750889289,\"outBytes\":2750889289,\"outFlow\":10181,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":978573,\"inBytes\":1168986298,\"inFlow\":957142,\"lastChangeTime\":\"270 days, 16:37:41.61\",\"lastInBytes\":1168986298,\"lastOutBytes\":2506206060,\"outBytes\":2506206060,\"outFlow\":21431,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":523080,\"inBytes\":1294052992,\"inFlow\":511888,\"lastChangeTime\":\"270 days, 16:37:45.09\",\"lastInBytes\":1294052992,\"lastOutBytes\":1251042791,\"outBytes\":1251042791,\"outFlow\":11191,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412921,\"inBytes\":2054865397,\"inFlow\":402931,\"lastChangeTime\":\"481 days, 19:57:48.58\",\"lastInBytes\":2054865397,\"lastOutBytes\":655962777,\"outBytes\":655962777,\"outFlow\":9989,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414112,\"inBytes\":2132286973,\"inFlow\":403951,\"lastChangeTime\":\"208 days, 23:11:08.07\",\"lastInBytes\":2132286973,\"lastOutBytes\":494845971,\"outBytes\":494845971,\"outFlow\":10160,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":413744,\"inBytes\":584494889,\"inFlow\":403645,\"lastChangeTime\":\"208 days, 23:11:07.27\",\"lastInBytes\":584494889,\"lastOutBytes\":5560849,\"outBytes\":5560849,\"outFlow\":10099,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":425305,\"inBytes\":953174537,\"inFlow\":414192,\"lastChangeTime\":\"128 days, 5:31:40.68\",\"lastInBytes\":953174537,\"lastOutBytes\":1048002182,\"outBytes\":1048002182,\"outFlow\":11113,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":228963,\"inFlow\":0,\"lastChangeTime\":\"158 days, 9:48:37.83\",\"lastInBytes\":228963,\"lastOutBytes\":4248270,\"outBytes\":4248270,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":648,\"inBytes\":1688530833,\"inFlow\":287,\"lastChangeTime\":\"0:01:27.22\",\"lastInBytes\":1688530833,\"lastOutBytes\":1794228351,\"outBytes\":1794228351,\"outFlow\":361,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4447048,\"inBytes\":2873330105,\"inFlow\":108915,\"lastChangeTime\":\"158 days, 9:48:44.57\",\"lastInBytes\":2873330105,\"lastOutBytes\":529350377,\"outBytes\":529350377,\"outFlow\":4338132,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.555614000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726040", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196092\",\"inUnknownProtos\":\"350703125\",\"index\":\"634\",\"lastChange\":\"0:01:20.39\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:67:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"385016124\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"263918188\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":412753,\"inBytes\":1035879219,\"inFlow\":402631,\"lastChangeTime\":\"83 days, 23:26:25.21\",\"lastInBytes\":1035879219,\"lastOutBytes\":416229654,\"outBytes\":416229654,\"outFlow\":10122,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":896190,\"inBytes\":612604577,\"inFlow\":874039,\"lastChangeTime\":\"83 days, 23:26:24.32\",\"lastInBytes\":612604577,\"lastOutBytes\":3416778463,\"outBytes\":3416778463,\"outFlow\":22150,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":889700,\"inBytes\":1470964931,\"inFlow\":871675,\"lastChangeTime\":\"83 days, 23:26:27.19\",\"lastInBytes\":1470964931,\"lastOutBytes\":4174045807,\"outBytes\":4174045807,\"outFlow\":18025,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414122,\"inBytes\":1061099504,\"inFlow\":403975,\"lastChangeTime\":\"83 days, 23:26:25.78\",\"lastInBytes\":1061099504,\"lastOutBytes\":1780805358,\"outBytes\":1780805358,\"outFlow\":10147,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":410394,\"inBytes\":1875342892,\"inFlow\":401069,\"lastChangeTime\":\"83 days, 23:26:25.98\",\"lastInBytes\":1875342892,\"lastOutBytes\":350606764,\"outBytes\":350606764,\"outFlow\":9325,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":411185,\"inBytes\":3890093518,\"inFlow\":401010,\"lastChangeTime\":\"97 days, 10:31:22.58\",\"lastInBytes\":3890093518,\"lastOutBytes\":3778118012,\"outBytes\":3778118012,\"outFlow\":10175,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":540991,\"inBytes\":2294798892,\"inFlow\":529503,\"lastChangeTime\":\"83 days, 23:48:14.10\",\"lastInBytes\":2294798892,\"lastOutBytes\":2228586888,\"outBytes\":2228586888,\"outFlow\":11487,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":935131,\"inBytes\":1543530146,\"inFlow\":916646,\"lastChangeTime\":\"83 days, 23:26:21.76\",\"lastInBytes\":1543530146,\"lastOutBytes\":4046535502,\"outBytes\":4046535502,\"outFlow\":18485,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415790,\"inBytes\":538898342,\"inFlow\":405734,\"lastChangeTime\":\"83 days, 23:26:12.32\",\"lastInBytes\":538898342,\"lastOutBytes\":3358073093,\"outBytes\":3358073093,\"outFlow\":10055,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":438899,\"inBytes\":606008252,\"inFlow\":429059,\"lastChangeTime\":\"83 days, 23:26:40.77\",\"lastInBytes\":606008252,\"lastOutBytes\":443369063,\"outBytes\":443369063,\"outFlow\":9840,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":276250,\"inBytes\":1406584048,\"inFlow\":269336,\"lastChangeTime\":\"83 days, 23:26:45.02\",\"lastInBytes\":1406584048,\"lastOutBytes\":2067656069,\"outBytes\":2067656069,\"outFlow\":6914,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5485,\"inFlow\":0,\"lastChangeTime\":\"158 days, 9:50:29.35\",\"lastInBytes\":5485,\"lastOutBytes\":107383,\"outBytes\":107383,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":591056,\"inFlow\":0,\"lastChangeTime\":\"33 days, 10:03:27.58\",\"lastInBytes\":591056,\"lastOutBytes\":48611102,\"outBytes\":48611102,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":648,\"inBytes\":1689322158,\"inFlow\":287,\"lastChangeTime\":\"0:01:20.39\",\"lastInBytes\":1689322158,\"lastOutBytes\":1791896692,\"outBytes\":1791896692,\"outFlow\":361,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6061619,\"inBytes\":139982323,\"inFlow\":143278,\"lastChangeTime\":\"158 days, 9:50:35.48\",\"lastInBytes\":139982323,\"lastOutBytes\":1202017650,\"outBytes\":1202017650,\"outFlow\":5918340,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.714484000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726041", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1023040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"3532020\",\"inUnknownProtos\":\"3746040473\",\"index\":\"634\",\"lastChange\":\"0:01:24.60\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8d:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3301601656\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"263927167\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":268512,\"inBytes\":2011890824,\"inFlow\":261914,\"lastChangeTime\":\"57 days, 6:24:21.64\",\"lastInBytes\":2011890824,\"lastOutBytes\":648920125,\"outBytes\":648920125,\"outFlow\":6598,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":406974,\"inBytes\":576146580,\"inFlow\":397046,\"lastChangeTime\":\"208 days, 23:31:16.42\",\"lastInBytes\":576146580,\"lastOutBytes\":1197440796,\"outBytes\":1197440796,\"outFlow\":9927,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":341394,\"inBytes\":287756168,\"inFlow\":331443,\"lastChangeTime\":\"208 days, 23:31:17.95\",\"lastInBytes\":287756168,\"lastOutBytes\":2056825392,\"outBytes\":2056825392,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":406995,\"inBytes\":3372768860,\"inFlow\":397065,\"lastChangeTime\":\"313 days, 23:16:13.00\",\"lastInBytes\":3372768860,\"lastOutBytes\":2512409033,\"outBytes\":2512409033,\"outFlow\":9930,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":404767,\"inBytes\":1311000020,\"inFlow\":394841,\"lastChangeTime\":\"208 days, 23:31:18.96\",\"lastInBytes\":1311000020,\"lastOutBytes\":3745939853,\"outBytes\":3745939853,\"outFlow\":9926,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":409108,\"inBytes\":3795398412,\"inFlow\":399214,\"lastChangeTime\":\"481 days, 19:58:34.53\",\"lastInBytes\":3795398412,\"lastOutBytes\":247326687,\"outBytes\":247326687,\"outFlow\":9893,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":406302,\"inBytes\":2043461365,\"inFlow\":396488,\"lastChangeTime\":\"208 days, 23:31:20.12\",\"lastInBytes\":2043461365,\"lastOutBytes\":99378836,\"outBytes\":99378836,\"outFlow\":9814,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":937175,\"inBytes\":1110568641,\"inFlow\":916449,\"lastChangeTime\":\"313 days, 23:14:01.80\",\"lastInBytes\":1110568641,\"lastOutBytes\":2516466662,\"outBytes\":2516466662,\"outFlow\":20726,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":115793,\"inFlow\":0,\"lastChangeTime\":\"158 days, 9:36:39.20\",\"lastInBytes\":115793,\"lastOutBytes\":2984392,\"outBytes\":2984392,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":138552,\"inFlow\":0,\"lastChangeTime\":\"33 days, 9:46:46.14\",\"lastInBytes\":138552,\"lastOutBytes\":2268084,\"outBytes\":2268084,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":637,\"inBytes\":1689570948,\"inFlow\":282,\"lastChangeTime\":\"0:01:24.60\",\"lastInBytes\":1689570948,\"lastOutBytes\":1793895750,\"outBytes\":1793895750,\"outFlow\":355,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3662744,\"inBytes\":3833712752,\"inFlow\":91401,\"lastChangeTime\":\"158 days, 9:36:41.74\",\"lastInBytes\":3833712752,\"lastOutBytes\":939127004,\"outBytes\":939127004,\"outFlow\":3571343,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.573436000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726042", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1023040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"62393\",\"inUnknownProtos\":\"1660902110\",\"index\":\"634\",\"lastChange\":\"0:01:30.77\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:0d:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"143167479\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"46300133\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":413805,\"inBytes\":891289778,\"inFlow\":403761,\"lastChangeTime\":\"0:01:30.50\",\"lastInBytes\":891289778,\"lastOutBytes\":4059086743,\"outBytes\":4059086743,\"outFlow\":10043,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413434,\"inBytes\":941455906,\"inFlow\":403497,\"lastChangeTime\":\"55 days, 11:44:29.15\",\"lastInBytes\":941455906,\"lastOutBytes\":3209567057,\"outBytes\":3209567057,\"outFlow\":9936,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":287527,\"inBytes\":3696121508,\"inFlow\":279371,\"lastChangeTime\":\"0:01:30.69\",\"lastInBytes\":3696121508,\"lastOutBytes\":1095423179,\"outBytes\":1095423179,\"outFlow\":8156,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":893613,\"inBytes\":2143085614,\"inFlow\":876032,\"lastChangeTime\":\"0:01:31.41\",\"lastInBytes\":2143085614,\"lastOutBytes\":527660986,\"outBytes\":527660986,\"outFlow\":17581,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":892725,\"inBytes\":2673335091,\"inFlow\":874442,\"lastChangeTime\":\"0:01:31.65\",\"lastInBytes\":2673335091,\"lastOutBytes\":1660902110,\"outBytes\":1660902110,\"outFlow\":18283,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":922621,\"inBytes\":1648235652,\"inFlow\":905391,\"lastChangeTime\":\"0:01:31.84\",\"lastInBytes\":1648235652,\"lastOutBytes\":3998169396,\"outBytes\":3998169396,\"outFlow\":17229,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":444964,\"inBytes\":183775043,\"inFlow\":435691,\"lastChangeTime\":\"0:01:31.83\",\"lastInBytes\":183775043,\"lastOutBytes\":4160298868,\"outBytes\":4160298868,\"outFlow\":9272,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413456,\"inBytes\":636430350,\"inFlow\":403388,\"lastChangeTime\":\"55 days, 11:44:30.65\",\"lastInBytes\":636430350,\"lastOutBytes\":4144697745,\"outBytes\":4144697745,\"outFlow\":10067,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":413418,\"inBytes\":4193410335,\"inFlow\":403287,\"lastChangeTime\":\"199 days, 23:05:58.97\",\"lastInBytes\":4193410335,\"lastOutBytes\":3541557831,\"outBytes\":3541557831,\"outFlow\":10131,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":410406,\"inBytes\":838753961,\"inFlow\":402752,\"lastChangeTime\":\"0:01:32.04\",\"lastInBytes\":838753961,\"lastOutBytes\":3665910809,\"outBytes\":3665910809,\"outFlow\":7653,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":649,\"inBytes\":1019707393,\"inFlow\":287,\"lastChangeTime\":\"0:01:31.94\",\"lastInBytes\":1019707393,\"lastOutBytes\":2414380918,\"outBytes\":2414380918,\"outFlow\":362,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5523137,\"inBytes\":3441178759,\"inFlow\":124089,\"lastChangeTime\":\"0:01:30.76\",\"lastInBytes\":3441178759,\"lastOutBytes\":3644016152,\"outBytes\":3644016152,\"outFlow\":5399048,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.575179000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726043", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1023040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"401\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196189\",\"inUnknownProtos\":\"1735954482\",\"index\":\"634\",\"lastChange\":\"0:01:24.86\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:47:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3210726080\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"263923106\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":413483,\"inBytes\":413679027,\"inFlow\":403231,\"lastChangeTime\":\"52 days, 21:43:14.77\",\"lastInBytes\":413679027,\"lastOutBytes\":2084575274,\"outBytes\":2084575274,\"outFlow\":10251,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413813,\"inBytes\":2043884413,\"inFlow\":403699,\"lastChangeTime\":\"52 days, 21:43:18.52\",\"lastInBytes\":2043884413,\"lastOutBytes\":3053117118,\"outBytes\":3053117118,\"outFlow\":10113,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414341,\"inBytes\":3947392419,\"inFlow\":404278,\"lastChangeTime\":\"481 days, 19:57:56.27\",\"lastInBytes\":3947392419,\"lastOutBytes\":3244050272,\"outBytes\":3244050272,\"outFlow\":10063,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414115,\"inBytes\":561801809,\"inFlow\":403815,\"lastChangeTime\":\"112 days, 11:58:17.23\",\"lastInBytes\":561801809,\"lastOutBytes\":3180286520,\"outBytes\":3180286520,\"outFlow\":10300,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414145,\"inBytes\":2706606997,\"inFlow\":404068,\"lastChangeTime\":\"52 days, 21:43:02.10\",\"lastInBytes\":2706606997,\"lastOutBytes\":1735856328,\"outBytes\":1735856328,\"outFlow\":10077,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414047,\"inBytes\":3334197514,\"inFlow\":403998,\"lastChangeTime\":\"52 days, 21:43:21.47\",\"lastInBytes\":3334197514,\"lastOutBytes\":1874991049,\"outBytes\":1874991049,\"outFlow\":10048,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":409159,\"inBytes\":3070803150,\"inFlow\":400954,\"lastChangeTime\":\"270 days, 16:37:28.09\",\"lastInBytes\":3070803150,\"lastOutBytes\":511192170,\"outBytes\":511192170,\"outFlow\":8205,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408485,\"inBytes\":2713152371,\"inFlow\":400226,\"lastChangeTime\":\"270 days, 16:37:40.19\",\"lastInBytes\":2713152371,\"lastOutBytes\":950938385,\"outBytes\":950938385,\"outFlow\":8259,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414551,\"inBytes\":205539488,\"inFlow\":404375,\"lastChangeTime\":\"208 days, 23:40:35.78\",\"lastInBytes\":205539488,\"lastOutBytes\":2045442020,\"outBytes\":2045442020,\"outFlow\":10176,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1004705,\"inFlow\":0,\"lastChangeTime\":\"158 days, 9:32:34.98\",\"lastInBytes\":1004705,\"lastOutBytes\":45923979,\"outBytes\":45923979,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":648,\"inBytes\":1690291102,\"inFlow\":287,\"lastChangeTime\":\"0:01:24.86\",\"lastInBytes\":1690291102,\"lastOutBytes\":1796089352,\"outBytes\":1796089352,\"outFlow\":361,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3733742,\"inBytes\":4274364809,\"inFlow\":91903,\"lastChangeTime\":\"158 days, 9:33:40.77\",\"lastInBytes\":4274364809,\"lastOutBytes\":3521707566,\"outBytes\":3521707566,\"outFlow\":3641839,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.582571000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726044", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1023040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.174.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface174\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"146460\",\"inUnknownProtos\":\"1626449830\",\"index\":\"636\",\"lastChange\":\"0:01:25.97\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:03:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1627992480\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"114790856\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.174.131\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":276716,\"inBytes\":631406812,\"inFlow\":269727,\"lastChangeTime\":\"2:55:36.26\",\"lastInBytes\":631406812,\"lastOutBytes\":2036460366,\"outBytes\":2036460366,\"outFlow\":6988,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":276433,\"inBytes\":3354494224,\"inFlow\":269490,\"lastChangeTime\":\"2:55:24.97\",\"lastInBytes\":3354494224,\"lastOutBytes\":648282948,\"outBytes\":648282948,\"outFlow\":6942,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413485,\"inBytes\":92867086,\"inFlow\":403436,\"lastChangeTime\":\"2:50:23.31\",\"lastInBytes\":92867086,\"lastOutBytes\":985105472,\"outBytes\":985105472,\"outFlow\":10049,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":276343,\"inBytes\":2554897418,\"inFlow\":269398,\"lastChangeTime\":\"2:55:35.65\",\"lastInBytes\":2554897418,\"lastOutBytes\":679539171,\"outBytes\":679539171,\"outFlow\":6944,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276465,\"inBytes\":884544609,\"inFlow\":269544,\"lastChangeTime\":\"2:55:22.87\",\"lastInBytes\":884544609,\"lastOutBytes\":550832500,\"outBytes\":550832500,\"outFlow\":6920,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414756,\"inBytes\":2646162314,\"inFlow\":404419,\"lastChangeTime\":\"2:50:18.97\",\"lastInBytes\":2646162314,\"lastOutBytes\":1626449830,\"outBytes\":1626449830,\"outFlow\":10336,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276418,\"inBytes\":962398163,\"inFlow\":269590,\"lastChangeTime\":\"2:55:39.14\",\"lastInBytes\":962398163,\"lastOutBytes\":887861737,\"outBytes\":887861737,\"outFlow\":6827,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":276320,\"inBytes\":3759659600,\"inFlow\":269465,\"lastChangeTime\":\"2:55:28.84\",\"lastInBytes\":3759659600,\"lastOutBytes\":3977152166,\"outBytes\":3977152166,\"outFlow\":6855,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":276602,\"inBytes\":4242585602,\"inFlow\":269812,\"lastChangeTime\":\"2:55:26.60\",\"lastInBytes\":4242585602,\"lastOutBytes\":3098617776,\"outBytes\":3098617776,\"outFlow\":6789,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":413584,\"inBytes\":1230165298,\"inFlow\":403542,\"lastChangeTime\":\"2:50:26.50\",\"lastInBytes\":1230165298,\"lastOutBytes\":1345773846,\"outBytes\":1345773846,\"outFlow\":10041,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":276279,\"inBytes\":1408892837,\"inFlow\":269246,\"lastChangeTime\":\"2:55:35.81\",\"lastInBytes\":1408892837,\"lastOutBytes\":3145670441,\"outBytes\":3145670441,\"outFlow\":7033,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":276482,\"inBytes\":3228750646,\"inFlow\":269581,\"lastChangeTime\":\"2:55:48.46\",\"lastInBytes\":3228750646,\"lastOutBytes\":151981948,\"outBytes\":151981948,\"outFlow\":6901,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":276407,\"inBytes\":1248629635,\"inFlow\":269583,\"lastChangeTime\":\"2:55:53.86\",\"lastInBytes\":1248629635,\"lastOutBytes\":1515286946,\"outBytes\":1515286946,\"outFlow\":6823,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":276665,\"inBytes\":980468703,\"inFlow\":269625,\"lastChangeTime\":\"205 days, 3:32:50.43\",\"lastInBytes\":980468703,\"lastOutBytes\":3866650508,\"outBytes\":3866650508,\"outFlow\":7040,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":276884,\"inBytes\":3243818582,\"inFlow\":269936,\"lastChangeTime\":\"2:55:44.18\",\"lastInBytes\":3243818582,\"lastOutBytes\":1322944463,\"outBytes\":1322944463,\"outFlow\":6947,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":649,\"inBytes\":1714416250,\"inFlow\":287,\"lastChangeTime\":\"205 days, 3:32:52.22\",\"lastInBytes\":1714416250,\"lastOutBytes\":692591411,\"outBytes\":692591411,\"outFlow\":362,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.36\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.36\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.36\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4581390,\"inBytes\":1074930784,\"inFlow\":117777,\"lastChangeTime\":\"0:02:51.15\",\"lastInBytes\":1074930784,\"lastOutBytes\":3845190085,\"outBytes\":3845190085,\"outFlow\":4463613,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.706471000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389427184726045", + "createdBy": "0", + "createdTime": "2025-12-02 08:53:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:12", + "echoMap": {}, + "deviceId": "1023040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.173.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif173\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:02:57.51\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:19:99\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"9\",\"temperature\":\"40\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.173.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"251\",\"681711\",\"253\",\"252\",\"0\",\"343\",\"0\",\"6640\",\"6737\",\"10005\",\"516301\",\"23727\",\"460022\",\"251\",\"0\",\"0\",\"199\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:12\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.50\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35400,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":563,\"opticalVoltage\":3251,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34110,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":630,\"opticalVoltage\":3244,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39180,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":558,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34139,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":561,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35729,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":558,\"opticalVoltage\":3238,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35970,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":598,\"opticalVoltage\":3224,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35909,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":563,\"opticalVoltage\":3291,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36959,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3303,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40950,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":561,\"opticalVoltage\":3258,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36569,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":726,\"opticalVoltage\":3315,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36750,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":682,\"opticalVoltage\":3260,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36569,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":561,\"opticalVoltage\":3262,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":78930,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":11,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36180,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":598,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36060,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":553,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35970,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":699,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37619,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":558,\"opticalVoltage\":3346,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35099,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":613,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34950,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":580,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33810,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":582,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":488,\"inBytes\":1643908049,\"inFlow\":79,\"lastChangeTime\":\"363 days, 12:03:31.02\",\"lastInBytes\":1643908049,\"lastOutBytes\":465505573,\"opticalBiasCurrent\":10961,\"opticalReceivePower\":45,\"opticalTemperature\":45,\"opticalTransmitPower\":247,\"opticalVoltage\":3299,\"outBytes\":465505573,\"outFlow\":409,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":556473137,\"inFlow\":0,\"lastChangeTime\":\"363 days, 12:02:58.05\",\"lastInBytes\":556473137,\"lastOutBytes\":657192635,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":657192635,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":1772060,\"inBytes\":1182545635,\"inFlow\":2489,\"lastChangeTime\":\"0:04:04.87\",\"lastInBytes\":1182545635,\"lastOutBytes\":4155855572,\"opticalBiasCurrent\":35099,\"opticalReceivePower\":458,\"opticalTemperature\":46,\"opticalTransmitPower\":555,\"opticalVoltage\":3311,\"outBytes\":4155855572,\"outFlow\":1769571,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":1145162,\"inBytes\":3441134129,\"inFlow\":35632,\"lastChangeTime\":\"0:04:10.98\",\"lastInBytes\":3441134129,\"lastOutBytes\":673104681,\"opticalBiasCurrent\":33180,\"opticalReceivePower\":427,\"opticalTemperature\":43,\"opticalTransmitPower\":612,\"opticalVoltage\":3306,\"outBytes\":673104681,\"outFlow\":1109530,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4593152,\"inBytes\":3364333876,\"inFlow\":4446727,\"lastChangeTime\":\"158 days, 9:20:48.49\",\"lastInBytes\":3364333876,\"lastOutBytes\":533767940,\"opticalBiasCurrent\":10831,\"opticalReceivePower\":241,\"opticalTemperature\":45,\"opticalTransmitPower\":255,\"opticalVoltage\":3324,\"outBytes\":533767940,\"outFlow\":146425,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3755630,\"inBytes\":3556401501,\"inFlow\":3640803,\"lastChangeTime\":\"158 days, 9:25:57.55\",\"lastInBytes\":3556401501,\"lastOutBytes\":343535292,\"opticalBiasCurrent\":10637,\"opticalReceivePower\":214,\"opticalTemperature\":48,\"opticalTransmitPower\":261,\"opticalVoltage\":3332,\"outBytes\":343535292,\"outFlow\":114827,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5588414,\"inBytes\":526876879,\"inFlow\":5431834,\"lastChangeTime\":\"426 days, 7:53:52.05\",\"lastInBytes\":526876879,\"lastOutBytes\":3366245990,\"opticalBiasCurrent\":10685,\"opticalReceivePower\":141,\"opticalTemperature\":50,\"opticalTransmitPower\":252,\"opticalVoltage\":3332,\"outBytes\":3366245990,\"outFlow\":156580,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3760395,\"inBytes\":1690853108,\"inFlow\":3643840,\"lastChangeTime\":\"158 days, 9:28:39.54\",\"lastInBytes\":1690853108,\"lastOutBytes\":3239875004,\"opticalBiasCurrent\":10616,\"opticalReceivePower\":182,\"opticalTemperature\":49,\"opticalTransmitPower\":255,\"opticalVoltage\":3332,\"outBytes\":3239875004,\"outFlow\":116555,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6073882,\"inBytes\":3787888138,\"inFlow\":5895851,\"lastChangeTime\":\"158 days, 9:42:56.56\",\"lastInBytes\":3787888138,\"lastOutBytes\":2054555799,\"opticalBiasCurrent\":10656,\"opticalReceivePower\":128,\"opticalTemperature\":50,\"opticalTransmitPower\":262,\"opticalVoltage\":3316,\"outBytes\":2054555799,\"outFlow\":178030,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4393978,\"inBytes\":1205955571,\"inFlow\":4260800,\"lastChangeTime\":\"158 days, 9:40:55.08\",\"lastInBytes\":1205955571,\"lastOutBytes\":4164734290,\"opticalBiasCurrent\":11130,\"opticalReceivePower\":81,\"opticalTemperature\":49,\"opticalTransmitPower\":258,\"opticalVoltage\":3319,\"outBytes\":4164734290,\"outFlow\":133177,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4314360,\"inBytes\":3770520204,\"inFlow\":4177740,\"lastChangeTime\":\"208 days, 22:55:59.86\",\"lastInBytes\":3770520204,\"lastOutBytes\":3364716606,\"opticalBiasCurrent\":10439,\"opticalReceivePower\":177,\"opticalTemperature\":53,\"opticalTransmitPower\":250,\"opticalVoltage\":3324,\"outBytes\":3364716606,\"outFlow\":136620,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6013460,\"inBytes\":3940197472,\"inFlow\":5819509,\"lastChangeTime\":\"429 days, 14:41:36.13\",\"lastInBytes\":3940197472,\"lastOutBytes\":3359984971,\"opticalBiasCurrent\":10486,\"opticalReceivePower\":127,\"opticalTemperature\":50,\"opticalTransmitPower\":256,\"opticalVoltage\":3319,\"outBytes\":3359984971,\"outFlow\":193951,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6272876,\"inBytes\":2580849340,\"inFlow\":6069427,\"lastChangeTime\":\"33 days, 10:45:46.58\",\"lastInBytes\":2580849340,\"lastOutBytes\":4252921873,\"opticalBiasCurrent\":10645,\"opticalReceivePower\":132,\"opticalTemperature\":49,\"opticalTransmitPower\":254,\"opticalVoltage\":3332,\"outBytes\":4252921873,\"outFlow\":203449,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6781687,\"inBytes\":4039696516,\"inFlow\":6563576,\"lastChangeTime\":\"158 days, 9:57:21.57\",\"lastInBytes\":4039696516,\"lastOutBytes\":3074185597,\"opticalBiasCurrent\":10126,\"opticalReceivePower\":205,\"opticalTemperature\":50,\"opticalTransmitPower\":243,\"opticalVoltage\":3340,\"outBytes\":3074185597,\"outFlow\":218111,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3618876,\"inBytes\":2313939286,\"inFlow\":29330,\"lastChangeTime\":\"87 days, 0:20:14.41\",\"lastInBytes\":2313939286,\"lastOutBytes\":1914945171,\"opticalBiasCurrent\":11369,\"opticalReceivePower\":92,\"opticalTemperature\":48,\"opticalTransmitPower\":242,\"opticalVoltage\":3332,\"outBytes\":1914945171,\"outFlow\":3589546,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10814,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":258,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":9975,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":255,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11171,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":239,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11045,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":254,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10923,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":261,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10795,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":246,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10435,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":258,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11333,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":246,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10527,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":242,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10284,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":256,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11376,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":255,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10102,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":246,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11244,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":257,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":25759,\"inBytes\":292208253,\"inFlow\":12297,\"lastChangeTime\":\"33 days, 9:44:59.68\",\"lastInBytes\":292208253,\"lastOutBytes\":407341368,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":407341368,\"outFlow\":13462,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":19781159,\"inBytes\":2592298149,\"inFlow\":7774796,\"lastChangeTime\":\"33 days, 10:18:10.87\",\"lastInBytes\":2592298149,\"lastOutBytes\":2520384544,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2520384544,\"outFlow\":12006362,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":68535,\"inBytes\":925385949,\"inFlow\":34375,\"lastChangeTime\":\"33 days, 9:32:32.17\",\"lastInBytes\":925385949,\"lastOutBytes\":4108654301,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4108654301,\"outFlow\":34160,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":345,\"inBytes\":434859346,\"inFlow\":12,\"lastChangeTime\":\"363 days, 13:51:13.96\",\"lastInBytes\":434859346,\"lastOutBytes\":3469288616,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3469288616,\"outFlow\":333,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1114484,\"inBytes\":3023872768,\"inFlow\":36135,\"lastChangeTime\":\"122 days, 22:01:14.81\",\"lastInBytes\":3023872768,\"lastOutBytes\":2727434707,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2727434707,\"outFlow\":1078348,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":793,\"inBytes\":2273743673,\"inFlow\":298,\"lastChangeTime\":\"496 days, 8:40:57.69\",\"lastInBytes\":2273743673,\"lastOutBytes\":1960359075,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1960359075,\"outFlow\":494,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1100,\"inBytes\":2864895376,\"inFlow\":304,\"lastChangeTime\":\"496 days, 8:40:57.13\",\"lastInBytes\":2864895376,\"lastOutBytes\":385119741,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":385119741,\"outFlow\":796,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":4776204,\"inBytes\":1633539201,\"inFlow\":353300,\"lastChangeTime\":\"363 days, 12:05:22.04\",\"lastInBytes\":1633539201,\"lastOutBytes\":480172266,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":480172266,\"outFlow\":4422904,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15960751,\"inBytes\":50106154,\"inFlow\":370171,\"lastChangeTime\":\"363 days, 12:04:23.55\",\"lastInBytes\":50106154,\"lastOutBytes\":3547195373,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3547195373,\"outFlow\":15590580,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":875713,\"inBytes\":2854125603,\"inFlow\":472795,\"lastChangeTime\":\"0:02:57.76\",\"lastInBytes\":2854125603,\"lastOutBytes\":1781187075,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1781187075,\"outFlow\":402918,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":17935429,\"inBytes\":3306712148,\"inFlow\":494704,\"lastChangeTime\":\"0:02:57.78\",\"lastInBytes\":3306712148,\"lastOutBytes\":3012945354,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3012945354,\"outFlow\":17440724,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":400150,\"inBytes\":347830868,\"inFlow\":2746,\"lastChangeTime\":\"80 days, 1:12:49.31\",\"lastInBytes\":347830868,\"lastOutBytes\":3691048538,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3691048538,\"outFlow\":397404,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":294576991,\"inFlow\":0,\"lastChangeTime\":\"118 days, 8:05:58.28\",\"lastInBytes\":294576991,\"lastOutBytes\":345893469,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":345893469,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":129,\"inBytes\":46339040,\"inFlow\":109,\"lastChangeTime\":\"124 days, 11:12:59.78\",\"lastInBytes\":46339040,\"lastOutBytes\":8111688,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8111688,\"outFlow\":20,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":37,\"inBytes\":6858524,\"inFlow\":17,\"lastChangeTime\":\"124 days, 11:13:49.18\",\"lastInBytes\":6858524,\"lastOutBytes\":8078214,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":8078214,\"outFlow\":20,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":25,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":25,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:53.013339000\"}}", + "lastDiagTime": "2026-02-02 14:39:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046086985457894", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:45", + "echoMap": {}, + "deviceId": "1023110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.173.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.85\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"96 days, 0:53:20.15\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10604182\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27332273\",\"inOctets\":\"587724529\",\"inUcastPkts\":\"1565223565\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:9e:94\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1571581692\",\"outQLen\":\"0\",\"outUcastPkts\":\"1602191432\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.173.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:37:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1024": { + "ndmAlarmHost": [ + { + "id": "707151783879953902", + "createdBy": null, + "createdTime": "2025-12-08 13:47:12", + "updatedBy": null, + "updatedTime": "2025-12-08 13:47:12", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.175.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046460647612416", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060001", + "name": "[604](10)五角场弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403048005024604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612417", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060002", + "name": "[605](10)五角场弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403048005024605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612418", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060003", + "name": "[606](10)五角场弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403048005024606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612419", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060004", + "name": "[607](10)五角场弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403048005024607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612420", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060005", + "name": "[612](10)五角场内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403001006024612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612421", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060006", + "name": "[602](10)五角场编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403041005024602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612422", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060007", + "name": "[603](10)五角场编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403041005024603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612423", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060008", + "name": "[610](10)五角场环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403053005024610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612424", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060009", + "name": "[312](10)五角场3#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612425", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060010", + "name": "[308](10)五角场3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612426", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060011", + "name": "[307](10)五角场3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612427", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060012", + "name": "[309](10)五角场3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612428", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060013", + "name": "[210](10)五角场3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057004024210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612429", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 13:03:06", + "echoMap": {}, + "deviceId": "1024060014", + "name": "[310](10)五角场3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612430", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060015", + "name": "[342](10)五角场2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401036005024342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612431", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060016", + "name": "[311](10)五角场3#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057005024311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612432", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060017", + "name": "[504](10)五角场票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401030006024504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612433", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060018", + "name": "[333](10)五角场#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401045006024333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612434", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060019", + "name": "[408](10)五角场3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401007006024408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612435", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060020", + "name": "[344](10)五角场安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401085006024344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612436", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060021", + "name": "[305](10)五角场3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612437", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060022", + "name": "[306](10)五角场3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401057006024306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612438", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060023", + "name": "[339](10)五角场B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401040006024339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612439", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060024", + "name": "[203](10)五角场厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401035004024203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612440", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060025", + "name": "[406](10)五角场2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401006006024406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612441", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060026", + "name": "[407](10)五角场2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401006006024407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612442", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060027", + "name": "[204](10)五角场厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401035004024204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612443", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-12-07 09:50:45", + "echoMap": {}, + "deviceId": "1024060028", + "name": "[313](10)五角场4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058006024313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612444", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060029", + "name": "[332](10)五角场#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401045006024332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612445", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060030", + "name": "[331](10)五角场#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401045006024331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612446", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060031", + "name": "[502](10)五角场客服2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401001006024502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612447", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060032", + "name": "[341](10)五角场1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401036005024341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612448", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2026-01-09 00:00:00", + "echoMap": {}, + "deviceId": "1024060033", + "name": "[338](10)五角场B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401040006024338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612449", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060034", + "name": "[405](10)五角场2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401006006024405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612450", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060035", + "name": "[314](10)五角场4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058006024314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612451", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060036", + "name": "[318](10)五角场4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058006024318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612452", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060037", + "name": "[317](10)五角场4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058006024317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612453", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060038", + "name": "[211](10)五角场4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058004024211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612454", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060039", + "name": "[316](10)五角场4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058006024316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612455", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060040", + "name": "[315](10)五角场4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401058006024315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612456", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060041", + "name": "[202](10)五角场厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401035004024202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612457", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060042", + "name": "[402](10)五角场1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401005006024402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612458", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060043", + "name": "[329](10)五角场#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401045006024329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612459", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060044", + "name": "[328](10)五角场#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401045006024328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612460", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060045", + "name": "[403](10)五角场1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401005006024403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612461", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060046", + "name": "[330](10)五角场#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401045006024330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612462", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1024060047", + "name": "[343](10)五角场安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401085006024343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612463", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1024060048", + "name": "[401](10)五角场1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401005006024401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612464", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1024060049", + "name": "[501](10)五角场客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401001005024501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612465", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060050", + "name": "[404](10)五角场1#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401005006024404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612466", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060051", + "name": "[321](10)五角场5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612467", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060052", + "name": "[322](10)五角场5#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612468", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060053", + "name": "[327](10)五角场5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612469", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1024060054", + "name": "[323](10)五角场5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612470", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2026-01-19 06:12:06", + "echoMap": {}, + "deviceId": "1024060055", + "name": "[325](10)五角场5#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612471", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060056", + "name": "[324](10)五角场5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612472", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1024060057", + "name": "[326](10)五角场5#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612473", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060058", + "name": "[320](10)五角场5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612474", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060059", + "name": "[319](10)五角场5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401059006024319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612475", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060060", + "name": "[201](10)五角场厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401035004024201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612476", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060061", + "name": "[614](10)五角场变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403001006024614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612477", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060062", + "name": "[615](10)五角场变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403001006024615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612478", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060063", + "name": "[302](10)五角场2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401056006024302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612479", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060064", + "name": "[601](10)五角场车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403042004024601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612480", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060065", + "name": "[503](10)五角场票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401030006024503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612481", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060066", + "name": "[611](10)五角场内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403001006024611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612482", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060067", + "name": "[609](10)五角场环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403053005024609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612483", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1024060068", + "name": "[303](10)五角场2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401056006024303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612484", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060069", + "name": "[301](10)五角场2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401056006024301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612485", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060070", + "name": "[304](10)五角场2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401056006024304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612486", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060071", + "name": "[209](10)五角场2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401056004024209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612487", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060072", + "name": "[108](10)五角场下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402012006024108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612488", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060073", + "name": "[107](10)五角场下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402012006024107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612489", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060074", + "name": "[207](10)五角场下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402001004024207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612490", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060075", + "name": "[336](10)五角场#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402017006024336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612491", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060076", + "name": "[613](10)五角场内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403021006024613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612492", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060077", + "name": "[608](10)五角场屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403048005024608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612493", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2026-02-02 08:44:06", + "echoMap": {}, + "deviceId": "1024060078", + "name": "[337](10)五角场#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402017006024337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612494", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060079", + "name": "[105](10)五角场上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402007006024105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612495", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060080", + "name": "[106](10)五角场上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402007006024106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612496", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060081", + "name": "[110](10)五角场下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402012006024110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612497", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060082", + "name": "[109](10)五角场下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402012006024109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612498", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060083", + "name": "[208](10)五角场下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402001004024208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612499", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060084", + "name": "[334](10)五角场#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402017006024334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612500", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060085", + "name": "[340](10)五角场B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402002006024340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612501", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1024060086", + "name": "[335](10)五角场#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402017006024335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612502", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060087", + "name": "[206](10)五角场上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402001004024206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612503", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060088", + "name": "[103](10)五角场上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402007006024103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612504", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1024060089", + "name": "[104](10)五角场上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402007006024104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612505", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060090", + "name": "[112](10)五角场下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402012006024112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612506", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060091", + "name": "[111](10)五角场下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402012006024111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612507", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060092", + "name": "[205](10)五角场上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402001004024205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612508", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060093", + "name": "[101](10)五角场上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402007006024101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612509", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060094", + "name": "[102](10)五角场上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062402007006024102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612510", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060095", + "name": "[702](10)五角场五角场江体下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062404012004024702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612511", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060096", + "name": "[701](10)五角场五角场江体上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062404012004024701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612512", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060097", + "name": "[704](10)五角场五角场国权下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062404012004024704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612513", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060098", + "name": "[703](10)五角场五角场国权上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062404012004024703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612514", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060099", + "name": "[616](10)五角场电源室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.176.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403050005024616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612515", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060100", + "name": "[617](10)五角场消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403068005024617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612516", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060101", + "name": "[618](10)五角场气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403067005024618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612517", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060102", + "name": "[619](10)五角场通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403048005024619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612518", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060103", + "name": "[620](10)五角场内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403021005024620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612519", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1024060104", + "name": "[212](10)五角场厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401035004024212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612520", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1024060105", + "name": "[409](10)五角场1#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062401005006024409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612521", + "createdBy": "0", + "createdTime": "2025-02-28 13:40:53", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060106", + "name": "[623](10)五角场气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.175.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062403067005024623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "698614355263136185", + "createdBy": null, + "createdTime": "2025-11-13 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060107", + "name": "[625](10)五角场下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.176.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062404013006024625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "698614355263136186", + "createdBy": null, + "createdTime": "2025-11-13 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1024060108", + "name": "[624](10)五角场上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.176.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062404013006024624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046460647612523", + "createdBy": "0", + "createdTime": "2025-02-28 13:41:06", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1024070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.175.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062400000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112022\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"870115030\",\"inUcastPkts\":\"1002594952\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ef:92\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"845403997\",\"outQLen\":\"0\",\"outUcastPkts\":\"328547572\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.175.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:05\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZ5AADE\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046460647612562", + "createdBy": "2", + "createdTime": "2025-02-28 13:42:56", + "updatedBy": null, + "updatedTime": "2025-12-23 10:27:18", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.175.51", + "manageUrl": "http:\\\\10.18.175.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046460647612563", + "createdBy": "2", + "createdTime": "2025-02-28 13:43:17", + "updatedBy": null, + "updatedTime": "2026-01-16 01:23:07", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.175.52", + "manageUrl": "http:\\\\10.18.175.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046460647612525", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1024090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.175.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"1.02\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"95 days, 0:50:06.02\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10508155\",\"inErrors\":\"1026\",\"inNUcastPkts\":\"27285304\",\"inOctets\":\"2035187830\",\"inUcastPkts\":\"2932099679\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"483 days, 19:17:48.94\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a5:fb\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2310390624\",\"outQLen\":\"0\",\"outUcastPkts\":\"3760401945\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.175.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046460647612526", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-09-12 11:06:05", + "echoMap": {}, + "deviceId": "1024050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.175.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062400000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.175.22;10.18.175.23" + }, + { + "id": "585046460647612527", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1024050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.175.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062400000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"3628697\",\"inErrors\":\"32\",\"inNUcastPkts\":\"28959908\",\"inOctets\":\"461320722\",\"inUcastPkts\":\"1623158596\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"39 days, 15:24:08.16\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:73:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"415113461\",\"outQLen\":\"0\",\"outUcastPkts\":\"517983263\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4420\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4380\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4370\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.175.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:06\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":935243951,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17522\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"48\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.175.22" + }, + { + "id": "585046460647612528", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1024050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.175.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062400000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"9893173\",\"inErrors\":\"38\",\"inNUcastPkts\":\"37132296\",\"inOctets\":\"3635915650\",\"inUcastPkts\":\"3346522962\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:8a:7d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3663629385\",\"outQLen\":\"0\",\"outUcastPkts\":\"806133216\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4800\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4380\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.175.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:37:07\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":935231759,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17523\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"55\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.175.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706389981235692813", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1024030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2992236\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164564089\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2992241\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:c8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.0,\"status\":1,\"voltage\":26.397001},{\"current\":0.0,\"status\":1,\"voltage\":26.397001},{\"current\":0.0,\"status\":1,\"voltage\":26.397001},{\"current\":0.0,\"status\":1,\"voltage\":26.397001},{\"current\":0.0,\"status\":1,\"voltage\":26.397001},{\"current\":0.0,\"status\":1,\"voltage\":26.814001},{\"current\":0.002,\"status\":1,\"voltage\":26.814001},{\"current\":0.001,\"status\":1,\"voltage\":26.814001},{\"current\":0.001,\"status\":1,\"voltage\":26.814001},{\"current\":0.001,\"status\":1,\"voltage\":26.814001},{\"current\":0.001,\"status\":1,\"voltage\":26.814001},{\"current\":0.001,\"status\":1,\"voltage\":26.814001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302162\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692814", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1024030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3599081\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198592639\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 11:50:22.37\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3599086\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:15:31\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":1,\"voltage\":25.995},{\"current\":0.588,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":1,\"voltage\":25.995},{\"current\":0.001,\"status\":0,\"voltage\":25.995},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0002512208305425\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692815", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1024030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3599085\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198593979\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 7:46:08.09\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3599090\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:57\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":25.616001},{\"current\":0.001,\"status\":1,\"voltage\":25.616001},{\"current\":0.56600004,\"status\":1,\"voltage\":25.616001},{\"current\":0.001,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":0,\"voltage\":25.616001},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302362\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692816", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1024030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3598584\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198565497\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 4:57:03.49\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3598589\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:a2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":1,\"voltage\":25.516},{\"current\":0.569,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":1,\"voltage\":25.516},{\"current\":0.001,\"status\":0,\"voltage\":25.516},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302269\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692817", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:07", + "echoMap": {}, + "deviceId": "1024030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3598580\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198566798\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"90 days, 15:27:30.93\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3598585\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:5a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":1,\"voltage\":25.911001},{\"current\":0.58100003,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":1,\"voltage\":25.911001},{\"current\":0.001,\"status\":0,\"voltage\":25.911001},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302369\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:07", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692818", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1024030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6583110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365927285\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"9 days, 13:42:29.61\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6583115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:a7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.99000007,\"status\":1,\"voltage\":26.193},{\"current\":1.146,\"status\":1,\"voltage\":26.193},{\"current\":0.95100003,\"status\":1,\"voltage\":26.193},{\"current\":0.66700006,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":0,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.193},{\"current\":0.001,\"status\":1,\"voltage\":26.167002},{\"current\":0.003,\"status\":1,\"voltage\":26.167002},{\"current\":0.001,\"status\":1,\"voltage\":26.167002},{\"current\":0.001,\"status\":1,\"voltage\":26.167002},{\"current\":0.001,\"status\":1,\"voltage\":26.167002},{\"current\":0.001,\"status\":1,\"voltage\":26.167002},{\"current\":0.001,\"status\":1,\"voltage\":26.167002}],\"fanSpeeds\":[1320,1320],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208302155\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692819", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1024030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6583110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365926439\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"83 days, 17:06:45.49\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6583115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:de\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.95900005,\"status\":1,\"voltage\":24.988},{\"current\":0.96500003,\"status\":1,\"voltage\":24.988},{\"current\":0.65500003,\"status\":1,\"voltage\":24.988},{\"current\":0.75000006,\"status\":1,\"voltage\":24.988},{\"current\":0.96800005,\"status\":1,\"voltage\":24.988},{\"current\":0.88500005,\"status\":1,\"voltage\":24.988},{\"current\":0.72200006,\"status\":1,\"voltage\":24.988},{\"current\":0.9710001,\"status\":1,\"voltage\":24.988},{\"current\":0.95400006,\"status\":1,\"voltage\":24.988},{\"current\":0.001,\"status\":1,\"voltage\":25.314001},{\"current\":0.003,\"status\":1,\"voltage\":25.314001},{\"current\":0.001,\"status\":1,\"voltage\":25.314001},{\"current\":0.001,\"status\":1,\"voltage\":25.314001},{\"current\":0.001,\"status\":1,\"voltage\":25.314001},{\"current\":0.001,\"status\":1,\"voltage\":25.314001},{\"current\":0.0,\"status\":1,\"voltage\":25.314001}],\"fanSpeeds\":[2520,2310],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0022512208302163\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692820", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:08", + "echoMap": {}, + "deviceId": "1024030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6582947\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365917567\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"25 days, 18:58:13.16\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6582952\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:ed\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.245,\"status\":1,\"voltage\":26.257002},{\"current\":0.381,\"status\":1,\"voltage\":26.257002},{\"current\":0.541,\"status\":1,\"voltage\":26.257002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.257002},{\"current\":0.268,\"status\":1,\"voltage\":26.257002},{\"current\":0.223,\"status\":1,\"voltage\":26.257002},{\"current\":0.246,\"status\":1,\"voltage\":26.257002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.257002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.257002},{\"current\":0.261,\"status\":1,\"voltage\":26.562002},{\"current\":0.003,\"status\":1,\"voltage\":26.562002},{\"current\":0.21200001,\"status\":1,\"voltage\":26.562002},{\"current\":0.001,\"status\":1,\"voltage\":26.562002},{\"current\":0.001,\"status\":1,\"voltage\":26.562002},{\"current\":0.001,\"status\":1,\"voltage\":26.562002},{\"current\":0.001,\"status\":1,\"voltage\":26.562002}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302150\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692821", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1024030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6582295\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365881602\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"25 days, 20:05:16.91\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6582300\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:e1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.88500005,\"status\":1,\"voltage\":25.642002},{\"current\":0.63500005,\"status\":1,\"voltage\":25.642002},{\"current\":0.781,\"status\":1,\"voltage\":25.642002},{\"current\":0.735,\"status\":1,\"voltage\":25.642002},{\"current\":0.22800002,\"status\":1,\"voltage\":25.642002},{\"current\":0.80100006,\"status\":1,\"voltage\":25.642002},{\"current\":0.72900003,\"status\":1,\"voltage\":25.642002},{\"current\":0.624,\"status\":1,\"voltage\":25.642002},{\"current\":0.596,\"status\":1,\"voltage\":25.642002},{\"current\":0.0,\"status\":1,\"voltage\":26.235},{\"current\":0.002,\"status\":1,\"voltage\":26.235},{\"current\":0.001,\"status\":1,\"voltage\":26.235},{\"current\":0.001,\"status\":1,\"voltage\":26.235},{\"current\":0.001,\"status\":1,\"voltage\":26.235},{\"current\":0.001,\"status\":1,\"voltage\":26.235},{\"current\":0.001,\"status\":1,\"voltage\":26.235}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302167\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692822", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:09", + "echoMap": {}, + "deviceId": "1024030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6583110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365926061\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"81 days, 13:56:29.51\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6583115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:b3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.546,\"status\":1,\"voltage\":26.630001},{\"current\":0.26500002,\"status\":1,\"voltage\":26.630001},{\"current\":0.27400002,\"status\":1,\"voltage\":26.630001},{\"current\":0.23500001,\"status\":1,\"voltage\":26.630001},{\"current\":0.001,\"status\":1,\"voltage\":26.630001},{\"current\":0.001,\"status\":1,\"voltage\":26.630001},{\"current\":0.001,\"status\":1,\"voltage\":26.630001},{\"current\":0.001,\"status\":1,\"voltage\":26.630001},{\"current\":0.001,\"status\":1,\"voltage\":26.630001},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.002,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002},{\"current\":0.001,\"status\":1,\"voltage\":26.212002}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302161\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692823", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1024030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6583110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365925299\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"26 days, 1:33:40.11\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6583115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:e4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.30400002,\"status\":1,\"voltage\":26.504002},{\"current\":0.29500002,\"status\":1,\"voltage\":26.504002},{\"current\":0.256,\"status\":1,\"voltage\":26.504002},{\"current\":0.264,\"status\":1,\"voltage\":26.504002},{\"current\":0.257,\"status\":1,\"voltage\":26.504002},{\"current\":0.289,\"status\":1,\"voltage\":26.504002},{\"current\":0.27100003,\"status\":1,\"voltage\":26.504002},{\"current\":0.316,\"status\":1,\"voltage\":26.504002},{\"current\":0.30800003,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.003,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302165\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692824", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1024030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6583110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365927101\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6583115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:bb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.522,\"status\":1,\"voltage\":26.856},{\"current\":0.3,\"status\":1,\"voltage\":26.856},{\"current\":0.275,\"status\":1,\"voltage\":26.856},{\"current\":0.26900002,\"status\":1,\"voltage\":26.856},{\"current\":0.30800003,\"status\":1,\"voltage\":26.856},{\"current\":0.29200003,\"status\":1,\"voltage\":26.856},{\"current\":0.245,\"status\":1,\"voltage\":26.856},{\"current\":0.34100002,\"status\":1,\"voltage\":26.856},{\"current\":0.27,\"status\":1,\"voltage\":26.856},{\"current\":0.307,\"status\":1,\"voltage\":26.816002},{\"current\":0.003,\"status\":1,\"voltage\":26.816002},{\"current\":0.30900002,\"status\":1,\"voltage\":26.816002},{\"current\":0.549,\"status\":1,\"voltage\":26.816002},{\"current\":0.001,\"status\":1,\"voltage\":26.816002},{\"current\":0.001,\"status\":1,\"voltage\":26.816002},{\"current\":0.001,\"status\":1,\"voltage\":26.816002}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302157\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692825", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1024030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6583110\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"365929192\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"84 days, 7:55:31.78\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6583115\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:ce\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":1.0630001,\"status\":1,\"voltage\":24.699001},{\"current\":0.776,\"status\":1,\"voltage\":24.699001},{\"current\":1.014,\"status\":1,\"voltage\":24.699001},{\"current\":0.63000005,\"status\":1,\"voltage\":24.699001},{\"current\":0.81500006,\"status\":1,\"voltage\":24.699001},{\"current\":0.859,\"status\":1,\"voltage\":24.699001},{\"current\":0.001,\"status\":1,\"voltage\":24.699001},{\"current\":0.001,\"status\":1,\"voltage\":24.699001},{\"current\":0.001,\"status\":1,\"voltage\":24.699001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.003,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001},{\"current\":0.001,\"status\":1,\"voltage\":26.001001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302160\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692826", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1024030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3598743\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"198575721\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"84 days, 1:17:16.74\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3598748\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:e8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.319,\"status\":1,\"voltage\":26.604002},{\"current\":0.34,\"status\":1,\"voltage\":26.604002},{\"current\":0.633,\"status\":1,\"voltage\":26.604002},{\"current\":0.264,\"status\":1,\"voltage\":26.604002},{\"current\":0.259,\"status\":1,\"voltage\":26.604002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.604002},{\"current\":0.316,\"status\":1,\"voltage\":26.604002},{\"current\":0.423,\"status\":1,\"voltage\":26.604002},{\"current\":0.277,\"status\":1,\"voltage\":26.604002},{\"current\":0.33400002,\"status\":1,\"voltage\":26.579},{\"current\":0.003,\"status\":1,\"voltage\":26.579},{\"current\":0.001,\"status\":1,\"voltage\":26.579},{\"current\":0.001,\"status\":1,\"voltage\":26.579},{\"current\":0.001,\"status\":1,\"voltage\":26.579},{\"current\":0.001,\"status\":1,\"voltage\":26.579},{\"current\":0.001,\"status\":1,\"voltage\":26.579}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302156\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692827", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1024030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6721660\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"373695206\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6721665\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:7a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.294,\"status\":1,\"voltage\":26.500002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.500002},{\"current\":0.31500003,\"status\":1,\"voltage\":26.500002},{\"current\":0.28100002,\"status\":1,\"voltage\":26.500002},{\"current\":0.324,\"status\":1,\"voltage\":26.500002},{\"current\":0.30600002,\"status\":1,\"voltage\":26.500002},{\"current\":0.254,\"status\":1,\"voltage\":26.500002},{\"current\":0.541,\"status\":1,\"voltage\":26.500002},{\"current\":0.001,\"status\":1,\"voltage\":26.500002},{\"current\":0.001,\"status\":1,\"voltage\":26.330002},{\"current\":0.002,\"status\":1,\"voltage\":26.330002},{\"current\":0.001,\"status\":1,\"voltage\":26.330002},{\"current\":0.001,\"status\":1,\"voltage\":26.330002},{\"current\":0.001,\"status\":1,\"voltage\":26.330002},{\"current\":0.001,\"status\":1,\"voltage\":26.330002},{\"current\":0.001,\"status\":1,\"voltage\":26.330002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302152\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692828", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:11", + "echoMap": {}, + "deviceId": "1024030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7479774\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"416208277\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7479779\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:3a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.90300006,\"status\":1,\"voltage\":25.565},{\"current\":1.07,\"status\":1,\"voltage\":25.565},{\"current\":1.0840001,\"status\":1,\"voltage\":25.565},{\"current\":0.85200006,\"status\":1,\"voltage\":25.565},{\"current\":0.554,\"status\":1,\"voltage\":25.565},{\"current\":0.9110001,\"status\":1,\"voltage\":25.565},{\"current\":0.46600002,\"status\":1,\"voltage\":25.565},{\"current\":0.266,\"status\":1,\"voltage\":25.565},{\"current\":0.0,\"status\":1,\"voltage\":25.565},{\"current\":0.0,\"status\":1,\"voltage\":26.228},{\"current\":0.003,\"status\":1,\"voltage\":26.228},{\"current\":0.001,\"status\":1,\"voltage\":26.228},{\"current\":0.001,\"status\":1,\"voltage\":26.228},{\"current\":0.001,\"status\":1,\"voltage\":26.228},{\"current\":0.001,\"status\":1,\"voltage\":26.228},{\"current\":0.001,\"status\":1,\"voltage\":26.228}],\"fanSpeeds\":[1620,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":27}],\"stCommonInfo\":{\"设备ID\":\"0022512208302164\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389981235692829", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:12", + "echoMap": {}, + "deviceId": "1024030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.176.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7764984\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"432200940\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7764989\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:fe\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23400001,\"status\":1,\"voltage\":25.629002},{\"current\":0.22900002,\"status\":1,\"voltage\":25.629002},{\"current\":0.23700002,\"status\":1,\"voltage\":25.629002},{\"current\":0.231,\"status\":1,\"voltage\":25.629002},{\"current\":0.39200002,\"status\":1,\"voltage\":25.629002},{\"current\":0.22800002,\"status\":1,\"voltage\":25.629002},{\"current\":0.22200002,\"status\":1,\"voltage\":25.629002},{\"current\":0.21900001,\"status\":1,\"voltage\":25.629002},{\"current\":0.22200002,\"status\":1,\"voltage\":25.629002},{\"current\":0.22600001,\"status\":1,\"voltage\":25.885002},{\"current\":0.003,\"status\":1,\"voltage\":25.885002},{\"current\":0.001,\"status\":1,\"voltage\":25.885002},{\"current\":0.29000002,\"status\":1,\"voltage\":25.885002},{\"current\":0.223,\"status\":1,\"voltage\":25.885002},{\"current\":0.001,\"status\":1,\"voltage\":25.885002},{\"current\":0.001,\"status\":1,\"voltage\":25.885002}],\"fanSpeeds\":[3510,3480],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":30}],\"stCommonInfo\":{\"设备ID\":\"0022512208302159\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389985530660052", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040018", + "name": "H3C前端交换机17", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"626996\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:31.63\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:aa:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.147\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":411904808,\"inFlow\":0,\"lastChangeTime\":\"23 days, 21:28:51.88\",\"lastInBytes\":411904808,\"lastOutBytes\":1032204493,\"outBytes\":1032204493,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":363,\"inBytes\":1057505720,\"inFlow\":62,\"lastChangeTime\":\"275 days, 7:59:22.93\",\"lastInBytes\":1057505720,\"lastOutBytes\":3866443211,\"outBytes\":3866443211,\"outFlow\":301,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10638754,\"inBytes\":83628041,\"inFlow\":65228,\"lastChangeTime\":\"14 days, 18:31:34.26\",\"lastInBytes\":83628041,\"lastOutBytes\":2937737182,\"outBytes\":2937737182,\"outFlow\":10573525,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":453,\"inBytes\":1364670479,\"inFlow\":108,\"lastChangeTime\":\"408 days, 12:01:02.89\",\"lastInBytes\":1364670479,\"lastOutBytes\":3201912374,\"outBytes\":3201912374,\"outFlow\":345,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":328,\"inBytes\":311761930,\"inFlow\":123,\"lastChangeTime\":\"1:13:06.42\",\"lastInBytes\":311761930,\"lastOutBytes\":4227966728,\"outBytes\":4227966728,\"outFlow\":204,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10687129,\"inBytes\":1464193040,\"inFlow\":10611568,\"lastChangeTime\":\"0:01:31.63\",\"lastInBytes\":1464193040,\"lastOutBytes\":570321511,\"outBytes\":570321511,\"outFlow\":75561,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.372952000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660053", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:21", + "echoMap": {}, + "deviceId": "1024040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif176\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"45 days, 12:18:50.20\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:74\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:21\",\"info\":{\"portInfoList\":[{\"flow\":407055,\"inBytes\":3384503428,\"inFlow\":397638,\"lastChangeTime\":\"376 days, 18:39:41.52\",\"lastInBytes\":3384503428,\"lastOutBytes\":3458200471,\"outBytes\":3458200471,\"outFlow\":9417,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":357198557,\"inFlow\":1,\"lastChangeTime\":\"95 days, 23:45:01.13\",\"lastInBytes\":357198557,\"lastOutBytes\":1475933436,\"outBytes\":1475933436,\"outFlow\":91,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409594,\"inBytes\":3033296701,\"inFlow\":10370,\"lastChangeTime\":\"45 days, 12:11:22.90\",\"lastInBytes\":3033296701,\"lastOutBytes\":926819721,\"outBytes\":926819721,\"outFlow\":399223,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:50.886112000\"}}", + "lastDiagTime": "2026-02-02 14:38:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660054", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "deviceId": "1024040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif176\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"45 days, 12:41:58.37\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:f5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:23\",\"info\":{\"portInfoList\":[{\"flow\":409208,\"inBytes\":414792611,\"inFlow\":399533,\"lastChangeTime\":\"376 days, 19:11:59.27\",\"lastInBytes\":414792611,\"lastOutBytes\":1898152548,\"outBytes\":1898152548,\"outFlow\":9675,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":357200224,\"inFlow\":1,\"lastChangeTime\":\"95 days, 23:07:32.64\",\"lastInBytes\":357200224,\"lastOutBytes\":1479659605,\"outBytes\":1479659605,\"outFlow\":87,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":411546,\"inBytes\":1628922209,\"inFlow\":10633,\"lastChangeTime\":\"45 days, 12:32:26.72\",\"lastInBytes\":1628922209,\"lastOutBytes\":2449792681,\"outBytes\":2449792681,\"outFlow\":400912,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:50.977737000\"}}", + "lastDiagTime": "2026-02-02 14:38:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660055", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:22", + "echoMap": {}, + "deviceId": "1024040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif176\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"96 days, 1:25:45.02\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:d7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:22\",\"info\":{\"portInfoList\":[{\"flow\":404735,\"inBytes\":1012521363,\"inFlow\":395166,\"lastChangeTime\":\"376 days, 20:31:08.78\",\"lastInBytes\":1012521363,\"lastOutBytes\":1160835238,\"outBytes\":1160835238,\"outFlow\":9568,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":357150996,\"inFlow\":1,\"lastChangeTime\":\"96 days, 1:25:19.01\",\"lastInBytes\":357150996,\"lastOutBytes\":1439172138,\"outBytes\":1439172138,\"outFlow\":87,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409111,\"inBytes\":912766502,\"inFlow\":10522,\"lastChangeTime\":\"96 days, 1:25:45.99\",\"lastInBytes\":912766502,\"lastOutBytes\":2946318452,\"outBytes\":2946318452,\"outFlow\":398589,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:50.995482000\"}}", + "lastDiagTime": "2026-02-02 14:38:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660056", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1024040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif176\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"45 days, 13:14:45.03\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:53\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:43\",\"info\":{\"portInfoList\":[{\"flow\":408317,\"inBytes\":404540147,\"inFlow\":398789,\"lastChangeTime\":\"376 days, 20:04:48.65\",\"lastInBytes\":404540147,\"lastOutBytes\":984444213,\"outBytes\":984444213,\"outFlow\":9527,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":357152769,\"inFlow\":1,\"lastChangeTime\":\"96 days, 0:46:53.45\",\"lastInBytes\":357152769,\"lastOutBytes\":1437756259,\"outBytes\":1437756259,\"outFlow\":92,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406488,\"inBytes\":2296487596,\"inFlow\":10410,\"lastChangeTime\":\"0:12:51.08\",\"lastInBytes\":2296487596,\"lastOutBytes\":834402192,\"outBytes\":834402192,\"outFlow\":396077,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:55.961535000\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660057", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1024040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"163695\",\"inUnknownProtos\":\"3644644464\",\"index\":\"634\",\"lastChange\":\"0:01:26.39\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:4b:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1232275244\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.142\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":891119,\"inBytes\":3491157206,\"inFlow\":868512,\"lastChangeTime\":\"446 days, 22:36:28.91\",\"lastInBytes\":3491157206,\"lastOutBytes\":2079869068,\"outBytes\":2079869068,\"outFlow\":22607,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":901133,\"inBytes\":3840771458,\"inFlow\":877761,\"lastChangeTime\":\"446 days, 22:36:37.27\",\"lastInBytes\":3840771458,\"lastOutBytes\":3154502157,\"outBytes\":3154502157,\"outFlow\":23371,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":898642,\"inBytes\":782338081,\"inFlow\":875722,\"lastChangeTime\":\"446 days, 22:36:33.49\",\"lastInBytes\":782338081,\"lastOutBytes\":2053287939,\"outBytes\":2053287939,\"outFlow\":22919,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1081756,\"inBytes\":1133231419,\"inFlow\":1056189,\"lastChangeTime\":\"378 days, 18:23:31.31\",\"lastInBytes\":1133231419,\"lastOutBytes\":788620301,\"outBytes\":788620301,\"outFlow\":25567,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":898889,\"inBytes\":3282072026,\"inFlow\":876156,\"lastChangeTime\":\"446 days, 22:36:33.34\",\"lastInBytes\":3282072026,\"lastOutBytes\":3644644464,\"outBytes\":3644644464,\"outFlow\":22733,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":685501692,\"inFlow\":123,\"lastChangeTime\":\"97 days, 21:45:34.43\",\"lastInBytes\":685501692,\"lastOutBytes\":190222738,\"outBytes\":190222738,\"outFlow\":204,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4691684,\"inBytes\":430584284,\"inFlow\":123231,\"lastChangeTime\":\"0:01:26.39\",\"lastInBytes\":430584284,\"lastOutBytes\":1149914747,\"outBytes\":1149914747,\"outFlow\":4568452,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.668287000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660058", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196968\",\"inUnknownProtos\":\"1455111564\",\"index\":\"634\",\"lastChange\":\"0:01:26.25\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:51:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2510836535\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"259437553\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":839952,\"inBytes\":73094256,\"inFlow\":818341,\"lastChangeTime\":\"54 days, 21:43:18.77\",\"lastInBytes\":73094256,\"lastOutBytes\":1660612281,\"outBytes\":1660612281,\"outFlow\":21611,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":830252,\"inBytes\":3728851718,\"inFlow\":809047,\"lastChangeTime\":\"54 days, 21:43:20.26\",\"lastInBytes\":3728851718,\"lastOutBytes\":1857048409,\"outBytes\":1857048409,\"outFlow\":21204,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":384050,\"inBytes\":2977755176,\"inFlow\":374572,\"lastChangeTime\":\"483 days, 19:58:09.87\",\"lastInBytes\":2977755176,\"lastOutBytes\":465340014,\"outBytes\":465340014,\"outFlow\":9477,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":832616,\"inBytes\":250347282,\"inFlow\":811919,\"lastChangeTime\":\"202 days, 23:33:08.66\",\"lastInBytes\":250347282,\"lastOutBytes\":1584984465,\"outBytes\":1584984465,\"outFlow\":20697,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":384903,\"inBytes\":1339094555,\"inFlow\":375340,\"lastChangeTime\":\"202 days, 23:33:12.64\",\"lastInBytes\":1339094555,\"lastOutBytes\":1455009661,\"outBytes\":1455009661,\"outFlow\":9562,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":411834,\"inBytes\":1769669982,\"inFlow\":402332,\"lastChangeTime\":\"202 days, 23:33:16.12\",\"lastInBytes\":1769669982,\"lastOutBytes\":1764205897,\"outBytes\":1764205897,\"outFlow\":9501,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1105842,\"inBytes\":125867183,\"inFlow\":1080056,\"lastChangeTime\":\"483 days, 19:58:12.53\",\"lastInBytes\":125867183,\"lastOutBytes\":1028335936,\"outBytes\":1028335936,\"outFlow\":25786,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":897150,\"inBytes\":3530418396,\"inFlow\":874283,\"lastChangeTime\":\"54 days, 21:43:12.98\",\"lastInBytes\":3530418396,\"lastOutBytes\":549740148,\"outBytes\":549740148,\"outFlow\":22866,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":898911,\"inBytes\":3403110677,\"inFlow\":876110,\"lastChangeTime\":\"54 days, 21:43:20.51\",\"lastInBytes\":3403110677,\"lastOutBytes\":3942785833,\"outBytes\":3942785833,\"outFlow\":22800,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":40769,\"inFlow\":0,\"lastChangeTime\":\"36 days, 10:33:51.87\",\"lastInBytes\":40769,\"lastOutBytes\":282189,\"outBytes\":282189,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":685338766,\"inFlow\":123,\"lastChangeTime\":\"202 days, 23:33:43.46\",\"lastInBytes\":685338766,\"lastOutBytes\":957826665,\"outBytes\":957826665,\"outFlow\":203,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6862537,\"inBytes\":2343310701,\"inFlow\":178562,\"lastChangeTime\":\"202 days, 23:06:19.98\",\"lastInBytes\":2343310701,\"lastOutBytes\":1369763832,\"outBytes\":1369763832,\"outFlow\":6683974,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.396355000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660059", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1024040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"31806\",\"inUnknownProtos\":\"3304037499\",\"index\":\"634\",\"lastChange\":\"0:01:19.38\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:69:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1224773539\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"26756543\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":833616,\"inBytes\":3496074870,\"inFlow\":812289,\"lastChangeTime\":\"24 days, 22:46:26.63\",\"lastInBytes\":3496074870,\"lastOutBytes\":1983142960,\"outBytes\":1983142960,\"outFlow\":21327,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":837270,\"inBytes\":470653444,\"inFlow\":816214,\"lastChangeTime\":\"24 days, 22:46:19.16\",\"lastInBytes\":470653444,\"lastOutBytes\":1041952191,\"outBytes\":1041952191,\"outFlow\":21055,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":383155,\"inBytes\":3947397840,\"inFlow\":373611,\"lastChangeTime\":\"0:01:19.35\",\"lastInBytes\":3947397840,\"lastOutBytes\":3417286923,\"outBytes\":3417286923,\"outFlow\":9543,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":894644,\"inBytes\":364399656,\"inFlow\":873908,\"lastChangeTime\":\"0:01:19.35\",\"lastInBytes\":364399656,\"lastOutBytes\":2479026099,\"outBytes\":2479026099,\"outFlow\":20736,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":412962,\"inBytes\":750111418,\"inFlow\":402649,\"lastChangeTime\":\"0:01:19.36\",\"lastInBytes\":750111418,\"lastOutBytes\":3303935770,\"outBytes\":3303935770,\"outFlow\":10312,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":275986,\"inBytes\":3028587308,\"inFlow\":269027,\"lastChangeTime\":\"0:01:19.37\",\"lastInBytes\":3028587308,\"lastOutBytes\":266329939,\"outBytes\":266329939,\"outFlow\":6959,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413849,\"inBytes\":120441163,\"inFlow\":403504,\"lastChangeTime\":\"101 days, 6:29:12.80\",\"lastInBytes\":120441163,\"lastOutBytes\":1145902216,\"outBytes\":1145902216,\"outFlow\":10344,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":900552,\"inBytes\":2712047311,\"inFlow\":877681,\"lastChangeTime\":\"24 days, 22:46:30.04\",\"lastInBytes\":2712047311,\"lastOutBytes\":1604021106,\"outBytes\":1604021106,\"outFlow\":22871,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":833093,\"inBytes\":362432347,\"inFlow\":810249,\"lastChangeTime\":\"24 days, 22:46:26.96\",\"lastInBytes\":362432347,\"lastOutBytes\":2341793034,\"outBytes\":2341793034,\"outFlow\":22843,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":414530,\"inBytes\":3685891274,\"inFlow\":404627,\"lastChangeTime\":\"0:01:20.18\",\"lastInBytes\":3685891274,\"lastOutBytes\":3332764129,\"outBytes\":3332764129,\"outFlow\":9902,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":411641,\"inBytes\":272001591,\"inFlow\":401791,\"lastChangeTime\":\"0:03:00.24\",\"lastInBytes\":272001591,\"lastOutBytes\":3965540837,\"outBytes\":3965540837,\"outFlow\":9850,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":319,\"inBytes\":498903898,\"inFlow\":123,\"lastChangeTime\":\"0:01:20.19\",\"lastInBytes\":498903898,\"lastOutBytes\":1220005640,\"outBytes\":1220005640,\"outFlow\":196,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6861772,\"inBytes\":2885148785,\"inFlow\":179104,\"lastChangeTime\":\"0:01:19.36\",\"lastInBytes\":2885148785,\"lastOutBytes\":839893819,\"outBytes\":839893819,\"outFlow\":6682667,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.401677000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660060", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"196988\",\"inUnknownProtos\":\"826548142\",\"index\":\"634\",\"lastChange\":\"0:01:32.44\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:03:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3725642218\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"259434878\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":900192,\"inBytes\":3038507377,\"inFlow\":877708,\"lastChangeTime\":\"54 days, 21:42:19.31\",\"lastInBytes\":3038507377,\"lastOutBytes\":1853768536,\"outBytes\":1853768536,\"outFlow\":22484,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":412506,\"inBytes\":564135929,\"inFlow\":402410,\"lastChangeTime\":\"483 days, 19:57:21.36\",\"lastInBytes\":564135929,\"lastOutBytes\":2590537918,\"outBytes\":2590537918,\"outFlow\":10096,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413067,\"inBytes\":477918850,\"inFlow\":402861,\"lastChangeTime\":\"203 days, 0:18:35.55\",\"lastInBytes\":477918850,\"lastOutBytes\":2517314935,\"outBytes\":2517314935,\"outFlow\":10206,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413321,\"inBytes\":458322329,\"inFlow\":403000,\"lastChangeTime\":\"203 days, 0:18:39.50\",\"lastInBytes\":458322329,\"lastOutBytes\":3466093614,\"outBytes\":3466093614,\"outFlow\":10321,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":275829,\"inBytes\":2274773693,\"inFlow\":268857,\"lastChangeTime\":\"203 days, 0:18:45.47\",\"lastInBytes\":2274773693,\"lastOutBytes\":826548142,\"outBytes\":826548142,\"outFlow\":6972,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":440940,\"inBytes\":62554686,\"inFlow\":431912,\"lastChangeTime\":\"272 days, 16:37:37.64\",\"lastInBytes\":62554686,\"lastOutBytes\":3613234090,\"outBytes\":3613234090,\"outFlow\":9027,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419785,\"inBytes\":1475425900,\"inFlow\":411215,\"lastChangeTime\":\"272 days, 16:37:31.54\",\"lastInBytes\":1475425900,\"lastOutBytes\":17866039,\"outBytes\":17866039,\"outFlow\":8569,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":894346,\"inBytes\":1402880668,\"inFlow\":872091,\"lastChangeTime\":\"54 days, 21:42:16.18\",\"lastInBytes\":1402880668,\"lastOutBytes\":4175175048,\"outBytes\":4175175048,\"outFlow\":22255,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":988551,\"inBytes\":769823112,\"inFlow\":965594,\"lastChangeTime\":\"483 days, 19:57:17.33\",\"lastInBytes\":769823112,\"lastOutBytes\":3506212658,\"outBytes\":3506212658,\"outFlow\":22957,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":9651740,\"inFlow\":0,\"lastChangeTime\":\"45 days, 12:59:53.92\",\"lastInBytes\":9651740,\"lastOutBytes\":436366547,\"outBytes\":436366547,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":71968,\"inFlow\":0,\"lastChangeTime\":\"36 days, 9:53:57.55\",\"lastInBytes\":71968,\"lastOutBytes\":1439095,\"outBytes\":1439095,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":319,\"inBytes\":685811409,\"inFlow\":123,\"lastChangeTime\":\"45 days, 12:59:56.39\",\"lastInBytes\":685811409,\"lastOutBytes\":962127462,\"outBytes\":962127462,\"outFlow\":196,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5259822,\"inBytes\":3818696987,\"inFlow\":130108,\"lastChangeTime\":\"36 days, 9:54:02.30\",\"lastInBytes\":3818696987,\"lastOutBytes\":482279562,\"outBytes\":482279562,\"outFlow\":5129714,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.511367000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660061", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1024040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"195833\",\"inUnknownProtos\":\"0\",\"index\":\"636\",\"lastChange\":\"0:01:24.06\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:bc:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.138\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":1098303,\"inBytes\":1374457051,\"inFlow\":1072291,\"lastChangeTime\":\"481 days, 4:45:03.05\",\"lastInBytes\":1374457051,\"lastOutBytes\":1994562181,\"outBytes\":1994562181,\"outFlow\":26011,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":412900,\"inBytes\":2652111100,\"inFlow\":402603,\"lastChangeTime\":\"200 days, 9:28:50.13\",\"lastInBytes\":2652111100,\"lastOutBytes\":737802068,\"outBytes\":737802068,\"outFlow\":10296,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":895902,\"inBytes\":944961428,\"inFlow\":873734,\"lastChangeTime\":\"200 days, 9:28:54.49\",\"lastInBytes\":944961428,\"lastOutBytes\":3045695117,\"outBytes\":3045695117,\"outFlow\":22167,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":275820,\"inBytes\":4276350087,\"inFlow\":268815,\"lastChangeTime\":\"200 days, 9:28:58.81\",\"lastInBytes\":4276350087,\"lastOutBytes\":238523342,\"outBytes\":238523342,\"outFlow\":7005,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":221835,\"inFlow\":0,\"lastChangeTime\":\"33 days, 19:30:09.82\",\"lastInBytes\":221835,\"lastOutBytes\":8664591,\"outBytes\":8664591,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":685495092,\"inFlow\":123,\"lastChangeTime\":\"200 days, 9:29:01.03\",\"lastInBytes\":685495092,\"lastOutBytes\":927389598,\"outBytes\":927389598,\"outFlow\":204,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:48.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:49.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2503565,\"inBytes\":1606495966,\"inFlow\":64081,\"lastChangeTime\":\"33 days, 19:30:12.99\",\"lastInBytes\":1606495966,\"lastOutBytes\":2655703024,\"outBytes\":2655703024,\"outFlow\":2439483,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.428007000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660062", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"8\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"197526\",\"inUnknownProtos\":\"1570510333\",\"index\":\"634\",\"lastChange\":\"0:01:25.97\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:71:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2558894444\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"259435398\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":933550,\"inBytes\":2976383161,\"inFlow\":914756,\"lastChangeTime\":\"272 days, 16:37:07.38\",\"lastInBytes\":2976383161,\"lastOutBytes\":1535839478,\"outBytes\":1535839478,\"outFlow\":18793,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413011,\"inBytes\":2990392442,\"inFlow\":404076,\"lastChangeTime\":\"272 days, 16:37:11.05\",\"lastInBytes\":2990392442,\"lastOutBytes\":2085843296,\"outBytes\":2085843296,\"outFlow\":8934,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415191,\"inBytes\":2383865225,\"inFlow\":404536,\"lastChangeTime\":\"54 days, 21:41:18.29\",\"lastInBytes\":2383865225,\"lastOutBytes\":1420420772,\"outBytes\":1420420772,\"outFlow\":10655,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":897968,\"inBytes\":925485053,\"inFlow\":875487,\"lastChangeTime\":\"54 days, 21:41:30.81\",\"lastInBytes\":925485053,\"lastOutBytes\":1191384129,\"outBytes\":1191384129,\"outFlow\":22480,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":897679,\"inBytes\":3226970275,\"inFlow\":875230,\"lastChangeTime\":\"118 days, 2:05:42.32\",\"lastInBytes\":3226970275,\"lastOutBytes\":1570291866,\"outBytes\":1570291866,\"outFlow\":22449,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":415380,\"inBytes\":428568617,\"inFlow\":404733,\"lastChangeTime\":\"54 days, 21:41:28.93\",\"lastInBytes\":428568617,\"lastOutBytes\":917737785,\"outBytes\":917737785,\"outFlow\":10647,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":415809,\"inBytes\":3335533561,\"inFlow\":405118,\"lastChangeTime\":\"54 days, 21:41:24.08\",\"lastInBytes\":3335533561,\"lastOutBytes\":2753937949,\"outBytes\":2753937949,\"outFlow\":10691,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":554314,\"inBytes\":2080808498,\"inFlow\":542686,\"lastChangeTime\":\"336 days, 13:18:29.92\",\"lastInBytes\":2080808498,\"lastOutBytes\":896344374,\"outBytes\":896344374,\"outFlow\":11627,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":530996,\"inBytes\":332477497,\"inFlow\":519017,\"lastChangeTime\":\"272 days, 16:36:53.90\",\"lastInBytes\":332477497,\"lastOutBytes\":2820661487,\"outBytes\":2820661487,\"outFlow\":11979,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":236291,\"inFlow\":0,\"lastChangeTime\":\"336 days, 13:20:31.85\",\"lastInBytes\":236291,\"lastOutBytes\":35880509,\"outBytes\":35880509,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":620445,\"inFlow\":0,\"lastChangeTime\":\"36 days, 9:47:28.23\",\"lastInBytes\":620445,\"lastOutBytes\":15480132,\"outBytes\":15480132,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":322,\"inBytes\":685862590,\"inFlow\":123,\"lastChangeTime\":\"203 days, 0:31:20.05\",\"lastInBytes\":685862590,\"lastOutBytes\":959062163,\"outBytes\":959062163,\"outFlow\":198,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5616974,\"inBytes\":3375040732,\"inFlow\":136587,\"lastChangeTime\":\"336 days, 13:20:11.18\",\"lastInBytes\":3375040732,\"lastOutBytes\":1217367,\"outBytes\":1217367,\"outFlow\":5480387,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.403044000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660063", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1024040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"163111\",\"inUnknownProtos\":\"3929927726\",\"index\":\"634\",\"lastChange\":\"0:01:26.59\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:e1:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1612036801\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"209358029\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":1101148,\"inBytes\":4145185068,\"inFlow\":1075201,\"lastChangeTime\":\"376 days, 17:53:32.23\",\"lastInBytes\":4145185068,\"lastOutBytes\":1560437826,\"outBytes\":1560437826,\"outFlow\":25946,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":723222,\"inBytes\":2337802190,\"inFlow\":706230,\"lastChangeTime\":\"165 days, 14:33:49.27\",\"lastInBytes\":2337802190,\"lastOutBytes\":81698214,\"outBytes\":81698214,\"outFlow\":16992,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":895801,\"inBytes\":3645842898,\"inFlow\":873820,\"lastChangeTime\":\"95 days, 22:07:54.41\",\"lastInBytes\":3645842898,\"lastOutBytes\":178307254,\"outBytes\":178307254,\"outFlow\":21981,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413711,\"inBytes\":2688909137,\"inFlow\":403584,\"lastChangeTime\":\"95 days, 22:07:59.99\",\"lastInBytes\":2688909137,\"lastOutBytes\":1548269441,\"outBytes\":1548269441,\"outFlow\":10127,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":459990,\"inBytes\":2714911932,\"inFlow\":448699,\"lastChangeTime\":\"165 days, 14:33:46.04\",\"lastInBytes\":2714911932,\"lastOutBytes\":3929927726,\"outBytes\":3929927726,\"outFlow\":11291,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":894539,\"inBytes\":2982788069,\"inFlow\":872426,\"lastChangeTime\":\"95 days, 22:08:07.13\",\"lastInBytes\":2982788069,\"lastOutBytes\":2726640973,\"outBytes\":2726640973,\"outFlow\":22113,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413382,\"inBytes\":2934420987,\"inFlow\":403110,\"lastChangeTime\":\"95 days, 22:08:09.50\",\"lastInBytes\":2934420987,\"lastOutBytes\":65198205,\"outBytes\":65198205,\"outFlow\":10271,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1179183,\"inBytes\":2366601556,\"inFlow\":1152017,\"lastChangeTime\":\"165 days, 14:33:33.58\",\"lastInBytes\":2366601556,\"lastOutBytes\":3953353858,\"outBytes\":3953353858,\"outFlow\":27165,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":265415,\"inBytes\":746047990,\"inFlow\":257889,\"lastChangeTime\":\"95 days, 22:08:20.06\",\"lastInBytes\":746047990,\"lastOutBytes\":2848359587,\"outBytes\":2848359587,\"outFlow\":7526,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":857160,\"inBytes\":3349666549,\"inFlow\":838666,\"lastChangeTime\":\"165 days, 14:33:32.43\",\"lastInBytes\":3349666549,\"lastOutBytes\":3561395161,\"outBytes\":3561395161,\"outFlow\":18494,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":380685,\"inBytes\":3413194617,\"inFlow\":372895,\"lastChangeTime\":\"95 days, 22:08:30.05\",\"lastInBytes\":3413194617,\"lastOutBytes\":2178766350,\"outBytes\":2178766350,\"outFlow\":7790,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":384026,\"inBytes\":1673023521,\"inFlow\":374755,\"lastChangeTime\":\"376 days, 17:53:40.18\",\"lastInBytes\":1673023521,\"lastOutBytes\":3607180481,\"outBytes\":3607180481,\"outFlow\":9270,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":779240,\"inFlow\":0,\"lastChangeTime\":\"229 days, 10:53:11.39\",\"lastInBytes\":779240,\"lastOutBytes\":31487059,\"outBytes\":31487059,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":319,\"inBytes\":685798170,\"inFlow\":123,\"lastChangeTime\":\"95 days, 22:09:03.88\",\"lastInBytes\":685798170,\"lastOutBytes\":162276820,\"outBytes\":162276820,\"outFlow\":196,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.26\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8139034,\"inBytes\":614088292,\"inFlow\":200530,\"lastChangeTime\":\"0:01:26.58\",\"lastInBytes\":614088292,\"lastOutBytes\":181539742,\"outBytes\":181539742,\"outFlow\":7938503,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.367650000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660064", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"197357\",\"inUnknownProtos\":\"167033339\",\"index\":\"634\",\"lastChange\":\"0:01:24.01\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:79:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1319012327\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":471075,\"inBytes\":3184970916,\"inFlow\":460985,\"lastChangeTime\":\"272 days, 16:37:46.39\",\"lastInBytes\":3184970916,\"lastOutBytes\":955238054,\"outBytes\":955238054,\"outFlow\":10089,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":416334,\"inBytes\":1542447723,\"inFlow\":406036,\"lastChangeTime\":\"54 days, 21:43:28.21\",\"lastInBytes\":1542447723,\"lastOutBytes\":378772950,\"outBytes\":378772950,\"outFlow\":10298,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":467851,\"inBytes\":2190370179,\"inFlow\":458078,\"lastChangeTime\":\"272 days, 16:38:02.06\",\"lastInBytes\":2190370179,\"lastOutBytes\":3094108454,\"outBytes\":3094108454,\"outFlow\":9772,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412422,\"inBytes\":201859321,\"inFlow\":402401,\"lastChangeTime\":\"483 days, 19:58:14.86\",\"lastInBytes\":201859321,\"lastOutBytes\":240256315,\"outBytes\":240256315,\"outFlow\":10020,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":895446,\"inBytes\":3796959015,\"inFlow\":873358,\"lastChangeTime\":\"54 days, 21:43:25.26\",\"lastInBytes\":3796959015,\"lastOutBytes\":167033339,\"outBytes\":167033339,\"outFlow\":22088,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413643,\"inBytes\":4022303596,\"inFlow\":403525,\"lastChangeTime\":\"54 days, 21:43:26.75\",\"lastInBytes\":4022303596,\"lastOutBytes\":1014942853,\"outBytes\":1014942853,\"outFlow\":10117,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3615567,\"inFlow\":0,\"lastChangeTime\":\"36 days, 10:19:10.72\",\"lastInBytes\":3615567,\"lastOutBytes\":166826082,\"outBytes\":166826082,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":685805621,\"inFlow\":123,\"lastChangeTime\":\"203 days, 0:55:12.98\",\"lastInBytes\":685805621,\"lastOutBytes\":972308337,\"outBytes\":972308337,\"outFlow\":204,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3086560,\"inBytes\":1907812818,\"inFlow\":75628,\"lastChangeTime\":\"36 days, 9:44:32.78\",\"lastInBytes\":1907812818,\"lastOutBytes\":3884900540,\"outBytes\":3884900540,\"outFlow\":3010932,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.370661000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660065", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1024040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"13\",\"0\",\"18\",\"3\",\"0\",\"7\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"198442\",\"inUnknownProtos\":\"3785146494\",\"index\":\"634\",\"lastChange\":\"445 days, 8:02:48.22\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:0d:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3387599150\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"259415607\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":488016,\"inBytes\":1382688650,\"inFlow\":476144,\"lastChangeTime\":\"272 days, 16:36:54.81\",\"lastInBytes\":1382688650,\"lastOutBytes\":279011017,\"outBytes\":279011017,\"outFlow\":11871,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":496121,\"inBytes\":1560113672,\"inFlow\":484434,\"lastChangeTime\":\"272 days, 16:37:12.37\",\"lastInBytes\":1560113672,\"lastOutBytes\":62570100,\"outBytes\":62570100,\"outFlow\":11686,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":996402,\"inBytes\":2290588381,\"inFlow\":973111,\"lastChangeTime\":\"56 days, 6:55:24.58\",\"lastInBytes\":2290588381,\"lastOutBytes\":2178997887,\"outBytes\":2178997887,\"outFlow\":23290,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":896500,\"inBytes\":1031105822,\"inFlow\":874504,\"lastChangeTime\":\"74 days, 6:12:25.98\",\"lastInBytes\":1031105822,\"lastOutBytes\":1435944790,\"outBytes\":1435944790,\"outFlow\":21995,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":896337,\"inBytes\":3388129845,\"inFlow\":874407,\"lastChangeTime\":\"203 days, 1:07:52.62\",\"lastInBytes\":3388129845,\"lastOutBytes\":3784930892,\"outBytes\":3784930892,\"outFlow\":21930,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413235,\"inBytes\":2746112742,\"inFlow\":403160,\"lastChangeTime\":\"56 days, 7:36:36.87\",\"lastInBytes\":2746112742,\"lastOutBytes\":2601914799,\"outBytes\":2601914799,\"outFlow\":10074,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":931573,\"inBytes\":2190148798,\"inFlow\":906431,\"lastChangeTime\":\"203 days, 1:07:50.86\",\"lastInBytes\":2190148798,\"lastOutBytes\":1703462837,\"outBytes\":1703462837,\"outFlow\":25142,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":275968,\"inBytes\":2283979759,\"inFlow\":269082,\"lastChangeTime\":\"56 days, 6:54:34.77\",\"lastInBytes\":2283979759,\"lastOutBytes\":55312923,\"outBytes\":55312923,\"outFlow\":6886,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":383862,\"inBytes\":255658523,\"inFlow\":374470,\"lastChangeTime\":\"54 days, 2:06:45.69\",\"lastInBytes\":255658523,\"lastOutBytes\":376607245,\"outBytes\":376607245,\"outFlow\":9392,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2994510513,\"inFlow\":0,\"lastChangeTime\":\"118 days, 9:55:17.59\",\"lastInBytes\":2994510513,\"lastOutBytes\":3903803459,\"outBytes\":3903803459,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":444119,\"inBytes\":3342120111,\"inFlow\":433999,\"lastChangeTime\":\"365 days, 11:41:16.49\",\"lastInBytes\":3342120111,\"lastOutBytes\":1013307885,\"outBytes\":1013307885,\"outFlow\":10119,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1375472,\"inFlow\":0,\"lastChangeTime\":\"445 days, 8:05:46.25\",\"lastInBytes\":1375472,\"lastOutBytes\":179308177,\"outBytes\":179308177,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":322,\"inBytes\":372090013,\"inFlow\":123,\"lastChangeTime\":\"56 days, 7:03:26.85\",\"lastInBytes\":372090013,\"lastOutBytes\":533271692,\"outBytes\":533271692,\"outFlow\":198,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6420705,\"inBytes\":2160852452,\"inFlow\":163392,\"lastChangeTime\":\"445 days, 8:02:48.21\",\"lastInBytes\":2160852452,\"lastOutBytes\":2631137755,\"outBytes\":2631137755,\"outFlow\":6257313,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.396780000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660066", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"62440\",\"inUnknownProtos\":\"2998707294\",\"index\":\"634\",\"lastChange\":\"0:01:19.70\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:0b:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3038436591\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"49472532\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":413374,\"inBytes\":4020858867,\"inFlow\":403189,\"lastChangeTime\":\"0:01:19.69\",\"lastInBytes\":4020858867,\"lastOutBytes\":1484288865,\"outBytes\":1484288865,\"outFlow\":10184,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":893988,\"inBytes\":3892000757,\"inFlow\":871887,\"lastChangeTime\":\"0:01:19.22\",\"lastInBytes\":3892000757,\"lastOutBytes\":3774641247,\"outBytes\":3774641247,\"outFlow\":22101,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":954817,\"inBytes\":1000709231,\"inFlow\":934675,\"lastChangeTime\":\"0:01:20.19\",\"lastInBytes\":1000709231,\"lastOutBytes\":1012383374,\"outBytes\":1012383374,\"outFlow\":20142,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414575,\"inBytes\":1473638433,\"inFlow\":404219,\"lastChangeTime\":\"0:01:19.69\",\"lastInBytes\":1473638433,\"lastOutBytes\":812328360,\"outBytes\":812328360,\"outFlow\":10355,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":889621,\"inBytes\":2807682791,\"inFlow\":873496,\"lastChangeTime\":\"0:01:20.41\",\"lastInBytes\":2807682791,\"lastOutBytes\":2998707294,\"outBytes\":2998707294,\"outFlow\":16124,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":449940,\"inBytes\":3002006276,\"inFlow\":440352,\"lastChangeTime\":\"0:01:20.49\",\"lastInBytes\":3002006276,\"lastOutBytes\":1765162022,\"outBytes\":1765162022,\"outFlow\":9587,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413050,\"inBytes\":4279541334,\"inFlow\":402980,\"lastChangeTime\":\"0:01:20.02\",\"lastInBytes\":4279541334,\"lastOutBytes\":3159925104,\"outBytes\":3159925104,\"outFlow\":10070,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1121668,\"inBytes\":855796239,\"inFlow\":1095336,\"lastChangeTime\":\"55 days, 10:44:33.01\",\"lastInBytes\":855796239,\"lastOutBytes\":4004105671,\"outBytes\":4004105671,\"outFlow\":26331,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":694905287,\"inFlow\":123,\"lastChangeTime\":\"0:01:20.62\",\"lastInBytes\":694905287,\"lastOutBytes\":2139603351,\"outBytes\":2139603351,\"outFlow\":204,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5572127,\"inBytes\":717476920,\"inFlow\":130507,\"lastChangeTime\":\"0:01:19.70\",\"lastInBytes\":717476920,\"lastOutBytes\":2714731180,\"outBytes\":2714731180,\"outFlow\":5441619,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.385743000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660067", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1024040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"11\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164083\",\"inUnknownProtos\":\"1979669101\",\"index\":\"634\",\"lastChange\":\"0:01:26.19\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:58:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"338523183\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"185673483\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":413153,\"inBytes\":836696350,\"inFlow\":403053,\"lastChangeTime\":\"24 days, 1:09:52.59\",\"lastInBytes\":836696350,\"lastOutBytes\":2225780809,\"outBytes\":2225780809,\"outFlow\":10099,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":420871,\"inBytes\":3892004989,\"inFlow\":411882,\"lastChangeTime\":\"167 days, 15:00:35.06\",\"lastInBytes\":3892004989,\"lastOutBytes\":2983840111,\"outBytes\":2983840111,\"outFlow\":8989,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413352,\"inBytes\":3460271346,\"inFlow\":404595,\"lastChangeTime\":\"167 days, 15:00:48.48\",\"lastInBytes\":3460271346,\"lastOutBytes\":4158367189,\"outBytes\":4158367189,\"outFlow\":8757,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412740,\"inBytes\":3584510642,\"inFlow\":402648,\"lastChangeTime\":\"446 days, 22:33:07.58\",\"lastInBytes\":3584510642,\"lastOutBytes\":2731038260,\"outBytes\":2731038260,\"outFlow\":10092,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":411319,\"inBytes\":2665722726,\"inFlow\":401448,\"lastChangeTime\":\"378 days, 18:20:24.42\",\"lastInBytes\":2665722726,\"lastOutBytes\":1979669101,\"outBytes\":1979669101,\"outFlow\":9870,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":416292,\"inBytes\":3440335857,\"inFlow\":405937,\"lastChangeTime\":\"26 days, 9:24:50.89\",\"lastInBytes\":3440335857,\"lastOutBytes\":3567161321,\"outBytes\":3567161321,\"outFlow\":10355,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276181,\"inBytes\":2630523495,\"inFlow\":269290,\"lastChangeTime\":\"442 days, 10:15:38.69\",\"lastInBytes\":2630523495,\"lastOutBytes\":2786359662,\"outBytes\":2786359662,\"outFlow\":6891,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":274978,\"inBytes\":234205231,\"inFlow\":267950,\"lastChangeTime\":\"135 days, 11:04:58.51\",\"lastInBytes\":234205231,\"lastOutBytes\":290083482,\"outBytes\":290083482,\"outFlow\":7028,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":168805,\"inFlow\":0,\"lastChangeTime\":\"231 days, 11:32:00.84\",\"lastInBytes\":168805,\"lastOutBytes\":4533733,\"outBytes\":4533733,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3415924,\"inFlow\":0,\"lastChangeTime\":\"97 days, 23:33:42.82\",\"lastInBytes\":3415924,\"lastOutBytes\":141124262,\"outBytes\":141124262,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":777077884,\"inFlow\":123,\"lastChangeTime\":\"231 days, 11:29:14.81\",\"lastInBytes\":777077884,\"lastOutBytes\":268107318,\"outBytes\":268107318,\"outFlow\":203,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3049795,\"inBytes\":2733489757,\"inFlow\":74740,\"lastChangeTime\":\"260 days, 8:11:03.09\",\"lastInBytes\":2733489757,\"lastOutBytes\":3872034381,\"outBytes\":3872034381,\"outFlow\":2975054,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.374611000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660068", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1024040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.176.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface176\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133019\",\"inUnknownProtos\":\"3745795434\",\"index\":\"634\",\"lastChange\":\"0:01:24.18\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:71:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1211814746\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"111641998\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.176.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":256400,\"inBytes\":2289613237,\"inFlow\":249796,\"lastChangeTime\":\"0:01:23.85\",\"lastInBytes\":2289613237,\"lastOutBytes\":1699378998,\"outBytes\":1699378998,\"outFlow\":6604,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":256313,\"inBytes\":675412079,\"inFlow\":249851,\"lastChangeTime\":\"37 days, 13:14:34.49\",\"lastInBytes\":675412079,\"lastOutBytes\":3464022440,\"outBytes\":3464022440,\"outFlow\":6461,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":256199,\"inBytes\":961190981,\"inFlow\":249628,\"lastChangeTime\":\"36 days, 16:05:07.63\",\"lastInBytes\":961190981,\"lastOutBytes\":801505106,\"outBytes\":801505106,\"outFlow\":6570,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":256568,\"inBytes\":2624205641,\"inFlow\":250111,\"lastChangeTime\":\"2:04:14.14\",\"lastInBytes\":2624205641,\"lastOutBytes\":2070887455,\"outBytes\":2070887455,\"outFlow\":6457,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":256045,\"inBytes\":1315098036,\"inFlow\":249689,\"lastChangeTime\":\"2:04:19.85\",\"lastInBytes\":1315098036,\"lastOutBytes\":3745728345,\"outBytes\":3745728345,\"outFlow\":6356,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":256389,\"inBytes\":3756106302,\"inFlow\":249715,\"lastChangeTime\":\"2:04:25.14\",\"lastInBytes\":3756106302,\"lastOutBytes\":1631763649,\"outBytes\":1631763649,\"outFlow\":6673,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":620721,\"inBytes\":3108868496,\"inFlow\":605548,\"lastChangeTime\":\"2:04:28.81\",\"lastInBytes\":3108868496,\"lastOutBytes\":2761989165,\"outBytes\":2761989165,\"outFlow\":15172,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":275999,\"inBytes\":680096752,\"inFlow\":268974,\"lastChangeTime\":\"295 days, 12:14:00.69\",\"lastInBytes\":680096752,\"lastOutBytes\":666530232,\"outBytes\":666530232,\"outFlow\":7025,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":276280,\"inBytes\":4188022352,\"inFlow\":269056,\"lastChangeTime\":\"2:04:37.31\",\"lastInBytes\":4188022352,\"lastOutBytes\":2831894852,\"outBytes\":2831894852,\"outFlow\":7223,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":275905,\"inBytes\":4127556548,\"inFlow\":268906,\"lastChangeTime\":\"2:04:40.75\",\"lastInBytes\":4127556548,\"lastOutBytes\":110818868,\"outBytes\":110818868,\"outFlow\":6998,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":896009,\"inBytes\":776981441,\"inFlow\":873693,\"lastChangeTime\":\"2:04:59.07\",\"lastInBytes\":776981441,\"lastOutBytes\":2299184685,\"outBytes\":2299184685,\"outFlow\":22315,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":275686,\"inBytes\":1988357436,\"inFlow\":268736,\"lastChangeTime\":\"2:05:05.62\",\"lastInBytes\":1988357436,\"lastOutBytes\":1497152085,\"outBytes\":1497152085,\"outFlow\":6950,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":256067,\"inBytes\":1860274613,\"inFlow\":249626,\"lastChangeTime\":\"2:05:09.05\",\"lastInBytes\":1860274613,\"lastOutBytes\":94354376,\"outBytes\":94354376,\"outFlow\":6440,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2395929,\"inFlow\":0,\"lastChangeTime\":\"295 days, 12:22:37.83\",\"lastInBytes\":2395929,\"lastOutBytes\":137198721,\"outBytes\":137198721,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":324,\"inBytes\":805894690,\"inFlow\":123,\"lastChangeTime\":\"162 days, 12:10:48.30\",\"lastInBytes\":805894690,\"lastOutBytes\":3883564570,\"outBytes\":3883564570,\"outFlow\":201,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.25\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4571185,\"inBytes\":1832887022,\"inFlow\":119837,\"lastChangeTime\":\"162 days, 12:00:50.23\",\"lastInBytes\":1832887022,\"lastOutBytes\":1722721011,\"outBytes\":1722721011,\"outFlow\":4451348,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:44.399396000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389985530660069", + "createdBy": "0", + "createdTime": "2025-12-02 09:05:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:11", + "echoMap": {}, + "deviceId": "1024040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.175.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif175\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:02:57.30\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:08:db\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"4\",\"temperature\":\"42\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.175.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"5357\",\"0\",\"0\",\"0\",\"1629\",\"1639\",\"1430\",\"2004\",\"1833\",\"1100\",\"0\",\"3051\",\"1771\",\"1775\",\"2129\",\"1241\",\"4437\",\"4684\",\"4425\",\"4750\",\"7465\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"8046\",\"37358333\",\"8295\",\"6968\",\"0\",\"0\",\"9911\",\"69855\",\"300458\",\"24118\",\"80630\",\"464135\",\"719631\",\"31957\",\"183364\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:10\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41340,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":557,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34650,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":672,\"opticalVoltage\":3250,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36119,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":563,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43950,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":522,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38400,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":468,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37319,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":559,\"opticalVoltage\":3251,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37529,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":564,\"opticalVoltage\":3256,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44549,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":561,\"opticalVoltage\":3251,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37799,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":558,\"opticalVoltage\":3216,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43860,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":623,\"opticalVoltage\":3239,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37169,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":595,\"opticalVoltage\":3268,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43604,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":579,\"opticalVoltage\":3284,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44459,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":558,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39450,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":563,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":46409,\"opticalReceivePower\":0,\"opticalTemperature\":65,\"opticalTransmitPower\":561,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39180,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":574,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39750,\"opticalReceivePower\":0,\"opticalTemperature\":65,\"opticalTransmitPower\":591,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":48540,\"opticalReceivePower\":0,\"opticalTemperature\":64,\"opticalTransmitPower\":523,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41159,\"opticalReceivePower\":0,\"opticalTemperature\":64,\"opticalTransmitPower\":561,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39509,\"opticalReceivePower\":0,\"opticalTemperature\":63,\"opticalTransmitPower\":597,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":620,\"inBytes\":1627406503,\"inFlow\":88,\"lastChangeTime\":\"365 days, 9:26:20.79\",\"lastInBytes\":1627406503,\"lastOutBytes\":3120604825,\"opticalBiasCurrent\":12166,\"opticalReceivePower\":187,\"opticalTemperature\":65,\"opticalTransmitPower\":256,\"opticalVoltage\":3332,\"outBytes\":3120604825,\"outFlow\":531,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2409087879,\"inFlow\":0,\"lastChangeTime\":\"365 days, 9:24:44.03\",\"lastInBytes\":2409087879,\"lastOutBytes\":2633515417,\"opticalBiasCurrent\":39330,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":595,\"opticalVoltage\":3338,\"outBytes\":2633515417,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":2869439,\"inBytes\":2321884689,\"inFlow\":89682,\"lastChangeTime\":\"0:04:02.30\",\"lastInBytes\":2321884689,\"lastOutBytes\":3051980434,\"opticalBiasCurrent\":43200,\"opticalReceivePower\":362,\"opticalTemperature\":61,\"opticalTransmitPower\":467,\"opticalVoltage\":3345,\"outBytes\":3051980434,\"outFlow\":2779757,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2889259,\"inBytes\":1353077088,\"inFlow\":3738,\"lastChangeTime\":\"0:04:09.16\",\"lastInBytes\":1353077088,\"lastOutBytes\":2716083335,\"opticalBiasCurrent\":39990,\"opticalReceivePower\":544,\"opticalTemperature\":59,\"opticalTransmitPower\":558,\"opticalVoltage\":3311,\"outBytes\":2716083335,\"outFlow\":2885521,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":6054835,\"inBytes\":2186534764,\"inFlow\":5857810,\"lastChangeTime\":\"365 days, 11:26:25.99\",\"lastInBytes\":2186534764,\"lastOutBytes\":78380732,\"opticalBiasCurrent\":11439,\"opticalReceivePower\":237,\"opticalTemperature\":59,\"opticalTransmitPower\":254,\"opticalVoltage\":3332,\"outBytes\":78380732,\"outFlow\":197025,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4036232,\"inBytes\":3585432923,\"inFlow\":3913396,\"lastChangeTime\":\"365 days, 9:46:43.82\",\"lastInBytes\":3585432923,\"lastOutBytes\":2179780847,\"opticalBiasCurrent\":11470,\"opticalReceivePower\":150,\"opticalTemperature\":56,\"opticalTransmitPower\":239,\"opticalVoltage\":3340,\"outBytes\":2179780847,\"outFlow\":122835,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7368226,\"inBytes\":2694782282,\"inFlow\":7153756,\"lastChangeTime\":\"428 days, 9:11:06.05\",\"lastInBytes\":2694782282,\"lastOutBytes\":2236675455,\"opticalBiasCurrent\":12024,\"opticalReceivePower\":185,\"opticalTemperature\":56,\"opticalTransmitPower\":242,\"opticalVoltage\":3348,\"outBytes\":2236675455,\"outFlow\":214470,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8401197,\"inBytes\":2266407997,\"inFlow\":8136096,\"lastChangeTime\":\"445 days, 7:59:07.66\",\"lastInBytes\":2266407997,\"lastOutBytes\":2085682497,\"opticalBiasCurrent\":10741,\"opticalReceivePower\":83,\"opticalTemperature\":61,\"opticalTransmitPower\":246,\"opticalVoltage\":3353,\"outBytes\":2085682497,\"outFlow\":265101,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4048960,\"inBytes\":1167836456,\"inFlow\":3925798,\"lastChangeTime\":\"36 days, 9:59:49.59\",\"lastInBytes\":1167836456,\"lastOutBytes\":2129750599,\"opticalBiasCurrent\":12534,\"opticalReceivePower\":3,\"opticalTemperature\":57,\"opticalTransmitPower\":243,\"opticalVoltage\":3340,\"outBytes\":2129750599,\"outFlow\":123161,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10718354,\"inBytes\":3094415044,\"inFlow\":10391267,\"lastChangeTime\":\"107 days, 2:16:32.62\",\"lastInBytes\":3094415044,\"lastOutBytes\":1318636975,\"opticalBiasCurrent\":12163,\"opticalReceivePower\":154,\"opticalTemperature\":57,\"opticalTransmitPower\":262,\"opticalVoltage\":3340,\"outBytes\":1318636975,\"outFlow\":327086,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7505370,\"inBytes\":2844588285,\"inFlow\":7278166,\"lastChangeTime\":\"336 days, 13:20:47.51\",\"lastInBytes\":2844588285,\"lastOutBytes\":1169362386,\"opticalBiasCurrent\":11854,\"opticalReceivePower\":6,\"opticalTemperature\":57,\"opticalTransmitPower\":249,\"opticalVoltage\":3328,\"outBytes\":1169362386,\"outFlow\":227203,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3566815,\"inBytes\":2766533689,\"inFlow\":3453631,\"lastChangeTime\":\"36 days, 10:57:54.46\",\"lastInBytes\":2766533689,\"lastOutBytes\":3453527566,\"opticalBiasCurrent\":11383,\"opticalReceivePower\":182,\"opticalTemperature\":56,\"opticalTransmitPower\":242,\"opticalVoltage\":3340,\"outBytes\":3453527566,\"outFlow\":113183,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6973727,\"inBytes\":2649559689,\"inFlow\":6759394,\"lastChangeTime\":\"36 days, 10:09:23.60\",\"lastInBytes\":2649559689,\"lastOutBytes\":3848295838,\"opticalBiasCurrent\":11855,\"opticalReceivePower\":191,\"opticalTemperature\":58,\"opticalTransmitPower\":256,\"opticalVoltage\":3319,\"outBytes\":3848295838,\"outFlow\":214332,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9077226,\"inBytes\":1017834574,\"inFlow\":8783387,\"lastChangeTime\":\"29 days, 22:50:18.37\",\"lastInBytes\":1017834574,\"lastOutBytes\":1373068569,\"opticalBiasCurrent\":10706,\"opticalReceivePower\":152,\"opticalTemperature\":56,\"opticalTransmitPower\":243,\"opticalVoltage\":3340,\"outBytes\":1373068569,\"outFlow\":293839,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6222082,\"inBytes\":3563046928,\"inFlow\":6019473,\"lastChangeTime\":\"105 days, 1:47:19.24\",\"lastInBytes\":3563046928,\"lastOutBytes\":3483439326,\"opticalBiasCurrent\":11340,\"opticalReceivePower\":208,\"opticalTemperature\":58,\"opticalTransmitPower\":261,\"opticalVoltage\":3340,\"outBytes\":3483439326,\"outFlow\":202609,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9080322,\"inBytes\":118550667,\"inFlow\":8787088,\"lastChangeTime\":\"202 days, 23:12:07.11\",\"lastInBytes\":118550667,\"lastOutBytes\":3992430319,\"opticalBiasCurrent\":11413,\"opticalReceivePower\":151,\"opticalTemperature\":54,\"opticalTransmitPower\":256,\"opticalVoltage\":3315,\"outBytes\":3992430319,\"outFlow\":293233,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":551021,\"inBytes\":2021618394,\"inFlow\":532714,\"lastChangeTime\":\"106 days, 23:56:20.39\",\"lastInBytes\":2021618394,\"lastOutBytes\":1898610336,\"opticalBiasCurrent\":10902,\"opticalReceivePower\":154,\"opticalTemperature\":54,\"opticalTransmitPower\":257,\"opticalVoltage\":3332,\"outBytes\":1898610336,\"outFlow\":18307,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":549921,\"inBytes\":2940660245,\"inFlow\":531475,\"lastChangeTime\":\"203 days, 0:44:18.76\",\"lastInBytes\":2940660245,\"lastOutBytes\":1135940675,\"opticalBiasCurrent\":10920,\"opticalReceivePower\":36,\"opticalTemperature\":54,\"opticalTransmitPower\":261,\"opticalVoltage\":3319,\"outBytes\":1135940675,\"outFlow\":18446,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":549922,\"inBytes\":2902739543,\"inFlow\":531588,\"lastChangeTime\":\"152 days, 13:11:10.88\",\"lastInBytes\":2902739543,\"lastOutBytes\":2098459420,\"opticalBiasCurrent\":11934,\"opticalReceivePower\":304,\"opticalTemperature\":58,\"opticalTransmitPower\":260,\"opticalVoltage\":3332,\"outBytes\":2098459420,\"outFlow\":18333,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":549251,\"inBytes\":197458911,\"inFlow\":531071,\"lastChangeTime\":\"152 days, 13:22:30.05\",\"lastInBytes\":197458911,\"lastOutBytes\":2518259650,\"opticalBiasCurrent\":11541,\"opticalReceivePower\":32,\"opticalTemperature\":55,\"opticalTransmitPower\":248,\"opticalVoltage\":3319,\"outBytes\":2518259650,\"outFlow\":18179,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14093213,\"inBytes\":86072402,\"inFlow\":126844,\"lastChangeTime\":\"90 days, 0:35:18.56\",\"lastInBytes\":86072402,\"lastOutBytes\":1280226997,\"opticalBiasCurrent\":11350,\"opticalReceivePower\":135,\"opticalTemperature\":59,\"opticalTransmitPower\":257,\"opticalVoltage\":3312,\"outBytes\":1280226997,\"outFlow\":13966368,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11234,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":249,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11022,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":253,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11590,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":254,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11491,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":254,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11798,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":260,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11592,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":248,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11708,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":254,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":158464,\"inBytes\":1139718782,\"inFlow\":107255,\"lastChangeTime\":\"31 days, 4:47:31.60\",\"lastInBytes\":1139718782,\"lastOutBytes\":2984861892,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2984861892,\"outFlow\":51209,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":49368533,\"inBytes\":1669459537,\"inFlow\":22486472,\"lastChangeTime\":\"31 days, 4:47:33.16\",\"lastInBytes\":1669459537,\"lastOutBytes\":1149643310,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1149643310,\"outFlow\":26882060,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":284250,\"inBytes\":694681779,\"inFlow\":78038,\"lastChangeTime\":\"31 days, 4:38:36.87\",\"lastInBytes\":694681779,\"lastOutBytes\":355832387,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":355832387,\"outFlow\":206212,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":513,\"inBytes\":581177954,\"inFlow\":10,\"lastChangeTime\":\"31 days, 4:41:08.74\",\"lastInBytes\":581177954,\"lastOutBytes\":3403858939,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3403858939,\"outFlow\":503,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3322578,\"inBytes\":2052486405,\"inFlow\":65091,\"lastChangeTime\":\"124 days, 22:18:08.60\",\"lastInBytes\":2052486405,\"lastOutBytes\":2985620311,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2985620311,\"outFlow\":3257486,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1573091,\"inBytes\":3508788908,\"inFlow\":513731,\"lastChangeTime\":\"31 days, 4:47:23.04\",\"lastInBytes\":3508788908,\"lastOutBytes\":3014603957,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3014603957,\"outFlow\":1059359,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2821971,\"inBytes\":2729266086,\"inFlow\":1042197,\"lastChangeTime\":\"31 days, 4:39:34.98\",\"lastInBytes\":2729266086,\"lastOutBytes\":2025140843,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2025140843,\"outFlow\":1779773,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":24761379,\"inBytes\":1634003374,\"inFlow\":371247,\"lastChangeTime\":\"31 days, 4:39:57.34\",\"lastInBytes\":1634003374,\"lastOutBytes\":1193225489,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1193225489,\"outFlow\":24390132,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27958917,\"inBytes\":1242355389,\"inFlow\":519789,\"lastChangeTime\":\"31 days, 4:40:58.62\",\"lastInBytes\":1242355389,\"lastOutBytes\":925910590,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":925910590,\"outFlow\":27439127,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1215,\"inBytes\":2642986316,\"inFlow\":302,\"lastChangeTime\":\"31 days, 4:40:58.44\",\"lastInBytes\":2642986316,\"lastOutBytes\":4021178019,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4021178019,\"outFlow\":913,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":834,\"inBytes\":1709373176,\"inFlow\":200,\"lastChangeTime\":\"1 day, 9:56:19.34\",\"lastInBytes\":1709373176,\"lastOutBytes\":1783199662,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1783199662,\"outFlow\":633,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":527926,\"inBytes\":451947373,\"inFlow\":4093,\"lastChangeTime\":\"113 days, 2:03:08.49\",\"lastInBytes\":451947373,\"lastOutBytes\":2741049731,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2741049731,\"outFlow\":523832,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":450231,\"inFlow\":0,\"lastChangeTime\":\"202 days, 23:33:02.55\",\"lastInBytes\":450231,\"lastOutBytes\":2629526639,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2629526639,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2859163390,\"inFlow\":0,\"lastChangeTime\":\"64 days, 10:41:14.55\",\"lastInBytes\":2859163390,\"lastOutBytes\":331785705,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":331785705,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":160,\"inBytes\":38588353,\"inFlow\":139,\"lastChangeTime\":\"127 days, 6:01:23.51\",\"lastInBytes\":38588353,\"lastOutBytes\":6265590,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6265590,\"outFlow\":21,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":40,\"inBytes\":5221792,\"inFlow\":18,\"lastChangeTime\":\"127 days, 6:01:36.55\",\"lastInBytes\":5221792,\"lastOutBytes\":6238216,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6238216,\"outFlow\":21,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:51.634835000\"}}", + "lastDiagTime": "2026-02-02 14:39:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046460647612524", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:06", + "echoMap": {}, + "deviceId": "1024110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.175.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.97\",\"CPU使用率\":\"4.00\",\"系统运行时间\":\"95 days, 0:58:28.04\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10508852\",\"inErrors\":\"0\",\"inNUcastPkts\":\"27286374\",\"inOctets\":\"3757158941\",\"inUcastPkts\":\"1879820570\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"483 days, 19:17:28.55\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:9d:13\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3563000551\",\"outQLen\":\"0\",\"outUcastPkts\":\"1868763691\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.175.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:37:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1025": { + "ndmAlarmHost": [ + { + "id": "707150289229999838", + "createdBy": null, + "createdTime": "2025-12-08 13:47:26", + "updatedBy": null, + "updatedTime": "2025-12-22 13:19:12", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.177.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046628151345152", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060001", + "name": "[604](10)江体弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503048005025604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345153", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-12-22 11:18:12", + "echoMap": {}, + "deviceId": "1025060002", + "name": "[610](10)江体内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345154", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060003", + "name": "[605](10)江体弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503048005025605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345155", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060004", + "name": "[606](10)江体弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503048005025606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345156", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060005", + "name": "[602](10)江体编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503041005025602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345157", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060006", + "name": "[603](10)江体编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503041005025603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345158", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060007", + "name": "[607](10)江体弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503048005025607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345159", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060008", + "name": "[332](10)江体商场出入口1出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345160", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060009", + "name": "[331](10)江体商场出入口1出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345161", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060010", + "name": "[401](10)江体1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501005006025401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345162", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060011", + "name": "[202](10)江体厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501035004025202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345163", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060012", + "name": "[329](10)江体商场出入口1入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345164", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060013", + "name": "[330](10)江体商场出入口1入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345165", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060014", + "name": "[402](10)江体1#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501005006025402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345166", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060015", + "name": "[410](10)江体4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501008006025410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345167", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060016", + "name": "[502](10)江体票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501030006025502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345168", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060017", + "name": "[321](10)江体#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501045006025321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345169", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060018", + "name": "[341](10)江体安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501085006025341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345170", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060019", + "name": "[403](10)江体2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501006006025403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345171", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060020", + "name": "[404](10)江体2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501006006025404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345172", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060021", + "name": "[405](10)江体3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501007006025405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345173", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-12-22 11:26:12", + "echoMap": {}, + "deviceId": "1025060022", + "name": "[338](10)江体1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501036005025338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345174", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060023", + "name": "[327](10)江体B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345175", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060024", + "name": "[324](10)江体#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501045006025324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345176", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060025", + "name": "[501](10)江体客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501001005025501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345177", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060026", + "name": "[336](10)江体商场出入口2出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345178", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060027", + "name": "[335](10)江体商场出入口2出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345179", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060028", + "name": "[333](10)江体商场出入口2入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345180", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060029", + "name": "[334](10)江体商场出入口2入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345181", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060030", + "name": "[204](10)江体厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501035004025204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345182", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060031", + "name": "[317](10)江体3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501057006025317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345183", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060032", + "name": "[503](10)江体票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501030006025503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345184", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060033", + "name": "[318](10)江体3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501057005025318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345185", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060034", + "name": "[323](10)江体#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501045006025323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345186", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060035", + "name": "[322](10)江体#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501045006025322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345187", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060036", + "name": "[203](10)江体厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501035004025203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345188", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060037", + "name": "[407](10)江体3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501007006025407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345190", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060039", + "name": "[409](10)江体3#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501007006025409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345191", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060040", + "name": "[408](10)江体3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501007006025408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345192", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060041", + "name": "[316](10)江体2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501056006025316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345193", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060042", + "name": "[314](10)江体2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501056006025314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345194", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060043", + "name": "[315](10)江体2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501056006025315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345195", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060044", + "name": "[612](10)江体内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345196", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060045", + "name": "[609](10)江体环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503053005025609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345197", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060046", + "name": "[320](10)江体#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501045006025320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345198", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060047", + "name": "[319](10)江体#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501045006025319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345199", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060048", + "name": "[340](10)江体安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501085006025340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345200", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060049", + "name": "[601](10)江体车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503042004025601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345201", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060050", + "name": "[201](10)江体厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501035004025201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345202", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060051", + "name": "[412](10)江体4#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501008006025412", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345203", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060052", + "name": "[411](10)江体4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501008006025411", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345204", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060053", + "name": "[313](10)江体1#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345205", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060054", + "name": "[328](10)江体B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501040006025328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345206", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060055", + "name": "[339](10)江体2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501036005025339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345207", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060056", + "name": "[312](10)江体1#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345208", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060057", + "name": "[302](10)江体1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345209", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060058", + "name": "[309](10)江体1#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345210", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060059", + "name": "[304](10)江体1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345211", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060060", + "name": "[310](10)江体1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345212", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060061", + "name": "[209](10)江体1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055004025209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345213", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060062", + "name": "[305](10)江体1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345214", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060063", + "name": "[308](10)江体1#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345215", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060064", + "name": "[311](10)江体1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345216", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060065", + "name": "[303](10)江体1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345217", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060066", + "name": "[301](10)江体1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345218", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060067", + "name": "[307](10)江体1#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345219", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060068", + "name": "[306](10)江体1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501055006025306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345220", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060069", + "name": "[108](10)江体下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502012006025108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345221", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060070", + "name": "[107](10)江体下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502012006025107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345222", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060071", + "name": "[207](10)江体下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502001004025207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345223", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060072", + "name": "[326](10)江体#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502017006025326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345224", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060073", + "name": "[105](10)江体上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502007006025105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345225", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1025060074", + "name": "[106](10)江体上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502007006025106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345226", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060075", + "name": "[110](10)江体下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502012006025110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345227", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060076", + "name": "[109](10)江体下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502012006025109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345228", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060077", + "name": "[337](10)江体B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502002006025337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345229", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060078", + "name": "[208](10)江体下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502001004025208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345230", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060079", + "name": "[206](10)江体上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502001004025206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345231", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060080", + "name": "[103](10)江体上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502007006025103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345232", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060081", + "name": "[104](10)江体上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502007006025104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345233", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1025060082", + "name": "[111](10)江体下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502012006025111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345234", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060083", + "name": "[112](10)江体下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502012006025112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345235", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060084", + "name": "[706](10)江体9#-13#交叉渡线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345236", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060085", + "name": "[613](10)江体内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503021006025613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345237", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060086", + "name": "[205](10)江体上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502001004025205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345238", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060087", + "name": "[325](10)江体#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502017006025325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345239", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060088", + "name": "[608](10)江体屏蔽门控制室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503048005025608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345240", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1025060089", + "name": "[102](10)江体上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502007006025102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345241", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-12-24 19:41:15", + "echoMap": {}, + "deviceId": "1025060090", + "name": "[101](10)江体上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502007006025101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345242", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060091", + "name": "[713](10)江体下行存车线1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504009006025713", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345243", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060092", + "name": "[714](10)江体下行存车线2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504009006025714", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345244", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060093", + "name": "[711](10)江体上行存车线1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504008006025711", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345245", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060094", + "name": "[712](10)江体上行存车线2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504008006025712", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345246", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060095", + "name": "[705](10)江体15#-11#交叉渡线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345247", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060096", + "name": "[704](10)江体7#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345248", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060097", + "name": "[703](10)江体3#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345249", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1025060098", + "name": "[701](10)江体1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345250", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060099", + "name": "[710](10)江体上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025710", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345251", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060100", + "name": "[709](10)江体下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025709", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345252", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060101", + "name": "[702](10)江体5#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345253", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060102", + "name": "[616](10)江体变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345254", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060103", + "name": "[617](10)江体变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345255", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060104", + "name": "[614](10)江体消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345256", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1025060105", + "name": "[611](10)江体内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.177.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345257", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060106", + "name": "[615](10)江体消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001006025615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345258", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060107", + "name": "[708](10)江体19#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345259", + "createdBy": "0", + "createdTime": "2025-02-28 13:47:55", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060108", + "name": "[707](10)江体17#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670131", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060109", + "name": "[344](10)江体交通枢纽3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501086006025344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670132", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1025060110", + "name": "[343](10)江体交通枢纽2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501086006025343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670133", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060111", + "name": "[413](10)江体4#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501008006025413", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670134", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060112", + "name": "[342](10)江体交通枢纽1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501086006025342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670135", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060113", + "name": "[210](10)江体厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501035004025210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670136", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1025060114", + "name": "[618](10)江体气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503067005025618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670137", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060115", + "name": "[717](10)江体13#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025717", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670138", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060116", + "name": "[345](10)江体2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062501013004025345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670139", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060117", + "name": "[715](10)江体11#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025711", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670140", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060118", + "name": "[716](10)江体15#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025712", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670141", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060119", + "name": "[619](10)江体消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503068005025619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670142", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060120", + "name": "[621](10)江体通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503048005025621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670143", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060121", + "name": "[622](10)江体内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503001005025622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670144", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1025060122", + "name": "[620](10)江体气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062503067005025620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410611540670145", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1025060123", + "name": "[718](10)江体9#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062504013006025718", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702331224254734280", + "createdBy": null, + "createdTime": "2025-11-23 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-23 00:00:00", + "echoMap": {}, + "deviceId": "1025060124", + "name": "[713](10)江体站台厕所通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.178.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062502013005025713", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046628151345297", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.177.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062500000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112729\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3432311396\",\"inUcastPkts\":\"958031719\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ed:f8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"896797305\",\"outQLen\":\"0\",\"outUcastPkts\":\"407686418\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.177.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:15\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZ50B80\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046628151345300", + "createdBy": "2", + "createdTime": "2025-02-28 13:49:09", + "updatedBy": null, + "updatedTime": "2025-12-23 10:27:43", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.177.51", + "manageUrl": "http:\\\\10.18.177.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345301", + "createdBy": "2", + "createdTime": "2025-02-28 13:49:28", + "updatedBy": null, + "updatedTime": "2025-12-23 10:27:38", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.177.52", + "manageUrl": "http:\\\\10.18.177.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046628151345299", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.177.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.86\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"493 days, 3:32:51.38\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"8662062\",\"inErrors\":\"0\",\"inNUcastPkts\":\"22725278\",\"inOctets\":\"1959572142\",\"inUcastPkts\":\"1586773540\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a7:ef\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3096570853\",\"outQLen\":\"0\",\"outUcastPkts\":\"1554991832\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.177.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046628151345261", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-04-11 14:14:40", + "echoMap": {}, + "deviceId": "1025050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.177.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062500000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.177.22;10.18.177.23" + }, + { + "id": "585046628151345262", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.177.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062500000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13243439\",\"inErrors\":\"0\",\"inNUcastPkts\":\"23297253\",\"inOctets\":\"2742385848\",\"inUcastPkts\":\"3552165554\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:71:13\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2316243547\",\"outQLen\":\"0\",\"outUcastPkts\":\"4048722650\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3270\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3230\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.177.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:16\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":844787528,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17722\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.177.22" + }, + { + "id": "585046628151345263", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1025050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.177.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062500000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"13242864\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29501251\",\"inOctets\":\"2006664548\",\"inUcastPkts\":\"3504016703\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:6e:a3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"348583303\",\"outQLen\":\"0\",\"outUcastPkts\":\"3202592918\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3230\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3230\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.177.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:36:17\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":844787528,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17723\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"60\",\"CPU使用率\":\"17\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.177.23" + } + ], + "ndmSecurityBox": [ + { + "id": "585046628151345281", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7811270\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"434796210\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7811275\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:77\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.231,\"status\":1,\"voltage\":26.064001},{\"current\":0.245,\"status\":1,\"voltage\":26.064001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.064001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.064001},{\"current\":0.21700001,\"status\":1,\"voltage\":26.064001},{\"current\":0.22900002,\"status\":1,\"voltage\":26.064001},{\"current\":0.22100002,\"status\":1,\"voltage\":26.064001},{\"current\":0.21700001,\"status\":1,\"voltage\":26.064001},{\"current\":0.21800001,\"status\":1,\"voltage\":26.064001},{\"current\":0.001,\"status\":1,\"voltage\":26.164001},{\"current\":0.003,\"status\":1,\"voltage\":26.164001},{\"current\":0.001,\"status\":1,\"voltage\":26.164001},{\"current\":0.001,\"status\":1,\"voltage\":26.164001},{\"current\":0.001,\"status\":1,\"voltage\":26.164001},{\"current\":0.001,\"status\":1,\"voltage\":26.164001},{\"current\":0.001,\"status\":1,\"voltage\":26.164001}],\"fanSpeeds\":[3360,3360],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":29}],\"stCommonInfo\":{\"设备ID\":\"0022512208302098\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345282", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7603678\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"423153639\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7603683\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:00\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.31100002,\"status\":1,\"voltage\":26.525002},{\"current\":0.31800002,\"status\":1,\"voltage\":26.525002},{\"current\":0.32700002,\"status\":1,\"voltage\":26.525002},{\"current\":0.537,\"status\":1,\"voltage\":26.525002},{\"current\":0.30900002,\"status\":1,\"voltage\":26.525002},{\"current\":0.312,\"status\":1,\"voltage\":26.525002},{\"current\":0.323,\"status\":1,\"voltage\":26.525002},{\"current\":0.312,\"status\":1,\"voltage\":26.525002},{\"current\":0.25,\"status\":1,\"voltage\":26.525002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.309002},{\"current\":0.003,\"status\":1,\"voltage\":26.309002},{\"current\":0.321,\"status\":1,\"voltage\":26.309002},{\"current\":0.001,\"status\":1,\"voltage\":26.309002},{\"current\":0.001,\"status\":1,\"voltage\":26.309002},{\"current\":0.001,\"status\":1,\"voltage\":26.309002},{\"current\":0.001,\"status\":1,\"voltage\":26.309002}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302213\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345283", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7599602\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"422926196\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7599607\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:3e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.289,\"status\":1,\"voltage\":26.130001},{\"current\":0.333,\"status\":1,\"voltage\":26.130001},{\"current\":0.32900003,\"status\":1,\"voltage\":26.130001},{\"current\":0.294,\"status\":1,\"voltage\":26.130001},{\"current\":0.41500002,\"status\":1,\"voltage\":26.130001},{\"current\":0.25,\"status\":1,\"voltage\":26.130001},{\"current\":0.256,\"status\":1,\"voltage\":26.130001},{\"current\":0.256,\"status\":1,\"voltage\":26.130001},{\"current\":0.517,\"status\":1,\"voltage\":26.130001},{\"current\":0.0,\"status\":1,\"voltage\":26.131},{\"current\":0.003,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131},{\"current\":0.001,\"status\":1,\"voltage\":26.131}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302045\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345284", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1025030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7598282\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"422853248\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7598287\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:9e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.31,\"status\":1,\"voltage\":26.761002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.761002},{\"current\":0.294,\"status\":1,\"voltage\":26.761002},{\"current\":0.31300002,\"status\":1,\"voltage\":26.761002},{\"current\":0.54300004,\"status\":1,\"voltage\":26.761002},{\"current\":0.298,\"status\":1,\"voltage\":26.761002},{\"current\":0.246,\"status\":1,\"voltage\":26.761002},{\"current\":0.21300001,\"status\":1,\"voltage\":26.761002},{\"current\":0.001,\"status\":1,\"voltage\":26.761002},{\"current\":0.001,\"status\":1,\"voltage\":26.951002},{\"current\":0.003,\"status\":1,\"voltage\":26.951002},{\"current\":0.001,\"status\":1,\"voltage\":26.951002},{\"current\":0.001,\"status\":1,\"voltage\":26.951002},{\"current\":0.001,\"status\":1,\"voltage\":26.951002},{\"current\":0.001,\"status\":1,\"voltage\":26.951002},{\"current\":0.001,\"status\":1,\"voltage\":26.951002}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208301938\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345286", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1025030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6838896\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380270613\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6838901\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:b9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23700002,\"status\":1,\"voltage\":26.774002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.774002},{\"current\":0.51100004,\"status\":1,\"voltage\":26.774002},{\"current\":0.001,\"status\":1,\"voltage\":26.774002},{\"current\":0.319,\"status\":1,\"voltage\":26.774002},{\"current\":0.312,\"status\":1,\"voltage\":26.774002},{\"current\":0.31500003,\"status\":1,\"voltage\":26.774002},{\"current\":0.279,\"status\":1,\"voltage\":26.774002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.774002},{\"current\":0.31500003,\"status\":1,\"voltage\":26.655},{\"current\":0.002,\"status\":1,\"voltage\":26.655},{\"current\":0.26000002,\"status\":1,\"voltage\":26.655},{\"current\":0.21100001,\"status\":1,\"voltage\":26.655},{\"current\":0.21400002,\"status\":1,\"voltage\":26.655},{\"current\":0.504,\"status\":1,\"voltage\":26.655},{\"current\":0.001,\"status\":1,\"voltage\":26.655}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0022512208302222\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345287", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1025030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6837085\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380169547\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6837090\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:6f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":26.394001},{\"current\":0.252,\"status\":1,\"voltage\":26.394001},{\"current\":0.28300002,\"status\":1,\"voltage\":26.394001},{\"current\":0.53300005,\"status\":1,\"voltage\":26.394001},{\"current\":0.531,\"status\":1,\"voltage\":26.394001},{\"current\":0.337,\"status\":1,\"voltage\":26.394001},{\"current\":0.321,\"status\":1,\"voltage\":26.394001},{\"current\":0.30800003,\"status\":1,\"voltage\":26.394001},{\"current\":0.24000001,\"status\":1,\"voltage\":26.394001},{\"current\":0.215,\"status\":1,\"voltage\":26.166},{\"current\":0.002,\"status\":1,\"voltage\":26.166},{\"current\":0.43500003,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166},{\"current\":0.001,\"status\":1,\"voltage\":26.166}],\"fanSpeeds\":[0,0],\"humidity\":39,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302122\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345288", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1025030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6838857\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380265674\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6838862\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:e9\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.263,\"status\":1,\"voltage\":26.910002},{\"current\":0.30200002,\"status\":1,\"voltage\":26.910002},{\"current\":0.22600001,\"status\":1,\"voltage\":26.910002},{\"current\":0.23,\"status\":1,\"voltage\":26.910002},{\"current\":0.507,\"status\":1,\"voltage\":26.910002},{\"current\":0.22000001,\"status\":1,\"voltage\":26.910002},{\"current\":0.23700002,\"status\":1,\"voltage\":26.910002},{\"current\":0.231,\"status\":1,\"voltage\":26.910002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.910002},{\"current\":0.261,\"status\":1,\"voltage\":27.151001},{\"current\":0.003,\"status\":1,\"voltage\":27.151001},{\"current\":0.24200001,\"status\":1,\"voltage\":27.151001},{\"current\":0.238,\"status\":1,\"voltage\":27.151001},{\"current\":0.24300002,\"status\":1,\"voltage\":27.151001},{\"current\":0.28500003,\"status\":1,\"voltage\":27.151001},{\"current\":0.23900001,\"status\":1,\"voltage\":27.151001}],\"fanSpeeds\":[0,0],\"humidity\":41,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0022512208301937\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345289", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:18", + "echoMap": {}, + "deviceId": "1025030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6838857\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380268633\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6838862\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:b1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24900001,\"status\":1,\"voltage\":26.499},{\"current\":0.246,\"status\":1,\"voltage\":26.499},{\"current\":0.53300005,\"status\":1,\"voltage\":26.499},{\"current\":0.246,\"status\":1,\"voltage\":26.499},{\"current\":0.26700002,\"status\":1,\"voltage\":26.499},{\"current\":0.256,\"status\":1,\"voltage\":26.499},{\"current\":0.001,\"status\":1,\"voltage\":26.499},{\"current\":0.001,\"status\":1,\"voltage\":26.499},{\"current\":0.001,\"status\":1,\"voltage\":26.499},{\"current\":0.001,\"status\":1,\"voltage\":26.354002},{\"current\":0.003,\"status\":1,\"voltage\":26.354002},{\"current\":0.001,\"status\":1,\"voltage\":26.354002},{\"current\":0.001,\"status\":1,\"voltage\":26.354002},{\"current\":0.001,\"status\":1,\"voltage\":26.354002},{\"current\":0.001,\"status\":1,\"voltage\":26.354002},{\"current\":0.001,\"status\":1,\"voltage\":26.354002}],\"fanSpeeds\":[1410,1410],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208304529\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345290", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:18", + "echoMap": {}, + "deviceId": "1025030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6838857\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380267770\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6838862\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:28:7a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25100002,\"status\":1,\"voltage\":26.504002},{\"current\":0.25500003,\"status\":1,\"voltage\":26.504002},{\"current\":0.231,\"status\":1,\"voltage\":26.504002},{\"current\":0.546,\"status\":1,\"voltage\":26.504002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.504002},{\"current\":0.509,\"status\":1,\"voltage\":26.504002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.504002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.504002},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.003,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001},{\"current\":0.001,\"status\":1,\"voltage\":26.182001}],\"fanSpeeds\":[0,0],\"humidity\":36,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302361\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345291", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1025030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6838857\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"380266345\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6838862\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:ac\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.33400002,\"status\":1,\"voltage\":26.428001},{\"current\":0.246,\"status\":1,\"voltage\":26.428001},{\"current\":0.001,\"status\":1,\"voltage\":26.428001},{\"current\":0.22000001,\"status\":1,\"voltage\":26.428001},{\"current\":0.522,\"status\":1,\"voltage\":26.428001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.428001},{\"current\":0.21300001,\"status\":1,\"voltage\":26.428001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.428001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.428001},{\"current\":0.001,\"status\":1,\"voltage\":26.966002},{\"current\":0.002,\"status\":1,\"voltage\":26.966002},{\"current\":0.001,\"status\":1,\"voltage\":26.966002},{\"current\":0.001,\"status\":1,\"voltage\":26.966002},{\"current\":0.001,\"status\":1,\"voltage\":26.966002},{\"current\":0.0,\"status\":1,\"voltage\":26.966002},{\"current\":0.0,\"status\":1,\"voltage\":26.966002}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208304524\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345292", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1025030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6659720\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"370224261\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 20:02:49.87\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6659725\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:48\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.088001},{\"current\":0.001,\"status\":1,\"voltage\":27.088001},{\"current\":0.26900002,\"status\":1,\"voltage\":27.088001},{\"current\":0.26700002,\"status\":1,\"voltage\":27.088001},{\"current\":0.264,\"status\":1,\"voltage\":27.088001},{\"current\":0.337,\"status\":1,\"voltage\":27.088001},{\"current\":0.21000001,\"status\":1,\"voltage\":27.088001},{\"current\":0.22800002,\"status\":1,\"voltage\":27.088001},{\"current\":0.22000001,\"status\":1,\"voltage\":27.088001},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303400\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345293", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1025030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4489701\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"248534248\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:45:46.85\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4489706\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:de\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.038002},{\"current\":0.001,\"status\":1,\"voltage\":27.038002},{\"current\":0.272,\"status\":1,\"voltage\":27.038002},{\"current\":0.24900001,\"status\":1,\"voltage\":27.038002},{\"current\":0.0,\"status\":1,\"voltage\":27.038002},{\"current\":0.0,\"status\":1,\"voltage\":27.038002},{\"current\":0.0,\"status\":1,\"voltage\":27.038002},{\"current\":0.0,\"status\":1,\"voltage\":27.038002},{\"current\":0.0,\"status\":1,\"voltage\":27.038002},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303550\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345294", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1025030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4489701\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"248536176\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1 day, 20:00:56.08\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4489706\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:c6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.145},{\"current\":0.001,\"status\":1,\"voltage\":27.145},{\"current\":0.25500003,\"status\":1,\"voltage\":27.145},{\"current\":0.282,\"status\":1,\"voltage\":27.145},{\"current\":0.0,\"status\":1,\"voltage\":27.145},{\"current\":0.0,\"status\":1,\"voltage\":27.145},{\"current\":0.0,\"status\":1,\"voltage\":27.145},{\"current\":0.0,\"status\":1,\"voltage\":27.145},{\"current\":0.0,\"status\":1,\"voltage\":27.145},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301925\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345295", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:28", + "echoMap": {}, + "deviceId": "1025030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046628151345296", + "createdBy": "0", + "createdTime": "2025-02-28 13:48:18", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:28", + "echoMap": {}, + "deviceId": "1025030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.178.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6830276\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"379786510\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6830281\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:ff\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.279,\"status\":1,\"voltage\":25.019001},{\"current\":0.25800002,\"status\":1,\"voltage\":25.019001},{\"current\":0.351,\"status\":1,\"voltage\":25.019001},{\"current\":0.28500003,\"status\":1,\"voltage\":25.019001},{\"current\":0.23300001,\"status\":1,\"voltage\":25.019001},{\"current\":0.24100001,\"status\":1,\"voltage\":25.019001},{\"current\":0.28800002,\"status\":1,\"voltage\":25.019001},{\"current\":0.23500001,\"status\":1,\"voltage\":25.019001},{\"current\":0.23400001,\"status\":1,\"voltage\":25.019001},{\"current\":0.231,\"status\":1,\"voltage\":26.071001},{\"current\":0.002,\"status\":0,\"voltage\":26.071001},{\"current\":0.001,\"status\":0,\"voltage\":26.071001},{\"current\":0.25,\"status\":1,\"voltage\":26.071001},{\"current\":0.001,\"status\":1,\"voltage\":26.071001},{\"current\":0.001,\"status\":1,\"voltage\":26.071001},{\"current\":0.001,\"status\":1,\"voltage\":26.071001}],\"fanSpeeds\":[3630,3570],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":31}],\"stCommonInfo\":{\"设备ID\":\"0001512208304607\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389581802398922", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "deviceId": "1025040017", + "name": "H3C前端交换机16", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1415667\",\"inUnknownProtos\":\"2080409697\",\"index\":\"635\",\"lastChange\":\"0:01:20.07\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:5b:8b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3360057169\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"41866917\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.146\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":419200,\"inBytes\":3259357719,\"inFlow\":408886,\"lastChangeTime\":\"114 days, 23:36:36.22\",\"lastInBytes\":3259357719,\"lastOutBytes\":121304618,\"outBytes\":121304618,\"outFlow\":10313,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":909256,\"inBytes\":2586944886,\"inFlow\":886942,\"lastChangeTime\":\"114 days, 23:36:38.00\",\"lastInBytes\":2586944886,\"lastOutBytes\":2433698284,\"outBytes\":2433698284,\"outFlow\":22313,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":419153,\"inBytes\":4284446490,\"inFlow\":408707,\"lastChangeTime\":\"114 days, 23:36:39.03\",\"lastInBytes\":4284446490,\"lastOutBytes\":3838530716,\"outBytes\":3838530716,\"outFlow\":10446,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":777978,\"inBytes\":544266545,\"inFlow\":758870,\"lastChangeTime\":\"114 days, 23:36:35.88\",\"lastInBytes\":544266545,\"lastOutBytes\":359163753,\"outBytes\":359163753,\"outFlow\":19108,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":419098,\"inBytes\":4119823633,\"inFlow\":408892,\"lastChangeTime\":\"114 days, 23:36:36.18\",\"lastInBytes\":4119823633,\"lastOutBytes\":523815156,\"outBytes\":523815156,\"outFlow\":10206,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":419819,\"inBytes\":455417810,\"inFlow\":409673,\"lastChangeTime\":\"416 days, 0:07:34.73\",\"lastInBytes\":455417810,\"lastOutBytes\":2080409697,\"outBytes\":2080409697,\"outFlow\":10145,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419611,\"inBytes\":3235113634,\"inFlow\":409542,\"lastChangeTime\":\"416 days, 0:02:14.24\",\"lastInBytes\":3235113634,\"lastOutBytes\":1580971334,\"outBytes\":1580971334,\"outFlow\":10068,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":279735,\"inBytes\":2610601233,\"inFlow\":272917,\"lastChangeTime\":\"114 days, 23:36:52.08\",\"lastInBytes\":2610601233,\"lastOutBytes\":1780891033,\"outBytes\":1780891033,\"outFlow\":6817,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1842463,\"inBytes\":625511154,\"inFlow\":1799128,\"lastChangeTime\":\"348 days, 8:00:28.53\",\"lastInBytes\":625511154,\"lastOutBytes\":3948017036,\"outBytes\":3948017036,\"outFlow\":43335,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":279641,\"inBytes\":3841194332,\"inFlow\":272758,\"lastChangeTime\":\"114 days, 23:36:47.99\",\"lastInBytes\":3841194332,\"lastOutBytes\":1370317829,\"outBytes\":1370317829,\"outFlow\":6883,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":423749,\"inBytes\":977812389,\"inFlow\":413797,\"lastChangeTime\":\"357 days, 23:02:27.95\",\"lastInBytes\":977812389,\"lastOutBytes\":2003615673,\"outBytes\":2003615673,\"outFlow\":9951,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":387173,\"inBytes\":2702090144,\"inFlow\":378025,\"lastChangeTime\":\"415 days, 22:42:46.47\",\"lastInBytes\":2702090144,\"lastOutBytes\":4263062030,\"outBytes\":4263062030,\"outFlow\":9148,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":906112,\"inFlow\":0,\"lastChangeTime\":\"357 days, 23:12:07.49\",\"lastInBytes\":906112,\"lastOutBytes\":69176810,\"outBytes\":69176810,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":336,\"inBytes\":713676795,\"inFlow\":125,\"lastChangeTime\":\"348 days, 8:03:11.92\",\"lastInBytes\":713676795,\"lastOutBytes\":1276844446,\"outBytes\":1276844446,\"outFlow\":210,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7058378,\"inBytes\":4230475147,\"inFlow\":177872,\"lastChangeTime\":\"437 days, 0:50:50.08\",\"lastInBytes\":4230475147,\"lastOutBytes\":233599727,\"outBytes\":233599727,\"outFlow\":6880505,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:59.238371000\"}}", + "lastDiagTime": "2026-02-02 14:38:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398923", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:41", + "echoMap": {}, + "deviceId": "1025040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif178\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"50 days, 9:11:07.25\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:bc\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:41\",\"info\":{\"portInfoList\":[{\"flow\":409242,\"inBytes\":1113647741,\"inFlow\":399655,\"lastChangeTime\":\"401 days, 0:39:21.97\",\"lastInBytes\":1113647741,\"lastOutBytes\":863911753,\"outBytes\":863911753,\"outFlow\":9586,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":406551,\"inBytes\":3903875895,\"inFlow\":396854,\"lastChangeTime\":\"401 days, 0:30:04.41\",\"lastInBytes\":3903875895,\"lastOutBytes\":299220496,\"outBytes\":299220496,\"outFlow\":9697,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":259,\"inBytes\":834,\"inFlow\":0,\"lastChangeTime\":\"1 day, 23:55:23.14\",\"lastInBytes\":834,\"lastOutBytes\":165963386,\"outBytes\":165963386,\"outFlow\":259,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":820494,\"inBytes\":2173854882,\"inFlow\":20542,\"lastChangeTime\":\"2 days, 0:22:53.79\",\"lastInBytes\":2173854882,\"lastOutBytes\":3626308948,\"outBytes\":3626308948,\"outFlow\":799952,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:07.850177000\"}}", + "lastDiagTime": "2026-02-02 14:37:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398924", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:58", + "echoMap": {}, + "deviceId": "1025040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif178\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"50 days, 9:35:58.22\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:58\",\"info\":{\"portInfoList\":[{\"flow\":407086,\"inBytes\":1909322263,\"inFlow\":397695,\"lastChangeTime\":\"92 days, 22:49:26.16\",\"lastInBytes\":1909322263,\"lastOutBytes\":3166029508,\"outBytes\":3166029508,\"outFlow\":9390,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":406834,\"inBytes\":1489869063,\"inFlow\":397518,\"lastChangeTime\":\"92 days, 22:49:29.21\",\"lastInBytes\":1489869063,\"lastOutBytes\":846385029,\"outBytes\":846385029,\"outFlow\":9315,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":492,\"inFlow\":0,\"lastChangeTime\":\"421 days, 22:25:59.21\",\"lastInBytes\":492,\"lastOutBytes\":1674770482,\"outBytes\":1674770482,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":2},{\"flow\":89,\"inBytes\":445098783,\"inFlow\":1,\"lastChangeTime\":\"421 days, 22:26:05.11\",\"lastInBytes\":445098783,\"lastOutBytes\":1388853053,\"outBytes\":1388853053,\"outFlow\":87,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":819681,\"inBytes\":4092464604,\"inFlow\":19995,\"lastChangeTime\":\"50 days, 9:28:50.87\",\"lastInBytes\":4092464604,\"lastOutBytes\":646631037,\"outBytes\":646631037,\"outFlow\":799685,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:12.023751000\"}}", + "lastDiagTime": "2026-02-02 14:37:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398925", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:50", + "echoMap": {}, + "deviceId": "1025040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif178\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"48 days, 9:45:38.44\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:da\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:50\",\"info\":{\"portInfoList\":[{\"flow\":406437,\"inBytes\":3845010698,\"inFlow\":396994,\"lastChangeTime\":\"419 days, 22:38:52.30\",\"lastInBytes\":3845010698,\"lastOutBytes\":2131717632,\"outBytes\":2131717632,\"outFlow\":9443,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":410835,\"inBytes\":247886405,\"inFlow\":401305,\"lastChangeTime\":\"419 days, 23:26:45.43\",\"lastInBytes\":247886405,\"lastOutBytes\":528371123,\"outBytes\":528371123,\"outFlow\":9529,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":492,\"inFlow\":0,\"lastChangeTime\":\"419 days, 22:34:29.78\",\"lastInBytes\":492,\"lastOutBytes\":1668546400,\"outBytes\":1668546400,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":445166790,\"inFlow\":1,\"lastChangeTime\":\"419 days, 22:42:24.64\",\"lastInBytes\":445166790,\"lastOutBytes\":1563240816,\"outBytes\":1563240816,\"outFlow\":92,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":818862,\"inBytes\":105354455,\"inFlow\":20242,\"lastChangeTime\":\"48 days, 9:36:02.01\",\"lastInBytes\":105354455,\"lastOutBytes\":1760682653,\"outBytes\":1760682653,\"outFlow\":798619,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:10.022690000\"}}", + "lastDiagTime": "2026-02-02 14:37:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398926", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:54", + "echoMap": {}, + "deviceId": "1025040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif178\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"50 days, 9:42:16.61\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:25\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:53\",\"info\":{\"portInfoList\":[{\"flow\":885787,\"inBytes\":2602864588,\"inFlow\":864900,\"lastChangeTime\":\"439 days, 23:06:49.89\",\"lastInBytes\":2602864588,\"lastOutBytes\":2319078395,\"outBytes\":2319078395,\"outFlow\":20886,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":884366,\"inBytes\":4277337761,\"inFlow\":863808,\"lastChangeTime\":\"439 days, 23:07:10.64\",\"lastInBytes\":4277337761,\"lastOutBytes\":860383679,\"outBytes\":860383679,\"outFlow\":20558,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407863,\"inBytes\":2138757447,\"inFlow\":398405,\"lastChangeTime\":\"439 days, 23:06:48.99\",\"lastInBytes\":2138757447,\"lastOutBytes\":1965065138,\"outBytes\":1965065138,\"outFlow\":9458,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":407525,\"inBytes\":3343607746,\"inFlow\":398045,\"lastChangeTime\":\"439 days, 23:06:57.67\",\"lastInBytes\":3343607746,\"lastOutBytes\":3585244216,\"outBytes\":3585244216,\"outFlow\":9479,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":408986,\"inBytes\":2690115875,\"inFlow\":399544,\"lastChangeTime\":\"400 days, 22:34:35.47\",\"lastInBytes\":2690115875,\"lastOutBytes\":3953245726,\"outBytes\":3953245726,\"outFlow\":9442,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":820463,\"inBytes\":4268748644,\"inFlow\":802179,\"lastChangeTime\":\"421 days, 23:51:08.86\",\"lastInBytes\":4268748644,\"lastOutBytes\":2814292717,\"outBytes\":2814292717,\"outFlow\":18284,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":826974,\"inBytes\":666383625,\"inFlow\":808870,\"lastChangeTime\":\"421 days, 22:14:30.52\",\"lastInBytes\":666383625,\"lastOutBytes\":3389434370,\"outBytes\":3389434370,\"outFlow\":18103,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":93,\"inBytes\":664406368,\"inFlow\":1,\"lastChangeTime\":\"421 days, 22:14:33.33\",\"lastInBytes\":664406368,\"lastOutBytes\":4171164399,\"outBytes\":4171164399,\"outFlow\":92,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4665267,\"inBytes\":3979301446,\"inFlow\":111799,\"lastChangeTime\":\"50 days, 9:36:54.25\",\"lastInBytes\":3979301446,\"lastOutBytes\":3065475708,\"outBytes\":3065475708,\"outFlow\":4553467,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:10.465291000\"}}", + "lastDiagTime": "2026-02-02 14:37:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398927", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "deviceId": "1025040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681411\",\"inUnknownProtos\":\"741989812\",\"index\":\"634\",\"lastChange\":\"0:02:00.16\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:e0:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1938514866\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368416707\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:02\",\"info\":{\"portInfoList\":[{\"flow\":845822,\"inBytes\":3742248096,\"inFlow\":824431,\"lastChangeTime\":\"454 days, 23:39:47.24\",\"lastInBytes\":3742248096,\"lastOutBytes\":3199060966,\"outBytes\":3199060966,\"outFlow\":21390,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":844821,\"inBytes\":1371983288,\"inFlow\":823328,\"lastChangeTime\":\"454 days, 23:39:59.20\",\"lastInBytes\":1371983288,\"lastOutBytes\":3374413654,\"outBytes\":3374413654,\"outFlow\":21493,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":388893,\"inBytes\":3827805430,\"inFlow\":379401,\"lastChangeTime\":\"17 days, 0:27:36.28\",\"lastInBytes\":3827805430,\"lastOutBytes\":882708878,\"outBytes\":882708878,\"outFlow\":9492,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":973442,\"inBytes\":3393385610,\"inFlow\":950348,\"lastChangeTime\":\"386 days, 19:30:47.93\",\"lastInBytes\":3393385610,\"lastOutBytes\":741740594,\"outBytes\":741740594,\"outFlow\":23094,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":844859,\"inBytes\":2256553919,\"inFlow\":824133,\"lastChangeTime\":\"15 days, 0:59:12.98\",\"lastInBytes\":2256553919,\"lastOutBytes\":1740935180,\"outBytes\":1740935180,\"outFlow\":20725,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":261616,\"inBytes\":1784407905,\"inFlow\":255046,\"lastChangeTime\":\"98 days, 10:01:23.62\",\"lastInBytes\":1784407905,\"lastOutBytes\":3869106692,\"outBytes\":3869106692,\"outFlow\":6570,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":841704,\"inBytes\":3640797405,\"inFlow\":820601,\"lastChangeTime\":\"454 days, 23:40:00.37\",\"lastInBytes\":3640797405,\"lastOutBytes\":4213665878,\"outBytes\":4213665878,\"outFlow\":21103,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":906122,\"inBytes\":924592543,\"inFlow\":883612,\"lastChangeTime\":\"492 days, 3:38:48.40\",\"lastInBytes\":924592543,\"lastOutBytes\":3352683489,\"outBytes\":3352683489,\"outFlow\":22510,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":333,\"inBytes\":711916140,\"inFlow\":125,\"lastChangeTime\":\"0:02:00.15\",\"lastInBytes\":711916140,\"lastOutBytes\":1127258527,\"outBytes\":1127258527,\"outFlow\":208,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.27\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6325898,\"inBytes\":3053037778,\"inFlow\":163163,\"lastChangeTime\":\"0:02:28.12\",\"lastInBytes\":3053037778,\"lastOutBytes\":2018666873,\"outBytes\":2018666873,\"outFlow\":6162734,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.270380000\"}}", + "lastDiagTime": "2026-02-02 14:38:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398928", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1025040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681400\",\"inUnknownProtos\":\"2769880498\",\"index\":\"634\",\"lastChange\":\"0:01:26.91\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:e7:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1409419568\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368486674\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":905857,\"inBytes\":200871187,\"inFlow\":882699,\"lastChangeTime\":\"454 days, 23:38:11.27\",\"lastInBytes\":200871187,\"lastOutBytes\":752534914,\"outBytes\":752534914,\"outFlow\":23158,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":912108,\"inBytes\":3379500164,\"inFlow\":889160,\"lastChangeTime\":\"454 days, 23:38:19.62\",\"lastInBytes\":3379500164,\"lastOutBytes\":807417970,\"outBytes\":807417970,\"outFlow\":22947,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":909025,\"inBytes\":3685997289,\"inFlow\":886655,\"lastChangeTime\":\"15 days, 1:02:23.55\",\"lastInBytes\":3685997289,\"lastOutBytes\":1960281638,\"outBytes\":1960281638,\"outFlow\":22370,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416920,\"inBytes\":1108170836,\"inFlow\":407020,\"lastChangeTime\":\"386 days, 19:25:31.61\",\"lastInBytes\":1108170836,\"lastOutBytes\":1468029477,\"outBytes\":1468029477,\"outFlow\":9900,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":906451,\"inBytes\":3244982707,\"inFlow\":883967,\"lastChangeTime\":\"454 days, 23:38:14.10\",\"lastInBytes\":3244982707,\"lastOutBytes\":2769880498,\"outBytes\":2769880498,\"outFlow\":22483,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":424091,\"inBytes\":986113398,\"inFlow\":413935,\"lastChangeTime\":\"386 days, 19:25:28.12\",\"lastInBytes\":986113398,\"lastOutBytes\":3251325160,\"outBytes\":3251325160,\"outFlow\":10155,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":905386,\"inBytes\":4070537189,\"inFlow\":882845,\"lastChangeTime\":\"454 days, 23:38:11.99\",\"lastInBytes\":4070537189,\"lastOutBytes\":1140795633,\"outBytes\":1140795633,\"outFlow\":22540,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":184,\"inBytes\":574406871,\"inFlow\":55,\"lastChangeTime\":\"459 days, 3:22:14.13\",\"lastInBytes\":574406871,\"lastOutBytes\":1980246820,\"outBytes\":1980246820,\"outFlow\":129,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":256,\"inFlow\":0,\"lastChangeTime\":\"459 days, 3:16:39.65\",\"lastInBytes\":256,\"lastOutBytes\":1399,\"outBytes\":1399,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":335,\"inBytes\":711641378,\"inFlow\":125,\"lastChangeTime\":\"0:01:28.00\",\"lastInBytes\":711641378,\"lastOutBytes\":1128047814,\"outBytes\":1128047814,\"outFlow\":210,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5398467,\"inBytes\":4171780967,\"inFlow\":139768,\"lastChangeTime\":\"459 days, 3:04:32.41\",\"lastInBytes\":4171780967,\"lastOutBytes\":3530519048,\"outBytes\":3530519048,\"outFlow\":5258699,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.275482000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398929", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1025040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681435\",\"inUnknownProtos\":\"3611160894\",\"index\":\"634\",\"lastChange\":\"0:01:20.43\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:57:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2587780451\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":908860,\"inBytes\":4247141921,\"inFlow\":885700,\"lastChangeTime\":\"454 days, 23:39:47.67\",\"lastInBytes\":4247141921,\"lastOutBytes\":489924444,\"outBytes\":489924444,\"outFlow\":23160,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":905690,\"inBytes\":3631133655,\"inFlow\":882989,\"lastChangeTime\":\"454 days, 23:39:49.87\",\"lastInBytes\":3631133655,\"lastOutBytes\":3328775223,\"outBytes\":3328775223,\"outFlow\":22701,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1095881,\"inBytes\":1763438273,\"inFlow\":1070136,\"lastChangeTime\":\"386 days, 19:26:59.16\",\"lastInBytes\":1763438273,\"lastOutBytes\":3145317935,\"outBytes\":3145317935,\"outFlow\":25745,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":418847,\"inBytes\":1367667353,\"inFlow\":408617,\"lastChangeTime\":\"15 days, 1:05:27.05\",\"lastInBytes\":1367667353,\"lastOutBytes\":3962532923,\"outBytes\":3962532923,\"outFlow\":10229,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":909080,\"inBytes\":2247146969,\"inFlow\":886239,\"lastChangeTime\":\"454 days, 23:39:55.66\",\"lastInBytes\":2247146969,\"lastOutBytes\":3611160894,\"outBytes\":3611160894,\"outFlow\":22840,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":903962,\"inBytes\":400816249,\"inFlow\":881293,\"lastChangeTime\":\"454 days, 23:39:59.66\",\"lastInBytes\":400816249,\"lastOutBytes\":1184093377,\"outBytes\":1184093377,\"outFlow\":22668,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":335,\"inBytes\":711907932,\"inFlow\":125,\"lastChangeTime\":\"0:01:21.59\",\"lastInBytes\":711907932,\"lastOutBytes\":1097295535,\"outBytes\":1097295535,\"outFlow\":210,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5170078,\"inBytes\":2306773801,\"inFlow\":133718,\"lastChangeTime\":\"0:01:20.43\",\"lastInBytes\":2306773801,\"lastOutBytes\":2725206753,\"outBytes\":2725206753,\"outFlow\":5036360,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.275108000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398930", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1025040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"10\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"633452\",\"inUnknownProtos\":\"1837916479\",\"index\":\"634\",\"lastChange\":\"0:01:32.19\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:98:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4195173682\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"333579953\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":390005,\"inBytes\":2565336111,\"inFlow\":380258,\"lastChangeTime\":\"439 days, 23:30:06.64\",\"lastInBytes\":2565336111,\"lastOutBytes\":3675241058,\"outBytes\":3675241058,\"outFlow\":9747,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":387538,\"inBytes\":910358986,\"inFlow\":378196,\"lastChangeTime\":\"1:02:40.80\",\"lastInBytes\":910358986,\"lastOutBytes\":2604949170,\"outBytes\":2604949170,\"outFlow\":9341,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":391889,\"inBytes\":3242689726,\"inFlow\":382128,\"lastChangeTime\":\"439 days, 23:30:10.31\",\"lastInBytes\":3242689726,\"lastOutBytes\":3585348344,\"outBytes\":3585348344,\"outFlow\":9761,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":392322,\"inBytes\":4086409360,\"inFlow\":382502,\"lastChangeTime\":\"439 days, 23:30:21.41\",\"lastInBytes\":4086409360,\"lastOutBytes\":2186747344,\"outBytes\":2186747344,\"outFlow\":9820,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1114307,\"inBytes\":1813688077,\"inFlow\":1089741,\"lastChangeTime\":\"371 days, 19:17:21.30\",\"lastInBytes\":1813688077,\"lastOutBytes\":1837653314,\"outBytes\":1837653314,\"outFlow\":24565,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":419257,\"inBytes\":4014383294,\"inFlow\":408848,\"lastChangeTime\":\"439 days, 23:30:09.18\",\"lastInBytes\":4014383294,\"lastOutBytes\":202688197,\"outBytes\":202688197,\"outFlow\":10408,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419054,\"inBytes\":270786893,\"inFlow\":408551,\"lastChangeTime\":\"440 days, 3:34:28.26\",\"lastInBytes\":270786893,\"lastOutBytes\":2939903095,\"outBytes\":2939903095,\"outFlow\":10503,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":419952,\"inBytes\":1709616890,\"inFlow\":409451,\"lastChangeTime\":\"439 days, 23:30:11.60\",\"lastInBytes\":1709616890,\"lastOutBytes\":194605502,\"outBytes\":194605502,\"outFlow\":10501,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":549592,\"inBytes\":288055651,\"inFlow\":537502,\"lastChangeTime\":\"160 days, 15:59:27.02\",\"lastInBytes\":288055651,\"lastOutBytes\":820273659,\"outBytes\":820273659,\"outFlow\":12090,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":389003,\"inBytes\":2301318998,\"inFlow\":379275,\"lastChangeTime\":\"439 days, 23:30:22.36\",\"lastInBytes\":2301318998,\"lastOutBytes\":3726042636,\"outBytes\":3726042636,\"outFlow\":9727,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":388567,\"inBytes\":3634808653,\"inFlow\":378869,\"lastChangeTime\":\"439 days, 23:30:17.00\",\"lastInBytes\":3634808653,\"lastOutBytes\":913684554,\"outBytes\":913684554,\"outFlow\":9697,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":503006,\"inBytes\":2221268239,\"inFlow\":491890,\"lastChangeTime\":\"160 days, 15:59:43.46\",\"lastInBytes\":2221268239,\"lastOutBytes\":2576308434,\"outBytes\":2576308434,\"outFlow\":11115,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":386658,\"inBytes\":4233236121,\"inFlow\":377310,\"lastChangeTime\":\"0:01:33.25\",\"lastInBytes\":4233236121,\"lastOutBytes\":2385945853,\"outBytes\":2385945853,\"outFlow\":9347,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":389236,\"inBytes\":2866053168,\"inFlow\":379517,\"lastChangeTime\":\"439 days, 23:30:05.34\",\"lastInBytes\":2866053168,\"lastOutBytes\":232427644,\"outBytes\":232427644,\"outFlow\":9718,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":388772,\"inBytes\":3026845021,\"inFlow\":379483,\"lastChangeTime\":\"344 days, 4:45:21.36\",\"lastInBytes\":3026845021,\"lastOutBytes\":2284779548,\"outBytes\":2284779548,\"outFlow\":9289,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":327,\"inBytes\":711627789,\"inFlow\":125,\"lastChangeTime\":\"0:01:33.57\",\"lastInBytes\":711627789,\"lastOutBytes\":931472036,\"outBytes\":931472036,\"outFlow\":202,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7285450,\"inBytes\":2458417066,\"inFlow\":182176,\"lastChangeTime\":\"0:01:32.48\",\"lastInBytes\":2458417066,\"lastOutBytes\":582106649,\"outBytes\":582106649,\"outFlow\":7103274,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.274830000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398931", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "deviceId": "1025040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681259\",\"inUnknownProtos\":\"2389419176\",\"index\":\"635\",\"lastChange\":\"0:01:16.89\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:4d:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3549578917\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368484972\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:02\",\"info\":{\"portInfoList\":[{\"flow\":909583,\"inBytes\":951588021,\"inFlow\":887112,\"lastChangeTime\":\"456 days, 5:01:45.03\",\"lastInBytes\":951588021,\"lastOutBytes\":2419149353,\"outBytes\":2419149353,\"outFlow\":22471,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":909603,\"inBytes\":3543114636,\"inFlow\":887121,\"lastChangeTime\":\"15 days, 1:16:54.82\",\"lastInBytes\":3543114636,\"lastOutBytes\":2081464160,\"outBytes\":2081464160,\"outFlow\":22482,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":909275,\"inBytes\":3712578181,\"inFlow\":886879,\"lastChangeTime\":\"15 days, 1:14:42.83\",\"lastInBytes\":3712578181,\"lastOutBytes\":3008574432,\"outBytes\":3008574432,\"outFlow\":22396,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":888655,\"inBytes\":615952937,\"inFlow\":867268,\"lastChangeTime\":\"386 days, 19:27:02.44\",\"lastInBytes\":615952937,\"lastOutBytes\":1234876372,\"outBytes\":1234876372,\"outFlow\":21386,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1039189,\"inBytes\":3854444928,\"inFlow\":1014677,\"lastChangeTime\":\"386 days, 19:26:56.99\",\"lastInBytes\":3854444928,\"lastOutBytes\":352335875,\"outBytes\":352335875,\"outFlow\":24511,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":548198,\"inBytes\":3765655450,\"inFlow\":534177,\"lastChangeTime\":\"359 days, 22:39:57.87\",\"lastInBytes\":3765655450,\"lastOutBytes\":2389318792,\"outBytes\":2389318792,\"outFlow\":14021,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":553653,\"inBytes\":3808129601,\"inFlow\":539599,\"lastChangeTime\":\"348 days, 8:11:59.65\",\"lastInBytes\":3808129601,\"lastOutBytes\":1677214540,\"outBytes\":1677214540,\"outFlow\":14053,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1558210,\"inBytes\":3486037662,\"inFlow\":1527931,\"lastChangeTime\":\"348 days, 8:44:22.78\",\"lastInBytes\":3486037662,\"lastOutBytes\":1113338981,\"outBytes\":1113338981,\"outFlow\":30278,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":417814,\"inBytes\":1982499690,\"inFlow\":407307,\"lastChangeTime\":\"15 days, 1:15:03.90\",\"lastInBytes\":1982499690,\"lastOutBytes\":51216821,\"outBytes\":51216821,\"outFlow\":10507,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":418945,\"inBytes\":2373679414,\"inFlow\":408535,\"lastChangeTime\":\"143 days, 12:14:05.71\",\"lastInBytes\":2373679414,\"lastOutBytes\":1764951294,\"outBytes\":1764951294,\"outFlow\":10409,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":631652,\"inBytes\":3727564527,\"inFlow\":615564,\"lastChangeTime\":\"489 days, 9:47:44.56\",\"lastInBytes\":3727564527,\"lastOutBytes\":3160400834,\"outBytes\":3160400834,\"outFlow\":16088,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":768398735,\"inFlow\":0,\"lastChangeTime\":\"437 days, 0:05:23.25\",\"lastInBytes\":768398735,\"lastOutBytes\":1364030907,\"outBytes\":1364030907,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7647983,\"inFlow\":0,\"lastChangeTime\":\"108 days, 0:50:51.65\",\"lastInBytes\":7647983,\"lastOutBytes\":379371819,\"outBytes\":379371819,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":333,\"inBytes\":750969738,\"inFlow\":125,\"lastChangeTime\":\"437 days, 0:32:42.61\",\"lastInBytes\":750969738,\"lastOutBytes\":2809508861,\"outBytes\":2809508861,\"outFlow\":208,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8502755,\"inBytes\":4131031807,\"inFlow\":209682,\"lastChangeTime\":\"0:01:16.89\",\"lastInBytes\":4131031807,\"lastOutBytes\":45083966,\"outBytes\":45083966,\"outFlow\":8293073,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.247222000\"}}", + "lastDiagTime": "2026-02-02 14:38:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398932", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "deviceId": "1025040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681272\",\"inUnknownProtos\":\"3956329007\",\"index\":\"635\",\"lastChange\":\"0:01:23.35\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:f0:cb\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6448267\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368484717\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:02\",\"info\":{\"portInfoList\":[{\"flow\":419324,\"inBytes\":669678801,\"inFlow\":408828,\"lastChangeTime\":\"15 days, 1:18:12.88\",\"lastInBytes\":669678801,\"lastOutBytes\":1238328207,\"outBytes\":1238328207,\"outFlow\":10495,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":419281,\"inBytes\":2317466280,\"inFlow\":408767,\"lastChangeTime\":\"15 days, 1:18:00.00\",\"lastInBytes\":2317466280,\"lastOutBytes\":39805079,\"outBytes\":39805079,\"outFlow\":10514,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":423063,\"inBytes\":3365909409,\"inFlow\":412567,\"lastChangeTime\":\"386 days, 19:27:07.03\",\"lastInBytes\":3365909409,\"lastOutBytes\":368399389,\"outBytes\":368399389,\"outFlow\":10495,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":758206,\"inBytes\":256620100,\"inFlow\":738542,\"lastChangeTime\":\"175 days, 16:08:25.16\",\"lastInBytes\":256620100,\"lastOutBytes\":392238632,\"outBytes\":392238632,\"outFlow\":19663,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":984282,\"inBytes\":445295697,\"inFlow\":961871,\"lastChangeTime\":\"175 days, 16:08:27.35\",\"lastInBytes\":445295697,\"lastOutBytes\":3956329007,\"outBytes\":3956329007,\"outFlow\":22410,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":568661,\"inBytes\":4172328482,\"inFlow\":554729,\"lastChangeTime\":\"356 days, 23:09:18.02\",\"lastInBytes\":4172328482,\"lastOutBytes\":1629528025,\"outBytes\":1629528025,\"outFlow\":13932,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":419872,\"inBytes\":4024993014,\"inFlow\":409382,\"lastChangeTime\":\"454 days, 23:39:31.15\",\"lastInBytes\":4024993014,\"lastOutBytes\":3052047310,\"outBytes\":3052047310,\"outFlow\":10489,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":455623,\"inBytes\":4266531871,\"inFlow\":445398,\"lastChangeTime\":\"175 days, 16:08:32.51\",\"lastInBytes\":4266531871,\"lastOutBytes\":3890321246,\"outBytes\":3890321246,\"outFlow\":10224,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418322,\"inBytes\":4160562075,\"inFlow\":408778,\"lastChangeTime\":\"175 days, 16:08:23.15\",\"lastInBytes\":4160562075,\"lastOutBytes\":3241605789,\"outBytes\":3241605789,\"outFlow\":9543,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418820,\"inBytes\":699902332,\"inFlow\":408576,\"lastChangeTime\":\"0:01:25.85\",\"lastInBytes\":699902332,\"lastOutBytes\":87518979,\"outBytes\":87518979,\"outFlow\":10244,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":279941,\"inBytes\":1935645420,\"inFlow\":273004,\"lastChangeTime\":\"98 days, 10:01:15.35\",\"lastInBytes\":1935645420,\"lastOutBytes\":485168653,\"outBytes\":485168653,\"outFlow\":6936,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":279483,\"inBytes\":1557541708,\"inFlow\":272789,\"lastChangeTime\":\"0:01:25.24\",\"lastInBytes\":1557541708,\"lastOutBytes\":1918485051,\"outBytes\":1918485051,\"outFlow\":6693,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":417413,\"inBytes\":2775325965,\"inFlow\":407422,\"lastChangeTime\":\"386 days, 19:30:18.98\",\"lastInBytes\":2775325965,\"lastOutBytes\":2769161914,\"outBytes\":2769161914,\"outFlow\":9991,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":519115,\"inFlow\":0,\"lastChangeTime\":\"17 days, 0:41:43.96\",\"lastInBytes\":519115,\"lastOutBytes\":16113548,\"outBytes\":16113548,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":336,\"inBytes\":711688825,\"inFlow\":125,\"lastChangeTime\":\"456 days, 1:51:05.40\",\"lastInBytes\":711688825,\"lastOutBytes\":1124154819,\"outBytes\":1124154819,\"outFlow\":210,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6278665,\"inBytes\":2515512653,\"inFlow\":157271,\"lastChangeTime\":\"17 days, 0:41:26.86\",\"lastInBytes\":2515512653,\"lastOutBytes\":844683126,\"outBytes\":844683126,\"outFlow\":6121394,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.249737000\"}}", + "lastDiagTime": "2026-02-02 14:38:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398934", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1025040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681512\",\"inUnknownProtos\":\"4091923297\",\"index\":\"634\",\"lastChange\":\"0:01:33.70\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:50:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1240192302\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368485611\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":718066,\"inBytes\":1789788561,\"inFlow\":701548,\"lastChangeTime\":\"175 days, 16:08:49.38\",\"lastInBytes\":1789788561,\"lastOutBytes\":1137966017,\"outBytes\":1137966017,\"outFlow\":16518,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":528497,\"inBytes\":839785557,\"inFlow\":516145,\"lastChangeTime\":\"175 days, 16:08:48.45\",\"lastInBytes\":839785557,\"lastOutBytes\":1121527229,\"outBytes\":1121527229,\"outFlow\":12352,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":417714,\"inBytes\":687337786,\"inFlow\":408211,\"lastChangeTime\":\"175 days, 16:08:55.88\",\"lastInBytes\":687337786,\"lastOutBytes\":3925223221,\"outBytes\":3925223221,\"outFlow\":9503,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":535648,\"inBytes\":1173176122,\"inFlow\":523570,\"lastChangeTime\":\"175 days, 16:08:51.79\",\"lastInBytes\":1173176122,\"lastOutBytes\":3549911781,\"outBytes\":3549911781,\"outFlow\":12078,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418650,\"inBytes\":901851645,\"inFlow\":408220,\"lastChangeTime\":\"386 days, 19:27:19.04\",\"lastInBytes\":901851645,\"lastOutBytes\":4091923297,\"outBytes\":4091923297,\"outFlow\":10430,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":673373,\"inBytes\":1605475868,\"inFlow\":657988,\"lastChangeTime\":\"175 days, 16:09:01.04\",\"lastInBytes\":1605475868,\"lastOutBytes\":2662097598,\"outBytes\":2662097598,\"outFlow\":15384,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":909746,\"inBytes\":4029868687,\"inFlow\":887120,\"lastChangeTime\":\"15 days, 1:22:35.94\",\"lastInBytes\":4029868687,\"lastOutBytes\":1526779539,\"outBytes\":1526779539,\"outFlow\":22625,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":278730,\"inBytes\":1167711777,\"inFlow\":271501,\"lastChangeTime\":\"17 days, 12:30:43.15\",\"lastInBytes\":1167711777,\"lastOutBytes\":4040742903,\"outBytes\":4040742903,\"outFlow\":7229,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.29\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.29\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.29\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":789434689,\"inFlow\":125,\"lastChangeTime\":\"0:01:34.82\",\"lastInBytes\":789434689,\"lastOutBytes\":1204575329,\"outBytes\":1204575329,\"outFlow\":202,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.30\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4509439,\"inBytes\":2414232272,\"inFlow\":110962,\"lastChangeTime\":\"0:01:33.70\",\"lastInBytes\":2414232272,\"lastOutBytes\":3704044425,\"outBytes\":3704044425,\"outFlow\":4398477,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.279741000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398935", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:02", + "echoMap": {}, + "deviceId": "1025040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681641\",\"inUnknownProtos\":\"256222861\",\"index\":\"635\",\"lastChange\":\"0:01:16.59\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:e5:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1738087984\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368487051\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:02\",\"info\":{\"portInfoList\":[{\"flow\":909542,\"inBytes\":1348709145,\"inFlow\":886949,\"lastChangeTime\":\"15 days, 1:23:49.96\",\"lastInBytes\":1348709145,\"lastOutBytes\":3735040954,\"outBytes\":3735040954,\"outFlow\":22592,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":947374,\"inBytes\":650994071,\"inFlow\":926245,\"lastChangeTime\":\"175 days, 16:08:27.28\",\"lastInBytes\":650994071,\"lastOutBytes\":1666018356,\"outBytes\":1666018356,\"outFlow\":21128,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":904684,\"inBytes\":2408719690,\"inFlow\":885243,\"lastChangeTime\":\"175 days, 16:08:24.44\",\"lastInBytes\":2408719690,\"lastOutBytes\":1084492273,\"outBytes\":1084492273,\"outFlow\":19440,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":533091,\"inBytes\":487671545,\"inFlow\":519734,\"lastChangeTime\":\"175 days, 16:08:23.42\",\"lastInBytes\":487671545,\"lastOutBytes\":908323916,\"outBytes\":908323916,\"outFlow\":13357,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":280285,\"inBytes\":2978000076,\"inFlow\":273190,\"lastChangeTime\":\"489 days, 8:57:06.24\",\"lastInBytes\":2978000076,\"lastOutBytes\":2616389871,\"outBytes\":2616389871,\"outFlow\":7095,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":418965,\"inBytes\":2636040228,\"inFlow\":408505,\"lastChangeTime\":\"15 days, 1:25:44.65\",\"lastInBytes\":2636040228,\"lastOutBytes\":256222861,\"outBytes\":256222861,\"outFlow\":10460,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":419853,\"inBytes\":2338857919,\"inFlow\":409330,\"lastChangeTime\":\"15 days, 1:25:24.66\",\"lastInBytes\":2338857919,\"lastOutBytes\":3976804135,\"outBytes\":3976804135,\"outFlow\":10522,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":291040,\"inBytes\":3776476872,\"inFlow\":282548,\"lastChangeTime\":\"98 days, 10:01:13.79\",\"lastInBytes\":3776476872,\"lastOutBytes\":3178703182,\"outBytes\":3178703182,\"outFlow\":8492,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":416750,\"inBytes\":190852420,\"inFlow\":406897,\"lastChangeTime\":\"386 days, 19:30:35.69\",\"lastInBytes\":190852420,\"lastOutBytes\":3365357423,\"outBytes\":3365357423,\"outFlow\":9852,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":104393,\"inFlow\":0,\"lastChangeTime\":\"17 days, 0:37:19.75\",\"lastInBytes\":104393,\"lastOutBytes\":1206393,\"outBytes\":1206393,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":335,\"inBytes\":789410626,\"inFlow\":125,\"lastChangeTime\":\"17 days, 0:37:40.76\",\"lastInBytes\":789410626,\"lastOutBytes\":1208922505,\"outBytes\":1208922505,\"outFlow\":210,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5153085,\"inBytes\":3626021768,\"inFlow\":128595,\"lastChangeTime\":\"114 days, 23:26:26.41\",\"lastInBytes\":3626021768,\"lastOutBytes\":3986291091,\"outBytes\":3986291091,\"outFlow\":5024490,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.247424000\"}}", + "lastDiagTime": "2026-02-02 14:38:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398936", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1025040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"681475\",\"inUnknownProtos\":\"2752985841\",\"index\":\"635\",\"lastChange\":\"0:01:19.57\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:03:52:8f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2945151577\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"368487851\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":514639,\"inBytes\":3844563124,\"inFlow\":502772,\"lastChangeTime\":\"175 days, 16:06:24.71\",\"lastInBytes\":3844563124,\"lastOutBytes\":2226490308,\"outBytes\":2226490308,\"outFlow\":11867,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":486991,\"inBytes\":2381769476,\"inFlow\":475687,\"lastChangeTime\":\"175 days, 16:06:32.75\",\"lastInBytes\":2381769476,\"lastOutBytes\":215557939,\"outBytes\":215557939,\"outFlow\":11304,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1056296,\"inBytes\":3341222257,\"inFlow\":1032393,\"lastChangeTime\":\"175 days, 16:06:28.68\",\"lastInBytes\":3341222257,\"lastOutBytes\":874032501,\"outBytes\":874032501,\"outFlow\":23902,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":418811,\"inBytes\":3585200893,\"inFlow\":408454,\"lastChangeTime\":\"386 days, 19:26:39.85\",\"lastInBytes\":3585200893,\"lastOutBytes\":127452330,\"outBytes\":127452330,\"outFlow\":10356,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":675890,\"inBytes\":743765039,\"inFlow\":660231,\"lastChangeTime\":\"175 days, 16:06:32.79\",\"lastInBytes\":743765039,\"lastOutBytes\":3645009281,\"outBytes\":3645009281,\"outFlow\":15658,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1077835,\"inBytes\":4022987941,\"inFlow\":1054970,\"lastChangeTime\":\"175 days, 16:06:37.66\",\"lastInBytes\":4022987941,\"lastOutBytes\":2752985841,\"outBytes\":2752985841,\"outFlow\":22864,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1098262,\"inBytes\":1537458480,\"inFlow\":1072411,\"lastChangeTime\":\"175 days, 16:06:31.61\",\"lastInBytes\":1537458480,\"lastOutBytes\":2622940115,\"outBytes\":2622940115,\"outFlow\":25851,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":500985,\"inBytes\":1627558591,\"inFlow\":488695,\"lastChangeTime\":\"175 days, 16:06:42.16\",\"lastInBytes\":1627558591,\"lastOutBytes\":2344048138,\"outBytes\":2344048138,\"outFlow\":12290,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":908158,\"inBytes\":1616180384,\"inFlow\":885316,\"lastChangeTime\":\"0:01:21.41\",\"lastInBytes\":1616180384,\"lastOutBytes\":2815641440,\"outBytes\":2815641440,\"outFlow\":22842,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":418285,\"inBytes\":1897008287,\"inFlow\":407830,\"lastChangeTime\":\"15 days, 1:08:33.92\",\"lastInBytes\":1897008287,\"lastOutBytes\":2057139023,\"outBytes\":2057139023,\"outFlow\":10454,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":582572,\"inBytes\":2123422556,\"inFlow\":569173,\"lastChangeTime\":\"178 days, 10:58:15.43\",\"lastInBytes\":2123422556,\"lastOutBytes\":2071993723,\"outBytes\":2071993723,\"outFlow\":13398,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":336,\"inBytes\":789982160,\"inFlow\":125,\"lastChangeTime\":\"0:01:21.40\",\"lastInBytes\":789982160,\"lastOutBytes\":1203662726,\"outBytes\":1203662726,\"outFlow\":210,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7734801,\"inBytes\":760530778,\"inFlow\":187802,\"lastChangeTime\":\"0:01:19.57\",\"lastInBytes\":760530778,\"lastOutBytes\":46077776,\"outBytes\":46077776,\"outFlow\":7546998,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.233700000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398937", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:04", + "echoMap": {}, + "deviceId": "1025040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.178.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface178\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"3953499\",\"inUnknownProtos\":\"2658052530\",\"index\":\"635\",\"lastChange\":\"212 days, 0:27:33.55\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:9e:0b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4025056963\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"121023124\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.178.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":277761,\"inBytes\":3105732660,\"inFlow\":270793,\"lastChangeTime\":\"0:01:20.91\",\"lastInBytes\":3105732660,\"lastOutBytes\":3103291124,\"outBytes\":3103291124,\"outFlow\":6967,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":904553,\"inBytes\":3401698148,\"inFlow\":882253,\"lastChangeTime\":\"450 days, 20:25:35.68\",\"lastInBytes\":3401698148,\"lastOutBytes\":2315120971,\"outBytes\":2315120971,\"outFlow\":22299,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":278039,\"inBytes\":542645399,\"inFlow\":270874,\"lastChangeTime\":\"0:01:21.41\",\"lastInBytes\":542645399,\"lastOutBytes\":1907984999,\"outBytes\":1907984999,\"outFlow\":7165,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":277914,\"inBytes\":2219484405,\"inFlow\":270973,\"lastChangeTime\":\"0:01:21.40\",\"lastInBytes\":2219484405,\"lastOutBytes\":244393166,\"outBytes\":244393166,\"outFlow\":6941,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":278055,\"inBytes\":298603168,\"inFlow\":271031,\"lastChangeTime\":\"0:01:21.91\",\"lastInBytes\":298603168,\"lastOutBytes\":3092173647,\"outBytes\":3092173647,\"outFlow\":7024,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":277960,\"inBytes\":1638025056,\"inFlow\":270849,\"lastChangeTime\":\"0:01:21.39\",\"lastInBytes\":1638025056,\"lastOutBytes\":2658052530,\"outBytes\":2658052530,\"outFlow\":7110,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":278021,\"inBytes\":3123436357,\"inFlow\":270984,\"lastChangeTime\":\"0:01:21.38\",\"lastInBytes\":3123436357,\"lastOutBytes\":513610915,\"outBytes\":513610915,\"outFlow\":7036,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":277592,\"inBytes\":1006425155,\"inFlow\":270871,\"lastChangeTime\":\"277 days, 18:49:00.49\",\"lastInBytes\":1006425155,\"lastOutBytes\":1037319509,\"outBytes\":1037319509,\"outFlow\":6721,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":523722,\"inBytes\":942250123,\"inFlow\":510847,\"lastChangeTime\":\"69 days, 10:46:29.36\",\"lastInBytes\":942250123,\"lastOutBytes\":3161786337,\"outBytes\":3161786337,\"outFlow\":12874,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":673204,\"inFlow\":0,\"lastChangeTime\":\"309 days, 18:38:19.00\",\"lastInBytes\":673204,\"lastOutBytes\":64692370,\"outBytes\":64692370,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":327,\"inBytes\":810480596,\"inFlow\":124,\"lastChangeTime\":\"309 days, 18:37:58.52\",\"lastInBytes\":810480596,\"lastOutBytes\":644286064,\"outBytes\":644286064,\"outFlow\":203,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3427220,\"inBytes\":626753751,\"inFlow\":88497,\"lastChangeTime\":\"309 days, 18:37:15.50\",\"lastInBytes\":626753751,\"lastOutBytes\":2976234150,\"outBytes\":2976234150,\"outFlow\":3338723,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:59.361213000\"}}", + "lastDiagTime": "2026-02-02 14:38:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389581802398938", + "createdBy": "0", + "createdTime": "2025-12-02 09:24:15", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1025040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.177.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif177\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:07.93\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:19:fd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"4\",\"temperature\":\"42\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.177.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"5060\",\"0\",\"0\",\"0\",\"0\",\"0\",\"372\",\"416557\",\"136249\",\"27120\",\"97001\",\"97010\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:25\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:09.70\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35130,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":564,\"opticalVoltage\":3290,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40139,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":561,\"opticalVoltage\":3271,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43259,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":524,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44490,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":490,\"opticalVoltage\":3263,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41220,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":561,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38459,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":563,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":52560,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":561,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":78690,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":0,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42150,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":563,\"opticalVoltage\":3285,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":741,\"opticalVoltage\":3280,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42599,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":559,\"opticalVoltage\":3297,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41310,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":533,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44369,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":803,\"opticalVoltage\":3357,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38909,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":561,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43860,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":517,\"opticalVoltage\":3331,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43349,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":809,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":45644,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":714,\"opticalVoltage\":3403,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37590,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":564,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":47639,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":562,\"opticalVoltage\":3295,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":46139,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":493,\"opticalVoltage\":3359,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":440,\"inBytes\":3415278941,\"inFlow\":83,\"lastChangeTime\":\"0:04:02.84\",\"lastInBytes\":3415278941,\"lastOutBytes\":872860650,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":218,\"opticalTemperature\":54,\"opticalTransmitPower\":244,\"opticalVoltage\":3320,\"outBytes\":872860650,\"outFlow\":357,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41130,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":559,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":6250474,\"inBytes\":3064251632,\"inFlow\":133787,\"lastChangeTime\":\"0:04:14.39\",\"lastInBytes\":3064251632,\"lastOutBytes\":269150441,\"opticalBiasCurrent\":44113,\"opticalReceivePower\":389,\"opticalTemperature\":61,\"opticalTransmitPower\":779,\"opticalVoltage\":3340,\"outBytes\":269150441,\"outFlow\":6116687,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":5308547,\"inBytes\":1746438859,\"inFlow\":3003,\"lastChangeTime\":\"0:04:08.36\",\"lastInBytes\":1746438859,\"lastOutBytes\":210085059,\"opticalBiasCurrent\":42330,\"opticalReceivePower\":300,\"opticalTemperature\":51,\"opticalTransmitPower\":587,\"opticalVoltage\":3353,\"outBytes\":210085059,\"outFlow\":5305543,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":3024691,\"inBytes\":3091330762,\"inFlow\":2927707,\"lastChangeTime\":\"380 days, 7:05:59.02\",\"lastInBytes\":3091330762,\"lastOutBytes\":1102613645,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":84,\"opticalTemperature\":49,\"opticalTransmitPower\":237,\"opticalVoltage\":3352,\"outBytes\":1102613645,\"outFlow\":96983,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6920566,\"inBytes\":3326071051,\"inFlow\":6709788,\"lastChangeTime\":\"31 days, 23:30:20.12\",\"lastInBytes\":3326071051,\"lastOutBytes\":3131338311,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":28,\"opticalTemperature\":50,\"opticalTransmitPower\":239,\"opticalVoltage\":3378,\"outBytes\":3131338311,\"outFlow\":210777,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4516954,\"inBytes\":3925288986,\"inFlow\":4377764,\"lastChangeTime\":\"49 days, 0:05:52.49\",\"lastInBytes\":3925288986,\"lastOutBytes\":1848309604,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":201,\"opticalTemperature\":51,\"opticalTransmitPower\":238,\"opticalVoltage\":3352,\"outBytes\":1848309604,\"outFlow\":139189,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3820224,\"inBytes\":2919460191,\"inFlow\":3703112,\"lastChangeTime\":\"31 days, 23:30:33.96\",\"lastInBytes\":2919460191,\"lastOutBytes\":1717561520,\"opticalBiasCurrent\":11154,\"opticalReceivePower\":5,\"opticalTemperature\":54,\"opticalTransmitPower\":255,\"opticalVoltage\":3356,\"outBytes\":1717561520,\"outFlow\":117112,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":19007,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":239,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5682424,\"inBytes\":1721351111,\"inFlow\":5504138,\"lastChangeTime\":\"49 days, 0:09:25.24\",\"lastInBytes\":1721351111,\"lastOutBytes\":1341500450,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":6,\"opticalTemperature\":51,\"opticalTransmitPower\":244,\"opticalVoltage\":3342,\"outBytes\":1341500450,\"outFlow\":178285,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8226162,\"inBytes\":122062660,\"inFlow\":7972505,\"lastChangeTime\":\"31 days, 23:30:17.53\",\"lastInBytes\":122062660,\"lastOutBytes\":4290956171,\"opticalBiasCurrent\":11456,\"opticalReceivePower\":182,\"opticalTemperature\":55,\"opticalTransmitPower\":251,\"opticalVoltage\":3340,\"outBytes\":4290956171,\"outFlow\":253656,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6330347,\"inBytes\":1655112630,\"inFlow\":6133281,\"lastChangeTime\":\"46 days, 23:38:21.75\",\"lastInBytes\":1655112630,\"lastOutBytes\":2548521666,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":210,\"opticalTemperature\":52,\"opticalTransmitPower\":239,\"opticalVoltage\":3356,\"outBytes\":2548521666,\"outFlow\":197065,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4518160,\"inBytes\":1255320043,\"inFlow\":4373273,\"lastChangeTime\":\"31 days, 23:30:20.74\",\"lastInBytes\":1255320043,\"lastOutBytes\":1000340382,\"opticalBiasCurrent\":18360,\"opticalReceivePower\":300,\"opticalTemperature\":50,\"opticalTransmitPower\":240,\"opticalVoltage\":3352,\"outBytes\":1000340382,\"outFlow\":144887,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4730509,\"inBytes\":44297227,\"inFlow\":4578610,\"lastChangeTime\":\"491 days, 2:15:12.49\",\"lastInBytes\":44297227,\"lastOutBytes\":1665562834,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":4,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":1665562834,\"outFlow\":151898,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5553192,\"inBytes\":1400893645,\"inFlow\":5375488,\"lastChangeTime\":\"31 days, 23:31:28.81\",\"lastInBytes\":1400893645,\"lastOutBytes\":3019294460,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":105,\"opticalTemperature\":50,\"opticalTransmitPower\":238,\"opticalVoltage\":3376,\"outBytes\":3019294460,\"outFlow\":177703,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":736571,\"inBytes\":2908787074,\"inFlow\":712616,\"lastChangeTime\":\"49 days, 0:03:55.83\",\"lastInBytes\":2908787074,\"lastOutBytes\":2894178835,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":343,\"opticalTemperature\":55,\"opticalTransmitPower\":233,\"opticalVoltage\":3342,\"outBytes\":2894178835,\"outFlow\":23955,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":736644,\"inBytes\":1324468846,\"inFlow\":712919,\"lastChangeTime\":\"97 days, 8:59:01.78\",\"lastInBytes\":1324468846,\"lastOutBytes\":3496805309,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":210,\"opticalTemperature\":51,\"opticalTransmitPower\":240,\"opticalVoltage\":3368,\"outBytes\":3496805309,\"outFlow\":23725,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":736600,\"inBytes\":1963886182,\"inFlow\":712999,\"lastChangeTime\":\"97 days, 9:09:30.88\",\"lastInBytes\":1963886182,\"lastOutBytes\":991582860,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":137,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":991582860,\"outFlow\":23601,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4175347,\"inBytes\":1520328007,\"inFlow\":4044057,\"lastChangeTime\":\"97 days, 9:17:44.08\",\"lastInBytes\":1520328007,\"lastOutBytes\":2372774217,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":119,\"opticalTemperature\":52,\"opticalTransmitPower\":242,\"opticalVoltage\":3390,\"outBytes\":2372774217,\"outFlow\":131290,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6086844,\"inBytes\":1884414792,\"inFlow\":5896440,\"lastChangeTime\":\"469 days, 0:00:41.75\",\"lastInBytes\":1884414792,\"lastOutBytes\":3637884459,\"opticalBiasCurrent\":14534,\"opticalReceivePower\":141,\"opticalTemperature\":50,\"opticalTransmitPower\":291,\"opticalVoltage\":3302,\"outBytes\":3637884459,\"outFlow\":190404,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3066590,\"inBytes\":468993031,\"inFlow\":24280,\"lastChangeTime\":\"31 days, 23:30:23.90\",\"lastInBytes\":468993031,\"lastOutBytes\":1774859978,\"opticalBiasCurrent\":14215,\"opticalReceivePower\":223,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3310,\"outBytes\":1774859978,\"outFlow\":3042310,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":238,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":245,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":238,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40543,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":364,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":239,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":237,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13067,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":265,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":21091,\"inBytes\":1730923587,\"inFlow\":9786,\"lastChangeTime\":\"70 days, 8:36:14.98\",\"lastInBytes\":1730923587,\"lastOutBytes\":1378150578,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1378150578,\"outFlow\":11304,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27610175,\"inBytes\":423905129,\"inFlow\":10863496,\"lastChangeTime\":\"70 days, 8:37:20.37\",\"lastInBytes\":423905129,\"lastOutBytes\":691307238,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":691307238,\"outFlow\":16746679,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":35527,\"inBytes\":3779100806,\"inFlow\":17678,\"lastChangeTime\":\"70 days, 8:33:19.21\",\"lastInBytes\":3779100806,\"lastOutBytes\":3404438782,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3404438782,\"outFlow\":17849,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":318,\"inBytes\":175647810,\"inFlow\":8,\"lastChangeTime\":\"24 days, 8:16:26.49\",\"lastInBytes\":175647810,\"lastOutBytes\":1548607952,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1548607952,\"outFlow\":309,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1875739,\"inBytes\":1567928095,\"inFlow\":53945,\"lastChangeTime\":\"59 days, 20:05:06.15\",\"lastInBytes\":1567928095,\"lastOutBytes\":1047863438,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1047863438,\"outFlow\":1821793,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2867923,\"inBytes\":3272029430,\"inFlow\":2154332,\"lastChangeTime\":\"0:03:08.57\",\"lastInBytes\":3272029430,\"lastOutBytes\":2329138534,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2329138534,\"outFlow\":713591,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":22705098,\"inBytes\":4108229354,\"inFlow\":1713458,\"lastChangeTime\":\"0:03:08.61\",\"lastInBytes\":4108229354,\"lastOutBytes\":2082181401,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2082181401,\"outFlow\":20991639,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2945785,\"inBytes\":2926748505,\"inFlow\":545070,\"lastChangeTime\":\"70 days, 12:14:06.00\",\"lastInBytes\":2926748505,\"lastOutBytes\":447971590,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":447971590,\"outFlow\":2400715,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":20666874,\"inBytes\":2005692087,\"inFlow\":281799,\"lastChangeTime\":\"70 days, 12:14:06.04\",\"lastInBytes\":2005692087,\"lastOutBytes\":845259170,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":845259170,\"outFlow\":20385074,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":530,\"inBytes\":597724469,\"inFlow\":137,\"lastChangeTime\":\"12 days, 6:10:21.69\",\"lastInBytes\":597724469,\"lastOutBytes\":3511369239,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3511369239,\"outFlow\":393,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":788,\"inBytes\":1685312831,\"inFlow\":201,\"lastChangeTime\":\"24 days, 8:22:35.15\",\"lastInBytes\":1685312831,\"lastOutBytes\":3413821316,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3413821316,\"outFlow\":586,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":705,\"inBytes\":3090293882,\"inFlow\":90,\"lastChangeTime\":\"46 days, 0:56:47.83\",\"lastInBytes\":3090293882,\"lastOutBytes\":2500581269,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2500581269,\"outFlow\":615,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":75865492,\"inFlow\":0,\"lastChangeTime\":\"180 days, 11:30:27.42\",\"lastInBytes\":75865492,\"lastOutBytes\":126907512,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":126907512,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":615947,\"inFlow\":0,\"lastChangeTime\":\"31 days, 23:26:37.99\",\"lastInBytes\":615947,\"lastOutBytes\":13898207,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":13898207,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":111142039,\"inFlow\":0,\"lastChangeTime\":\"24 days, 8:29:53.71\",\"lastInBytes\":111142039,\"lastOutBytes\":1623065972,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1623065972,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":110,\"inBytes\":38248384,\"inFlow\":95,\"lastChangeTime\":\"62 days, 5:52:25.80\",\"lastInBytes\":38248384,\"lastOutBytes\":6259266,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6259266,\"outFlow\":15,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":28,\"inBytes\":5249016,\"inFlow\":13,\"lastChangeTime\":\"62 days, 5:52:35.13\",\"lastInBytes\":5249016,\"lastOutBytes\":6232092,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6232092,\"outFlow\":15,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":110877,\"inFlow\":0,\"lastChangeTime\":\"70 days, 12:39:44.92\",\"lastInBytes\":110877,\"lastOutBytes\":2626540,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2626540,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:06.772839000\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046628151345298", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1025110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.177.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.81\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"493 days, 3:33:17.80\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"8662078\",\"inErrors\":\"0\",\"inNUcastPkts\":\"22725309\",\"inOctets\":\"1839205085\",\"inUcastPkts\":\"1607536397\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:9d:1b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"723667844\",\"outQLen\":\"0\",\"outUcastPkts\":\"1541573313\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.177.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1026": { + "ndmAlarmHost": [ + { + "id": "707147639235910783", + "createdBy": null, + "createdTime": "2025-12-08 13:47:43", + "updatedBy": null, + "updatedTime": "2025-12-08 13:47:43", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.179.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046142820031488", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060001", + "name": "[605](10)三门弱电集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603048005026605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031489", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060002", + "name": "[612](10)三门内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031490", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060003", + "name": "[606](10)三门弱电集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603048005026606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031491", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060004", + "name": "[610](10)三门环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603053005026610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031492", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060005", + "name": "[607](10)三门弱电集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603048005026607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031493", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060006", + "name": "[620](10)三门设备区B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031494", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060007", + "name": "[619](10)三门消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031495", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060008", + "name": "[618](10)三门消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001005026618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031496", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060009", + "name": "[611](10)三门内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031497", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060010", + "name": "[622](10)三门变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031498", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-12-25 03:57:05", + "echoMap": {}, + "deviceId": "1026060011", + "name": "[621](10)三门变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031499", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1026060012", + "name": "[609](10)三门环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603053005026609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031500", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1026060013", + "name": "[209](10)三门3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601057004026209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031501", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2026-01-26 10:56:08", + "echoMap": {}, + "deviceId": "1026060014", + "name": "[305](10)三门3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601057006026305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031502", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-12-18 12:15:24", + "echoMap": {}, + "deviceId": "1026060015", + "name": "[304](10)三门3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601057006026304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031503", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060016", + "name": "[303](10)三门3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601057006026303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031504", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060017", + "name": "[405](10)三门3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601007006026405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031505", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060018", + "name": "[404](10)三门3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601007006026404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031506", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060019", + "name": "[202](10)三门厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601035004026202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031507", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060020", + "name": "[302](10)三门3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601057006026302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031508", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060021", + "name": "[301](10)三门3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601057006026301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031509", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060022", + "name": "[311](10)三门#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601045006026311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031510", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-12-15 07:31:25", + "echoMap": {}, + "deviceId": "1026060023", + "name": "[312](10)三门#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601045006026312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031512", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060025", + "name": "[322](10)三门B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031513", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060026", + "name": "[321](10)三门1F垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040005026321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031514", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060027", + "name": "[323](10)三门B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031515", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060028", + "name": "[326](10)三门2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601036005026326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031516", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060029", + "name": "[313](10)三门#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601045006026313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031517", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060030", + "name": "[201](10)三门厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601035004026201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031518", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-12-15 07:06:25", + "echoMap": {}, + "deviceId": "1026060031", + "name": "[327](10)三门安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601085006026327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031519", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060032", + "name": "[614](10)三门内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031520", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060033", + "name": "[401](10)三门1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601005006026401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031521", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060034", + "name": "[613](10)三门内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031522", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060035", + "name": "[502](10)三门票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601030006026502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031523", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060036", + "name": "[602](10)三门编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603041005026602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031524", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060037", + "name": "[603](10)三门编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603041005026603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031525", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060038", + "name": "[604](10)三门编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603041005026604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031526", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060039", + "name": "[210](10)三门6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601060004026210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031527", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060040", + "name": "[310](10)三门6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601060006026310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031528", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060041", + "name": "[309](10)三门6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601060006026309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031529", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060042", + "name": "[308](10)三门6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601060006026308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031530", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060043", + "name": "[406](10)三门3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601007006026406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031531", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060044", + "name": "[307](10)三门6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601060006026307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031532", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060045", + "name": "[204](10)三门厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601035004026204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031533", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1026060046", + "name": "[601](10)三门车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603042004026601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031534", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060047", + "name": "[306](10)三门6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601060006026306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031535", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060048", + "name": "[314](10)三门#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601045006026314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031536", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060049", + "name": "[315](10)三门#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601045006026315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031537", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060050", + "name": "[325](10)三门1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601036005026325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031538", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060051", + "name": "[316](10)三门#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601045006026316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031539", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060052", + "name": "[403](10)三门3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601007006026403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031540", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1026060053", + "name": "[328](10)三门安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601085006026328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031541", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060054", + "name": "[616](10)三门内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031542", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1026060055", + "name": "[634](10)三门1#口联通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026634", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031543", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060056", + "name": "[203](10)三门厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601035004026203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031544", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-12-15 01:32:25", + "echoMap": {}, + "deviceId": "1026060057", + "name": "[503](10)三门票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601030006026503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031545", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060058", + "name": "[615](10)三门内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603001006026615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031546", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060059", + "name": "[702](10)三门下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062604013006026702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031547", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060060", + "name": "[110](10)三门下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602012006026110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031548", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1026060061", + "name": "[108](10)三门下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602012006026108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031549", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1026060062", + "name": "[107](10)三门下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602012006026107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031550", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1026060063", + "name": "[207](10)三门下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602001004026207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031551", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-24 00:34:13", + "echoMap": {}, + "deviceId": "1026060064", + "name": "[317](10)三门#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602017006026317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031552", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060065", + "name": "[608](10)三门屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603048005026608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031553", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060066", + "name": "[617](10)三门内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603021006026617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031554", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060067", + "name": "[324](10)三门B3垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602002006026324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031555", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060068", + "name": "[318](10)三门#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602017006026318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031556", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060069", + "name": "[701](10)三门上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062604013006026701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031557", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060070", + "name": "[105](10)三门上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602007006026105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031558", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060071", + "name": "[106](10)三门上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602007006026106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031559", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060072", + "name": "[623](10)三门变电所出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603021006026623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031560", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060073", + "name": "[109](10)三门下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602012006026109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031561", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060074", + "name": "[111](10)三门下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602012006026111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031562", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1026060075", + "name": "[112](10)三门下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602012006026112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031563", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060076", + "name": "[208](10)三门下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602001004026208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031564", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060077", + "name": "[319](10)三门#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602017006026319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031565", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060078", + "name": "[320](10)三门#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602017006026320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031566", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060079", + "name": "[205](10)三门上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602001004026205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031567", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1026060080", + "name": "[206](10)三门上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602001004026206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031568", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1026060081", + "name": "[102](10)三门上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602007006026102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031569", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2026-01-05 11:34:27", + "echoMap": {}, + "deviceId": "1026060082", + "name": "[101](10)三门上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602007006026101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031570", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1026060083", + "name": "[104](10)三门上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602007006026104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031571", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1026060084", + "name": "[103](10)三门上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062602007006026103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031572", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1026060085", + "name": "[704](10)三门三门江体下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062604012004026704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031573", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1026060086", + "name": "[703](10)三门三门江体上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062604012004026703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031574", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060087", + "name": "[706](10)三门三门殷高东下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062604012004026706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031575", + "createdBy": "0", + "createdTime": "2025-02-28 14:05:46", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060088", + "name": "[705](10)三门三门殷高东上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062604012004026705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220528", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060089", + "name": "[348](10)三门1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220529", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060090", + "name": "[349](10)三门1#口楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220530", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060091", + "name": "[342](10)三门1#口扶梯2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220531", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060092", + "name": "[343](10)三门1#口扶梯2-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220532", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060093", + "name": "[341](10)三门1#口扶梯2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220533", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060094", + "name": "[336](10)三门1#口扶梯1-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220534", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060095", + "name": "[335](10)三门1#口扶梯1-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220535", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060096", + "name": "[338](10)三门1#口扶梯1-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220536", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:47", + "echoMap": {}, + "deviceId": "1026060097", + "name": "[337](10)三门1#口扶梯1-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220537", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-12-30 09:41:47", + "echoMap": {}, + "deviceId": "1026060098", + "name": "[334](10)三门1#口出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220538", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060099", + "name": "[354](10)三门1#口楼梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220539", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-12-30 09:42:47", + "echoMap": {}, + "deviceId": "1026060100", + "name": "[339](10)三门1#口扶梯1-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220540", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-12-30 09:20:48", + "echoMap": {}, + "deviceId": "1026060101", + "name": "[340](10)三门1#口扶梯1-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220541", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060102", + "name": "[330](10)三门1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220542", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060103", + "name": "[329](10)三门1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220543", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060104", + "name": "[332](10)三门1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220544", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060105", + "name": "[505](10)三门票机3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601030006026505", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220545", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060106", + "name": "[408](10)三门4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601008006026408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220546", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060107", + "name": "[331](10)三门1#口联通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220547", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060108", + "name": "[212](10)三门厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601035004026212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220548", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1026060109", + "name": "[635](10)三门1#口联通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026635", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220549", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060110", + "name": "[409](10)三门4#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601008006026409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220550", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060111", + "name": "[632](10)三门气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603067005026632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220551", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060112", + "name": "[631](10)三门通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603048005026631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220552", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060113", + "name": "[630](10)三门通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603048005026630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220553", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-12-02 14:17:31", + "echoMap": {}, + "deviceId": "1026060114", + "name": "[629](10)三门3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601007006026629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220554", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060115", + "name": "[628](10)三门消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603068005026628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220555", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060116", + "name": "[627](10)三门客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601001005026627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220556", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060117", + "name": "[626](10)三门内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062603021005026626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220557", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-12-30 09:18:48", + "echoMap": {}, + "deviceId": "1026060118", + "name": "[625](10)三门1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055004026625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220558", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-12-30 09:18:48", + "echoMap": {}, + "deviceId": "1026060119", + "name": "[624](10)三门1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220559", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-23 01:49:08", + "echoMap": {}, + "deviceId": "1026060120", + "name": "[504](10)三门安检3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601085006026504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220560", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-12-30 09:19:59", + "echoMap": {}, + "deviceId": "1026060121", + "name": "[344](10)三门1#口扶梯2-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220561", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060122", + "name": "[352](10)三门1#口联通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220562", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1026060123", + "name": "[345](10)三门1#口扶梯2-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220563", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-12-05 23:05:25", + "echoMap": {}, + "deviceId": "1026060124", + "name": "[350](10)三门1#口楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220564", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-12-05 23:10:25", + "echoMap": {}, + "deviceId": "1026060125", + "name": "[353](10)三门1#口联通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220565", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060126", + "name": "[346](10)三门1#口扶梯2-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220566", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1026060127", + "name": "[402](10)三门2#闸出", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220567", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060128", + "name": "[637](10)三门1#口联通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026637", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220568", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-12-15 13:54:25", + "echoMap": {}, + "deviceId": "1026060129", + "name": "[636](10)三门1#口联通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.180.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601040006026636", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220569", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060130", + "name": "[351](10)三门1#口联通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410504167220570", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1026060131", + "name": "[333](10)三门1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.179.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062601055006026333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046142820031577", + "createdBy": "0", + "createdTime": "2025-02-28 14:06:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1026070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.179.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062600000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112132\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4442286\",\"inUcastPkts\":\"725578443\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:67:1d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1485467200\",\"outQLen\":\"0\",\"outUcastPkts\":\"261845125\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.179.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:08\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZ43A8D\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"6\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046142820031629", + "createdBy": "2", + "createdTime": "2025-02-28 14:09:35", + "updatedBy": null, + "updatedTime": "2025-12-23 10:28:07", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.179.51", + "manageUrl": "http:\\\\10.18.179.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031754", + "createdBy": "2", + "createdTime": "2025-02-28 14:09:55", + "updatedBy": null, + "updatedTime": "2026-01-29 11:36:08", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.179.52", + "manageUrl": "http:\\\\10.18.179.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046142820031582", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1026090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.179.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"2.13\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"132 days, 12:15:34.86\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10852231\",\"inErrors\":\"230\",\"inNUcastPkts\":\"29013941\",\"inOctets\":\"1203691510\",\"inUcastPkts\":\"3060752328\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"1 day, 23:31:34.01\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:3b:b4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1194707609\",\"outQLen\":\"0\",\"outUcastPkts\":\"3229542235\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.179.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046142820031578", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 14:07:19", + "echoMap": {}, + "deviceId": "1026050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.179.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062600000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.179.22;10.18.179.23" + }, + { + "id": "585046142820031579", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1026050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.179.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062600000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"6727327\",\"inErrors\":\"0\",\"inNUcastPkts\":\"34118192\",\"inOctets\":\"226169202\",\"inUcastPkts\":\"2200107923\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:73:19\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2847752866\",\"outQLen\":\"0\",\"outUcastPkts\":\"263776715\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4390\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4370\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.179.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:08\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":814657959,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"55\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.179.22" + }, + { + "id": "585046142820031580", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:10", + "echoMap": {}, + "deviceId": "1026050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.179.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062600000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"6725107\",\"inErrors\":\"37\",\"inNUcastPkts\":\"43425574\",\"inOctets\":\"419583138\",\"inUcastPkts\":\"2542164228\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1a:0a:b7:40\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1046962630\",\"outQLen\":\"0\",\"outUcastPkts\":\"273854036\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4330\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.179.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:09\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":814657959,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node17923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"57\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:35:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.179.23" + } + ], + "ndmSecurityBox": [ + { + "id": "585046142820031600", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1026030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7441096\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"414038107\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7441101\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:e5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23600002,\"status\":1,\"voltage\":26.013},{\"current\":0.254,\"status\":1,\"voltage\":26.013},{\"current\":0.224,\"status\":1,\"voltage\":26.013},{\"current\":0.22000001,\"status\":1,\"voltage\":26.013},{\"current\":0.23600002,\"status\":1,\"voltage\":26.013},{\"current\":0.26900002,\"status\":1,\"voltage\":26.013},{\"current\":0.23200001,\"status\":1,\"voltage\":26.013},{\"current\":0.22500001,\"status\":1,\"voltage\":26.013},{\"current\":0.22600001,\"status\":1,\"voltage\":26.013},{\"current\":0.22500001,\"status\":1,\"voltage\":26.324001},{\"current\":0.003,\"status\":1,\"voltage\":26.324001},{\"current\":0.001,\"status\":1,\"voltage\":26.324001},{\"current\":0.001,\"status\":1,\"voltage\":26.324001},{\"current\":0.001,\"status\":1,\"voltage\":26.324001},{\"current\":0.001,\"status\":1,\"voltage\":26.324001},{\"current\":0.001,\"status\":1,\"voltage\":26.324001}],\"fanSpeeds\":[3450,3510],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":31}],\"stCommonInfo\":{\"设备ID\":\"0022512208302097\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031601", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1026030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7252328\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"403453845\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7252333\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:d4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22500001,\"status\":1,\"voltage\":26.876001},{\"current\":0.273,\"status\":1,\"voltage\":26.876001},{\"current\":0.24100001,\"status\":1,\"voltage\":26.876001},{\"current\":0.266,\"status\":1,\"voltage\":26.876001},{\"current\":0.238,\"status\":1,\"voltage\":26.876001},{\"current\":0.001,\"status\":1,\"voltage\":26.876001},{\"current\":0.001,\"status\":1,\"voltage\":26.876001},{\"current\":0.001,\"status\":1,\"voltage\":26.876001},{\"current\":0.001,\"status\":1,\"voltage\":26.876001},{\"current\":0.001,\"status\":1,\"voltage\":26.371002},{\"current\":0.002,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002},{\"current\":0.001,\"status\":1,\"voltage\":26.371002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302096\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031602", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1026030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7248325\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"403228474\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7248330\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:bd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.523,\"status\":1,\"voltage\":26.502},{\"current\":0.256,\"status\":1,\"voltage\":26.502},{\"current\":0.27400002,\"status\":1,\"voltage\":26.502},{\"current\":0.25500003,\"status\":1,\"voltage\":26.502},{\"current\":0.29700002,\"status\":1,\"voltage\":26.502},{\"current\":0.31800002,\"status\":1,\"voltage\":26.502},{\"current\":0.53300005,\"status\":1,\"voltage\":26.502},{\"current\":0.333,\"status\":1,\"voltage\":26.502},{\"current\":0.324,\"status\":1,\"voltage\":26.502},{\"current\":0.24900001,\"status\":1,\"voltage\":26.794},{\"current\":0.002,\"status\":1,\"voltage\":26.794},{\"current\":0.291,\"status\":1,\"voltage\":26.794},{\"current\":0.264,\"status\":1,\"voltage\":26.794},{\"current\":0.254,\"status\":1,\"voltage\":26.794},{\"current\":0.22800002,\"status\":1,\"voltage\":26.794},{\"current\":0.001,\"status\":1,\"voltage\":26.794}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208302085\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031603", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:09", + "echoMap": {}, + "deviceId": "1026030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7248162\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"403218725\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7248167\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:7e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.223,\"status\":1,\"voltage\":25.857},{\"current\":0.323,\"status\":1,\"voltage\":25.857},{\"current\":0.42100003,\"status\":1,\"voltage\":25.857},{\"current\":0.231,\"status\":1,\"voltage\":25.857},{\"current\":0.526,\"status\":1,\"voltage\":25.857},{\"current\":0.24300002,\"status\":1,\"voltage\":25.857},{\"current\":0.29500002,\"status\":1,\"voltage\":25.857},{\"current\":0.30900002,\"status\":1,\"voltage\":25.857},{\"current\":0.26700002,\"status\":1,\"voltage\":25.857},{\"current\":0.22700001,\"status\":1,\"voltage\":26.558},{\"current\":0.002,\"status\":1,\"voltage\":26.558},{\"current\":0.216,\"status\":1,\"voltage\":26.558},{\"current\":0.22600001,\"status\":1,\"voltage\":26.558},{\"current\":0.22100002,\"status\":1,\"voltage\":26.558},{\"current\":0.001,\"status\":1,\"voltage\":26.558},{\"current\":0.001,\"status\":1,\"voltage\":26.558}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302095\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031604", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:10", + "echoMap": {}, + "deviceId": "1026030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7247673\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"403191318\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7247678\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:a6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.507,\"status\":1,\"voltage\":26.045002},{\"current\":0.24100001,\"status\":1,\"voltage\":26.045002},{\"current\":0.252,\"status\":1,\"voltage\":26.045002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.045002},{\"current\":0.28800002,\"status\":1,\"voltage\":26.045002},{\"current\":0.31300002,\"status\":1,\"voltage\":26.045002},{\"current\":0.518,\"status\":1,\"voltage\":26.045002},{\"current\":0.513,\"status\":1,\"voltage\":26.045002},{\"current\":0.31,\"status\":1,\"voltage\":26.045002},{\"current\":0.24000001,\"status\":1,\"voltage\":26.702002},{\"current\":0.003,\"status\":1,\"voltage\":26.702002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.702002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.702002},{\"current\":0.296,\"status\":1,\"voltage\":26.702002},{\"current\":0.001,\"status\":1,\"voltage\":26.702002},{\"current\":0.0,\"status\":1,\"voltage\":26.702002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301996\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031605", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:10", + "echoMap": {}, + "deviceId": "1026030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7238708\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"402687994\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7238713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:7b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.41400003,\"status\":1,\"voltage\":26.37},{\"current\":0.24300002,\"status\":1,\"voltage\":26.37},{\"current\":0.30900002,\"status\":1,\"voltage\":26.37},{\"current\":0.29700002,\"status\":1,\"voltage\":26.37},{\"current\":0.31100002,\"status\":1,\"voltage\":26.37},{\"current\":0.31100002,\"status\":1,\"voltage\":26.37},{\"current\":0.50100005,\"status\":1,\"voltage\":26.37},{\"current\":0.24800001,\"status\":1,\"voltage\":26.37},{\"current\":0.24800001,\"status\":1,\"voltage\":26.37},{\"current\":0.21200001,\"status\":1,\"voltage\":26.384},{\"current\":0.003,\"status\":1,\"voltage\":26.384},{\"current\":0.28800002,\"status\":1,\"voltage\":26.384},{\"current\":0.28,\"status\":1,\"voltage\":26.384},{\"current\":0.26200002,\"status\":1,\"voltage\":26.384},{\"current\":0.264,\"status\":1,\"voltage\":26.384},{\"current\":0.273,\"status\":1,\"voltage\":26.384}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302099\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031606", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:11", + "echoMap": {}, + "deviceId": "1026030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7246471\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"403123956\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7246476\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:0a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24100001,\"status\":1,\"voltage\":26.919},{\"current\":0.22600001,\"status\":1,\"voltage\":26.919},{\"current\":0.23300001,\"status\":1,\"voltage\":26.919},{\"current\":0.22500001,\"status\":1,\"voltage\":26.919},{\"current\":0.505,\"status\":1,\"voltage\":26.919},{\"current\":0.22900002,\"status\":1,\"voltage\":26.919},{\"current\":0.22000001,\"status\":1,\"voltage\":26.919},{\"current\":0.32000002,\"status\":1,\"voltage\":26.919},{\"current\":0.22200002,\"status\":1,\"voltage\":26.919},{\"current\":0.26000002,\"status\":1,\"voltage\":26.717001},{\"current\":0.003,\"status\":1,\"voltage\":26.717001},{\"current\":0.24700001,\"status\":1,\"voltage\":26.717001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.717001},{\"current\":0.279,\"status\":1,\"voltage\":26.717001},{\"current\":0.215,\"status\":1,\"voltage\":26.717001},{\"current\":0.001,\"status\":1,\"voltage\":26.717001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301995\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031607", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:11", + "echoMap": {}, + "deviceId": "1026030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6580034\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"366215275\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6580039\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:30\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.21700001,\"status\":1,\"voltage\":25.601002},{\"current\":0.26500002,\"status\":1,\"voltage\":25.601002},{\"current\":0.23600002,\"status\":1,\"voltage\":25.601002},{\"current\":0.24700001,\"status\":1,\"voltage\":25.601002},{\"current\":0.56,\"status\":1,\"voltage\":25.601002},{\"current\":0.23900001,\"status\":1,\"voltage\":25.601002},{\"current\":0.246,\"status\":1,\"voltage\":25.601002},{\"current\":0.514,\"status\":1,\"voltage\":25.601002},{\"current\":0.51600003,\"status\":1,\"voltage\":25.601002},{\"current\":0.23700002,\"status\":1,\"voltage\":25.825},{\"current\":0.003,\"status\":1,\"voltage\":25.825},{\"current\":0.26000002,\"status\":1,\"voltage\":25.825},{\"current\":0.266,\"status\":1,\"voltage\":25.825},{\"current\":0.252,\"status\":1,\"voltage\":25.825},{\"current\":0.001,\"status\":1,\"voltage\":25.825},{\"current\":0.001,\"status\":1,\"voltage\":25.825}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300048\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031608", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:11", + "echoMap": {}, + "deviceId": "1026030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2989135\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164389813\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2989140\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:59\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.55,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":1,\"voltage\":25.945002},{\"current\":0.001,\"status\":0,\"voltage\":25.945002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302372\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:11", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031609", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:12", + "echoMap": {}, + "deviceId": "1026030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2988973\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164381385\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2988978\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:2a:bb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.546,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":1,\"voltage\":25.877},{\"current\":0.001,\"status\":0,\"voltage\":25.877},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0020512208302371\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031610", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:20", + "echoMap": {}, + "deviceId": "1026030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031611", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:28", + "echoMap": {}, + "deviceId": "1026030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031612", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:28", + "echoMap": {}, + "deviceId": "1026030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2819319\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"155001185\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2819324\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:aa\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24100001,\"status\":1,\"voltage\":26.708002},{\"current\":0.001,\"status\":1,\"voltage\":26.708002},{\"current\":0.30600002,\"status\":1,\"voltage\":26.708002},{\"current\":0.537,\"status\":1,\"voltage\":26.708002},{\"current\":0.246,\"status\":1,\"voltage\":26.708002},{\"current\":0.30400002,\"status\":1,\"voltage\":26.708002},{\"current\":0.3,\"status\":1,\"voltage\":26.708002},{\"current\":0.22800002,\"status\":1,\"voltage\":26.708002},{\"current\":0.28100002,\"status\":1,\"voltage\":26.708002},{\"current\":0.27600002,\"status\":1,\"voltage\":26.713001},{\"current\":0.003,\"status\":1,\"voltage\":26.713001},{\"current\":0.256,\"status\":1,\"voltage\":26.713001},{\"current\":0.256,\"status\":1,\"voltage\":26.713001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.713001},{\"current\":0.24000001,\"status\":1,\"voltage\":26.713001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.713001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0012512208303577\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046142820031613", + "createdBy": "0", + "createdTime": "2025-02-28 14:07:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:29", + "echoMap": {}, + "deviceId": "1026030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.180.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3543817\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"195549118\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3543822\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:c1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22200002,\"status\":1,\"voltage\":27.208002},{\"current\":0.001,\"status\":1,\"voltage\":27.208002},{\"current\":0.23400001,\"status\":1,\"voltage\":27.208002},{\"current\":0.24200001,\"status\":1,\"voltage\":27.208002},{\"current\":0.24800001,\"status\":1,\"voltage\":27.208002},{\"current\":0.24100001,\"status\":1,\"voltage\":27.208002},{\"current\":0.24800001,\"status\":1,\"voltage\":27.208002},{\"current\":0.27600002,\"status\":1,\"voltage\":27.208002},{\"current\":0.28800002,\"status\":1,\"voltage\":27.208002},{\"current\":0.28300002,\"status\":1,\"voltage\":27.29},{\"current\":0.002,\"status\":1,\"voltage\":27.29},{\"current\":0.23200001,\"status\":1,\"voltage\":27.29},{\"current\":0.22900002,\"status\":1,\"voltage\":27.29},{\"current\":0.23900001,\"status\":1,\"voltage\":27.29},{\"current\":0.231,\"status\":1,\"voltage\":27.29},{\"current\":0.23700002,\"status\":1,\"voltage\":27.29}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0012512208303584\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389130831566598", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1026040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"1\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"10749\",\"inUnknownProtos\":\"3299730008\",\"index\":\"634\",\"lastChange\":\"0:03:01.46\",\"mTU\":\"1500\",\"macAddress\":\"10:b6:5e:a4:0f:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"407492064\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"2226394\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.144\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":422084,\"inBytes\":4070755131,\"inFlow\":411690,\"lastChangeTime\":\"0:01:19.66\",\"lastInBytes\":4070755131,\"lastOutBytes\":2299881504,\"outBytes\":2299881504,\"outFlow\":10394,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":919653,\"inBytes\":3232389569,\"inFlow\":897384,\"lastChangeTime\":\"0:01:19.78\",\"lastInBytes\":3232389569,\"lastOutBytes\":792010584,\"outBytes\":792010584,\"outFlow\":22269,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":421983,\"inBytes\":2604370807,\"inFlow\":411992,\"lastChangeTime\":\"0:26:08.15\",\"lastInBytes\":2604370807,\"lastOutBytes\":3055860960,\"outBytes\":3055860960,\"outFlow\":9990,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":424068,\"inBytes\":1386210563,\"inFlow\":413847,\"lastChangeTime\":\"0:01:20.11\",\"lastInBytes\":1386210563,\"lastOutBytes\":3725697974,\"outBytes\":3725697974,\"outFlow\":10220,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":422016,\"inBytes\":899219707,\"inFlow\":411832,\"lastChangeTime\":\"0:26:09.34\",\"lastInBytes\":899219707,\"lastOutBytes\":3299730008,\"outBytes\":3299730008,\"outFlow\":10183,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421420,\"inBytes\":3123409630,\"inFlow\":411390,\"lastChangeTime\":\"0:01:20.25\",\"lastInBytes\":3123409630,\"lastOutBytes\":3059258027,\"outBytes\":3059258027,\"outFlow\":10029,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":423092,\"inBytes\":1273887821,\"inFlow\":412929,\"lastChangeTime\":\"0:01:20.39\",\"lastInBytes\":1273887821,\"lastOutBytes\":3082492567,\"outBytes\":3082492567,\"outFlow\":10162,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":915877,\"inBytes\":3546520265,\"inFlow\":893676,\"lastChangeTime\":\"0:01:20.32\",\"lastInBytes\":3546520265,\"lastOutBytes\":854195192,\"outBytes\":854195192,\"outFlow\":22201,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":915626,\"inBytes\":1016897130,\"inFlow\":893439,\"lastChangeTime\":\"0:01:20.46\",\"lastInBytes\":1016897130,\"lastOutBytes\":2923293316,\"outBytes\":2923293316,\"outFlow\":22186,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":342,\"inBytes\":186486009,\"inFlow\":126,\"lastChangeTime\":\"0:50:59.50\",\"lastInBytes\":186486009,\"lastOutBytes\":1707431347,\"outBytes\":1707431347,\"outFlow\":216,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":914746,\"inBytes\":3122378711,\"inFlow\":892210,\"lastChangeTime\":\"0:01:20.68\",\"lastInBytes\":3122378711,\"lastOutBytes\":1468214482,\"outBytes\":1468214482,\"outFlow\":22536,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":913418,\"inBytes\":3398317728,\"inFlow\":891234,\"lastChangeTime\":\"23 days, 6:39:34.85\",\"lastInBytes\":3398317728,\"lastOutBytes\":3866018935,\"outBytes\":3866018935,\"outFlow\":22183,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":914413,\"inBytes\":531093533,\"inFlow\":892137,\"lastChangeTime\":\"0:01:20.88\",\"lastInBytes\":531093533,\"lastOutBytes\":885023774,\"outBytes\":885023774,\"outFlow\":22275,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":421122,\"inBytes\":2697445785,\"inFlow\":411041,\"lastChangeTime\":\"0:04:10.64\",\"lastInBytes\":2697445785,\"lastOutBytes\":1686950682,\"outBytes\":1686950682,\"outFlow\":10080,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":420968,\"inBytes\":202762950,\"inFlow\":410920,\"lastChangeTime\":\"0:01:21.10\",\"lastInBytes\":202762950,\"lastOutBytes\":3356413142,\"outBytes\":3356413142,\"outFlow\":10048,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":1125078,\"inBytes\":150725980,\"inFlow\":1098923,\"lastChangeTime\":\"0:05:54.96\",\"lastInBytes\":150725980,\"lastOutBytes\":3026836722,\"outBytes\":3026836722,\"outFlow\":26154,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.98\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10011145,\"inBytes\":1323216721,\"inFlow\":235680,\"lastChangeTime\":\"0:04:18.69\",\"lastInBytes\":1323216721,\"lastOutBytes\":728637172,\"outBytes\":728637172,\"outFlow\":9775464,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.342981000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566599", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1026040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"29786\",\"inUnknownProtos\":\"1351629470\",\"index\":\"634\",\"lastChange\":\"0:01:19.46\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:5d:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2302339366\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23534124\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.143\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":424813,\"inBytes\":3938778175,\"inFlow\":414553,\"lastChangeTime\":\"18 days, 9:07:57.21\",\"lastInBytes\":3938778175,\"lastOutBytes\":613103975,\"outBytes\":613103975,\"outFlow\":10260,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":420290,\"inBytes\":150194442,\"inFlow\":411628,\"lastChangeTime\":\"18 days, 8:30:38.99\",\"lastInBytes\":150194442,\"lastOutBytes\":3210498205,\"outBytes\":3210498205,\"outFlow\":8661,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1059199,\"inBytes\":1533850848,\"inFlow\":1034584,\"lastChangeTime\":\"0:01:19.60\",\"lastInBytes\":1533850848,\"lastOutBytes\":481989628,\"outBytes\":481989628,\"outFlow\":24615,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":415456,\"inBytes\":1002123001,\"inFlow\":407209,\"lastChangeTime\":\"0:01:20.43\",\"lastInBytes\":1002123001,\"lastOutBytes\":1186880640,\"outBytes\":1186880640,\"outFlow\":8247,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":839406,\"inBytes\":2866099199,\"inFlow\":819994,\"lastChangeTime\":\"18 days, 9:08:05.45\",\"lastInBytes\":2866099199,\"lastOutBytes\":1351629470,\"outBytes\":1351629470,\"outFlow\":19412,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421108,\"inBytes\":1504244178,\"inFlow\":412662,\"lastChangeTime\":\"18 days, 8:30:33.12\",\"lastInBytes\":1504244178,\"lastOutBytes\":4140351163,\"outBytes\":4140351163,\"outFlow\":8445,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":911307,\"inBytes\":1473646753,\"inFlow\":894588,\"lastChangeTime\":\"18 days, 8:30:41.18\",\"lastInBytes\":1473646753,\"lastOutBytes\":2339347109,\"outBytes\":2339347109,\"outFlow\":16718,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":841894,\"inBytes\":1016130146,\"inFlow\":822465,\"lastChangeTime\":\"0:01:20.18\",\"lastInBytes\":1016130146,\"lastOutBytes\":219443845,\"outBytes\":219443845,\"outFlow\":19429,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":909762,\"inBytes\":193178318,\"inFlow\":891984,\"lastChangeTime\":\"18 days, 8:30:25.54\",\"lastInBytes\":193178318,\"lastOutBytes\":1006502775,\"outBytes\":1006502775,\"outFlow\":17778,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":842014,\"inBytes\":9199101,\"inFlow\":822628,\"lastChangeTime\":\"36 days, 6:59:25.03\",\"lastInBytes\":9199101,\"lastOutBytes\":1282283779,\"outBytes\":1282283779,\"outFlow\":19385,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":841676,\"inBytes\":2222251443,\"inFlow\":822245,\"lastChangeTime\":\"18 days, 9:08:12.24\",\"lastInBytes\":2222251443,\"lastOutBytes\":4293482634,\"outBytes\":4293482634,\"outFlow\":19431,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":911512,\"inBytes\":3028804485,\"inFlow\":889146,\"lastChangeTime\":\"18 days, 9:08:01.92\",\"lastInBytes\":3028804485,\"lastOutBytes\":4140956081,\"outBytes\":4140956081,\"outFlow\":22365,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":422020,\"inBytes\":2345550775,\"inFlow\":411587,\"lastChangeTime\":\"18 days, 9:07:59.81\",\"lastInBytes\":2345550775,\"lastOutBytes\":1649727529,\"outBytes\":1649727529,\"outFlow\":10433,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":914990,\"inBytes\":383533100,\"inFlow\":892439,\"lastChangeTime\":\"18 days, 9:08:03.71\",\"lastInBytes\":383533100,\"lastOutBytes\":3284765891,\"outBytes\":3284765891,\"outFlow\":22550,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":421007,\"inBytes\":3053604899,\"inFlow\":410659,\"lastChangeTime\":\"36 days, 6:58:59.99\",\"lastInBytes\":3053604899,\"lastOutBytes\":331553508,\"outBytes\":331553508,\"outFlow\":10348,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":345,\"inBytes\":1012565850,\"inFlow\":126,\"lastChangeTime\":\"36 days, 7:02:22.57\",\"lastInBytes\":1012565850,\"lastOutBytes\":2142757041,\"outBytes\":2142757041,\"outFlow\":218,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.09\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10633422,\"inBytes\":3828587565,\"inFlow\":247962,\"lastChangeTime\":\"0:01:19.71\",\"lastInBytes\":3828587565,\"lastOutBytes\":3254690434,\"outBytes\":3254690434,\"outFlow\":10385459,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.391049000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566600", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1026040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif180\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"4 days, 13:05:33.99\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:1c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"30\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:31\",\"info\":{\"portInfoList\":[{\"flow\":409065,\"inBytes\":3187433763,\"inFlow\":399800,\"lastChangeTime\":\"115 days, 14:09:57.54\",\"lastInBytes\":3187433763,\"lastOutBytes\":1291457863,\"outBytes\":1291457863,\"outFlow\":9265,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":87,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":1705244350,\"outBytes\":1705244350,\"outFlow\":87,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408382,\"inBytes\":1669899959,\"inFlow\":10159,\"lastChangeTime\":\"4 days, 12:57:53.00\",\"lastInBytes\":1669899959,\"lastOutBytes\":1219044128,\"outBytes\":1219044128,\"outFlow\":398223,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:59.889077000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566601", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:33", + "echoMap": {}, + "deviceId": "1026040012", + "name": "华为前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif180\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"4 days, 12:55:46.93\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:d0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":406367,\"inBytes\":4085457470,\"inFlow\":397070,\"lastChangeTime\":\"115 days, 14:09:30.96\",\"lastInBytes\":4085457470,\"lastOutBytes\":1518487262,\"outBytes\":1518487262,\"outFlow\":9296,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":93,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":1715174999,\"outBytes\":1715174999,\"outFlow\":93,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409103,\"inBytes\":937949276,\"inFlow\":10244,\"lastChangeTime\":\"4 days, 12:50:13.51\",\"lastInBytes\":937949276,\"lastOutBytes\":265571213,\"outBytes\":265571213,\"outFlow\":398859,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:59.578501000\"}}", + "lastDiagTime": "2026-02-02 14:38:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566602", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1026040011", + "name": "华为前端交换机10", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif180\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"4 days, 12:48:35.52\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:48\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"17\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.140\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406808,\"inBytes\":2499932848,\"inFlow\":397483,\"lastChangeTime\":\"115 days, 14:09:22.04\",\"lastInBytes\":2499932848,\"lastOutBytes\":458912182,\"outBytes\":458912182,\"outFlow\":9324,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":329,\"inBytes\":297409630,\"inFlow\":122,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":297409630,\"lastOutBytes\":2016561117,\"outBytes\":2016561117,\"outFlow\":206,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":408931,\"inBytes\":138123892,\"inFlow\":10381,\"lastChangeTime\":\"4 days, 12:42:13.44\",\"lastInBytes\":138123892,\"lastOutBytes\":3526262811,\"outBytes\":3526262811,\"outFlow\":398550,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:03.455453000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566603", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1026040010", + "name": "华为前端交换机9", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif180\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"4 days, 12:37:54.03\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:d4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.139\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:43\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406807,\"inBytes\":3570169302,\"inFlow\":397461,\"lastChangeTime\":\"115 days, 14:09:45.43\",\"lastInBytes\":3570169302,\"lastOutBytes\":63689026,\"outBytes\":63689026,\"outFlow\":9346,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":333,\"inBytes\":297424588,\"inFlow\":122,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":297424588,\"lastOutBytes\":1971631760,\"outBytes\":1971631760,\"outFlow\":211,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":413017,\"inBytes\":2799146239,\"inFlow\":10254,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2799146239,\"lastOutBytes\":3909442778,\"outBytes\":3909442778,\"outFlow\":402763,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:01.992753000\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566604", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1026040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"62774\",\"inUnknownProtos\":\"238529404\",\"index\":\"634\",\"lastChange\":\"0:01:18.05\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:b3:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2006160562\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"48235432\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":422353,\"inBytes\":3436934119,\"inFlow\":411971,\"lastChangeTime\":\"0:01:17.53\",\"lastInBytes\":3436934119,\"lastOutBytes\":173209331,\"outBytes\":173209331,\"outFlow\":10381,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":912966,\"inBytes\":1343340824,\"inFlow\":890314,\"lastChangeTime\":\"124 days, 14:37:49.80\",\"lastInBytes\":1343340824,\"lastOutBytes\":2249177637,\"outBytes\":2249177637,\"outFlow\":22652,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":914406,\"inBytes\":4183549287,\"inFlow\":891297,\"lastChangeTime\":\"124 days, 14:37:52.69\",\"lastInBytes\":4183549287,\"lastOutBytes\":1504115507,\"outBytes\":1504115507,\"outFlow\":23109,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":913739,\"inBytes\":3584105864,\"inFlow\":890912,\"lastChangeTime\":\"124 days, 14:37:57.97\",\"lastInBytes\":3584105864,\"lastOutBytes\":3113965158,\"outBytes\":3113965158,\"outFlow\":22826,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1169873,\"inBytes\":1345398207,\"inFlow\":1142834,\"lastChangeTime\":\"0:01:18.03\",\"lastInBytes\":1345398207,\"lastOutBytes\":238529404,\"outBytes\":238529404,\"outFlow\":27039,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":422579,\"inBytes\":4170585802,\"inFlow\":412182,\"lastChangeTime\":\"0:01:18.04\",\"lastInBytes\":4170585802,\"lastOutBytes\":699564985,\"outBytes\":699564985,\"outFlow\":10396,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":917698,\"inBytes\":2005616187,\"inFlow\":895010,\"lastChangeTime\":\"98 days, 5:15:51.46\",\"lastInBytes\":2005616187,\"lastOutBytes\":392599291,\"outBytes\":392599291,\"outFlow\":22687,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1124629,\"inBytes\":452151879,\"inFlow\":1098221,\"lastChangeTime\":\"0:01:18.86\",\"lastInBytes\":452151879,\"lastOutBytes\":636450112,\"outBytes\":636450112,\"outFlow\":26408,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1033095,\"inBytes\":61311065,\"inFlow\":1008988,\"lastChangeTime\":\"0:01:18.87\",\"lastInBytes\":61311065,\"lastOutBytes\":436855344,\"outBytes\":436855344,\"outFlow\":24107,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":914719,\"inBytes\":1501517350,\"inFlow\":891894,\"lastChangeTime\":\"124 days, 14:37:47.04\",\"lastInBytes\":1501517350,\"lastOutBytes\":1717947120,\"outBytes\":1717947120,\"outFlow\":22824,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":915755,\"inBytes\":1240267416,\"inFlow\":893055,\"lastChangeTime\":\"124 days, 14:37:49.83\",\"lastInBytes\":1240267416,\"lastOutBytes\":3995958958,\"outBytes\":3995958958,\"outFlow\":22700,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":917902,\"inBytes\":2331158478,\"inFlow\":895098,\"lastChangeTime\":\"124 days, 14:37:56.62\",\"lastInBytes\":2331158478,\"lastOutBytes\":2835614877,\"outBytes\":2835614877,\"outFlow\":22803,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":916046,\"inBytes\":1124329360,\"inFlow\":893440,\"lastChangeTime\":\"124 days, 14:37:52.24\",\"lastInBytes\":1124329360,\"lastOutBytes\":1655857342,\"outBytes\":1655857342,\"outFlow\":22606,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":100,\"inBytes\":680988922,\"inFlow\":1,\"lastChangeTime\":\"0:01:19.21\",\"lastInBytes\":680988922,\"lastOutBytes\":2273532973,\"outBytes\":2273532973,\"outFlow\":99,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":11516167,\"inBytes\":1957381049,\"inFlow\":272370,\"lastChangeTime\":\"0:01:18.03\",\"lastInBytes\":1957381049,\"lastOutBytes\":405675135,\"outBytes\":405675135,\"outFlow\":11243796,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.334589000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566605", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1026040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"132848\",\"inUnknownProtos\":\"959224746\",\"index\":\"634\",\"lastChange\":\"0:01:18.68\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:be:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"215625130\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"199849642\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":422756,\"inBytes\":3992205148,\"inFlow\":412266,\"lastChangeTime\":\"115 days, 14:19:39.95\",\"lastInBytes\":3992205148,\"lastOutBytes\":3613021526,\"outBytes\":3613021526,\"outFlow\":10490,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":914905,\"inBytes\":3132935152,\"inFlow\":892137,\"lastChangeTime\":\"346 days, 23:44:10.00\",\"lastInBytes\":3132935152,\"lastOutBytes\":4015075428,\"outBytes\":4015075428,\"outFlow\":22768,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":916823,\"inBytes\":602800020,\"inFlow\":893738,\"lastChangeTime\":\"346 days, 23:43:54.08\",\"lastInBytes\":602800020,\"lastOutBytes\":3831219114,\"outBytes\":3831219114,\"outFlow\":23085,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":912230,\"inBytes\":4071212242,\"inFlow\":889355,\"lastChangeTime\":\"346 days, 23:43:58.24\",\"lastInBytes\":4071212242,\"lastOutBytes\":489136156,\"outBytes\":489136156,\"outFlow\":22874,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1017331,\"inBytes\":2595429640,\"inFlow\":993769,\"lastChangeTime\":\"115 days, 14:19:24.54\",\"lastInBytes\":2595429640,\"lastOutBytes\":959224746,\"outBytes\":959224746,\"outFlow\":23561,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421650,\"inBytes\":3812210935,\"inFlow\":411288,\"lastChangeTime\":\"352 days, 22:59:39.78\",\"lastInBytes\":3812210935,\"lastOutBytes\":2271804099,\"outBytes\":2271804099,\"outFlow\":10361,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":282098,\"inBytes\":1718218161,\"inFlow\":274975,\"lastChangeTime\":\"115 days, 14:19:46.58\",\"lastInBytes\":1718218161,\"lastOutBytes\":1342195980,\"outBytes\":1342195980,\"outFlow\":7122,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":422152,\"inBytes\":3074849533,\"inFlow\":411876,\"lastChangeTime\":\"115 days, 14:19:40.44\",\"lastInBytes\":3074849533,\"lastOutBytes\":1649453273,\"outBytes\":1649453273,\"outFlow\":10276,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":421277,\"inBytes\":3063464887,\"inFlow\":410988,\"lastChangeTime\":\"115 days, 14:19:41.30\",\"lastInBytes\":3063464887,\"lastOutBytes\":4100177738,\"outBytes\":4100177738,\"outFlow\":10288,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":915861,\"inBytes\":2509682227,\"inFlow\":893398,\"lastChangeTime\":\"115 days, 14:19:40.87\",\"lastInBytes\":2509682227,\"lastOutBytes\":1984699631,\"outBytes\":1984699631,\"outFlow\":22462,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":422496,\"inBytes\":636372255,\"inFlow\":412049,\"lastChangeTime\":\"115 days, 14:19:40.25\",\"lastInBytes\":636372255,\"lastOutBytes\":1477047026,\"outBytes\":1477047026,\"outFlow\":10446,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":917032,\"inBytes\":1044864440,\"inFlow\":894474,\"lastChangeTime\":\"346 days, 23:44:08.97\",\"lastInBytes\":1044864440,\"lastOutBytes\":2984467358,\"outBytes\":2984467358,\"outFlow\":22558,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":918083,\"inBytes\":999549865,\"inFlow\":895203,\"lastChangeTime\":\"346 days, 23:44:10.58\",\"lastInBytes\":999549865,\"lastOutBytes\":1622964662,\"outBytes\":1622964662,\"outFlow\":22880,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":281458,\"inBytes\":3413979679,\"inFlow\":274677,\"lastChangeTime\":\"208 days, 8:08:44.02\",\"lastInBytes\":3413979679,\"lastOutBytes\":3645660256,\"outBytes\":3645660256,\"outFlow\":6781,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":96,\"inBytes\":753153103,\"inFlow\":1,\"lastChangeTime\":\"0:01:19.82\",\"lastInBytes\":753153103,\"lastOutBytes\":172585729,\"outBytes\":172585729,\"outFlow\":94,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8574961,\"inBytes\":2121063537,\"inFlow\":218845,\"lastChangeTime\":\"0:01:18.68\",\"lastInBytes\":2121063537,\"lastOutBytes\":1237836221,\"outBytes\":1237836221,\"outFlow\":8356115,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.334883000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566606", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1026040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"3842010\",\"inUnknownProtos\":\"755049693\",\"index\":\"634\",\"lastChange\":\"0:01:23.73\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:c4:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"94573643\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"198525599\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":589844,\"inBytes\":3998110180,\"inFlow\":574962,\"lastChangeTime\":\"344 days, 8:15:24.41\",\"lastInBytes\":3998110180,\"lastOutBytes\":1036966223,\"outBytes\":1036966223,\"outFlow\":14882,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":393268,\"inBytes\":3400737155,\"inFlow\":383576,\"lastChangeTime\":\"239 days, 14:26:33.11\",\"lastInBytes\":3400737155,\"lastOutBytes\":3085414143,\"outBytes\":3085414143,\"outFlow\":9692,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":399242,\"inBytes\":1759580677,\"inFlow\":390289,\"lastChangeTime\":\"239 days, 14:25:58.78\",\"lastInBytes\":1759580677,\"lastOutBytes\":3902842843,\"outBytes\":3902842843,\"outFlow\":8952,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":390986,\"inBytes\":217463359,\"inFlow\":381416,\"lastChangeTime\":\"239 days, 14:25:59.67\",\"lastInBytes\":217463359,\"lastOutBytes\":1158399442,\"outBytes\":1158399442,\"outFlow\":9570,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":850394,\"inBytes\":546206939,\"inFlow\":829437,\"lastChangeTime\":\"239 days, 14:25:34.27\",\"lastInBytes\":546206939,\"lastOutBytes\":755049693,\"outBytes\":755049693,\"outFlow\":20957,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":780019,\"inBytes\":3392615539,\"inFlow\":764437,\"lastChangeTime\":\"239 days, 14:25:32.71\",\"lastInBytes\":3392615539,\"lastOutBytes\":2772711886,\"outBytes\":2772711886,\"outFlow\":15581,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1081440,\"inBytes\":1540146696,\"inFlow\":1057773,\"lastChangeTime\":\"239 days, 14:25:36.04\",\"lastInBytes\":1540146696,\"lastOutBytes\":4258914348,\"outBytes\":4258914348,\"outFlow\":23666,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":422277,\"inBytes\":2237300173,\"inFlow\":411820,\"lastChangeTime\":\"373 days, 23:59:26.33\",\"lastInBytes\":2237300173,\"lastOutBytes\":1187785874,\"outBytes\":1187785874,\"outFlow\":10457,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":391949,\"inBytes\":2974739738,\"inFlow\":382353,\"lastChangeTime\":\"239 days, 14:25:00.53\",\"lastInBytes\":2974739738,\"lastOutBytes\":2966724036,\"outBytes\":2966724036,\"outFlow\":9595,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":388627,\"inBytes\":4034953404,\"inFlow\":380758,\"lastChangeTime\":\"346 days, 23:06:20.89\",\"lastInBytes\":4034953404,\"lastOutBytes\":859001275,\"outBytes\":859001275,\"outFlow\":7869,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":848851,\"inBytes\":2753704069,\"inFlow\":828160,\"lastChangeTime\":\"346 days, 23:43:49.43\",\"lastInBytes\":2753704069,\"lastOutBytes\":2583414761,\"outBytes\":2583414761,\"outFlow\":20690,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1281274,\"inBytes\":113407541,\"inFlow\":1247993,\"lastChangeTime\":\"413 days, 0:17:12.45\",\"lastInBytes\":113407541,\"lastOutBytes\":1069309621,\"outBytes\":1069309621,\"outFlow\":33281,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":392338,\"inBytes\":4086389145,\"inFlow\":382908,\"lastChangeTime\":\"374 days, 12:21:30.59\",\"lastInBytes\":4086389145,\"lastOutBytes\":376818494,\"outBytes\":376818494,\"outFlow\":9429,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":388473,\"inBytes\":3814526799,\"inFlow\":381420,\"lastChangeTime\":\"239 days, 14:30:15.42\",\"lastInBytes\":3814526799,\"lastOutBytes\":864547765,\"outBytes\":864547765,\"outFlow\":7053,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":847045,\"inBytes\":2269070468,\"inFlow\":826313,\"lastChangeTime\":\"346 days, 23:43:51.79\",\"lastInBytes\":2269070468,\"lastOutBytes\":1140197109,\"outBytes\":1140197109,\"outFlow\":20731,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":90,\"inBytes\":754756227,\"inFlow\":1,\"lastChangeTime\":\"239 days, 15:16:24.10\",\"lastInBytes\":754756227,\"lastOutBytes\":398217140,\"outBytes\":398217140,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":10095128,\"inBytes\":1996374048,\"inFlow\":249258,\"lastChangeTime\":\"241 days, 9:26:45.79\",\"lastInBytes\":1996374048,\"lastOutBytes\":1399938075,\"outBytes\":1399938075,\"outFlow\":9845870,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.325501000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566607", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1026040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"23\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"132931\",\"inUnknownProtos\":\"2404214390\",\"index\":\"634\",\"lastChange\":\"0:01:19.68\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:b3:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1197199577\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"199849188\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":1041290,\"inBytes\":3655911650,\"inFlow\":1017137,\"lastChangeTime\":\"115 days, 14:19:22.16\",\"lastInBytes\":3655911650,\"lastOutBytes\":3078079236,\"outBytes\":3078079236,\"outFlow\":24153,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":393741,\"inBytes\":3265971655,\"inFlow\":384066,\"lastChangeTime\":\"346 days, 23:43:51.86\",\"lastInBytes\":3265971655,\"lastOutBytes\":4083848929,\"outBytes\":4083848929,\"outFlow\":9675,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":850471,\"inBytes\":638277150,\"inFlow\":829592,\"lastChangeTime\":\"346 days, 23:43:52.80\",\"lastInBytes\":638277150,\"lastOutBytes\":1338953898,\"outBytes\":1338953898,\"outFlow\":20878,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":850037,\"inBytes\":2332117045,\"inFlow\":829142,\"lastChangeTime\":\"346 days, 23:43:55.33\",\"lastInBytes\":2332117045,\"lastOutBytes\":3403451539,\"outBytes\":3403451539,\"outFlow\":20894,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":982427,\"inBytes\":3756315233,\"inFlow\":960551,\"lastChangeTime\":\"222 days, 8:20:06.40\",\"lastInBytes\":3756315233,\"lastOutBytes\":2404214390,\"outBytes\":2404214390,\"outFlow\":21876,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":993501,\"inBytes\":3018902332,\"inFlow\":972756,\"lastChangeTime\":\"222 days, 8:20:17.69\",\"lastInBytes\":3018902332,\"lastOutBytes\":1770150673,\"outBytes\":1770150673,\"outFlow\":20745,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1099287,\"inBytes\":2827298445,\"inFlow\":1073768,\"lastChangeTime\":\"222 days, 8:20:02.74\",\"lastInBytes\":2827298445,\"lastOutBytes\":4020541558,\"outBytes\":4020541558,\"outFlow\":25518,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":391671,\"inBytes\":2235616718,\"inFlow\":382165,\"lastChangeTime\":\"222 days, 8:20:02.56\",\"lastInBytes\":2235616718,\"lastOutBytes\":1450582356,\"outBytes\":1450582356,\"outFlow\":9505,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":445071,\"inBytes\":320949337,\"inFlow\":435625,\"lastChangeTime\":\"222 days, 8:20:14.54\",\"lastInBytes\":320949337,\"lastOutBytes\":1957753701,\"outBytes\":1957753701,\"outFlow\":9446,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":916664,\"inBytes\":2044697197,\"inFlow\":894208,\"lastChangeTime\":\"222 days, 8:20:12.89\",\"lastInBytes\":2044697197,\"lastOutBytes\":3949010687,\"outBytes\":3949010687,\"outFlow\":22456,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":423325,\"inBytes\":3842142099,\"inFlow\":412984,\"lastChangeTime\":\"226 days, 4:23:58.39\",\"lastInBytes\":3842142099,\"lastOutBytes\":558160919,\"outBytes\":558160919,\"outFlow\":10341,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":281621,\"inBytes\":1003308338,\"inFlow\":274789,\"lastChangeTime\":\"222 days, 8:20:17.98\",\"lastInBytes\":1003308338,\"lastOutBytes\":3416694076,\"outBytes\":3416694076,\"outFlow\":6832,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":842373,\"inBytes\":401341360,\"inFlow\":826774,\"lastChangeTime\":\"420 days, 4:04:20.28\",\"lastInBytes\":401341360,\"lastOutBytes\":1847734707,\"outBytes\":1847734707,\"outFlow\":15599,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":133996,\"inFlow\":0,\"lastChangeTime\":\"142 days, 11:56:34.78\",\"lastInBytes\":133996,\"lastOutBytes\":6902542,\"outBytes\":6902542,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":753342395,\"inFlow\":1,\"lastChangeTime\":\"142 days, 11:56:53.63\",\"lastInBytes\":753342395,\"lastOutBytes\":173632565,\"outBytes\":173632565,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9433009,\"inBytes\":1793924895,\"inFlow\":224673,\"lastChangeTime\":\"0:01:19.67\",\"lastInBytes\":1793924895,\"lastOutBytes\":1362060825,\"outBytes\":1362060825,\"outFlow\":9208335,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.331146000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566608", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1026040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133127\",\"inUnknownProtos\":\"2507530500\",\"index\":\"635\",\"lastChange\":\"0:01:20.80\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c4:ea\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1997523595\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"199843526\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":636581,\"inBytes\":1011890193,\"inFlow\":620124,\"lastChangeTime\":\"115 days, 14:19:26.93\",\"lastInBytes\":1011890193,\"lastOutBytes\":954303836,\"outBytes\":954303836,\"outFlow\":16456,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":3493088,\"inBytes\":643835190,\"inFlow\":3444790,\"lastChangeTime\":\"239 days, 15:04:00.13\",\"lastInBytes\":643835190,\"lastOutBytes\":3562393911,\"outBytes\":3562393911,\"outFlow\":48298,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":634086,\"inBytes\":3445698360,\"inFlow\":617909,\"lastChangeTime\":\"344 days, 8:37:46.02\",\"lastInBytes\":3445698360,\"lastOutBytes\":1185122683,\"outBytes\":1185122683,\"outFlow\":16177,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":421998,\"inBytes\":2475184087,\"inFlow\":411663,\"lastChangeTime\":\"115 days, 14:19:21.60\",\"lastInBytes\":2475184087,\"lastOutBytes\":1334769760,\"outBytes\":1334769760,\"outFlow\":10335,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1059966,\"inBytes\":1816279096,\"inFlow\":1034984,\"lastChangeTime\":\"115 days, 14:19:05.53\",\"lastInBytes\":1816279096,\"lastOutBytes\":2172170621,\"outBytes\":2172170621,\"outFlow\":24981,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":421888,\"inBytes\":1810059867,\"inFlow\":411555,\"lastChangeTime\":\"374 days, 6:25:02.36\",\"lastInBytes\":1810059867,\"lastOutBytes\":2507530500,\"outBytes\":2507530500,\"outFlow\":10333,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":915462,\"inBytes\":1432144464,\"inFlow\":892599,\"lastChangeTime\":\"115 days, 14:19:21.54\",\"lastInBytes\":1432144464,\"lastOutBytes\":1791033414,\"outBytes\":1791033414,\"outFlow\":22862,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":14787527,\"inBytes\":1705654471,\"inFlow\":873524,\"lastChangeTime\":\"115 days, 14:19:18.68\",\"lastInBytes\":1705654471,\"lastOutBytes\":175,\"outBytes\":175,\"outFlow\":13914002,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":422017,\"inBytes\":2033707585,\"inFlow\":411753,\"lastChangeTime\":\"115 days, 14:19:37.35\",\"lastInBytes\":2033707585,\"lastOutBytes\":1456234708,\"outBytes\":1456234708,\"outFlow\":10264,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":421889,\"inBytes\":791235377,\"inFlow\":411678,\"lastChangeTime\":\"115 days, 14:19:27.01\",\"lastInBytes\":791235377,\"lastOutBytes\":1059790360,\"outBytes\":1059790360,\"outFlow\":10211,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":281884,\"inBytes\":2861307399,\"inFlow\":274946,\"lastChangeTime\":\"115 days, 14:19:17.57\",\"lastInBytes\":2861307399,\"lastOutBytes\":766962771,\"outBytes\":766962771,\"outFlow\":6938,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":281709,\"inBytes\":1903262323,\"inFlow\":274764,\"lastChangeTime\":\"115 days, 14:19:28.55\",\"lastInBytes\":1903262323,\"lastOutBytes\":3880300002,\"outBytes\":3880300002,\"outFlow\":6945,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":281723,\"inBytes\":1871396304,\"inFlow\":274737,\"lastChangeTime\":\"115 days, 14:19:30.80\",\"lastInBytes\":1871396304,\"lastOutBytes\":4200631341,\"outBytes\":4200631341,\"outFlow\":6986,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1420030,\"inFlow\":0,\"lastChangeTime\":\"239 days, 14:17:00.71\",\"lastInBytes\":1420030,\"lastOutBytes\":171655994,\"outBytes\":171655994,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":753327552,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.60\",\"lastInBytes\":753327552,\"lastOutBytes\":179283668,\"outBytes\":179283668,\"outFlow\":97,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.83\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9556304,\"inBytes\":4281857785,\"inFlow\":204425,\"lastChangeTime\":\"239 days, 14:15:34.27\",\"lastInBytes\":4281857785,\"lastOutBytes\":1666523471,\"outBytes\":1666523471,\"outFlow\":9351879,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.435895000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566609", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1026040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"2\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"397\",\"inErrors\":\"0\",\"inNUcastPkts\":\"2\",\"inOctets\":\"0\",\"inUcastPkts\":\"134256\",\"inUnknownProtos\":\"3846184405\",\"index\":\"634\",\"lastChange\":\"0:01:24.65\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:bf:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1921327821\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"199821739\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":1056878,\"inBytes\":1133898940,\"inFlow\":1032303,\"lastChangeTime\":\"115 days, 14:18:56.01\",\"lastInBytes\":1133898940,\"lastOutBytes\":3122878048,\"outBytes\":3122878048,\"outFlow\":24575,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":391004,\"inBytes\":709995715,\"inFlow\":381385,\"lastChangeTime\":\"423 days, 9:36:38.95\",\"lastInBytes\":709995715,\"lastOutBytes\":64109092,\"outBytes\":64109092,\"outFlow\":9619,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":850801,\"inBytes\":4149578285,\"inFlow\":830333,\"lastChangeTime\":\"377 days, 10:41:30.28\",\"lastInBytes\":4149578285,\"lastOutBytes\":625340686,\"outBytes\":625340686,\"outFlow\":20467,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":849720,\"inBytes\":868315951,\"inFlow\":828680,\"lastChangeTime\":\"346 days, 23:43:06.11\",\"lastInBytes\":868315951,\"lastOutBytes\":951023899,\"outBytes\":951023899,\"outFlow\":21040,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":432286,\"inBytes\":3480823488,\"inFlow\":422453,\"lastChangeTime\":\"115 days, 14:19:08.96\",\"lastInBytes\":3480823488,\"lastOutBytes\":3846058721,\"outBytes\":3846058721,\"outFlow\":9833,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":502018,\"inBytes\":1084147925,\"inFlow\":490363,\"lastChangeTime\":\"115 days, 14:19:12.14\",\"lastInBytes\":1084147925,\"lastOutBytes\":1601567858,\"outBytes\":1601567858,\"outFlow\":11655,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1073882,\"inBytes\":3075629280,\"inFlow\":1049011,\"lastChangeTime\":\"115 days, 14:18:56.60\",\"lastInBytes\":3075629280,\"lastOutBytes\":3858384983,\"outBytes\":3858384983,\"outFlow\":24870,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":390477,\"inBytes\":2381913456,\"inFlow\":382259,\"lastChangeTime\":\"115 days, 14:19:13.65\",\"lastInBytes\":2381913456,\"lastOutBytes\":2563324935,\"outBytes\":2563324935,\"outFlow\":8217,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":439547,\"inBytes\":618998732,\"inFlow\":430308,\"lastChangeTime\":\"115 days, 14:19:06.86\",\"lastInBytes\":618998732,\"lastOutBytes\":1016867761,\"outBytes\":1016867761,\"outFlow\":9238,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":850064,\"inBytes\":3599311815,\"inFlow\":829082,\"lastChangeTime\":\"376 days, 15:31:36.65\",\"lastInBytes\":3599311815,\"lastOutBytes\":3670922713,\"outBytes\":3670922713,\"outFlow\":20982,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":392004,\"inBytes\":1844146460,\"inFlow\":382418,\"lastChangeTime\":\"374 days, 7:11:57.68\",\"lastInBytes\":1844146460,\"lastOutBytes\":1564109990,\"outBytes\":1564109990,\"outFlow\":9585,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":273369,\"inBytes\":390642896,\"inFlow\":265275,\"lastChangeTime\":\"0:01:25.35\",\"lastInBytes\":390642896,\"lastOutBytes\":2947819506,\"outBytes\":2947819506,\"outFlow\":8093,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":391129,\"inBytes\":1569778651,\"inFlow\":381483,\"lastChangeTime\":\"115 days, 14:19:12.61\",\"lastInBytes\":1569778651,\"lastOutBytes\":1794158402,\"outBytes\":1794158402,\"outFlow\":9646,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":261513,\"inBytes\":1968927626,\"inFlow\":255217,\"lastChangeTime\":\"0:01:25.61\",\"lastInBytes\":1968927626,\"lastOutBytes\":2358067636,\"outBytes\":2358067636,\"outFlow\":6295,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":836122,\"inFlow\":0,\"lastChangeTime\":\"142 days, 12:56:31.15\",\"lastInBytes\":836122,\"lastOutBytes\":24274934,\"outBytes\":24274934,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":753344047,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.74\",\"lastInBytes\":753344047,\"lastOutBytes\":167206858,\"outBytes\":167206858,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.28\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.28\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.28\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8797670,\"inBytes\":3341494978,\"inFlow\":216627,\"lastChangeTime\":\"142 days, 12:50:08.97\",\"lastInBytes\":3341494978,\"lastOutBytes\":3430074920,\"outBytes\":3430074920,\"outFlow\":8581042,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.342131000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566610", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1026040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"169\",\"inErrors\":\"0\",\"inNUcastPkts\":\"1\",\"inOctets\":\"0\",\"inUcastPkts\":\"132941\",\"inUnknownProtos\":\"3809285606\",\"index\":\"634\",\"lastChange\":\"0:01:24.65\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:b1:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6290365\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":916593,\"inBytes\":3934059836,\"inFlow\":893918,\"lastChangeTime\":\"115 days, 14:19:18.61\",\"lastInBytes\":3934059836,\"lastOutBytes\":1638947014,\"outBytes\":1638947014,\"outFlow\":22674,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":422164,\"inBytes\":2779331971,\"inFlow\":411861,\"lastChangeTime\":\"115 days, 14:19:20.89\",\"lastInBytes\":2779331971,\"lastOutBytes\":3859768220,\"outBytes\":3859768220,\"outFlow\":10302,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":422063,\"inBytes\":1858915838,\"inFlow\":411716,\"lastChangeTime\":\"384 days, 7:24:51.43\",\"lastInBytes\":1858915838,\"lastOutBytes\":2758150912,\"outBytes\":2758150912,\"outFlow\":10347,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":281443,\"inBytes\":3344846674,\"inFlow\":274621,\"lastChangeTime\":\"115 days, 14:19:27.56\",\"lastInBytes\":3344846674,\"lastOutBytes\":1116372365,\"outBytes\":1116372365,\"outFlow\":6821,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":307,\"inBytes\":49719541,\"inFlow\":0,\"lastChangeTime\":\"142 days, 12:34:05.71\",\"lastInBytes\":49719541,\"lastOutBytes\":3809285606,\"outBytes\":3809285606,\"outFlow\":306,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":527465,\"inFlow\":0,\"lastChangeTime\":\"142 days, 12:36:12.73\",\"lastInBytes\":527465,\"lastOutBytes\":8282652,\"outBytes\":8282652,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":98,\"inBytes\":753751914,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.65\",\"lastInBytes\":753751914,\"lastOutBytes\":175425719,\"outBytes\":175425719,\"outFlow\":97,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2052114,\"inBytes\":822752822,\"inFlow\":52660,\"lastChangeTime\":\"142 days, 12:36:17.27\",\"lastInBytes\":822752822,\"lastOutBytes\":460128425,\"outBytes\":460128425,\"outFlow\":1999454,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.464252000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566611", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1026040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.180.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface180\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"132850\",\"inUnknownProtos\":\"2675455749\",\"index\":\"634\",\"lastChange\":\"0:01:20.98\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:07:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2039505080\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"199809591\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.180.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":261952,\"inBytes\":1896669397,\"inFlow\":255342,\"lastChangeTime\":\"115 days, 13:45:48.29\",\"lastInBytes\":1896669397,\"lastOutBytes\":1648313520,\"outBytes\":1648313520,\"outFlow\":6609,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":392010,\"inBytes\":3443456453,\"inFlow\":382434,\"lastChangeTime\":\"115 days, 13:45:43.14\",\"lastInBytes\":3443456453,\"lastOutBytes\":1188318067,\"outBytes\":1188318067,\"outFlow\":9576,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":281980,\"inBytes\":830863347,\"inFlow\":274895,\"lastChangeTime\":\"115 days, 13:45:56.25\",\"lastInBytes\":830863347,\"lastOutBytes\":722634329,\"outBytes\":722634329,\"outFlow\":7085,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":281616,\"inBytes\":704065057,\"inFlow\":274762,\"lastChangeTime\":\"115 days, 13:45:47.59\",\"lastInBytes\":704065057,\"lastOutBytes\":2270797050,\"outBytes\":2270797050,\"outFlow\":6854,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":281894,\"inBytes\":150916132,\"inFlow\":274785,\"lastChangeTime\":\"115 days, 13:45:41.40\",\"lastInBytes\":150916132,\"lastOutBytes\":2675455749,\"outBytes\":2675455749,\"outFlow\":7108,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":422318,\"inBytes\":2204169774,\"inFlow\":411848,\"lastChangeTime\":\"115 days, 13:45:44.07\",\"lastInBytes\":2204169774,\"lastOutBytes\":553197388,\"outBytes\":553197388,\"outFlow\":10470,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":422689,\"inBytes\":1929173020,\"inFlow\":412273,\"lastChangeTime\":\"115 days, 13:45:45.59\",\"lastInBytes\":1929173020,\"lastOutBytes\":553246384,\"outBytes\":553246384,\"outFlow\":10416,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":282007,\"inBytes\":1422951867,\"inFlow\":274823,\"lastChangeTime\":\"115 days, 13:45:55.51\",\"lastInBytes\":1422951867,\"lastOutBytes\":1843646153,\"outBytes\":1843646153,\"outFlow\":7184,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":261714,\"inBytes\":2563657393,\"inFlow\":255285,\"lastChangeTime\":\"208 days, 7:34:37.58\",\"lastInBytes\":2563657393,\"lastOutBytes\":2257954559,\"outBytes\":2257954559,\"outFlow\":6429,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":261585,\"inBytes\":3675370869,\"inFlow\":255248,\"lastChangeTime\":\"208 days, 7:34:51.11\",\"lastInBytes\":3675370869,\"lastOutBytes\":1368091784,\"outBytes\":1368091784,\"outFlow\":6336,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":105138,\"inFlow\":0,\"lastChangeTime\":\"142 days, 11:32:20.68\",\"lastInBytes\":105138,\"lastOutBytes\":1750008,\"outBytes\":1750008,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":773023426,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.08\",\"lastInBytes\":773023426,\"lastOutBytes\":189955008,\"outBytes\":189955008,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3252359,\"inBytes\":3553849283,\"inFlow\":83008,\"lastChangeTime\":\"142 days, 11:32:26.35\",\"lastInBytes\":3553849283,\"lastOutBytes\":4159238390,\"outBytes\":4159238390,\"outFlow\":3169351,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.324470000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389130831566612", + "createdBy": "0", + "createdTime": "2025-12-02 09:29:09", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:17", + "echoMap": {}, + "deviceId": "1026040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.179.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif179\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"7\",\"lastChange\":\"0:03:09.61\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:1c:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"41\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.179.64\",\"index\":\"7\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"8837592\",\"0\",\"0\",\"0\",\"0\",\"0\",\"130120\",\"167524\",\"436286\",\"476000\",\"0\",\"0\",\"18270383\",\"0\",\"2985\",\"0\",\"696\",\"0\",\"9761\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:16\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.61\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34919,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":557,\"opticalVoltage\":3277,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36840,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":562,\"opticalVoltage\":3273,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34409,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":672,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37259,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":561,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36450,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":561,\"opticalVoltage\":3281,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37409,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":566,\"opticalVoltage\":3276,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36090,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":561,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37319,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":566,\"opticalVoltage\":3303,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35069,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":599,\"opticalVoltage\":3243,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34650,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":654,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34259,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":666,\"opticalVoltage\":3248,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35310,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":599,\"opticalVoltage\":3264,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34799,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":563,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35400,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":561,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35849,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":598,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36509,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":562,\"opticalVoltage\":3358,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44040,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":564,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36479,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":606,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37380,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":561,\"opticalVoltage\":3341,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37200,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":555,\"opticalVoltage\":3322,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35189,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":558,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":453,\"inBytes\":113704055,\"inFlow\":69,\"lastChangeTime\":\"154 days, 13:27:19.30\",\"lastInBytes\":113704055,\"lastOutBytes\":1891156204,\"opticalBiasCurrent\":10921,\"opticalReceivePower\":183,\"opticalTemperature\":50,\"opticalTransmitPower\":251,\"opticalVoltage\":3340,\"outBytes\":1891156204,\"outFlow\":383,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1084671,\"inBytes\":960873579,\"inFlow\":32577,\"lastChangeTime\":\"154 days, 13:42:14.50\",\"lastInBytes\":960873579,\"lastOutBytes\":1318172143,\"opticalBiasCurrent\":35490,\"opticalReceivePower\":36,\"opticalTemperature\":50,\"opticalTransmitPower\":597,\"opticalVoltage\":3300,\"outBytes\":1318172143,\"outFlow\":1052093,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":953207,\"inBytes\":3168912623,\"inFlow\":2137,\"lastChangeTime\":\"154 days, 13:46:28.19\",\"lastInBytes\":3168912623,\"lastOutBytes\":3265865820,\"opticalBiasCurrent\":34200,\"opticalReceivePower\":66,\"opticalTemperature\":51,\"opticalTransmitPower\":610,\"opticalVoltage\":3348,\"outBytes\":3265865820,\"outFlow\":951070,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":2822827,\"inBytes\":587494241,\"inFlow\":2733571,\"lastChangeTime\":\"384 days, 11:50:45.83\",\"lastInBytes\":587494241,\"lastOutBytes\":2327902979,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":10,\"opticalTemperature\":49,\"opticalTransmitPower\":241,\"opticalVoltage\":3328,\"outBytes\":2327902979,\"outFlow\":89255,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1780327,\"inBytes\":2694950098,\"inFlow\":1723903,\"lastChangeTime\":\"384 days, 12:21:01.86\",\"lastInBytes\":2694950098,\"lastOutBytes\":2593581328,\"opticalBiasCurrent\":10336,\"opticalReceivePower\":198,\"opticalTemperature\":45,\"opticalTransmitPower\":254,\"opticalVoltage\":3328,\"outBytes\":2593581328,\"outFlow\":56424,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7668617,\"inBytes\":1075351973,\"inFlow\":7434152,\"lastChangeTime\":\"384 days, 12:35:01.84\",\"lastInBytes\":1075351973,\"lastOutBytes\":2149990271,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":128,\"opticalTemperature\":46,\"opticalTransmitPower\":240,\"opticalVoltage\":3376,\"outBytes\":2149990271,\"outFlow\":234465,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8923671,\"inBytes\":3917176183,\"inFlow\":8686811,\"lastChangeTime\":\"481 days, 13:56:30.80\",\"lastInBytes\":3917176183,\"lastOutBytes\":4147491225,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":137,\"opticalTemperature\":46,\"opticalTransmitPower\":239,\"opticalVoltage\":3352,\"outBytes\":4147491225,\"outFlow\":236859,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8832666,\"inBytes\":3731714835,\"inFlow\":8571403,\"lastChangeTime\":\"241 days, 23:52:48.40\",\"lastInBytes\":3731714835,\"lastOutBytes\":3343910423,\"opticalBiasCurrent\":10850,\"opticalReceivePower\":27,\"opticalTemperature\":48,\"opticalTransmitPower\":258,\"opticalVoltage\":3340,\"outBytes\":3343910423,\"outFlow\":261263,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8764923,\"inBytes\":2735277995,\"inFlow\":8496273,\"lastChangeTime\":\"483 days, 9:07:26.18\",\"lastInBytes\":2735277995,\"lastOutBytes\":2671472050,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":248,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3374,\"outBytes\":2671472050,\"outFlow\":268650,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8018222,\"inBytes\":1549122224,\"inFlow\":7764530,\"lastChangeTime\":\"241 days, 23:52:47.86\",\"lastInBytes\":1549122224,\"lastOutBytes\":3634202031,\"opticalBiasCurrent\":10828,\"opticalReceivePower\":177,\"opticalTemperature\":46,\"opticalTransmitPower\":250,\"opticalVoltage\":3348,\"outBytes\":3634202031,\"outFlow\":253691,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10048182,\"inBytes\":2878736570,\"inFlow\":9732000,\"lastChangeTime\":\"464 days, 8:48:28.43\",\"lastInBytes\":2878736570,\"lastOutBytes\":3376601432,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":154,\"opticalTemperature\":41,\"opticalTransmitPower\":237,\"opticalVoltage\":3362,\"outBytes\":3376601432,\"outFlow\":316181,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":365588,\"inBytes\":2734018680,\"inFlow\":353733,\"lastChangeTime\":\"241 days, 23:55:50.36\",\"lastInBytes\":2734018680,\"lastOutBytes\":1252247577,\"opticalBiasCurrent\":10871,\"opticalReceivePower\":260,\"opticalTemperature\":46,\"opticalTransmitPower\":252,\"opticalVoltage\":3340,\"outBytes\":1252247577,\"outFlow\":11854,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":367268,\"inBytes\":3565107336,\"inFlow\":355332,\"lastChangeTime\":\"246 days, 12:38:27.62\",\"lastInBytes\":3565107336,\"lastOutBytes\":498651790,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":118,\"opticalTemperature\":44,\"opticalTransmitPower\":245,\"opticalVoltage\":3354,\"outBytes\":498651790,\"outFlow\":11936,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":372327,\"inBytes\":3149057699,\"inFlow\":360224,\"lastChangeTime\":\"246 days, 12:46:07.35\",\"lastInBytes\":3149057699,\"lastOutBytes\":1384556323,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":9,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3350,\"outBytes\":1384556323,\"outFlow\":12103,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":368641,\"inBytes\":2332237215,\"inFlow\":356653,\"lastChangeTime\":\"246 days, 12:53:43.87\",\"lastInBytes\":2332237215,\"lastOutBytes\":3630050473,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":21,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3354,\"outBytes\":3630050473,\"outFlow\":11987,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8704170,\"inBytes\":2153428618,\"inFlow\":8430906,\"lastChangeTime\":\"134 days, 4:54:54.66\",\"lastInBytes\":2153428618,\"lastOutBytes\":1790711354,\"opticalBiasCurrent\":10336,\"opticalReceivePower\":190,\"opticalTemperature\":44,\"opticalTransmitPower\":250,\"opticalVoltage\":3348,\"outBytes\":1790711354,\"outFlow\":273263,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":241,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9235310,\"inBytes\":3850496507,\"inFlow\":8967890,\"lastChangeTime\":\"73 days, 11:46:31.18\",\"lastInBytes\":3850496507,\"lastOutBytes\":4170696244,\"opticalBiasCurrent\":10944,\"opticalReceivePower\":190,\"opticalTemperature\":47,\"opticalTransmitPower\":250,\"opticalVoltage\":3335,\"outBytes\":4170696244,\"outFlow\":267420,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":240,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":156154,\"inFlow\":0,\"lastChangeTime\":\"241 days, 23:24:36.23\",\"lastInBytes\":156154,\"lastOutBytes\":144956823,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":237,\"opticalVoltage\":3378,\"outBytes\":144956823,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":244,\"opticalVoltage\":3388,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10107,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":240,\"opticalVoltage\":3369,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10576,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":253,\"opticalVoltage\":3335,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10050,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":258,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":196792698,\"inFlow\":0,\"lastChangeTime\":\"35 days, 22:11:46.51\",\"lastInBytes\":196792698,\"lastOutBytes\":841991655,\"opticalBiasCurrent\":33330,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":756,\"opticalVoltage\":3332,\"outBytes\":841991655,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":237,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":20457,\"inBytes\":2306965952,\"inFlow\":9916,\"lastChangeTime\":\"35 days, 21:39:14.46\",\"lastInBytes\":2306965952,\"lastOutBytes\":2013652241,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2013652241,\"outFlow\":10540,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":51132150,\"inBytes\":1313975305,\"inFlow\":24582986,\"lastChangeTime\":\"38 days, 11:07:27.41\",\"lastInBytes\":1313975305,\"lastOutBytes\":3779870297,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3779870297,\"outFlow\":26549164,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":26947,\"inBytes\":1123264465,\"inFlow\":13606,\"lastChangeTime\":\"35 days, 20:53:30.37\",\"lastInBytes\":1123264465,\"lastOutBytes\":3237464422,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3237464422,\"outFlow\":13341,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":337,\"inBytes\":603437308,\"inFlow\":12,\"lastChangeTime\":\"38 days, 12:06:38.26\",\"lastInBytes\":603437308,\"lastOutBytes\":1164871877,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1164871877,\"outFlow\":325,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1592082,\"inBytes\":3955920799,\"inFlow\":35062,\"lastChangeTime\":\"161 days, 21:36:10.40\",\"lastInBytes\":3955920799,\"lastOutBytes\":3917659414,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3917659414,\"outFlow\":1557019,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2261274,\"inBytes\":3911531303,\"inFlow\":711423,\"lastChangeTime\":\"39 days, 21:40:54.01\",\"lastInBytes\":3911531303,\"lastOutBytes\":222572874,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":222572874,\"outFlow\":1549850,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":26013584,\"inBytes\":1306911307,\"inFlow\":441314,\"lastChangeTime\":\"154 days, 7:48:27.57\",\"lastInBytes\":1306911307,\"lastOutBytes\":345515971,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":345515971,\"outFlow\":25572269,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":453367,\"inBytes\":3572735831,\"inFlow\":453070,\"lastChangeTime\":\"154 days, 7:48:24.87\",\"lastInBytes\":3572735831,\"lastOutBytes\":567452588,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":567452588,\"outFlow\":297,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":21445706,\"inBytes\":3627598947,\"inFlow\":788536,\"lastChangeTime\":\"35 days, 21:49:22.18\",\"lastInBytes\":3627598947,\"lastOutBytes\":4243209800,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4243209800,\"outFlow\":20657170,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":797,\"inBytes\":2620118099,\"inFlow\":202,\"lastChangeTime\":\"38 days, 11:20:52.71\",\"lastInBytes\":2620118099,\"lastOutBytes\":3257944212,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3257944212,\"outFlow\":594,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":541,\"inBytes\":1707560306,\"inFlow\":134,\"lastChangeTime\":\"38 days, 11:21:45.42\",\"lastInBytes\":1707560306,\"lastOutBytes\":843641515,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":843641515,\"outFlow\":406,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":6911536,\"inBytes\":1807361014,\"inFlow\":57982,\"lastChangeTime\":\"166 days, 6:56:18.21\",\"lastInBytes\":1807361014,\"lastOutBytes\":1624933304,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1624933304,\"outFlow\":6853553,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":327,\"inBytes\":522561233,\"inFlow\":7,\"lastChangeTime\":\"164 days, 7:10:22.15\",\"lastInBytes\":522561233,\"lastOutBytes\":2758899810,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2758899810,\"outFlow\":320,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":14129943,\"inBytes\":3686355748,\"inFlow\":138972,\"lastChangeTime\":\"405 days, 7:46:15.48\",\"lastInBytes\":3686355748,\"lastOutBytes\":2087204963,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2087204963,\"outFlow\":13990971,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":541,\"inBytes\":1706673591,\"inFlow\":134,\"lastChangeTime\":\"38 days, 10:39:49.90\",\"lastInBytes\":1706673591,\"lastOutBytes\":3136519733,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3136519733,\"outFlow\":406,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":311,\"inBytes\":510058,\"inFlow\":0,\"lastChangeTime\":\"149 days, 6:00:45.07\",\"lastInBytes\":510058,\"lastOutBytes\":2926064276,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2926064276,\"outFlow\":311,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2871497696,\"inFlow\":0,\"lastChangeTime\":\"239 days, 12:40:26.13\",\"lastInBytes\":2871497696,\"lastOutBytes\":870958741,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":870958741,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":967169812,\"inFlow\":0,\"lastChangeTime\":\"492 days, 12:39:38.34\",\"lastInBytes\":967169812,\"lastOutBytes\":815984286,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":815984286,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":107,\"inBytes\":37889067,\"inFlow\":93,\"lastChangeTime\":\"164 days, 7:06:17.76\",\"lastInBytes\":37889067,\"lastOutBytes\":6156376,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6156376,\"outFlow\":14,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":26,\"inBytes\":5129800,\"inFlow\":11,\"lastChangeTime\":\"164 days, 7:06:36.76\",\"lastInBytes\":5129800,\"lastOutBytes\":6128842,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6128842,\"outFlow\":14,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1866039,\"inFlow\":0,\"lastChangeTime\":\"239 days, 12:30:39.57\",\"lastInBytes\":1866039,\"lastOutBytes\":87297504,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":87297504,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":51,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":51,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:58.307231000\"}}", + "lastDiagTime": "2026-02-02 14:39:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046142820031581", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:08", + "echoMap": {}, + "deviceId": "1026110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.179.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.86\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"132 days, 12:31:36.90\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10852910\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29014458\",\"inOctets\":\"2873414697\",\"inUcastPkts\":\"1627189748\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a6:d7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2917371453\",\"outQLen\":\"0\",\"outUcastPkts\":\"1462443991\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.179.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1027": { + "ndmAlarmHost": [ + { + "id": "707147763783108969", + "createdBy": null, + "createdTime": "2025-12-08 13:48:16", + "updatedBy": null, + "updatedTime": "2025-12-08 13:48:16", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.181.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "585046095575392256", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060001", + "name": "[610](10)殷高东环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703053005027610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392257", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060002", + "name": "[614](10)殷高东消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703001006027614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392258", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1027060003", + "name": "[615](10)殷高东消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703001006027615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392259", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1027060004", + "name": "[612](10)殷高东内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703001006027612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392260", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060005", + "name": "[604](10)殷高东弱电设备室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703048005027604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392261", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060006", + "name": "[605](10)殷高东弱电设备室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703048005027605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392262", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060007", + "name": "[602](10)殷高东编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703041005027602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392263", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060008", + "name": "[606](10)殷高东弱电设备室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703048005027606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392264", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1027060009", + "name": "[607](10)殷高东弱电设备室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703048005027607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392265", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1027060010", + "name": "[603](10)殷高东编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703041005027603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392266", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1027060011", + "name": "[304](10)殷高东2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701056006027304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392267", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1027060012", + "name": "[205](10)殷高东2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701056004027205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392268", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1027060013", + "name": "[302](10)殷高东2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701056006027302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392269", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1027060014", + "name": "[301](10)殷高东2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701056006027301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392270", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1027060015", + "name": "[303](10)殷高东2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701056006027303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392271", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1027060016", + "name": "[322](10)殷高东#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701045006027322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392272", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1027060017", + "name": "[323](10)殷高东#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701045006027323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392273", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1027060018", + "name": "[601](10)殷高东车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703042004027601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392274", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1027060019", + "name": "[330](10)殷高东公共区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040006027330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392275", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060020", + "name": "[404](10)殷高东3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701007006027404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392276", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1027060021", + "name": "[313](10)殷高东3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392277", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1027060022", + "name": "[306](10)殷高东3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392278", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1027060023", + "name": "[503](10)殷高东票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701030006027503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392279", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1027060024", + "name": "[338](10)殷高东安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701085006027338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392280", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060025", + "name": "[402](10)殷高东2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701006006027402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392281", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060026", + "name": "[307](10)殷高东3#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392282", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060027", + "name": "[324](10)殷高东#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701045006027324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392283", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060028", + "name": "[335](10)殷高东1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701036005027335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392284", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060029", + "name": "[308](10)殷高东3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392285", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060030", + "name": "[312](10)殷高东3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392286", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060031", + "name": "[305](10)殷高东3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392287", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060032", + "name": "[311](10)殷高东3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392288", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060033", + "name": "[309](10)殷高东3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392289", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060034", + "name": "[310](10)殷高东3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057006027310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392290", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060035", + "name": "[206](10)殷高东3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701057004027206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392291", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060036", + "name": "[331](10)殷高东1F垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040005027331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392292", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1027060037", + "name": "[337](10)殷高东安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701085006027337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392293", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1027060038", + "name": "[502](10)殷高东票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701030006027502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392294", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1027060039", + "name": "[401](10)殷高东1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701005006027401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392295", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1027060040", + "name": "[318](10)殷高东4#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701058006027318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392296", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1027060041", + "name": "[321](10)殷高东#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701045006027321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392297", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1027060042", + "name": "[611](10)殷高东内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703001006027611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392298", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1027060043", + "name": "[336](10)殷高东2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701036005027336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392299", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1027060044", + "name": "[403](10)殷高东3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701007006027403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392300", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-12-29 00:07:04", + "echoMap": {}, + "deviceId": "1027060045", + "name": "[501](10)殷高东客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701001005027501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392301", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1027060046", + "name": "[332](10)殷高东B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040006027332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392302", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1027060047", + "name": "[319](10)殷高东#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701045006027319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392303", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1027060048", + "name": "[320](10)殷高东#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701045006027320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392304", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1027060049", + "name": "[405](10)殷高东3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701007006027405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392305", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1027060050", + "name": "[406](10)殷高东3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701007006027406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392306", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1027060051", + "name": "[317](10)殷高东4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701058006027317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392307", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1027060052", + "name": "[207](10)殷高东4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701058004027207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392308", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1027060053", + "name": "[315](10)殷高东4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701058006027315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392309", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1027060054", + "name": "[314](10)殷高东4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701058006027314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392310", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1027060055", + "name": "[316](10)殷高东4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701058006027316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392311", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1027060056", + "name": "[333](10)殷高东B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040006027333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392312", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1027060057", + "name": "[329](10)殷高东公共区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040006027329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392313", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1027060058", + "name": "[609](10)殷高东环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703053005027609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392314", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1027060059", + "name": "[616](10)殷高东变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703021006027616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392315", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1027060060", + "name": "[112](10)殷高东下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702012006027112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392316", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-12-11 17:39:01", + "echoMap": {}, + "deviceId": "1027060061", + "name": "[111](10)殷高东下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702012006027111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392317", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060062", + "name": "[204](10)殷高东下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702001004027204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392318", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1027060063", + "name": "[326](10)殷高东#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702017006027326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392319", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060064", + "name": "[325](10)殷高东#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702017006027325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392320", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060065", + "name": "[101](10)殷高东上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702007006027101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392321", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060066", + "name": "[102](10)殷高东上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702007006027102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392322", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060067", + "name": "[110](10)殷高东下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702012006027110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392323", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060068", + "name": "[109](10)殷高东下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702012006027109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392324", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1027060069", + "name": "[203](10)殷高东下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702001004027203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392325", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1027060070", + "name": "[334](10)殷高东B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702002006027334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392326", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060071", + "name": "[201](10)殷高东上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702001004027201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392327", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060072", + "name": "[103](10)殷高东上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702007006027103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392328", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060073", + "name": "[104](10)殷高东上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702007006027104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392329", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2026-01-17 11:58:45", + "echoMap": {}, + "deviceId": "1027060074", + "name": "[108](10)殷高东下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702012006027108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392330", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060075", + "name": "[107](10)殷高东下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702012006027107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392331", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1027060076", + "name": "[702](10)殷高东下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062704013006027702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392332", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060077", + "name": "[608](10)殷高东屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703048005027608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392333", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1027060078", + "name": "[328](10)殷高东#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702017006027328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392334", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1027060079", + "name": "[613](10)殷高东内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703021006027613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392335", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1027060080", + "name": "[327](10)殷高东#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702017006027327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392336", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1027060081", + "name": "[202](10)殷高东上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702001004027202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392337", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1027060082", + "name": "[105](10)殷高东上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702007006027105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392338", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2025-12-09 23:36:23", + "echoMap": {}, + "deviceId": "1027060083", + "name": "[106](10)殷高东上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062702007006027106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392339", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:14", + "updatedBy": null, + "updatedTime": "2026-01-25 18:48:45", + "echoMap": {}, + "deviceId": "1027060084", + "name": "[701](10)殷高东上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062704013006027701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034618", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1027060085", + "name": "[407](10)殷高东双向通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701007006027407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034619", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1027060086", + "name": "[210](10)殷高东厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040004027210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034620", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1027060087", + "name": "[209](10)殷高东厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040004027209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034621", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1027060088", + "name": "[211](10)殷高东厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040004027211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034622", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1027060089", + "name": "[208](10)殷高东厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062701040004027208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034623", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1027060090", + "name": "[620](10)殷高东气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703067005027620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034624", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1027060091", + "name": "[618](10)殷高东通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703048005027618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034625", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1027060092", + "name": "[617](10)殷高东内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703001005027617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034626", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2026-01-30 12:58:45", + "echoMap": {}, + "deviceId": "1027060093", + "name": "[621](10)殷高东气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703067005027621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410285117034627", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1027060094", + "name": "[619](10)殷高东消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.181.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062703068005027619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "585046095575392344", + "createdBy": "0", + "createdTime": "2025-02-28 14:17:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1027070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.181.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062700000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112135\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1215464802\",\"inUcastPkts\":\"650250611\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:40:67:38\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2620048992\",\"outQLen\":\"0\",\"outUcastPkts\":\"281924145\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.181.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:44\",\"stCommonInfo\":{\"设备ID\":\"8L091CCPAZA1D86\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"39\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "585046095575392432", + "createdBy": "2", + "createdTime": "2025-02-28 14:19:50", + "updatedBy": null, + "updatedTime": "2025-12-23 10:28:32", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.181.51", + "manageUrl": "http:\\\\10.18.181.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392507", + "createdBy": "2", + "createdTime": "2025-02-28 14:20:07", + "updatedBy": null, + "updatedTime": "2025-12-23 10:28:28", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.181.52", + "manageUrl": "http:\\\\10.18.181.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585046095575392346", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1027090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.181.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.87\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"117 days, 10:49:55.99\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"11239277\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28319298\",\"inOctets\":\"1913038091\",\"inUcastPkts\":\"2244677024\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:97:f3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"965403220\",\"outQLen\":\"0\",\"outUcastPkts\":\"1365435536\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.181.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "585046095575392341", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-01-07 03:26:46", + "echoMap": {}, + "deviceId": "1027050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.181.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062700000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.181.22;10.18.181.23" + }, + { + "id": "585046095575392342", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:46", + "echoMap": {}, + "deviceId": "1027050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.181.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062700000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18634717\",\"inErrors\":\"0\",\"inNUcastPkts\":\"33417224\",\"inOctets\":\"257714502\",\"inUcastPkts\":\"640206677\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:4e:73:91\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1935910536\",\"outQLen\":\"0\",\"outUcastPkts\":\"1973645723\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4360\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.181.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:45\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":308842359,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18122\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"54\",\"CPU使用率\":\"20\"}}", + "lastDiagTime": "2026-02-02 14:35:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.181.22" + }, + { + "id": "585046095575392343", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-12-29 11:07:25", + "echoMap": {}, + "deviceId": "1027050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.181.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062700000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"6212320\",\"inErrors\":\"0\",\"inNUcastPkts\":\"14247421\",\"inOctets\":\"1750718539\",\"inUcastPkts\":\"2367221671\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1a:0a:b8:54\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2662593085\",\"outQLen\":\"0\",\"outUcastPkts\":\"1795430250\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4700\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4380\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.181.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2025-09-11 20:33:38\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":982628159,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"生产厂商\":\"HIKVISION\",\"设备别名\":\"node18123\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"48\",\"CPU使用率\":\"44\"}}", + "lastDiagTime": "2025-09-11 20:33:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.181.23" + } + ], + "ndmSecurityBox": [ + { + "id": "585046095575392362", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1027030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7775103\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"432769039\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7775108\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:ae\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.215,\"status\":1,\"voltage\":26.393002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.393002},{\"current\":0.24800001,\"status\":1,\"voltage\":26.393002},{\"current\":0.245,\"status\":1,\"voltage\":26.393002},{\"current\":0.22900002,\"status\":1,\"voltage\":26.393002},{\"current\":0.22600001,\"status\":1,\"voltage\":26.393002},{\"current\":0.23300001,\"status\":1,\"voltage\":26.393002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.393002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.393002},{\"current\":0.22900002,\"status\":1,\"voltage\":25.868002},{\"current\":0.003,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002},{\"current\":0.001,\"status\":1,\"voltage\":25.868002}],\"fanSpeeds\":[3510,3480],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":31}],\"stCommonInfo\":{\"设备ID\":\"0022512208301997\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392363", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1027030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7774990\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"432759777\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7774995\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:a2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25300002,\"status\":1,\"voltage\":25.955002},{\"current\":0.518,\"status\":1,\"voltage\":25.955002},{\"current\":0.266,\"status\":1,\"voltage\":25.955002},{\"current\":0.25300002,\"status\":1,\"voltage\":25.955002},{\"current\":0.31100002,\"status\":1,\"voltage\":25.955002},{\"current\":0.23500001,\"status\":1,\"voltage\":25.955002},{\"current\":0.22900002,\"status\":1,\"voltage\":25.955002},{\"current\":0.51000005,\"status\":1,\"voltage\":25.955002},{\"current\":0.294,\"status\":1,\"voltage\":25.955002},{\"current\":0.289,\"status\":1,\"voltage\":26.481},{\"current\":0.003,\"status\":1,\"voltage\":26.481},{\"current\":0.52400005,\"status\":1,\"voltage\":26.481},{\"current\":0.22700001,\"status\":1,\"voltage\":26.481},{\"current\":0.22100002,\"status\":1,\"voltage\":26.481},{\"current\":0.001,\"status\":1,\"voltage\":26.481},{\"current\":0.001,\"status\":1,\"voltage\":26.481}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301973\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392364", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:46", + "echoMap": {}, + "deviceId": "1027030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11304421\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630674428\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 23:55:26.17\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11304426\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:ff\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":27.109001},{\"current\":0.28500003,\"status\":1,\"voltage\":27.109001},{\"current\":0.24900001,\"status\":1,\"voltage\":27.109001},{\"current\":0.342,\"status\":1,\"voltage\":27.109001},{\"current\":0.27800003,\"status\":1,\"voltage\":27.109001},{\"current\":0.252,\"status\":1,\"voltage\":27.109001},{\"current\":0.23,\"status\":1,\"voltage\":27.109001},{\"current\":0.416,\"status\":1,\"voltage\":27.109001},{\"current\":0.51500005,\"status\":1,\"voltage\":27.109001},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.003,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002},{\"current\":0.001,\"status\":1,\"voltage\":27.108002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0022512208301981\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392365", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:47", + "echoMap": {}, + "deviceId": "1027030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2606895\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"143322791\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 13:04:07.28\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2606900\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:90\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.88100004,\"status\":1,\"voltage\":25.68},{\"current\":0.69900006,\"status\":1,\"voltage\":25.68},{\"current\":0.92,\"status\":1,\"voltage\":25.68},{\"current\":0.989,\"status\":1,\"voltage\":25.68},{\"current\":0.68700004,\"status\":1,\"voltage\":25.68},{\"current\":0.73800004,\"status\":1,\"voltage\":25.68},{\"current\":0.634,\"status\":1,\"voltage\":25.68},{\"current\":0.001,\"status\":1,\"voltage\":25.68},{\"current\":0.001,\"status\":1,\"voltage\":25.68},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.003,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002},{\"current\":0.001,\"status\":1,\"voltage\":26.163002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301998\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392366", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:47", + "echoMap": {}, + "deviceId": "1027030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11297512\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630289543\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 14:12:41.57\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11297517\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:19\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22200002,\"status\":1,\"voltage\":26.789001},{\"current\":0.259,\"status\":1,\"voltage\":26.789001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.789001},{\"current\":0.307,\"status\":1,\"voltage\":26.789001},{\"current\":0.30800003,\"status\":1,\"voltage\":26.789001},{\"current\":0.23200001,\"status\":1,\"voltage\":26.789001},{\"current\":0.30900002,\"status\":1,\"voltage\":26.789001},{\"current\":0.425,\"status\":1,\"voltage\":26.789001},{\"current\":0.546,\"status\":1,\"voltage\":26.789001},{\"current\":0.22600001,\"status\":1,\"voltage\":27.219002},{\"current\":0.003,\"status\":1,\"voltage\":27.219002},{\"current\":0.001,\"status\":1,\"voltage\":27.219002},{\"current\":0.001,\"status\":1,\"voltage\":27.219002},{\"current\":0.001,\"status\":1,\"voltage\":27.219002},{\"current\":0.001,\"status\":1,\"voltage\":27.219002},{\"current\":0.001,\"status\":1,\"voltage\":27.219002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301994\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392367", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:48", + "echoMap": {}, + "deviceId": "1027030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11297375\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630281029\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 16:26:35.67\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11297380\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:cf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.32900003,\"status\":1,\"voltage\":26.410002},{\"current\":0.272,\"status\":1,\"voltage\":26.410002},{\"current\":0.264,\"status\":1,\"voltage\":26.410002},{\"current\":0.272,\"status\":1,\"voltage\":26.410002},{\"current\":0.273,\"status\":1,\"voltage\":26.410002},{\"current\":0.33800003,\"status\":1,\"voltage\":26.410002},{\"current\":0.337,\"status\":1,\"voltage\":26.410002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.410002},{\"current\":0.001,\"status\":1,\"voltage\":26.410002},{\"current\":0.001,\"status\":1,\"voltage\":26.296001},{\"current\":0.003,\"status\":1,\"voltage\":26.296001},{\"current\":0.001,\"status\":1,\"voltage\":26.296001},{\"current\":0.001,\"status\":1,\"voltage\":26.296001},{\"current\":0.001,\"status\":1,\"voltage\":26.296001},{\"current\":0.001,\"status\":1,\"voltage\":26.296001},{\"current\":0.001,\"status\":1,\"voltage\":26.296001}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301986\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392368", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:49", + "echoMap": {}, + "deviceId": "1027030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11297237\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630274622\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 16:03:32.76\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11297242\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:a5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.606,\"status\":1,\"voltage\":24.660002},{\"current\":0.89300007,\"status\":1,\"voltage\":24.660002},{\"current\":0.95100003,\"status\":1,\"voltage\":24.660002},{\"current\":0.92100006,\"status\":1,\"voltage\":24.660002},{\"current\":0.86200005,\"status\":1,\"voltage\":24.660002},{\"current\":1.023,\"status\":1,\"voltage\":24.660002},{\"current\":1.029,\"status\":1,\"voltage\":24.660002},{\"current\":0.001,\"status\":0,\"voltage\":24.660002},{\"current\":0.001,\"status\":0,\"voltage\":24.660002},{\"current\":0.27100003,\"status\":1,\"voltage\":25.423},{\"current\":0.003,\"status\":1,\"voltage\":25.423},{\"current\":0.725,\"status\":1,\"voltage\":25.423},{\"current\":0.001,\"status\":1,\"voltage\":25.423},{\"current\":0.001,\"status\":1,\"voltage\":25.423},{\"current\":0.001,\"status\":1,\"voltage\":25.423},{\"current\":0.001,\"status\":1,\"voltage\":25.423}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208301992\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392369", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:49", + "echoMap": {}, + "deviceId": "1027030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11297088\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630266848\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 17:22:29.47\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11297093\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:f3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24800001,\"status\":1,\"voltage\":26.797},{\"current\":0.526,\"status\":1,\"voltage\":26.797},{\"current\":0.272,\"status\":1,\"voltage\":26.797},{\"current\":0.24800001,\"status\":1,\"voltage\":26.797},{\"current\":0.24200001,\"status\":1,\"voltage\":26.797},{\"current\":0.23700002,\"status\":1,\"voltage\":26.797},{\"current\":0.24700001,\"status\":1,\"voltage\":26.797},{\"current\":0.26900002,\"status\":1,\"voltage\":26.797},{\"current\":0.22800002,\"status\":1,\"voltage\":26.797},{\"current\":0.001,\"status\":1,\"voltage\":26.599},{\"current\":0.003,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599},{\"current\":0.001,\"status\":1,\"voltage\":26.599}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301993\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392370", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:49", + "echoMap": {}, + "deviceId": "1027030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11297027\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630262166\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 15:57:07.87\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11297032\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:40\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.256,\"status\":1,\"voltage\":26.410002},{\"current\":0.259,\"status\":1,\"voltage\":26.410002},{\"current\":18.087002,\"status\":1,\"voltage\":26.410002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.410002},{\"current\":0.563,\"status\":1,\"voltage\":26.410002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.410002},{\"current\":0.26200002,\"status\":1,\"voltage\":26.410002},{\"current\":0.001,\"status\":1,\"voltage\":26.410002},{\"current\":0.001,\"status\":1,\"voltage\":26.410002},{\"current\":0.001,\"status\":1,\"voltage\":26.432001},{\"current\":0.003,\"status\":1,\"voltage\":26.432001},{\"current\":0.001,\"status\":1,\"voltage\":26.432001},{\"current\":0.001,\"status\":1,\"voltage\":26.432001},{\"current\":0.001,\"status\":1,\"voltage\":26.432001},{\"current\":0.001,\"status\":1,\"voltage\":26.432001},{\"current\":0.001,\"status\":1,\"voltage\":26.432001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301987\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392371", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:50", + "echoMap": {}, + "deviceId": "1027030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.182.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"11296907\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"630257158\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"30 days, 16:03:35.73\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"11296912\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:ad\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.28100002,\"status\":1,\"voltage\":26.871002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.871002},{\"current\":0.22800002,\"status\":1,\"voltage\":26.871002},{\"current\":0.21800001,\"status\":1,\"voltage\":26.871002},{\"current\":0.245,\"status\":1,\"voltage\":26.871002},{\"current\":0.28500003,\"status\":1,\"voltage\":26.871002},{\"current\":0.23400001,\"status\":1,\"voltage\":26.871002},{\"current\":0.546,\"status\":1,\"voltage\":26.871002},{\"current\":0.26000002,\"status\":1,\"voltage\":26.871002},{\"current\":0.252,\"status\":1,\"voltage\":26.409},{\"current\":0.003,\"status\":1,\"voltage\":26.409},{\"current\":0.23700002,\"status\":1,\"voltage\":26.409},{\"current\":0.223,\"status\":1,\"voltage\":26.409},{\"current\":0.001,\"status\":1,\"voltage\":26.409},{\"current\":0.001,\"status\":1,\"voltage\":26.409},{\"current\":0.001,\"status\":1,\"voltage\":26.409}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208301991\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "585046095575392372", + "createdBy": "2", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:12", + "echoMap": {}, + "deviceId": "1027040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.181.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif181\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:05.90\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:13:22\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"9\",\"temperature\":\"44\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.181.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"27\",\"1590675\",\"25\",\"24\",\"0\",\"0\",\"24\",\"323065012\",\"811\",\"752411\",\"99\",\"0\",\"0\",\"0\",\"18776\",\"0\",\"5\",\"28\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:11\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.33\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33779,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":601,\"opticalVoltage\":3228,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33810,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":616,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39013,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":564,\"opticalVoltage\":3241,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40290,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":719,\"opticalVoltage\":3251,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37770,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":559,\"opticalVoltage\":3265,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35849,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":558,\"opticalVoltage\":3241,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36990,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":561,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43229,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":562,\"opticalVoltage\":3246,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42074,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":796,\"opticalVoltage\":3229,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41310,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":647,\"opticalVoltage\":3219,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40543,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":746,\"opticalVoltage\":3206,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40049,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":562,\"opticalVoltage\":3265,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35490,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":563,\"opticalVoltage\":3329,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42479,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":562,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41310,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":582,\"opticalVoltage\":3301,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41310,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":608,\"opticalVoltage\":3337,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39479,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":563,\"opticalVoltage\":3304,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42583,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":691,\"opticalVoltage\":3339,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":80669,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":231,\"opticalVoltage\":3273,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34590,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":632,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":456,\"inBytes\":3738278932,\"inFlow\":73,\"lastChangeTime\":\"462 days, 13:07:52.39\",\"lastInBytes\":3738278932,\"lastOutBytes\":2296684302,\"opticalBiasCurrent\":41054,\"opticalReceivePower\":498,\"opticalTemperature\":49,\"opticalTransmitPower\":853,\"opticalVoltage\":3328,\"outBytes\":2296684302,\"outFlow\":383,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":157179,\"inBytes\":2881106800,\"inFlow\":2346,\"lastChangeTime\":\"0:04:19.98\",\"lastInBytes\":2881106800,\"lastOutBytes\":925273580,\"opticalBiasCurrent\":40799,\"opticalReceivePower\":60,\"opticalTemperature\":54,\"opticalTransmitPower\":666,\"opticalVoltage\":3338,\"outBytes\":925273580,\"outFlow\":154833,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":83908,\"inBytes\":2212275662,\"inFlow\":13442,\"lastChangeTime\":\"0:04:10.66\",\"lastInBytes\":2212275662,\"lastOutBytes\":2062587262,\"opticalBiasCurrent\":34709,\"opticalReceivePower\":575,\"opticalTemperature\":46,\"opticalTransmitPower\":562,\"opticalVoltage\":3292,\"outBytes\":2062587262,\"outFlow\":70465,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":3622592,\"inBytes\":3166263157,\"inFlow\":3507340,\"lastChangeTime\":\"445 days, 12:26:44.28\",\"lastInBytes\":3166263157,\"lastOutBytes\":2049596003,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":4,\"opticalTemperature\":49,\"opticalTransmitPower\":240,\"opticalVoltage\":3376,\"outBytes\":2049596003,\"outFlow\":115251,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7509333,\"inBytes\":1174170630,\"inFlow\":7287509,\"lastChangeTime\":\"407 days, 7:47:46.25\",\"lastInBytes\":1174170630,\"lastOutBytes\":1676076245,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":145,\"opticalTemperature\":50,\"opticalTransmitPower\":242,\"opticalVoltage\":3326,\"outBytes\":1676076245,\"outFlow\":221824,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5277384,\"inBytes\":1599464886,\"inFlow\":5111820,\"lastChangeTime\":\"13 days, 23:35:23.54\",\"lastInBytes\":1599464886,\"lastOutBytes\":836773037,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":253,\"opticalTemperature\":49,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":836773037,\"outFlow\":165563,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3693441,\"inBytes\":2331273520,\"inFlow\":3582125,\"lastChangeTime\":\"43 days, 9:31:50.40\",\"lastInBytes\":2331273520,\"lastOutBytes\":300056077,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":218,\"opticalTemperature\":48,\"opticalTransmitPower\":238,\"opticalVoltage\":3326,\"outBytes\":300056077,\"outFlow\":111315,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5287586,\"inBytes\":3198996858,\"inFlow\":5121383,\"lastChangeTime\":\"14 days, 0:04:40.10\",\"lastInBytes\":3198996858,\"lastOutBytes\":4130296778,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":154,\"opticalTemperature\":48,\"opticalTransmitPower\":251,\"opticalVoltage\":3354,\"outBytes\":4130296778,\"outFlow\":166203,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5004019,\"inBytes\":683723364,\"inFlow\":4853220,\"lastChangeTime\":\"13 days, 23:51:27.15\",\"lastInBytes\":683723364,\"lastOutBytes\":3820198299,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":175,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":3820198299,\"outFlow\":150798,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4772700,\"inBytes\":2346069681,\"inFlow\":4632309,\"lastChangeTime\":\"13 days, 23:52:44.57\",\"lastInBytes\":2346069681,\"lastOutBytes\":1847124672,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":236,\"opticalTemperature\":49,\"opticalTransmitPower\":243,\"opticalVoltage\":3364,\"outBytes\":1847124672,\"outFlow\":140391,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6630609,\"inBytes\":2346824325,\"inFlow\":6417353,\"lastChangeTime\":\"41 days, 18:23:07.52\",\"lastInBytes\":2346824325,\"lastOutBytes\":23801957,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":52,\"opticalTemperature\":46,\"opticalTransmitPower\":237,\"opticalVoltage\":3342,\"outBytes\":23801957,\"outFlow\":213255,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4954927,\"inBytes\":801299285,\"inFlow\":4795899,\"lastChangeTime\":\"14 days, 0:17:42.88\",\"lastInBytes\":801299285,\"lastOutBytes\":2458959994,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":137,\"opticalTemperature\":51,\"opticalTransmitPower\":233,\"opticalVoltage\":3326,\"outBytes\":2458959994,\"outFlow\":159027,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7829528,\"inBytes\":338722771,\"inFlow\":7579526,\"lastChangeTime\":\"14 days, 0:53:55.72\",\"lastInBytes\":338722771,\"lastOutBytes\":2323270713,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":291,\"opticalTemperature\":50,\"opticalTransmitPower\":246,\"opticalVoltage\":3364,\"outBytes\":2323270713,\"outFlow\":250001,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":244,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":234,\"opticalVoltage\":3362,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":243,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":240,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":239,\"opticalVoltage\":3262,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":237,\"opticalVoltage\":3303,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3334,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":244,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":238,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":233,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":243,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3283,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":65222,\"inBytes\":3276153011,\"inFlow\":42307,\"lastChangeTime\":\"0:03:07.76\",\"lastInBytes\":3276153011,\"lastOutBytes\":3193989771,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3193989771,\"outFlow\":22914,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":25500516,\"inBytes\":3170341181,\"inFlow\":9021648,\"lastChangeTime\":\"0:03:07.80\",\"lastInBytes\":3170341181,\"lastOutBytes\":1682349825,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1682349825,\"outFlow\":16478868,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":131335,\"inBytes\":472664125,\"inFlow\":43561,\"lastChangeTime\":\"0:03:07.82\",\"lastInBytes\":472664125,\"lastOutBytes\":2106605878,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2106605878,\"outFlow\":87773,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":384,\"inBytes\":639306937,\"inFlow\":15,\"lastChangeTime\":\"462 days, 13:42:06.00\",\"lastInBytes\":639306937,\"lastOutBytes\":2353583087,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2353583087,\"outFlow\":369,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1535874,\"inBytes\":3294357048,\"inFlow\":43165,\"lastChangeTime\":\"110 days, 22:16:18.69\",\"lastInBytes\":3294357048,\"lastOutBytes\":39796450,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":39796450,\"outFlow\":1492708,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":29982586,\"inBytes\":946192618,\"inFlow\":758979,\"lastChangeTime\":\"99 days, 8:55:37.72\",\"lastInBytes\":946192618,\"lastOutBytes\":3599520193,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3599520193,\"outFlow\":29223606,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7834680,\"inBytes\":3290836391,\"inFlow\":708543,\"lastChangeTime\":\"99 days, 8:55:37.76\",\"lastInBytes\":3290836391,\"lastOutBytes\":1406932025,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1406932025,\"outFlow\":7126137,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":84164,\"inBytes\":3282291037,\"inFlow\":83794,\"lastChangeTime\":\"21 days, 14:42:25.21\",\"lastInBytes\":3282291037,\"lastOutBytes\":3140834176,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3140834176,\"outFlow\":370,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":380825,\"inBytes\":2753460172,\"inFlow\":132,\"lastChangeTime\":\"21 days, 14:42:26.33\",\"lastInBytes\":2753460172,\"lastOutBytes\":2759337734,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2759337734,\"outFlow\":380693,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":923,\"inBytes\":3063399048,\"inFlow\":239,\"lastChangeTime\":\"462 days, 12:42:36.07\",\"lastInBytes\":3063399048,\"lastOutBytes\":982031270,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":982031270,\"outFlow\":684,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":618,\"inBytes\":2002148548,\"inFlow\":156,\"lastChangeTime\":\"462 days, 12:40:49.81\",\"lastInBytes\":2002148548,\"lastOutBytes\":2450353058,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2450353058,\"outFlow\":461,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":6527464,\"inBytes\":1042974115,\"inFlow\":55516,\"lastChangeTime\":\"57 days, 10:03:31.67\",\"lastInBytes\":1042974115,\"lastOutBytes\":1845734308,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1845734308,\"outFlow\":6471947,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410960,\"inBytes\":3456856932,\"inFlow\":3586,\"lastChangeTime\":\"89 days, 18:44:22.95\",\"lastInBytes\":3456856932,\"lastOutBytes\":493726489,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":493726489,\"outFlow\":407374,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":618,\"inBytes\":2000770409,\"inFlow\":156,\"lastChangeTime\":\"462 days, 13:56:47.66\",\"lastInBytes\":2000770409,\"lastOutBytes\":1661045920,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1661045920,\"outFlow\":461,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":379,\"inBytes\":3054424956,\"inFlow\":12,\"lastChangeTime\":\"31 days, 13:55:07.25\",\"lastInBytes\":3054424956,\"lastOutBytes\":4020247803,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4020247803,\"outFlow\":366,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":351,\"inBytes\":214171801,\"inFlow\":0,\"lastChangeTime\":\"57 days, 11:43:30.30\",\"lastInBytes\":214171801,\"lastOutBytes\":804310468,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":804310468,\"outFlow\":351,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":866468,\"inFlow\":0,\"lastChangeTime\":\"462 days, 14:10:09.74\",\"lastInBytes\":866468,\"lastOutBytes\":15422491,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":15422491,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":32,\"inBytes\":5649247,\"inFlow\":15,\"lastChangeTime\":\"113 days, 8:56:26.23\",\"lastInBytes\":5649247,\"lastOutBytes\":6639411,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6639411,\"outFlow\":17,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":126,\"inBytes\":38030005,\"inFlow\":108,\"lastChangeTime\":\"113 days, 8:56:36.76\",\"lastInBytes\":38030005,\"lastOutBytes\":6664726,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":6664726,\"outFlow\":17,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2067545660,\"inFlow\":0,\"lastChangeTime\":\"43 days, 12:47:43.34\",\"lastInBytes\":2067545660,\"lastOutBytes\":794686306,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":794686306,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1443965,\"inFlow\":0,\"lastChangeTime\":\"21 days, 14:50:36.43\",\"lastInBytes\":1443965,\"lastOutBytes\":27840813,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":27840813,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:53.027362000\"}}", + "lastDiagTime": "2026-02-02 14:39:12", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392373", + "createdBy": "2", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"7\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"65240\",\"inUnknownProtos\":\"2693467841\",\"index\":\"634\",\"lastChange\":\"153 days, 0:59:49.56\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:45:28\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1656250585\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"55344032\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":276386,\"inBytes\":1824381886,\"inFlow\":269602,\"lastChangeTime\":\"0:01:26.04\",\"lastInBytes\":1824381886,\"lastOutBytes\":1704515198,\"outBytes\":1704515198,\"outFlow\":6783,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413775,\"inBytes\":2093865227,\"inFlow\":403783,\"lastChangeTime\":\"121 days, 8:13:54.34\",\"lastInBytes\":2093865227,\"lastOutBytes\":1185061198,\"outBytes\":1185061198,\"outFlow\":9992,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":276502,\"inBytes\":1290914551,\"inFlow\":269417,\"lastChangeTime\":\"19 days, 12:34:12.16\",\"lastInBytes\":1290914551,\"lastOutBytes\":3913635743,\"outBytes\":3913635743,\"outFlow\":7085,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":898041,\"inBytes\":703785755,\"inFlow\":876134,\"lastChangeTime\":\"121 days, 8:07:11.68\",\"lastInBytes\":703785755,\"lastOutBytes\":3849977793,\"outBytes\":3849977793,\"outFlow\":21906,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276664,\"inBytes\":1436304982,\"inFlow\":269710,\"lastChangeTime\":\"19 days, 12:34:16.65\",\"lastInBytes\":1436304982,\"lastOutBytes\":2693467841,\"outBytes\":2693467841,\"outFlow\":6953,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":276592,\"inBytes\":3665290629,\"inFlow\":269496,\"lastChangeTime\":\"19 days, 12:34:18.60\",\"lastInBytes\":3665290629,\"lastOutBytes\":1376942221,\"outBytes\":1376942221,\"outFlow\":7095,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":276508,\"inBytes\":3820743518,\"inFlow\":269579,\"lastChangeTime\":\"19 days, 12:34:26.89\",\"lastInBytes\":3820743518,\"lastOutBytes\":2392007220,\"outBytes\":2392007220,\"outFlow\":6928,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":276445,\"inBytes\":2057016640,\"inFlow\":269405,\"lastChangeTime\":\"24 days, 1:42:36.59\",\"lastInBytes\":2057016640,\"lastOutBytes\":4104034076,\"outBytes\":4104034076,\"outFlow\":7039,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":275787,\"inBytes\":1604118251,\"inFlow\":269105,\"lastChangeTime\":\"19 days, 12:34:24.13\",\"lastInBytes\":1604118251,\"lastOutBytes\":3775772542,\"outBytes\":3775772542,\"outFlow\":6682,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":276782,\"inBytes\":3063727097,\"inFlow\":269821,\"lastChangeTime\":\"19 days, 12:34:13.54\",\"lastInBytes\":3063727097,\"lastOutBytes\":2482276651,\"outBytes\":2482276651,\"outFlow\":6960,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":65810,\"inFlow\":0,\"lastChangeTime\":\"38 days, 4:34:39.39\",\"lastInBytes\":65810,\"lastOutBytes\":1185357,\"outBytes\":1185357,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":195762,\"inFlow\":0,\"lastChangeTime\":\"111 days, 13:03:32.12\",\"lastInBytes\":195762,\"lastOutBytes\":13342987,\"outBytes\":13342987,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":133704,\"inFlow\":0,\"lastChangeTime\":\"24 days, 1:40:38.95\",\"lastInBytes\":133704,\"lastOutBytes\":5222475,\"outBytes\":5222475,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":802427014,\"inFlow\":1,\"lastChangeTime\":\"19 days, 12:35:33.93\",\"lastInBytes\":802427014,\"lastOutBytes\":2352781831,\"outBytes\":2352781831,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3537702,\"inBytes\":2163082106,\"inFlow\":90702,\"lastChangeTime\":\"38 days, 4:34:46.59\",\"lastInBytes\":2163082106,\"lastOutBytes\":3415493702,\"outBytes\":3415493702,\"outFlow\":3447000,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.747207000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392374", + "createdBy": "2", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"65297\",\"inUnknownProtos\":\"3855813668\",\"index\":\"634\",\"lastChange\":\"153 days, 0:45:45.88\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:d6:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3913978002\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"55347529\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":406083,\"inBytes\":4025718553,\"inFlow\":396153,\"lastChangeTime\":\"130 days, 16:19:06.75\",\"lastInBytes\":4025718553,\"lastOutBytes\":1934262951,\"outBytes\":1934262951,\"outFlow\":9929,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1087326,\"inBytes\":3452317450,\"inFlow\":1061429,\"lastChangeTime\":\"62 days, 12:20:17.65\",\"lastInBytes\":3452317450,\"lastOutBytes\":1741381933,\"outBytes\":1741381933,\"outFlow\":25896,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406934,\"inBytes\":2344352209,\"inFlow\":397054,\"lastChangeTime\":\"130 days, 16:19:13.34\",\"lastInBytes\":2344352209,\"lastOutBytes\":3318168098,\"outBytes\":3318168098,\"outFlow\":9880,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407622,\"inBytes\":4015646175,\"inFlow\":397672,\"lastChangeTime\":\"130 days, 16:19:21.10\",\"lastInBytes\":4015646175,\"lastOutBytes\":3159390679,\"outBytes\":3159390679,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406641,\"inBytes\":1809082052,\"inFlow\":396687,\"lastChangeTime\":\"0:01:51.48\",\"lastInBytes\":1809082052,\"lastOutBytes\":3855813668,\"outBytes\":3855813668,\"outFlow\":9954,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":408249,\"inBytes\":3510621949,\"inFlow\":398216,\"lastChangeTime\":\"0:01:24.43\",\"lastInBytes\":3510621949,\"lastOutBytes\":2760326140,\"outBytes\":2760326140,\"outFlow\":10032,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407075,\"inBytes\":1148135666,\"inFlow\":397070,\"lastChangeTime\":\"0:01:24.61\",\"lastInBytes\":1148135666,\"lastOutBytes\":2510956608,\"outBytes\":2510956608,\"outFlow\":10005,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":941288,\"inBytes\":569940160,\"inFlow\":918928,\"lastChangeTime\":\"62 days, 12:20:11.09\",\"lastInBytes\":569940160,\"lastOutBytes\":192198957,\"outBytes\":192198957,\"outFlow\":22359,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":875220,\"inBytes\":3378807929,\"inFlow\":859273,\"lastChangeTime\":\"0:01:25.48\",\"lastInBytes\":3378807929,\"lastOutBytes\":2894857248,\"outBytes\":2894857248,\"outFlow\":15947,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":874015,\"inBytes\":2472898133,\"inFlow\":857356,\"lastChangeTime\":\"0:01:25.55\",\"lastInBytes\":2472898133,\"lastOutBytes\":4131496662,\"outBytes\":4131496662,\"outFlow\":16658,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408279,\"inBytes\":3138450109,\"inFlow\":398509,\"lastChangeTime\":\"62 days, 12:16:42.84\",\"lastInBytes\":3138450109,\"lastOutBytes\":3647192096,\"outBytes\":3647192096,\"outFlow\":9770,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":271718,\"inBytes\":3786894388,\"inFlow\":265140,\"lastChangeTime\":\"149 days, 17:46:11.76\",\"lastInBytes\":3786894388,\"lastOutBytes\":4212054466,\"outBytes\":4212054466,\"outFlow\":6577,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":271898,\"inBytes\":4078554048,\"inFlow\":265085,\"lastChangeTime\":\"0:01:25.15\",\"lastInBytes\":4078554048,\"lastOutBytes\":3009569080,\"outBytes\":3009569080,\"outFlow\":6812,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1540491,\"inFlow\":0,\"lastChangeTime\":\"121 days, 8:05:36.41\",\"lastInBytes\":1540491,\"lastOutBytes\":69210935,\"outBytes\":69210935,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":802401756,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.44\",\"lastInBytes\":802401756,\"lastOutBytes\":2352501517,\"outBytes\":2352501517,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7206034,\"inBytes\":850346684,\"inFlow\":170494,\"lastChangeTime\":\"0:01:24.42\",\"lastInBytes\":850346684,\"lastOutBytes\":2596989017,\"outBytes\":2596989017,\"outFlow\":7035539,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.750731000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392375", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040004", + "name": "H3C前端交换机3", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193842\",\"inUnknownProtos\":\"342324745\",\"index\":\"634\",\"lastChange\":\"63 days, 6:41:14.34\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:75:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3613258107\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236835454\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":407871,\"inBytes\":2420967883,\"inFlow\":397814,\"lastChangeTime\":\"40 days, 22:01:15.38\",\"lastInBytes\":2420967883,\"lastOutBytes\":1814577149,\"outBytes\":1814577149,\"outFlow\":10057,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":408784,\"inBytes\":2594576629,\"inFlow\":398645,\"lastChangeTime\":\"40 days, 22:01:08.10\",\"lastInBytes\":2594576629,\"lastOutBytes\":213458257,\"outBytes\":213458257,\"outFlow\":10139,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":881818,\"inBytes\":4193122147,\"inFlow\":860105,\"lastChangeTime\":\"195 days, 22:20:05.21\",\"lastInBytes\":4193122147,\"lastOutBytes\":3955207927,\"outBytes\":3955207927,\"outFlow\":21712,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":885391,\"inBytes\":535850434,\"inFlow\":863463,\"lastChangeTime\":\"195 days, 22:20:01.80\",\"lastInBytes\":535850434,\"lastOutBytes\":124308548,\"outBytes\":124308548,\"outFlow\":21927,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406188,\"inBytes\":1338561196,\"inFlow\":397201,\"lastChangeTime\":\"258 days, 16:58:06.17\",\"lastInBytes\":1338561196,\"lastOutBytes\":342324745,\"outBytes\":342324745,\"outFlow\":8986,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":403462,\"inBytes\":1571034093,\"inFlow\":393492,\"lastChangeTime\":\"40 days, 22:01:09.94\",\"lastInBytes\":1571034093,\"lastOutBytes\":1226935375,\"outBytes\":1226935375,\"outFlow\":9970,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":404010,\"inBytes\":49321285,\"inFlow\":394166,\"lastChangeTime\":\"195 days, 22:19:48.87\",\"lastInBytes\":49321285,\"lastOutBytes\":3202469396,\"outBytes\":3202469396,\"outFlow\":9843,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":273524,\"inBytes\":872858491,\"inFlow\":266638,\"lastChangeTime\":\"34 days, 7:30:51.38\",\"lastInBytes\":872858491,\"lastOutBytes\":1522185873,\"outBytes\":1522185873,\"outFlow\":6886,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":996232,\"inBytes\":3934263511,\"inFlow\":972675,\"lastChangeTime\":\"226 days, 13:03:51.22\",\"lastInBytes\":3934263511,\"lastOutBytes\":2812030521,\"outBytes\":2812030521,\"outFlow\":23556,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":483396,\"inFlow\":0,\"lastChangeTime\":\"13 days, 23:37:36.85\",\"lastInBytes\":483396,\"lastOutBytes\":17158265,\"outBytes\":17158265,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1167602297,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.18\",\"lastInBytes\":1167602297,\"lastOutBytes\":1396587354,\"outBytes\":1396587354,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5075670,\"inBytes\":4108613986,\"inFlow\":128331,\"lastChangeTime\":\"13 days, 23:37:41.68\",\"lastInBytes\":4108613986,\"lastOutBytes\":3905991195,\"outBytes\":3905991195,\"outFlow\":4947338,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.762141000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392376", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040005", + "name": "H3C前端交换机4", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"194274\",\"inUnknownProtos\":\"1496290877\",\"index\":\"634\",\"lastChange\":\"63 days, 6:35:06.50\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:5f:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"550531324\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236835517\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":408695,\"inBytes\":3605582460,\"inFlow\":400556,\"lastChangeTime\":\"258 days, 16:57:22.20\",\"lastInBytes\":3605582460,\"lastOutBytes\":1930849714,\"outBytes\":1930849714,\"outFlow\":8139,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407864,\"inBytes\":2352700115,\"inFlow\":397770,\"lastChangeTime\":\"40 days, 22:00:24.66\",\"lastInBytes\":2352700115,\"lastOutBytes\":4096187131,\"outBytes\":4096187131,\"outFlow\":10093,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":402562,\"inBytes\":1797426660,\"inFlow\":394514,\"lastChangeTime\":\"258 days, 16:57:37.03\",\"lastInBytes\":1797426660,\"lastOutBytes\":3913796121,\"outBytes\":3913796121,\"outFlow\":8048,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407488,\"inBytes\":2181599695,\"inFlow\":397425,\"lastChangeTime\":\"40 days, 22:00:31.20\",\"lastInBytes\":2181599695,\"lastOutBytes\":1545628161,\"outBytes\":1545628161,\"outFlow\":10063,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406616,\"inBytes\":3086093442,\"inFlow\":396661,\"lastChangeTime\":\"40 days, 22:00:13.74\",\"lastInBytes\":3086093442,\"lastOutBytes\":1496290877,\"outBytes\":1496290877,\"outFlow\":9955,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407281,\"inBytes\":3864124266,\"inFlow\":397369,\"lastChangeTime\":\"40 days, 22:00:16.19\",\"lastInBytes\":3864124266,\"lastOutBytes\":2684791672,\"outBytes\":2684791672,\"outFlow\":9912,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1083004,\"inBytes\":3091523440,\"inFlow\":1057390,\"lastChangeTime\":\"469 days, 20:29:30.43\",\"lastInBytes\":3091523440,\"lastOutBytes\":2192996480,\"outBytes\":2192996480,\"outFlow\":25613,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":85,\"inBytes\":270682434,\"inFlow\":1,\"lastChangeTime\":\"63 days, 6:34:26.31\",\"lastInBytes\":270682434,\"lastOutBytes\":1395122140,\"outBytes\":1395122140,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":8314,\"inFlow\":0,\"lastChangeTime\":\"13 days, 23:40:27.69\",\"lastInBytes\":8314,\"lastOutBytes\":13501253,\"outBytes\":13501253,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"55 days, 0:13:12.43\",\"lastInBytes\":0,\"lastOutBytes\":145832158,\"outBytes\":145832158,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3536307,\"inBytes\":3015068371,\"inFlow\":85659,\"lastChangeTime\":\"43 days, 9:35:52.14\",\"lastInBytes\":3015068371,\"lastOutBytes\":3145224817,\"outBytes\":3145224817,\"outFlow\":3450647,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:45.759102000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392377", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1027040006", + "name": "H3C前端交换机5", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"132310\",\"inUnknownProtos\":\"2730879480\",\"index\":\"634\",\"lastChange\":\"63 days, 6:17:14.03\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:53:a8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2203352325\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236835057\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":272224,\"inBytes\":3193260134,\"inFlow\":265242,\"lastChangeTime\":\"399 days, 8:53:23.62\",\"lastInBytes\":3193260134,\"lastOutBytes\":4090858388,\"outBytes\":4090858388,\"outFlow\":6981,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":874690,\"inBytes\":2137907972,\"inFlow\":853212,\"lastChangeTime\":\"349 days, 12:09:05.52\",\"lastInBytes\":2137907972,\"lastOutBytes\":3694186188,\"outBytes\":3694186188,\"outFlow\":21477,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":882242,\"inBytes\":3304254738,\"inFlow\":860550,\"lastChangeTime\":\"349 days, 12:07:11.95\",\"lastInBytes\":3304254738,\"lastOutBytes\":3698162836,\"outBytes\":3698162836,\"outFlow\":21691,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":473628,\"inBytes\":34837392,\"inFlow\":462055,\"lastChangeTime\":\"258 days, 16:57:54.24\",\"lastInBytes\":34837392,\"lastOutBytes\":4125127020,\"outBytes\":4125127020,\"outFlow\":11572,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":494766,\"inBytes\":2806960567,\"inFlow\":484173,\"lastChangeTime\":\"258 days, 16:58:01.98\",\"lastInBytes\":2806960567,\"lastOutBytes\":2730799836,\"outBytes\":2730799836,\"outFlow\":10592,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406857,\"inBytes\":2402924090,\"inFlow\":396826,\"lastChangeTime\":\"36 days, 12:24:14.06\",\"lastInBytes\":2402924090,\"lastOutBytes\":3887374819,\"outBytes\":3887374819,\"outFlow\":10030,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407199,\"inBytes\":2125008692,\"inFlow\":397235,\"lastChangeTime\":\"36 days, 12:23:54.66\",\"lastInBytes\":2125008692,\"lastOutBytes\":3075774004,\"outBytes\":3075774004,\"outFlow\":9963,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":612855,\"inBytes\":3871038130,\"inFlow\":597493,\"lastChangeTime\":\"34 days, 6:46:15.85\",\"lastInBytes\":3871038130,\"lastOutBytes\":3424180328,\"outBytes\":3424180328,\"outFlow\":15361,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":406727,\"inBytes\":2356748025,\"inFlow\":396855,\"lastChangeTime\":\"226 days, 13:03:46.23\",\"lastInBytes\":2356748025,\"lastOutBytes\":3118920431,\"outBytes\":3118920431,\"outFlow\":9872,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":272723,\"inBytes\":1396236449,\"inFlow\":265764,\"lastChangeTime\":\"226 days, 12:56:05.14\",\"lastInBytes\":1396236449,\"lastOutBytes\":1548517751,\"outBytes\":1548517751,\"outFlow\":6959,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3145026,\"inFlow\":0,\"lastChangeTime\":\"14 days, 0:06:59.21\",\"lastInBytes\":3145026,\"lastOutBytes\":139380147,\"outBytes\":139380147,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1166899718,\"inFlow\":1,\"lastChangeTime\":\"0:01:22.56\",\"lastInBytes\":1166899718,\"lastOutBytes\":1395811226,\"outBytes\":1395811226,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5125419,\"inBytes\":3373424157,\"inFlow\":129982,\"lastChangeTime\":\"14 days, 0:06:57.94\",\"lastInBytes\":3373424157,\"lastOutBytes\":4132440739,\"outBytes\":4132440739,\"outFlow\":4995437,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.777224000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392378", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040007", + "name": "H3C前端交换机6", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"194219\",\"inUnknownProtos\":\"4089764733\",\"index\":\"634\",\"lastChange\":\"63 days, 5:55:49.82\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:53:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3559066613\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236832523\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":410352,\"inBytes\":252657522,\"inFlow\":401308,\"lastChangeTime\":\"412 days, 14:40:02.69\",\"lastInBytes\":252657522,\"lastOutBytes\":2408615994,\"outBytes\":2408615994,\"outFlow\":9044,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1272886,\"inBytes\":598725377,\"inFlow\":1241885,\"lastChangeTime\":\"81 days, 20:51:13.69\",\"lastInBytes\":598725377,\"lastOutBytes\":804010052,\"outBytes\":804010052,\"outFlow\":31000,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":415255,\"inBytes\":2694017580,\"inFlow\":405087,\"lastChangeTime\":\"412 days, 14:40:09.29\",\"lastInBytes\":2694017580,\"lastOutBytes\":1682485560,\"outBytes\":1682485560,\"outFlow\":10168,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":411641,\"inBytes\":1284990680,\"inFlow\":401543,\"lastChangeTime\":\"412 days, 14:40:11.37\",\"lastInBytes\":1284990680,\"lastOutBytes\":1415693223,\"outBytes\":1415693223,\"outFlow\":10097,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413583,\"inBytes\":2177613074,\"inFlow\":403446,\"lastChangeTime\":\"412 days, 14:40:07.69\",\"lastInBytes\":2177613074,\"lastOutBytes\":4089764733,\"outBytes\":4089764733,\"outFlow\":10137,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":414868,\"inBytes\":2379489726,\"inFlow\":405751,\"lastChangeTime\":\"412 days, 14:39:59.54\",\"lastInBytes\":2379489726,\"lastOutBytes\":796251525,\"outBytes\":796251525,\"outFlow\":9116,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":923462,\"inBytes\":1841458097,\"inFlow\":905088,\"lastChangeTime\":\"412 days, 14:40:07.88\",\"lastInBytes\":1841458097,\"lastOutBytes\":1621747596,\"outBytes\":1621747596,\"outFlow\":18373,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":412101,\"inBytes\":2414603559,\"inFlow\":403792,\"lastChangeTime\":\"412 days, 14:40:01.08\",\"lastInBytes\":2414603559,\"lastOutBytes\":1245530668,\"outBytes\":1245530668,\"outFlow\":8308,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3962396,\"inFlow\":0,\"lastChangeTime\":\"349 days, 12:44:27.28\",\"lastInBytes\":3962396,\"lastOutBytes\":261670216,\"outBytes\":261670216,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":692220,\"inFlow\":0,\"lastChangeTime\":\"13 days, 23:54:55.84\",\"lastInBytes\":692220,\"lastOutBytes\":39151169,\"outBytes\":39151169,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":1166884518,\"inFlow\":1,\"lastChangeTime\":\"0:01:20.21\",\"lastInBytes\":1166884518,\"lastOutBytes\":1396317390,\"outBytes\":1396317390,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4688742,\"inBytes\":943527557,\"inFlow\":111109,\"lastChangeTime\":\"13 days, 23:55:00.88\",\"lastInBytes\":943527557,\"lastOutBytes\":2560514986,\"outBytes\":2560514986,\"outFlow\":4577632,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.744195000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392379", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1027040008", + "name": "H3C前端交换机7", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193729\",\"inUnknownProtos\":\"4043474622\",\"index\":\"634\",\"lastChange\":\"63 days, 6:00:27.30\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:57:e8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3735720747\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236833020\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":1097974,\"inBytes\":1169922942,\"inFlow\":1072174,\"lastChangeTime\":\"469 days, 20:29:35.12\",\"lastInBytes\":1169922942,\"lastOutBytes\":610793673,\"outBytes\":610793673,\"outFlow\":25800,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":402874,\"inBytes\":1154804533,\"inFlow\":392977,\"lastChangeTime\":\"40 days, 22:00:31.37\",\"lastInBytes\":1154804533,\"lastOutBytes\":1277510375,\"outBytes\":1277510375,\"outFlow\":9896,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406366,\"inBytes\":3217712073,\"inFlow\":396374,\"lastChangeTime\":\"40 days, 22:00:23.87\",\"lastInBytes\":3217712073,\"lastOutBytes\":1842868081,\"outBytes\":1842868081,\"outFlow\":9991,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":403181,\"inBytes\":3095071910,\"inFlow\":393203,\"lastChangeTime\":\"40 days, 22:00:29.58\",\"lastInBytes\":3095071910,\"lastOutBytes\":1224559863,\"outBytes\":1224559863,\"outFlow\":9977,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407321,\"inBytes\":2024936246,\"inFlow\":397304,\"lastChangeTime\":\"40 days, 22:00:32.39\",\"lastInBytes\":2024936246,\"lastOutBytes\":4043474622,\"outBytes\":4043474622,\"outFlow\":10016,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":405797,\"inBytes\":280883635,\"inFlow\":397431,\"lastChangeTime\":\"258 days, 16:57:35.60\",\"lastInBytes\":280883635,\"lastOutBytes\":2460733442,\"outBytes\":2460733442,\"outFlow\":8365,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":399301,\"inBytes\":3679328434,\"inFlow\":391422,\"lastChangeTime\":\"258 days, 16:57:46.94\",\"lastInBytes\":3679328434,\"lastOutBytes\":1569622469,\"outBytes\":1569622469,\"outFlow\":7879,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":271197,\"inBytes\":3706648832,\"inFlow\":264561,\"lastChangeTime\":\"226 days, 12:55:44.62\",\"lastInBytes\":3706648832,\"lastOutBytes\":1986238205,\"outBytes\":1986238205,\"outFlow\":6635,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":998036,\"inBytes\":2193180306,\"inFlow\":974813,\"lastChangeTime\":\"226 days, 13:03:31.97\",\"lastInBytes\":2193180306,\"lastOutBytes\":451393799,\"outBytes\":451393799,\"outFlow\":23223,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1034439,\"inFlow\":0,\"lastChangeTime\":\"33 days, 11:08:47.89\",\"lastInBytes\":1034439,\"lastOutBytes\":40459846,\"outBytes\":40459846,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":1166872961,\"inFlow\":1,\"lastChangeTime\":\"195 days, 22:38:24.63\",\"lastInBytes\":1166872961,\"lastOutBytes\":1396393894,\"outBytes\":1396393894,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4814870,\"inBytes\":1929629033,\"inFlow\":116847,\"lastChangeTime\":\"13 days, 23:53:43.80\",\"lastInBytes\":1929629033,\"lastOutBytes\":20427206,\"outBytes\":20427206,\"outFlow\":4698023,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.738458000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392380", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040009", + "name": "H3C前端交换机8", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"15\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193778\",\"inUnknownProtos\":\"654305639\",\"index\":\"636\",\"lastChange\":\"0:01:18.50\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c3:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3248237107\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236836103\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.138\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":413872,\"inBytes\":663767505,\"inFlow\":403675,\"lastChangeTime\":\"195 days, 22:39:45.82\",\"lastInBytes\":663767505,\"lastOutBytes\":2468919824,\"outBytes\":2468919824,\"outFlow\":10197,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":410773,\"inBytes\":2673047577,\"inFlow\":400822,\"lastChangeTime\":\"469 days, 20:30:19.69\",\"lastInBytes\":2673047577,\"lastOutBytes\":3957565090,\"outBytes\":3957565090,\"outFlow\":9951,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":909421,\"inBytes\":3143293945,\"inFlow\":886784,\"lastChangeTime\":\"64 days, 14:23:03.66\",\"lastInBytes\":3143293945,\"lastOutBytes\":3947244816,\"outBytes\":3947244816,\"outFlow\":22637,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":893788,\"inBytes\":2542404858,\"inFlow\":871360,\"lastChangeTime\":\"40 days, 22:01:30.04\",\"lastInBytes\":2542404858,\"lastOutBytes\":550669371,\"outBytes\":550669371,\"outFlow\":22427,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":898062,\"inBytes\":430598218,\"inFlow\":875777,\"lastChangeTime\":\"195 days, 22:39:44.84\",\"lastInBytes\":430598218,\"lastOutBytes\":2349471447,\"outBytes\":2349471447,\"outFlow\":22284,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":890561,\"inBytes\":125789931,\"inFlow\":868320,\"lastChangeTime\":\"198 days, 18:09:59.16\",\"lastInBytes\":125789931,\"lastOutBytes\":3709781542,\"outBytes\":3709781542,\"outFlow\":22240,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":883952,\"inBytes\":3745424354,\"inFlow\":861932,\"lastChangeTime\":\"40 days, 22:01:25.60\",\"lastInBytes\":3745424354,\"lastOutBytes\":654305639,\"outBytes\":654305639,\"outFlow\":22019,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":887314,\"inBytes\":403189751,\"inFlow\":865156,\"lastChangeTime\":\"40 days, 22:01:30.73\",\"lastInBytes\":403189751,\"lastOutBytes\":2969201602,\"outBytes\":2969201602,\"outFlow\":22157,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":276815,\"inBytes\":3420208973,\"inFlow\":269695,\"lastChangeTime\":\"41 days, 18:50:03.80\",\"lastInBytes\":3420208973,\"lastOutBytes\":3051318146,\"outBytes\":3051318146,\"outFlow\":7120,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":246252,\"inFlow\":0,\"lastChangeTime\":\"14 days, 0:24:28.28\",\"lastInBytes\":246252,\"lastOutBytes\":7457722,\"outBytes\":7457722,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":268280,\"inFlow\":0,\"lastChangeTime\":\"41 days, 19:01:56.09\",\"lastInBytes\":268280,\"lastOutBytes\":53417605,\"outBytes\":53417605,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":1167257762,\"inFlow\":2,\"lastChangeTime\":\"63 days, 7:11:59.27\",\"lastInBytes\":1167257762,\"lastOutBytes\":1437020948,\"outBytes\":1437020948,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:41.60\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:41.75\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6511579,\"inBytes\":1063653204,\"inFlow\":169155,\"lastChangeTime\":\"41 days, 18:51:59.75\",\"lastInBytes\":1063653204,\"lastOutBytes\":765798347,\"outBytes\":765798347,\"outFlow\":6342424,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:45.760554000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392381", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:49", + "echoMap": {}, + "deviceId": "1027040010", + "name": "H3C前端交换机9", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"193697\",\"inUnknownProtos\":\"107934097\",\"index\":\"634\",\"lastChange\":\"63 days, 6:59:40.86\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:67:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"788545461\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236834860\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:49\",\"info\":{\"portInfoList\":[{\"flow\":893943,\"inBytes\":2367503516,\"inFlow\":871642,\"lastChangeTime\":\"40 days, 22:00:46.53\",\"lastInBytes\":2367503516,\"lastOutBytes\":934050221,\"outBytes\":934050221,\"outFlow\":22301,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":890409,\"inBytes\":3436736789,\"inFlow\":868202,\"lastChangeTime\":\"40 days, 22:00:41.17\",\"lastInBytes\":3436736789,\"lastOutBytes\":617329695,\"outBytes\":617329695,\"outFlow\":22206,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":416621,\"inBytes\":4128164008,\"inFlow\":406543,\"lastChangeTime\":\"469 days, 20:29:39.23\",\"lastInBytes\":4128164008,\"lastOutBytes\":4033881752,\"outBytes\":4033881752,\"outFlow\":10078,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":412175,\"inBytes\":461531219,\"inFlow\":402057,\"lastChangeTime\":\"36 days, 12:24:13.67\",\"lastInBytes\":461531219,\"lastOutBytes\":2965194920,\"outBytes\":2965194920,\"outFlow\":10117,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":412831,\"inBytes\":457989737,\"inFlow\":402829,\"lastChangeTime\":\"469 days, 20:29:38.38\",\"lastInBytes\":457989737,\"lastOutBytes\":107837908,\"outBytes\":107837908,\"outFlow\":10001,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":881783,\"inBytes\":1240079745,\"inFlow\":859695,\"lastChangeTime\":\"40 days, 22:00:43.18\",\"lastInBytes\":1240079745,\"lastOutBytes\":1255952905,\"outBytes\":1255952905,\"outFlow\":22088,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":896143,\"inBytes\":1731556810,\"inFlow\":873939,\"lastChangeTime\":\"40 days, 22:00:47.62\",\"lastInBytes\":1731556810,\"lastOutBytes\":607005602,\"outBytes\":607005602,\"outFlow\":22203,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":18720,\"inFlow\":0,\"lastChangeTime\":\"14 days, 0:20:01.98\",\"lastInBytes\":18720,\"lastOutBytes\":65929,\"outBytes\":65929,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":1166995211,\"inFlow\":1,\"lastChangeTime\":\"63 days, 7:00:36.24\",\"lastInBytes\":1166995211,\"lastOutBytes\":1396205220,\"outBytes\":1396205220,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4821248,\"inBytes\":2577310495,\"inFlow\":125054,\"lastChangeTime\":\"14 days, 0:20:00.41\",\"lastInBytes\":2577310495,\"lastOutBytes\":1415483490,\"outBytes\":1415483490,\"outFlow\":4696193,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.776230000\"}}", + "lastDiagTime": "2026-02-02 14:38:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "585046095575392382", + "createdBy": "0", + "createdTime": "2025-02-28 14:18:57", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:50", + "echoMap": {}, + "deviceId": "1027040011", + "name": "H3C前端交换机10", + "manufacturer": "", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.182.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface182\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"906800\",\"inUnknownProtos\":\"872455140\",\"index\":\"634\",\"lastChange\":\"63 days, 6:31:39.36\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:53:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2822049901\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"236833343\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.182.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":880444,\"inBytes\":3864638170,\"inFlow\":858761,\"lastChangeTime\":\"101 days, 8:43:52.08\",\"lastInBytes\":3864638170,\"lastOutBytes\":3156674620,\"outBytes\":3156674620,\"outFlow\":21682,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":882416,\"inBytes\":1736286165,\"inFlow\":860480,\"lastChangeTime\":\"40 days, 22:01:07.45\",\"lastInBytes\":1736286165,\"lastOutBytes\":3864320179,\"outBytes\":3864320179,\"outFlow\":21935,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":409371,\"inBytes\":3487756459,\"inFlow\":399274,\"lastChangeTime\":\"36 days, 12:24:11.79\",\"lastInBytes\":3487756459,\"lastOutBytes\":3401700417,\"outBytes\":3401700417,\"outFlow\":10097,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":271907,\"inBytes\":2682180398,\"inFlow\":265067,\"lastChangeTime\":\"100 days, 10:10:15.30\",\"lastInBytes\":2682180398,\"lastOutBytes\":4157328705,\"outBytes\":4157328705,\"outFlow\":6839,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":881863,\"inBytes\":2271821020,\"inFlow\":859920,\"lastChangeTime\":\"36 days, 12:24:02.52\",\"lastInBytes\":2271821020,\"lastOutBytes\":872236679,\"outBytes\":872236679,\"outFlow\":21942,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407063,\"inBytes\":949979124,\"inFlow\":397089,\"lastChangeTime\":\"36 days, 12:24:24.56\",\"lastInBytes\":949979124,\"lastOutBytes\":3015000397,\"outBytes\":3015000397,\"outFlow\":9974,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":882511,\"inBytes\":2717603935,\"inFlow\":860667,\"lastChangeTime\":\"36 days, 12:23:57.97\",\"lastInBytes\":2717603935,\"lastOutBytes\":27793691,\"outBytes\":27793691,\"outFlow\":21843,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":403369,\"inBytes\":555914840,\"inFlow\":393635,\"lastChangeTime\":\"469 days, 20:30:02.64\",\"lastInBytes\":555914840,\"lastOutBytes\":4255877653,\"outBytes\":4255877653,\"outFlow\":9733,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":867423,\"inBytes\":3626695601,\"inFlow\":845957,\"lastChangeTime\":\"40 days, 22:01:10.17\",\"lastInBytes\":3626695601,\"lastOutBytes\":4058383692,\"outBytes\":4058383692,\"outFlow\":21465,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":876762,\"inBytes\":2894852585,\"inFlow\":855164,\"lastChangeTime\":\"40 days, 22:01:12.10\",\"lastInBytes\":2894852585,\"lastOutBytes\":4120746226,\"outBytes\":4120746226,\"outFlow\":21597,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":405796,\"inBytes\":107216820,\"inFlow\":395777,\"lastChangeTime\":\"399 days, 8:55:01.68\",\"lastInBytes\":107216820,\"lastOutBytes\":3700370493,\"outBytes\":3700370493,\"outFlow\":10019,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":272048,\"inBytes\":2026108201,\"inFlow\":265173,\"lastChangeTime\":\"226 days, 12:56:01.33\",\"lastInBytes\":2026108201,\"lastOutBytes\":1898058120,\"outBytes\":1898058120,\"outFlow\":6875,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6296002,\"inFlow\":0,\"lastChangeTime\":\"14 days, 0:56:09.61\",\"lastInBytes\":6296002,\"lastOutBytes\":292240303,\"outBytes\":292240303,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":85,\"inBytes\":1166839837,\"inFlow\":1,\"lastChangeTime\":\"0:01:24.43\",\"lastInBytes\":1166839837,\"lastOutBytes\":1397224495,\"outBytes\":1397224495,\"outFlow\":83,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7486261,\"inBytes\":3243548836,\"inFlow\":192592,\"lastChangeTime\":\"14 days, 0:56:13.70\",\"lastInBytes\":3243548836,\"lastOutBytes\":570850294,\"outBytes\":570850294,\"outFlow\":7293668,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:45.777476000\"}}", + "lastDiagTime": "2026-02-02 14:38:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585046095575392345", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1027110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.181.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.79\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"117 days, 10:49:56.56\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"11239282\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28319298\",\"inOctets\":\"819981077\",\"inUcastPkts\":\"1308849954\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:4c:aa:d8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"9528178\",\"outQLen\":\"0\",\"outUcastPkts\":\"1276166577\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.181.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1028": { + "ndmAlarmHost": [ + { + "id": "707147686473692367", + "createdBy": null, + "createdTime": "2025-12-08 13:41:40", + "updatedBy": null, + "updatedTime": "2025-12-08 13:41:40", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.183.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "693410151973043200", + "createdBy": null, + "createdTime": "2025-10-28 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1028060001", + "name": "[405](10)新江湾3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801007006028405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043201", + "createdBy": null, + "createdTime": "2025-10-28 00:00:00", + "updatedBy": null, + "updatedTime": "2026-01-28 16:17:49", + "echoMap": {}, + "deviceId": "1028060002", + "name": "[105](10)新江湾上行1-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043202", + "createdBy": null, + "createdTime": "2025-10-28 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1028060003", + "name": "[205](10)新江湾厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043203", + "createdBy": null, + "createdTime": "2025-10-28 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:43", + "echoMap": {}, + "deviceId": "1028060004", + "name": "[103](10)新江湾上行1-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.32", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043204", + "createdBy": null, + "createdTime": "2025-10-28 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1028060005", + "name": "[372](10)新江湾安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801085006028372", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043205", + "createdBy": null, + "createdTime": "2025-10-28 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1028060006", + "name": "[107](10)新江湾上行2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.35", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043206", + "createdBy": null, + "createdTime": "2025-10-28 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1028060007", + "name": "[617](10)新江湾内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001006028617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043207", + "createdBy": null, + "createdTime": "2025-10-28 00:00:01", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:43", + "echoMap": {}, + "deviceId": "1028060008", + "name": "[106](10)新江湾上行1-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043208", + "createdBy": null, + "createdTime": "2025-10-28 00:00:01", + "updatedBy": null, + "updatedTime": "2026-01-01 18:10:00", + "echoMap": {}, + "deviceId": "1028060009", + "name": "[327](10)新江湾5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043209", + "createdBy": null, + "createdTime": "2025-10-28 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1028060010", + "name": "[108](10)新江湾上行2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.37", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043210", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2026-01-13 13:37:44", + "echoMap": {}, + "deviceId": "1028060011", + "name": "[329](10)新江湾5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043211", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1028060012", + "name": "[110](10)新江湾上行2-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.36", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043212", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1028060013", + "name": "[218](10)新江湾5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059004028218", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043213", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1028060014", + "name": "[353](10)新江湾#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.39", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802017006028353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043214", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1028060015", + "name": "[326](10)新江湾5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043215", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1028060016", + "name": "[357](10)新江湾#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.38", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802018006028357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043216", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1028060017", + "name": "[328](10)新江湾5#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043217", + "createdBy": null, + "createdTime": "2025-10-28 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1028060018", + "name": "[325](10)新江湾5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043218", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:43", + "echoMap": {}, + "deviceId": "1028060019", + "name": "[210](10)新江湾上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802001004028210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043219", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:44", + "echoMap": {}, + "deviceId": "1028060020", + "name": "[355](10)新江湾#3台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802017006028355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043220", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:44", + "echoMap": {}, + "deviceId": "1028060021", + "name": "[359](10)新江湾#3台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802018006028359", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043221", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060022", + "name": "[706](10)新江湾6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062804013006028706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043222", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060023", + "name": "[604](10)新江湾编码室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803041005028604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043223", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060024", + "name": "[619](10)新江湾内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001006028619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043224", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060025", + "name": "[102](10)新江湾上行1-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.44", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043225", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060026", + "name": "[618](10)新江湾内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001006028618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043226", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060027", + "name": "[615](10)新江湾环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803053005028615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043227", + "createdBy": null, + "createdTime": "2025-10-28 00:00:03", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1028060028", + "name": "[104](10)新江湾上行1-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.43", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043228", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060029", + "name": "[605](10)新江湾弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043229", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060030", + "name": "[207](10)新江湾厅7球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043230", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060031", + "name": "[705](10)新江湾下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.46", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062804013006028705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043231", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060032", + "name": "[606](10)新江湾弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043232", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060033", + "name": "[208](10)新江湾厅8球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043233", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060034", + "name": "[702](10)新江湾2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.45", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062804013006028702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043234", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060035", + "name": "[607](10)新江湾弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043235", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1028060036", + "name": "[319](10)新江湾3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043236", + "createdBy": null, + "createdTime": "2025-10-28 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060037", + "name": "[704](10)新江湾上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.48", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062804013006028704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043237", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060038", + "name": "[318](10)新江湾3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043238", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060039", + "name": "[625](10)新江湾变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.47", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803021006028625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043239", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060040", + "name": "[316](10)新江湾3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043240", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060041", + "name": "[317](10)新江湾3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043241", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060042", + "name": "[409](10)新江湾4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.49", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801008006028409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043242", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060043", + "name": "[320](10)新江湾3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043243", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060044", + "name": "[602](10)新江湾编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803041005028602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043244", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060045", + "name": "[365](10)新江湾B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.40", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802002006028365", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043245", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1028060046", + "name": "[603](10)新江湾编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803041005028603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043246", + "createdBy": null, + "createdTime": "2025-10-28 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060047", + "name": "[101](10)新江湾上行1-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.42", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043247", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-12-20 10:13:09", + "echoMap": {}, + "deviceId": "1028060048", + "name": "[613](10)新江湾内通道8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001005028613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043248", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060049", + "name": "[614](10)新江湾环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803053005028614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043249", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060050", + "name": "[209](10)新江湾上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.41", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802001004028209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043250", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060051", + "name": "[311](10)新江湾2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043251", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060052", + "name": "[338](10)新江湾7#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801061006028338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043252", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060053", + "name": "[630](10)新江湾环控电控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.55", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803055005028630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043253", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060054", + "name": "[312](10)新江湾2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043254", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1028060055", + "name": "[336](10)新江湾7#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801061006028336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043255", + "createdBy": null, + "createdTime": "2025-10-28 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060056", + "name": "[631](10)新江湾气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.54", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803067005028631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043256", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060057", + "name": "[313](10)新江湾2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043257", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060058", + "name": "[220](10)新江湾7#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801061004028220", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043258", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060059", + "name": "[374](10)新江湾7#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.57", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028374", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043259", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060060", + "name": "[314](10)新江湾2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043260", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-21 00:59:09", + "echoMap": {}, + "deviceId": "1028060061", + "name": "[339](10)新江湾7#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801061006028339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043261", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060062", + "name": "[375](10)新江湾6#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.56", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028375", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043262", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1028060063", + "name": "[115](10)新江湾下行1-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028115", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043263", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060064", + "name": "[124](10)新江湾下行2-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.59", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028124", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043264", + "createdBy": null, + "createdTime": "2025-10-28 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060065", + "name": "[116](10)新江湾下行1-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028116", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043265", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060066", + "name": "[629](10)新江湾消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.58", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803068005028629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043266", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060067", + "name": "[117](10)新江湾下行1-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028117", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043267", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060068", + "name": "[118](10)新江湾下行1-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028118", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043268", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060069", + "name": "[340](10)新江湾7#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801061006028340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043269", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060070", + "name": "[337](10)新江湾7#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801061006028337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043270", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1028060071", + "name": "[608](10)新江湾弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043271", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060072", + "name": "[623](10)新江湾消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001006028623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043272", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060073", + "name": "[624](10)新江湾消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001006028624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043273", + "createdBy": null, + "createdTime": "2025-10-28 00:00:08", + "updatedBy": null, + "updatedTime": "2025-12-01 03:15:57", + "echoMap": {}, + "deviceId": "1028060074", + "name": "[333](10)新江湾6#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043274", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060075", + "name": "[372](10)新江湾2#厅扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.51", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028372", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043275", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060076", + "name": "[308](10)新江湾2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043276", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060077", + "name": "[332](10)新江湾6#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043277", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060078", + "name": "[504](10)新江湾票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.50", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801030006028504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043278", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1028060079", + "name": "[368](10)新江湾长通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801083006028368", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043279", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060080", + "name": "[335](10)新江湾6#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043280", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060081", + "name": "[628](10)新江湾通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.53", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043281", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060082", + "name": "[216](10)新江湾2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056004028216", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043282", + "createdBy": null, + "createdTime": "2025-10-28 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060083", + "name": "[334](10)新江湾6#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043283", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060084", + "name": "[373](10)新江湾2#厅扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.52", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028373", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043284", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060085", + "name": "[217](10)新江湾3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057004028217", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043285", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060086", + "name": "[119](10)新江湾下行2-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.66", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028119", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043286", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1028060087", + "name": "[321](10)新江湾3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043287", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:45", + "echoMap": {}, + "deviceId": "1028060088", + "name": "[632](10)新江湾通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.65", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043288", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060089", + "name": "[322](10)新江湾3#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043289", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060090", + "name": "[633](10)新江湾气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.67", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803067005028633", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043290", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060091", + "name": "[402](10)新江湾2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801006006028402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043291", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060092", + "name": "[501](10)新江湾客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801001006028501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043292", + "createdBy": null, + "createdTime": "2025-10-28 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060093", + "name": "[219](10)新江湾6#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060004028219", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043293", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060094", + "name": "[347](10)新江湾#4厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043294", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060095", + "name": "[310](10)新江湾2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043295", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1028060096", + "name": "[344](10)新江湾#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043296", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060097", + "name": "[309](10)新江湾2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801056006028309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043297", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060098", + "name": "[343](10)新江湾#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043298", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060099", + "name": "[123](10)新江湾下行2-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.60", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028123", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043299", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060100", + "name": "[323](10)新江湾5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043300", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060101", + "name": "[348](10)新江湾#4厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043301", + "createdBy": null, + "createdTime": "2025-10-28 00:00:11", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060102", + "name": "[324](10)新江湾5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801059006028324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043302", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060103", + "name": "[330](10)新江湾6#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043303", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060104", + "name": "[121](10)新江湾下行2-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.62", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028121", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043304", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1028060105", + "name": "[206](10)新江湾厅6球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043305", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060106", + "name": "[122](10)新江湾下行2-4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.61", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028122", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043306", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060107", + "name": "[315](10)新江湾3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801057006028315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043307", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060108", + "name": "[352](10)新江湾#4厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801045006028352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043308", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060109", + "name": "[626](10)新江湾变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803021006028626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043309", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060110", + "name": "[331](10)新江湾6#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043310", + "createdBy": null, + "createdTime": "2025-10-28 00:00:12", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060111", + "name": "[120](10)新江湾下行2-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.63", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028120", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043311", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060112", + "name": "[354](10)新江湾#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802017006028354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043312", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060113", + "name": "[622](10)新江湾内通道7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803021006028622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043313", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1028060114", + "name": "[502](10)新江湾票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801030006028502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043314", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1028060115", + "name": "[403](10)新江湾2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801006006028403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043315", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1028060116", + "name": "[404](10)新江湾2#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801006006028404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043316", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1028060117", + "name": "[370](10)新江湾2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801036005028370", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043317", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1028060118", + "name": "[616](10)新江湾内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803001006028616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043318", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1028060119", + "name": "[363](10)新江湾B1垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801040006028363", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043319", + "createdBy": null, + "createdTime": "2025-10-28 00:00:13", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1028060120", + "name": "[350](10)新江湾#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801045006028350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043320", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1028060121", + "name": "[202](10)新江湾厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043321", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1028060122", + "name": "[612](10)新江湾气瓶间3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803067005028612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043322", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1028060123", + "name": "[611](10)新江湾环控室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803053005028611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043323", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1028060124", + "name": "[349](10)新江湾#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801045006028349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043324", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1028060125", + "name": "[362](10)新江湾B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801040006028362", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043325", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1028060126", + "name": "[361](10)新江湾1F垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801040005028361", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043326", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1028060127", + "name": "[201](10)新江湾厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043327", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1028060128", + "name": "[401](10)新江湾1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801005006028401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043328", + "createdBy": null, + "createdTime": "2025-10-28 00:00:14", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1028060129", + "name": "[302](10)新江湾1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043329", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1028060130", + "name": "[369](10)新江湾1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801036005028369", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043330", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1028060131", + "name": "[371](10)新江湾安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801085006028371", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043331", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1028060132", + "name": "[303](10)新江湾1#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043332", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060133", + "name": "[307](10)新江湾1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043333", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060134", + "name": "[358](10)新江湾#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802018006028358", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043334", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060135", + "name": "[306](10)新江湾1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043335", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060136", + "name": "[214](10)新江湾下行球3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802001004028214", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043336", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060137", + "name": "[366](10)新江湾B2垂梯口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802002006028366", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043337", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060138", + "name": "[213](10)新江湾下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802001004028213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043338", + "createdBy": null, + "createdTime": "2025-10-28 00:00:15", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1028060139", + "name": "[215](10)新江湾1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055004028215", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043339", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060140", + "name": "[113](10)新江湾下行1-1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043340", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060141", + "name": "[301](10)新江湾1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043341", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060142", + "name": "[114](10)新江湾下行1-2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802012006028114", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043342", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060143", + "name": "[305](10)新江湾1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043343", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060144", + "name": "[212](10)新江湾下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802001004028212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043344", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060145", + "name": "[304](10)新江湾1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801055006028304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043345", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060146", + "name": "[621](10)新江湾内通道6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803021006028621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043346", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060147", + "name": "[408](10)新江湾4#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801008006028408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043347", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060148", + "name": "[407](10)新江湾4#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801008006028407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043348", + "createdBy": null, + "createdTime": "2025-10-28 00:00:16", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1028060149", + "name": "[341](10)新江湾#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043349", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1028060150", + "name": "[342](10)新江湾#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043350", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1028060151", + "name": "[345](10)新江湾#3厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043351", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1028060152", + "name": "[627](10)新江湾变电所出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803021006028627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043352", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1028060153", + "name": "[346](10)新江湾#3厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801050006028346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043353", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1028060154", + "name": "[703](10)新江湾4#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062804013006028703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043354", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:45", + "echoMap": {}, + "deviceId": "1028060155", + "name": "[112](10)新江湾上行2-6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043355", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1028060156", + "name": "[204](10)新江湾厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043356", + "createdBy": null, + "createdTime": "2025-10-28 00:00:17", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:45", + "echoMap": {}, + "deviceId": "1028060157", + "name": "[111](10)新江湾上行2-5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043357", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1028060158", + "name": "[203](10)新江湾厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801035004028203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043358", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:45", + "echoMap": {}, + "deviceId": "1028060159", + "name": "[620](10)新江湾内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803021006028620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043359", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1028060160", + "name": "[364](10)新江湾B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801040006028364", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043360", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:46", + "echoMap": {}, + "deviceId": "1028060161", + "name": "[109](10)新江湾上行2-3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802007006028109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043361", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1028060162", + "name": "[601](10)新江湾车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803042004028601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043362", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:46", + "echoMap": {}, + "deviceId": "1028060163", + "name": "[211](10)新江湾上行球3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802001004028211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043363", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1028060164", + "name": "[406](10)新江湾4#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801008006028406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043364", + "createdBy": null, + "createdTime": "2025-10-28 00:00:18", + "updatedBy": null, + "updatedTime": "2025-12-18 14:57:46", + "echoMap": {}, + "deviceId": "1028060165", + "name": "[609](10)新江湾屏蔽门管理室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043365", + "createdBy": null, + "createdTime": "2025-10-28 00:00:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1028060166", + "name": "[503](10)新江湾票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801030006028503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043366", + "createdBy": null, + "createdTime": "2025-10-28 00:00:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1028060167", + "name": "[367](10)新江湾长通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801083006028367", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043367", + "createdBy": null, + "createdTime": "2025-10-28 00:00:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1028060168", + "name": "[351](10)新江湾#3厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.183.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801045006028351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043368", + "createdBy": null, + "createdTime": "2025-10-28 00:00:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1028060169", + "name": "[610](10)新江湾屏蔽门管理室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062803048005028610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043369", + "createdBy": null, + "createdTime": "2025-10-28 00:00:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1028060170", + "name": "[360](10)新江湾#4台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802018006028360", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410151973043370", + "createdBy": null, + "createdTime": "2025-10-28 00:00:19", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1028060171", + "name": "[356](10)新江湾#4台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062802017006028356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702329055290123768", + "createdBy": null, + "createdTime": "2025-11-22 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-22 00:00:00", + "echoMap": {}, + "deviceId": "1028060172", + "name": "[376](10)新江湾7#口出入口步梯", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.68", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801068006028376", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "702329055290123770", + "createdBy": null, + "createdTime": "2025-11-22 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-22 00:00:00", + "echoMap": {}, + "deviceId": "1028060173", + "name": "[378](10)新江湾6#口出入口步梯", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.184.69", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062801060006028378", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [], + "ndmKeyboard": [ + { + "id": "713078989064838833", + "createdBy": null, + "createdTime": "2025-12-23 10:30:29", + "updatedBy": null, + "updatedTime": "2025-12-23 10:31:35", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.183.52", + "manageUrl": "http:\\\\10.18.183.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "713078997654772836", + "createdBy": null, + "createdTime": "2025-12-23 10:31:24", + "updatedBy": null, + "updatedTime": "2025-12-23 10:31:24", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.183.51", + "manageUrl": "http:\\\\10.18.183.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [], + "ndmNvr": [], + "ndmSecurityBox": [ + { + "id": "707141518900655911", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:49", + "echoMap": {}, + "deviceId": "1028030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2933380\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161271033\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"262 days, 6:53:01.91\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2933385\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:80\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.21900001,\"status\":1,\"voltage\":26.173},{\"current\":0.22000001,\"status\":1,\"voltage\":26.173},{\"current\":0.22000001,\"status\":1,\"voltage\":26.173},{\"current\":0.22100002,\"status\":1,\"voltage\":26.173},{\"current\":0.22000001,\"status\":1,\"voltage\":26.173},{\"current\":0.26200002,\"status\":1,\"voltage\":26.173},{\"current\":0.223,\"status\":1,\"voltage\":26.173},{\"current\":0.223,\"status\":1,\"voltage\":26.173},{\"current\":0.23500001,\"status\":1,\"voltage\":26.173},{\"current\":0.22000001,\"status\":1,\"voltage\":26.384},{\"current\":0.003,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.22500001,\"status\":1,\"voltage\":26.384},{\"current\":0.22900002,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384},{\"current\":0.001,\"status\":1,\"voltage\":26.384}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208302177\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:34:49", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655912", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1028030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2933046\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161252464\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2933051\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:7f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.76400006,\"status\":1,\"voltage\":25.149002},{\"current\":0.683,\"status\":1,\"voltage\":25.149002},{\"current\":0.001,\"status\":1,\"voltage\":25.149002},{\"current\":1.0350001,\"status\":1,\"voltage\":25.149002},{\"current\":0.61600006,\"status\":1,\"voltage\":25.149002},{\"current\":0.577,\"status\":1,\"voltage\":25.149002},{\"current\":0.63100004,\"status\":1,\"voltage\":25.149002},{\"current\":0.74200004,\"status\":1,\"voltage\":25.149002},{\"current\":0.54700005,\"status\":1,\"voltage\":25.149002},{\"current\":0.771,\"status\":1,\"voltage\":25.943},{\"current\":0.002,\"status\":1,\"voltage\":25.943},{\"current\":0.81500006,\"status\":1,\"voltage\":25.943},{\"current\":0.77500004,\"status\":1,\"voltage\":25.943},{\"current\":0.25500003,\"status\":1,\"voltage\":25.943},{\"current\":0.64500004,\"status\":1,\"voltage\":25.943},{\"current\":0.001,\"status\":1,\"voltage\":25.943}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208302188\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655914", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1028030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207965\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:3b\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.53000003,\"status\":1,\"voltage\":26.550001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.550001},{\"current\":0.25,\"status\":1,\"voltage\":26.550001},{\"current\":0.34100002,\"status\":1,\"voltage\":26.550001},{\"current\":0.24000001,\"status\":1,\"voltage\":26.550001},{\"current\":0.252,\"status\":1,\"voltage\":26.550001},{\"current\":0.324,\"status\":1,\"voltage\":26.550001},{\"current\":0.31800002,\"status\":1,\"voltage\":26.550001},{\"current\":0.26000002,\"status\":1,\"voltage\":26.550001},{\"current\":0.21100001,\"status\":1,\"voltage\":26.224},{\"current\":0.003,\"status\":1,\"voltage\":26.224},{\"current\":0.22000001,\"status\":1,\"voltage\":26.224},{\"current\":0.001,\"status\":1,\"voltage\":26.224},{\"current\":0.001,\"status\":1,\"voltage\":26.224},{\"current\":0.001,\"status\":1,\"voltage\":26.224},{\"current\":0.001,\"status\":1,\"voltage\":26.224}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302169\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655915", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1028030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161208553\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:e2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22500001,\"status\":1,\"voltage\":26.041},{\"current\":0.26500002,\"status\":1,\"voltage\":26.041},{\"current\":0.541,\"status\":1,\"voltage\":26.041},{\"current\":0.528,\"status\":1,\"voltage\":26.041},{\"current\":0.001,\"status\":1,\"voltage\":26.041},{\"current\":0.53900003,\"status\":1,\"voltage\":26.041},{\"current\":0.23900001,\"status\":1,\"voltage\":26.041},{\"current\":0.23,\"status\":1,\"voltage\":26.041},{\"current\":0.224,\"status\":1,\"voltage\":26.041},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.003,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302173\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655916", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1028030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161208033\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:ff\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.321,\"status\":1,\"voltage\":26.720001},{\"current\":0.34600002,\"status\":1,\"voltage\":26.720001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.720001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.720001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.720001},{\"current\":0.536,\"status\":1,\"voltage\":26.720001},{\"current\":0.0,\"status\":1,\"voltage\":26.720001},{\"current\":0.0,\"status\":1,\"voltage\":26.720001},{\"current\":0.0,\"status\":1,\"voltage\":26.720001},{\"current\":0.0,\"status\":1,\"voltage\":26.795002},{\"current\":0.003,\"status\":1,\"voltage\":26.795002},{\"current\":0.001,\"status\":1,\"voltage\":26.795002},{\"current\":0.001,\"status\":1,\"voltage\":26.795002},{\"current\":0.001,\"status\":1,\"voltage\":26.795002},{\"current\":0.001,\"status\":1,\"voltage\":26.795002},{\"current\":0.001,\"status\":1,\"voltage\":26.795002}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0022512208302174\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655917", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1028030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207958\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:b4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.518,\"status\":1,\"voltage\":27.010002},{\"current\":0.34800002,\"status\":1,\"voltage\":27.010002},{\"current\":0.001,\"status\":0,\"voltage\":27.010002},{\"current\":0.28100002,\"status\":1,\"voltage\":27.010002},{\"current\":0.293,\"status\":1,\"voltage\":27.010002},{\"current\":0.282,\"status\":1,\"voltage\":27.010002},{\"current\":0.32700002,\"status\":1,\"voltage\":27.010002},{\"current\":0.25100002,\"status\":1,\"voltage\":27.010002},{\"current\":0.26000002,\"status\":1,\"voltage\":27.010002},{\"current\":0.001,\"status\":1,\"voltage\":26.37},{\"current\":0.002,\"status\":1,\"voltage\":26.37},{\"current\":0.001,\"status\":1,\"voltage\":26.37},{\"current\":0.001,\"status\":1,\"voltage\":26.37},{\"current\":0.001,\"status\":1,\"voltage\":26.37},{\"current\":0.001,\"status\":1,\"voltage\":26.37},{\"current\":0.001,\"status\":1,\"voltage\":26.37}],\"fanSpeeds\":[0,0],\"humidity\":41,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302176\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655918", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1028030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207415\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:38\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.53800005,\"status\":1,\"voltage\":26.300001},{\"current\":0.31,\"status\":1,\"voltage\":26.300001},{\"current\":0.54800004,\"status\":1,\"voltage\":26.300001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.300001},{\"current\":0.256,\"status\":1,\"voltage\":26.300001},{\"current\":0.53000003,\"status\":1,\"voltage\":26.300001},{\"current\":0.393,\"status\":1,\"voltage\":26.300001},{\"current\":0.34,\"status\":1,\"voltage\":26.300001},{\"current\":0.29700002,\"status\":1,\"voltage\":26.300001},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.003,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002},{\"current\":0.001,\"status\":1,\"voltage\":26.334002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302168\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655919", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1028030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161208272\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:31\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":8.0060005,\"status\":1,\"voltage\":25.302002},{\"current\":0.89300007,\"status\":1,\"voltage\":25.302002},{\"current\":0.84400004,\"status\":1,\"voltage\":25.302002},{\"current\":0.634,\"status\":1,\"voltage\":25.302002},{\"current\":0.59800005,\"status\":1,\"voltage\":25.302002},{\"current\":0.66700006,\"status\":1,\"voltage\":25.302002},{\"current\":0.777,\"status\":1,\"voltage\":25.302002},{\"current\":0.597,\"status\":1,\"voltage\":25.302002},{\"current\":0.786,\"status\":1,\"voltage\":25.302002},{\"current\":0.786,\"status\":1,\"voltage\":25.984001},{\"current\":0.003,\"status\":1,\"voltage\":25.984001},{\"current\":0.001,\"status\":1,\"voltage\":25.984001},{\"current\":0.001,\"status\":1,\"voltage\":25.984001},{\"current\":0.001,\"status\":1,\"voltage\":25.984001},{\"current\":0.001,\"status\":1,\"voltage\":25.984001},{\"current\":0.0,\"status\":1,\"voltage\":25.984001}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0022512208302187\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655920", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:53", + "echoMap": {}, + "deviceId": "1028030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207299\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:7d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.31100002,\"status\":1,\"voltage\":26.425001},{\"current\":0.266,\"status\":1,\"voltage\":26.425001},{\"current\":0.439,\"status\":1,\"voltage\":26.425001},{\"current\":0.28500003,\"status\":1,\"voltage\":26.425001},{\"current\":0.257,\"status\":1,\"voltage\":26.425001},{\"current\":0.544,\"status\":1,\"voltage\":26.425001},{\"current\":0.001,\"status\":1,\"voltage\":26.425001},{\"current\":0.001,\"status\":1,\"voltage\":26.425001},{\"current\":0.001,\"status\":1,\"voltage\":26.425001},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.003,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356},{\"current\":0.001,\"status\":1,\"voltage\":26.356}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302189\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655921", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1028030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161208218\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:df\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":26.684002},{\"current\":14.761001,\"status\":1,\"voltage\":26.684002},{\"current\":0.001,\"status\":1,\"voltage\":26.684002},{\"current\":0.52000004,\"status\":1,\"voltage\":26.684002},{\"current\":0.001,\"status\":1,\"voltage\":26.684002},{\"current\":0.40100002,\"status\":1,\"voltage\":26.684002},{\"current\":0.277,\"status\":1,\"voltage\":26.684002},{\"current\":0.307,\"status\":1,\"voltage\":26.684002},{\"current\":0.31500003,\"status\":1,\"voltage\":26.684002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.725},{\"current\":0.003,\"status\":1,\"voltage\":26.725},{\"current\":0.22800002,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302184\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655922", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:54", + "echoMap": {}, + "deviceId": "1028030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207351\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:eb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.34600002,\"status\":1,\"voltage\":26.189001},{\"current\":0.32900003,\"status\":1,\"voltage\":26.189001},{\"current\":0.24900001,\"status\":1,\"voltage\":26.189001},{\"current\":0.25500003,\"status\":1,\"voltage\":26.189001},{\"current\":0.23400001,\"status\":1,\"voltage\":26.189001},{\"current\":0.26200002,\"status\":1,\"voltage\":26.189001},{\"current\":0.252,\"status\":1,\"voltage\":26.189001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.189001},{\"current\":0.268,\"status\":1,\"voltage\":26.189001},{\"current\":0.29000002,\"status\":1,\"voltage\":26.667002},{\"current\":0.003,\"status\":1,\"voltage\":26.667002},{\"current\":0.312,\"status\":1,\"voltage\":26.667002},{\"current\":0.001,\"status\":1,\"voltage\":26.667002},{\"current\":0.001,\"status\":1,\"voltage\":26.667002},{\"current\":0.001,\"status\":1,\"voltage\":26.667002},{\"current\":0.001,\"status\":1,\"voltage\":26.667002}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302182\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655923", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:55", + "echoMap": {}, + "deviceId": "1028030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207989\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:64\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.532,\"status\":1,\"voltage\":27.078001},{\"current\":0.24200001,\"status\":1,\"voltage\":27.078001},{\"current\":0.25,\"status\":1,\"voltage\":27.078001},{\"current\":0.324,\"status\":1,\"voltage\":27.078001},{\"current\":0.224,\"status\":1,\"voltage\":27.078001},{\"current\":0.324,\"status\":1,\"voltage\":27.078001},{\"current\":0.328,\"status\":1,\"voltage\":27.078001},{\"current\":0.26200002,\"status\":1,\"voltage\":27.078001},{\"current\":0.0,\"status\":1,\"voltage\":27.078001},{\"current\":0.0,\"status\":1,\"voltage\":28.462002},{\"current\":0.003,\"status\":0,\"voltage\":28.462002},{\"current\":0.001,\"status\":0,\"voltage\":28.462002},{\"current\":0.001,\"status\":0,\"voltage\":28.462002},{\"current\":0.001,\"status\":0,\"voltage\":28.462002},{\"current\":0.001,\"status\":0,\"voltage\":28.462002},{\"current\":0.001,\"status\":0,\"voltage\":28.462002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0022512208302186\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655924", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:56", + "echoMap": {}, + "deviceId": "1028030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161206414\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:3f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":1.0780001,\"status\":1,\"voltage\":25.442001},{\"current\":0.64900005,\"status\":1,\"voltage\":25.442001},{\"current\":1.143,\"status\":1,\"voltage\":25.442001},{\"current\":0.643,\"status\":1,\"voltage\":25.442001},{\"current\":0.71800005,\"status\":1,\"voltage\":25.442001},{\"current\":0.665,\"status\":1,\"voltage\":25.442001},{\"current\":0.85200006,\"status\":1,\"voltage\":25.442001},{\"current\":0.001,\"status\":1,\"voltage\":25.442001},{\"current\":0.001,\"status\":1,\"voltage\":25.442001},{\"current\":0.001,\"status\":1,\"voltage\":25.764002},{\"current\":0.002,\"status\":1,\"voltage\":25.764002},{\"current\":0.001,\"status\":1,\"voltage\":25.764002},{\"current\":0.001,\"status\":1,\"voltage\":25.764002},{\"current\":0.001,\"status\":1,\"voltage\":25.764002},{\"current\":0.0,\"status\":1,\"voltage\":25.764002},{\"current\":0.0,\"status\":1,\"voltage\":25.764002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302171\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655925", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:56", + "echoMap": {}, + "deviceId": "1028030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207419\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:3d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23200001,\"status\":1,\"voltage\":26.793001},{\"current\":0.23400001,\"status\":1,\"voltage\":26.793001},{\"current\":0.261,\"status\":1,\"voltage\":26.793001},{\"current\":0.25,\"status\":1,\"voltage\":26.793001},{\"current\":0.24300002,\"status\":1,\"voltage\":26.793001},{\"current\":0.504,\"status\":1,\"voltage\":26.793001},{\"current\":0.26900002,\"status\":1,\"voltage\":26.793001},{\"current\":0.49800003,\"status\":1,\"voltage\":26.793001},{\"current\":0.252,\"status\":1,\"voltage\":26.793001},{\"current\":0.24000001,\"status\":1,\"voltage\":27.233002},{\"current\":0.003,\"status\":1,\"voltage\":27.233002},{\"current\":0.263,\"status\":1,\"voltage\":27.233002},{\"current\":0.24100001,\"status\":1,\"voltage\":27.233002},{\"current\":0.231,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002},{\"current\":0.001,\"status\":1,\"voltage\":27.233002}],\"fanSpeeds\":[0,0],\"humidity\":38,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302185\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655926", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:57", + "echoMap": {}, + "deviceId": "1028030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161206830\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:da\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.259,\"status\":1,\"voltage\":26.158},{\"current\":0.277,\"status\":1,\"voltage\":26.158},{\"current\":0.23500001,\"status\":1,\"voltage\":26.158},{\"current\":0.518,\"status\":1,\"voltage\":26.158},{\"current\":0.24300002,\"status\":1,\"voltage\":26.158},{\"current\":0.275,\"status\":1,\"voltage\":26.158},{\"current\":0.21100001,\"status\":1,\"voltage\":26.158},{\"current\":0.23500001,\"status\":1,\"voltage\":26.158},{\"current\":0.208,\"status\":1,\"voltage\":26.158},{\"current\":0.26700002,\"status\":1,\"voltage\":26.480001},{\"current\":0.002,\"status\":1,\"voltage\":26.480001},{\"current\":0.257,\"status\":1,\"voltage\":26.480001},{\"current\":0.001,\"status\":1,\"voltage\":26.480001},{\"current\":0.001,\"status\":1,\"voltage\":26.480001},{\"current\":0.0,\"status\":1,\"voltage\":26.480001},{\"current\":0.0,\"status\":1,\"voltage\":26.480001}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302175\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655927", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:57", + "echoMap": {}, + "deviceId": "1028030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2212107\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"121616968\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2212112\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:e7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.246,\"status\":1,\"voltage\":26.745},{\"current\":0.28100002,\"status\":1,\"voltage\":26.745},{\"current\":0.22500001,\"status\":1,\"voltage\":26.745},{\"current\":0.21000001,\"status\":1,\"voltage\":26.745},{\"current\":0.209,\"status\":1,\"voltage\":26.745},{\"current\":0.514,\"status\":1,\"voltage\":26.745},{\"current\":0.26200002,\"status\":1,\"voltage\":26.745},{\"current\":0.24100001,\"status\":1,\"voltage\":26.745},{\"current\":0.51000005,\"status\":1,\"voltage\":26.745},{\"current\":0.23,\"status\":1,\"voltage\":26.336},{\"current\":0.003,\"status\":1,\"voltage\":26.336},{\"current\":0.25500003,\"status\":1,\"voltage\":26.336},{\"current\":0.28,\"status\":1,\"voltage\":26.336},{\"current\":0.22000001,\"status\":1,\"voltage\":26.336},{\"current\":0.001,\"status\":1,\"voltage\":26.336},{\"current\":0.0,\"status\":1,\"voltage\":26.336}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302170\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655928", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:58", + "echoMap": {}, + "deviceId": "1028030018", + "name": "安防箱18", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161208722\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:84\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25300002,\"status\":1,\"voltage\":26.167002},{\"current\":0.231,\"status\":1,\"voltage\":26.167002},{\"current\":0.24800001,\"status\":1,\"voltage\":26.167002},{\"current\":0.28,\"status\":1,\"voltage\":26.167002},{\"current\":0.24200001,\"status\":1,\"voltage\":26.167002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.167002},{\"current\":0.51100004,\"status\":1,\"voltage\":26.167002},{\"current\":0.257,\"status\":1,\"voltage\":26.167002},{\"current\":0.22900002,\"status\":1,\"voltage\":26.167002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.165},{\"current\":0.003,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165},{\"current\":0.001,\"status\":1,\"voltage\":26.165}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302183\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655929", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:58", + "echoMap": {}, + "deviceId": "1028030019", + "name": "安防箱19", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207274\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:27\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24700001,\"status\":1,\"voltage\":146.574},{\"current\":0.257,\"status\":1,\"voltage\":146.574},{\"current\":0.29000002,\"status\":1,\"voltage\":146.574},{\"current\":0.259,\"status\":1,\"voltage\":146.574},{\"current\":0.25800002,\"status\":1,\"voltage\":146.574},{\"current\":0.001,\"status\":1,\"voltage\":146.574},{\"current\":0.001,\"status\":1,\"voltage\":146.574},{\"current\":0.001,\"status\":1,\"voltage\":146.574},{\"current\":0.001,\"status\":1,\"voltage\":146.574},{\"current\":0.001,\"status\":1,\"voltage\":26.111002},{\"current\":0.003,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":1,\"voltage\":26.111002},{\"current\":0.001,\"status\":1,\"voltage\":26.111002}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302172\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655930", + "createdBy": "0", + "createdTime": "2025-12-03 15:34:58", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:59", + "echoMap": {}, + "deviceId": "1028030020", + "name": "安防箱20", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.184.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2932211\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"161207063\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 12:06:28.15\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2932216\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:29\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":26.805002},{\"current\":0.001,\"status\":1,\"voltage\":27.211},{\"current\":0.003,\"status\":1,\"voltage\":27.211},{\"current\":0.001,\"status\":1,\"voltage\":27.211},{\"current\":0.001,\"status\":1,\"voltage\":27.211},{\"current\":0.001,\"status\":1,\"voltage\":27.211},{\"current\":0.001,\"status\":1,\"voltage\":27.211},{\"current\":0.001,\"status\":1,\"voltage\":27.211}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0022512208302179\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:34:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "707141518900655890", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:16", + "echoMap": {}, + "deviceId": "1028040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.183.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif183\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"62 days, 9:39:35.65\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:0e:84\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"9\",\"temperature\":\"36\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.183.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"9070523\",\"0\",\"0\",\"1541286\",\"1129363\",\"0\",\"1544848\",\"3811075\",\"631451\",\"2223577\",\"2265342\",\"3812808\",\"4102540\",\"2279476\",\"835282\",\"3352178\",\"5564135\",\"8104776\",\"8049820\",\"8047073\",\"7961465\",\"7897978\",\"630306\",\"0\",\"0\",\"0\",\"0\",\"6164489\",\"97907607\",\"6142813\",\"6130076\",\"0\",\"0\",\"7088918\",\"49507089\",\"6567607\",\"4998458\",\"40129327\",\"5725792\",\"5726183\",\"241363784\",\"0\",\"0\",\"9022\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:16\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"62 days, 9:44:19.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37484,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":570,\"opticalVoltage\":3266,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37740,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":799,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41220,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":544,\"opticalVoltage\":3237,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33930,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":563,\"opticalVoltage\":3270,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39779,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":601,\"opticalVoltage\":3252,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35729,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":557,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33119,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":603,\"opticalVoltage\":3245,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36479,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":563,\"opticalVoltage\":3230,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":80819,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":2,\"opticalVoltage\":3227,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35400,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":563,\"opticalVoltage\":3278,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41009,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":558,\"opticalVoltage\":3243,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34799,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":626,\"opticalVoltage\":3269,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39990,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":563,\"opticalVoltage\":3358,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40034,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":707,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44130,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":559,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41819,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":663,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37560,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":562,\"opticalVoltage\":3323,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":42583,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":571,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":81330,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":263,\"opticalVoltage\":3309,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43799,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":561,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39540,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":561,\"opticalVoltage\":3363,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":654,\"inBytes\":802266971,\"inFlow\":74,\"lastChangeTime\":\"62 days, 10:13:11.85\",\"lastInBytes\":802266971,\"lastOutBytes\":1713058447,\"opticalBiasCurrent\":10729,\"opticalReceivePower\":204,\"opticalTemperature\":49,\"opticalTransmitPower\":257,\"opticalVoltage\":3319,\"outBytes\":1713058447,\"outFlow\":579,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":923335,\"inBytes\":3181575958,\"inFlow\":2252,\"lastChangeTime\":\"43 days, 14:24:42.65\",\"lastInBytes\":3181575958,\"lastOutBytes\":629022623,\"opticalBiasCurrent\":36209,\"opticalReceivePower\":404,\"opticalTemperature\":51,\"opticalTransmitPower\":558,\"opticalVoltage\":3307,\"outBytes\":629022623,\"outFlow\":921082,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":839305,\"inBytes\":804831603,\"inFlow\":423648,\"lastChangeTime\":\"43 days, 14:25:33.88\",\"lastInBytes\":804831603,\"lastOutBytes\":2625477485,\"opticalBiasCurrent\":40034,\"opticalReceivePower\":487,\"opticalTemperature\":49,\"opticalTransmitPower\":669,\"opticalVoltage\":3352,\"outBytes\":2625477485,\"outFlow\":415657,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":3625332,\"inBytes\":3779589352,\"inFlow\":3510100,\"lastChangeTime\":\"446 days, 0:09:45.74\",\"lastInBytes\":3779589352,\"lastOutBytes\":3451750708,\"opticalBiasCurrent\":18143,\"opticalReceivePower\":5,\"opticalTemperature\":50,\"opticalTransmitPower\":239,\"opticalVoltage\":3308,\"outBytes\":3451750708,\"outFlow\":115231,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5874801,\"inBytes\":2932103652,\"inFlow\":5699924,\"lastChangeTime\":\"127 days, 2:06:10.93\",\"lastInBytes\":2932103652,\"lastOutBytes\":413576921,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":149,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":413576921,\"outFlow\":174876,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10473,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":255,\"opticalVoltage\":3307,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4449987,\"inBytes\":2770332578,\"inFlow\":4317611,\"lastChangeTime\":\"442 days, 11:40:16.46\",\"lastInBytes\":2770332578,\"lastOutBytes\":3418736749,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":218,\"opticalTemperature\":44,\"opticalTransmitPower\":243,\"opticalVoltage\":3342,\"outBytes\":3418736749,\"outFlow\":132375,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3072297,\"inBytes\":3439096392,\"inFlow\":2974338,\"lastChangeTime\":\"445 days, 23:56:02.27\",\"lastInBytes\":3439096392,\"lastOutBytes\":932463783,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":193,\"opticalTemperature\":48,\"opticalTransmitPower\":232,\"opticalVoltage\":3350,\"outBytes\":932463783,\"outFlow\":97959,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4743761,\"inBytes\":572521987,\"inFlow\":4603523,\"lastChangeTime\":\"126 days, 23:13:00.63\",\"lastInBytes\":572521987,\"lastOutBytes\":114918338,\"opticalBiasCurrent\":10913,\"opticalReceivePower\":179,\"opticalTemperature\":47,\"opticalTransmitPower\":259,\"opticalVoltage\":3328,\"outBytes\":114918338,\"outFlow\":140237,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4805353,\"inBytes\":3271352809,\"inFlow\":4653121,\"lastChangeTime\":\"445 days, 23:59:15.15\",\"lastInBytes\":3271352809,\"lastOutBytes\":21979301,\"opticalBiasCurrent\":10656,\"opticalReceivePower\":265,\"opticalTemperature\":50,\"opticalTransmitPower\":251,\"opticalVoltage\":3332,\"outBytes\":21979301,\"outFlow\":152231,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5568471,\"inBytes\":1473589246,\"inFlow\":5406740,\"lastChangeTime\":\"230 days, 23:45:03.61\",\"lastInBytes\":1473589246,\"lastOutBytes\":2564570824,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":201,\"opticalTemperature\":46,\"opticalTransmitPower\":242,\"opticalVoltage\":3326,\"outBytes\":2564570824,\"outFlow\":161730,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3006921,\"inBytes\":1175968829,\"inFlow\":2918893,\"lastChangeTime\":\"127 days, 0:23:53.40\",\"lastInBytes\":1175968829,\"lastOutBytes\":3957341419,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":197,\"opticalTemperature\":48,\"opticalTransmitPower\":238,\"opticalVoltage\":3326,\"outBytes\":3957341419,\"outFlow\":88027,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3507186,\"inBytes\":60150374,\"inFlow\":3397241,\"lastChangeTime\":\"126 days, 23:20:28.18\",\"lastInBytes\":60150374,\"lastOutBytes\":2601199023,\"opticalBiasCurrent\":10342,\"opticalReceivePower\":316,\"opticalTemperature\":49,\"opticalTransmitPower\":258,\"opticalVoltage\":3332,\"outBytes\":2601199023,\"outFlow\":109944,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5008517,\"inBytes\":2346207663,\"inFlow\":4848847,\"lastChangeTime\":\"368 days, 8:46:01.27\",\"lastInBytes\":2346207663,\"lastOutBytes\":443429389,\"opticalBiasCurrent\":10156,\"opticalReceivePower\":237,\"opticalTemperature\":45,\"opticalTransmitPower\":250,\"opticalVoltage\":3340,\"outBytes\":443429389,\"outFlow\":159670,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4651833,\"inBytes\":3732581015,\"inFlow\":4508460,\"lastChangeTime\":\"368 days, 8:19:45.09\",\"lastInBytes\":3732581015,\"lastOutBytes\":1357391481,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":37,\"opticalTemperature\":43,\"opticalTransmitPower\":238,\"opticalVoltage\":3308,\"outBytes\":1357391481,\"outFlow\":143373,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2934454,\"inBytes\":3838289469,\"inFlow\":2848888,\"lastChangeTime\":\"445 days, 23:26:27.67\",\"lastInBytes\":3838289469,\"lastOutBytes\":816631522,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":4,\"opticalTemperature\":45,\"opticalTransmitPower\":238,\"opticalVoltage\":3296,\"outBytes\":816631522,\"outFlow\":85565,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2529945,\"inBytes\":3022562538,\"inFlow\":2453950,\"lastChangeTime\":\"442 days, 12:04:42.42\",\"lastInBytes\":3022562538,\"lastOutBytes\":3122452175,\"opticalBiasCurrent\":9810,\"opticalReceivePower\":4,\"opticalTemperature\":45,\"opticalTransmitPower\":250,\"opticalVoltage\":3299,\"outBytes\":3122452175,\"outFlow\":75995,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7878175,\"inBytes\":283032720,\"inFlow\":7626000,\"lastChangeTime\":\"126 days, 22:16:52.63\",\"lastInBytes\":283032720,\"lastOutBytes\":2995551230,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":206,\"opticalTemperature\":47,\"opticalTransmitPower\":245,\"opticalVoltage\":3326,\"outBytes\":2995551230,\"outFlow\":252174,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7204188,\"inBytes\":1615108074,\"inFlow\":6972467,\"lastChangeTime\":\"446 days, 0:31:16.31\",\"lastInBytes\":1615108074,\"lastOutBytes\":3372234853,\"opticalBiasCurrent\":10836,\"opticalReceivePower\":118,\"opticalTemperature\":45,\"opticalTransmitPower\":250,\"opticalVoltage\":3324,\"outBytes\":3372234853,\"outFlow\":231720,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7104447,\"inBytes\":3920317396,\"inFlow\":6878024,\"lastChangeTime\":\"106 days, 10:55:29.35\",\"lastInBytes\":3920317396,\"lastOutBytes\":3892626303,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":214,\"opticalTemperature\":44,\"opticalTransmitPower\":245,\"opticalVoltage\":3338,\"outBytes\":3892626303,\"outFlow\":226423,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7096252,\"inBytes\":3806351304,\"inFlow\":6869140,\"lastChangeTime\":\"126 days, 22:16:58.60\",\"lastInBytes\":3806351304,\"lastOutBytes\":1096131729,\"opticalBiasCurrent\":10123,\"opticalReceivePower\":2,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3312,\"outBytes\":1096131729,\"outFlow\":227111,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3062862,\"inBytes\":283070472,\"inFlow\":2964363,\"lastChangeTime\":\"127 days, 0:12:59.94\",\"lastInBytes\":283070472,\"lastOutBytes\":3221947472,\"opticalBiasCurrent\":10925,\"opticalReceivePower\":131,\"opticalTemperature\":45,\"opticalTransmitPower\":246,\"opticalVoltage\":3365,\"outBytes\":3221947472,\"outFlow\":98499,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7090323,\"inBytes\":977718453,\"inFlow\":63074,\"lastChangeTime\":\"126 days, 23:17:17.96\",\"lastInBytes\":977718453,\"lastOutBytes\":138679166,\"opticalBiasCurrent\":10423,\"opticalReceivePower\":267,\"opticalTemperature\":46,\"opticalTransmitPower\":240,\"opticalVoltage\":3324,\"outBytes\":138679166,\"outFlow\":7027249,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10050,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":240,\"opticalVoltage\":3296,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":241,\"opticalVoltage\":3388,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10095,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":245,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10564,\"opticalReceivePower\":0,\"opticalTemperature\":48,\"opticalTransmitPower\":248,\"opticalVoltage\":3337,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":31113,\"inBytes\":2957319127,\"inFlow\":13066,\"lastChangeTime\":\"6:16:25.23\",\"lastInBytes\":2957319127,\"lastOutBytes\":2459293868,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2459293868,\"outFlow\":18046,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27342157,\"inBytes\":679925731,\"inFlow\":10701922,\"lastChangeTime\":\"0:10:38.21\",\"lastInBytes\":679925731,\"lastOutBytes\":816347155,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":816347155,\"outFlow\":16640234,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":79664,\"inBytes\":2143918989,\"inFlow\":40709,\"lastChangeTime\":\"6:27:09.50\",\"lastInBytes\":2143918989,\"lastOutBytes\":3433758337,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3433758337,\"outFlow\":38955,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":352,\"inBytes\":378870266,\"inFlow\":6,\"lastChangeTime\":\"6:18:35.91\",\"lastInBytes\":378870266,\"lastOutBytes\":1430183220,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1430183220,\"outFlow\":346,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2745407,\"inBytes\":2242314623,\"inFlow\":68509,\"lastChangeTime\":\"145 days, 21:59:20.27\",\"lastInBytes\":2242314623,\"lastOutBytes\":319336058,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":319336058,\"outFlow\":2676897,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27822179,\"inBytes\":519023162,\"inFlow\":989161,\"lastChangeTime\":\"133 days, 8:50:16.32\",\"lastInBytes\":519023162,\"lastOutBytes\":2857069481,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2857069481,\"outFlow\":26833017,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8111230,\"inBytes\":211970021,\"inFlow\":872709,\"lastChangeTime\":\"6:17:49.13\",\"lastInBytes\":211970021,\"lastOutBytes\":1781290634,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1781290634,\"outFlow\":7238520,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6455938,\"inBytes\":3480255778,\"inFlow\":619425,\"lastChangeTime\":\"62 days, 10:47:15.03\",\"lastInBytes\":3480255778,\"lastOutBytes\":374348405,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":374348405,\"outFlow\":5836513,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":28030153,\"inBytes\":4281413483,\"inFlow\":610851,\"lastChangeTime\":\"62 days, 10:47:17.66\",\"lastInBytes\":4281413483,\"lastOutBytes\":2465226953,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2465226953,\"outFlow\":27419301,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":596,\"inBytes\":1996681403,\"inFlow\":151,\"lastChangeTime\":\"5:46:03.00\",\"lastInBytes\":1996681403,\"lastOutBytes\":3851460327,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3851460327,\"outFlow\":445,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":887,\"inBytes\":3098524331,\"inFlow\":227,\"lastChangeTime\":\"6:02:31.57\",\"lastInBytes\":3098524331,\"lastOutBytes\":94536561,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":94536561,\"outFlow\":659,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":890,\"inBytes\":1531307084,\"inFlow\":89,\"lastChangeTime\":\"98 days, 8:29:41.12\",\"lastInBytes\":1531307084,\"lastOutBytes\":1294615942,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1294615942,\"outFlow\":800,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1578971503,\"inFlow\":0,\"lastChangeTime\":\"7:10:17.41\",\"lastInBytes\":1578971503,\"lastOutBytes\":1909992723,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1909992723,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":520604,\"inFlow\":0,\"lastChangeTime\":\"133 days, 8:56:06.41\",\"lastInBytes\":520604,\"lastOutBytes\":3939679,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3939679,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2552981,\"inFlow\":0,\"lastChangeTime\":\"126 days, 22:14:31.84\",\"lastInBytes\":2552981,\"lastOutBytes\":1717521569,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1717521569,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3074313575,\"inFlow\":0,\"lastChangeTime\":\"70 days, 11:47:30.34\",\"lastInBytes\":3074313575,\"lastOutBytes\":347777258,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":347777258,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":119,\"inBytes\":36279929,\"inFlow\":104,\"lastChangeTime\":\"148 days, 11:47:23.46\",\"lastInBytes\":36279929,\"lastOutBytes\":5898418,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":5898418,\"outFlow\":15,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27,\"inBytes\":4929610,\"inFlow\":12,\"lastChangeTime\":\"148 days, 11:47:30.55\",\"lastInBytes\":4929610,\"lastOutBytes\":5872594,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":5872594,\"outFlow\":15,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.687063000\"}}", + "lastDiagTime": "2026-02-02 14:39:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655891", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133998\",\"inUnknownProtos\":\"165684890\",\"index\":\"634\",\"lastChange\":\"215 days, 0:24:18.57\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:89:60\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"900460271\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"215542285\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":271889,\"inBytes\":2622026547,\"inFlow\":265081,\"lastChangeTime\":\"1:02:05.79\",\"lastInBytes\":2622026547,\"lastOutBytes\":2626385647,\"outBytes\":2626385647,\"outFlow\":6807,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":271588,\"inBytes\":4150028739,\"inFlow\":264845,\"lastChangeTime\":\"1:02:06.82\",\"lastInBytes\":4150028739,\"lastOutBytes\":3913193362,\"outBytes\":3913193362,\"outFlow\":6743,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":271626,\"inBytes\":3657111399,\"inFlow\":265040,\"lastChangeTime\":\"1:02:10.92\",\"lastInBytes\":3657111399,\"lastOutBytes\":2452849029,\"outBytes\":2452849029,\"outFlow\":6585,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":271638,\"inBytes\":58568419,\"inFlow\":264939,\"lastChangeTime\":\"215 days, 0:18:40.01\",\"lastInBytes\":58568419,\"lastOutBytes\":165684890,\"outBytes\":165684890,\"outFlow\":6698,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410799,\"inBytes\":2664562595,\"inFlow\":400721,\"lastChangeTime\":\"215 days, 0:18:16.57\",\"lastInBytes\":2664562595,\"lastOutBytes\":446192982,\"outBytes\":446192982,\"outFlow\":10078,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":272795,\"inBytes\":3913038392,\"inFlow\":266150,\"lastChangeTime\":\"215 days, 0:18:58.56\",\"lastInBytes\":3913038392,\"lastOutBytes\":1778444322,\"outBytes\":1778444322,\"outFlow\":6645,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":272791,\"inBytes\":1003586605,\"inFlow\":265779,\"lastChangeTime\":\"215 days, 0:18:54.95\",\"lastInBytes\":1003586605,\"lastOutBytes\":2387839819,\"outBytes\":2387839819,\"outFlow\":7011,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":272040,\"inBytes\":359841088,\"inFlow\":265229,\"lastChangeTime\":\"1:02:52.61\",\"lastInBytes\":359841088,\"lastOutBytes\":2706403732,\"outBytes\":2706403732,\"outFlow\":6811,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":271822,\"inBytes\":2384687149,\"inFlow\":264881,\"lastChangeTime\":\"1:02:40.57\",\"lastInBytes\":2384687149,\"lastOutBytes\":2422750630,\"outBytes\":2422750630,\"outFlow\":6940,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":271831,\"inBytes\":1393094470,\"inFlow\":265005,\"lastChangeTime\":\"215 days, 0:22:27.24\",\"lastInBytes\":1393094470,\"lastOutBytes\":3616430261,\"outBytes\":3616430261,\"outFlow\":6825,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":713070122,\"inFlow\":0,\"lastChangeTime\":\"215 days, 0:23:23.20\",\"lastInBytes\":713070122,\"lastOutBytes\":3415241968,\"outBytes\":3415241968,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406696,\"inBytes\":1745634009,\"inFlow\":396940,\"lastChangeTime\":\"374 days, 10:04:34.91\",\"lastInBytes\":1745634009,\"lastOutBytes\":4209897083,\"outBytes\":4209897083,\"outFlow\":9755,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":276211,\"inBytes\":461804609,\"inFlow\":269494,\"lastChangeTime\":\"215 days, 0:31:35.86\",\"lastInBytes\":461804609,\"lastOutBytes\":167153616,\"outBytes\":167153616,\"outFlow\":6716,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4368427,\"inFlow\":0,\"lastChangeTime\":\"215 days, 0:38:35.90\",\"lastInBytes\":4368427,\"lastOutBytes\":181866642,\"outBytes\":181866642,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":306561324,\"inFlow\":1,\"lastChangeTime\":\"215 days, 0:24:18.57\",\"lastInBytes\":306561324,\"lastOutBytes\":2092285347,\"outBytes\":2092285347,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3553798,\"inBytes\":135068384,\"inFlow\":91189,\"lastChangeTime\":\"215 days, 1:29:52.87\",\"lastInBytes\":135068384,\"lastOutBytes\":322682536,\"outBytes\":322682536,\"outFlow\":3462609,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.364593000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655892", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"163928\",\"inUnknownProtos\":\"789739525\",\"index\":\"634\",\"lastChange\":\"0:01:21.20\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:5f:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"933054369\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"312878916\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":408727,\"inBytes\":3555068873,\"inFlow\":398720,\"lastChangeTime\":\"0:01:20.77\",\"lastInBytes\":3555068873,\"lastOutBytes\":3972519632,\"outBytes\":3972519632,\"outFlow\":10006,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":406698,\"inBytes\":3022362640,\"inFlow\":396695,\"lastChangeTime\":\"0:01:20.98\",\"lastInBytes\":3022362640,\"lastOutBytes\":2475846631,\"outBytes\":2475846631,\"outFlow\":10002,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":562256,\"inBytes\":2319335177,\"inFlow\":550717,\"lastChangeTime\":\"257 days, 11:02:33.25\",\"lastInBytes\":2319335177,\"lastOutBytes\":498232256,\"outBytes\":498232256,\"outFlow\":11538,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":403343,\"inBytes\":1069903587,\"inFlow\":393460,\"lastChangeTime\":\"0:01:21.08\",\"lastInBytes\":1069903587,\"lastOutBytes\":870369461,\"outBytes\":870369461,\"outFlow\":9882,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":408298,\"inBytes\":3557879748,\"inFlow\":398480,\"lastChangeTime\":\"377 days, 17:58:33.49\",\"lastInBytes\":3557879748,\"lastOutBytes\":789739525,\"outBytes\":789739525,\"outFlow\":9818,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":405903,\"inBytes\":3666191505,\"inFlow\":395931,\"lastChangeTime\":\"445 days, 21:57:51.17\",\"lastInBytes\":3666191505,\"lastOutBytes\":3309599338,\"outBytes\":3309599338,\"outFlow\":9972,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407198,\"inBytes\":2667920275,\"inFlow\":397259,\"lastChangeTime\":\"445 days, 21:57:41.27\",\"lastInBytes\":2667920275,\"lastOutBytes\":2318661578,\"outBytes\":2318661578,\"outFlow\":9938,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":406363,\"inBytes\":2710074177,\"inFlow\":396424,\"lastChangeTime\":\"445 days, 21:57:36.59\",\"lastInBytes\":2710074177,\"lastOutBytes\":440597189,\"outBytes\":440597189,\"outFlow\":9939,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":406263,\"inBytes\":1555070203,\"inFlow\":396513,\"lastChangeTime\":\"17 days, 6:51:20.37\",\"lastInBytes\":1555070203,\"lastOutBytes\":2086336395,\"outBytes\":2086336395,\"outFlow\":9749,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":403792,\"inBytes\":3604884084,\"inFlow\":395741,\"lastChangeTime\":\"166 days, 14:26:40.55\",\"lastInBytes\":3604884084,\"lastOutBytes\":2307428829,\"outBytes\":2307428829,\"outFlow\":8050,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404984,\"inBytes\":2530395050,\"inFlow\":396787,\"lastChangeTime\":\"166 days, 14:26:36.33\",\"lastInBytes\":2530395050,\"lastOutBytes\":3914637299,\"outBytes\":3914637299,\"outFlow\":8197,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404903,\"inBytes\":1659406977,\"inFlow\":396934,\"lastChangeTime\":\"0:01:22.63\",\"lastInBytes\":1659406977,\"lastOutBytes\":4227141418,\"outBytes\":4227141418,\"outFlow\":7969,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":276431,\"inBytes\":2832836580,\"inFlow\":269672,\"lastChangeTime\":\"307 days, 6:25:00.22\",\"lastInBytes\":2832836580,\"lastOutBytes\":645201634,\"outBytes\":645201634,\"outFlow\":6759,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":407608,\"inBytes\":3863848776,\"inFlow\":397555,\"lastChangeTime\":\"445 days, 21:57:42.28\",\"lastInBytes\":3863848776,\"lastOutBytes\":1176243724,\"outBytes\":1176243724,\"outFlow\":10052,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":305783741,\"inFlow\":1,\"lastChangeTime\":\"438 days, 7:01:10.32\",\"lastInBytes\":305783741,\"lastOutBytes\":290450617,\"outBytes\":290450617,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.15\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5722795,\"inBytes\":3052221840,\"inFlow\":137359,\"lastChangeTime\":\"0:01:21.19\",\"lastInBytes\":3052221840,\"lastOutBytes\":208039683,\"outBytes\":208039683,\"outFlow\":5585435,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.380933000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655894", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"64783\",\"inUnknownProtos\":\"1460845943\",\"index\":\"634\",\"lastChange\":\"0:01:23.86\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:87:20\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2505874653\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"41290757\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.134\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":406016,\"inBytes\":2795660961,\"inFlow\":396266,\"lastChangeTime\":\"62 days, 8:10:33.55\",\"lastInBytes\":2795660961,\"lastOutBytes\":1158766885,\"outBytes\":1158766885,\"outFlow\":9750,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407666,\"inBytes\":3338440278,\"inFlow\":397818,\"lastChangeTime\":\"130 days, 12:09:41.90\",\"lastInBytes\":3338440278,\"lastOutBytes\":1014413291,\"outBytes\":1014413291,\"outFlow\":9848,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406748,\"inBytes\":1340358483,\"inFlow\":396860,\"lastChangeTime\":\"130 days, 12:09:38.38\",\"lastInBytes\":1340358483,\"lastOutBytes\":3854532498,\"outBytes\":3854532498,\"outFlow\":9888,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":405136,\"inBytes\":407817158,\"inFlow\":396998,\"lastChangeTime\":\"0:01:24.43\",\"lastInBytes\":407817158,\"lastOutBytes\":3425319279,\"outBytes\":3425319279,\"outFlow\":8138,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407463,\"inBytes\":3427052273,\"inFlow\":397398,\"lastChangeTime\":\"130 days, 12:09:33.88\",\"lastInBytes\":3427052273,\"lastOutBytes\":1460845943,\"outBytes\":1460845943,\"outFlow\":10064,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407061,\"inBytes\":789670555,\"inFlow\":397044,\"lastChangeTime\":\"130 days, 12:09:36.36\",\"lastInBytes\":789670555,\"lastOutBytes\":1058244147,\"outBytes\":1058244147,\"outFlow\":10016,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":404859,\"inBytes\":3778282076,\"inFlow\":396916,\"lastChangeTime\":\"0:01:24.85\",\"lastInBytes\":3778282076,\"lastOutBytes\":1122893988,\"outBytes\":1122893988,\"outFlow\":7943,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404949,\"inBytes\":2617702816,\"inFlow\":396959,\"lastChangeTime\":\"0:01:24.85\",\"lastInBytes\":2617702816,\"lastOutBytes\":3922456023,\"outBytes\":3922456023,\"outFlow\":7989,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408881,\"inBytes\":1930351222,\"inFlow\":398877,\"lastChangeTime\":\"130 days, 12:09:34.41\",\"lastInBytes\":1930351222,\"lastOutBytes\":752794311,\"outBytes\":752794311,\"outFlow\":10004,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":406800,\"inBytes\":3104217812,\"inFlow\":396861,\"lastChangeTime\":\"0:01:24.43\",\"lastInBytes\":3104217812,\"lastOutBytes\":4263317354,\"outBytes\":4263317354,\"outFlow\":9939,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":271549,\"inBytes\":3342304350,\"inFlow\":265125,\"lastChangeTime\":\"0:01:24.84\",\"lastInBytes\":3342304350,\"lastOutBytes\":1019757401,\"outBytes\":1019757401,\"outFlow\":6423,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":304119201,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.03\",\"lastInBytes\":304119201,\"lastOutBytes\":2474339626,\"outBytes\":2474339626,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4351332,\"inBytes\":4202722447,\"inFlow\":104329,\"lastChangeTime\":\"0:01:23.84\",\"lastInBytes\":4202722447,\"lastOutBytes\":3148577181,\"outBytes\":3148577181,\"outFlow\":4247003,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.364708000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655895", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"167798\",\"inUnknownProtos\":\"1779098714\",\"index\":\"634\",\"lastChange\":\"319 days, 1:54:36.18\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:c0:e0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2445342236\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"313000129\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.135\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":271725,\"inBytes\":2758087933,\"inFlow\":265073,\"lastChangeTime\":\"0:01:27.33\",\"lastInBytes\":2758087933,\"lastOutBytes\":3238137566,\"outBytes\":3238137566,\"outFlow\":6652,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":407494,\"inBytes\":2537905655,\"inFlow\":397384,\"lastChangeTime\":\"0:13:51.60\",\"lastInBytes\":2537905655,\"lastOutBytes\":1604951996,\"outBytes\":1604951996,\"outFlow\":10110,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406301,\"inBytes\":640153565,\"inFlow\":396510,\"lastChangeTime\":\"377 days, 21:47:51.79\",\"lastInBytes\":640153565,\"lastOutBytes\":1770662337,\"outBytes\":1770662337,\"outFlow\":9790,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407175,\"inBytes\":2961707229,\"inFlow\":397379,\"lastChangeTime\":\"377 days, 21:47:52.84\",\"lastInBytes\":2961707229,\"lastOutBytes\":1570375043,\"outBytes\":1570375043,\"outFlow\":9796,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414868,\"inBytes\":1769450730,\"inFlow\":404063,\"lastChangeTime\":\"377 days, 21:44:33.71\",\"lastInBytes\":1769450730,\"lastOutBytes\":1779098714,\"outBytes\":1779098714,\"outFlow\":10805,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4212037688,\"inFlow\":0,\"lastChangeTime\":\"319 days, 1:47:34.82\",\"lastInBytes\":4212037688,\"lastOutBytes\":1491508009,\"outBytes\":1491508009,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":2},{\"flow\":409690,\"inBytes\":1332886656,\"inFlow\":399638,\"lastChangeTime\":\"446 days, 1:47:09.50\",\"lastInBytes\":1332886656,\"lastOutBytes\":2576653843,\"outBytes\":2576653843,\"outFlow\":10051,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":408140,\"inBytes\":2188888050,\"inFlow\":398119,\"lastChangeTime\":\"446 days, 1:47:17.09\",\"lastInBytes\":2188888050,\"lastOutBytes\":556368932,\"outBytes\":556368932,\"outFlow\":10020,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":271953,\"inBytes\":1629297017,\"inFlow\":265314,\"lastChangeTime\":\"319 days, 1:54:01.14\",\"lastInBytes\":1629297017,\"lastOutBytes\":99441909,\"outBytes\":99441909,\"outFlow\":6638,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":819589,\"inFlow\":0,\"lastChangeTime\":\"319 days, 1:55:26.86\",\"lastInBytes\":819589,\"lastOutBytes\":34734863,\"outBytes\":34734863,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":348521,\"inFlow\":0,\"lastChangeTime\":\"319 days, 1:49:18.01\",\"lastInBytes\":348521,\"lastOutBytes\":11969677,\"outBytes\":11969677,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1625739,\"inFlow\":0,\"lastChangeTime\":\"0:18:10.49\",\"lastInBytes\":1625739,\"lastOutBytes\":60855381,\"outBytes\":60855381,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":305667838,\"inFlow\":1,\"lastChangeTime\":\"319 days, 1:55:26.21\",\"lastInBytes\":305667838,\"lastOutBytes\":305477453,\"outBytes\":305477453,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3018795,\"inBytes\":1568202243,\"inFlow\":77829,\"lastChangeTime\":\"319 days, 1:54:36.18\",\"lastInBytes\":1568202243,\"lastOutBytes\":4108944333,\"outBytes\":4108944333,\"outFlow\":2940965,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.353757000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655896", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164345\",\"inUnknownProtos\":\"1582144017\",\"index\":\"634\",\"lastChange\":\"0:01:25.18\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:c2:20\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2960412525\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.136\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":410172,\"inBytes\":701416683,\"inFlow\":402113,\"lastChangeTime\":\"166 days, 18:15:40.37\",\"lastInBytes\":701416683,\"lastOutBytes\":2559440098,\"outBytes\":2559440098,\"outFlow\":8058,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":876499,\"inBytes\":1184596400,\"inFlow\":858593,\"lastChangeTime\":\"166 days, 18:15:48.44\",\"lastInBytes\":1184596400,\"lastOutBytes\":447877785,\"outBytes\":447877785,\"outFlow\":17905,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408450,\"inBytes\":282525850,\"inFlow\":398480,\"lastChangeTime\":\"5 days, 11:39:51.13\",\"lastInBytes\":282525850,\"lastOutBytes\":2353004928,\"outBytes\":2353004928,\"outFlow\":9969,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":406793,\"inBytes\":3938969348,\"inFlow\":396834,\"lastChangeTime\":\"24 days, 15:20:41.16\",\"lastInBytes\":3938969348,\"lastOutBytes\":1796111492,\"outBytes\":1796111492,\"outFlow\":9958,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406277,\"inBytes\":2074653014,\"inFlow\":396335,\"lastChangeTime\":\"446 days, 1:45:58.93\",\"lastInBytes\":2074653014,\"lastOutBytes\":1582144017,\"outBytes\":1582144017,\"outFlow\":9941,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":408991,\"inBytes\":3930911366,\"inFlow\":399136,\"lastChangeTime\":\"377 days, 21:43:01.54\",\"lastInBytes\":3930911366,\"lastOutBytes\":3206113013,\"outBytes\":3206113013,\"outFlow\":9855,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":348399,\"inFlow\":0,\"lastChangeTime\":\"438 days, 11:18:41.46\",\"lastInBytes\":348399,\"lastOutBytes\":9117936,\"outBytes\":9117936,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":13807,\"inFlow\":0,\"lastChangeTime\":\"2:08:16.55\",\"lastInBytes\":13807,\"lastOutBytes\":1572615,\"outBytes\":1572615,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":305760861,\"inFlow\":1,\"lastChangeTime\":\"438 days, 11:19:04.19\",\"lastInBytes\":305760861,\"lastOutBytes\":327264611,\"outBytes\":327264611,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2930123,\"inBytes\":587050428,\"inFlow\":69339,\"lastChangeTime\":\"2:08:22.30\",\"lastInBytes\":587050428,\"lastOutBytes\":3459319367,\"outBytes\":3459319367,\"outFlow\":2860783,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.346364000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655897", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"646\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"646\",\"inOctets\":\"0\",\"inUcastPkts\":\"167908\",\"inUnknownProtos\":\"456614640\",\"index\":\"634\",\"lastChange\":\"0:01:33.17\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:6f:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"672837380\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"312984641\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.137\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":406369,\"inBytes\":2863316148,\"inFlow\":396457,\"lastChangeTime\":\"377 days, 21:43:11.53\",\"lastInBytes\":2863316148,\"lastOutBytes\":2331930538,\"outBytes\":2331930538,\"outFlow\":9912,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":453658,\"inBytes\":3339174018,\"inFlow\":443097,\"lastChangeTime\":\"166 days, 18:15:41.40\",\"lastInBytes\":3339174018,\"lastOutBytes\":2142405880,\"outBytes\":2142405880,\"outFlow\":10561,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407670,\"inBytes\":1859158718,\"inFlow\":397692,\"lastChangeTime\":\"241 days, 11:04:08.48\",\"lastInBytes\":1859158718,\"lastOutBytes\":4289541155,\"outBytes\":4289541155,\"outFlow\":9978,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":891264,\"inBytes\":2926170863,\"inFlow\":869213,\"lastChangeTime\":\"3:19:14.74\",\"lastInBytes\":2926170863,\"lastOutBytes\":1317906379,\"outBytes\":1317906379,\"outFlow\":22051,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406375,\"inBytes\":1719881290,\"inFlow\":396441,\"lastChangeTime\":\"3:19:39.62\",\"lastInBytes\":1719881290,\"lastOutBytes\":456614640,\"outBytes\":456614640,\"outFlow\":9934,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406901,\"inBytes\":4069039824,\"inFlow\":396787,\"lastChangeTime\":\"3:18:01.72\",\"lastInBytes\":4069039824,\"lastOutBytes\":2473004411,\"outBytes\":2473004411,\"outFlow\":10114,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":405143,\"inBytes\":3677738090,\"inFlow\":395220,\"lastChangeTime\":\"3:18:36.11\",\"lastInBytes\":3677738090,\"lastOutBytes\":2746027894,\"outBytes\":2746027894,\"outFlow\":9922,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":408462,\"inBytes\":3327454086,\"inFlow\":398455,\"lastChangeTime\":\"0:01:33.90\",\"lastInBytes\":3327454086,\"lastOutBytes\":2267769260,\"outBytes\":2267769260,\"outFlow\":10007,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":881934,\"inBytes\":448235159,\"inFlow\":860631,\"lastChangeTime\":\"445 days, 11:34:51.52\",\"lastInBytes\":448235159,\"lastOutBytes\":3811081458,\"outBytes\":3811081458,\"outFlow\":21302,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4006623,\"inFlow\":0,\"lastChangeTime\":\"319 days, 2:08:41.05\",\"lastInBytes\":4006623,\"lastOutBytes\":44034411,\"outBytes\":44034411,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":290123,\"inFlow\":0,\"lastChangeTime\":\"241 days, 11:05:25.33\",\"lastInBytes\":290123,\"lastOutBytes\":22320483,\"outBytes\":22320483,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":14252,\"inFlow\":0,\"lastChangeTime\":\"1:37:51.16\",\"lastInBytes\":14252,\"lastOutBytes\":514461,\"outBytes\":514461,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":305704988,\"inFlow\":1,\"lastChangeTime\":\"319 days, 2:08:45.91\",\"lastInBytes\":305704988,\"lastOutBytes\":317052681,\"outBytes\":317052681,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.37\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4681932,\"inBytes\":2218411085,\"inFlow\":119525,\"lastChangeTime\":\"319 days, 1:57:05.32\",\"lastInBytes\":2218411085,\"lastOutBytes\":4086593893,\"outBytes\":4086593893,\"outFlow\":4562407,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.370420000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655898", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164786\",\"inUnknownProtos\":\"47638876\",\"index\":\"634\",\"lastChange\":\"0:54:21.97\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:27:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3358945267\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"313063558\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.138\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":406684,\"inBytes\":167403486,\"inFlow\":396885,\"lastChangeTime\":\"377 days, 21:43:40.43\",\"lastInBytes\":167403486,\"lastOutBytes\":498126405,\"outBytes\":498126405,\"outFlow\":9799,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":419880,\"inBytes\":695376448,\"inFlow\":410651,\"lastChangeTime\":\"166 days, 18:16:03.98\",\"lastInBytes\":695376448,\"lastOutBytes\":1096756760,\"outBytes\":1096756760,\"outFlow\":9229,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":989324,\"inBytes\":1878508223,\"inFlow\":965845,\"lastChangeTime\":\"377 days, 21:43:42.62\",\"lastInBytes\":1878508223,\"lastOutBytes\":4011455424,\"outBytes\":4011455424,\"outFlow\":23479,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407360,\"inBytes\":2422407011,\"inFlow\":397375,\"lastChangeTime\":\"3:13:56.38\",\"lastInBytes\":2422407011,\"lastOutBytes\":1078756281,\"outBytes\":1078756281,\"outFlow\":9985,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407344,\"inBytes\":852582038,\"inFlow\":397347,\"lastChangeTime\":\"3:13:22.35\",\"lastInBytes\":852582038,\"lastOutBytes\":47638876,\"outBytes\":47638876,\"outFlow\":9997,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1030422,\"inBytes\":2382304347,\"inFlow\":1006545,\"lastChangeTime\":\"377 days, 21:43:33.72\",\"lastInBytes\":2382304347,\"lastOutBytes\":324363752,\"outBytes\":324363752,\"outFlow\":23877,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":964774,\"inBytes\":1606780871,\"inFlow\":945862,\"lastChangeTime\":\"166 days, 18:15:53.56\",\"lastInBytes\":1606780871,\"lastOutBytes\":763142330,\"outBytes\":763142330,\"outFlow\":18912,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":402391,\"inBytes\":1476967543,\"inFlow\":393424,\"lastChangeTime\":\"438 days, 17:18:00.36\",\"lastInBytes\":1476967543,\"lastOutBytes\":785685883,\"outBytes\":785685883,\"outFlow\":8967,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":403961,\"inBytes\":619580097,\"inFlow\":396116,\"lastChangeTime\":\"3:11:42.11\",\"lastInBytes\":619580097,\"lastOutBytes\":498148314,\"outBytes\":498148314,\"outFlow\":7844,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":30861,\"inFlow\":0,\"lastChangeTime\":\"0:42:16.53\",\"lastInBytes\":30861,\"lastOutBytes\":1578278,\"outBytes\":1578278,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":971213,\"inFlow\":0,\"lastChangeTime\":\"0:53:29.27\",\"lastInBytes\":971213,\"lastOutBytes\":44378748,\"outBytes\":44378748,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":305219140,\"inFlow\":1,\"lastChangeTime\":\"438 days, 11:39:23.92\",\"lastInBytes\":305219140,\"lastOutBytes\":4059162955,\"outBytes\":4059162955,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.24\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5464916,\"inBytes\":3097578295,\"inFlow\":128286,\"lastChangeTime\":\"104 days, 1:34:23.80\",\"lastInBytes\":3097578295,\"lastOutBytes\":1647638011,\"outBytes\":1647638011,\"outFlow\":5336629,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.369954000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655899", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164085\",\"inUnknownProtos\":\"1087888126\",\"index\":\"634\",\"lastChange\":\"0:57:29.42\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:70:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3002660872\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"313069839\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.139\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"5\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":407273,\"inBytes\":625562135,\"inFlow\":397348,\"lastChangeTime\":\"0:01:33.10\",\"lastInBytes\":625562135,\"lastOutBytes\":2382619028,\"outBytes\":2382619028,\"outFlow\":9924,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":408959,\"inBytes\":1889817246,\"inFlow\":398886,\"lastChangeTime\":\"3:09:28.81\",\"lastInBytes\":1889817246,\"lastOutBytes\":49862031,\"outBytes\":49862031,\"outFlow\":10073,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":412172,\"inBytes\":1830238216,\"inFlow\":402057,\"lastChangeTime\":\"446 days, 1:46:04.72\",\"lastInBytes\":1830238216,\"lastOutBytes\":2691703343,\"outBytes\":2691703343,\"outFlow\":10115,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":406235,\"inBytes\":174423833,\"inFlow\":396488,\"lastChangeTime\":\"377 days, 21:43:13.28\",\"lastInBytes\":174423833,\"lastOutBytes\":1215249181,\"outBytes\":1215249181,\"outFlow\":9747,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406339,\"inBytes\":3486773875,\"inFlow\":396392,\"lastChangeTime\":\"446 days, 1:46:10.32\",\"lastInBytes\":3486773875,\"lastOutBytes\":1087885839,\"outBytes\":1087885839,\"outFlow\":9946,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407071,\"inBytes\":3076407964,\"inFlow\":397136,\"lastChangeTime\":\"446 days, 1:46:11.20\",\"lastInBytes\":3076407964,\"lastOutBytes\":1896422947,\"outBytes\":1896422947,\"outFlow\":9935,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1032107,\"inBytes\":3567691629,\"inFlow\":1010480,\"lastChangeTime\":\"438 days, 5:10:34.02\",\"lastInBytes\":3567691629,\"lastOutBytes\":3911697051,\"outBytes\":3911697051,\"outFlow\":21626,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407373,\"inBytes\":619672009,\"inFlow\":397418,\"lastChangeTime\":\"446 days, 1:46:03.67\",\"lastInBytes\":619672009,\"lastOutBytes\":232769307,\"outBytes\":232769307,\"outFlow\":9955,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":502116,\"inBytes\":1852208183,\"inFlow\":491766,\"lastChangeTime\":\"166 days, 18:16:01.69\",\"lastInBytes\":1852208183,\"lastOutBytes\":447752971,\"outBytes\":447752971,\"outFlow\":10350,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":491657,\"inBytes\":1857397571,\"inFlow\":481450,\"lastChangeTime\":\"166 days, 18:15:47.02\",\"lastInBytes\":1857397571,\"lastOutBytes\":3090158240,\"outBytes\":3090158240,\"outFlow\":10206,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":32946,\"inFlow\":0,\"lastChangeTime\":\"438 days, 11:36:06.36\",\"lastInBytes\":32946,\"lastOutBytes\":2329377,\"outBytes\":2329377,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5305,\"inFlow\":0,\"lastChangeTime\":\"438 days, 11:36:44.54\",\"lastInBytes\":5305,\"lastOutBytes\":1548714,\"outBytes\":1548714,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":305903935,\"inFlow\":1,\"lastChangeTime\":\"438 days, 11:37:25.42\",\"lastInBytes\":305903935,\"lastOutBytes\":272135665,\"outBytes\":272135665,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.18\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4930965,\"inBytes\":3853053553,\"inFlow\":118091,\"lastChangeTime\":\"0:57:29.42\",\"lastInBytes\":3853053553,\"lastOutBytes\":154810325,\"outBytes\":154810325,\"outFlow\":4812873,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.353623000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655900", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"164454\",\"inUnknownProtos\":\"3635741687\",\"index\":\"634\",\"lastChange\":\"0:01:21.74\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:c4:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2808177004\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.140\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":416009,\"inBytes\":2980123674,\"inFlow\":406690,\"lastChangeTime\":\"166 days, 18:16:13.58\",\"lastInBytes\":2980123674,\"lastOutBytes\":571230725,\"outBytes\":571230725,\"outFlow\":9319,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":899282,\"inBytes\":1906089500,\"inFlow\":877042,\"lastChangeTime\":\"3:17:35.56\",\"lastInBytes\":1906089500,\"lastOutBytes\":2550284758,\"outBytes\":2550284758,\"outFlow\":22239,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":276696,\"inBytes\":1003580772,\"inFlow\":269944,\"lastChangeTime\":\"441 days, 12:32:43.27\",\"lastInBytes\":1003580772,\"lastOutBytes\":2832145600,\"outBytes\":2832145600,\"outFlow\":6751,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413909,\"inBytes\":1978241355,\"inFlow\":403804,\"lastChangeTime\":\"3:17:17.05\",\"lastInBytes\":1978241355,\"lastOutBytes\":908904162,\"outBytes\":908904162,\"outFlow\":10104,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":414338,\"inBytes\":4030009070,\"inFlow\":404214,\"lastChangeTime\":\"3:15:41.73\",\"lastInBytes\":4030009070,\"lastOutBytes\":3635642706,\"outBytes\":3635642706,\"outFlow\":10123,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1107798,\"inBytes\":3932105599,\"inFlow\":1081557,\"lastChangeTime\":\"377 days, 21:44:04.00\",\"lastInBytes\":3932105599,\"lastOutBytes\":2445457742,\"outBytes\":2445457742,\"outFlow\":26241,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":15457,\"inFlow\":0,\"lastChangeTime\":\"1:04:46.63\",\"lastInBytes\":15457,\"lastOutBytes\":729520,\"outBytes\":729520,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":95,\"inBytes\":305695526,\"inFlow\":1,\"lastChangeTime\":\"438 days, 11:42:54.35\",\"lastInBytes\":305695526,\"lastOutBytes\":367754482,\"outBytes\":367754482,\"outFlow\":94,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.22\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3537760,\"inBytes\":2330839085,\"inFlow\":89416,\"lastChangeTime\":\"1:04:57.74\",\"lastInBytes\":2330839085,\"lastOutBytes\":2545492391,\"outBytes\":2545492391,\"outFlow\":3448343,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.478851000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655901", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"155094\",\"inUnknownProtos\":\"1230698810\",\"index\":\"634\",\"lastChange\":\"241 days, 10:41:00.16\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:25:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3146464968\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"313074479\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.141\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":624449,\"inBytes\":1389168355,\"inFlow\":608116,\"lastChangeTime\":\"307 days, 10:10:37.15\",\"lastInBytes\":1389168355,\"lastOutBytes\":429210193,\"outBytes\":429210193,\"outFlow\":16332,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":276437,\"inBytes\":125552285,\"inFlow\":269685,\"lastChangeTime\":\"28 days, 14:14:03.20\",\"lastInBytes\":125552285,\"lastOutBytes\":2093326762,\"outBytes\":2093326762,\"outFlow\":6751,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":968337,\"inBytes\":1808714089,\"inFlow\":945548,\"lastChangeTime\":\"377 days, 21:43:02.24\",\"lastInBytes\":1808714089,\"lastOutBytes\":736383880,\"outBytes\":736383880,\"outFlow\":22789,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413937,\"inBytes\":4013488975,\"inFlow\":403830,\"lastChangeTime\":\"28 days, 14:13:55.03\",\"lastInBytes\":4013488975,\"lastOutBytes\":1230698810,\"outBytes\":1230698810,\"outFlow\":10107,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":276301,\"inBytes\":1868249480,\"inFlow\":269414,\"lastChangeTime\":\"441 days, 11:34:23.88\",\"lastInBytes\":1868249480,\"lastOutBytes\":2206600199,\"outBytes\":2206600199,\"outFlow\":6886,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":414936,\"inBytes\":729923033,\"inFlow\":404807,\"lastChangeTime\":\"28 days, 14:13:54.51\",\"lastInBytes\":729923033,\"lastOutBytes\":1564930805,\"outBytes\":1564930805,\"outFlow\":10129,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":414093,\"inBytes\":3031708235,\"inFlow\":403832,\"lastChangeTime\":\"28 days, 14:13:54.41\",\"lastInBytes\":3031708235,\"lastOutBytes\":4199684377,\"outBytes\":4199684377,\"outFlow\":10261,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":897109,\"inBytes\":4105555892,\"inFlow\":874775,\"lastChangeTime\":\"28 days, 14:13:54.35\",\"lastInBytes\":4105555892,\"lastOutBytes\":4235738597,\"outBytes\":4235738597,\"outFlow\":22333,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":414235,\"inBytes\":3594304637,\"inFlow\":403981,\"lastChangeTime\":\"28 days, 14:13:53.19\",\"lastInBytes\":3594304637,\"lastOutBytes\":3345759670,\"outBytes\":3345759670,\"outFlow\":10253,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":276294,\"inBytes\":4246859087,\"inFlow\":269462,\"lastChangeTime\":\"397 days, 5:18:53.67\",\"lastInBytes\":4246859087,\"lastOutBytes\":850691830,\"outBytes\":850691830,\"outFlow\":6832,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":9446414,\"inFlow\":0,\"lastChangeTime\":\"438 days, 11:50:48.54\",\"lastInBytes\":9446414,\"lastOutBytes\":425589493,\"outBytes\":425589493,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":303469381,\"inFlow\":1,\"lastChangeTime\":\"438 days, 11:50:50.02\",\"lastInBytes\":303469381,\"lastOutBytes\":1016849988,\"outBytes\":1016849988,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.14\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4997360,\"inBytes\":1671559402,\"inFlow\":128497,\"lastChangeTime\":\"241 days, 10:41:00.15\",\"lastInBytes\":1671559402,\"lastOutBytes\":3991336638,\"outBytes\":3991336638,\"outFlow\":4868862,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.489915000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655902", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"131732\",\"inUnknownProtos\":\"3106830458\",\"index\":\"634\",\"lastChange\":\"137 days, 10:08:58.73\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:bb:e0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"476643183\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"215642135\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.142\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":405180,\"inBytes\":3902201891,\"inFlow\":396510,\"lastChangeTime\":\"62 days, 18:10:07.85\",\"lastInBytes\":3902201891,\"lastOutBytes\":3954032614,\"outBytes\":3954032614,\"outFlow\":8670,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408266,\"inBytes\":3950286848,\"inFlow\":399252,\"lastChangeTime\":\"62 days, 18:10:01.48\",\"lastInBytes\":3950286848,\"lastOutBytes\":3436262688,\"outBytes\":3436262688,\"outFlow\":9013,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":408725,\"inBytes\":1402732297,\"inFlow\":398702,\"lastChangeTime\":\"343 days, 0:33:31.50\",\"lastInBytes\":1402732297,\"lastOutBytes\":297869611,\"outBytes\":297869611,\"outFlow\":10022,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407942,\"inBytes\":318649983,\"inFlow\":397973,\"lastChangeTime\":\"342 days, 1:40:40.83\",\"lastInBytes\":318649983,\"lastOutBytes\":3296140769,\"outBytes\":3296140769,\"outFlow\":9968,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":410438,\"inBytes\":897390789,\"inFlow\":400318,\"lastChangeTime\":\"0:01:25.75\",\"lastInBytes\":897390789,\"lastOutBytes\":3106830458,\"outBytes\":3106830458,\"outFlow\":10119,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407494,\"inBytes\":3849332033,\"inFlow\":397519,\"lastChangeTime\":\"0:01:25.77\",\"lastInBytes\":3849332033,\"lastOutBytes\":1266576162,\"outBytes\":1266576162,\"outFlow\":9974,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":402105,\"inBytes\":1956892809,\"inFlow\":392279,\"lastChangeTime\":\"0:01:26.20\",\"lastInBytes\":1956892809,\"lastOutBytes\":3839844048,\"outBytes\":3839844048,\"outFlow\":9825,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407067,\"inBytes\":554317914,\"inFlow\":397151,\"lastChangeTime\":\"0:01:26.16\",\"lastInBytes\":554317914,\"lastOutBytes\":1225315163,\"outBytes\":1225315163,\"outFlow\":9915,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":403560,\"inBytes\":4231772281,\"inFlow\":393747,\"lastChangeTime\":\"0:01:26.02\",\"lastInBytes\":4231772281,\"lastOutBytes\":2288798201,\"outBytes\":2288798201,\"outFlow\":9813,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":416232,\"inBytes\":3045926968,\"inFlow\":405360,\"lastChangeTime\":\"203 days, 10:06:52.36\",\"lastInBytes\":3045926968,\"lastOutBytes\":3357719444,\"outBytes\":3357719444,\"outFlow\":10871,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":466352,\"inBytes\":2572447400,\"inFlow\":455991,\"lastChangeTime\":\"62 days, 18:10:16.06\",\"lastInBytes\":2572447400,\"lastOutBytes\":839254154,\"outBytes\":839254154,\"outFlow\":10361,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3789646,\"inFlow\":0,\"lastChangeTime\":\"334 days, 11:51:36.73\",\"lastInBytes\":3789646,\"lastOutBytes\":114865246,\"outBytes\":114865246,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":305954550,\"inFlow\":1,\"lastChangeTime\":\"137 days, 11:34:30.71\",\"lastInBytes\":305954550,\"lastOutBytes\":2054694514,\"outBytes\":2054694514,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4565846,\"inBytes\":1445489129,\"inFlow\":113343,\"lastChangeTime\":\"137 days, 10:09:08.39\",\"lastInBytes\":1445489129,\"lastOutBytes\":1776746521,\"outBytes\":1776746521,\"outFlow\":4452502,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.546517000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655903", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"3\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"500\",\"inErrors\":\"0\",\"inNUcastPkts\":\"3\",\"inOctets\":\"0\",\"inUcastPkts\":\"164471\",\"inUnknownProtos\":\"1373970694\",\"index\":\"634\",\"lastChange\":\"319 days, 1:24:02.91\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:05:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3260014170\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"63405304\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.143\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":406465,\"inBytes\":2428276637,\"inFlow\":396773,\"lastChangeTime\":\"449 days, 1:45:10.47\",\"lastInBytes\":2428276637,\"lastOutBytes\":3092837046,\"outBytes\":3092837046,\"outFlow\":9692,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":408091,\"inBytes\":178828770,\"inFlow\":398141,\"lastChangeTime\":\"449 days, 1:45:24.96\",\"lastInBytes\":178828770,\"lastOutBytes\":1654590057,\"outBytes\":1654590057,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406441,\"inBytes\":3090648647,\"inFlow\":396587,\"lastChangeTime\":\"461 days, 14:43:08.36\",\"lastInBytes\":3090648647,\"lastOutBytes\":1016205600,\"outBytes\":1016205600,\"outFlow\":9853,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":425293,\"inBytes\":3542784218,\"inFlow\":416420,\"lastChangeTime\":\"449 days, 1:45:22.94\",\"lastInBytes\":3542784218,\"lastOutBytes\":2156944313,\"outBytes\":2156944313,\"outFlow\":8872,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407292,\"inBytes\":305191230,\"inFlow\":397286,\"lastChangeTime\":\"457 days, 13:04:56.17\",\"lastInBytes\":305191230,\"lastOutBytes\":1373970694,\"outBytes\":1373970694,\"outFlow\":10005,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":405718,\"inBytes\":4292262422,\"inFlow\":398051,\"lastChangeTime\":\"449 days, 1:45:33.41\",\"lastInBytes\":4292262422,\"lastOutBytes\":706679135,\"outBytes\":706679135,\"outFlow\":7666,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4089692973,\"inFlow\":0,\"lastChangeTime\":\"319 days, 1:22:19.07\",\"lastInBytes\":4089692973,\"lastOutBytes\":2287394241,\"outBytes\":2287394241,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406392,\"inBytes\":1723584363,\"inFlow\":398278,\"lastChangeTime\":\"449 days, 1:45:33.49\",\"lastInBytes\":1723584363,\"lastOutBytes\":1516888451,\"outBytes\":1516888451,\"outFlow\":8113,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":217,\"inBytes\":4147392328,\"inFlow\":69,\"lastChangeTime\":\"449 days, 13:48:44.36\",\"lastInBytes\":4147392328,\"lastOutBytes\":2475323173,\"outBytes\":2475323173,\"outFlow\":148,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":724338,\"inFlow\":0,\"lastChangeTime\":\"449 days, 13:55:45.12\",\"lastInBytes\":724338,\"lastOutBytes\":34685540,\"outBytes\":34685540,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":305621649,\"inFlow\":1,\"lastChangeTime\":\"319 days, 1:24:32.64\",\"lastInBytes\":305621649,\"lastOutBytes\":351787588,\"outBytes\":351787588,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2878561,\"inBytes\":585268025,\"inFlow\":67982,\"lastChangeTime\":\"319 days, 1:24:13.11\",\"lastInBytes\":585268025,\"lastOutBytes\":3392959201,\"outBytes\":3392959201,\"outFlow\":2810579,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.364687000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655904", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"64680\",\"inUnknownProtos\":\"3559433617\",\"index\":\"634\",\"lastChange\":\"0:01:25.37\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:d8:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2515710404\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.144\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":438574,\"inBytes\":1445347745,\"inFlow\":429825,\"lastChangeTime\":\"0:01:25.74\",\"lastInBytes\":1445347745,\"lastOutBytes\":4147886873,\"outBytes\":4147886873,\"outFlow\":8749,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":410510,\"inBytes\":4010965525,\"inFlow\":400444,\"lastChangeTime\":\"130 days, 11:45:30.19\",\"lastInBytes\":4010965525,\"lastOutBytes\":3920376752,\"outBytes\":3920376752,\"outFlow\":10066,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":411817,\"inBytes\":3971770867,\"inFlow\":403384,\"lastChangeTime\":\"0:01:25.89\",\"lastInBytes\":3971770867,\"lastOutBytes\":3449310987,\"outBytes\":3449310987,\"outFlow\":8433,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414186,\"inBytes\":3034315078,\"inFlow\":404187,\"lastChangeTime\":\"130 days, 11:45:21.24\",\"lastInBytes\":3034315078,\"lastOutBytes\":3572860722,\"outBytes\":3572860722,\"outFlow\":9998,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413545,\"inBytes\":3765193503,\"inFlow\":403630,\"lastChangeTime\":\"187 days, 22:02:19.50\",\"lastInBytes\":3765193503,\"lastOutBytes\":3559433617,\"outBytes\":3559433617,\"outFlow\":9914,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":410966,\"inBytes\":1854414989,\"inFlow\":401338,\"lastChangeTime\":\"62 days, 7:42:17.09\",\"lastInBytes\":1854414989,\"lastOutBytes\":3042274735,\"outBytes\":3042274735,\"outFlow\":9628,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":221,\"inBytes\":3498585137,\"inFlow\":70,\"lastChangeTime\":\"133 days, 23:35:48.49\",\"lastInBytes\":3498585137,\"lastOutBytes\":2366667968,\"outBytes\":2366667968,\"outFlow\":151,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":103579,\"inFlow\":0,\"lastChangeTime\":\"133 days, 23:42:01.90\",\"lastInBytes\":103579,\"lastOutBytes\":3437501,\"outBytes\":3437501,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":304117459,\"inFlow\":1,\"lastChangeTime\":\"0:01:26.52\",\"lastInBytes\":304117459,\"lastOutBytes\":2473346444,\"outBytes\":2473346444,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2514921,\"inBytes\":2841503117,\"inFlow\":60862,\"lastChangeTime\":\"0:01:25.54\",\"lastInBytes\":2841503117,\"lastOutBytes\":2722881834,\"outBytes\":2722881834,\"outFlow\":2454058,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.340624000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655905", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040016", + "name": "H3C前端交换机15", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"163582\",\"inUnknownProtos\":\"1739799627\",\"index\":\"634\",\"lastChange\":\"0:01:20.85\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:70:26\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2934986139\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"73638059\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.145\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":409043,\"inBytes\":1122692409,\"inFlow\":399133,\"lastChangeTime\":\"446 days, 1:45:47.12\",\"lastInBytes\":1122692409,\"lastOutBytes\":4182191508,\"outBytes\":4182191508,\"outFlow\":9910,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":881827,\"inBytes\":3701926140,\"inFlow\":860051,\"lastChangeTime\":\"446 days, 1:45:57.92\",\"lastInBytes\":3701926140,\"lastOutBytes\":1781709873,\"outBytes\":1781709873,\"outFlow\":21776,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":899004,\"inBytes\":2228248945,\"inFlow\":876444,\"lastChangeTime\":\"446 days, 1:46:03.97\",\"lastInBytes\":2228248945,\"lastOutBytes\":218507366,\"outBytes\":218507366,\"outFlow\":22560,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":892513,\"inBytes\":2180209246,\"inFlow\":869871,\"lastChangeTime\":\"446 days, 1:45:49.50\",\"lastInBytes\":2180209246,\"lastOutBytes\":506646129,\"outBytes\":506646129,\"outFlow\":22642,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407342,\"inBytes\":536768591,\"inFlow\":397564,\"lastChangeTime\":\"3:36:15.99\",\"lastInBytes\":536768591,\"lastOutBytes\":1739799627,\"outBytes\":1739799627,\"outFlow\":9777,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406718,\"inBytes\":4028276137,\"inFlow\":397187,\"lastChangeTime\":\"377 days, 21:42:59.23\",\"lastInBytes\":4028276137,\"lastOutBytes\":4278549185,\"outBytes\":4278549185,\"outFlow\":9530,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407839,\"inBytes\":3552980356,\"inFlow\":397948,\"lastChangeTime\":\"3:36:31.03\",\"lastInBytes\":3552980356,\"lastOutBytes\":3043419442,\"outBytes\":3043419442,\"outFlow\":9891,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":406689,\"inBytes\":546946528,\"inFlow\":397078,\"lastChangeTime\":\"377 days, 21:43:02.88\",\"lastInBytes\":546946528,\"lastOutBytes\":3710769563,\"outBytes\":3710769563,\"outFlow\":9610,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":407118,\"inBytes\":407450633,\"inFlow\":397261,\"lastChangeTime\":\"3:36:37.05\",\"lastInBytes\":407450633,\"lastOutBytes\":3852573340,\"outBytes\":3852573340,\"outFlow\":9856,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":407063,\"inBytes\":654817732,\"inFlow\":396930,\"lastChangeTime\":\"446 days, 1:45:55.59\",\"lastInBytes\":654817732,\"lastOutBytes\":2970304351,\"outBytes\":2970304351,\"outFlow\":10132,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":882789,\"inBytes\":1240873315,\"inFlow\":861076,\"lastChangeTime\":\"446 days, 1:45:49.21\",\"lastInBytes\":1240873315,\"lastOutBytes\":59894974,\"outBytes\":59894974,\"outFlow\":21712,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":883159,\"inBytes\":1459045266,\"inFlow\":861327,\"lastChangeTime\":\"446 days, 1:45:56.91\",\"lastInBytes\":1459045266,\"lastOutBytes\":3600196777,\"outBytes\":3600196777,\"outFlow\":21831,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":404239,\"inBytes\":3987554648,\"inFlow\":394313,\"lastChangeTime\":\"446 days, 1:46:05.55\",\"lastInBytes\":3987554648,\"lastOutBytes\":3375112031,\"outBytes\":3375112031,\"outFlow\":9926,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":305639330,\"inFlow\":1,\"lastChangeTime\":\"3:33:20.82\",\"lastInBytes\":305639330,\"lastOutBytes\":70061584,\"outBytes\":70061584,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.21\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7726661,\"inBytes\":849841185,\"inFlow\":200216,\"lastChangeTime\":\"0:01:21.12\",\"lastInBytes\":849841185,\"lastOutBytes\":2312068200,\"outBytes\":2312068200,\"outFlow\":7526445,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.342602000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655906", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040017", + "name": "H3C前端交换机16", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"96\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"63672\",\"inUnknownProtos\":\"45241010\",\"index\":\"634\",\"lastChange\":\"0:01:24.10\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:38:66\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2650331025\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"14683445\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.146\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":898536,\"inBytes\":2949381685,\"inFlow\":875731,\"lastChangeTime\":\"126 days, 23:20:37.05\",\"lastInBytes\":2949381685,\"lastOutBytes\":3810366997,\"outBytes\":3810366997,\"outFlow\":22804,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":899796,\"inBytes\":264764499,\"inFlow\":876983,\"lastChangeTime\":\"126 days, 23:20:47.12\",\"lastInBytes\":264764499,\"lastOutBytes\":2418811226,\"outBytes\":2418811226,\"outFlow\":22813,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414171,\"inBytes\":4201375336,\"inFlow\":404150,\"lastChangeTime\":\"0:01:24.47\",\"lastInBytes\":4201375336,\"lastOutBytes\":1884473799,\"outBytes\":1884473799,\"outFlow\":10020,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":412014,\"inBytes\":4260620464,\"inFlow\":402216,\"lastChangeTime\":\"58 days, 19:17:34.01\",\"lastInBytes\":4260620464,\"lastOutBytes\":2446308758,\"outBytes\":2446308758,\"outFlow\":9798,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415689,\"inBytes\":1301975551,\"inFlow\":405729,\"lastChangeTime\":\"0:01:24.48\",\"lastInBytes\":1301975551,\"lastOutBytes\":45241010,\"outBytes\":45241010,\"outFlow\":9959,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413587,\"inBytes\":1420743010,\"inFlow\":403662,\"lastChangeTime\":\"0:01:24.79\",\"lastInBytes\":1420743010,\"lastOutBytes\":4157895748,\"outBytes\":4157895748,\"outFlow\":9925,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":561314,\"inBytes\":3017454158,\"inFlow\":547635,\"lastChangeTime\":\"19 days, 12:43:04.16\",\"lastInBytes\":3017454158,\"lastOutBytes\":3353571148,\"outBytes\":3353571148,\"outFlow\":13678,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":897011,\"inBytes\":1661685742,\"inFlow\":874857,\"lastChangeTime\":\"0:01:24.91\",\"lastInBytes\":1661685742,\"lastOutBytes\":2618872760,\"outBytes\":2618872760,\"outFlow\":22154,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":413784,\"inBytes\":480964083,\"inFlow\":403857,\"lastChangeTime\":\"80 days, 1:11:43.42\",\"lastInBytes\":480964083,\"lastOutBytes\":2207257721,\"outBytes\":2207257721,\"outFlow\":9927,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":898687,\"inBytes\":3543326098,\"inFlow\":876257,\"lastChangeTime\":\"126 days, 23:20:41.77\",\"lastInBytes\":3543326098,\"lastOutBytes\":3154092123,\"outBytes\":3154092123,\"outFlow\":22430,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":900172,\"inBytes\":3944529205,\"inFlow\":877713,\"lastChangeTime\":\"126 days, 23:20:42.25\",\"lastInBytes\":3944529205,\"lastOutBytes\":3571085394,\"outBytes\":3571085394,\"outFlow\":22458,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5376,\"inFlow\":0,\"lastChangeTime\":\"0:03:33.22\",\"lastInBytes\":5376,\"lastOutBytes\":2565094,\"outBytes\":2565094,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1506665,\"inFlow\":0,\"lastChangeTime\":\"19 days, 12:47:56.27\",\"lastInBytes\":1506665,\"lastOutBytes\":114836467,\"outBytes\":114836467,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":304117811,\"inFlow\":1,\"lastChangeTime\":\"0:01:25.58\",\"lastInBytes\":304117811,\"lastOutBytes\":2338668377,\"outBytes\":2338668377,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.31\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7161752,\"inBytes\":3094734948,\"inFlow\":186727,\"lastChangeTime\":\"0:03:28.25\",\"lastInBytes\":3094734948,\"lastOutBytes\":3231599432,\"outBytes\":3231599432,\"outFlow\":6975025,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.347563000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655907", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1028040018", + "name": "H3C前端交换机17", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"14357\",\"inUnknownProtos\":\"621558076\",\"index\":\"634\",\"lastChange\":\"0:01:32.42\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:3f:e6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"366131348\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"3452816\",\"speed\":\"4294967295\"},\"cpuRatio\":\"11\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.147\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":413812,\"inBytes\":4225374751,\"inFlow\":403891,\"lastChangeTime\":\"0:01:32.41\",\"lastInBytes\":4225374751,\"lastOutBytes\":1142557459,\"outBytes\":1142557459,\"outFlow\":9921,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":897047,\"inBytes\":502073099,\"inFlow\":874871,\"lastChangeTime\":\"0:01:32.83\",\"lastInBytes\":502073099,\"lastOutBytes\":1765307018,\"outBytes\":1765307018,\"outFlow\":22176,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414730,\"inBytes\":2013916411,\"inFlow\":404752,\"lastChangeTime\":\"0:01:32.83\",\"lastInBytes\":2013916411,\"lastOutBytes\":892759187,\"outBytes\":892759187,\"outFlow\":9978,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413882,\"inBytes\":1903940481,\"inFlow\":403942,\"lastChangeTime\":\"0:01:33.03\",\"lastInBytes\":1903940481,\"lastOutBytes\":150924558,\"outBytes\":150924558,\"outFlow\":9940,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":276412,\"inBytes\":1590176535,\"inFlow\":269730,\"lastChangeTime\":\"0:01:33.29\",\"lastInBytes\":1590176535,\"lastOutBytes\":621492640,\"outBytes\":621492640,\"outFlow\":6681,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413683,\"inBytes\":1216888695,\"inFlow\":403823,\"lastChangeTime\":\"0:01:33.30\",\"lastInBytes\":1216888695,\"lastOutBytes\":4238394792,\"outBytes\":4238394792,\"outFlow\":9859,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":412807,\"inBytes\":2161919197,\"inFlow\":402858,\"lastChangeTime\":\"0:01:33.29\",\"lastInBytes\":2161919197,\"lastOutBytes\":432756710,\"outBytes\":432756710,\"outFlow\":9948,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":413692,\"inBytes\":2613659275,\"inFlow\":403648,\"lastChangeTime\":\"0:01:33.30\",\"lastInBytes\":2613659275,\"lastOutBytes\":310712514,\"outBytes\":310712514,\"outFlow\":10043,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":414881,\"inBytes\":784893234,\"inFlow\":405044,\"lastChangeTime\":\"0:01:33.30\",\"lastInBytes\":784893234,\"lastOutBytes\":73222958,\"outBytes\":73222958,\"outFlow\":9837,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":900921,\"inBytes\":293947943,\"inFlow\":878933,\"lastChangeTime\":\"0:01:33.71\",\"lastInBytes\":293947943,\"lastOutBytes\":583307081,\"outBytes\":583307081,\"outFlow\":21988,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":899822,\"inBytes\":295640588,\"inFlow\":877036,\"lastChangeTime\":\"44 days, 8:22:53.94\",\"lastInBytes\":295640588,\"lastOutBytes\":976845205,\"outBytes\":976845205,\"outFlow\":22786,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":896970,\"inBytes\":2644690286,\"inFlow\":874961,\"lastChangeTime\":\"0:01:33.72\",\"lastInBytes\":2644690286,\"lastOutBytes\":612720313,\"outBytes\":612720313,\"outFlow\":22009,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":275148,\"inBytes\":661639798,\"inFlow\":269539,\"lastChangeTime\":\"0:01:33.72\",\"lastInBytes\":661639798,\"lastOutBytes\":851419864,\"outBytes\":851419864,\"outFlow\":5609,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":95,\"inBytes\":229559047,\"inFlow\":1,\"lastChangeTime\":\"0:01:34.00\",\"lastInBytes\":229559047,\"lastOutBytes\":611242832,\"outBytes\":611242832,\"outFlow\":94,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.19\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7076859,\"inBytes\":948150663,\"inFlow\":182107,\"lastChangeTime\":\"0:01:33.02\",\"lastInBytes\":948150663,\"lastOutBytes\":2253041027,\"outBytes\":2253041027,\"outFlow\":6894752,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.418616000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655908", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040019", + "name": "H3C前端交换机18", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"163592\",\"inUnknownProtos\":\"1261705101\",\"index\":\"634\",\"lastChange\":\"0:01:26.93\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:84:e0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2990133928\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"73637784\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.148\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":903673,\"inBytes\":3625536294,\"inFlow\":881407,\"lastChangeTime\":\"446 days, 1:47:02.32\",\"lastInBytes\":3625536294,\"lastOutBytes\":1127117013,\"outBytes\":1127117013,\"outFlow\":22266,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":897147,\"inBytes\":49137199,\"inFlow\":875182,\"lastChangeTime\":\"446 days, 1:46:50.57\",\"lastInBytes\":49137199,\"lastOutBytes\":4142209052,\"outBytes\":4142209052,\"outFlow\":21964,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":898421,\"inBytes\":1088664742,\"inFlow\":876493,\"lastChangeTime\":\"446 days, 1:46:54.62\",\"lastInBytes\":1088664742,\"lastOutBytes\":3786064252,\"outBytes\":3786064252,\"outFlow\":21928,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":417493,\"inBytes\":1183875649,\"inFlow\":407395,\"lastChangeTime\":\"3:27:16.29\",\"lastInBytes\":1183875649,\"lastOutBytes\":3964146490,\"outBytes\":3964146490,\"outFlow\":10098,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":415795,\"inBytes\":1638552478,\"inFlow\":405783,\"lastChangeTime\":\"3:29:09.77\",\"lastInBytes\":1638552478,\"lastOutBytes\":1261705101,\"outBytes\":1261705101,\"outFlow\":10011,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":413711,\"inBytes\":1541713237,\"inFlow\":403865,\"lastChangeTime\":\"3:28:59.95\",\"lastInBytes\":1541713237,\"lastOutBytes\":556982303,\"outBytes\":556982303,\"outFlow\":9845,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":413738,\"inBytes\":2459736953,\"inFlow\":403824,\"lastChangeTime\":\"377 days, 21:43:55.36\",\"lastInBytes\":2459736953,\"lastOutBytes\":896887500,\"outBytes\":896887500,\"outFlow\":9914,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":907905,\"inBytes\":1799909043,\"inFlow\":885567,\"lastChangeTime\":\"446 days, 1:46:51.81\",\"lastInBytes\":1799909043,\"lastOutBytes\":4009896491,\"outBytes\":4009896491,\"outFlow\":22337,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":899607,\"inBytes\":184324920,\"inFlow\":877377,\"lastChangeTime\":\"446 days, 1:46:52.25\",\"lastInBytes\":184324920,\"lastOutBytes\":4081905612,\"outBytes\":4081905612,\"outFlow\":22229,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":900719,\"inBytes\":2957149287,\"inFlow\":878417,\"lastChangeTime\":\"446 days, 1:46:55.03\",\"lastInBytes\":2957149287,\"lastOutBytes\":2901351157,\"outBytes\":2901351157,\"outFlow\":22302,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":305639921,\"inFlow\":1,\"lastChangeTime\":\"0:30:19.61\",\"lastInBytes\":305639921,\"lastOutBytes\":239150235,\"outBytes\":239150235,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.20\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7089397,\"inBytes\":1037913815,\"inFlow\":182770,\"lastChangeTime\":\"0:01:27.19\",\"lastInBytes\":1037913815,\"lastOutBytes\":2230919694,\"outBytes\":2230919694,\"outFlow\":6906627,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.359782000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655909", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040020", + "name": "H3C前端交换机19", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"163398\",\"inUnknownProtos\":\"3421626620\",\"index\":\"634\",\"lastChange\":\"0:01:22.19\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:88:a0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"100452306\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.149\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":905327,\"inBytes\":1960530062,\"inFlow\":883386,\"lastChangeTime\":\"0:01:22.45\",\"lastInBytes\":1960530062,\"lastOutBytes\":2750829857,\"outBytes\":2750829857,\"outFlow\":21941,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":413888,\"inBytes\":2222801417,\"inFlow\":403888,\"lastChangeTime\":\"0:01:22.18\",\"lastInBytes\":2222801417,\"lastOutBytes\":1539276965,\"outBytes\":1539276965,\"outFlow\":9999,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":413722,\"inBytes\":1295949946,\"inFlow\":403671,\"lastChangeTime\":\"0:01:22.45\",\"lastInBytes\":1295949946,\"lastOutBytes\":3432157153,\"outBytes\":3432157153,\"outFlow\":10050,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413734,\"inBytes\":1926770321,\"inFlow\":403599,\"lastChangeTime\":\"0:01:22.66\",\"lastInBytes\":1926770321,\"lastOutBytes\":3860791004,\"outBytes\":3860791004,\"outFlow\":10134,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":896379,\"inBytes\":849506490,\"inFlow\":874325,\"lastChangeTime\":\"307 days, 10:12:47.99\",\"lastInBytes\":849506490,\"lastOutBytes\":3421626620,\"outBytes\":3421626620,\"outFlow\":22054,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":93,\"inBytes\":305652666,\"inFlow\":1,\"lastChangeTime\":\"1:57:36.58\",\"lastInBytes\":305652666,\"lastOutBytes\":274790930,\"outBytes\":274790930,\"outFlow\":91,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.17\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3049920,\"inBytes\":2779189408,\"inFlow\":79241,\"lastChangeTime\":\"1:57:29.46\",\"lastInBytes\":2779189408,\"lastOutBytes\":345690702,\"outBytes\":345690702,\"outFlow\":2970679,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.343074000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "707141518900655910", + "createdBy": "0", + "createdTime": "2025-12-03 15:33:22", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:55", + "echoMap": {}, + "deviceId": "1028040021", + "name": "H3C前端交换机20", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.184.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface184\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"0:01:55.60\",\"mTU\":\"1500\",\"macAddress\":\"14:84:77:ef:b9:a0\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.184.150\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:54\",\"info\":{\"portInfoList\":[{\"flow\":464,\"inBytes\":1514025546,\"inFlow\":115,\"lastChangeTime\":\"370 days, 10:27:01.77\",\"lastInBytes\":1514025546,\"lastOutBytes\":369251519,\"outBytes\":369251519,\"outFlow\":349,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":6932507,\"inBytes\":2847254315,\"inFlow\":44694,\"lastChangeTime\":\"228 days, 9:03:17.64\",\"lastInBytes\":2847254315,\"lastOutBytes\":1205208988,\"outBytes\":1205208988,\"outFlow\":6887813,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":336,\"inBytes\":1145039509,\"inFlow\":53,\"lastChangeTime\":\"228 days, 9:03:50.16\",\"lastInBytes\":1145039509,\"lastOutBytes\":1270411334,\"outBytes\":1270411334,\"outFlow\":283,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":278,\"inBytes\":444567870,\"inFlow\":4,\"lastChangeTime\":\"395 days, 12:21:44.45\",\"lastInBytes\":444567870,\"lastOutBytes\":55610541,\"outBytes\":55610541,\"outFlow\":274,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.12\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":305638360,\"inFlow\":1,\"lastChangeTime\":\"0:02:02.88\",\"lastInBytes\":305638360,\"lastOutBytes\":326351572,\"outBytes\":326351572,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6958410,\"inBytes\":41067109,\"inFlow\":6909570,\"lastChangeTime\":\"0:01:55.60\",\"lastInBytes\":41067109,\"lastOutBytes\":1742232904,\"outBytes\":1742232904,\"outFlow\":48840,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:50.364415000\"}}", + "lastDiagTime": "2026-02-02 14:38:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [] + }, + "1029": { + "ndmAlarmHost": [ + { + "id": "707147398717220987", + "createdBy": null, + "createdTime": "2025-12-08 13:48:51", + "updatedBy": null, + "updatedTime": "2025-12-08 13:48:51", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.185.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "603980905576412344", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060001", + "name": "[604](10)航中弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903048005029604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412345", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060002", + "name": "[605](10)航中弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903048005029605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412346", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060003", + "name": "[606](10)航中弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903048005029606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412347", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060004", + "name": "[607](10)航中弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903048005029607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412348", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060005", + "name": "[617](10)航中消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412349", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060006", + "name": "[616](10)航中消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412350", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-12-04 19:45:25", + "echoMap": {}, + "deviceId": "1029060007", + "name": "[611](10)航中内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412351", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1029060008", + "name": "[602](10)航中编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903041005029602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412352", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060009", + "name": "[608](10)航中环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903053005029608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412353", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1029060010", + "name": "[603](10)航中编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903041005029603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412354", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1029060011", + "name": "[325](10)航中4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412355", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1029060012", + "name": "[326](10)航中4#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412356", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1029060013", + "name": "[327](10)航中4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412357", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1029060014", + "name": "[328](10)航中4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412358", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1029060015", + "name": "[329](10)航中4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412359", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1029060016", + "name": "[215](10)航中4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058004029215", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412360", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1029060017", + "name": "[330](10)航中4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412361", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1029060018", + "name": "[402](10)航中1#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901005006029402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412362", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1029060019", + "name": "[323](10)航中4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412363", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060020", + "name": "[324](10)航中4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901058006029324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412364", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060021", + "name": "[201](10)航中厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412365", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1029060022", + "name": "[403](10)航中1#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901005006029403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412366", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060023", + "name": "[601](10)航中车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903042004029601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412368", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060025", + "name": "[401](10)航中1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901005006029401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412369", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060026", + "name": "[339](10)航中#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901045006029339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412370", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060027", + "name": "[340](10)航中#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901045006029340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412371", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060028", + "name": "[502](10)航中票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901030006029502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412372", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1029060029", + "name": "[341](10)航中#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901045006029341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412373", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1029060030", + "name": "[356](10)航中安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901085006029356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412374", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060031", + "name": "[202](10)航中厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412375", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060032", + "name": "[406](10)航中2#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901006006029406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412376", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060033", + "name": "[408](10)航中3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901007006029408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412377", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060034", + "name": "[203](10)航中厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412378", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1029060035", + "name": "[407](10)航中3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901007006029407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412379", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1029060036", + "name": "[504](10)航中票亭1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901025006029504", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412380", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1029060037", + "name": "[405](10)航中2#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901006006029405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412381", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1029060038", + "name": "[404](10)航中2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901006006029404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412382", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1029060039", + "name": "[342](10)航中#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901045006029342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412383", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060040", + "name": "[343](10)航中#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901045006029343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412384", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1029060041", + "name": "[344](10)航中#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901045006029344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412385", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060042", + "name": "[332](10)航中5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412386", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060043", + "name": "[216](10)航中5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059004029216", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412387", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060044", + "name": "[336](10)航中5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412388", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060045", + "name": "[335](10)航中5#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412389", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1029060046", + "name": "[334](10)航中5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412390", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1029060047", + "name": "[333](10)航中5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412391", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1029060048", + "name": "[337](10)航中5#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412392", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1029060049", + "name": "[355](10)航中2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901036005029355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412393", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1029060050", + "name": "[338](10)航中5#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059005029338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412394", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1029060051", + "name": "[351](10)航中长通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901083006029351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412395", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1029060052", + "name": "[331](10)航中5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901059006029331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412396", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1029060053", + "name": "[349](10)航中B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901040006029349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412397", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1029060054", + "name": "[354](10)航中1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901036005029354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412398", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1029060055", + "name": "[612](10)航中内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412399", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1029060056", + "name": "[205](10)航中厅5球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412400", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1029060057", + "name": "[357](10)航中安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901085006029357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412401", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1029060058", + "name": "[609](10)航中环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903053005029609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412402", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060059", + "name": "[204](10)航中厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412403", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060060", + "name": "[503](10)航中票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901030006029503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412404", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1029060061", + "name": "[352](10)航中长通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901083006029352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412405", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1029060062", + "name": "[353](10)航中长通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901083006029353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412406", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1029060063", + "name": "[302](10)航中1#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412407", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2026-01-08 17:09:44", + "echoMap": {}, + "deviceId": "1029060064", + "name": "[615](10)航中变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412408", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1029060065", + "name": "[206](10)航中厅6球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412409", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1029060066", + "name": "[614](10)航中变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412410", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1029060067", + "name": "[207](10)航中厅7球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901035004029207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412411", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1029060068", + "name": "[315](10)航中3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412412", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1029060069", + "name": "[318](10)航中3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412413", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060070", + "name": "[317](10)航中3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412414", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060071", + "name": "[319](10)航中3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412415", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060072", + "name": "[214](10)航中3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057004029214", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412416", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060073", + "name": "[321](10)航中3#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412417", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060074", + "name": "[320](10)航中3#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412418", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060075", + "name": "[322](10)航中3#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412419", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1029060076", + "name": "[316](10)航中3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901057006029316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412420", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060077", + "name": "[309](10)航中2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412421", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2026-01-11 13:17:44", + "echoMap": {}, + "deviceId": "1029060078", + "name": "[212](10)航中1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055004029212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412422", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060079", + "name": "[307](10)航中1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412423", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1029060080", + "name": "[303](10)航中1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412424", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2026-01-31 18:21:40", + "echoMap": {}, + "deviceId": "1029060081", + "name": "[306](10)航中1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412425", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1029060082", + "name": "[301](10)航中1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412426", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1029060083", + "name": "[305](10)航中1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412427", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060084", + "name": "[304](10)航中1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901055006029304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412428", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060085", + "name": "[311](10)航中2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412429", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060086", + "name": "[213](10)航中2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056004029213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412430", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1029060087", + "name": "[314](10)航中2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412431", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1029060088", + "name": "[312](10)航中2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412432", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1029060089", + "name": "[310](10)航中2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412433", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1029060090", + "name": "[313](10)航中2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412434", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060091", + "name": "[308](10)航中2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901056006029308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412435", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060092", + "name": "[110](10)航中下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902012006029110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412436", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060093", + "name": "[107](10)航中下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902012006029107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412437", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2026-02-01 07:56:40", + "echoMap": {}, + "deviceId": "1029060094", + "name": "[108](10)航中下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902012006029108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412438", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060095", + "name": "[610](10)航中屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903048005029610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412439", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060096", + "name": "[210](10)航中下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902001004029210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412440", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060097", + "name": "[345](10)航中#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902017006029345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412441", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060098", + "name": "[346](10)航中#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902017006029346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412443", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1029060100", + "name": "[209](10)航中上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902001004029209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412444", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1029060101", + "name": "[103](10)航中上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902007006029103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412445", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1029060102", + "name": "[106](10)航中上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902007006029106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412446", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1029060103", + "name": "[105](10)航中上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902007006029105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412447", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1029060104", + "name": "[211](10)航中下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902001004029211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412448", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1029060105", + "name": "[109](10)航中下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.185.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902012006029109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412449", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060106", + "name": "[111](10)航中下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902012006029111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412450", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060107", + "name": "[112](10)航中下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902012006029112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412451", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060108", + "name": "[347](10)航中#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902017006029347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412452", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1029060109", + "name": "[350](10)航中B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902002006029350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412453", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1029060110", + "name": "[348](10)航中#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902017006029348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412454", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1029060111", + "name": "[104](10)航中上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902007006029104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412455", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1029060112", + "name": "[102](10)航中上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902007006029102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412456", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1029060113", + "name": "[101](10)航中上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902007006029101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412457", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1029060114", + "name": "[208](10)航中上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062902001004029208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412458", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060115", + "name": "[702](10)航中下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412459", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060116", + "name": "[704](10)航中5#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412460", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060117", + "name": "[705](10)航中站台岔心", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412461", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1029060118", + "name": "[703](10)航中1#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412462", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060119", + "name": "[701](10)航中上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412463", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1029060120", + "name": "[706](10)航中站台反向岔心", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412464", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1029060121", + "name": "[708](10)航中7#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412465", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1029060122", + "name": "[707](10)航中3#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062904013006029707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412466", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1029060123", + "name": "[618](10)航中消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903068005029618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412467", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1029060124", + "name": "[619](10)航中气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903067005029619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412468", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1029060125", + "name": "[620](10)航中内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001006029620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412469", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1029060126", + "name": "[621](10)航中通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903048005029621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412470", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1029060127", + "name": "[501](10)航中客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901001005029501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412471", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1029060128", + "name": "[623](10)航中卫生间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062901040006029623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412472", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1029060129", + "name": "[624](10)航中气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903067005029624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412473", + "createdBy": "0", + "createdTime": "2025-02-28 14:54:07", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060130", + "name": "[625](10)航中气瓶间3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903067005029625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410246468661293", + "createdBy": null, + "createdTime": "2025-10-28 00:00:22", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1029060131", + "name": "[626](10)航中内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.186.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062903001005029626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "603980905576412245", + "createdBy": "0", + "createdTime": "2025-02-28 14:51:36", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "deviceId": "1029070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.185.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062900000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112780\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2133747044\",\"inUcastPkts\":\"884352397\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:36:60:bc\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2148557443\",\"outQLen\":\"0\",\"outUcastPkts\":\"430249198\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.185.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:40\",\"stCommonInfo\":{\"设备ID\":\"8L091CBPAZ37C8C\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"37\",\"CPU使用率\":\"8\"}}", + "lastDiagTime": "2026-02-02 14:35:40", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "603980905576412566", + "createdBy": "2", + "createdTime": "2025-02-28 14:54:37", + "updatedBy": null, + "updatedTime": "2025-12-23 10:30:41", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.185.51", + "manageUrl": "http:\\\\10.18.185.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412645", + "createdBy": "2", + "createdTime": "2025-02-28 14:54:55", + "updatedBy": null, + "updatedTime": "2026-01-05 18:48:26", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.185.52", + "manageUrl": "http:\\\\10.18.185.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "603980905576412247", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "deviceId": "1029090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.185.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"4.29\",\"CPU使用率\":\"3.00\",\"系统运行时间\":\"77 days, 13:07:58.84\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"9966067\",\"inErrors\":\"0\",\"inNUcastPkts\":\"26485455\",\"inOctets\":\"3358707793\",\"inUcastPkts\":\"3019013841\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:19:56.08\",\"mTU\":\"1500\",\"macAddress\":\"28:e4:24:cb:4f:e1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3865861326\",\"outQLen\":\"0\",\"outUcastPkts\":\"4116986309\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.185.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:40", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "603980905576412248", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-02-28 14:51:57", + "echoMap": {}, + "deviceId": "1029050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.185.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062900000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.185.22;10.18.185.23" + }, + { + "id": "603980905576412249", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:41", + "echoMap": {}, + "deviceId": "1029050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.185.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062900000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"43462180\",\"inErrors\":\"5\",\"inNUcastPkts\":\"34758606\",\"inOctets\":\"140456311\",\"inUcastPkts\":\"1732920854\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:af:07\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2972024798\",\"outQLen\":\"0\",\"outUcastPkts\":\"1803122895\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4350\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4360\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.185.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:40\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":249718525,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18522\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"59\",\"CPU使用率\":\"20\"}}", + "lastDiagTime": "2026-02-02 14:35:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.185.22" + }, + { + "id": "603980905576412250", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:42", + "echoMap": {}, + "deviceId": "1029050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.185.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01062900000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"43456909\",\"inErrors\":\"0\",\"inNUcastPkts\":\"44065434\",\"inOctets\":\"4293422657\",\"inUcastPkts\":\"1621847414\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:b0:a5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2949833147\",\"outQLen\":\"0\",\"outUcastPkts\":\"3699657253\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4380\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.185.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:41\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":249718525,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18523\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"57\",\"CPU使用率\":\"22\"}}", + "lastDiagTime": "2026-02-02 14:35:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.185.23" + } + ], + "ndmSecurityBox": [ + { + "id": "603980905576412311", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "deviceId": "1029030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4700859\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260698471\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4700864\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:94\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.201002},{\"current\":0.316,\"status\":1,\"voltage\":26.201002},{\"current\":0.324,\"status\":1,\"voltage\":26.201002},{\"current\":0.33200002,\"status\":1,\"voltage\":26.201002},{\"current\":0.264,\"status\":1,\"voltage\":26.201002},{\"current\":0.36200002,\"status\":1,\"voltage\":26.201002},{\"current\":0.259,\"status\":1,\"voltage\":26.201002},{\"current\":0.298,\"status\":1,\"voltage\":26.201002},{\"current\":0.23900001,\"status\":1,\"voltage\":26.201002},{\"current\":0.256,\"status\":1,\"voltage\":26.293001},{\"current\":0.002,\"status\":1,\"voltage\":26.293001},{\"current\":0.001,\"status\":1,\"voltage\":26.293001},{\"current\":0.24700001,\"status\":1,\"voltage\":26.293001},{\"current\":0.001,\"status\":1,\"voltage\":26.293001},{\"current\":0.0,\"status\":1,\"voltage\":26.293001},{\"current\":0.231,\"status\":1,\"voltage\":26.293001}],\"fanSpeeds\":[2520,2550],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":28}],\"stCommonInfo\":{\"设备ID\":\"0001512208301107\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:40", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412312", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:41", + "echoMap": {}, + "deviceId": "1029030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4699510\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260623653\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4699515\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:6c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.344,\"status\":1,\"voltage\":26.147001},{\"current\":0.344,\"status\":1,\"voltage\":26.147001},{\"current\":0.518,\"status\":1,\"voltage\":26.147001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.147001},{\"current\":0.277,\"status\":1,\"voltage\":26.147001},{\"current\":0.23900001,\"status\":1,\"voltage\":26.147001},{\"current\":0.24400002,\"status\":1,\"voltage\":26.147001},{\"current\":0.37300003,\"status\":1,\"voltage\":26.147001},{\"current\":0.342,\"status\":1,\"voltage\":26.147001},{\"current\":0.305,\"status\":1,\"voltage\":26.065},{\"current\":0.003,\"status\":1,\"voltage\":26.065},{\"current\":0.541,\"status\":1,\"voltage\":26.065},{\"current\":0.37300003,\"status\":1,\"voltage\":26.065},{\"current\":0.001,\"status\":1,\"voltage\":26.065},{\"current\":0.001,\"status\":1,\"voltage\":26.065},{\"current\":0.001,\"status\":1,\"voltage\":26.065}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300108\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412313", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:41", + "echoMap": {}, + "deviceId": "1029030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4699510\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260623201\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4699515\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:5e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.51600003,\"status\":1,\"voltage\":26.146002},{\"current\":0.001,\"status\":1,\"voltage\":26.146002},{\"current\":0.36900002,\"status\":1,\"voltage\":26.146002},{\"current\":0.259,\"status\":1,\"voltage\":26.146002},{\"current\":0.25,\"status\":1,\"voltage\":26.146002},{\"current\":0.272,\"status\":1,\"voltage\":26.146002},{\"current\":0.25100002,\"status\":1,\"voltage\":26.146002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.146002},{\"current\":0.54,\"status\":1,\"voltage\":26.146002},{\"current\":0.38000003,\"status\":1,\"voltage\":26.021002},{\"current\":0.003,\"status\":1,\"voltage\":26.021002},{\"current\":0.254,\"status\":1,\"voltage\":26.021002},{\"current\":0.001,\"status\":1,\"voltage\":26.021002},{\"current\":0.001,\"status\":1,\"voltage\":26.021002},{\"current\":0.001,\"status\":1,\"voltage\":26.021002},{\"current\":0.001,\"status\":1,\"voltage\":26.021002}],\"fanSpeeds\":[0,0],\"humidity\":21,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300094\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:35:41", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412314", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:42", + "echoMap": {}, + "deviceId": "1029030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260587649\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:91\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.377,\"status\":1,\"voltage\":26.061},{\"current\":0.563,\"status\":1,\"voltage\":26.061},{\"current\":0.34800002,\"status\":1,\"voltage\":26.061},{\"current\":0.312,\"status\":1,\"voltage\":26.061},{\"current\":0.37500003,\"status\":1,\"voltage\":26.061},{\"current\":0.377,\"status\":1,\"voltage\":26.061},{\"current\":0.263,\"status\":1,\"voltage\":26.061},{\"current\":0.27100003,\"status\":1,\"voltage\":26.061},{\"current\":0.27,\"status\":1,\"voltage\":26.061},{\"current\":0.001,\"status\":1,\"voltage\":26.150002},{\"current\":0.003,\"status\":1,\"voltage\":26.150002},{\"current\":0.001,\"status\":1,\"voltage\":26.150002},{\"current\":0.001,\"status\":1,\"voltage\":26.150002},{\"current\":0.001,\"status\":1,\"voltage\":26.150002},{\"current\":0.001,\"status\":1,\"voltage\":26.150002},{\"current\":0.001,\"status\":1,\"voltage\":26.150002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301169\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412315", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:42", + "echoMap": {}, + "deviceId": "1029030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260585716\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:52\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.347,\"status\":1,\"voltage\":26.404001},{\"current\":0.514,\"status\":1,\"voltage\":26.404001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.404001},{\"current\":0.264,\"status\":1,\"voltage\":26.404001},{\"current\":0.23300001,\"status\":1,\"voltage\":26.404001},{\"current\":0.22900002,\"status\":1,\"voltage\":26.404001},{\"current\":0.261,\"status\":1,\"voltage\":26.404001},{\"current\":0.41700003,\"status\":1,\"voltage\":26.404001},{\"current\":0.22800002,\"status\":1,\"voltage\":26.404001},{\"current\":0.263,\"status\":1,\"voltage\":26.316002},{\"current\":0.002,\"status\":1,\"voltage\":26.316002},{\"current\":0.337,\"status\":1,\"voltage\":26.316002},{\"current\":0.28500003,\"status\":1,\"voltage\":26.316002},{\"current\":0.001,\"status\":1,\"voltage\":26.316002},{\"current\":0.001,\"status\":1,\"voltage\":26.316002},{\"current\":0.001,\"status\":1,\"voltage\":26.316002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208300082\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412316", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:43", + "echoMap": {}, + "deviceId": "1029030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260587937\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:6d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":26.233002},{\"current\":0.43400002,\"status\":1,\"voltage\":26.233002},{\"current\":0.30400002,\"status\":1,\"voltage\":26.233002},{\"current\":0.53400004,\"status\":1,\"voltage\":26.233002},{\"current\":0.001,\"status\":1,\"voltage\":26.233002},{\"current\":0.252,\"status\":1,\"voltage\":26.233002},{\"current\":0.535,\"status\":1,\"voltage\":26.233002},{\"current\":0.41300002,\"status\":1,\"voltage\":26.233002},{\"current\":0.001,\"status\":1,\"voltage\":26.233002},{\"current\":0.001,\"status\":1,\"voltage\":26.049002},{\"current\":0.003,\"status\":1,\"voltage\":26.049002},{\"current\":0.001,\"status\":1,\"voltage\":26.049002},{\"current\":0.001,\"status\":1,\"voltage\":26.049002},{\"current\":0.001,\"status\":1,\"voltage\":26.049002},{\"current\":0.001,\"status\":1,\"voltage\":26.049002},{\"current\":0.001,\"status\":1,\"voltage\":26.049002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300109\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412317", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:43", + "echoMap": {}, + "deviceId": "1029030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260586447\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:05:62\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.266,\"status\":1,\"voltage\":25.925001},{\"current\":0.26500002,\"status\":1,\"voltage\":25.925001},{\"current\":0.24800001,\"status\":1,\"voltage\":25.925001},{\"current\":0.46500003,\"status\":1,\"voltage\":25.925001},{\"current\":0.517,\"status\":1,\"voltage\":25.925001},{\"current\":0.37300003,\"status\":1,\"voltage\":25.925001},{\"current\":0.001,\"status\":0,\"voltage\":25.925001},{\"current\":0.37800002,\"status\":1,\"voltage\":25.925001},{\"current\":0.21800001,\"status\":1,\"voltage\":25.925001},{\"current\":0.001,\"status\":1,\"voltage\":26.088001},{\"current\":0.003,\"status\":1,\"voltage\":26.088001},{\"current\":0.001,\"status\":1,\"voltage\":26.088001},{\"current\":0.001,\"status\":1,\"voltage\":26.088001},{\"current\":0.001,\"status\":1,\"voltage\":26.088001},{\"current\":0.001,\"status\":1,\"voltage\":26.088001},{\"current\":0.001,\"status\":1,\"voltage\":26.088001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301378\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412318", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:43", + "echoMap": {}, + "deviceId": "1029030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260586867\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:22:0e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.294,\"status\":1,\"voltage\":26.321001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.321001},{\"current\":0.245,\"status\":1,\"voltage\":26.321001},{\"current\":0.268,\"status\":1,\"voltage\":26.321001},{\"current\":0.527,\"status\":1,\"voltage\":26.321001},{\"current\":0.24800001,\"status\":1,\"voltage\":26.321001},{\"current\":0.23400001,\"status\":1,\"voltage\":26.321001},{\"current\":0.266,\"status\":1,\"voltage\":26.321001},{\"current\":0.33600003,\"status\":1,\"voltage\":26.321001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.003,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001},{\"current\":0.001,\"status\":1,\"voltage\":26.397001}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208300717\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412319", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:44", + "echoMap": {}, + "deviceId": "1029030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260586090\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:8a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26700002,\"status\":1,\"voltage\":26.148},{\"current\":0.537,\"status\":1,\"voltage\":26.148},{\"current\":0.24400002,\"status\":1,\"voltage\":26.148},{\"current\":0.37800002,\"status\":1,\"voltage\":26.148},{\"current\":0.307,\"status\":1,\"voltage\":26.148},{\"current\":0.287,\"status\":1,\"voltage\":26.148},{\"current\":0.24200001,\"status\":1,\"voltage\":26.148},{\"current\":0.245,\"status\":1,\"voltage\":26.148},{\"current\":0.001,\"status\":1,\"voltage\":26.148},{\"current\":0.001,\"status\":1,\"voltage\":26.175001},{\"current\":0.003,\"status\":1,\"voltage\":26.175001},{\"current\":0.001,\"status\":1,\"voltage\":26.175001},{\"current\":0.001,\"status\":1,\"voltage\":26.175001},{\"current\":0.001,\"status\":1,\"voltage\":26.175001},{\"current\":0.001,\"status\":1,\"voltage\":26.175001},{\"current\":0.001,\"status\":1,\"voltage\":26.175001}],\"fanSpeeds\":[0,0],\"humidity\":22,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300138\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412320", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:44", + "echoMap": {}, + "deviceId": "1029030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260585796\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:04:93\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24800001,\"status\":1,\"voltage\":26.222002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.222002},{\"current\":0.52000004,\"status\":1,\"voltage\":26.222002},{\"current\":0.252,\"status\":1,\"voltage\":26.222002},{\"current\":0.34300002,\"status\":1,\"voltage\":26.222002},{\"current\":0.312,\"status\":1,\"voltage\":26.222002},{\"current\":0.29900002,\"status\":1,\"voltage\":26.222002},{\"current\":0.001,\"status\":1,\"voltage\":26.222002},{\"current\":0.001,\"status\":1,\"voltage\":26.222002},{\"current\":0.001,\"status\":1,\"voltage\":25.972002},{\"current\":0.003,\"status\":1,\"voltage\":25.972002},{\"current\":0.001,\"status\":1,\"voltage\":25.972002},{\"current\":0.001,\"status\":1,\"voltage\":25.972002},{\"current\":0.001,\"status\":1,\"voltage\":25.972002},{\"current\":0.001,\"status\":1,\"voltage\":25.972002},{\"current\":0.001,\"status\":1,\"voltage\":25.972002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301171\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412321", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:44", + "echoMap": {}, + "deviceId": "1029030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260587627\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:01:b0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.36600003,\"status\":1,\"voltage\":26.125002},{\"current\":0.32500002,\"status\":1,\"voltage\":26.125002},{\"current\":0.30100003,\"status\":1,\"voltage\":26.125002},{\"current\":0.001,\"status\":1,\"voltage\":26.125002},{\"current\":0.532,\"status\":1,\"voltage\":26.125002},{\"current\":0.333,\"status\":1,\"voltage\":26.125002},{\"current\":0.522,\"status\":1,\"voltage\":26.125002},{\"current\":0.001,\"status\":1,\"voltage\":26.125002},{\"current\":0.33900002,\"status\":1,\"voltage\":26.125002},{\"current\":0.41300002,\"status\":1,\"voltage\":26.194002},{\"current\":0.003,\"status\":1,\"voltage\":26.194002},{\"current\":0.013,\"status\":1,\"voltage\":26.194002},{\"current\":0.32000002,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002},{\"current\":0.001,\"status\":1,\"voltage\":26.194002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300432\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:44", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412322", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1029030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"4698842\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"260585998\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4698847\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:87\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.526,\"status\":1,\"voltage\":26.186},{\"current\":0.27400002,\"status\":1,\"voltage\":26.186},{\"current\":0.24300002,\"status\":1,\"voltage\":26.186},{\"current\":0.246,\"status\":1,\"voltage\":26.186},{\"current\":0.25,\"status\":1,\"voltage\":26.186},{\"current\":0.268,\"status\":1,\"voltage\":26.186},{\"current\":0.25100002,\"status\":1,\"voltage\":26.186},{\"current\":0.254,\"status\":1,\"voltage\":26.186},{\"current\":0.23600002,\"status\":1,\"voltage\":26.186},{\"current\":0.246,\"status\":1,\"voltage\":26.267002},{\"current\":0.003,\"status\":1,\"voltage\":26.267002},{\"current\":0.53300005,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002},{\"current\":0.001,\"status\":1,\"voltage\":26.267002}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301094\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412323", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:45", + "echoMap": {}, + "deviceId": "1029030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2988320\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164345217\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2988325\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:30\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.915},{\"current\":0.001,\"status\":1,\"voltage\":26.915},{\"current\":0.282,\"status\":1,\"voltage\":26.915},{\"current\":0.28100002,\"status\":1,\"voltage\":26.915},{\"current\":0.001,\"status\":1,\"voltage\":26.915},{\"current\":0.001,\"status\":1,\"voltage\":26.915},{\"current\":0.001,\"status\":1,\"voltage\":26.915},{\"current\":0.001,\"status\":1,\"voltage\":26.915},{\"current\":0.001,\"status\":0,\"voltage\":26.915},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301519\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"54\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:45", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412324", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:46", + "echoMap": {}, + "deviceId": "1029030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2987342\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164290498\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2987347\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:ea\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.287,\"status\":1,\"voltage\":26.725},{\"current\":0.282,\"status\":1,\"voltage\":26.725},{\"current\":0.259,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":1,\"voltage\":26.725},{\"current\":0.001,\"status\":0,\"voltage\":26.725},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301705\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412325", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:46", + "echoMap": {}, + "deviceId": "1029030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2987342\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164290995\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2987347\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:a0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.277,\"status\":1,\"voltage\":26.834002},{\"current\":0.30100003,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":1,\"voltage\":26.834002},{\"current\":0.001,\"status\":0,\"voltage\":26.834002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302208\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603980905576412326", + "createdBy": "0", + "createdTime": "2025-02-28 14:52:47", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:46", + "echoMap": {}, + "deviceId": "1029030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.186.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2987342\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"164288217\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2987347\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:b1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.837002},{\"current\":0.291,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":1,\"voltage\":26.837002},{\"current\":0.001,\"status\":0,\"voltage\":26.837002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302225\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:35:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706388937557516305", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:17", + "echoMap": {}, + "deviceId": "1029040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif186\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:bf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:16\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":404417,\"inBytes\":10927031,\"inFlow\":395035,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":10927031,\"lastOutBytes\":2714978896,\"outBytes\":2714978896,\"outFlow\":9382,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":351,\"inBytes\":297094174,\"inFlow\":128,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":297094174,\"lastOutBytes\":1765795405,\"outBytes\":1765795405,\"outFlow\":222,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":410415,\"inBytes\":2751126300,\"inFlow\":10565,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2751126300,\"lastOutBytes\":2960137949,\"outBytes\":2960137949,\"outFlow\":399849,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:43.273498000\"}}", + "lastDiagTime": "2026-02-02 14:38:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516306", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:23", + "echoMap": {}, + "deviceId": "1029040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif186\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:9e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:22\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":406923,\"inBytes\":3191295416,\"inFlow\":397664,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3191295416,\"lastOutBytes\":2063799720,\"outBytes\":2063799720,\"outFlow\":9259,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":403711,\"inBytes\":474975467,\"inFlow\":394435,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":474975467,\"lastOutBytes\":2374838497,\"outBytes\":2374838497,\"outFlow\":9276,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":350,\"inBytes\":297097428,\"inFlow\":129,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":297097428,\"lastOutBytes\":1765529207,\"outBytes\":1765529207,\"outFlow\":221,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":816444,\"inBytes\":4076496321,\"inFlow\":20135,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":4076496321,\"lastOutBytes\":3140102805,\"outBytes\":3140102805,\"outFlow\":796308,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:43.976581000\"}}", + "lastDiagTime": "2026-02-02 14:38:23", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516307", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:16", + "echoMap": {}, + "deviceId": "1029040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif186\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:85\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:15\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":404490,\"inBytes\":3259112086,\"inFlow\":395042,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3259112086,\"lastOutBytes\":3643446058,\"outBytes\":3643446058,\"outFlow\":9447,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":405365,\"inBytes\":2685496400,\"inFlow\":396216,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2685496400,\"lastOutBytes\":2508895449,\"outBytes\":2508895449,\"outFlow\":9148,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":405929,\"inBytes\":3109113841,\"inFlow\":396678,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3109113841,\"lastOutBytes\":2516578749,\"outBytes\":2516578749,\"outFlow\":9250,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":297097111,\"inFlow\":128,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":297097111,\"lastOutBytes\":1765966615,\"outBytes\":1765966615,\"outFlow\":220,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1223333,\"inBytes\":3253559154,\"inFlow\":29911,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3253559154,\"lastOutBytes\":1312193818,\"outBytes\":1312193818,\"outFlow\":1193422,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:42.460927000\"}}", + "lastDiagTime": "2026-02-02 14:38:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516308", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:24", + "echoMap": {}, + "deviceId": "1029040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif186\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:23\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":404505,\"inBytes\":2855367737,\"inFlow\":395184,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":2855367737,\"lastOutBytes\":2673617692,\"outBytes\":2673617692,\"outFlow\":9320,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407516,\"inBytes\":585366750,\"inFlow\":398138,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":585366750,\"lastOutBytes\":2672502871,\"outBytes\":2672502871,\"outFlow\":9377,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":351,\"inBytes\":297193362,\"inFlow\":128,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":297193362,\"lastOutBytes\":1765324456,\"outBytes\":1765324456,\"outFlow\":222,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":821041,\"inBytes\":742308736,\"inFlow\":20414,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":742308736,\"lastOutBytes\":2955228159,\"outBytes\":2955228159,\"outFlow\":800626,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:44.693510000\"}}", + "lastDiagTime": "2026-02-02 14:38:24", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516309", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30932\",\"inUnknownProtos\":\"2309125759\",\"index\":\"635\",\"lastChange\":\"0:01:25.04\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:2c:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2561429350\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"6260123\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.142\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":416937,\"inBytes\":1833574979,\"inFlow\":406887,\"lastChangeTime\":\"0:01:26.84\",\"lastInBytes\":1833574979,\"lastOutBytes\":3091823473,\"outBytes\":3091823473,\"outFlow\":10050,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":902765,\"inBytes\":1205972797,\"inFlow\":880618,\"lastChangeTime\":\"22 days, 0:21:34.80\",\"lastInBytes\":1205972797,\"lastOutBytes\":3610687889,\"outBytes\":3610687889,\"outFlow\":22147,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":414650,\"inBytes\":2824339842,\"inFlow\":404765,\"lastChangeTime\":\"22 days, 0:21:28.87\",\"lastInBytes\":2824339842,\"lastOutBytes\":1287043190,\"outBytes\":1287043190,\"outFlow\":9885,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":413717,\"inBytes\":2702914328,\"inFlow\":403764,\"lastChangeTime\":\"22 days, 0:21:28.93\",\"lastInBytes\":2702914328,\"lastOutBytes\":2839795035,\"outBytes\":2839795035,\"outFlow\":9952,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":416575,\"inBytes\":1976388817,\"inFlow\":406603,\"lastChangeTime\":\"0:01:27.41\",\"lastInBytes\":1976388817,\"lastOutBytes\":1191222952,\"outBytes\":1191222952,\"outFlow\":9971,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":902545,\"inBytes\":567863162,\"inFlow\":880480,\"lastChangeTime\":\"0:01:26.85\",\"lastInBytes\":567863162,\"lastOutBytes\":2309125759,\"outBytes\":2309125759,\"outFlow\":22065,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416048,\"inBytes\":3279113362,\"inFlow\":406103,\"lastChangeTime\":\"0:01:27.39\",\"lastInBytes\":3279113362,\"lastOutBytes\":1215700997,\"outBytes\":1215700997,\"outFlow\":9944,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":907064,\"inBytes\":268474194,\"inFlow\":884608,\"lastChangeTime\":\"22 days, 0:21:37.62\",\"lastInBytes\":268474194,\"lastOutBytes\":4101826383,\"outBytes\":4101826383,\"outFlow\":22456,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":906115,\"inBytes\":987078651,\"inFlow\":883421,\"lastChangeTime\":\"22 days, 0:21:30.64\",\"lastInBytes\":987078651,\"lastOutBytes\":529863446,\"outBytes\":529863446,\"outFlow\":22693,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":903224,\"inBytes\":1844044349,\"inFlow\":880582,\"lastChangeTime\":\"22 days, 0:21:32.46\",\"lastInBytes\":1844044349,\"lastOutBytes\":2831629968,\"outBytes\":2831629968,\"outFlow\":22642,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1171790,\"inBytes\":753702841,\"inFlow\":1144602,\"lastChangeTime\":\"0:01:27.41\",\"lastInBytes\":753702841,\"lastOutBytes\":674379464,\"outBytes\":674379464,\"outFlow\":27187,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":485261297,\"inFlow\":1,\"lastChangeTime\":\"0:01:26.84\",\"lastInBytes\":485261297,\"lastOutBytes\":1233994271,\"outBytes\":1233994271,\"outFlow\":93,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7805551,\"inBytes\":1026111376,\"inFlow\":199118,\"lastChangeTime\":\"0:01:25.04\",\"lastInBytes\":1026111376,\"lastOutBytes\":3942386833,\"outBytes\":3942386833,\"outFlow\":7606433,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.567248000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516310", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30854\",\"inUnknownProtos\":\"4270729636\",\"index\":\"635\",\"lastChange\":\"0:01:16.76\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d5:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1964306455\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"6260581\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.141\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":416609,\"inBytes\":2170183113,\"inFlow\":406370,\"lastChangeTime\":\"22 days, 0:21:31.28\",\"lastInBytes\":2170183113,\"lastOutBytes\":1352054479,\"outBytes\":1352054479,\"outFlow\":10239,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416443,\"inBytes\":3150177403,\"inFlow\":406356,\"lastChangeTime\":\"3 days, 15:45:25.76\",\"lastInBytes\":3150177403,\"lastOutBytes\":2387585801,\"outBytes\":2387585801,\"outFlow\":10087,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":416282,\"inBytes\":3468657590,\"inFlow\":406137,\"lastChangeTime\":\"98 days, 5:13:51.98\",\"lastInBytes\":3468657590,\"lastOutBytes\":1019769875,\"outBytes\":1019769875,\"outFlow\":10145,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":278247,\"inBytes\":4045747718,\"inFlow\":271275,\"lastChangeTime\":\"0:01:19.40\",\"lastInBytes\":4045747718,\"lastOutBytes\":2309287252,\"outBytes\":2309287252,\"outFlow\":6971,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":418805,\"inBytes\":1613286481,\"inFlow\":408744,\"lastChangeTime\":\"0:01:18.71\",\"lastInBytes\":1613286481,\"lastOutBytes\":3023336070,\"outBytes\":3023336070,\"outFlow\":10060,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":554580,\"inBytes\":644132430,\"inFlow\":541479,\"lastChangeTime\":\"22 days, 0:21:28.95\",\"lastInBytes\":644132430,\"lastOutBytes\":4270729636,\"outBytes\":4270729636,\"outFlow\":13101,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1108445,\"inBytes\":3851011307,\"inFlow\":1082862,\"lastChangeTime\":\"0:01:19.39\",\"lastInBytes\":3851011307,\"lastOutBytes\":4204707373,\"outBytes\":4204707373,\"outFlow\":25583,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":278078,\"inBytes\":3044016122,\"inFlow\":271290,\"lastChangeTime\":\"0:01:18.71\",\"lastInBytes\":3044016122,\"lastOutBytes\":2523191594,\"outBytes\":2523191594,\"outFlow\":6788,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":417505,\"inBytes\":450162889,\"inFlow\":407381,\"lastChangeTime\":\"0:01:18.72\",\"lastInBytes\":450162889,\"lastOutBytes\":3015791871,\"outBytes\":3015791871,\"outFlow\":10124,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":907488,\"inBytes\":2485453838,\"inFlow\":884790,\"lastChangeTime\":\"22 days, 0:21:33.38\",\"lastInBytes\":2485453838,\"lastOutBytes\":1429802284,\"outBytes\":1429802284,\"outFlow\":22698,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":899369,\"inBytes\":1495265318,\"inFlow\":877175,\"lastChangeTime\":\"22 days, 0:21:27.51\",\"lastInBytes\":1495265318,\"lastOutBytes\":163474136,\"outBytes\":163474136,\"outFlow\":22193,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":902066,\"inBytes\":2715732662,\"inFlow\":879273,\"lastChangeTime\":\"22 days, 0:21:35.68\",\"lastInBytes\":2715732662,\"lastOutBytes\":3605942799,\"outBytes\":3605942799,\"outFlow\":22793,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":485262590,\"inFlow\":1,\"lastChangeTime\":\"0:01:18.70\",\"lastInBytes\":485262590,\"lastOutBytes\":1232798839,\"outBytes\":1232798839,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7043238,\"inBytes\":3185853976,\"inFlow\":178102,\"lastChangeTime\":\"0:01:16.75\",\"lastInBytes\":3185853976,\"lastOutBytes\":3359203544,\"outBytes\":3359203544,\"outFlow\":6865136,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.570199000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516311", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30938\",\"inUnknownProtos\":\"860203632\",\"index\":\"635\",\"lastChange\":\"0:01:15.80\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d2:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2576226229\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":416787,\"inBytes\":4180915458,\"inFlow\":406634,\"lastChangeTime\":\"22 days, 0:21:29.57\",\"lastInBytes\":4180915458,\"lastOutBytes\":245567208,\"outBytes\":245567208,\"outFlow\":10153,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":903183,\"inBytes\":304520055,\"inFlow\":880659,\"lastChangeTime\":\"22 days, 0:21:39.26\",\"lastInBytes\":304520055,\"lastOutBytes\":1041014497,\"outBytes\":1041014497,\"outFlow\":22523,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":416479,\"inBytes\":2379581213,\"inFlow\":406399,\"lastChangeTime\":\"0:01:17.40\",\"lastInBytes\":2379581213,\"lastOutBytes\":361998367,\"outBytes\":361998367,\"outFlow\":10079,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416728,\"inBytes\":469918599,\"inFlow\":406564,\"lastChangeTime\":\"22 days, 0:21:36.71\",\"lastInBytes\":469918599,\"lastOutBytes\":834064464,\"outBytes\":834064464,\"outFlow\":10164,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":413696,\"inBytes\":2647981281,\"inFlow\":405731,\"lastChangeTime\":\"0:01:18.09\",\"lastInBytes\":2647981281,\"lastOutBytes\":748772575,\"outBytes\":748772575,\"outFlow\":7965,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":904509,\"inBytes\":1331325864,\"inFlow\":882267,\"lastChangeTime\":\"22 days, 0:21:33.22\",\"lastInBytes\":1331325864,\"lastOutBytes\":860203632,\"outBytes\":860203632,\"outFlow\":22241,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":423954,\"inBytes\":2057966227,\"inFlow\":416062,\"lastChangeTime\":\"0:01:18.16\",\"lastInBytes\":2057966227,\"lastOutBytes\":3417167247,\"outBytes\":3417167247,\"outFlow\":7892,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":485261095,\"inFlow\":1,\"lastChangeTime\":\"0:01:17.40\",\"lastInBytes\":485261095,\"lastOutBytes\":1235631030,\"outBytes\":1235631030,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.85\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3610042,\"inBytes\":2780793464,\"inFlow\":87706,\"lastChangeTime\":\"0:01:15.80\",\"lastInBytes\":2780793464,\"lastOutBytes\":370829070,\"outBytes\":370829070,\"outFlow\":3522336,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.655199000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516312", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30840\",\"inUnknownProtos\":\"3191127717\",\"index\":\"635\",\"lastChange\":\"0:01:25.77\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c9:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"921098984\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23578214\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":419565,\"inBytes\":3467335566,\"inFlow\":409295,\"lastChangeTime\":\"22 days, 0:21:19.13\",\"lastInBytes\":3467335566,\"lastOutBytes\":263022990,\"outBytes\":263022990,\"outFlow\":10269,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416046,\"inBytes\":1294518515,\"inFlow\":406039,\"lastChangeTime\":\"76 days, 12:22:36.84\",\"lastInBytes\":1294518515,\"lastOutBytes\":2342432415,\"outBytes\":2342432415,\"outFlow\":10006,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":415778,\"inBytes\":3057067109,\"inFlow\":405555,\"lastChangeTime\":\"22 days, 0:21:22.25\",\"lastInBytes\":3057067109,\"lastOutBytes\":3548369303,\"outBytes\":3548369303,\"outFlow\":10223,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":910603,\"inBytes\":2405007852,\"inFlow\":894549,\"lastChangeTime\":\"0:01:28.17\",\"lastInBytes\":2405007852,\"lastOutBytes\":1736077501,\"outBytes\":1736077501,\"outFlow\":16054,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":903669,\"inBytes\":3160667553,\"inFlow\":881397,\"lastChangeTime\":\"98 days, 3:18:04.62\",\"lastInBytes\":3160667553,\"lastOutBytes\":3629014062,\"outBytes\":3629014062,\"outFlow\":22271,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":428259,\"inBytes\":3902093368,\"inFlow\":419988,\"lastChangeTime\":\"0:01:28.10\",\"lastInBytes\":3902093368,\"lastOutBytes\":3191127717,\"outBytes\":3191127717,\"outFlow\":8270,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":904319,\"inBytes\":2884461785,\"inFlow\":882183,\"lastChangeTime\":\"22 days, 0:21:36.52\",\"lastInBytes\":2884461785,\"lastOutBytes\":906701452,\"outBytes\":906701452,\"outFlow\":22136,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":902660,\"inBytes\":1566592197,\"inFlow\":880084,\"lastChangeTime\":\"22 days, 0:21:23.72\",\"lastInBytes\":1566592197,\"lastOutBytes\":2620035435,\"outBytes\":2620035435,\"outFlow\":22575,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3103446,\"inFlow\":0,\"lastChangeTime\":\"76 days, 12:31:14.24\",\"lastInBytes\":3103446,\"lastOutBytes\":149491853,\"outBytes\":149491853,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":485260765,\"inFlow\":1,\"lastChangeTime\":\"0:01:27.62\",\"lastInBytes\":485260765,\"lastOutBytes\":1235012309,\"outBytes\":1235012309,\"outFlow\":93,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.77\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5321387,\"inBytes\":2681413359,\"inFlow\":127288,\"lastChangeTime\":\"0:01:25.76\",\"lastInBytes\":2681413359,\"lastOutBytes\":386588507,\"outBytes\":386588507,\"outFlow\":5194099,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.560781000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516313", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30935\",\"inUnknownProtos\":\"3932549131\",\"index\":\"635\",\"lastChange\":\"0:01:14.87\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:00:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1174525380\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23580664\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":442974,\"inBytes\":4098062284,\"inFlow\":431990,\"lastChangeTime\":\"0:01:19.92\",\"lastInBytes\":4098062284,\"lastOutBytes\":2492966459,\"outBytes\":2492966459,\"outFlow\":10983,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":417043,\"inBytes\":916664585,\"inFlow\":406946,\"lastChangeTime\":\"22 days, 0:21:21.91\",\"lastInBytes\":916664585,\"lastOutBytes\":32577485,\"outBytes\":32577485,\"outFlow\":10096,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":904883,\"inBytes\":2322408830,\"inFlow\":882513,\"lastChangeTime\":\"22 days, 0:21:32.61\",\"lastInBytes\":2322408830,\"lastOutBytes\":1308137208,\"outBytes\":1308137208,\"outFlow\":22369,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":903782,\"inBytes\":1429102693,\"inFlow\":881684,\"lastChangeTime\":\"22 days, 0:21:26.58\",\"lastInBytes\":1429102693,\"lastOutBytes\":560798948,\"outBytes\":560798948,\"outFlow\":22098,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":416328,\"inBytes\":2224173338,\"inFlow\":406257,\"lastChangeTime\":\"0:01:16.68\",\"lastInBytes\":2224173338,\"lastOutBytes\":3958321422,\"outBytes\":3958321422,\"outFlow\":10070,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":416254,\"inBytes\":4118877291,\"inFlow\":406130,\"lastChangeTime\":\"22 days, 0:21:29.36\",\"lastInBytes\":4118877291,\"lastOutBytes\":3932549131,\"outBytes\":3932549131,\"outFlow\":10123,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416277,\"inBytes\":237883175,\"inFlow\":406086,\"lastChangeTime\":\"22 days, 0:21:28.45\",\"lastInBytes\":237883175,\"lastOutBytes\":4280295579,\"outBytes\":4280295579,\"outFlow\":10190,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":416357,\"inBytes\":842984638,\"inFlow\":406307,\"lastChangeTime\":\"22 days, 23:13:23.87\",\"lastInBytes\":842984638,\"lastOutBytes\":3638456384,\"outBytes\":3638456384,\"outFlow\":10049,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415463,\"inBytes\":572421746,\"inFlow\":407038,\"lastChangeTime\":\"0:01:17.33\",\"lastInBytes\":572421746,\"lastOutBytes\":3278422308,\"outBytes\":3278422308,\"outFlow\":8424,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":485261542,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.69\",\"lastInBytes\":485261542,\"lastOutBytes\":1236140843,\"outBytes\":1236140843,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4765060,\"inBytes\":2710401568,\"inFlow\":110148,\"lastChangeTime\":\"0:01:14.86\",\"lastInBytes\":2710401568,\"lastOutBytes\":381284231,\"outBytes\":381284231,\"outFlow\":4654911,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.561069000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516314", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1029040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30787\",\"inUnknownProtos\":\"3161858773\",\"index\":\"635\",\"lastChange\":\"0:01:17.78\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:2c:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1166317933\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"6260545\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:28\",\"info\":{\"portInfoList\":[{\"flow\":417135,\"inBytes\":865656652,\"inFlow\":406974,\"lastChangeTime\":\"0:01:19.69\",\"lastInBytes\":865656652,\"lastOutBytes\":2719196431,\"outBytes\":2719196431,\"outFlow\":10160,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":416509,\"inBytes\":745822424,\"inFlow\":406324,\"lastChangeTime\":\"0:01:19.71\",\"lastInBytes\":745822424,\"lastOutBytes\":3326087219,\"outBytes\":3326087219,\"outFlow\":10185,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":418333,\"inBytes\":97229756,\"inFlow\":408141,\"lastChangeTime\":\"22 days, 0:21:20.86\",\"lastInBytes\":97229756,\"lastOutBytes\":3846855854,\"outBytes\":3846855854,\"outFlow\":10192,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":418809,\"inBytes\":858148664,\"inFlow\":408482,\"lastChangeTime\":\"73 days, 16:14:42.16\",\"lastInBytes\":858148664,\"lastOutBytes\":3509034858,\"outBytes\":3509034858,\"outFlow\":10326,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":416360,\"inBytes\":3852630334,\"inFlow\":406352,\"lastChangeTime\":\"0:01:20.27\",\"lastInBytes\":3852630334,\"lastOutBytes\":3338156583,\"outBytes\":3338156583,\"outFlow\":10007,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":416604,\"inBytes\":3724612641,\"inFlow\":406398,\"lastChangeTime\":\"0:01:20.28\",\"lastInBytes\":3724612641,\"lastOutBytes\":3161858773,\"outBytes\":3161858773,\"outFlow\":10206,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416420,\"inBytes\":3298345179,\"inFlow\":406411,\"lastChangeTime\":\"0:01:20.28\",\"lastInBytes\":3298345179,\"lastOutBytes\":2909330771,\"outBytes\":2909330771,\"outFlow\":10008,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":279015,\"inBytes\":2622056961,\"inFlow\":272257,\"lastChangeTime\":\"0:01:19.70\",\"lastInBytes\":2622056961,\"lastOutBytes\":1281154996,\"outBytes\":1281154996,\"outFlow\":6758,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":278206,\"inBytes\":476313468,\"inFlow\":271281,\"lastChangeTime\":\"0:01:19.70\",\"lastInBytes\":476313468,\"lastOutBytes\":2274103530,\"outBytes\":2274103530,\"outFlow\":6925,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":485261410,\"inFlow\":1,\"lastChangeTime\":\"0:01:19.70\",\"lastInBytes\":485261410,\"lastOutBytes\":1234285904,\"outBytes\":1234285904,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3485146,\"inBytes\":3449279598,\"inFlow\":88114,\"lastChangeTime\":\"0:01:17.78\",\"lastInBytes\":3449279598,\"lastOutBytes\":984251366,\"outBytes\":984251366,\"outFlow\":3397032,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.666648000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516315", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"3615487\",\"inUnknownProtos\":\"1375517556\",\"index\":\"635\",\"lastChange\":\"0:01:16.63\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:1c:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"772641190\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23580590\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":902830,\"inBytes\":353814428,\"inFlow\":880775,\"lastChangeTime\":\"0:01:18.39\",\"lastInBytes\":353814428,\"lastOutBytes\":293587930,\"outBytes\":293587930,\"outFlow\":22055,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":278213,\"inBytes\":540612057,\"inFlow\":271290,\"lastChangeTime\":\"17 days, 9:34:28.34\",\"lastInBytes\":540612057,\"lastOutBytes\":2011641019,\"outBytes\":2011641019,\"outFlow\":6923,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":416596,\"inBytes\":3478101069,\"inFlow\":406327,\"lastChangeTime\":\"0:01:18.38\",\"lastInBytes\":3478101069,\"lastOutBytes\":261953951,\"outBytes\":261953951,\"outFlow\":10268,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":416771,\"inBytes\":3313742247,\"inFlow\":406727,\"lastChangeTime\":\"0:01:19.02\",\"lastInBytes\":3313742247,\"lastOutBytes\":4227755370,\"outBytes\":4227755370,\"outFlow\":10043,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":418747,\"inBytes\":75655549,\"inFlow\":408591,\"lastChangeTime\":\"0:01:18.39\",\"lastInBytes\":75655549,\"lastOutBytes\":813667659,\"outBytes\":813667659,\"outFlow\":10156,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":279707,\"inBytes\":3342390441,\"inFlow\":272821,\"lastChangeTime\":\"0:01:19.02\",\"lastInBytes\":3342390441,\"lastOutBytes\":1375517556,\"outBytes\":1375517556,\"outFlow\":6885,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416194,\"inBytes\":1681028808,\"inFlow\":406214,\"lastChangeTime\":\"0:01:18.40\",\"lastInBytes\":1681028808,\"lastOutBytes\":58828716,\"outBytes\":58828716,\"outFlow\":9979,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":903927,\"inBytes\":3496678705,\"inFlow\":881514,\"lastChangeTime\":\"0:01:19.02\",\"lastInBytes\":3496678705,\"lastOutBytes\":959103784,\"outBytes\":959103784,\"outFlow\":22413,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":485263444,\"inFlow\":1,\"lastChangeTime\":\"48 days, 8:19:39.96\",\"lastInBytes\":485263444,\"lastOutBytes\":1235182074,\"outBytes\":1235182074,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4044934,\"inBytes\":1538630673,\"inFlow\":102851,\"lastChangeTime\":\"0:01:16.62\",\"lastInBytes\":1538630673,\"lastOutBytes\":1362416363,\"outBytes\":1362416363,\"outFlow\":3942082,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.556396000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516316", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30792\",\"inUnknownProtos\":\"2006763087\",\"index\":\"635\",\"lastChange\":\"0:01:25.24\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:cb:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2592593872\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"19909858\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":379935,\"inBytes\":2856859934,\"inFlow\":372466,\"lastChangeTime\":\"0:01:27.74\",\"lastInBytes\":2856859934,\"lastOutBytes\":2833188804,\"outBytes\":2833188804,\"outFlow\":7469,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":384234,\"inBytes\":2932006273,\"inFlow\":374999,\"lastChangeTime\":\"0:01:27.42\",\"lastInBytes\":2932006273,\"lastOutBytes\":4205470879,\"outBytes\":4205470879,\"outFlow\":9235,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":384725,\"inBytes\":3294043633,\"inFlow\":375374,\"lastChangeTime\":\"22 days, 0:21:38.79\",\"lastInBytes\":3294043633,\"lastOutBytes\":1057309195,\"outBytes\":1057309195,\"outFlow\":9351,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":834875,\"inBytes\":1238758333,\"inFlow\":814219,\"lastChangeTime\":\"22 days, 0:21:28.84\",\"lastInBytes\":1238758333,\"lastOutBytes\":1186460218,\"outBytes\":1186460218,\"outFlow\":20655,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":834084,\"inBytes\":1900948887,\"inFlow\":813686,\"lastChangeTime\":\"68 days, 2:35:06.20\",\"lastInBytes\":1900948887,\"lastOutBytes\":1013894466,\"outBytes\":1013894466,\"outFlow\":20398,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":833761,\"inBytes\":1098272987,\"inFlow\":813001,\"lastChangeTime\":\"22 days, 0:21:41.94\",\"lastInBytes\":1098272987,\"lastOutBytes\":2006539104,\"outBytes\":2006539104,\"outFlow\":20760,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":385993,\"inBytes\":3418732111,\"inFlow\":376595,\"lastChangeTime\":\"0:01:27.41\",\"lastInBytes\":3418732111,\"lastOutBytes\":2809006147,\"outBytes\":2809006147,\"outFlow\":9397,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":257121,\"inBytes\":1051269711,\"inFlow\":250733,\"lastChangeTime\":\"17 days, 9:44:38.29\",\"lastInBytes\":1051269711,\"lastOutBytes\":2322346303,\"outBytes\":2322346303,\"outFlow\":6388,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":626728,\"inBytes\":3673052851,\"inFlow\":610364,\"lastChangeTime\":\"0:01:27.00\",\"lastInBytes\":3673052851,\"lastOutBytes\":1906762578,\"outBytes\":1906762578,\"outFlow\":16364,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":417320,\"inBytes\":3239702744,\"inFlow\":407255,\"lastChangeTime\":\"0:01:27.42\",\"lastInBytes\":3239702744,\"lastOutBytes\":3094245810,\"outBytes\":3094245810,\"outFlow\":10064,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":460484,\"inBytes\":2651979428,\"inFlow\":451271,\"lastChangeTime\":\"0:01:27.75\",\"lastInBytes\":2651979428,\"lastOutBytes\":770131651,\"outBytes\":770131651,\"outFlow\":9212,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":416457,\"inBytes\":3340339850,\"inFlow\":406484,\"lastChangeTime\":\"0:01:27.43\",\"lastInBytes\":3340339850,\"lastOutBytes\":1578014353,\"outBytes\":1578014353,\"outFlow\":9972,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":94,\"inBytes\":485261127,\"inFlow\":1,\"lastChangeTime\":\"0:01:27.00\",\"lastInBytes\":485261127,\"lastOutBytes\":1233801681,\"outBytes\":1233801681,\"outFlow\":92,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.89\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6597080,\"inBytes\":3172582069,\"inFlow\":164433,\"lastChangeTime\":\"0:01:25.24\",\"lastInBytes\":3172582069,\"lastOutBytes\":3538259700,\"outBytes\":3538259700,\"outFlow\":6432647,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.559288000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516317", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30785\",\"inUnknownProtos\":\"1108801722\",\"index\":\"635\",\"lastChange\":\"0:01:22.03\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:b9:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1245767588\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23579166\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":911082,\"inBytes\":3404870618,\"inFlow\":893152,\"lastChangeTime\":\"0:01:24.54\",\"lastInBytes\":3404870618,\"lastOutBytes\":2083037993,\"outBytes\":2083037993,\"outFlow\":17929,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1122394,\"inBytes\":102904135,\"inFlow\":1096206,\"lastChangeTime\":\"0:01:23.93\",\"lastInBytes\":102904135,\"lastOutBytes\":1101406240,\"outBytes\":1101406240,\"outFlow\":26187,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":910464,\"inBytes\":1055947383,\"inFlow\":887753,\"lastChangeTime\":\"0:01:33.06\",\"lastInBytes\":1055947383,\"lastOutBytes\":2110689558,\"outBytes\":2110689558,\"outFlow\":22710,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":936198,\"inBytes\":2530357233,\"inFlow\":911026,\"lastChangeTime\":\"0:01:24.53\",\"lastInBytes\":2530357233,\"lastOutBytes\":1456872592,\"outBytes\":1456872592,\"outFlow\":25172,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":857040,\"inBytes\":3311414220,\"inFlow\":839679,\"lastChangeTime\":\"0:01:24.54\",\"lastInBytes\":3311414220,\"lastOutBytes\":544315178,\"outBytes\":544315178,\"outFlow\":17361,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":846581,\"inBytes\":1542411844,\"inFlow\":828907,\"lastChangeTime\":\"0:01:24.54\",\"lastInBytes\":1542411844,\"lastOutBytes\":1108580700,\"outBytes\":1108580700,\"outFlow\":17674,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":833340,\"inBytes\":2763399876,\"inFlow\":812642,\"lastChangeTime\":\"0:01:23.95\",\"lastInBytes\":2763399876,\"lastOutBytes\":223938155,\"outBytes\":223938155,\"outFlow\":20697,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":834633,\"inBytes\":578520329,\"inFlow\":814035,\"lastChangeTime\":\"0:01:23.95\",\"lastInBytes\":578520329,\"lastOutBytes\":4163998667,\"outBytes\":4163998667,\"outFlow\":20598,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":415292,\"inBytes\":3082472843,\"inFlow\":405189,\"lastChangeTime\":\"0:01:23.94\",\"lastInBytes\":3082472843,\"lastOutBytes\":2878630230,\"outBytes\":2878630230,\"outFlow\":10103,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":485262324,\"inFlow\":1,\"lastChangeTime\":\"0:01:23.94\",\"lastInBytes\":485262324,\"lastOutBytes\":1234448374,\"outBytes\":1234448374,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.84\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7365698,\"inBytes\":2652888888,\"inFlow\":178599,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":2652888888,\"lastOutBytes\":2195430927,\"outBytes\":2195430927,\"outFlow\":7187098,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.559907000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516318", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"4072492620\",\"index\":\"635\",\"lastChange\":\"0:01:17.80\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:d2:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1179009212\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23580099\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":416937,\"inBytes\":1390746792,\"inFlow\":406855,\"lastChangeTime\":\"0:01:20.23\",\"lastInBytes\":1390746792,\"lastOutBytes\":2546809550,\"outBytes\":2546809550,\"outFlow\":10082,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":896409,\"inBytes\":2166151843,\"inFlow\":879013,\"lastChangeTime\":\"0:01:20.53\",\"lastInBytes\":2166151843,\"lastOutBytes\":3159848640,\"outBytes\":3159848640,\"outFlow\":17396,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":905575,\"inBytes\":2189866919,\"inFlow\":883220,\"lastChangeTime\":\"0:01:19.73\",\"lastInBytes\":2189866919,\"lastOutBytes\":466935666,\"outBytes\":466935666,\"outFlow\":22355,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":833213,\"inBytes\":1349107522,\"inFlow\":812780,\"lastChangeTime\":\"0:01:19.73\",\"lastInBytes\":1349107522,\"lastOutBytes\":4005214275,\"outBytes\":4005214275,\"outFlow\":20433,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":384398,\"inBytes\":2454970074,\"inFlow\":375032,\"lastChangeTime\":\"0:01:19.75\",\"lastInBytes\":2454970074,\"lastOutBytes\":4072390848,\"outBytes\":4072390848,\"outFlow\":9366,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":383140,\"inBytes\":3455753614,\"inFlow\":373703,\"lastChangeTime\":\"0:01:19.74\",\"lastInBytes\":3455753614,\"lastOutBytes\":3553496541,\"outBytes\":3553496541,\"outFlow\":9437,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":834502,\"inBytes\":3275807960,\"inFlow\":813994,\"lastChangeTime\":\"0:01:20.24\",\"lastInBytes\":3275807960,\"lastOutBytes\":552119735,\"outBytes\":552119735,\"outFlow\":20507,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1052449,\"inBytes\":3081513368,\"inFlow\":1027805,\"lastChangeTime\":\"0:01:20.23\",\"lastInBytes\":3081513368,\"lastOutBytes\":4224433232,\"outBytes\":4224433232,\"outFlow\":24643,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":897942,\"inBytes\":229488792,\"inFlow\":880266,\"lastChangeTime\":\"0:01:20.24\",\"lastInBytes\":229488792,\"lastOutBytes\":4183919713,\"outBytes\":4183919713,\"outFlow\":17675,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":288410,\"inBytes\":1103657571,\"inFlow\":280441,\"lastChangeTime\":\"0:01:19.74\",\"lastInBytes\":1103657571,\"lastOutBytes\":506465016,\"outBytes\":506465016,\"outFlow\":7968,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":485329276,\"inFlow\":1,\"lastChangeTime\":\"0:01:19.73\",\"lastInBytes\":485329276,\"lastOutBytes\":1234924574,\"outBytes\":1234924574,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6574941,\"inBytes\":1157151613,\"inFlow\":159020,\"lastChangeTime\":\"0:01:17.80\",\"lastInBytes\":1157151613,\"lastOutBytes\":794976891,\"outBytes\":794976891,\"outFlow\":6415921,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.558747000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516319", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30798\",\"inUnknownProtos\":\"1383280795\",\"index\":\"635\",\"lastChange\":\"0:01:14.27\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:13:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1198815007\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23581173\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":916382,\"inBytes\":4118698787,\"inFlow\":899846,\"lastChangeTime\":\"0:01:16.80\",\"lastInBytes\":4118698787,\"lastOutBytes\":1953817375,\"outBytes\":1953817375,\"outFlow\":16536,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":416548,\"inBytes\":3675346758,\"inFlow\":408209,\"lastChangeTime\":\"0:01:16.81\",\"lastInBytes\":3675346758,\"lastOutBytes\":850647271,\"outBytes\":850647271,\"outFlow\":8338,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414927,\"inBytes\":1299797073,\"inFlow\":404929,\"lastChangeTime\":\"0:01:16.10\",\"lastInBytes\":1299797073,\"lastOutBytes\":3369044966,\"outBytes\":3369044966,\"outFlow\":9997,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":385272,\"inBytes\":2703625355,\"inFlow\":375160,\"lastChangeTime\":\"22 days, 0:21:30.73\",\"lastInBytes\":2703625355,\"lastOutBytes\":4066265068,\"outBytes\":4066265068,\"outFlow\":10112,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":834775,\"inBytes\":1299964435,\"inFlow\":814246,\"lastChangeTime\":\"22 days, 0:21:23.05\",\"lastInBytes\":1299964435,\"lastOutBytes\":794582274,\"outBytes\":794582274,\"outFlow\":20528,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":383759,\"inBytes\":1052829879,\"inFlow\":374437,\"lastChangeTime\":\"22 days, 0:21:25.13\",\"lastInBytes\":1052829879,\"lastOutBytes\":1383176030,\"outBytes\":1383176030,\"outFlow\":9322,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":836818,\"inBytes\":2722752379,\"inFlow\":816094,\"lastChangeTime\":\"22 days, 0:21:29.34\",\"lastInBytes\":2722752379,\"lastOutBytes\":1357183930,\"outBytes\":1357183930,\"outFlow\":20723,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":827125,\"inBytes\":3390162720,\"inFlow\":811758,\"lastChangeTime\":\"0:01:16.81\",\"lastInBytes\":3390162720,\"lastOutBytes\":1978564651,\"outBytes\":1978564651,\"outFlow\":15367,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":496415,\"inBytes\":1614306451,\"inFlow\":486318,\"lastChangeTime\":\"0:01:16.82\",\"lastInBytes\":1614306451,\"lastOutBytes\":2467036311,\"outBytes\":2467036311,\"outFlow\":10097,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":429766,\"inBytes\":4077922157,\"inFlow\":419218,\"lastChangeTime\":\"0:01:25.52\",\"lastInBytes\":4077922157,\"lastOutBytes\":1564083930,\"outBytes\":1564083930,\"outFlow\":10547,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":415104,\"inBytes\":1320241655,\"inFlow\":405157,\"lastChangeTime\":\"0:01:16.11\",\"lastInBytes\":1320241655,\"lastOutBytes\":318179737,\"outBytes\":318179737,\"outFlow\":9946,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":413756,\"inBytes\":1767639285,\"inFlow\":404799,\"lastChangeTime\":\"0:01:16.82\",\"lastInBytes\":1767639285,\"lastOutBytes\":3568241834,\"outBytes\":3568241834,\"outFlow\":8957,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":91,\"inBytes\":485329952,\"inFlow\":1,\"lastChangeTime\":\"0:01:16.10\",\"lastInBytes\":485329952,\"lastOutBytes\":1234311836,\"outBytes\":1234311836,\"outFlow\":90,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6522703,\"inBytes\":3118827852,\"inFlow\":149661,\"lastChangeTime\":\"0:01:14.26\",\"lastInBytes\":3118827852,\"lastOutBytes\":3651648642,\"outBytes\":3651648642,\"outFlow\":6373041,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.710372000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516320", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:28", + "echoMap": {}, + "deviceId": "1029040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.186.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface186\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"30789\",\"inUnknownProtos\":\"2962345665\",\"index\":\"635\",\"lastChange\":\"0:01:33.01\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:82:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1163755158\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"23577392\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.186.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:27\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":626305,\"inBytes\":3207393090,\"inFlow\":610425,\"lastChangeTime\":\"0:01:35.70\",\"lastInBytes\":3207393090,\"lastOutBytes\":206105836,\"outBytes\":206105836,\"outFlow\":15880,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":631273,\"inBytes\":4196942036,\"inFlow\":615168,\"lastChangeTime\":\"0:01:35.08\",\"lastInBytes\":4196942036,\"lastOutBytes\":3957688540,\"outBytes\":3957688540,\"outFlow\":16104,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":627461,\"inBytes\":3709322158,\"inFlow\":611232,\"lastChangeTime\":\"0:01:35.08\",\"lastInBytes\":3709322158,\"lastOutBytes\":153165949,\"outBytes\":153165949,\"outFlow\":16228,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":416399,\"inBytes\":602789583,\"inFlow\":406512,\"lastChangeTime\":\"0:01:35.07\",\"lastInBytes\":602789583,\"lastOutBytes\":1962799196,\"outBytes\":1962799196,\"outFlow\":9886,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":416495,\"inBytes\":3970768683,\"inFlow\":406390,\"lastChangeTime\":\"0:01:35.72\",\"lastInBytes\":3970768683,\"lastOutBytes\":2962345665,\"outBytes\":2962345665,\"outFlow\":10105,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":416828,\"inBytes\":2242842763,\"inFlow\":406584,\"lastChangeTime\":\"80 days, 6:01:32.94\",\"lastInBytes\":2242842763,\"lastOutBytes\":4167970260,\"outBytes\":4167970260,\"outFlow\":10244,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":277983,\"inBytes\":1393544324,\"inFlow\":271108,\"lastChangeTime\":\"0:01:35.06\",\"lastInBytes\":1393544324,\"lastOutBytes\":3639435551,\"outBytes\":3639435551,\"outFlow\":6875,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":278142,\"inBytes\":3563455731,\"inFlow\":271371,\"lastChangeTime\":\"0:01:35.71\",\"lastInBytes\":3563455731,\"lastOutBytes\":1252015447,\"outBytes\":1252015447,\"outFlow\":6770,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":278440,\"inBytes\":473844034,\"inFlow\":271436,\"lastChangeTime\":\"0:01:35.71\",\"lastInBytes\":473844034,\"lastOutBytes\":3799588173,\"outBytes\":3799588173,\"outFlow\":7004,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":278163,\"inBytes\":3878965203,\"inFlow\":271412,\"lastChangeTime\":\"0:01:35.71\",\"lastInBytes\":3878965203,\"lastOutBytes\":910080831,\"outBytes\":910080831,\"outFlow\":6750,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":277953,\"inBytes\":1821957795,\"inFlow\":271277,\"lastChangeTime\":\"0:01:35.72\",\"lastInBytes\":1821957795,\"lastOutBytes\":338387577,\"outBytes\":338387577,\"outFlow\":6675,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":416993,\"inBytes\":3303870807,\"inFlow\":406920,\"lastChangeTime\":\"0:01:35.70\",\"lastInBytes\":3303870807,\"lastOutBytes\":2882651793,\"outBytes\":2882651793,\"outFlow\":10073,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":278304,\"inBytes\":1803758578,\"inFlow\":271366,\"lastChangeTime\":\"0:01:35.70\",\"lastInBytes\":1803758578,\"lastOutBytes\":3420806309,\"outBytes\":3420806309,\"outFlow\":6937,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":627657,\"inBytes\":851718663,\"inFlow\":611841,\"lastChangeTime\":\"0:01:35.06\",\"lastInBytes\":851718663,\"lastOutBytes\":2050058193,\"outBytes\":2050058193,\"outFlow\":15815,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":94,\"inBytes\":485471624,\"inFlow\":1,\"lastChangeTime\":\"0:01:35.06\",\"lastInBytes\":485471624,\"lastOutBytes\":1232168877,\"outBytes\":1232168877,\"outFlow\":93,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.93\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5871790,\"inBytes\":2859793038,\"inFlow\":151204,\"lastChangeTime\":\"0:01:33.00\",\"lastInBytes\":2859793038,\"lastOutBytes\":3280032199,\"outBytes\":3280032199,\"outFlow\":5720585,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:24.555756000\"}}", + "lastDiagTime": "2026-02-02 14:38:28", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706388937557516321", + "createdBy": "0", + "createdTime": "2025-12-02 09:37:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:51", + "echoMap": {}, + "deviceId": "1029040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.185.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif185\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:03:03.52\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:1a:46\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"41\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.185.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"60649057\",\"0\",\"0\",\"0\",\"0\",\"0\",\"49028\",\"99498\",\"16104\",\"491783\",\"0\",\"0\",\"302\",\"0\",\"302\",\"68559597\",\"77\",\"16740\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:50\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:10.64\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33791,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":508,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35840,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":487,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38911,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":485,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40959,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":474,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40192,\"opticalReceivePower\":0,\"opticalTemperature\":49,\"opticalTransmitPower\":475,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":47360,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":460,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37888,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":519,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41984,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":481,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":45824,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":473,\"opticalVoltage\":3285,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36352,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":526,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44543,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":475,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38911,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":517,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40703,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":492,\"opticalVoltage\":3346,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40448,\"opticalReceivePower\":0,\"opticalTemperature\":61,\"opticalTransmitPower\":488,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39936,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":517,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39423,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":463,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39423,\"opticalReceivePower\":0,\"opticalTemperature\":60,\"opticalTransmitPower\":500,\"opticalVoltage\":3373,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41215,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":518,\"opticalVoltage\":3366,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":43007,\"opticalReceivePower\":0,\"opticalTemperature\":62,\"opticalTransmitPower\":485,\"opticalVoltage\":3363,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":402,\"inBytes\":3843429610,\"inFlow\":73,\"lastChangeTime\":\"7 days, 1:18:19.51\",\"lastInBytes\":3843429610,\"lastOutBytes\":2847997660,\"opticalBiasCurrent\":40703,\"opticalReceivePower\":464,\"opticalTemperature\":59,\"opticalTransmitPower\":532,\"opticalVoltage\":3365,\"outBytes\":2847997660,\"outFlow\":329,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38655,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":562,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":517384,\"inBytes\":4019580952,\"inFlow\":15993,\"lastChangeTime\":\"324 days, 3:10:10.57\",\"lastInBytes\":4019580952,\"lastOutBytes\":1012748379,\"opticalBiasCurrent\":37631,\"opticalReceivePower\":11,\"opticalTemperature\":57,\"opticalTransmitPower\":453,\"opticalVoltage\":3377,\"outBytes\":1012748379,\"outFlow\":501391,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":563391,\"inBytes\":1818027559,\"inFlow\":2963,\"lastChangeTime\":\"7 days, 0:50:55.95\",\"lastInBytes\":1818027559,\"lastOutBytes\":3902873448,\"opticalBiasCurrent\":39680,\"opticalReceivePower\":441,\"opticalTemperature\":55,\"opticalTransmitPower\":473,\"opticalVoltage\":3338,\"outBytes\":3902873448,\"outFlow\":560428,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":5528256,\"inBytes\":1469708693,\"inFlow\":5351340,\"lastChangeTime\":\"476 days, 1:39:25.67\",\"lastInBytes\":1469708693,\"lastOutBytes\":1825359715,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":107,\"opticalTemperature\":51,\"opticalTransmitPower\":243,\"opticalVoltage\":3342,\"outBytes\":1825359715,\"outFlow\":176916,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6688680,\"inBytes\":1154969987,\"inFlow\":6497625,\"lastChangeTime\":\"476 days, 1:39:08.02\",\"lastInBytes\":1154969987,\"lastOutBytes\":2626712680,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":236,\"opticalTemperature\":51,\"opticalTransmitPower\":238,\"opticalVoltage\":3328,\"outBytes\":2626712680,\"outFlow\":191055,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6744158,\"inBytes\":68380650,\"inFlow\":6541368,\"lastChangeTime\":\"476 days, 1:39:11.18\",\"lastInBytes\":68380650,\"lastOutBytes\":273344289,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":162,\"opticalTemperature\":52,\"opticalTransmitPower\":244,\"opticalVoltage\":3344,\"outBytes\":273344289,\"outFlow\":202789,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7501412,\"inBytes\":1976873095,\"inFlow\":7276254,\"lastChangeTime\":\"476 days, 1:39:14.47\",\"lastInBytes\":1976873095,\"lastOutBytes\":742731873,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":36,\"opticalTemperature\":49,\"opticalTransmitPower\":244,\"opticalVoltage\":3330,\"outBytes\":742731873,\"outFlow\":225158,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6229084,\"inBytes\":892476376,\"inFlow\":6036119,\"lastChangeTime\":\"476 days, 1:39:17.63\",\"lastInBytes\":892476376,\"lastOutBytes\":2432543240,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":128,\"opticalTemperature\":52,\"opticalTransmitPower\":245,\"opticalVoltage\":3304,\"outBytes\":2432543240,\"outFlow\":192964,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3810088,\"inBytes\":2753336263,\"inFlow\":3689582,\"lastChangeTime\":\"476 days, 1:39:10.12\",\"lastInBytes\":2753336263,\"lastOutBytes\":2534999058,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":248,\"opticalTemperature\":48,\"opticalTransmitPower\":243,\"opticalVoltage\":3340,\"outBytes\":2534999058,\"outFlow\":120506,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3287767,\"inBytes\":2481658488,\"inFlow\":3184310,\"lastChangeTime\":\"476 days, 1:39:11.22\",\"lastInBytes\":2481658488,\"lastOutBytes\":581567686,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":180,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":581567686,\"outFlow\":103457,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4468793,\"inBytes\":218840658,\"inFlow\":4330140,\"lastChangeTime\":\"476 days, 1:39:07.56\",\"lastInBytes\":218840658,\"lastOutBytes\":1839819748,\"opticalBiasCurrent\":16200,\"opticalReceivePower\":210,\"opticalTemperature\":51,\"opticalTransmitPower\":244,\"opticalVoltage\":3366,\"outBytes\":1839819748,\"outFlow\":138652,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4981248,\"inBytes\":3809736736,\"inFlow\":4833412,\"lastChangeTime\":\"476 days, 1:39:19.17\",\"lastInBytes\":3809736736,\"lastOutBytes\":1170586860,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":2,\"opticalTemperature\":53,\"opticalTransmitPower\":245,\"opticalVoltage\":3328,\"outBytes\":1170586860,\"outFlow\":147835,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3696199,\"inBytes\":1370918413,\"inFlow\":3584433,\"lastChangeTime\":\"476 days, 1:39:08.59\",\"lastInBytes\":1370918413,\"lastOutBytes\":3592908697,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":31,\"opticalTemperature\":53,\"opticalTransmitPower\":237,\"opticalVoltage\":3318,\"outBytes\":3592908697,\"outFlow\":111766,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6537173,\"inBytes\":66775802,\"inFlow\":6331448,\"lastChangeTime\":\"476 days, 1:39:10.15\",\"lastInBytes\":66775802,\"lastOutBytes\":3449582267,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":206,\"opticalTemperature\":57,\"opticalTransmitPower\":244,\"opticalVoltage\":3344,\"outBytes\":3449582267,\"outFlow\":205725,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7300977,\"inBytes\":3442193533,\"inFlow\":7069604,\"lastChangeTime\":\"476 days, 1:39:18.74\",\"lastInBytes\":3442193533,\"lastOutBytes\":3915314759,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":184,\"opticalTemperature\":51,\"opticalTransmitPower\":239,\"opticalVoltage\":3356,\"outBytes\":3915314759,\"outFlow\":231373,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":237,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":791931,\"inBytes\":3222270316,\"inFlow\":766313,\"lastChangeTime\":\"476 days, 1:41:51.64\",\"lastInBytes\":3222270316,\"lastOutBytes\":3291164869,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":206,\"opticalTemperature\":49,\"opticalTransmitPower\":242,\"opticalVoltage\":3364,\"outBytes\":3291164869,\"outFlow\":25617,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":787738,\"inBytes\":2955812174,\"inFlow\":762363,\"lastChangeTime\":\"476 days, 1:41:50.59\",\"lastInBytes\":2955812174,\"lastOutBytes\":1556488875,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":29,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3376,\"outBytes\":1556488875,\"outFlow\":25375,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":395233,\"inBytes\":1286530859,\"inFlow\":381972,\"lastChangeTime\":\"476 days, 1:41:54.74\",\"lastInBytes\":1286530859,\"lastOutBytes\":578976893,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":119,\"opticalTemperature\":51,\"opticalTransmitPower\":244,\"opticalVoltage\":3362,\"outBytes\":578976893,\"outFlow\":13261,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1183980,\"inBytes\":2328852652,\"inFlow\":1146127,\"lastChangeTime\":\"476 days, 1:41:51.08\",\"lastInBytes\":2328852652,\"lastOutBytes\":45806405,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":236,\"opticalTemperature\":51,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":45806405,\"outFlow\":37853,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":244,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":235,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":238,\"opticalVoltage\":3368,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3352,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":237,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":20872,\"inBytes\":2694172098,\"inFlow\":9691,\"lastChangeTime\":\"0:03:05.46\",\"lastInBytes\":2694172098,\"lastOutBytes\":3428527962,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3428527962,\"outFlow\":11180,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":36483436,\"inBytes\":3048773881,\"inFlow\":12673951,\"lastChangeTime\":\"0:03:05.49\",\"lastInBytes\":3048773881,\"lastOutBytes\":3752931500,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3752931500,\"outFlow\":23809485,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":30478,\"inBytes\":2455903574,\"inFlow\":15378,\"lastChangeTime\":\"0:03:04.26\",\"lastInBytes\":2455903574,\"lastOutBytes\":317843116,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":317843116,\"outFlow\":15099,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":336,\"inBytes\":462398631,\"inFlow\":8,\"lastChangeTime\":\"409 days, 15:10:35.57\",\"lastInBytes\":462398631,\"lastOutBytes\":70648988,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":70648988,\"outFlow\":327,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1848843,\"inBytes\":1125163189,\"inFlow\":60744,\"lastChangeTime\":\"70 days, 23:17:22.62\",\"lastInBytes\":1125163189,\"lastOutBytes\":1348744204,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1348744204,\"outFlow\":1788099,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":13962877,\"inBytes\":4107252659,\"inFlow\":2107318,\"lastChangeTime\":\"476 days, 1:02:30.14\",\"lastInBytes\":4107252659,\"lastOutBytes\":960728112,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":960728112,\"outFlow\":11855558,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14622963,\"inBytes\":2665691265,\"inFlow\":2296656,\"lastChangeTime\":\"0:03:04.34\",\"lastInBytes\":2665691265,\"lastOutBytes\":3487319739,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3487319739,\"outFlow\":12326306,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16813063,\"inBytes\":86070282,\"inFlow\":438073,\"lastChangeTime\":\"324 days, 2:17:58.61\",\"lastInBytes\":86070282,\"lastOutBytes\":1926356986,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1926356986,\"outFlow\":16374989,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7541050,\"inBytes\":3304305510,\"inFlow\":439805,\"lastChangeTime\":\"0:03:04.38\",\"lastInBytes\":3304305510,\"lastOutBytes\":2253528549,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2253528549,\"outFlow\":7101244,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":845,\"inBytes\":2701729954,\"inFlow\":220,\"lastChangeTime\":\"439 days, 10:40:56.78\",\"lastInBytes\":2701729954,\"lastOutBytes\":3360049985,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3360049985,\"outFlow\":624,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":565,\"inBytes\":1768855117,\"inFlow\":145,\"lastChangeTime\":\"439 days, 10:37:40.94\",\"lastInBytes\":1768855117,\"lastOutBytes\":879102421,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":879102421,\"outFlow\":420,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":3097608,\"inBytes\":773624794,\"inFlow\":18465,\"lastChangeTime\":\"469 days, 5:39:34.08\",\"lastInBytes\":773624794,\"lastOutBytes\":2408262937,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2408262937,\"outFlow\":3079143,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":6680673,\"inFlow\":0,\"lastChangeTime\":\"49 days, 17:00:50.97\",\"lastInBytes\":6680673,\"lastOutBytes\":436969093,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":436969093,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":401,\"inBytes\":2122245962,\"inFlow\":59,\"lastChangeTime\":\"476 days, 1:39:49.18\",\"lastInBytes\":2122245962,\"lastOutBytes\":3746084589,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3746084589,\"outFlow\":342,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6425825,\"inBytes\":1660951703,\"inFlow\":52055,\"lastChangeTime\":\"486 days, 4:02:42.87\",\"lastInBytes\":1660951703,\"lastOutBytes\":2199231973,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2199231973,\"outFlow\":6373769,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":565,\"inBytes\":1768328165,\"inFlow\":145,\"lastChangeTime\":\"476 days, 1:37:26.01\",\"lastInBytes\":1768328165,\"lastOutBytes\":2463364500,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2463364500,\"outFlow\":420,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3274492067,\"inFlow\":0,\"lastChangeTime\":\"439 days, 10:42:04.17\",\"lastInBytes\":3274492067,\"lastOutBytes\":3435767095,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3435767095,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3728627253,\"inFlow\":0,\"lastChangeTime\":\"32 days, 13:59:24.02\",\"lastInBytes\":3728627253,\"lastOutBytes\":430420904,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":430420904,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"494 days, 1:38:31.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":98444,\"inFlow\":0,\"lastChangeTime\":\"8 days, 4:12:36.91\",\"lastInBytes\":98444,\"lastOutBytes\":875030,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":875030,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":155774,\"inFlow\":0,\"lastChangeTime\":\"8 days, 3:53:07.17\",\"lastInBytes\":155774,\"lastOutBytes\":3222714,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3222714,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:31.820653000\"}}", + "lastDiagTime": "2026-02-02 14:38:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "603980905576412246", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:40", + "echoMap": {}, + "deviceId": "1029110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.185.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.83\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"77 days, 13:08:01.88\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"9965965\",\"inErrors\":\"0\",\"inNUcastPkts\":\"26485786\",\"inOctets\":\"2308391609\",\"inUcastPkts\":\"1462884722\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:19:54.65\",\"mTU\":\"1500\",\"macAddress\":\"28:e4:24:cb:66:45\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2039030926\",\"outQLen\":\"0\",\"outUcastPkts\":\"1508658297\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.185.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:40", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1030": { + "ndmAlarmHost": [ + { + "id": "707147518976153790", + "createdBy": null, + "createdTime": "2025-12-08 13:49:05", + "updatedBy": null, + "updatedTime": "2025-12-17 14:29:27", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "", + "ipAddress": "10.18.187.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "603982761002295296", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-12-26 13:40:30", + "echoMap": {}, + "deviceId": "1030060001", + "name": "[604](10)紫藤弱电设备集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": "{\"upstream\":[]}", + "snmpEnabled": true + }, + { + "id": "603982761002295297", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-12-25 15:43:46", + "echoMap": {}, + "deviceId": "1030060002", + "name": "[605](10)紫藤弱电设备集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": "{\"upstream\":[{\"stationCode\":\"1030\",\"deviceType\":\"ndmSwitch\",\"deviceDbId\":\"706389070701351176\"}]}", + "snmpEnabled": true + }, + { + "id": "603982761002295298", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1030060003", + "name": "[606](10)紫藤弱电设备集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295299", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1030060004", + "name": "[611](10)紫藤环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003053005030611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295300", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060005", + "name": "[607](10)紫藤弱电设备集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295301", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1030060006", + "name": "[608](10)紫藤弱电设备集中室5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295302", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060007", + "name": "[613](10)紫藤内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003001006030613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295303", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060008", + "name": "[614](10)紫藤内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003001006030614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295304", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1030060009", + "name": "[602](10)紫藤编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003041005030602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295305", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1030060010", + "name": "[603](10)紫藤编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003041005030603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295306", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1030060011", + "name": "[204](10)紫藤厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001035004030204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295307", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1030060012", + "name": "[307](10)紫藤2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295308", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1030060013", + "name": "[308](10)紫藤2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295309", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1030060014", + "name": "[312](10)紫藤2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295310", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1030060015", + "name": "[311](10)紫藤2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295311", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1030060016", + "name": "[313](10)紫藤2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295312", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1030060017", + "name": "[210](10)紫藤2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056004030210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295313", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1030060018", + "name": "[314](10)紫藤2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295314", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1030060019", + "name": "[310](10)紫藤2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295315", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1030060020", + "name": "[309](10)紫藤2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001056006030309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295316", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1030060021", + "name": "[203](10)紫藤厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001035004030203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295317", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1030060022", + "name": "[402](10)紫藤2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001006006030402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295318", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1030060023", + "name": "[401](10)紫藤1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001005006030401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295319", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1030060024", + "name": "[343](10)紫藤安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001085006030343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295320", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1030060025", + "name": "[503](10)紫藤票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001030006030503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295321", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1030060026", + "name": "[404](10)紫藤3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295322", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1030060027", + "name": "[403](10)紫藤3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295323", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2026-02-02 12:04:53", + "echoMap": {}, + "deviceId": "1030060028", + "name": "[332](10)紫藤#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001045006030332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295324", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1030060029", + "name": "[337](10)紫藤B1垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001040006030337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295325", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1030060030", + "name": "[340](10)紫藤1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001036005030340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295326", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1030060031", + "name": "[330](10)紫藤2#厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001045006030330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295327", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1030060032", + "name": "[331](10)紫藤2#厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001045006030331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295328", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1030060033", + "name": "[329](10)紫藤1#厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001045006030329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295329", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1030060034", + "name": "[327](10)紫藤1#厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001045006030327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295330", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1030060035", + "name": "[328](10)紫藤1#厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001045006030328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295331", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1030060036", + "name": "[601](10)紫藤车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003042004030601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295332", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1030060037", + "name": "[321](10)紫藤4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001058006030321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295333", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1030060038", + "name": "[322](10)紫藤4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001058006030322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295334", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1030060039", + "name": "[202](10)紫藤厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001035004030202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295335", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1030060040", + "name": "[409](10)紫藤3#闸出5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295336", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1030060041", + "name": "[408](10)紫藤3#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295337", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1030060042", + "name": "[407](10)紫藤3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295338", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1030060043", + "name": "[406](10)紫藤3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295339", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1030060044", + "name": "[405](10)紫藤3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001007006030405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295340", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1030060045", + "name": "[338](10)紫藤B1洗手间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001040006030338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295341", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1030060046", + "name": "[301](10)紫藤1#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295342", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1030060047", + "name": "[610](10)紫藤环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003053005030610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295343", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1030060048", + "name": "[342](10)紫藤安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001085006030342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295344", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1030060049", + "name": "[612](10)紫藤内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003001006030612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295346", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1030060051", + "name": "[502](10)紫藤票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001030006030502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295347", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1030060052", + "name": "[341](10)紫藤2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001036005030341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295348", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1030060053", + "name": "[326](10)紫藤4#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001058006030326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295349", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1030060054", + "name": "[324](10)紫藤4#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001058006030324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295350", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1030060055", + "name": "[323](10)紫藤4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001058006030323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295351", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1030060056", + "name": "[325](10)紫藤4#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001058005030325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295352", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1030060057", + "name": "[302](10)紫藤1#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295353", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1030060058", + "name": "[306](10)紫藤1#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295354", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2026-02-01 05:09:53", + "echoMap": {}, + "deviceId": "1030060059", + "name": "[305](10)紫藤1#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295355", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1030060060", + "name": "[209](10)紫藤1#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055004030209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295356", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1030060061", + "name": "[304](10)紫藤1#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295357", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1030060062", + "name": "[303](10)紫藤1#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295358", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1030060063", + "name": "[616](10)紫藤消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003001006030616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295359", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1030060064", + "name": "[315](10)紫藤3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057006030315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295360", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1030060065", + "name": "[319](10)紫藤3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057006030319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295361", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1030060066", + "name": "[316](10)紫藤3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057006030316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295362", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060067", + "name": "[617](10)紫藤消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003001006030617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295363", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060068", + "name": "[211](10)紫藤3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057004030211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295364", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060069", + "name": "[320](10)紫藤3#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057006030320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295365", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060070", + "name": "[317](10)紫藤3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057006030317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295366", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060071", + "name": "[318](10)紫藤3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001057006030318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295367", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060072", + "name": "[618](10)紫藤变电所出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003021006030618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295368", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060073", + "name": "[619](10)紫藤变电所出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003021006030619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295369", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060074", + "name": "[107](10)紫藤下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002012006030107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295370", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060075", + "name": "[108](10)紫藤下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002012006030108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295371", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060076", + "name": "[110](10)紫藤下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002012006030110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295372", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1030060077", + "name": "[207](10)紫藤下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002001004030207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295373", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1030060078", + "name": "[336](10)紫藤#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002017006030336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295374", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1030060079", + "name": "[615](10)紫藤内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003021006030615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295375", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1030060080", + "name": "[339](10)紫藤B2垂梯口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002002006030339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295376", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1030060081", + "name": "[335](10)紫藤#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002017006030335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295377", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1030060082", + "name": "[609](10)紫藤屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295378", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1030060083", + "name": "[103](10)紫藤上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002007006030103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295379", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1030060084", + "name": "[206](10)紫藤上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002001004030206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295380", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060085", + "name": "[106](10)紫藤上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002007006030106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295381", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060086", + "name": "[105](10)紫藤上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002007006030105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295382", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1030060087", + "name": "[109](10)紫藤下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002012006030109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295383", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060088", + "name": "[111](10)紫藤下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002012006030111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295384", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1030060089", + "name": "[112](10)紫藤下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002012006030112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295385", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1030060090", + "name": "[208](10)紫藤下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002001004030208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295386", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1030060091", + "name": "[702](10)紫藤下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063004013006030702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295387", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060092", + "name": "[334](10)紫藤#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002017006030334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295388", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060093", + "name": "[333](10)紫藤#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002017006030333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295389", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1030060094", + "name": "[701](10)紫藤上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063004013006030701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295390", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060095", + "name": "[102](10)紫藤上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002007006030102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295391", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1030060096", + "name": "[101](10)紫藤上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002007006030101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295392", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1030060097", + "name": "[104](10)紫藤上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002007006030104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295393", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1030060098", + "name": "[205](10)紫藤上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063002001004030205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295394", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060099", + "name": "[704](10)紫藤紫藤航中下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063004012004030704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295395", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060100", + "name": "[703](10)紫藤紫藤航中上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063004012004030703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295396", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1030060101", + "name": "[344](10)紫藤1#口楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001055006030344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295397", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1030060102", + "name": "[620](10)紫藤通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030620", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295398", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1030060103", + "name": "[621](10)紫藤东气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003067005030621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295399", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1030060104", + "name": "[622](10)紫藤通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.187.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048005030622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295400", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060105", + "name": "[623](10)紫藤西气瓶间", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.188.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003067005030623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295401", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060106", + "name": "[624](10)紫藤消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.188.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003068005030624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295402", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060107", + "name": "[625](10)紫藤内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.188.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003001005030625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982761002295403", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:34", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1030060108", + "name": "[501](10)紫藤客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.188.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063001001005030501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "603982761002295405", + "createdBy": "0", + "createdTime": "2025-03-07 11:43:53", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:53", + "echoMap": {}, + "deviceId": "1030070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.187.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063000000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112171\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1243538234\",\"inUcastPkts\":\"890601690\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ee:02\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2360767956\",\"outQLen\":\"0\",\"outUcastPkts\":\"356136321\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.187.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:53\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZEAE7A\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"8\"}}", + "lastDiagTime": "2026-02-02 14:35:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "603982773887197645", + "createdBy": "2", + "createdTime": "2025-03-07 13:13:17", + "updatedBy": null, + "updatedTime": "2025-12-23 10:32:04", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.187.51", + "manageUrl": "http:\\\\10.18.187.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603982773887197647", + "createdBy": "2", + "createdTime": "2025-03-07 13:15:51", + "updatedBy": null, + "updatedTime": "2025-12-23 10:32:00", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.187.52", + "manageUrl": "http:\\\\10.18.187.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "603982761002295407", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:53", + "echoMap": {}, + "deviceId": "1030090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.187.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.84\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"203 days, 2:37:14.71\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"3489804\",\"inErrors\":\"8\",\"inNUcastPkts\":\"9359972\",\"inOctets\":\"1334943319\",\"inUcastPkts\":\"1226750375\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"1 day, 1:35:16.83\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:41:84\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"560683049\",\"outQLen\":\"0\",\"outUcastPkts\":\"4040468666\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.187.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "603982769592230432", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2025-12-29 11:05:52", + "echoMap": {}, + "deviceId": "1030050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.187.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063003048411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.187.22;10.18.187.23" + }, + { + "id": "603982769592230433", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:54", + "echoMap": {}, + "deviceId": "1030050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.187.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063000000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"8887085\",\"inErrors\":\"0\",\"inNUcastPkts\":\"47164607\",\"inOctets\":\"1851728449\",\"inUcastPkts\":\"1320346639\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:c2:a6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2359055942\",\"outQLen\":\"0\",\"outUcastPkts\":\"2907639837\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3280\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3280\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.187.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:53\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":917865017,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"60\",\"CPU使用率\":\"16\"}}", + "lastDiagTime": "2026-02-02 14:35:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.187.22" + }, + { + "id": "603982769592230434", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:55", + "echoMap": {}, + "deviceId": "1030050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.187.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063000000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"26083744\",\"inErrors\":\"0\",\"inNUcastPkts\":\"59366801\",\"inOctets\":\"3674512066\",\"inUcastPkts\":\"71439139\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:3d:71:7f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1352747789\",\"outQLen\":\"0\",\"outUcastPkts\":\"2912496317\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4600\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"3250\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"3260\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"3270\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.187.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:55\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":917865017,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.6.20\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"66\",\"CPU使用率\":\"19\"}}", + "lastDiagTime": "2026-02-02 14:35:55", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.187.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706389070701351189", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:01", + "echoMap": {}, + "deviceId": "1030030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351190", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:09", + "echoMap": {}, + "deviceId": "1030030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351191", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:10", + "echoMap": {}, + "deviceId": "1030030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3908900\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"215970046\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"384 days, 16:11:07.06\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3908905\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:33\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.25300002,\"status\":1,\"voltage\":26.482},{\"current\":0.25100002,\"status\":1,\"voltage\":26.482},{\"current\":0.25100002,\"status\":1,\"voltage\":26.482},{\"current\":0.52400005,\"status\":1,\"voltage\":26.482},{\"current\":0.23700002,\"status\":1,\"voltage\":26.482},{\"current\":0.256,\"status\":1,\"voltage\":26.482},{\"current\":0.254,\"status\":1,\"voltage\":26.482},{\"current\":0.24200001,\"status\":1,\"voltage\":26.482},{\"current\":0.24900001,\"status\":1,\"voltage\":26.482},{\"current\":0.252,\"status\":1,\"voltage\":26.714},{\"current\":0.002,\"status\":1,\"voltage\":26.714},{\"current\":0.26000002,\"status\":1,\"voltage\":26.714},{\"current\":0.568,\"status\":1,\"voltage\":26.714},{\"current\":0.21200001,\"status\":1,\"voltage\":26.714},{\"current\":0.001,\"status\":1,\"voltage\":26.714},{\"current\":0.001,\"status\":1,\"voltage\":26.714}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303123\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:38:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351192", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:10", + "echoMap": {}, + "deviceId": "1030030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909063\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"215978720\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"381 days, 16:32:26.67\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909068\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:c6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.256,\"status\":1,\"voltage\":26.542002},{\"current\":0.549,\"status\":1,\"voltage\":26.542002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.542002},{\"current\":0.24800001,\"status\":1,\"voltage\":26.542002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.542002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.542002},{\"current\":0.252,\"status\":1,\"voltage\":26.542002},{\"current\":0.257,\"status\":1,\"voltage\":26.542002},{\"current\":0.53300005,\"status\":1,\"voltage\":26.542002},{\"current\":0.256,\"status\":1,\"voltage\":26.446001},{\"current\":0.002,\"status\":1,\"voltage\":26.446001},{\"current\":0.22000001,\"status\":1,\"voltage\":26.446001},{\"current\":0.223,\"status\":1,\"voltage\":26.446001},{\"current\":0.001,\"status\":1,\"voltage\":26.446001},{\"current\":0.001,\"status\":1,\"voltage\":26.446001},{\"current\":0.001,\"status\":1,\"voltage\":26.446001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303270\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351193", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:19", + "echoMap": {}, + "deviceId": "1030030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:39:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351194", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:19", + "echoMap": {}, + "deviceId": "1030030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909870\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"216023922\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"385 days, 6:44:31.56\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909875\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:87\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.245,\"status\":1,\"voltage\":26.663002},{\"current\":0.34800002,\"status\":1,\"voltage\":26.663002},{\"current\":0.28,\"status\":1,\"voltage\":26.663002},{\"current\":0.33400002,\"status\":1,\"voltage\":26.663002},{\"current\":0.24100001,\"status\":1,\"voltage\":26.663002},{\"current\":0.51500005,\"status\":1,\"voltage\":26.663002},{\"current\":0.245,\"status\":1,\"voltage\":26.663002},{\"current\":0.245,\"status\":1,\"voltage\":26.663002},{\"current\":0.254,\"status\":1,\"voltage\":26.663002},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.003,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62},{\"current\":0.001,\"status\":1,\"voltage\":26.62}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0001512208302118\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:39:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351195", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:19", + "echoMap": {}, + "deviceId": "1030030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909383\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"215997333\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"383 days, 11:49:15.13\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909388\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:a3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.354,\"status\":1,\"voltage\":26.609001},{\"current\":0.24700001,\"status\":1,\"voltage\":26.609001},{\"current\":0.284,\"status\":1,\"voltage\":26.609001},{\"current\":0.23700002,\"status\":1,\"voltage\":26.609001},{\"current\":0.25,\"status\":1,\"voltage\":26.609001},{\"current\":0.28500003,\"status\":1,\"voltage\":26.609001},{\"current\":0.505,\"status\":1,\"voltage\":26.609001},{\"current\":0.001,\"status\":1,\"voltage\":26.609001},{\"current\":0.001,\"status\":1,\"voltage\":26.609001},{\"current\":0.001,\"status\":1,\"voltage\":26.677002},{\"current\":0.003,\"status\":1,\"voltage\":26.677002},{\"current\":0.001,\"status\":1,\"voltage\":26.677002},{\"current\":0.001,\"status\":1,\"voltage\":26.677002},{\"current\":0.001,\"status\":1,\"voltage\":26.677002},{\"current\":0.001,\"status\":1,\"voltage\":26.677002},{\"current\":0.001,\"status\":1,\"voltage\":26.677002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":24}],\"stCommonInfo\":{\"设备ID\":\"0001512208303235\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:39:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351196", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:20", + "echoMap": {}, + "deviceId": "1030030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909544\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"216005346\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"383 days, 3:59:12.55\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909549\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:e7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26700002,\"status\":1,\"voltage\":26.487001},{\"current\":0.316,\"status\":1,\"voltage\":26.487001},{\"current\":0.23600002,\"status\":1,\"voltage\":26.487001},{\"current\":0.279,\"status\":1,\"voltage\":26.487001},{\"current\":0.256,\"status\":1,\"voltage\":26.487001},{\"current\":0.26900002,\"status\":1,\"voltage\":26.487001},{\"current\":0.404,\"status\":1,\"voltage\":26.487001},{\"current\":0.24200001,\"status\":1,\"voltage\":26.487001},{\"current\":0.29900002,\"status\":1,\"voltage\":26.487001},{\"current\":0.29900002,\"status\":1,\"voltage\":26.819002},{\"current\":0.003,\"status\":1,\"voltage\":26.819002},{\"current\":0.21900001,\"status\":1,\"voltage\":26.819002},{\"current\":0.001,\"status\":1,\"voltage\":26.819002},{\"current\":0.001,\"status\":1,\"voltage\":26.819002},{\"current\":0.001,\"status\":1,\"voltage\":26.819002},{\"current\":0.0,\"status\":1,\"voltage\":26.819002}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302214\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:39:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351197", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:20", + "echoMap": {}, + "deviceId": "1030030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909707\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"216013846\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"267 days, 14:14:46.99\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909712\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:20\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26700002,\"status\":1,\"voltage\":26.396002},{\"current\":0.27600002,\"status\":1,\"voltage\":26.396002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.396002},{\"current\":0.55,\"status\":1,\"voltage\":26.396002},{\"current\":0.31,\"status\":1,\"voltage\":26.396002},{\"current\":0.307,\"status\":1,\"voltage\":26.396002},{\"current\":0.527,\"status\":1,\"voltage\":26.396002},{\"current\":0.264,\"status\":1,\"voltage\":26.396002},{\"current\":0.356,\"status\":1,\"voltage\":26.396002},{\"current\":0.32500002,\"status\":1,\"voltage\":26.61},{\"current\":0.002,\"status\":1,\"voltage\":26.61},{\"current\":0.425,\"status\":1,\"voltage\":26.61},{\"current\":0.386,\"status\":1,\"voltage\":26.61},{\"current\":0.38200003,\"status\":1,\"voltage\":26.61},{\"current\":0.001,\"status\":1,\"voltage\":26.61},{\"current\":0.0,\"status\":1,\"voltage\":26.61}],\"fanSpeeds\":[0,0],\"humidity\":41,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303104\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:39:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351198", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1030030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3908892\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"215968063\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"383 days, 19:01:57.51\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3908897\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:f8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.53800005,\"status\":1,\"voltage\":26.681002},{\"current\":0.367,\"status\":1,\"voltage\":26.681002},{\"current\":0.287,\"status\":1,\"voltage\":26.681002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.681002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.681002},{\"current\":0.35000002,\"status\":1,\"voltage\":26.681002},{\"current\":0.351,\"status\":1,\"voltage\":26.681002},{\"current\":0.28100002,\"status\":1,\"voltage\":26.681002},{\"current\":0.26900002,\"status\":1,\"voltage\":26.681002},{\"current\":0.42000002,\"status\":1,\"voltage\":26.423},{\"current\":0.003,\"status\":1,\"voltage\":26.423},{\"current\":0.279,\"status\":1,\"voltage\":26.423},{\"current\":0.266,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.001,\"status\":1,\"voltage\":26.423},{\"current\":0.0,\"status\":1,\"voltage\":26.423}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303320\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351199", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:21", + "echoMap": {}, + "deviceId": "1030030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909540\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"216005250\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"385 days, 13:04:43.85\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909545\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:27:9d\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.541,\"status\":1,\"voltage\":26.497002},{\"current\":0.35300002,\"status\":1,\"voltage\":26.497002},{\"current\":0.34500003,\"status\":1,\"voltage\":26.497002},{\"current\":0.24100001,\"status\":1,\"voltage\":26.497002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.497002},{\"current\":0.27400002,\"status\":1,\"voltage\":26.497002},{\"current\":0.509,\"status\":1,\"voltage\":26.497002},{\"current\":0.24000001,\"status\":1,\"voltage\":26.497002},{\"current\":0.307,\"status\":1,\"voltage\":26.497002},{\"current\":0.314,\"status\":1,\"voltage\":26.593},{\"current\":0.002,\"status\":1,\"voltage\":26.593},{\"current\":0.001,\"status\":1,\"voltage\":26.593},{\"current\":0.001,\"status\":1,\"voltage\":26.593},{\"current\":0.001,\"status\":1,\"voltage\":26.593},{\"current\":0.001,\"status\":1,\"voltage\":26.593},{\"current\":0.001,\"status\":1,\"voltage\":26.593}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302140\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:39:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351200", + "createdBy": "0", + "createdTime": "2025-12-02 09:42:54", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:22", + "echoMap": {}, + "deviceId": "1030030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.188.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3909703\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"216014425\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"267 days, 1:09:05.66\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3909708\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0c:27\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23600002,\"status\":1,\"voltage\":26.863},{\"current\":0.23700002,\"status\":1,\"voltage\":26.863},{\"current\":0.24000001,\"status\":1,\"voltage\":26.863},{\"current\":0.20700002,\"status\":1,\"voltage\":26.863},{\"current\":0.231,\"status\":1,\"voltage\":26.863},{\"current\":0.22800002,\"status\":1,\"voltage\":26.863},{\"current\":0.261,\"status\":1,\"voltage\":26.863},{\"current\":0.24200001,\"status\":1,\"voltage\":26.863},{\"current\":0.21900001,\"status\":1,\"voltage\":26.863},{\"current\":0.21700001,\"status\":1,\"voltage\":26.698002},{\"current\":0.003,\"status\":1,\"voltage\":26.698002},{\"current\":0.21800001,\"status\":1,\"voltage\":26.698002},{\"current\":0.22200002,\"status\":1,\"voltage\":26.698002},{\"current\":0.238,\"status\":1,\"voltage\":26.698002},{\"current\":0.001,\"status\":1,\"voltage\":26.698002},{\"current\":0.001,\"status\":1,\"voltage\":26.698002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208303111\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:39:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": "{\"downstream\":{}}", + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389070701351165", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:59", + "echoMap": {}, + "deviceId": "1030040013", + "name": "H3C前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif188\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"12:31:05.74\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:6f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:58\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":407375,\"inBytes\":4288713368,\"inFlow\":398002,\"lastChangeTime\":\"7 days, 19:23:10.94\",\"lastInBytes\":4288713368,\"lastOutBytes\":4109844354,\"outBytes\":4109844354,\"outFlow\":9373,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":92,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:11:29.11\",\"lastInBytes\":0,\"lastOutBytes\":1199693382,\"outBytes\":1199693382,\"outFlow\":92,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409977,\"inBytes\":580974387,\"inFlow\":10255,\"lastChangeTime\":\"0:09:03.01\",\"lastInBytes\":580974387,\"lastOutBytes\":3647594519,\"outBytes\":3647594519,\"outFlow\":399722,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:28.186618000\"}}", + "lastDiagTime": "2026-02-02 14:38:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351166", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:04", + "echoMap": {}, + "deviceId": "1030040012", + "name": "H3C前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif188\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"306 days, 22:53:48.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:c7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:03\",\"info\":{\"portInfoList\":[{\"flow\":406399,\"inBytes\":3288691644,\"inFlow\":396904,\"lastChangeTime\":\"314 days, 19:38:25.76\",\"lastInBytes\":3288691644,\"lastOutBytes\":1645124284,\"outBytes\":1645124284,\"outFlow\":9494,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2189,\"inFlow\":0,\"lastChangeTime\":\"210 days, 22:45:52.13\",\"lastInBytes\":2189,\"lastOutBytes\":714,\"outBytes\":714,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":409449,\"inBytes\":4150025750,\"inFlow\":10331,\"lastChangeTime\":\"306 days, 22:53:47.27\",\"lastInBytes\":4150025750,\"lastOutBytes\":2070532583,\"outBytes\":2070532583,\"outFlow\":399118,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":88,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"307 days, 0:13:36.46\",\"lastInBytes\":0,\"lastOutBytes\":1198320260,\"outBytes\":1198320260,\"outFlow\":88,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:29.161432000\"}}", + "lastDiagTime": "2026-02-02 14:39:04", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351167", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"1\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"2\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"1\",\"inOctets\":\"0\",\"inUcastPkts\":\"1824314\",\"inUnknownProtos\":\"2430578767\",\"index\":\"635\",\"lastChange\":\"0:05:15.70\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:b1:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1068774412\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"373495809\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.140\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":946278,\"inBytes\":3029305420,\"inFlow\":924803,\"lastChangeTime\":\"47 days, 21:44:06.90\",\"lastInBytes\":3029305420,\"lastOutBytes\":2135164474,\"outBytes\":2135164474,\"outFlow\":21475,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":946906,\"inBytes\":4110375422,\"inFlow\":923336,\"lastChangeTime\":\"47 days, 21:44:18.04\",\"lastInBytes\":4110375422,\"lastOutBytes\":3463361611,\"outBytes\":3463361611,\"outFlow\":23569,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":947994,\"inBytes\":2039799955,\"inFlow\":924514,\"lastChangeTime\":\"47 days, 21:44:13.11\",\"lastInBytes\":2039799955,\"lastOutBytes\":1833496683,\"outBytes\":1833496683,\"outFlow\":23479,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1123122,\"inBytes\":1350136390,\"inFlow\":1096997,\"lastChangeTime\":\"44 days, 6:26:23.81\",\"lastInBytes\":1350136390,\"lastOutBytes\":2456370451,\"outBytes\":2456370451,\"outFlow\":26124,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":437708,\"inBytes\":539357007,\"inFlow\":426826,\"lastChangeTime\":\"44 days, 6:26:36.03\",\"lastInBytes\":539357007,\"lastOutBytes\":2390081622,\"outBytes\":2390081622,\"outFlow\":10881,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":945151,\"inBytes\":608644327,\"inFlow\":921697,\"lastChangeTime\":\"44 days, 6:26:40.74\",\"lastInBytes\":608644327,\"lastOutBytes\":2430578767,\"outBytes\":2430578767,\"outFlow\":23453,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":437008,\"inBytes\":3797598278,\"inFlow\":426247,\"lastChangeTime\":\"44 days, 6:26:39.16\",\"lastInBytes\":3797598278,\"lastOutBytes\":1339839986,\"outBytes\":1339839986,\"outFlow\":10761,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":11877275,\"inBytes\":4030802725,\"inFlow\":393813,\"lastChangeTime\":\"44 days, 6:26:40.34\",\"lastInBytes\":4030802725,\"lastOutBytes\":242,\"outBytes\":242,\"outFlow\":11483461,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":879077,\"inBytes\":3189709629,\"inFlow\":856855,\"lastChangeTime\":\"47 days, 21:44:10.24\",\"lastInBytes\":3189709629,\"lastOutBytes\":281760640,\"outBytes\":281760640,\"outFlow\":22222,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":875156,\"inBytes\":3001927023,\"inFlow\":853445,\"lastChangeTime\":\"47 days, 21:44:03.53\",\"lastInBytes\":3001927023,\"lastOutBytes\":297690330,\"outBytes\":297690330,\"outFlow\":21710,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":876146,\"inBytes\":3639231591,\"inFlow\":853810,\"lastChangeTime\":\"47 days, 21:44:05.76\",\"lastInBytes\":3639231591,\"lastOutBytes\":3223730760,\"outBytes\":3223730760,\"outFlow\":22335,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":971756,\"inBytes\":1239813049,\"inFlow\":948880,\"lastChangeTime\":\"44 days, 6:26:28.68\",\"lastInBytes\":1239813049,\"lastOutBytes\":291334812,\"outBytes\":291334812,\"outFlow\":22875,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":269558,\"inBytes\":19050277,\"inFlow\":262781,\"lastChangeTime\":\"44 days, 6:26:53.03\",\"lastInBytes\":19050277,\"lastOutBytes\":2303789381,\"outBytes\":2303789381,\"outFlow\":6776,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":124442,\"inFlow\":0,\"lastChangeTime\":\"166 days, 23:41:49.04\",\"lastInBytes\":124442,\"lastOutBytes\":1075147,\"outBytes\":1075147,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":361,\"inBytes\":403745769,\"inFlow\":140,\"lastChangeTime\":\"40 days, 1:04:02.21\",\"lastInBytes\":403745769,\"lastOutBytes\":385092248,\"outBytes\":385092248,\"outFlow\":220,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9660908,\"inBytes\":2892677751,\"inFlow\":246525,\"lastChangeTime\":\"44 days, 6:25:29.44\",\"lastInBytes\":2892677751,\"lastOutBytes\":2140928232,\"outBytes\":2140928232,\"outFlow\":9414383,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.674102000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351168", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1828562\",\"inUnknownProtos\":\"1067971559\",\"index\":\"635\",\"lastChange\":\"0:05:02.56\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:6a:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2648103463\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"371861490\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.139\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":873565,\"inBytes\":3627590656,\"inFlow\":852025,\"lastChangeTime\":\"47 days, 21:44:14.07\",\"lastInBytes\":3627590656,\"lastOutBytes\":2673365183,\"outBytes\":2673365183,\"outFlow\":21539,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1022385,\"inBytes\":3988768979,\"inFlow\":998460,\"lastChangeTime\":\"44 days, 6:23:45.50\",\"lastInBytes\":3988768979,\"lastOutBytes\":238216066,\"outBytes\":238216066,\"outFlow\":23925,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":949870,\"inBytes\":3337107079,\"inFlow\":926589,\"lastChangeTime\":\"44 days, 6:24:02.43\",\"lastInBytes\":3337107079,\"lastOutBytes\":745973381,\"outBytes\":745973381,\"outFlow\":23281,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":437427,\"inBytes\":591144405,\"inFlow\":426602,\"lastChangeTime\":\"44 days, 6:24:01.49\",\"lastInBytes\":591144405,\"lastOutBytes\":822053462,\"outBytes\":822053462,\"outFlow\":10825,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":950187,\"inBytes\":3090484144,\"inFlow\":926855,\"lastChangeTime\":\"44 days, 6:24:03.66\",\"lastInBytes\":3090484144,\"lastOutBytes\":2075799188,\"outBytes\":2075799188,\"outFlow\":23331,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":949891,\"inBytes\":3227087049,\"inFlow\":926530,\"lastChangeTime\":\"44 days, 6:24:02.50\",\"lastInBytes\":3227087049,\"lastOutBytes\":1067971559,\"outBytes\":1067971559,\"outFlow\":23360,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":948611,\"inBytes\":3804468601,\"inFlow\":924897,\"lastChangeTime\":\"47 days, 21:44:11.53\",\"lastInBytes\":3804468601,\"lastOutBytes\":2176060480,\"outBytes\":2176060480,\"outFlow\":23713,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":955714,\"inBytes\":3267752736,\"inFlow\":931642,\"lastChangeTime\":\"47 days, 21:44:25.49\",\"lastInBytes\":3267752736,\"lastOutBytes\":1893264819,\"outBytes\":1893264819,\"outFlow\":24072,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1034375,\"inBytes\":895118025,\"inFlow\":1010105,\"lastChangeTime\":\"44 days, 6:23:50.57\",\"lastInBytes\":895118025,\"lastOutBytes\":844911196,\"outBytes\":844911196,\"outFlow\":24269,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":875012,\"inBytes\":2295661274,\"inFlow\":853526,\"lastChangeTime\":\"47 days, 21:44:13.57\",\"lastInBytes\":2295661274,\"lastOutBytes\":4134120931,\"outBytes\":4134120931,\"outFlow\":21486,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":269557,\"inBytes\":647057048,\"inFlow\":262815,\"lastChangeTime\":\"44 days, 6:24:15.48\",\"lastInBytes\":647057048,\"lastOutBytes\":596570250,\"outBytes\":596570250,\"outFlow\":6741,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":269953,\"inBytes\":729877254,\"inFlow\":262874,\"lastChangeTime\":\"44 days, 6:24:13.83\",\"lastInBytes\":729877254,\"lastOutBytes\":3817028160,\"outBytes\":3817028160,\"outFlow\":7079,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1560180390,\"inFlow\":0,\"lastChangeTime\":\"40 days, 0:59:20.07\",\"lastInBytes\":1560180390,\"lastOutBytes\":864963439,\"outBytes\":864963439,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":361,\"inBytes\":403762005,\"inFlow\":140,\"lastChangeTime\":\"40 days, 1:01:08.67\",\"lastInBytes\":403762005,\"lastOutBytes\":383868327,\"outBytes\":383868327,\"outFlow\":220,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:40.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9161554,\"inBytes\":3059703702,\"inFlow\":232872,\"lastChangeTime\":\"468 days, 23:59:46.10\",\"lastInBytes\":3059703702,\"lastOutBytes\":2323349157,\"outBytes\":2323349157,\"outFlow\":8928681,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.673074000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351169", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1823666\",\"inUnknownProtos\":\"0\",\"index\":\"635\",\"lastChange\":\"0:01:28.89\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:af:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":437556,\"inBytes\":38830413,\"inFlow\":426689,\"lastChangeTime\":\"43 days, 11:56:14.53\",\"lastInBytes\":38830413,\"lastOutBytes\":1026262622,\"outBytes\":1026262622,\"outFlow\":10866,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":437491,\"inBytes\":2727352738,\"inFlow\":426572,\"lastChangeTime\":\"43 days, 11:56:11.28\",\"lastInBytes\":2727352738,\"lastOutBytes\":3789130839,\"outBytes\":3789130839,\"outFlow\":10918,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":948235,\"inBytes\":894205304,\"inFlow\":924662,\"lastChangeTime\":\"47 days, 21:44:16.24\",\"lastInBytes\":894205304,\"lastOutBytes\":988812721,\"outBytes\":988812721,\"outFlow\":23572,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":26022161,\"inBytes\":4175084829,\"inFlow\":853360,\"lastChangeTime\":\"47 days, 21:44:20.38\",\"lastInBytes\":4175084829,\"lastOutBytes\":202,\"outBytes\":202,\"outFlow\":25168801,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":269328,\"inBytes\":194770388,\"inFlow\":262895,\"lastChangeTime\":\"293 days, 3:29:01.15\",\"lastInBytes\":194770388,\"lastOutBytes\":662355612,\"outBytes\":662355612,\"outFlow\":6432,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.96\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2839089,\"inBytes\":2599659920,\"inFlow\":73271,\"lastChangeTime\":\"341 days, 14:43:24.14\",\"lastInBytes\":2599659920,\"lastOutBytes\":1147751614,\"outBytes\":1147751614,\"outFlow\":2765817,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.654261000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351170", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"198663\",\"inUnknownProtos\":\"2781831428\",\"index\":\"635\",\"lastChange\":\"372 days, 23:49:18.03\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:c0:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1127624003\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"362064877\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":403798,\"inBytes\":3391730776,\"inFlow\":393913,\"lastChangeTime\":\"161 days, 23:16:24.07\",\"lastInBytes\":3391730776,\"lastOutBytes\":1748111961,\"outBytes\":1748111961,\"outFlow\":9884,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":432956,\"inBytes\":625390629,\"inFlow\":424455,\"lastChangeTime\":\"265 days, 16:43:18.75\",\"lastInBytes\":625390629,\"lastOutBytes\":2385053942,\"outBytes\":2385053942,\"outFlow\":8500,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":876192,\"inBytes\":2989301675,\"inFlow\":854665,\"lastChangeTime\":\"47 days, 21:44:12.82\",\"lastInBytes\":2989301675,\"lastOutBytes\":4011299843,\"outBytes\":4011299843,\"outFlow\":21526,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":426869,\"inBytes\":3979086759,\"inFlow\":418312,\"lastChangeTime\":\"265 days, 16:43:35.59\",\"lastInBytes\":3979086759,\"lastOutBytes\":1272676855,\"outBytes\":1272676855,\"outFlow\":8557,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":403511,\"inBytes\":1421204021,\"inFlow\":393627,\"lastChangeTime\":\"161 days, 23:16:39.10\",\"lastInBytes\":1421204021,\"lastOutBytes\":1333802757,\"outBytes\":1333802757,\"outFlow\":9884,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":402745,\"inBytes\":3680492226,\"inFlow\":392926,\"lastChangeTime\":\"476 days, 20:08:57.95\",\"lastInBytes\":3680492226,\"lastOutBytes\":2781831428,\"outBytes\":2781831428,\"outFlow\":9819,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":438872,\"inBytes\":4009028008,\"inFlow\":428053,\"lastChangeTime\":\"47 days, 21:44:08.88\",\"lastInBytes\":4009028008,\"lastOutBytes\":976700446,\"outBytes\":976700446,\"outFlow\":10818,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":437781,\"inBytes\":3801163592,\"inFlow\":427007,\"lastChangeTime\":\"47 days, 21:44:15.61\",\"lastInBytes\":3801163592,\"lastOutBytes\":3417916005,\"outBytes\":3417916005,\"outFlow\":10773,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":403921,\"inBytes\":3420578133,\"inFlow\":394020,\"lastChangeTime\":\"47 days, 21:44:03.82\",\"lastInBytes\":3420578133,\"lastOutBytes\":542536042,\"outBytes\":542536042,\"outFlow\":9901,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":65334,\"inFlow\":0,\"lastChangeTime\":\"166 days, 22:36:15.22\",\"lastInBytes\":65334,\"lastOutBytes\":174570,\"outBytes\":174570,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":18571,\"inFlow\":0,\"lastChangeTime\":\"423 days, 6:50:42.97\",\"lastInBytes\":18571,\"lastOutBytes\":6354088,\"outBytes\":6354088,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":407569317,\"inFlow\":1,\"lastChangeTime\":\"38 days, 5:49:11.18\",\"lastInBytes\":407569317,\"lastOutBytes\":2167270433,\"outBytes\":2167270433,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4522594,\"inBytes\":1419574985,\"inFlow\":109781,\"lastChangeTime\":\"372 days, 23:49:18.02\",\"lastInBytes\":1419574985,\"lastOutBytes\":631809623,\"outBytes\":631809623,\"outFlow\":4412813,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.659762000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351171", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:08", + "echoMap": {}, + "deviceId": "1030040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"53\",\"0\",\"0\",\"200\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1827613\",\"inUnknownProtos\":\"660413043\",\"index\":\"635\",\"lastChange\":\"0:05:02.08\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:b6:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4116748890\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"7\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:07\",\"info\":{\"portInfoList\":[{\"flow\":442758,\"inBytes\":3953605298,\"inFlow\":433703,\"lastChangeTime\":\"461 days, 23:41:17.37\",\"lastInBytes\":3953605298,\"lastOutBytes\":2142395948,\"outBytes\":2142395948,\"outFlow\":9055,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":403617,\"inBytes\":1978628382,\"inFlow\":393601,\"lastChangeTime\":\"47 days, 21:43:25.59\",\"lastInBytes\":1978628382,\"lastOutBytes\":3898849022,\"outBytes\":3898849022,\"outFlow\":10015,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":403677,\"inBytes\":3237075729,\"inFlow\":393829,\"lastChangeTime\":\"47 days, 21:43:34.31\",\"lastInBytes\":3237075729,\"lastOutBytes\":2087538825,\"outBytes\":2087538825,\"outFlow\":9847,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":405187,\"inBytes\":3359120052,\"inFlow\":395184,\"lastChangeTime\":\"47 days, 21:43:30.12\",\"lastInBytes\":3359120052,\"lastOutBytes\":1583406232,\"outBytes\":1583406232,\"outFlow\":10003,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":404235,\"inBytes\":2316464346,\"inFlow\":394240,\"lastChangeTime\":\"47 days, 21:43:36.34\",\"lastInBytes\":2316464346,\"lastOutBytes\":2045442284,\"outBytes\":2045442284,\"outFlow\":9994,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":876553,\"inBytes\":1926514418,\"inFlow\":855090,\"lastChangeTime\":\"124 days, 3:55:52.56\",\"lastInBytes\":1926514418,\"lastOutBytes\":660413043,\"outBytes\":660413043,\"outFlow\":21462,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":536150,\"inBytes\":1390234756,\"inFlow\":523455,\"lastChangeTime\":\"461 days, 23:41:06.90\",\"lastInBytes\":1390234756,\"lastOutBytes\":1019193680,\"outBytes\":1019193680,\"outFlow\":12694,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":850530,\"inFlow\":0,\"lastChangeTime\":\"166 days, 23:05:09.75\",\"lastInBytes\":850530,\"lastOutBytes\":41123536,\"outBytes\":41123536,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":403779054,\"inFlow\":1,\"lastChangeTime\":\"162 days, 1:26:38.23\",\"lastInBytes\":403779054,\"lastOutBytes\":386433021,\"outBytes\":386433021,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3484155,\"inBytes\":1410106025,\"inFlow\":86215,\"lastChangeTime\":\"341 days, 14:40:35.57\",\"lastInBytes\":1410106025,\"lastOutBytes\":3701241533,\"outBytes\":3701241533,\"outFlow\":3397939,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.645442000\"}}", + "lastDiagTime": "2026-02-02 14:39:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351172", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:08", + "echoMap": {}, + "deviceId": "1030040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"199150\",\"inUnknownProtos\":\"10292319\",\"index\":\"635\",\"lastChange\":\"0:05:15.66\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:b1:49\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"69362\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"324135028\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:07\",\"info\":{\"portInfoList\":[{\"flow\":404234,\"inBytes\":2099893924,\"inFlow\":394269,\"lastChangeTime\":\"43 days, 11:56:20.05\",\"lastInBytes\":2099893924,\"lastOutBytes\":999363454,\"outBytes\":999363454,\"outFlow\":9965,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":439798,\"inBytes\":3953580587,\"inFlow\":428669,\"lastChangeTime\":\"265 days, 16:43:27.97\",\"lastInBytes\":3953580587,\"lastOutBytes\":2820876700,\"outBytes\":2820876700,\"outFlow\":11128,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":807173,\"inBytes\":3532158346,\"inFlow\":787682,\"lastChangeTime\":\"107 days, 9:53:15.82\",\"lastInBytes\":3532158346,\"lastOutBytes\":2356081055,\"outBytes\":2356081055,\"outFlow\":19490,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":879632,\"inBytes\":2034562211,\"inFlow\":857874,\"lastChangeTime\":\"43 days, 11:56:21.26\",\"lastInBytes\":2034562211,\"lastOutBytes\":4094258797,\"outBytes\":4094258797,\"outFlow\":21757,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":403629,\"inBytes\":3531264617,\"inFlow\":393748,\"lastChangeTime\":\"43 days, 11:56:17.09\",\"lastInBytes\":3531264617,\"lastOutBytes\":1730672427,\"outBytes\":1730672427,\"outFlow\":9881,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":26664,\"inFlow\":0,\"lastChangeTime\":\"423 days, 7:07:41.70\",\"lastInBytes\":26664,\"lastOutBytes\":10292319,\"outBytes\":10292319,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":874734,\"inBytes\":3566703090,\"inFlow\":853198,\"lastChangeTime\":\"162 days, 0:49:53.67\",\"lastInBytes\":3566703090,\"lastOutBytes\":2927770863,\"outBytes\":2927770863,\"outFlow\":21536,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":269818,\"inBytes\":1327824599,\"inFlow\":263056,\"lastChangeTime\":\"45 days, 6:12:22.19\",\"lastInBytes\":1327824599,\"lastOutBytes\":1413693255,\"outBytes\":1413693255,\"outFlow\":6762,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":403810,\"inBytes\":1424787205,\"inFlow\":393977,\"lastChangeTime\":\"43 days, 11:56:23.80\",\"lastInBytes\":1424787205,\"lastOutBytes\":1797508888,\"outBytes\":1797508888,\"outFlow\":9832,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":438794,\"inBytes\":749049777,\"inFlow\":429700,\"lastChangeTime\":\"265 days, 16:43:33.13\",\"lastInBytes\":749049777,\"lastOutBytes\":791298575,\"outBytes\":791298575,\"outFlow\":9094,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":413909,\"inBytes\":1082338252,\"inFlow\":405411,\"lastChangeTime\":\"265 days, 16:43:16.92\",\"lastInBytes\":1082338252,\"lastOutBytes\":1775929148,\"outBytes\":1775929148,\"outFlow\":8498,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":272451,\"inBytes\":3465522819,\"inFlow\":265580,\"lastChangeTime\":\"233 days, 13:12:34.27\",\"lastInBytes\":3465522819,\"lastOutBytes\":4064036496,\"outBytes\":4064036496,\"outFlow\":6871,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3065140,\"inFlow\":0,\"lastChangeTime\":\"17 days, 4:45:54.42\",\"lastInBytes\":3065140,\"lastOutBytes\":119727700,\"outBytes\":119727700,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":403794499,\"inFlow\":1,\"lastChangeTime\":\"166 days, 22:59:15.46\",\"lastInBytes\":403794499,\"lastOutBytes\":385045701,\"outBytes\":385045701,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5626697,\"inBytes\":1228743133,\"inFlow\":139450,\"lastChangeTime\":\"423 days, 7:07:11.66\",\"lastInBytes\":1228743133,\"lastOutBytes\":1158082292,\"outBytes\":1158082292,\"outFlow\":5487246,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.818062000\"}}", + "lastDiagTime": "2026-02-02 14:39:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351173", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1518976\",\"inUnknownProtos\":\"3819716172\",\"index\":\"635\",\"lastChange\":\"0:01:16.83\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:b3:89\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2661804756\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"144860903\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":3338954,\"inBytes\":3724967993,\"inFlow\":395086,\"lastChangeTime\":\"0:01:18.68\",\"lastInBytes\":3724967993,\"lastOutBytes\":112,\"outBytes\":112,\"outFlow\":2943867,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":404315,\"inBytes\":1232249106,\"inFlow\":394358,\"lastChangeTime\":\"0:01:18.67\",\"lastInBytes\":1232249106,\"lastOutBytes\":2819839522,\"outBytes\":2819839522,\"outFlow\":9957,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":400977,\"inBytes\":1018482608,\"inFlow\":391124,\"lastChangeTime\":\"0:01:18.69\",\"lastInBytes\":1018482608,\"lastOutBytes\":459912001,\"outBytes\":459912001,\"outFlow\":9852,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":987641,\"inBytes\":3572952514,\"inFlow\":964177,\"lastChangeTime\":\"309 days, 20:55:32.66\",\"lastInBytes\":3572952514,\"lastOutBytes\":545915318,\"outBytes\":545915318,\"outFlow\":23464,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":484876,\"inBytes\":212355350,\"inFlow\":474079,\"lastChangeTime\":\"98 days, 17:29:59.04\",\"lastInBytes\":212355350,\"lastOutBytes\":4181542134,\"outBytes\":4181542134,\"outFlow\":10796,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":488834,\"inBytes\":1186403573,\"inFlow\":478108,\"lastChangeTime\":\"98 days, 17:30:21.36\",\"lastInBytes\":1186403573,\"lastOutBytes\":3819623332,\"outBytes\":3819623332,\"outFlow\":10726,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1014695,\"inBytes\":1079573803,\"inFlow\":990717,\"lastChangeTime\":\"309 days, 20:55:29.51\",\"lastInBytes\":1079573803,\"lastOutBytes\":1713233840,\"outBytes\":1713233840,\"outFlow\":23978,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":280631,\"inBytes\":2710254792,\"inFlow\":272958,\"lastChangeTime\":\"368 days, 9:19:16.62\",\"lastInBytes\":2710254792,\"lastOutBytes\":4226458259,\"outBytes\":4226458259,\"outFlow\":7673,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":436314,\"inBytes\":2155614665,\"inFlow\":426774,\"lastChangeTime\":\"98 days, 17:30:11.37\",\"lastInBytes\":2155614665,\"lastOutBytes\":2975486115,\"outBytes\":2975486115,\"outFlow\":9540,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":435607,\"inBytes\":2717905494,\"inFlow\":426071,\"lastChangeTime\":\"98 days, 17:30:03.82\",\"lastInBytes\":2717905494,\"lastOutBytes\":3178152159,\"outBytes\":3178152159,\"outFlow\":9535,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415259,\"inBytes\":2526093619,\"inFlow\":406174,\"lastChangeTime\":\"98 days, 17:30:16.85\",\"lastInBytes\":2526093619,\"lastOutBytes\":196201988,\"outBytes\":196201988,\"outFlow\":9085,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":402572,\"inBytes\":213842141,\"inFlow\":393962,\"lastChangeTime\":\"98 days, 17:29:59.07\",\"lastInBytes\":213842141,\"lastOutBytes\":1951307214,\"outBytes\":1951307214,\"outFlow\":8610,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":456207,\"inBytes\":218439733,\"inFlow\":445996,\"lastChangeTime\":\"98 days, 17:30:16.14\",\"lastInBytes\":218439733,\"lastOutBytes\":411977988,\"outBytes\":411977988,\"outFlow\":10211,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3711937,\"inFlow\":0,\"lastChangeTime\":\"256 days, 8:05:31.88\",\"lastInBytes\":3711937,\"lastOutBytes\":196599203,\"outBytes\":196599203,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":95,\"inBytes\":403832386,\"inFlow\":2,\"lastChangeTime\":\"256 days, 8:05:36.21\",\"lastInBytes\":403832386,\"lastOutBytes\":3768053170,\"outBytes\":3768053170,\"outFlow\":93,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6530146,\"inBytes\":3860311578,\"inFlow\":156268,\"lastChangeTime\":\"256 days, 7:59:12.18\",\"lastInBytes\":3860311578,\"lastOutBytes\":4137918017,\"outBytes\":4137918017,\"outFlow\":6373877,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.692020000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351174", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"8\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"1473\",\"inErrors\":\"0\",\"inNUcastPkts\":\"8\",\"inOctets\":\"0\",\"inUcastPkts\":\"199559\",\"inUnknownProtos\":\"3551241884\",\"index\":\"635\",\"lastChange\":\"0:05:15.66\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bc:37:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2416932931\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"363744941\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.133\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":1021559,\"inBytes\":1639148730,\"inFlow\":997752,\"lastChangeTime\":\"476 days, 20:09:22.77\",\"lastInBytes\":1639148730,\"lastOutBytes\":3726924333,\"outBytes\":3726924333,\"outFlow\":23807,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":959253,\"inBytes\":1004669442,\"inFlow\":934797,\"lastChangeTime\":\"44 days, 6:21:48.26\",\"lastInBytes\":1004669442,\"lastOutBytes\":3019569670,\"outBytes\":3019569670,\"outFlow\":24455,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":951072,\"inBytes\":1306900347,\"inFlow\":926888,\"lastChangeTime\":\"44 days, 6:21:40.58\",\"lastInBytes\":1306900347,\"lastOutBytes\":4187350250,\"outBytes\":4187350250,\"outFlow\":24184,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":402505,\"inBytes\":3635773175,\"inFlow\":392697,\"lastChangeTime\":\"44 days, 6:21:39.59\",\"lastInBytes\":3635773175,\"lastOutBytes\":3172494411,\"outBytes\":3172494411,\"outFlow\":9807,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":875116,\"inBytes\":694147495,\"inFlow\":853510,\"lastChangeTime\":\"44 days, 6:21:40.87\",\"lastInBytes\":694147495,\"lastOutBytes\":2260157641,\"outBytes\":2260157641,\"outFlow\":21606,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":412688,\"inBytes\":1498148676,\"inFlow\":403669,\"lastChangeTime\":\"44 days, 6:21:30.71\",\"lastInBytes\":1498148676,\"lastOutBytes\":3551241884,\"outBytes\":3551241884,\"outFlow\":9018,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":867487,\"inBytes\":1817405636,\"inFlow\":850907,\"lastChangeTime\":\"44 days, 6:21:37.67\",\"lastInBytes\":1817405636,\"lastOutBytes\":1781434703,\"outBytes\":1781434703,\"outFlow\":16580,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404522,\"inBytes\":4027967863,\"inFlow\":394583,\"lastChangeTime\":\"44 days, 6:21:37.81\",\"lastInBytes\":4027967863,\"lastOutBytes\":296052595,\"outBytes\":296052595,\"outFlow\":9939,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":875293,\"inBytes\":1000672122,\"inFlow\":853532,\"lastChangeTime\":\"44 days, 6:21:40.92\",\"lastInBytes\":1000672122,\"lastOutBytes\":447997560,\"outBytes\":447997560,\"outFlow\":21761,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":269451,\"inBytes\":732731719,\"inFlow\":262672,\"lastChangeTime\":\"45 days, 6:31:34.43\",\"lastInBytes\":732731719,\"lastOutBytes\":2607782335,\"outBytes\":2607782335,\"outFlow\":6779,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":405107,\"inBytes\":151632219,\"inFlow\":395081,\"lastChangeTime\":\"44 days, 6:21:39.49\",\"lastInBytes\":151632219,\"lastOutBytes\":1370711857,\"outBytes\":1370711857,\"outFlow\":10026,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":403850,\"inBytes\":136303382,\"inFlow\":393977,\"lastChangeTime\":\"44 days, 6:21:37.14\",\"lastInBytes\":136303382,\"lastOutBytes\":1338077550,\"outBytes\":1338077550,\"outFlow\":9873,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":18038929,\"inFlow\":0,\"lastChangeTime\":\"45 days, 6:53:01.32\",\"lastInBytes\":18038929,\"lastOutBytes\":595133019,\"outBytes\":595133019,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":403747380,\"inFlow\":1,\"lastChangeTime\":\"45 days, 6:34:31.03\",\"lastInBytes\":403747380,\"lastOutBytes\":383999373,\"outBytes\":383999373,\"outFlow\":85,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.87\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7866518,\"inBytes\":2232935069,\"inFlow\":194898,\"lastChangeTime\":\"372 days, 22:48:00.11\",\"lastInBytes\":2232935069,\"lastOutBytes\":1923728663,\"outBytes\":1923728663,\"outFlow\":7671619,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.661591000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351175", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:09", + "echoMap": {}, + "deviceId": "1030040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"198587\",\"inUnknownProtos\":\"278438731\",\"index\":\"635\",\"lastChange\":\"0:05:15.65\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:bc:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"713240231\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"362091732\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.132\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:08\",\"info\":{\"portInfoList\":[{\"flow\":1012170,\"inBytes\":1227482242,\"inFlow\":988329,\"lastChangeTime\":\"476 days, 20:08:28.01\",\"lastInBytes\":1227482242,\"lastOutBytes\":3926196015,\"outBytes\":3926196015,\"outFlow\":23841,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":401737,\"inBytes\":1579391250,\"inFlow\":393417,\"lastChangeTime\":\"265 days, 16:43:07.07\",\"lastInBytes\":1579391250,\"lastOutBytes\":4269487513,\"outBytes\":4269487513,\"outFlow\":8319,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":442389,\"inBytes\":872950064,\"inFlow\":433316,\"lastChangeTime\":\"265 days, 16:43:14.69\",\"lastInBytes\":872950064,\"lastOutBytes\":1487506070,\"outBytes\":1487506070,\"outFlow\":9073,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":875985,\"inBytes\":3357956072,\"inFlow\":854427,\"lastChangeTime\":\"47 days, 21:43:39.62\",\"lastInBytes\":3357956072,\"lastOutBytes\":3033885527,\"outBytes\":3033885527,\"outFlow\":21557,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":403411,\"inBytes\":1635216029,\"inFlow\":393507,\"lastChangeTime\":\"103 days, 23:54:36.60\",\"lastInBytes\":1635216029,\"lastOutBytes\":3821999018,\"outBytes\":3821999018,\"outFlow\":9903,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":403076,\"inBytes\":3048941825,\"inFlow\":393206,\"lastChangeTime\":\"47 days, 21:43:33.48\",\"lastInBytes\":3048941825,\"lastOutBytes\":278438731,\"outBytes\":278438731,\"outFlow\":9869,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":401406,\"inBytes\":1945625032,\"inFlow\":391702,\"lastChangeTime\":\"476 days, 20:08:23.48\",\"lastInBytes\":1945625032,\"lastOutBytes\":962538702,\"outBytes\":962538702,\"outFlow\":9704,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":403959,\"inBytes\":1976442760,\"inFlow\":393930,\"lastChangeTime\":\"47 days, 21:43:41.41\",\"lastInBytes\":1976442760,\"lastOutBytes\":3763974334,\"outBytes\":3763974334,\"outFlow\":10029,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":464658,\"inBytes\":2293835470,\"inFlow\":453103,\"lastChangeTime\":\"265 days, 16:43:09.84\",\"lastInBytes\":2293835470,\"lastOutBytes\":3010073500,\"outBytes\":3010073500,\"outFlow\":11555,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":420214,\"inBytes\":2880305549,\"inFlow\":411471,\"lastChangeTime\":\"265 days, 16:43:03.10\",\"lastInBytes\":2880305549,\"lastOutBytes\":1566138004,\"outBytes\":1566138004,\"outFlow\":8743,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":26119,\"inFlow\":0,\"lastChangeTime\":\"166 days, 22:30:30.78\",\"lastInBytes\":26119,\"lastOutBytes\":299642,\"outBytes\":299642,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2001344,\"inFlow\":0,\"lastChangeTime\":\"372 days, 22:17:53.77\",\"lastInBytes\":2001344,\"lastOutBytes\":77538905,\"outBytes\":77538905,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":403925750,\"inFlow\":1,\"lastChangeTime\":\"372 days, 22:17:56.36\",\"lastInBytes\":403925750,\"lastOutBytes\":388963811,\"outBytes\":388963811,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5232100,\"inBytes\":2318282936,\"inFlow\":126680,\"lastChangeTime\":\"341 days, 13:50:20.87\",\"lastInBytes\":2318282936,\"lastOutBytes\":3839305768,\"outBytes\":3839305768,\"outFlow\":5105419,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.660228000\"}}", + "lastDiagTime": "2026-02-02 14:39:09", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389070701351176", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:08", + "echoMap": {}, + "deviceId": "1030040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.188.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface188\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"1518979\",\"inUnknownProtos\":\"2443366450\",\"index\":\"635\",\"lastChange\":\"0:01:19.73\",\"mTU\":\"1500\",\"macAddress\":\"80:61:6c:05:b1:c9\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"824242783\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"204259284\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.188.131\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:07\",\"info\":{\"portInfoList\":[{\"flow\":269716,\"inBytes\":1889633096,\"inFlow\":262886,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":1889633096,\"lastOutBytes\":2496268843,\"outBytes\":2496268843,\"outFlow\":6830,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":808421,\"inBytes\":1804298964,\"inFlow\":788784,\"lastChangeTime\":\"0:01:22.04\",\"lastInBytes\":1804298964,\"lastOutBytes\":668153857,\"outBytes\":668153857,\"outFlow\":19637,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":808682,\"inBytes\":1942064577,\"inFlow\":788315,\"lastChangeTime\":\"0:01:21.61\",\"lastInBytes\":1942064577,\"lastOutBytes\":2050947325,\"outBytes\":2050947325,\"outFlow\":20367,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":269529,\"inBytes\":1319208066,\"inFlow\":262979,\"lastChangeTime\":\"0:01:22.05\",\"lastInBytes\":1319208066,\"lastOutBytes\":2190043030,\"outBytes\":2190043030,\"outFlow\":6550,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":269527,\"inBytes\":981152520,\"inFlow\":262868,\"lastChangeTime\":\"0:01:22.04\",\"lastInBytes\":981152520,\"lastOutBytes\":1675582817,\"outBytes\":1675582817,\"outFlow\":6659,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":292039,\"inBytes\":847551714,\"inFlow\":284685,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":847551714,\"lastOutBytes\":2443366450,\"outBytes\":2443366450,\"outFlow\":7353,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":437549,\"inBytes\":1378072109,\"inFlow\":426723,\"lastChangeTime\":\"0:01:21.61\",\"lastInBytes\":1378072109,\"lastOutBytes\":1231877259,\"outBytes\":1231877259,\"outFlow\":10825,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":437360,\"inBytes\":456696875,\"inFlow\":426642,\"lastChangeTime\":\"0:01:22.03\",\"lastInBytes\":456696875,\"lastOutBytes\":1744309662,\"outBytes\":1744309662,\"outFlow\":10718,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":270058,\"inBytes\":2839965418,\"inFlow\":263048,\"lastChangeTime\":\"0:01:21.62\",\"lastInBytes\":2839965418,\"lastOutBytes\":1661642011,\"outBytes\":1661642011,\"outFlow\":7009,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":269918,\"inBytes\":3463976714,\"inFlow\":262840,\"lastChangeTime\":\"377 days, 4:51:41.74\",\"lastInBytes\":3463976714,\"lastOutBytes\":4033941800,\"outBytes\":4033941800,\"outFlow\":7077,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":269865,\"inBytes\":808559396,\"inFlow\":262976,\"lastChangeTime\":\"66 days, 13:50:38.14\",\"lastInBytes\":808559396,\"lastOutBytes\":177506086,\"outBytes\":177506086,\"outFlow\":6889,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":269595,\"inBytes\":4219309993,\"inFlow\":262989,\"lastChangeTime\":\"66 days, 13:50:37.40\",\"lastInBytes\":4219309993,\"lastOutBytes\":3289780738,\"outBytes\":3289780738,\"outFlow\":6606,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":280422,\"inBytes\":4053920708,\"inFlow\":272861,\"lastChangeTime\":\"256 days, 8:02:41.07\",\"lastInBytes\":4053920708,\"lastOutBytes\":231400058,\"outBytes\":231400058,\"outFlow\":7560,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2732619,\"inFlow\":0,\"lastChangeTime\":\"247 days, 13:17:38.82\",\"lastInBytes\":2732619,\"lastOutBytes\":137733092,\"outBytes\":137733092,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":86,\"inBytes\":404061782,\"inFlow\":1,\"lastChangeTime\":\"374 days, 9:00:14.24\",\"lastInBytes\":404061782,\"lastOutBytes\":3868256118,\"outBytes\":3868256118,\"outFlow\":84,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.92\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5290660,\"inBytes\":2157491198,\"inFlow\":136234,\"lastChangeTime\":\"174 days, 14:22:16.81\",\"lastInBytes\":2157491198,\"lastOutBytes\":83846119,\"outBytes\":83846119,\"outFlow\":5154426,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:39:04.815698000\"}}", + "lastDiagTime": "2026-02-02 14:39:08", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": "{\"downstream\":{}}", + "snmpEnabled": true + }, + { + "id": "706389070701351177", + "createdBy": "0", + "createdTime": "2025-12-02 09:40:55", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "deviceId": "1030040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.187.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif187\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:06:10.12\",\"mTU\":\"1500\",\"macAddress\":\"58:ae:a8:80:07:08\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"8\",\"temperature\":\"36\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.187.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"4558615\",\"600878494\",\"482425\",\"482281\",\"4390458\",\"0\",\"482226\",\"3561237\",\"302181\",\"327808\",\"461448\",\"0\",\"0\",\"482005\",\"818170\",\"487857\",\"0\",\"481760\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"517431\",\"0\",\"0\",\"0\",\"531764\",\"525254\",\"525052\",\"524625\",\"526487\",\"523321\",\"521584\",\"518427\",\"522055\",\"521530\",\"0\",\"515478\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:29\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.16\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":43934,\"inBytes\":2281222461,\"inFlow\":27079,\"lastChangeTime\":\"257 days, 9:59:52.89\",\"lastInBytes\":2281222461,\"lastOutBytes\":3707235309,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3707235309,\"outFlow\":16855,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":37118787,\"inBytes\":9321682,\"inFlow\":13295493,\"lastChangeTime\":\"257 days, 9:59:52.93\",\"lastInBytes\":9321682,\"lastOutBytes\":4046063734,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":4046063734,\"outFlow\":23823293,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":89688,\"inBytes\":4197238984,\"inFlow\":29685,\"lastChangeTime\":\"187 days, 10:43:45.31\",\"lastInBytes\":4197238984,\"lastOutBytes\":1015494394,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1015494394,\"outFlow\":60003,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":459,\"inBytes\":404513408,\"inFlow\":15,\"lastChangeTime\":\"187 days, 10:57:21.70\",\"lastInBytes\":404513408,\"lastOutBytes\":1482458340,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1482458340,\"outFlow\":444,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2733943500,\"inFlow\":0,\"lastChangeTime\":\"257 days, 9:56:01.38\",\"lastInBytes\":2733943500,\"lastOutBytes\":3511087239,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3511087239,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2480427,\"inBytes\":4191401635,\"inFlow\":53689,\"lastChangeTime\":\"452 days, 22:26:40.80\",\"lastInBytes\":4191401635,\"lastOutBytes\":784528237,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":784528237,\"outFlow\":2426737,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":23651660,\"inBytes\":4160596497,\"inFlow\":2314062,\"lastChangeTime\":\"187 days, 11:00:31.22\",\"lastInBytes\":4160596497,\"lastOutBytes\":3835188299,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3835188299,\"outFlow\":21337597,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2361278,\"inBytes\":2272475578,\"inFlow\":2083625,\"lastChangeTime\":\"187 days, 11:01:00.76\",\"lastInBytes\":2272475578,\"lastOutBytes\":2592369005,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2592369005,\"outFlow\":277652,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6990698,\"inBytes\":239320222,\"inFlow\":1801924,\"lastChangeTime\":\"187 days, 11:08:24.93\",\"lastInBytes\":239320222,\"lastOutBytes\":1928664627,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1928664627,\"outFlow\":5188773,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18492215,\"inBytes\":1099109565,\"inFlow\":2421242,\"lastChangeTime\":\"187 days, 11:03:49.29\",\"lastInBytes\":1099109565,\"lastOutBytes\":360253102,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":360253102,\"outFlow\":16070972,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":976,\"inBytes\":3192962123,\"inFlow\":226,\"lastChangeTime\":\"292 days, 9:53:13.14\",\"lastInBytes\":3192962123,\"lastOutBytes\":2164499586,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":2164499586,\"outFlow\":750,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":687,\"inBytes\":2240143279,\"inFlow\":153,\"lastChangeTime\":\"292 days, 9:53:13.75\",\"lastInBytes\":2240143279,\"lastOutBytes\":3511954222,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3511954222,\"outFlow\":534,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":450,\"inBytes\":246128810,\"inFlow\":10,\"lastChangeTime\":\"373 days, 6:15:42.27\",\"lastInBytes\":246128810,\"lastOutBytes\":690089841,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":690089841,\"outFlow\":440,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":862,\"inBytes\":305136409,\"inFlow\":120,\"lastChangeTime\":\"354 days, 12:40:43.27\",\"lastInBytes\":305136409,\"lastOutBytes\":3162986098,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":3162986098,\"outFlow\":742,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9909532,\"inBytes\":1136589276,\"inFlow\":85756,\"lastChangeTime\":\"321 days, 14:09:30.79\",\"lastInBytes\":1136589276,\"lastOutBytes\":595808632,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":595808632,\"outFlow\":9823776,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":687,\"inBytes\":2058589622,\"inFlow\":153,\"lastChangeTime\":\"287 days, 10:22:50.58\",\"lastInBytes\":2058589622,\"lastOutBytes\":4005403698,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":4005403698,\"outFlow\":534,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":509,\"inBytes\":1163517329,\"inFlow\":58,\"lastChangeTime\":\"321 days, 14:03:38.11\",\"lastInBytes\":1163517329,\"lastOutBytes\":1763608845,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":1763608845,\"outFlow\":451,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":7404789,\"inFlow\":0,\"lastChangeTime\":\"305 days, 7:21:21.69\",\"lastInBytes\":7404789,\"lastOutBytes\":51152728,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":51152728,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":749626,\"inFlow\":0,\"lastChangeTime\":\"385 days, 21:04:25.50\",\"lastInBytes\":749626,\"lastOutBytes\":10873345,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":10873345,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":1000,\"opticalTemperature\":0,\"opticalTransmitPower\":1000,\"opticalVoltage\":0,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":33029,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":564,\"opticalVoltage\":3305,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31229,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":558,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32970,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":559,\"opticalVoltage\":3306,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":32610,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":561,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":34439,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":563,\"opticalVoltage\":3289,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12750,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":281,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37259,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":558,\"opticalVoltage\":3301,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":31559,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":594,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":513,\"inBytes\":1614144524,\"inFlow\":61,\"lastChangeTime\":\"306 days, 21:29:13.46\",\"lastInBytes\":1614144524,\"lastOutBytes\":3180603034,\"opticalBiasCurrent\":10043,\"opticalReceivePower\":212,\"opticalTemperature\":44,\"opticalTransmitPower\":254,\"opticalVoltage\":3332,\"outBytes\":3180603034,\"outFlow\":451,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13196,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":288,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":946099,\"inBytes\":605289931,\"inFlow\":3079,\"lastChangeTime\":\"215 days, 21:10:41.24\",\"lastInBytes\":605289931,\"lastOutBytes\":1964308089,\"opticalBiasCurrent\":34200,\"opticalReceivePower\":347,\"opticalTemperature\":43,\"opticalTransmitPower\":558,\"opticalVoltage\":3275,\"outBytes\":1964308089,\"outFlow\":943019,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":375964,\"inBytes\":2878391856,\"inFlow\":31601,\"lastChangeTime\":\"215 days, 21:10:51.74\",\"lastInBytes\":2878391856,\"lastOutBytes\":1147618330,\"opticalBiasCurrent\":33299,\"opticalReceivePower\":530,\"opticalTemperature\":42,\"opticalTransmitPower\":562,\"opticalVoltage\":3301,\"outBytes\":1147618330,\"outFlow\":344363,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4988810,\"inBytes\":73422486,\"inFlow\":4828566,\"lastChangeTime\":\"179 days, 11:23:16.92\",\"lastInBytes\":73422486,\"lastOutBytes\":287139136,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":206,\"opticalTemperature\":35,\"opticalTransmitPower\":244,\"opticalVoltage\":3320,\"outBytes\":287139136,\"outFlow\":160244,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5679036,\"inBytes\":1712664345,\"inFlow\":5506370,\"lastChangeTime\":\"179 days, 11:29:47.04\",\"lastInBytes\":1712664345,\"lastOutBytes\":2041350215,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":231,\"opticalTemperature\":39,\"opticalTransmitPower\":245,\"opticalVoltage\":3332,\"outBytes\":2041350215,\"outFlow\":172665,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7930690,\"inBytes\":2013654028,\"inFlow\":7685709,\"lastChangeTime\":\"210 days, 20:25:34.99\",\"lastInBytes\":2013654028,\"lastOutBytes\":3451910231,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":171,\"opticalTemperature\":38,\"opticalTransmitPower\":250,\"opticalVoltage\":3356,\"outBytes\":3451910231,\"outFlow\":244980,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6831346,\"inBytes\":1686232596,\"inFlow\":6626392,\"lastChangeTime\":\"261 days, 4:48:36.76\",\"lastInBytes\":1686232596,\"lastOutBytes\":1609772319,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":188,\"opticalTemperature\":37,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":1609772319,\"outFlow\":204954,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5727459,\"inBytes\":2612324288,\"inFlow\":5549833,\"lastChangeTime\":\"261 days, 4:43:19.53\",\"lastInBytes\":2612324288,\"lastOutBytes\":4143047990,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":201,\"opticalTemperature\":41,\"opticalTransmitPower\":242,\"opticalVoltage\":3308,\"outBytes\":4143047990,\"outFlow\":177626,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3534442,\"inBytes\":4268186277,\"inFlow\":3424760,\"lastChangeTime\":\"179 days, 12:20:12.22\",\"lastInBytes\":4268186277,\"lastOutBytes\":3129985800,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":188,\"opticalTemperature\":36,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":3129985800,\"outFlow\":109682,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4279697,\"inBytes\":3085059269,\"inFlow\":4149660,\"lastChangeTime\":\"210 days, 21:27:14.75\",\"lastInBytes\":3085059269,\"lastOutBytes\":2411213226,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":50,\"opticalTemperature\":37,\"opticalTransmitPower\":238,\"opticalVoltage\":3330,\"outBytes\":2411213226,\"outFlow\":130036,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2912036,\"inBytes\":3745525666,\"inFlow\":2818522,\"lastChangeTime\":\"179 days, 12:22:28.79\",\"lastInBytes\":3745525666,\"lastOutBytes\":3694864982,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":145,\"opticalTemperature\":39,\"opticalTransmitPower\":242,\"opticalVoltage\":3338,\"outBytes\":3694864982,\"outFlow\":93514,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9385982,\"inBytes\":920815161,\"inFlow\":9089265,\"lastChangeTime\":\"306 days, 21:34:03.09\",\"lastInBytes\":920815161,\"lastOutBytes\":2268076097,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":197,\"opticalTemperature\":40,\"opticalTransmitPower\":246,\"opticalVoltage\":3342,\"outBytes\":2268076097,\"outFlow\":296717,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10179239,\"inBytes\":2659080552,\"inFlow\":9857363,\"lastChangeTime\":\"379 days, 6:24:55.15\",\"lastInBytes\":2659080552,\"lastOutBytes\":349939026,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":180,\"opticalTemperature\":38,\"opticalTransmitPower\":239,\"opticalVoltage\":3350,\"outBytes\":349939026,\"outFlow\":321876,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414190,\"inBytes\":2452803880,\"inFlow\":400627,\"lastChangeTime\":\"306 days, 22:28:55.90\",\"lastInBytes\":2452803880,\"lastOutBytes\":1389293083,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":107,\"opticalTemperature\":37,\"opticalTransmitPower\":246,\"opticalVoltage\":3324,\"outBytes\":1389293083,\"outFlow\":13562,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":414293,\"inBytes\":387119388,\"inFlow\":400714,\"lastChangeTime\":\"306 days, 20:58:47.40\",\"lastInBytes\":387119388,\"lastOutBytes\":266749529,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":26,\"opticalTemperature\":37,\"opticalTransmitPower\":246,\"opticalVoltage\":3286,\"outBytes\":266749529,\"outFlow\":13578,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":245,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":239,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":246,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":246,\"opticalVoltage\":3350,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":240,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":241,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":244,\"opticalVoltage\":3336,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":245,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40110,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":540,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13824,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":237,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39150,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":523,\"opticalVoltage\":3348,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":0,\"opticalTemperature\":34,\"opticalTransmitPower\":245,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:37:11.161280000\"}}", + "lastDiagTime": "2026-02-02 14:37:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "603982761002295406", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:53", + "echoMap": {}, + "deviceId": "1030110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.187.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.76\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"124 days, 10:28:58.75\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10691634\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28641255\",\"inOctets\":\"2343883103\",\"inUcastPkts\":\"1758916094\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"129 days, 23:04:12.25\",\"mTU\":\"1500\",\"macAddress\":\"7c:7a:3c:04:44:4c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1304313909\",\"outQLen\":\"0\",\"outUcastPkts\":\"1545671558\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.187.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:53", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1031": { + "ndmAlarmHost": [ + { + "id": "707539301598705692", + "createdBy": null, + "createdTime": "2025-12-08 13:49:21", + "updatedBy": null, + "updatedTime": "2025-12-08 13:49:21", + "echoMap": {}, + "deviceId": null, + "name": "报警主机", + "manufacturer": "广拓", + "state": true, + "model": "10.18.189.12", + "ipAddress": "", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "117", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmCamera": [ + { + "id": "603981270648628333", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:23", + "echoMap": {}, + "deviceId": "1031060001", + "name": "[330](10)龙柏5#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031330", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628334", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:23", + "echoMap": {}, + "deviceId": "1031060002", + "name": "[334](10)龙柏5#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031334", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628335", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:24", + "echoMap": {}, + "deviceId": "1031060003", + "name": "[328](10)龙柏5#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031328", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628336", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:24", + "echoMap": {}, + "deviceId": "1031060004", + "name": "[212](10)龙柏5#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059004031212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628337", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:24", + "echoMap": {}, + "deviceId": "1031060005", + "name": "[335](10)龙柏5#口1F垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059005031335", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628338", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:25", + "echoMap": {}, + "deviceId": "1031060006", + "name": "[332](10)龙柏5#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031332", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628339", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:25", + "echoMap": {}, + "deviceId": "1031060007", + "name": "[331](10)龙柏5#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031331", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628340", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2026-02-02 14:31:29", + "echoMap": {}, + "deviceId": "1031060008", + "name": "[333](10)龙柏5#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031333", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628341", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:27", + "echoMap": {}, + "deviceId": "1031060009", + "name": "[336](10)龙柏5#口B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031336", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628342", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:27", + "echoMap": {}, + "deviceId": "1031060010", + "name": "[354](10)龙柏2#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101036005031354", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628343", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:27", + "echoMap": {}, + "deviceId": "1031060011", + "name": "[329](10)龙柏5#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101059006031329", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628344", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1031060012", + "name": "[201](10)龙柏厅1球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101035004031201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628345", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1031060013", + "name": "[609](10)龙柏环控室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103053005031609", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628346", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1031060014", + "name": "[401](10)龙柏1#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101005006031401", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628347", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1031060015", + "name": "[355](10)龙柏安检1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101085006031355", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628348", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1031060016", + "name": "[611](10)龙柏内通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001006031611", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628349", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1031060017", + "name": "[502](10)龙柏票机1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101030006031502", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628350", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1031060018", + "name": "[339](10)龙柏#1厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101045006031339", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628351", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1031060019", + "name": "[338](10)龙柏#1厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101045006031338", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628352", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1031060020", + "name": "[612](10)龙柏内通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001006031612", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628353", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1031060021", + "name": "[202](10)龙柏厅2球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101035004031202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628354", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1031060022", + "name": "[403](10)龙柏3#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031403", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628355", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1031060023", + "name": "[404](10)龙柏3#闸入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031404", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628356", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1031060024", + "name": "[405](10)龙柏3#闸入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031405", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628357", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1031060025", + "name": "[347](10)龙柏B1垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101040006031347", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628358", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1031060026", + "name": "[353](10)龙柏1#轿厢", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101036005031353", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628359", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1031060027", + "name": "[337](10)龙柏#1厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101045006031337", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628360", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:16", + "echoMap": {}, + "deviceId": "1031060028", + "name": "[601](10)龙柏车控室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103042004031601", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628361", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:13", + "echoMap": {}, + "deviceId": "1031060029", + "name": "[407](10)龙柏3#闸出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031407", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628362", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1031060030", + "name": "[408](10)龙柏3#闸出3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031408", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628363", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:14", + "echoMap": {}, + "deviceId": "1031060031", + "name": "[410](10)龙柏3#闸出5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031410", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628364", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1031060032", + "name": "[409](10)龙柏3#闸出4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031409", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628365", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1031060033", + "name": "[406](10)龙柏3#闸出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101007006031406", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628366", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1031060034", + "name": "[203](10)龙柏厅3球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101035004031203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628367", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:19", + "echoMap": {}, + "deviceId": "1031060035", + "name": "[402](10)龙柏2#闸入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101006006031402", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628368", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1031060036", + "name": "[356](10)龙柏安检2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101085006031356", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628369", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:20", + "echoMap": {}, + "deviceId": "1031060037", + "name": "[342](10)龙柏#2厅楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101045006031342", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628370", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1031060038", + "name": "[503](10)龙柏票机2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101030006031503", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628371", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1031060039", + "name": "[341](10)龙柏#2厅扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101045006031341", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628372", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1031060040", + "name": "[340](10)龙柏#2厅扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101045006031340", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628373", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1031060041", + "name": "[204](10)龙柏厅4球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101035004031204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628374", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1031060042", + "name": "[349](10)龙柏长通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101083006031349", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628375", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1031060043", + "name": "[604](10)龙柏弱电集中室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031604", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628376", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1031060044", + "name": "[605](10)龙柏弱电集中室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031605", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628377", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1031060045", + "name": "[606](10)龙柏弱电集中室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031606", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628378", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1031060046", + "name": "[607](10)龙柏弱电集中室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031607", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628379", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1031060047", + "name": "[613](10)龙柏内通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001006031613", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628380", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:08", + "echoMap": {}, + "deviceId": "1031060048", + "name": "[615](10)龙柏消防出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001006031615", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628381", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1031060049", + "name": "[602](10)龙柏编码室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103041005031602", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628382", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1031060050", + "name": "[603](10)龙柏编码室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103041005031603", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628383", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1031060051", + "name": "[616](10)龙柏消防出入口1地面", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001006031616", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628384", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:07", + "echoMap": {}, + "deviceId": "1031060052", + "name": "[323](10)龙柏4#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031323", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628385", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-14 13:11:28", + "echoMap": {}, + "deviceId": "1031060053", + "name": "[211](10)龙柏4#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058004031211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628386", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1031060054", + "name": "[327](10)龙柏4#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031327", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628387", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1031060055", + "name": "[326](10)龙柏4#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031326", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628388", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1031060056", + "name": "[321](10)龙柏4#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031321", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628389", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:11", + "echoMap": {}, + "deviceId": "1031060057", + "name": "[325](10)龙柏4#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031325", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628390", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:12", + "echoMap": {}, + "deviceId": "1031060058", + "name": "[324](10)龙柏4#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031324", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628391", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1031060059", + "name": "[610](10)龙柏环控室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103053005031610", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628392", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-14 13:11:28", + "echoMap": {}, + "deviceId": "1031060060", + "name": "[350](10)龙柏长通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101083006031350", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628393", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2026-01-31 14:58:29", + "echoMap": {}, + "deviceId": "1031060061", + "name": "[322](10)龙柏4#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101058006031322", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628394", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:09", + "echoMap": {}, + "deviceId": "1031060062", + "name": "[617](10)龙柏变电所出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001006031617", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628395", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:10", + "echoMap": {}, + "deviceId": "1031060063", + "name": "[302](10)龙柏2#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031302", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628396", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2026-01-23 17:46:29", + "echoMap": {}, + "deviceId": "1031060064", + "name": "[303](10)龙柏2#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031303", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628397", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1031060065", + "name": "[351](10)龙柏长通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101083006031351", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628398", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1031060066", + "name": "[352](10)龙柏长通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101083006031352", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628399", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1031060067", + "name": "[309](10)龙柏2#口楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031309", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628400", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1031060068", + "name": "[209](10)龙柏2#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056004031209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628401", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:00", + "echoMap": {}, + "deviceId": "1031060069", + "name": "[301](10)龙柏2#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031301", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628402", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1031060070", + "name": "[308](10)龙柏2#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031308", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628403", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1031060071", + "name": "[307](10)龙柏2#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031307", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628404", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1031060072", + "name": "[306](10)龙柏2#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031306", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628405", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:01", + "echoMap": {}, + "deviceId": "1031060073", + "name": "[304](10)龙柏2#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031304", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628406", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1031060074", + "name": "[305](10)龙柏2#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101056006031305", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628407", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:02", + "echoMap": {}, + "deviceId": "1031060075", + "name": "[312](10)龙柏3#口入3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031312", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628408", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1031060076", + "name": "[311](10)龙柏3#口入2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031311", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628409", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1031060077", + "name": "[317](10)龙柏3#口扶梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031317", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628410", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1031060078", + "name": "[310](10)龙柏3#口入1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031310", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628411", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1031060079", + "name": "[210](10)龙柏3#口球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057004031210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628412", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-14 13:22:28", + "echoMap": {}, + "deviceId": "1031060080", + "name": "[316](10)龙柏3#口扶梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031316", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628413", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1031060081", + "name": "[315](10)龙柏3#口扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031315", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628414", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1031060082", + "name": "[314](10)龙柏3#口出2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031314", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628415", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1031060083", + "name": "[313](10)龙柏3#口出1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031313", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628416", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2026-01-22 23:06:30", + "echoMap": {}, + "deviceId": "1031060084", + "name": "[320](10)龙柏3#口扶梯6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031320", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628417", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:05", + "echoMap": {}, + "deviceId": "1031060085", + "name": "[319](10)龙柏3#口扶梯5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031319", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628418", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-14 13:20:28", + "echoMap": {}, + "deviceId": "1031060086", + "name": "[318](10)龙柏3#口扶梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101057006031318", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628419", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:25", + "echoMap": {}, + "deviceId": "1031060087", + "name": "[109](10)龙柏下行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102012006031109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628420", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1031060088", + "name": "[111](10)龙柏下行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102012006031111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628421", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1031060089", + "name": "[112](10)龙柏下行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102012006031112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628422", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1031060090", + "name": "[706](10)龙柏下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031706", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628423", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1031060091", + "name": "[208](10)龙柏下行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102001004031208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628424", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1031060092", + "name": "[344](10)龙柏#1台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102017006031344", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628425", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:23", + "echoMap": {}, + "deviceId": "1031060093", + "name": "[343](10)龙柏#1台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102017006031343", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628426", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1031060094", + "name": "[205](10)龙柏上行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102001004031205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628427", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1031060095", + "name": "[104](10)龙柏上行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102007006031104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628428", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1031060096", + "name": "[102](10)龙柏上行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102007006031102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628429", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:24", + "echoMap": {}, + "deviceId": "1031060097", + "name": "[705](10)龙柏上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031705", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628430", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:27", + "echoMap": {}, + "deviceId": "1031060098", + "name": "[101](10)龙柏上行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102007006031101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628431", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:26", + "echoMap": {}, + "deviceId": "1031060099", + "name": "[207](10)龙柏下行球1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102001004031207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628432", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:26", + "echoMap": {}, + "deviceId": "1031060100", + "name": "[107](10)龙柏下行1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102012006031107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628433", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:27", + "echoMap": {}, + "deviceId": "1031060101", + "name": "[110](10)龙柏下行4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102012006031110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628434", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:26", + "echoMap": {}, + "deviceId": "1031060102", + "name": "[108](10)龙柏下行2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102012006031108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628435", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:27", + "echoMap": {}, + "deviceId": "1031060103", + "name": "[346](10)龙柏#2台楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102017006031346", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628436", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:27", + "echoMap": {}, + "deviceId": "1031060104", + "name": "[614](10)龙柏内通道4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.189.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103021006031614", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628437", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1031060105", + "name": "[348](10)龙柏B2垂梯口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102002006031348", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628438", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1031060106", + "name": "[345](10)龙柏#2台扶梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102017006031345", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628439", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:17", + "echoMap": {}, + "deviceId": "1031060107", + "name": "[206](10)龙柏上行球2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102001004031206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628440", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1031060108", + "name": "[608](10)龙柏屏蔽门管理室", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031608", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628441", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:18", + "echoMap": {}, + "deviceId": "1031060109", + "name": "[106](10)龙柏上行6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102007006031106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628442", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1031060110", + "name": "[103](10)龙柏上行3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102007006031103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628443", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:15", + "echoMap": {}, + "deviceId": "1031060111", + "name": "[105](10)龙柏上行5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063102007006031105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628444", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-06 01:41:23", + "echoMap": {}, + "deviceId": "1031060112", + "name": "[702](10)龙柏12#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031702", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628445", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-02 13:23:08", + "echoMap": {}, + "deviceId": "1031060113", + "name": "[704](10)龙柏6#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031704", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628446", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:27", + "echoMap": {}, + "deviceId": "1031060114", + "name": "[703](10)龙柏3#道岔出入库线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031703", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628447", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:28", + "echoMap": {}, + "deviceId": "1031060115", + "name": "[701](10)龙柏10#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031701", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628448", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2026-01-08 17:18:46", + "echoMap": {}, + "deviceId": "1031060116", + "name": "[708](10)龙柏龙柏紫藤下行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104012004031708", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628449", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1031060117", + "name": "[707](10)龙柏龙柏紫藤上行旁通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104012004031707", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628450", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-05 01:46:29", + "echoMap": {}, + "deviceId": "1031060118", + "name": "[618](10)龙柏通信机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031618", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628451", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:25", + "echoMap": {}, + "deviceId": "1031060119", + "name": "[619](10)龙柏通信机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103048005031619", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628452", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-16 00:00:00", + "echoMap": {}, + "deviceId": "1031060120", + "name": "[501](10)龙柏客服1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101001005031501", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628453", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1031060121", + "name": "[621](10)龙柏卫生间门口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063101040006031621", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628454", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:21", + "echoMap": {}, + "deviceId": "1031060122", + "name": "[622](10)龙柏气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103067005031622", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628455", + "createdBy": "0", + "createdTime": "2025-03-07 13:24:39", + "updatedBy": null, + "updatedTime": "2025-12-14 13:29:28", + "echoMap": {}, + "deviceId": "1031060123", + "name": "[623](10)龙柏气瓶间2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103067005031623", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741113", + "createdBy": null, + "createdTime": "2025-10-28 00:00:25", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1031060124", + "name": "[624](10)龙柏下行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031624", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741114", + "createdBy": null, + "createdTime": "2025-10-28 00:00:25", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:03", + "echoMap": {}, + "deviceId": "1031060125", + "name": "[632](10)龙柏8#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031632", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741115", + "createdBy": null, + "createdTime": "2025-10-28 00:00:25", + "updatedBy": null, + "updatedTime": "2025-12-02 11:58:08", + "echoMap": {}, + "deviceId": "1031060126", + "name": "[629](10)龙柏上行峒口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104006006031629", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741116", + "createdBy": null, + "createdTime": "2025-10-28 00:00:25", + "updatedBy": null, + "updatedTime": "2025-12-02 11:58:09", + "echoMap": {}, + "deviceId": "1031060127", + "name": "[628](10)龙柏上行峒口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104006006031628", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741118", + "createdBy": null, + "createdTime": "2025-10-28 00:00:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:04", + "echoMap": {}, + "deviceId": "1031060128", + "name": "[631](10)龙柏2#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031631", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741119", + "createdBy": null, + "createdTime": "2025-10-28 00:00:26", + "updatedBy": null, + "updatedTime": "2025-12-02 13:23:09", + "echoMap": {}, + "deviceId": "1031060129", + "name": "[630](10)龙柏4#道岔", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031630", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741120", + "createdBy": null, + "createdTime": "2025-10-28 00:00:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:06", + "echoMap": {}, + "deviceId": "1031060130", + "name": "[625](10)龙柏上行人防门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104013006031625", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741121", + "createdBy": null, + "createdTime": "2025-10-28 00:00:26", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:22", + "echoMap": {}, + "deviceId": "1031060131", + "name": "[633](10)龙柏内通道5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103001005031633", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741123", + "createdBy": null, + "createdTime": "2025-10-28 00:00:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:25", + "echoMap": {}, + "deviceId": "1031060132", + "name": "[627](10)龙柏下行峒口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104007006031627", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "693410186339741124", + "createdBy": null, + "createdTime": "2025-10-28 00:00:27", + "updatedBy": null, + "updatedTime": "2025-11-19 00:00:25", + "echoMap": {}, + "deviceId": "1031060133", + "name": "[626](10)龙柏下行峒口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063104007006031626", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "710081905058078788", + "createdBy": null, + "createdTime": "2025-12-15 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-15 00:00:00", + "echoMap": {}, + "deviceId": "1031060134", + "name": "[357](10)龙柏消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.190.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063103068005031357", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "603981270648628457", + "createdBy": "0", + "createdTime": "2025-03-07 13:25:52", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:29", + "echoMap": {}, + "deviceId": "1031070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.189.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112117\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3551625106\",\"inUcastPkts\":\"714250323\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:19:3a:2f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"42827003\",\"outQLen\":\"0\",\"outUcastPkts\":\"312745060\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.189.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:29\",\"stCommonInfo\":{\"设备ID\":\"8L0027FPAZ368A8\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"38\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:35:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "603981270648628821", + "createdBy": "2", + "createdTime": "2025-03-07 13:27:44", + "updatedBy": null, + "updatedTime": "2025-12-23 10:32:27", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.189.51", + "manageUrl": "http:\\\\10.18.189.51", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "603981270648628822", + "createdBy": "2", + "createdTime": "2025-03-07 13:28:03", + "updatedBy": null, + "updatedTime": "2025-12-23 10:32:23", + "echoMap": {}, + "deviceId": null, + "name": "车控键盘", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.189.52", + "manageUrl": "http:\\\\10.18.189.52", + "manageUsername": "admin", + "managePassword": "admin123", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "603981270648628791", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:29", + "echoMap": {}, + "deviceId": "1031090001", + "name": "媒体服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.189.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.87\",\"CPU使用率\":\"2.00\",\"系统运行时间\":\"112 days, 11:33:09.86\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10625846\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28045428\",\"inOctets\":\"3835427279\",\"inUcastPkts\":\"1312288729\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"28:e4:24:cb:62:f1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4287872129\",\"outQLen\":\"0\",\"outUcastPkts\":\"1929466565\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.189.8\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [ + { + "id": "603981270648628658", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": "2", + "updatedTime": "2025-03-07 13:26:38", + "echoMap": {}, + "deviceId": "1031050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.189.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063100000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.189.22;10.18.189.23" + }, + { + "id": "603981270648628659", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:30", + "echoMap": {}, + "deviceId": "1031050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.189.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063100000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"28976749\",\"inErrors\":\"0\",\"inNUcastPkts\":\"29234193\",\"inOctets\":\"2698001\",\"inUcastPkts\":\"3448296888\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:b2:a5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3035482380\",\"outQLen\":\"0\",\"outUcastPkts\":\"126666550\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4310\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4360\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.189.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:30\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":853587523,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18922\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"49\",\"CPU使用率\":\"20\"}}", + "lastDiagTime": "2026-02-02 14:35:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.189.22" + }, + { + "id": "603981270648628660", + "createdBy": "0", + "createdTime": "2024-11-19 12:28:42", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:31", + "echoMap": {}, + "deviceId": "1031050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.189.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01063100000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"18606422\",\"inErrors\":\"0\",\"inNUcastPkts\":\"37666888\",\"inOctets\":\"1962574267\",\"inUcastPkts\":\"3946139838\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ae:81\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1932411768\",\"outQLen\":\"0\",\"outUcastPkts\":\"2635127529\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4320\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4370\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4370\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.189.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:31\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":853587523,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node18923\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"58\",\"CPU使用率\":\"18\"}}", + "lastDiagTime": "2026-02-02 14:35:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.189.23" + } + ], + "ndmSecurityBox": [ + { + "id": "706389109356832795", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:29", + "echoMap": {}, + "deviceId": "1031030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2511872\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"138099185\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2511877\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:8e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":28.000002},{\"current\":0.001,\"status\":1,\"voltage\":28.000002},{\"current\":0.293,\"status\":1,\"voltage\":28.000002},{\"current\":0.27100003,\"status\":1,\"voltage\":28.000002},{\"current\":0.001,\"status\":1,\"voltage\":28.000002},{\"current\":0.001,\"status\":1,\"voltage\":28.000002},{\"current\":0.001,\"status\":1,\"voltage\":28.000002},{\"current\":0.001,\"status\":1,\"voltage\":28.000002},{\"current\":0.001,\"status\":0,\"voltage\":28.000002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208301613\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:35:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832796", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:30", + "echoMap": {}, + "deviceId": "1031030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2512039\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"138107499\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"150 days, 12:51:09.66\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2512044\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:db\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.54800004,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":28.207},{\"current\":0.26700002,\"status\":1,\"voltage\":28.207},{\"current\":0.28800002,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":28.207},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208301946\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:35:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832797", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:38", + "echoMap": {}, + "deviceId": "1031030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832798", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:38", + "echoMap": {}, + "deviceId": "1031030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6813340\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"378909967\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"108 days, 15:52:42.40\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6813345\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:35\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":26.816002},{\"current\":0.001,\"status\":1,\"voltage\":26.816002},{\"current\":0.54700005,\"status\":1,\"voltage\":26.816002},{\"current\":0.0,\"status\":1,\"voltage\":26.816002},{\"current\":0.0,\"status\":1,\"voltage\":26.816002},{\"current\":0.0,\"status\":1,\"voltage\":26.816002},{\"current\":0.0,\"status\":1,\"voltage\":26.816002},{\"current\":0.0,\"status\":1,\"voltage\":26.816002},{\"current\":0.0,\"status\":0,\"voltage\":26.816002},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301524\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832799", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:39", + "echoMap": {}, + "deviceId": "1031030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"6813262\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"378902276\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"6813267\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:b2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":1,\"voltage\":26.514002},{\"current\":0.56200004,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":1,\"voltage\":26.514002},{\"current\":0.001,\"status\":0,\"voltage\":26.514002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208302226\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:39", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832800", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:47", + "echoMap": {}, + "deviceId": "1031030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832801", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:47", + "echoMap": {}, + "deviceId": "1031030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2781917\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"152944226\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2781922\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:25:17\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":26.968},{\"current\":0.001,\"status\":1,\"voltage\":26.968},{\"current\":0.347,\"status\":1,\"voltage\":26.968},{\"current\":0.22700001,\"status\":1,\"voltage\":26.968},{\"current\":0.254,\"status\":1,\"voltage\":26.968},{\"current\":0.0,\"status\":1,\"voltage\":26.968},{\"current\":0.0,\"status\":1,\"voltage\":26.968},{\"current\":0.0,\"status\":1,\"voltage\":26.968},{\"current\":0.0,\"status\":0,\"voltage\":26.968},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[1,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208301494\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:37:47", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832802", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:56", + "echoMap": {}, + "deviceId": "1031030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832803", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:56", + "echoMap": {}, + "deviceId": "1031030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7683974\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"428272250\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"7 days, 11:36:38.92\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7683979\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:c8\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.257,\"status\":1,\"voltage\":25.711},{\"current\":0.252,\"status\":1,\"voltage\":25.711},{\"current\":0.26700002,\"status\":1,\"voltage\":25.711},{\"current\":0.216,\"status\":1,\"voltage\":25.711},{\"current\":0.523,\"status\":1,\"voltage\":25.711},{\"current\":0.26000002,\"status\":1,\"voltage\":25.711},{\"current\":0.25500003,\"status\":1,\"voltage\":25.711},{\"current\":0.256,\"status\":1,\"voltage\":25.711},{\"current\":0.54200006,\"status\":1,\"voltage\":25.711},{\"current\":0.24700001,\"status\":1,\"voltage\":25.880001},{\"current\":0.003,\"status\":1,\"voltage\":25.880001},{\"current\":0.23,\"status\":1,\"voltage\":25.880001},{\"current\":0.26200002,\"status\":1,\"voltage\":25.880001},{\"current\":0.001,\"status\":1,\"voltage\":25.880001},{\"current\":0.001,\"status\":1,\"voltage\":25.880001},{\"current\":0.001,\"status\":1,\"voltage\":25.880001}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300200\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:38:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832804", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:57", + "echoMap": {}, + "deviceId": "1031030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7831245\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"436545647\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"21 days, 13:25:05.80\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7831250\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:6e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.31300002,\"status\":1,\"voltage\":26.718},{\"current\":0.335,\"status\":1,\"voltage\":26.718},{\"current\":0.277,\"status\":1,\"voltage\":26.718},{\"current\":0.26700002,\"status\":1,\"voltage\":26.718},{\"current\":0.49600002,\"status\":1,\"voltage\":26.718},{\"current\":0.24100001,\"status\":1,\"voltage\":26.718},{\"current\":0.21300001,\"status\":1,\"voltage\":26.718},{\"current\":0.34500003,\"status\":1,\"voltage\":26.718},{\"current\":0.34500003,\"status\":1,\"voltage\":26.718},{\"current\":0.26900002,\"status\":1,\"voltage\":26.794},{\"current\":0.003,\"status\":1,\"voltage\":26.794},{\"current\":0.22600001,\"status\":1,\"voltage\":26.794},{\"current\":0.23700002,\"status\":1,\"voltage\":26.794},{\"current\":0.001,\"status\":1,\"voltage\":26.794},{\"current\":0.001,\"status\":1,\"voltage\":26.794},{\"current\":0.001,\"status\":1,\"voltage\":26.794}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208300110\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:38:57", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832805", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:58", + "echoMap": {}, + "deviceId": "1031030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7718440\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"430209820\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7718445\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:6f\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":0,\"voltage\":26.457},{\"current\":0.33400002,\"status\":1,\"voltage\":26.457},{\"current\":0.30400002,\"status\":1,\"voltage\":26.457},{\"current\":0.263,\"status\":1,\"voltage\":26.457},{\"current\":0.24700001,\"status\":1,\"voltage\":26.457},{\"current\":0.24400002,\"status\":1,\"voltage\":26.457},{\"current\":0.51900005,\"status\":1,\"voltage\":26.457},{\"current\":0.30100003,\"status\":1,\"voltage\":26.457},{\"current\":0.29500002,\"status\":1,\"voltage\":26.457},{\"current\":0.246,\"status\":1,\"voltage\":26.085001},{\"current\":0.003,\"status\":1,\"voltage\":26.085001},{\"current\":0.25300002,\"status\":1,\"voltage\":26.085001},{\"current\":0.37500003,\"status\":1,\"voltage\":26.085001},{\"current\":0.39600003,\"status\":1,\"voltage\":26.085001},{\"current\":0.22100002,\"status\":1,\"voltage\":26.085001},{\"current\":0.001,\"status\":1,\"voltage\":26.085001}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300111\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:38:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832806", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:58", + "echoMap": {}, + "deviceId": "1031030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7726748\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"430675978\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7726753\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:64\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.37300003,\"status\":1,\"voltage\":26.008001},{\"current\":0.25800002,\"status\":1,\"voltage\":26.008001},{\"current\":0.25,\"status\":1,\"voltage\":26.008001},{\"current\":0.224,\"status\":1,\"voltage\":26.008001},{\"current\":0.26500002,\"status\":1,\"voltage\":26.008001},{\"current\":0.35000002,\"status\":1,\"voltage\":26.008001},{\"current\":0.23,\"status\":1,\"voltage\":26.008001},{\"current\":0.22700001,\"status\":1,\"voltage\":26.008001},{\"current\":0.22600001,\"status\":1,\"voltage\":26.008001},{\"current\":0.266,\"status\":1,\"voltage\":26.096},{\"current\":0.003,\"status\":1,\"voltage\":26.096},{\"current\":0.51500005,\"status\":1,\"voltage\":26.096},{\"current\":0.25300002,\"status\":1,\"voltage\":26.096},{\"current\":0.001,\"status\":1,\"voltage\":26.096},{\"current\":0.001,\"status\":1,\"voltage\":26.096},{\"current\":0.001,\"status\":1,\"voltage\":26.096}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300100\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:38:58", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832807", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:59", + "echoMap": {}, + "deviceId": "1031030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7740766\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"431464161\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7740771\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:06:6e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.224,\"status\":1,\"voltage\":25.206001},{\"current\":0.22200002,\"status\":1,\"voltage\":25.206001},{\"current\":0.231,\"status\":1,\"voltage\":25.206001},{\"current\":0.223,\"status\":1,\"voltage\":25.206001},{\"current\":0.24000001,\"status\":1,\"voltage\":25.206001},{\"current\":0.27400002,\"status\":1,\"voltage\":25.206001},{\"current\":0.21700001,\"status\":1,\"voltage\":25.206001},{\"current\":0.22000001,\"status\":1,\"voltage\":25.206001},{\"current\":0.22900002,\"status\":1,\"voltage\":25.206001},{\"current\":0.001,\"status\":1,\"voltage\":25.616001},{\"current\":0.002,\"status\":1,\"voltage\":25.616001},{\"current\":0.001,\"status\":1,\"voltage\":25.616001},{\"current\":0.001,\"status\":1,\"voltage\":25.616001},{\"current\":0.001,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":1,\"voltage\":25.616001},{\"current\":0.0,\"status\":1,\"voltage\":25.616001}],\"fanSpeeds\":[3660,3660],\"humidity\":17,\"switches\":[0,0,0,0],\"temperature\":31}],\"stCommonInfo\":{\"设备ID\":\"0001512208301646\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"50\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:38:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832808", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:59", + "echoMap": {}, + "deviceId": "1031030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7913383\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"441156384\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"17 days, 10:27:29.11\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7913388\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:03:ac\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.27100003,\"status\":1,\"voltage\":25.904001},{\"current\":0.509,\"status\":1,\"voltage\":25.904001},{\"current\":0.284,\"status\":1,\"voltage\":25.904001},{\"current\":0.264,\"status\":1,\"voltage\":25.904001},{\"current\":0.263,\"status\":1,\"voltage\":25.904001},{\"current\":0.259,\"status\":1,\"voltage\":25.904001},{\"current\":0.24900001,\"status\":1,\"voltage\":25.904001},{\"current\":0.54,\"status\":1,\"voltage\":25.904001},{\"current\":0.53400004,\"status\":1,\"voltage\":25.904001},{\"current\":0.0,\"status\":1,\"voltage\":26.221},{\"current\":0.003,\"status\":1,\"voltage\":26.221},{\"current\":0.001,\"status\":1,\"voltage\":26.221},{\"current\":0.001,\"status\":1,\"voltage\":26.221},{\"current\":0.001,\"status\":1,\"voltage\":26.221},{\"current\":0.001,\"status\":1,\"voltage\":26.221},{\"current\":0.001,\"status\":1,\"voltage\":26.221}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208300940\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"57\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:59", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832809", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:00", + "echoMap": {}, + "deviceId": "1031030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7741587\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"431510175\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7741592\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:0e\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.38200003,\"status\":1,\"voltage\":25.911001},{\"current\":0.393,\"status\":1,\"voltage\":25.911001},{\"current\":0.37500003,\"status\":1,\"voltage\":25.911001},{\"current\":0.28500003,\"status\":1,\"voltage\":25.911001},{\"current\":0.423,\"status\":1,\"voltage\":25.911001},{\"current\":0.28100002,\"status\":1,\"voltage\":25.911001},{\"current\":0.536,\"status\":1,\"voltage\":25.911001},{\"current\":0.28100002,\"status\":1,\"voltage\":25.911001},{\"current\":0.316,\"status\":1,\"voltage\":25.911001},{\"current\":0.358,\"status\":1,\"voltage\":26.168001},{\"current\":0.003,\"status\":1,\"voltage\":26.168001},{\"current\":0.35200003,\"status\":1,\"voltage\":26.168001},{\"current\":0.34600002,\"status\":1,\"voltage\":26.168001},{\"current\":0.34100002,\"status\":1,\"voltage\":26.168001},{\"current\":0.001,\"status\":1,\"voltage\":26.168001},{\"current\":0.001,\"status\":1,\"voltage\":26.168001}],\"fanSpeeds\":[1440,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302318\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:39:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832810", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:00", + "echoMap": {}, + "deviceId": "1031030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7914599\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"441222745\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"17 days, 6:38:55.23\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7914604\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:00:63\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.57100004,\"status\":1,\"voltage\":26.045002},{\"current\":0.224,\"status\":1,\"voltage\":26.045002},{\"current\":0.326,\"status\":1,\"voltage\":26.045002},{\"current\":0.275,\"status\":1,\"voltage\":26.045002},{\"current\":0.246,\"status\":1,\"voltage\":26.045002},{\"current\":0.279,\"status\":1,\"voltage\":26.045002},{\"current\":0.24700001,\"status\":1,\"voltage\":26.045002},{\"current\":0.24400002,\"status\":1,\"voltage\":26.045002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.045002},{\"current\":0.512,\"status\":1,\"voltage\":26.313002},{\"current\":0.003,\"status\":1,\"voltage\":26.313002},{\"current\":0.223,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.001,\"status\":1,\"voltage\":26.313002},{\"current\":0.0,\"status\":1,\"voltage\":26.313002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208300099\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:39:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389109356832811", + "createdBy": "0", + "createdTime": "2025-12-02 11:45:41", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1031030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.190.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"7751351\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"432061218\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"7751356\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:23:98\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.29900002,\"status\":1,\"voltage\":26.058},{\"current\":0.23400001,\"status\":1,\"voltage\":26.058},{\"current\":11.540001,\"status\":1,\"voltage\":26.058},{\"current\":0.505,\"status\":1,\"voltage\":26.058},{\"current\":0.22100002,\"status\":1,\"voltage\":26.058},{\"current\":0.24100001,\"status\":1,\"voltage\":26.058},{\"current\":0.23400001,\"status\":1,\"voltage\":26.058},{\"current\":0.27,\"status\":1,\"voltage\":26.058},{\"current\":0.264,\"status\":1,\"voltage\":26.058},{\"current\":0.40600002,\"status\":1,\"voltage\":26.061},{\"current\":0.003,\"status\":1,\"voltage\":26.061},{\"current\":0.303,\"status\":1,\"voltage\":26.061},{\"current\":0.23500001,\"status\":1,\"voltage\":26.061},{\"current\":0.001,\"status\":1,\"voltage\":26.061},{\"current\":0.001,\"status\":1,\"voltage\":26.061},{\"current\":0.001,\"status\":1,\"voltage\":26.061}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301111\",\"软件版本\":\"SoftVersion:1.0.0\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389105061865642", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:56", + "echoMap": {}, + "deviceId": "1030040018", + "name": "华为前端交换机17", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:05:01.40\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:a2\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.147\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:55\",\"info\":{\"portInfoList\":[{\"flow\":883213,\"inBytes\":2379735411,\"inFlow\":862632,\"lastChangeTime\":\"187 days, 23:33:53.55\",\"lastInBytes\":2379735411,\"lastOutBytes\":470886005,\"outBytes\":470886005,\"outFlow\":20581,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883639,\"inBytes\":1283611963,\"inFlow\":863049,\"lastChangeTime\":\"187 days, 23:33:50.57\",\"lastInBytes\":1283611963,\"lastOutBytes\":2789374402,\"outBytes\":2789374402,\"outFlow\":20590,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1958430,\"inFlow\":0,\"lastChangeTime\":\"223 days, 23:01:02.29\",\"lastInBytes\":1958430,\"lastOutBytes\":175068254,\"outBytes\":175068254,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":338,\"inBytes\":250501804,\"inFlow\":118,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":250501804,\"lastOutBytes\":2710761258,\"outBytes\":2710761258,\"outFlow\":220,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1777031,\"inBytes\":2066733262,\"inFlow\":43979,\"lastChangeTime\":\"205 days, 22:49:41.81\",\"lastInBytes\":2066733262,\"lastOutBytes\":434973568,\"outBytes\":434973568,\"outFlow\":1733051,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:26.074772000\"}}", + "lastDiagTime": "2026-02-02 14:37:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865643", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:13", + "echoMap": {}, + "deviceId": "1030040017", + "name": "华为前端交换机16", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"158 days, 23:14:53.16\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:cd\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.146\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:13\",\"info\":{\"portInfoList\":[{\"flow\":407861,\"inBytes\":1228535644,\"inFlow\":398554,\"lastChangeTime\":\"360 days, 22:41:21.55\",\"lastInBytes\":1228535644,\"lastOutBytes\":2978842872,\"outBytes\":2978842872,\"outFlow\":9306,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883575,\"inBytes\":1905976039,\"inFlow\":862958,\"lastChangeTime\":\"360 days, 22:41:34.87\",\"lastInBytes\":1905976039,\"lastOutBytes\":2657098055,\"outBytes\":2657098055,\"outFlow\":20616,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":14745563,\"inFlow\":0,\"lastChangeTime\":\"396 days, 22:43:33.67\",\"lastInBytes\":14745563,\"lastOutBytes\":1431248917,\"outBytes\":1431248917,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2190271,\"inFlow\":0,\"lastChangeTime\":\"172 days, 22:52:02.98\",\"lastInBytes\":2190271,\"lastOutBytes\":109239745,\"outBytes\":109239745,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":334,\"inBytes\":166989384,\"inFlow\":118,\"lastChangeTime\":\"172 days, 22:22:00.62\",\"lastInBytes\":166989384,\"lastOutBytes\":4138145270,\"outBytes\":4138145270,\"outFlow\":216,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2356,\"inFlow\":0,\"lastChangeTime\":\"172 days, 22:21:53.40\",\"lastInBytes\":2356,\"lastOutBytes\":34982766,\"outBytes\":34982766,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1297626,\"inBytes\":1636294116,\"inFlow\":32198,\"lastChangeTime\":\"173 days, 0:28:02.22\",\"lastInBytes\":1636294116,\"lastOutBytes\":4271130840,\"outBytes\":4271130840,\"outFlow\":1265427,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:29.581553000\"}}", + "lastDiagTime": "2026-02-02 14:38:13", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865644", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:03", + "echoMap": {}, + "deviceId": "1030040016", + "name": "华为前端交换机15", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"16 days, 13:14:28.11\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ad:18\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.145\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:03\",\"info\":{\"portInfoList\":[{\"flow\":407870,\"inBytes\":1526526049,\"inFlow\":398465,\"lastChangeTime\":\"49 days, 7:40:11.59\",\"lastInBytes\":1526526049,\"lastOutBytes\":2500815378,\"outBytes\":2500815378,\"outFlow\":9404,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883090,\"inBytes\":3925563983,\"inFlow\":862356,\"lastChangeTime\":\"49 days, 7:39:59.08\",\"lastInBytes\":3925563983,\"lastOutBytes\":2217532281,\"outBytes\":2217532281,\"outFlow\":20733,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1299289,\"inBytes\":2730734094,\"inFlow\":32222,\"lastChangeTime\":\"1:02:38.83\",\"lastInBytes\":2730734094,\"lastOutBytes\":1419959995,\"outBytes\":1419959995,\"outFlow\":1267067,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:27.515701000\"}}", + "lastDiagTime": "2026-02-02 14:38:03", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865645", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:06", + "echoMap": {}, + "deviceId": "1030040015", + "name": "华为前端交换机14", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"29 days, 9:25:36.70\",\"mTU\":\"1500\",\"macAddress\":\"58:d0:61:ab:ba:f6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.144\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:06\",\"info\":{\"portInfoList\":[{\"flow\":1087004,\"inBytes\":3073280324,\"inFlow\":1062894,\"lastChangeTime\":\"427 days, 18:51:54.48\",\"lastInBytes\":3073280324,\"lastOutBytes\":2556101150,\"outBytes\":2556101150,\"outFlow\":24110,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":107,\"inBytes\":679479050,\"inFlow\":1,\"lastChangeTime\":\"0:36:54.91\",\"lastInBytes\":679479050,\"lastOutBytes\":1177257992,\"outBytes\":1177257992,\"outFlow\":105,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1092249,\"inBytes\":625414448,\"inFlow\":25919,\"lastChangeTime\":\"29 days, 9:17:13.97\",\"lastInBytes\":625414448,\"lastOutBytes\":3193173535,\"outBytes\":3193173535,\"outFlow\":1066330,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:28.342620000\"}}", + "lastDiagTime": "2026-02-02 14:38:06", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865646", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:21", + "echoMap": {}, + "deviceId": "1030040014", + "name": "华为前端交换机13", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"39 days, 12:33:27.46\",\"mTU\":\"1500\",\"macAddress\":\"58:d0:61:ab:b9:17\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.143\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:21\",\"info\":{\"portInfoList\":[{\"flow\":104334,\"inBytes\":726800582,\"inFlow\":100810,\"lastChangeTime\":\"433 days, 14:35:38.96\",\"lastInBytes\":726800582,\"lastOutBytes\":1871605543,\"outBytes\":1871605543,\"outFlow\":3524,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":106,\"inBytes\":679409703,\"inFlow\":1,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":679409703,\"lastOutBytes\":549280241,\"outBytes\":549280241,\"outFlow\":105,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":76494,\"inBytes\":3712286205,\"inFlow\":4484,\"lastChangeTime\":\"399 days, 21:52:07.96\",\"lastInBytes\":3712286205,\"lastOutBytes\":2913041167,\"outBytes\":2913041167,\"outFlow\":72010,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:31.066584000\"}}", + "lastDiagTime": "2026-02-02 14:38:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865647", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:17", + "echoMap": {}, + "deviceId": "1030040013", + "name": "华为前端交换机12", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"182 days, 0:02:31.11\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:99\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"17\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.142\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:16\",\"info\":{\"portInfoList\":[{\"flow\":877812,\"inBytes\":1195280286,\"inFlow\":857255,\"lastChangeTime\":\"231 days, 9:26:27.47\",\"lastInBytes\":1195280286,\"lastOutBytes\":3001601974,\"outBytes\":3001601974,\"outFlow\":20556,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":877001,\"inBytes\":956221443,\"inFlow\":856846,\"lastChangeTime\":\"231 days, 9:26:08.48\",\"lastInBytes\":956221443,\"lastOutBytes\":1565612510,\"outBytes\":1565612510,\"outFlow\":20154,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":882680,\"inBytes\":1568077119,\"inFlow\":862364,\"lastChangeTime\":\"364 days, 0:54:16.59\",\"lastInBytes\":1568077119,\"lastOutBytes\":3781962667,\"outBytes\":3781962667,\"outFlow\":20316,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":882690,\"inBytes\":3804527995,\"inFlow\":862155,\"lastChangeTime\":\"231 days, 9:31:47.39\",\"lastInBytes\":3804527995,\"lastOutBytes\":1852548765,\"outBytes\":1852548765,\"outFlow\":20535,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":314,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"387 days, 0:46:35.30\",\"lastInBytes\":0,\"lastOutBytes\":1644069708,\"outBytes\":1644069708,\"outFlow\":314,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3531118,\"inBytes\":2041008239,\"inFlow\":86630,\"lastChangeTime\":\"182 days, 0:14:35.80\",\"lastInBytes\":2041008239,\"lastOutBytes\":670405358,\"outBytes\":670405358,\"outFlow\":3444488,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:30.186421000\"}}", + "lastDiagTime": "2026-02-02 14:38:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865648", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:00", + "echoMap": {}, + "deviceId": "1030040012", + "name": "华为前端交换机11", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif190\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"58:d0:61:ab:ba:aa\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.141\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:00\",\"info\":{\"portInfoList\":[{\"flow\":883051,\"inBytes\":308912399,\"inFlow\":862625,\"lastChangeTime\":\"399 days, 21:42:58.27\",\"lastInBytes\":308912399,\"lastOutBytes\":2376183637,\"outBytes\":2376183637,\"outFlow\":20425,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":880144,\"inBytes\":2713920032,\"inFlow\":859784,\"lastChangeTime\":\"399 days, 23:31:54.53\",\"lastInBytes\":2713920032,\"lastOutBytes\":1521055034,\"outBytes\":1521055034,\"outFlow\":20360,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"399 days, 23:29:46.44\",\"lastInBytes\":0,\"lastOutBytes\":2919443,\"outBytes\":2919443,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":2},{\"flow\":112,\"inBytes\":277887536,\"inFlow\":1,\"lastChangeTime\":\"399 days, 23:30:25.42\",\"lastInBytes\":277887536,\"lastOutBytes\":957185460,\"outBytes\":957185460,\"outFlow\":111,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5981438,\"inFlow\":0,\"lastChangeTime\":\"399 days, 23:33:43.19\",\"lastInBytes\":5981438,\"lastOutBytes\":218725403,\"outBytes\":218725403,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":879757,\"inBytes\":3821141225,\"inFlow\":859448,\"lastChangeTime\":\"399 days, 21:42:59.93\",\"lastInBytes\":3821141225,\"lastOutBytes\":1686171151,\"outBytes\":1686171151,\"outFlow\":20309,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2658010,\"inBytes\":2760575854,\"inFlow\":64790,\"lastChangeTime\":\"147 days, 0:56:20.10\",\"lastInBytes\":2760575854,\"lastOutBytes\":1029298847,\"outBytes\":1029298847,\"outFlow\":2593220,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:26.651193000\"}}", + "lastDiagTime": "2026-02-02 14:38:00", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865649", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:27", + "echoMap": {}, + "deviceId": "1030040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"20\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"188333\",\"inUnknownProtos\":\"210969761\",\"index\":\"636\",\"lastChange\":\"9 days, 13:49:47.60\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f0:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1265275625\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"39736550\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.140\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"50\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":417908,\"inBytes\":2331907657,\"inFlow\":407168,\"lastChangeTime\":\"449 days, 21:15:43.74\",\"lastInBytes\":2331907657,\"lastOutBytes\":494406552,\"outBytes\":494406552,\"outFlow\":10739,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":882713,\"inBytes\":1996134188,\"inFlow\":861247,\"lastChangeTime\":\"20 days, 22:51:03.00\",\"lastInBytes\":1996134188,\"lastOutBytes\":3602911266,\"outBytes\":3602911266,\"outFlow\":21466,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":406255,\"inBytes\":2936108609,\"inFlow\":396296,\"lastChangeTime\":\"37 days, 23:14:44.52\",\"lastInBytes\":2936108609,\"lastOutBytes\":2181592112,\"outBytes\":2181592112,\"outFlow\":9958,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":881923,\"inBytes\":800693866,\"inFlow\":860330,\"lastChangeTime\":\"37 days, 23:14:29.41\",\"lastInBytes\":800693866,\"lastOutBytes\":2999115764,\"outBytes\":2999115764,\"outFlow\":21592,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":406632,\"inBytes\":912017343,\"inFlow\":396675,\"lastChangeTime\":\"16 days, 12:49:03.71\",\"lastInBytes\":912017343,\"lastOutBytes\":29503260,\"outBytes\":29503260,\"outFlow\":9957,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":408428,\"inBytes\":2563205523,\"inFlow\":398523,\"lastChangeTime\":\"396 days, 9:30:22.61\",\"lastInBytes\":2563205523,\"lastOutBytes\":1416809053,\"outBytes\":1416809053,\"outFlow\":9905,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":406629,\"inBytes\":83745328,\"inFlow\":396854,\"lastChangeTime\":\"87 days, 1:00:20.88\",\"lastInBytes\":83745328,\"lastOutBytes\":210873983,\"outBytes\":210873983,\"outFlow\":9774,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":882757,\"inBytes\":2500516288,\"inFlow\":861155,\"lastChangeTime\":\"87 days, 0:57:12.66\",\"lastInBytes\":2500516288,\"lastOutBytes\":3867090779,\"outBytes\":3867090779,\"outFlow\":21601,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":406137,\"inBytes\":3169012899,\"inFlow\":396525,\"lastChangeTime\":\"449 days, 21:15:36.64\",\"lastInBytes\":3169012899,\"lastOutBytes\":891026108,\"outBytes\":891026108,\"outFlow\":9611,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":272069,\"inBytes\":602898696,\"inFlow\":264972,\"lastChangeTime\":\"134 days, 20:00:08.93\",\"lastInBytes\":602898696,\"lastOutBytes\":246552225,\"outBytes\":246552225,\"outFlow\":7097,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":944484,\"inBytes\":3647405959,\"inFlow\":921336,\"lastChangeTime\":\"20 days, 22:51:05.12\",\"lastInBytes\":3647405959,\"lastOutBytes\":3160775717,\"outBytes\":3160775717,\"outFlow\":23147,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":945046,\"inBytes\":1143836611,\"inFlow\":921281,\"lastChangeTime\":\"20 days, 22:50:58.05\",\"lastInBytes\":1143836611,\"lastOutBytes\":596720893,\"outBytes\":596720893,\"outFlow\":23764,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":879399,\"inBytes\":3949319115,\"inFlow\":857573,\"lastChangeTime\":\"20 days, 22:51:01.92\",\"lastInBytes\":3949319115,\"lastOutBytes\":1176933209,\"outBytes\":1176933209,\"outFlow\":21825,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":271653,\"inBytes\":3080510653,\"inFlow\":265023,\"lastChangeTime\":\"47 days, 11:59:35.15\",\"lastInBytes\":3080510653,\"lastOutBytes\":1118855969,\"outBytes\":1118855969,\"outFlow\":6630,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":273098,\"inBytes\":642650872,\"inFlow\":266579,\"lastChangeTime\":\"47 days, 12:00:03.21\",\"lastInBytes\":642650872,\"lastOutBytes\":3102134377,\"outBytes\":3102134377,\"outFlow\":6519,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":15794897,\"inFlow\":0,\"lastChangeTime\":\"37 days, 23:17:33.41\",\"lastInBytes\":15794897,\"lastOutBytes\":716333394,\"outBytes\":716333394,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:35.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:35.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.72\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8602393,\"inBytes\":2813090647,\"inFlow\":220565,\"lastChangeTime\":\"87 days, 1:01:16.21\",\"lastInBytes\":2813090647,\"lastOutBytes\":2179118489,\"outBytes\":2179118489,\"outFlow\":8381828,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.174151000\"}}", + "lastDiagTime": "2026-02-02 14:38:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865650", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:27", + "echoMap": {}, + "deviceId": "1030040010", + "name": "H3C前端交换机9", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"188867\",\"inUnknownProtos\":\"2396355236\",\"index\":\"636\",\"lastChange\":\"10 days, 13:35:48.72\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:df:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"492089501\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"288838179\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.139\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":409341,\"inBytes\":3266964746,\"inFlow\":399302,\"lastChangeTime\":\"21 days, 22:41:01.66\",\"lastInBytes\":3266964746,\"lastOutBytes\":3780210665,\"outBytes\":3780210665,\"outFlow\":10039,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":882899,\"inBytes\":422778835,\"inFlow\":861283,\"lastChangeTime\":\"21 days, 22:41:05.00\",\"lastInBytes\":422778835,\"lastOutBytes\":1970559564,\"outBytes\":1970559564,\"outFlow\":21616,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":883029,\"inBytes\":2857570900,\"inFlow\":861178,\"lastChangeTime\":\"21 days, 22:41:05.87\",\"lastInBytes\":2857570900,\"lastOutBytes\":2513617693,\"outBytes\":2513617693,\"outFlow\":21850,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407254,\"inBytes\":108779117,\"inFlow\":397179,\"lastChangeTime\":\"464 days, 2:11:18.73\",\"lastInBytes\":108779117,\"lastOutBytes\":2118753842,\"outBytes\":2118753842,\"outFlow\":10075,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1111720,\"inBytes\":561495421,\"inFlow\":1083592,\"lastChangeTime\":\"464 days, 2:11:09.35\",\"lastInBytes\":561495421,\"lastOutBytes\":169735706,\"outBytes\":169735706,\"outFlow\":28127,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407234,\"inBytes\":2502541898,\"inFlow\":397288,\"lastChangeTime\":\"464 days, 2:11:20.13\",\"lastInBytes\":2502541898,\"lastOutBytes\":380381354,\"outBytes\":380381354,\"outFlow\":9946,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":882883,\"inBytes\":3212792989,\"inFlow\":861283,\"lastChangeTime\":\"464 days, 2:11:20.84\",\"lastInBytes\":3212792989,\"lastOutBytes\":2396355236,\"outBytes\":2396355236,\"outFlow\":21599,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":409947,\"inBytes\":225978811,\"inFlow\":399509,\"lastChangeTime\":\"21 days, 22:40:58.13\",\"lastInBytes\":225978811,\"lastOutBytes\":3004509095,\"outBytes\":3004509095,\"outFlow\":10437,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":417306,\"inBytes\":694677525,\"inFlow\":406432,\"lastChangeTime\":\"464 days, 2:11:09.49\",\"lastInBytes\":694677525,\"lastOutBytes\":3853095940,\"outBytes\":3853095940,\"outFlow\":10874,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":878760,\"inBytes\":3598609772,\"inFlow\":856676,\"lastChangeTime\":\"21 days, 22:41:05.72\",\"lastInBytes\":3598609772,\"lastOutBytes\":2977022987,\"outBytes\":2977022987,\"outFlow\":22083,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":406944,\"inBytes\":3043867827,\"inFlow\":397028,\"lastChangeTime\":\"464 days, 2:11:19.47\",\"lastInBytes\":3043867827,\"lastOutBytes\":4037717195,\"outBytes\":4037717195,\"outFlow\":9915,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":881452,\"inBytes\":3208766691,\"inFlow\":859093,\"lastChangeTime\":\"21 days, 22:41:02.65\",\"lastInBytes\":3208766691,\"lastOutBytes\":485126720,\"outBytes\":485126720,\"outFlow\":22359,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.67\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":22058114,\"inFlow\":0,\"lastChangeTime\":\"88 days, 1:19:51.11\",\"lastInBytes\":22058114,\"lastOutBytes\":1018336822,\"outBytes\":1018336822,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.67\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":797230406,\"inFlow\":1,\"lastChangeTime\":\"1:07:24.99\",\"lastInBytes\":797230406,\"lastOutBytes\":1233495271,\"outBytes\":1233495271,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:31.79\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:01:31.88\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8012745,\"inBytes\":593808230,\"inFlow\":208004,\"lastChangeTime\":\"88 days, 1:20:22.21\",\"lastInBytes\":593808230,\"lastOutBytes\":112587016,\"outBytes\":112587016,\"outFlow\":7804741,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.67\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:22.148451000\"}}", + "lastDiagTime": "2026-02-02 14:38:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865651", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1030040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"10\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"187900\",\"inUnknownProtos\":\"3425598622\",\"index\":\"635\",\"lastChange\":\"5 days, 21:38:11.43\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f1:ec\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3843831728\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"287123271\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.138\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:25\",\"info\":{\"portInfoList\":[{\"flow\":423587,\"inBytes\":2189656346,\"inFlow\":414834,\"lastChangeTime\":\"259 days, 14:19:36.10\",\"lastInBytes\":2189656346,\"lastOutBytes\":1919544939,\"outBytes\":1919544939,\"outFlow\":8753,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":405371,\"inBytes\":1686486771,\"inFlow\":397197,\"lastChangeTime\":\"259 days, 14:19:52.56\",\"lastInBytes\":1686486771,\"lastOutBytes\":362398732,\"outBytes\":362398732,\"outFlow\":8173,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407475,\"inBytes\":453645198,\"inFlow\":397640,\"lastChangeTime\":\"108 days, 4:00:34.84\",\"lastInBytes\":453645198,\"lastOutBytes\":1542209703,\"outBytes\":1542209703,\"outFlow\":9835,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":406675,\"inBytes\":1178742049,\"inFlow\":396791,\"lastChangeTime\":\"41 days, 19:19:47.53\",\"lastInBytes\":1178742049,\"lastOutBytes\":3708349719,\"outBytes\":3708349719,\"outFlow\":9884,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":846998,\"inBytes\":4143041503,\"inFlow\":824348,\"lastChangeTime\":\"483 days, 22:23:10.18\",\"lastInBytes\":4143041503,\"lastOutBytes\":292029661,\"outBytes\":292029661,\"outFlow\":22649,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407304,\"inBytes\":2156105819,\"inFlow\":397437,\"lastChangeTime\":\"68 days, 7:24:20.38\",\"lastInBytes\":2156105819,\"lastOutBytes\":3425598622,\"outBytes\":3425598622,\"outFlow\":9866,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":406522,\"inBytes\":1477423435,\"inFlow\":396600,\"lastChangeTime\":\"41 days, 19:19:44.83\",\"lastInBytes\":1477423435,\"lastOutBytes\":3783912278,\"outBytes\":3783912278,\"outFlow\":9921,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":405527,\"inBytes\":3387704631,\"inFlow\":397459,\"lastChangeTime\":\"259 days, 14:20:58.16\",\"lastInBytes\":3387704631,\"lastOutBytes\":152825540,\"outBytes\":152825540,\"outFlow\":8068,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":517838,\"inBytes\":690196266,\"inFlow\":506670,\"lastChangeTime\":\"259 days, 14:21:32.04\",\"lastInBytes\":690196266,\"lastOutBytes\":2220864286,\"outBytes\":2220864286,\"outFlow\":11167,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406885,\"inBytes\":3265812872,\"inFlow\":397073,\"lastChangeTime\":\"41 days, 19:19:44.52\",\"lastInBytes\":3265812872,\"lastOutBytes\":1317809545,\"outBytes\":1317809545,\"outFlow\":9812,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":407020,\"inBytes\":590915040,\"inFlow\":397154,\"lastChangeTime\":\"41 days, 19:19:36.42\",\"lastInBytes\":590915040,\"lastOutBytes\":3682470369,\"outBytes\":3682470369,\"outFlow\":9866,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":406608,\"inBytes\":1289291834,\"inFlow\":396699,\"lastChangeTime\":\"68 days, 7:22:31.96\",\"lastInBytes\":1289291834,\"lastOutBytes\":690900843,\"outBytes\":690900843,\"outFlow\":9908,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.69\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":369050,\"inFlow\":0,\"lastChangeTime\":\"417 days, 6:25:20.13\",\"lastInBytes\":369050,\"lastOutBytes\":40829378,\"outBytes\":40829378,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.69\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":812318707,\"inFlow\":1,\"lastChangeTime\":\"417 days, 6:27:15.98\",\"lastInBytes\":812318707,\"lastOutBytes\":1474371508,\"outBytes\":1474371508,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.69\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.69\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.69\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5467725,\"inBytes\":2895088172,\"inFlow\":132969,\"lastChangeTime\":\"44 days, 22:40:37.68\",\"lastInBytes\":2895088172,\"lastOutBytes\":964503564,\"outBytes\":964503564,\"outFlow\":5334755,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.102834000\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865652", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1030040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"98298\",\"inUnknownProtos\":\"3144913523\",\"index\":\"635\",\"lastChange\":\"0:01:11.94\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:f0:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"179920294\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"86367496\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.137\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:25\",\"info\":{\"portInfoList\":[{\"flow\":407117,\"inBytes\":1375883552,\"inFlow\":397224,\"lastChangeTime\":\"0:01:13.72\",\"lastInBytes\":1375883552,\"lastOutBytes\":465726372,\"outBytes\":465726372,\"outFlow\":9893,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":508847,\"inBytes\":793061565,\"inFlow\":498405,\"lastChangeTime\":\"0:01:14.61\",\"lastInBytes\":793061565,\"lastOutBytes\":3721366699,\"outBytes\":3721366699,\"outFlow\":10441,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":609519,\"inBytes\":3388707494,\"inFlow\":594025,\"lastChangeTime\":\"303 days, 17:19:00.38\",\"lastInBytes\":3388707494,\"lastOutBytes\":2517001835,\"outBytes\":2517001835,\"outFlow\":15494,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":407779,\"inBytes\":2926215404,\"inFlow\":397846,\"lastChangeTime\":\"0:01:13.71\",\"lastInBytes\":2926215404,\"lastOutBytes\":639764046,\"outBytes\":639764046,\"outFlow\":9933,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":884009,\"inBytes\":2398226371,\"inFlow\":862333,\"lastChangeTime\":\"184 days, 19:04:39.45\",\"lastInBytes\":2398226371,\"lastOutBytes\":1051285639,\"outBytes\":1051285639,\"outFlow\":21675,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406512,\"inBytes\":2358483384,\"inFlow\":396607,\"lastChangeTime\":\"236 days, 11:26:22.17\",\"lastInBytes\":2358483384,\"lastOutBytes\":3144913523,\"outBytes\":3144913523,\"outFlow\":9905,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":282503,\"inBytes\":784274529,\"inFlow\":274516,\"lastChangeTime\":\"168 days, 7:23:09.19\",\"lastInBytes\":784274529,\"lastOutBytes\":173540570,\"outBytes\":173540570,\"outFlow\":7987,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":408118,\"inBytes\":2667299353,\"inFlow\":398249,\"lastChangeTime\":\"236 days, 11:26:33.92\",\"lastInBytes\":2667299353,\"lastOutBytes\":2894610657,\"outBytes\":2894610657,\"outFlow\":9869,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":407330,\"inBytes\":3529198005,\"inFlow\":397382,\"lastChangeTime\":\"236 days, 11:26:27.22\",\"lastInBytes\":3529198005,\"lastOutBytes\":3503799683,\"outBytes\":3503799683,\"outFlow\":9947,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":406849,\"inBytes\":131086505,\"inFlow\":396977,\"lastChangeTime\":\"236 days, 11:26:33.24\",\"lastInBytes\":131086505,\"lastOutBytes\":693499556,\"outBytes\":693499556,\"outFlow\":9872,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":406892,\"inBytes\":1620490361,\"inFlow\":396977,\"lastChangeTime\":\"236 days, 11:26:25.02\",\"lastInBytes\":1620490361,\"lastOutBytes\":1039299821,\"outBytes\":1039299821,\"outFlow\":9915,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":416266,\"inBytes\":2125778058,\"inFlow\":407783,\"lastChangeTime\":\"0:01:14.61\",\"lastInBytes\":2125778058,\"lastOutBytes\":1417594253,\"outBytes\":1417594253,\"outFlow\":8483,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404804,\"inBytes\":1513968527,\"inFlow\":396708,\"lastChangeTime\":\"0:01:14.61\",\"lastInBytes\":1513968527,\"lastOutBytes\":3827700123,\"outBytes\":3827700123,\"outFlow\":8095,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":271751,\"inBytes\":1869755645,\"inFlow\":265094,\"lastChangeTime\":\"262 days, 23:25:35.46\",\"lastInBytes\":1869755645,\"lastOutBytes\":1785663917,\"outBytes\":1785663917,\"outFlow\":6656,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":26587,\"inFlow\":0,\"lastChangeTime\":\"1 day, 12:54:36.64\",\"lastInBytes\":26587,\"lastOutBytes\":356850,\"outBytes\":356850,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":799590039,\"inFlow\":1,\"lastChangeTime\":\"1 day, 12:55:06.08\",\"lastInBytes\":799590039,\"lastOutBytes\":3349316184,\"outBytes\":3349316184,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6251929,\"inBytes\":348784019,\"inFlow\":154049,\"lastChangeTime\":\"1 day, 12:54:45.45\",\"lastInBytes\":348784019,\"lastOutBytes\":2288790967,\"outBytes\":2288790967,\"outFlow\":6097880,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.094152000\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865653", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:26", + "echoMap": {}, + "deviceId": "1030040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"97866\",\"inUnknownProtos\":\"2248018072\",\"index\":\"635\",\"lastChange\":\"0:01:11.48\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e8:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3986693125\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"84397967\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.136\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":404694,\"inBytes\":780723572,\"inFlow\":396720,\"lastChangeTime\":\"0:01:14.19\",\"lastInBytes\":780723572,\"lastOutBytes\":1228091103,\"outBytes\":1228091103,\"outFlow\":7973,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407262,\"inBytes\":3040525947,\"inFlow\":397442,\"lastChangeTime\":\"281 days, 4:19:12.08\",\"lastInBytes\":3040525947,\"lastOutBytes\":2532368125,\"outBytes\":2532368125,\"outFlow\":9820,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":283057,\"inBytes\":3309481142,\"inFlow\":275144,\"lastChangeTime\":\"261 days, 10:46:51.64\",\"lastInBytes\":3309481142,\"lastOutBytes\":2702656400,\"outBytes\":2702656400,\"outFlow\":7912,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":404340,\"inBytes\":1936046567,\"inFlow\":394488,\"lastChangeTime\":\"234 days, 22:52:49.21\",\"lastInBytes\":1936046567,\"lastOutBytes\":881396781,\"outBytes\":881396781,\"outFlow\":9852,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407054,\"inBytes\":3589307643,\"inFlow\":397169,\"lastChangeTime\":\"234 days, 22:52:45.26\",\"lastInBytes\":3589307643,\"lastOutBytes\":894357506,\"outBytes\":894357506,\"outFlow\":9884,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407064,\"inBytes\":2665993774,\"inFlow\":399222,\"lastChangeTime\":\"0:17:18.26\",\"lastInBytes\":2665993774,\"lastOutBytes\":2248018072,\"outBytes\":2248018072,\"outFlow\":7841,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406811,\"inBytes\":1380607338,\"inFlow\":396961,\"lastChangeTime\":\"0:01:13.82\",\"lastInBytes\":1380607338,\"lastOutBytes\":2139531068,\"outBytes\":2139531068,\"outFlow\":9850,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407685,\"inBytes\":1013953496,\"inFlow\":397734,\"lastChangeTime\":\"234 days, 22:52:49.44\",\"lastInBytes\":1013953496,\"lastOutBytes\":2162534791,\"outBytes\":2162534791,\"outFlow\":9950,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":272001,\"inBytes\":2329355762,\"inFlow\":265051,\"lastChangeTime\":\"229 days, 17:30:44.83\",\"lastInBytes\":2329355762,\"lastOutBytes\":3619818286,\"outBytes\":3619818286,\"outFlow\":6949,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":407737,\"inBytes\":3432791217,\"inFlow\":397638,\"lastChangeTime\":\"234 days, 22:52:47.59\",\"lastInBytes\":3432791217,\"lastOutBytes\":2905438013,\"outBytes\":2905438013,\"outFlow\":10098,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":406934,\"inBytes\":2986663714,\"inFlow\":396952,\"lastChangeTime\":\"261 days, 10:47:24.81\",\"lastInBytes\":2986663714,\"lastOutBytes\":2926811015,\"outBytes\":2926811015,\"outFlow\":9982,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":407474,\"inBytes\":275532214,\"inFlow\":397844,\"lastChangeTime\":\"261 days, 10:45:48.32\",\"lastInBytes\":275532214,\"lastOutBytes\":1331629049,\"outBytes\":1331629049,\"outFlow\":9629,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1131974,\"inFlow\":0,\"lastChangeTime\":\"67 days, 23:32:07.15\",\"lastInBytes\":1131974,\"lastOutBytes\":110737179,\"outBytes\":110737179,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":800386734,\"inFlow\":1,\"lastChangeTime\":\"0:01:13.31\",\"lastInBytes\":800386734,\"lastOutBytes\":3336777371,\"outBytes\":3336777371,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":4635697,\"inBytes\":593260756,\"inFlow\":113868,\"lastChangeTime\":\"0:01:11.47\",\"lastInBytes\":593260756,\"lastOutBytes\":3082968520,\"outBytes\":3082968520,\"outFlow\":4521828,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:22.101114000\"}}", + "lastDiagTime": "2026-02-02 14:38:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865654", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:26", + "echoMap": {}, + "deviceId": "1030040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"98244\",\"inUnknownProtos\":\"2595766871\",\"index\":\"635\",\"lastChange\":\"0:01:18.80\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c9:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1199553155\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"86391212\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.135\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":271908,\"inBytes\":2081286518,\"inFlow\":265082,\"lastChangeTime\":\"0:01:20.66\",\"lastInBytes\":2081286518,\"lastOutBytes\":822766725,\"outBytes\":822766725,\"outFlow\":6826,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":271974,\"inBytes\":3913159787,\"inFlow\":265100,\"lastChangeTime\":\"0:01:20.67\",\"lastInBytes\":3913159787,\"lastOutBytes\":4208790603,\"outBytes\":4208790603,\"outFlow\":6873,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":271967,\"inBytes\":1022430742,\"inFlow\":265050,\"lastChangeTime\":\"0:01:21.12\",\"lastInBytes\":1022430742,\"lastOutBytes\":1382558256,\"outBytes\":1382558256,\"outFlow\":6917,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":271550,\"inBytes\":2822102253,\"inFlow\":264969,\"lastChangeTime\":\"0:01:21.13\",\"lastInBytes\":2822102253,\"lastOutBytes\":2742697667,\"outBytes\":2742697667,\"outFlow\":6581,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":883106,\"inBytes\":225173994,\"inFlow\":861211,\"lastChangeTime\":\"0:01:21.12\",\"lastInBytes\":225173994,\"lastOutBytes\":3434448759,\"outBytes\":3434448759,\"outFlow\":21894,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406940,\"inBytes\":1159248597,\"inFlow\":397008,\"lastChangeTime\":\"0:01:20.66\",\"lastInBytes\":1159248597,\"lastOutBytes\":2595766871,\"outBytes\":2595766871,\"outFlow\":9931,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":613305,\"inBytes\":1161474332,\"inFlow\":597470,\"lastChangeTime\":\"0:01:20.65\",\"lastInBytes\":1161474332,\"lastOutBytes\":1834680456,\"outBytes\":1834680456,\"outFlow\":15835,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":271473,\"inBytes\":1279496361,\"inFlow\":264747,\"lastChangeTime\":\"0:01:21.13\",\"lastInBytes\":1279496361,\"lastOutBytes\":4168069663,\"outBytes\":4168069663,\"outFlow\":6726,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":272329,\"inBytes\":742646371,\"inFlow\":265743,\"lastChangeTime\":\"115 days, 23:35:23.65\",\"lastInBytes\":742646371,\"lastOutBytes\":2072528832,\"outBytes\":2072528832,\"outFlow\":6586,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1697248,\"inFlow\":0,\"lastChangeTime\":\"246 days, 11:34:51.75\",\"lastInBytes\":1697248,\"lastOutBytes\":60395752,\"outBytes\":60395752,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":9586,\"inFlow\":0,\"lastChangeTime\":\"1 day, 13:24:48.20\",\"lastInBytes\":9586,\"lastOutBytes\":394580,\"outBytes\":394580,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":804783275,\"inFlow\":1,\"lastChangeTime\":\"1 day, 13:25:05.56\",\"lastInBytes\":804783275,\"lastOutBytes\":3362638465,\"outBytes\":3362638465,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.86\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3551927,\"inBytes\":51153743,\"inFlow\":91945,\"lastChangeTime\":\"0:01:18.80\",\"lastInBytes\":51153743,\"lastOutBytes\":669195544,\"outBytes\":669195544,\"outFlow\":3459982,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.115471000\"}}", + "lastDiagTime": "2026-02-02 14:38:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865655", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1030040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"186468\",\"inUnknownProtos\":\"181562561\",\"index\":\"635\",\"lastChange\":\"0:01:11.50\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:c7:ac\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1209467467\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"290610905\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"61\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.134\",\"index\":\"635\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:25\",\"info\":{\"portInfoList\":[{\"flow\":887577,\"inBytes\":3808967563,\"inFlow\":865913,\"lastChangeTime\":\"31 days, 10:27:50.63\",\"lastInBytes\":3808967563,\"lastOutBytes\":3801139628,\"outBytes\":3801139628,\"outFlow\":21664,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1014442,\"inBytes\":3071608598,\"inFlow\":992168,\"lastChangeTime\":\"278 days, 3:38:22.84\",\"lastInBytes\":3071608598,\"lastOutBytes\":3397988162,\"outBytes\":3397988162,\"outFlow\":22274,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":407052,\"inBytes\":2640393698,\"inFlow\":397154,\"lastChangeTime\":\"66 days, 8:10:06.07\",\"lastInBytes\":2640393698,\"lastOutBytes\":817549970,\"outBytes\":817549970,\"outFlow\":9897,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":408337,\"inBytes\":2287736222,\"inFlow\":398410,\"lastChangeTime\":\"31 days, 10:28:09.50\",\"lastInBytes\":2287736222,\"lastOutBytes\":3725598519,\"outBytes\":3725598519,\"outFlow\":9927,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":407304,\"inBytes\":3865604615,\"inFlow\":397373,\"lastChangeTime\":\"31 days, 10:28:08.80\",\"lastInBytes\":3865604615,\"lastOutBytes\":4084436519,\"outBytes\":4084436519,\"outFlow\":9930,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407116,\"inBytes\":1439668324,\"inFlow\":397192,\"lastChangeTime\":\"31 days, 10:27:52.74\",\"lastInBytes\":1439668324,\"lastOutBytes\":181562561,\"outBytes\":181562561,\"outFlow\":9923,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407394,\"inBytes\":2437249716,\"inFlow\":397447,\"lastChangeTime\":\"31 days, 10:28:03.57\",\"lastInBytes\":2437249716,\"lastOutBytes\":3605685657,\"outBytes\":3605685657,\"outFlow\":9946,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":285334,\"inBytes\":1438981712,\"inFlow\":277235,\"lastChangeTime\":\"464 days, 18:54:23.35\",\"lastInBytes\":1438981712,\"lastOutBytes\":2441586244,\"outBytes\":2441586244,\"outFlow\":8099,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":417714,\"inBytes\":294425410,\"inFlow\":406839,\"lastChangeTime\":\"464 days, 18:54:29.26\",\"lastInBytes\":294425410,\"lastOutBytes\":2610851299,\"outBytes\":2610851299,\"outFlow\":10874,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":30678,\"inFlow\":0,\"lastChangeTime\":\"23:09:02.07\",\"lastInBytes\":30678,\"lastOutBytes\":18934,\"outBytes\":18934,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.81\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":7574108,\"inFlow\":0,\"lastChangeTime\":\"24 days, 8:49:41.87\",\"lastInBytes\":7574108,\"lastOutBytes\":353876722,\"outBytes\":353876722,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":12498310,\"inFlow\":0,\"lastChangeTime\":\"142 days, 0:37:31.76\",\"lastInBytes\":12498310,\"lastOutBytes\":339563695,\"outBytes\":339563695,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":90,\"inBytes\":821570771,\"inFlow\":1,\"lastChangeTime\":\"142 days, 0:28:25.43\",\"lastInBytes\":821570771,\"lastOutBytes\":1461715689,\"outBytes\":1461715689,\"outFlow\":89,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4675046,\"inBytes\":2844804878,\"inFlow\":117861,\"lastChangeTime\":\"24 days, 8:49:51.54\",\"lastInBytes\":2844804878,\"lastOutBytes\":1295185849,\"outBytes\":1295185849,\"outFlow\":4557184,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.117026000\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865656", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:26", + "echoMap": {}, + "deviceId": "1030040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"98378\",\"inUnknownProtos\":\"2839237212\",\"index\":\"634\",\"lastChange\":\"0:01:19.62\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8a:68\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3737238297\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"86405342\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.133\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:25\",\"info\":{\"portInfoList\":[{\"flow\":877633,\"inBytes\":3368897260,\"inFlow\":860782,\"lastChangeTime\":\"0:01:20.07\",\"lastInBytes\":3368897260,\"lastOutBytes\":3578177938,\"outBytes\":3578177938,\"outFlow\":16850,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404477,\"inBytes\":1197678540,\"inFlow\":395733,\"lastChangeTime\":\"0:01:20.12\",\"lastInBytes\":1197678540,\"lastOutBytes\":3757569680,\"outBytes\":3757569680,\"outFlow\":8743,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":404909,\"inBytes\":1238748425,\"inFlow\":396244,\"lastChangeTime\":\"0:01:20.16\",\"lastInBytes\":1238748425,\"lastOutBytes\":2701967339,\"outBytes\":2701967339,\"outFlow\":8664,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406118,\"inBytes\":2929134371,\"inFlow\":396250,\"lastChangeTime\":\"0:01:19.52\",\"lastInBytes\":2929134371,\"lastOutBytes\":1239820470,\"outBytes\":1239820470,\"outFlow\":9867,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":270804,\"inBytes\":278474835,\"inFlow\":264055,\"lastChangeTime\":\"235 days, 22:10:13.32\",\"lastInBytes\":278474835,\"lastOutBytes\":2839237212,\"outBytes\":2839237212,\"outFlow\":6748,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":407116,\"inBytes\":1948991258,\"inFlow\":397172,\"lastChangeTime\":\"0:01:19.96\",\"lastInBytes\":1948991258,\"lastOutBytes\":1799504491,\"outBytes\":1799504491,\"outFlow\":9944,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":960402,\"inBytes\":896092371,\"inFlow\":935190,\"lastChangeTime\":\"184 days, 9:20:30.20\",\"lastInBytes\":896092371,\"lastOutBytes\":1085698213,\"outBytes\":1085698213,\"outFlow\":25211,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":927484,\"inBytes\":4058331239,\"inFlow\":901090,\"lastChangeTime\":\"226 days, 21:09:31.87\",\"lastInBytes\":4058331239,\"lastOutBytes\":3174994272,\"outBytes\":3174994272,\"outFlow\":26394,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":424747,\"inBytes\":1840105219,\"inFlow\":415489,\"lastChangeTime\":\"0:01:20.76\",\"lastInBytes\":1840105219,\"lastOutBytes\":2781495220,\"outBytes\":2781495220,\"outFlow\":9257,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":415532,\"inBytes\":2649963332,\"inFlow\":406663,\"lastChangeTime\":\"0:01:20.91\",\"lastInBytes\":2649963332,\"lastOutBytes\":2688103176,\"outBytes\":2688103176,\"outFlow\":8869,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":433989,\"inBytes\":1918523439,\"inFlow\":424523,\"lastChangeTime\":\"0:01:21.14\",\"lastInBytes\":1918523439,\"lastOutBytes\":1846663709,\"outBytes\":1846663709,\"outFlow\":9466,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":406076,\"inBytes\":3654669638,\"inFlow\":397183,\"lastChangeTime\":\"225 days, 0:47:10.59\",\"lastInBytes\":3654669638,\"lastOutBytes\":533665646,\"outBytes\":533665646,\"outFlow\":8893,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":918050,\"inBytes\":1335157821,\"inFlow\":899818,\"lastChangeTime\":\"0:01:21.21\",\"lastInBytes\":1335157821,\"lastOutBytes\":3631659394,\"outBytes\":3631659394,\"outFlow\":18232,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1041300,\"inFlow\":0,\"lastChangeTime\":\"253 days, 10:48:42.02\",\"lastInBytes\":1041300,\"lastOutBytes\":65346828,\"outBytes\":65346828,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":32102,\"inFlow\":0,\"lastChangeTime\":\"184 days, 9:23:08.49\",\"lastInBytes\":32102,\"lastOutBytes\":220386,\"outBytes\":220386,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":89,\"inBytes\":814825692,\"inFlow\":1,\"lastChangeTime\":\"226 days, 21:27:05.31\",\"lastInBytes\":814825692,\"lastOutBytes\":3840478034,\"outBytes\":3840478034,\"outFlow\":88,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7814778,\"inBytes\":1500275231,\"inFlow\":187243,\"lastChangeTime\":\"184 days, 9:24:21.17\",\"lastInBytes\":1500275231,\"lastOutBytes\":2792033813,\"outBytes\":2792033813,\"outFlow\":7627535,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.168410000\"}}", + "lastDiagTime": "2026-02-02 14:38:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865657", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:26", + "echoMap": {}, + "deviceId": "1030040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"192298\",\"inUnknownProtos\":\"2079175512\",\"index\":\"634\",\"lastChange\":\"0:01:15.65\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:e0:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1295878556\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"290613548\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.132\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":416120,\"inBytes\":1855524689,\"inFlow\":405229,\"lastChangeTime\":\"464 days, 19:14:06.24\",\"lastInBytes\":1855524689,\"lastOutBytes\":1985071598,\"outBytes\":1985071598,\"outFlow\":10891,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":271609,\"inBytes\":4079819931,\"inFlow\":265004,\"lastChangeTime\":\"95 days, 8:58:33.08\",\"lastInBytes\":4079819931,\"lastOutBytes\":4064672227,\"outBytes\":4064672227,\"outFlow\":6604,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":985008,\"inBytes\":3094623782,\"inFlow\":963899,\"lastChangeTime\":\"28 days, 12:15:20.32\",\"lastInBytes\":3094623782,\"lastOutBytes\":740397966,\"outBytes\":740397966,\"outFlow\":21109,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":884481,\"inBytes\":2059763054,\"inFlow\":863199,\"lastChangeTime\":\"31 days, 10:47:49.60\",\"lastInBytes\":2059763054,\"lastOutBytes\":1510031884,\"outBytes\":1510031884,\"outFlow\":21281,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":883171,\"inBytes\":240504669,\"inFlow\":861439,\"lastChangeTime\":\"31 days, 10:47:39.51\",\"lastInBytes\":240504669,\"lastOutBytes\":3678822916,\"outBytes\":3678822916,\"outFlow\":21731,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":406912,\"inBytes\":1119624399,\"inFlow\":397037,\"lastChangeTime\":\"31 days, 10:47:43.55\",\"lastInBytes\":1119624399,\"lastOutBytes\":2079175512,\"outBytes\":2079175512,\"outFlow\":9874,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":407129,\"inBytes\":66954683,\"inFlow\":397219,\"lastChangeTime\":\"66 days, 8:36:17.62\",\"lastInBytes\":66954683,\"lastOutBytes\":3507159920,\"outBytes\":3507159920,\"outFlow\":9909,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":407261,\"inBytes\":3757380801,\"inFlow\":397350,\"lastChangeTime\":\"169 days, 21:14:55.15\",\"lastInBytes\":3757380801,\"lastOutBytes\":3345853158,\"outBytes\":3345853158,\"outFlow\":9910,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":406861,\"inBytes\":140339487,\"inFlow\":396946,\"lastChangeTime\":\"31 days, 10:47:44.69\",\"lastInBytes\":140339487,\"lastOutBytes\":2202063338,\"outBytes\":2202063338,\"outFlow\":9914,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1126985,\"inBytes\":3386981556,\"inFlow\":1098744,\"lastChangeTime\":\"107 days, 16:42:38.22\",\"lastInBytes\":3386981556,\"lastOutBytes\":3171418159,\"outBytes\":3171418159,\"outFlow\":28241,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":271582,\"inBytes\":2519636634,\"inFlow\":265049,\"lastChangeTime\":\"62 days, 9:03:38.83\",\"lastInBytes\":2519636634,\"lastOutBytes\":2009964793,\"outBytes\":2009964793,\"outFlow\":6533,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":6992114,\"inFlow\":0,\"lastChangeTime\":\"365 days, 21:27:51.49\",\"lastInBytes\":6992114,\"lastOutBytes\":885088916,\"outBytes\":885088916,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":10101734,\"inFlow\":0,\"lastChangeTime\":\"24 days, 11:20:25.43\",\"lastInBytes\":10101734,\"lastOutBytes\":454529574,\"outBytes\":454529574,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":88,\"inBytes\":822885640,\"inFlow\":1,\"lastChangeTime\":\"169 days, 21:24:49.15\",\"lastInBytes\":822885640,\"lastOutBytes\":1489724867,\"outBytes\":1489724867,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.82\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6490090,\"inBytes\":64081415,\"inFlow\":162937,\"lastChangeTime\":\"169 days, 21:15:20.88\",\"lastInBytes\":64081415,\"lastOutBytes\":2881797581,\"outBytes\":2881797581,\"outFlow\":6327152,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.103215000\"}}", + "lastDiagTime": "2026-02-02 14:38:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865658", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:27", + "echoMap": {}, + "deviceId": "1030040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.190.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface190\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"99185\",\"inUnknownProtos\":\"1960527698\",\"index\":\"634\",\"lastChange\":\"253 days, 12:08:59.08\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:bb:dc:6c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"224575187\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"86390809\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"60\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.190.131\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":403121,\"inBytes\":2761841330,\"inFlow\":395238,\"lastChangeTime\":\"114 days, 20:07:36.01\",\"lastInBytes\":2761841330,\"lastOutBytes\":1778288180,\"outBytes\":1778288180,\"outFlow\":7883,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":403871,\"inBytes\":4191717035,\"inFlow\":394063,\"lastChangeTime\":\"236 days, 11:56:19.17\",\"lastInBytes\":4191717035,\"lastOutBytes\":4068553795,\"outBytes\":4068553795,\"outFlow\":9807,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":402961,\"inBytes\":1216991495,\"inFlow\":393259,\"lastChangeTime\":\"236 days, 11:56:05.23\",\"lastInBytes\":1216991495,\"lastOutBytes\":2967411618,\"outBytes\":2967411618,\"outFlow\":9702,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":414854,\"inBytes\":4173231237,\"inFlow\":404020,\"lastChangeTime\":\"168 days, 7:52:55.07\",\"lastInBytes\":4173231237,\"lastOutBytes\":2525083817,\"outBytes\":2525083817,\"outFlow\":10834,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":270040,\"inBytes\":3586768110,\"inFlow\":263085,\"lastChangeTime\":\"0:01:32.12\",\"lastInBytes\":3586768110,\"lastOutBytes\":2238646586,\"outBytes\":2238646586,\"outFlow\":6955,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":404752,\"inBytes\":1612019234,\"inFlow\":395022,\"lastChangeTime\":\"236 days, 11:56:08.61\",\"lastInBytes\":1612019234,\"lastOutBytes\":1960429526,\"outBytes\":1960429526,\"outFlow\":9729,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":404470,\"inBytes\":1640696993,\"inFlow\":394648,\"lastChangeTime\":\"236 days, 11:56:18.98\",\"lastInBytes\":1640696993,\"lastOutBytes\":2284956226,\"outBytes\":2284956226,\"outFlow\":9821,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":80963,\"inBytes\":1577002218,\"inFlow\":77606,\"lastChangeTime\":\"236 days, 11:56:14.02\",\"lastInBytes\":1577002218,\"lastOutBytes\":3619888067,\"outBytes\":3619888067,\"outFlow\":3357,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":404263,\"inBytes\":2085779761,\"inFlow\":394437,\"lastChangeTime\":\"0:01:32.13\",\"lastInBytes\":2085779761,\"lastOutBytes\":4158831660,\"outBytes\":4158831660,\"outFlow\":9825,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":272356,\"inBytes\":1721214084,\"inFlow\":265623,\"lastChangeTime\":\"235 days, 21:42:33.15\",\"lastInBytes\":1721214084,\"lastOutBytes\":2883061054,\"outBytes\":2883061054,\"outFlow\":6733,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1236800,\"inBytes\":1637478532,\"inFlow\":410464,\"lastChangeTime\":\"0:01:32.66\",\"lastInBytes\":1637478532,\"lastOutBytes\":70,\"outBytes\":70,\"outFlow\":826336,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":185,\"inBytes\":121023581,\"inFlow\":53,\"lastChangeTime\":\"263 days, 0:52:55.25\",\"lastInBytes\":121023581,\"lastOutBytes\":612360390,\"outBytes\":612360390,\"outFlow\":132,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":25095078,\"inFlow\":0,\"lastChangeTime\":\"253 days, 12:06:25.30\",\"lastInBytes\":25095078,\"lastOutBytes\":2612747376,\"outBytes\":2612747376,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":87,\"inBytes\":809314926,\"inFlow\":1,\"lastChangeTime\":\"254 days, 10:32:05.89\",\"lastInBytes\":809314926,\"lastOutBytes\":4099356866,\"outBytes\":4099356866,\"outFlow\":86,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:39.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3877692,\"inBytes\":3219705704,\"inFlow\":96372,\"lastChangeTime\":\"253 days, 12:25:19.24\",\"lastInBytes\":3219705704,\"lastOutBytes\":2897816012,\"outBytes\":2897816012,\"outFlow\":3781320,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:22.248895000\"}}", + "lastDiagTime": "2026-02-02 14:38:27", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389105061865659", + "createdBy": "0", + "createdTime": "2025-12-02 11:44:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1030040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.189.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif189\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"104\",\"lastChange\":\"0:10:35.03\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:13:07:ba\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"5\",\"temperature\":\"40\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.189.64\",\"index\":\"104\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"3544013151\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1361\",\"178036\",\"10885\",\"442161\",\"0\",\"0\",\"9286055\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:47\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:11:57.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39680,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":476,\"opticalVoltage\":3325,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":35583,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":467,\"opticalVoltage\":3311,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39423,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":475,\"opticalVoltage\":3299,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":37888,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":469,\"opticalVoltage\":3298,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40959,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":474,\"opticalVoltage\":3327,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36863,\"opticalReceivePower\":0,\"opticalTemperature\":51,\"opticalTransmitPower\":483,\"opticalVoltage\":3326,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40448,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":483,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38655,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":509,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41984,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":470,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38400,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":487,\"opticalVoltage\":3286,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":40448,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":479,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":36863,\"opticalReceivePower\":0,\"opticalTemperature\":53,\"opticalTransmitPower\":479,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38144,\"opticalReceivePower\":0,\"opticalTemperature\":52,\"opticalTransmitPower\":483,\"opticalVoltage\":3380,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39423,\"opticalReceivePower\":0,\"opticalTemperature\":54,\"opticalTransmitPower\":464,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44543,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":472,\"opticalVoltage\":3306,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":44032,\"opticalReceivePower\":0,\"opticalTemperature\":57,\"opticalTransmitPower\":477,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":39680,\"opticalReceivePower\":0,\"opticalTemperature\":56,\"opticalTransmitPower\":483,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41215,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":475,\"opticalVoltage\":3323,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41472,\"opticalReceivePower\":0,\"opticalTemperature\":58,\"opticalTransmitPower\":490,\"opticalVoltage\":3364,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":41215,\"opticalReceivePower\":0,\"opticalTemperature\":59,\"opticalTransmitPower\":457,\"opticalVoltage\":3315,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":38911,\"opticalReceivePower\":0,\"opticalTemperature\":55,\"opticalTransmitPower\":474,\"opticalVoltage\":3313,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":366,\"inBytes\":3907735048,\"inFlow\":43,\"lastChangeTime\":\"23 days, 9:37:14.21\",\"lastInBytes\":3907735048,\"lastOutBytes\":3684385092,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":180,\"opticalTemperature\":56,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":3684385092,\"outFlow\":322,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1832756,\"inBytes\":1803989193,\"inFlow\":2686,\"lastChangeTime\":\"1:16:17.41\",\"lastInBytes\":1803989193,\"lastOutBytes\":1892946922,\"opticalBiasCurrent\":40959,\"opticalReceivePower\":501,\"opticalTemperature\":57,\"opticalTransmitPower\":476,\"opticalVoltage\":3350,\"outBytes\":1892946922,\"outFlow\":1830069,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":315718,\"inBytes\":1714955402,\"inFlow\":37571,\"lastChangeTime\":\"107 days, 10:33:41.66\",\"lastInBytes\":1714955402,\"lastOutBytes\":2468614971,\"opticalBiasCurrent\":36096,\"opticalReceivePower\":586,\"opticalTemperature\":54,\"opticalTransmitPower\":512,\"opticalVoltage\":3311,\"outBytes\":2468614971,\"outFlow\":278146,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":3411531,\"inBytes\":506882572,\"inFlow\":3305960,\"lastChangeTime\":\"51 days, 23:01:32.74\",\"lastInBytes\":506882572,\"lastOutBytes\":1014241900,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":167,\"opticalTemperature\":51,\"opticalTransmitPower\":240,\"opticalVoltage\":3346,\"outBytes\":1014241900,\"outFlow\":105570,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5677275,\"inBytes\":3624174685,\"inFlow\":5499996,\"lastChangeTime\":\"168 days, 23:14:23.94\",\"lastInBytes\":3624174685,\"lastOutBytes\":628594983,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":57,\"opticalTemperature\":48,\"opticalTransmitPower\":242,\"opticalVoltage\":3328,\"outBytes\":628594983,\"outFlow\":177279,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6391105,\"inBytes\":3503731222,\"inFlow\":6200717,\"lastChangeTime\":\"479 days, 22:21:33.15\",\"lastInBytes\":3503731222,\"lastOutBytes\":2413085483,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":236,\"opticalTemperature\":52,\"opticalTransmitPower\":239,\"opticalVoltage\":3342,\"outBytes\":2413085483,\"outFlow\":190387,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4080007,\"inBytes\":3146894817,\"inFlow\":3952220,\"lastChangeTime\":\"23 days, 11:17:12.93\",\"lastInBytes\":3146894817,\"lastOutBytes\":3874943157,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":154,\"opticalTemperature\":50,\"opticalTransmitPower\":243,\"opticalVoltage\":3316,\"outBytes\":3874943157,\"outFlow\":127786,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3102953,\"inBytes\":904313167,\"inFlow\":3003175,\"lastChangeTime\":\"295 days, 13:25:59.15\",\"lastInBytes\":904313167,\"lastOutBytes\":2260165158,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":313,\"opticalTemperature\":52,\"opticalTransmitPower\":244,\"opticalVoltage\":3340,\"outBytes\":2260165158,\"outFlow\":99778,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4054286,\"inBytes\":1562191161,\"inFlow\":3930342,\"lastChangeTime\":\"297 days, 2:18:18.62\",\"lastInBytes\":1562191161,\"lastOutBytes\":2358081560,\"opticalBiasCurrent\":19224,\"opticalReceivePower\":7,\"opticalTemperature\":54,\"opticalTransmitPower\":240,\"opticalVoltage\":3342,\"outBytes\":2358081560,\"outFlow\":123943,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7512607,\"inBytes\":2338794612,\"inFlow\":7273513,\"lastChangeTime\":\"101 days, 1:02:22.88\",\"lastInBytes\":2338794612,\"lastOutBytes\":263696403,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":218,\"opticalTemperature\":49,\"opticalTransmitPower\":238,\"opticalVoltage\":3352,\"outBytes\":263696403,\"outFlow\":239093,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4790369,\"inBytes\":2977901347,\"inFlow\":4645402,\"lastChangeTime\":\"38 days, 2:16:11.48\",\"lastInBytes\":2977901347,\"lastOutBytes\":3588724669,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":111,\"opticalTemperature\":48,\"opticalTransmitPower\":237,\"opticalVoltage\":3306,\"outBytes\":3588724669,\"outFlow\":144966,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7013361,\"inBytes\":2291250111,\"inFlow\":6787528,\"lastChangeTime\":\"101 days, 1:30:57.11\",\"lastInBytes\":2291250111,\"lastOutBytes\":933641028,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":145,\"opticalTemperature\":52,\"opticalTransmitPower\":239,\"opticalVoltage\":3352,\"outBytes\":933641028,\"outFlow\":225832,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5506067,\"inBytes\":3838406626,\"inFlow\":5336951,\"lastChangeTime\":\"297 days, 2:38:18.47\",\"lastInBytes\":3838406626,\"lastOutBytes\":3392615234,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":107,\"opticalTemperature\":52,\"opticalTransmitPower\":244,\"opticalVoltage\":3350,\"outBytes\":3392615234,\"outFlow\":169116,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2324188,\"inBytes\":314057039,\"inFlow\":2249661,\"lastChangeTime\":\"297 days, 2:45:13.30\",\"lastInBytes\":314057039,\"lastOutBytes\":2151143680,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":1,\"opticalTemperature\":51,\"opticalTransmitPower\":239,\"opticalVoltage\":3316,\"outBytes\":2151143680,\"outFlow\":74526,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3102247,\"inBytes\":102772591,\"inFlow\":3002994,\"lastChangeTime\":\"344 days, 0:27:00.40\",\"lastInBytes\":102772591,\"lastOutBytes\":1801268566,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":64,\"opticalTemperature\":50,\"opticalTransmitPower\":237,\"opticalVoltage\":3308,\"outBytes\":1801268566,\"outFlow\":99252,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":18390,\"inBytes\":2291700929,\"inFlow\":15223,\"lastChangeTime\":\"52 days, 21:49:08.19\",\"lastInBytes\":2291700929,\"lastOutBytes\":3019971166,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":92,\"opticalTemperature\":48,\"opticalTransmitPower\":244,\"opticalVoltage\":3312,\"outBytes\":3019971166,\"outFlow\":3167,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":952841,\"inBytes\":2435068607,\"inFlow\":923278,\"lastChangeTime\":\"65 days, 11:24:11.81\",\"lastInBytes\":2435068607,\"lastOutBytes\":2117034020,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":2,\"opticalTemperature\":50,\"opticalTransmitPower\":240,\"opticalVoltage\":3328,\"outBytes\":2117034020,\"outFlow\":29562,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1132944,\"inBytes\":299520222,\"inFlow\":1096430,\"lastChangeTime\":\"344 days, 2:46:08.01\",\"lastInBytes\":299520222,\"lastOutBytes\":3351897898,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":19,\"opticalTemperature\":50,\"opticalTransmitPower\":241,\"opticalVoltage\":3318,\"outBytes\":3351897898,\"outFlow\":36513,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":243,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1550434,\"inBytes\":2895514792,\"inFlow\":1500463,\"lastChangeTime\":\"52 days, 21:49:02.87\",\"lastInBytes\":2895514792,\"lastOutBytes\":1748952704,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":450,\"opticalTemperature\":46,\"opticalTransmitPower\":237,\"opticalVoltage\":3350,\"outBytes\":1748952704,\"outFlow\":49970,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3330,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1133183,\"inBytes\":1463031667,\"inFlow\":1096376,\"lastChangeTime\":\"344 days, 3:07:03.13\",\"lastInBytes\":1463031667,\"lastOutBytes\":339530699,\"opticalBiasCurrent\":14039,\"opticalReceivePower\":3,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3374,\"outBytes\":339530699,\"outFlow\":36807,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":244,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14904,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":46469,\"inFlow\":0,\"lastChangeTime\":\"344 days, 2:45:01.11\",\"lastInBytes\":46469,\"lastOutBytes\":18369715,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":244,\"opticalVoltage\":3318,\"outBytes\":18369715,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":22315,\"inBytes\":3251592129,\"inFlow\":10552,\"lastChangeTime\":\"0:03:24.41\",\"lastInBytes\":3251592129,\"lastOutBytes\":1014166083,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1014166083,\"outFlow\":11762,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":25500641,\"inBytes\":3662919919,\"inFlow\":9553819,\"lastChangeTime\":\"0:03:23.80\",\"lastInBytes\":3662919919,\"lastOutBytes\":3464299366,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3464299366,\"outFlow\":15946822,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":27787,\"inBytes\":653627713,\"inFlow\":14014,\"lastChangeTime\":\"8 days, 8:17:42.87\",\"lastInBytes\":653627713,\"lastOutBytes\":1815087607,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1815087607,\"outFlow\":13772,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":300,\"inBytes\":502586284,\"inFlow\":13,\"lastChangeTime\":\"365 days, 1:56:51.05\",\"lastInBytes\":502586284,\"lastOutBytes\":3603709663,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3603709663,\"outFlow\":286,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1425971,\"inBytes\":3063567235,\"inFlow\":40894,\"lastChangeTime\":\"104 days, 23:16:27.94\",\"lastInBytes\":3063567235,\"lastOutBytes\":1815072751,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1815072751,\"outFlow\":1385076,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6523490,\"inBytes\":3386584035,\"inFlow\":399019,\"lastChangeTime\":\"0:23:04.77\",\"lastInBytes\":3386584035,\"lastOutBytes\":321415617,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":321415617,\"outFlow\":6124470,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":11772471,\"inBytes\":4021740994,\"inFlow\":648041,\"lastChangeTime\":\"0:23:01.95\",\"lastInBytes\":4021740994,\"lastOutBytes\":2633626727,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2633626727,\"outFlow\":11124429,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":11640421,\"inBytes\":378953248,\"inFlow\":613566,\"lastChangeTime\":\"0:23:01.99\",\"lastInBytes\":378953248,\"lastOutBytes\":2239018495,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2239018495,\"outFlow\":11026854,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16006392,\"inBytes\":2785790355,\"inFlow\":416662,\"lastChangeTime\":\"0:23:04.81\",\"lastInBytes\":2785790355,\"lastOutBytes\":1695972967,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1695972967,\"outFlow\":15589729,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":745,\"inBytes\":2455314462,\"inFlow\":195,\"lastChangeTime\":\"473 days, 12:54:47.20\",\"lastInBytes\":2455314462,\"lastOutBytes\":2801794273,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2801794273,\"outFlow\":550,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":500,\"inBytes\":1788715764,\"inFlow\":131,\"lastChangeTime\":\"473 days, 12:55:55.74\",\"lastInBytes\":1788715764,\"lastOutBytes\":989540636,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":989540636,\"outFlow\":368,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":6072349,\"inBytes\":4031367879,\"inFlow\":52166,\"lastChangeTime\":\"22 days, 21:57:39.88\",\"lastInBytes\":4031367879,\"lastOutBytes\":3951994597,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3951994597,\"outFlow\":6020182,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":245189,\"inBytes\":2965402974,\"inFlow\":7790,\"lastChangeTime\":\"101 days, 2:46:12.05\",\"lastInBytes\":2965402974,\"lastOutBytes\":3763592130,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3763592130,\"outFlow\":237398,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":347,\"inBytes\":1223340675,\"inFlow\":52,\"lastChangeTime\":\"461 days, 23:44:36.77\",\"lastInBytes\":1223340675,\"lastOutBytes\":149126183,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":149126183,\"outFlow\":295,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":497,\"inBytes\":1210446341,\"inFlow\":131,\"lastChangeTime\":\"52 days, 22:29:08.69\",\"lastInBytes\":1210446341,\"lastOutBytes\":962912370,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":962912370,\"outFlow\":365,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":296,\"inBytes\":224888411,\"inFlow\":9,\"lastChangeTime\":\"473 days, 14:04:51.53\",\"lastInBytes\":224888411,\"lastOutBytes\":3656715050,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3656715050,\"outFlow\":287,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2856263343,\"inFlow\":0,\"lastChangeTime\":\"473 days, 13:21:57.92\",\"lastInBytes\":2856263343,\"lastOutBytes\":267572008,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":267572008,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"297 days, 2:08:50.74\",\"lastInBytes\":0,\"lastOutBytes\":1188,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1188,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"52 days, 22:42:10.41\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1568552874,\"inFlow\":0,\"lastChangeTime\":\"44 days, 22:20:43.02\",\"lastInBytes\":1568552874,\"lastOutBytes\":150221196,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":150221196,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":337963492,\"inFlow\":0,\"lastChangeTime\":\"65 days, 9:55:06.04\",\"lastInBytes\":337963492,\"lastOutBytes\":1024312857,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1024312857,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:29.772679000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "603981270648628775", + "createdBy": "0", + "createdTime": "2024-11-19 11:31:31", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:29", + "echoMap": {}, + "deviceId": "1031110001", + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.189.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.81\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"112 days, 11:43:52.21\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"10625489\",\"inErrors\":\"0\",\"inNUcastPkts\":\"28045518\",\"inOctets\":\"3450332853\",\"inUcastPkts\":\"1588758116\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"28:e4:24:cb:41:d1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1307163773\",\"outQLen\":\"0\",\"outUcastPkts\":\"1549245520\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.189.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1032": { + "ndmAlarmHost": [], + "ndmCamera": [ + { + "id": "701967698216627200", + "createdBy": null, + "createdTime": "2025-11-20 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:00", + "echoMap": {}, + "deviceId": "1032060001", + "name": "[131](10)吴中路基地检修库出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.8", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080131", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627201", + "createdBy": null, + "createdTime": "2025-11-20 00:00:00", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:00", + "echoMap": {}, + "deviceId": "1032060002", + "name": "[130](10)吴中路基地检修库39道西2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080130", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627202", + "createdBy": null, + "createdTime": "2025-11-20 00:00:00", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "deviceId": "1032060003", + "name": "[144](10)吴中路基地检修库平交道北", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080144", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627203", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2025-12-27 03:50:04", + "echoMap": {}, + "deviceId": "1032060004", + "name": "[132](10)吴中路基地检修库东通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080132", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627204", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "deviceId": "1032060005", + "name": "[145](10)吴中路基地检修库101仓库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080145", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627205", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:01", + "echoMap": {}, + "deviceId": "1032060006", + "name": "[127](10)吴中路基地检修库36-38道西", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080127", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627206", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "deviceId": "1032060007", + "name": "[149](10)吴中路基地检修库东北出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080149", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627207", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:01", + "echoMap": {}, + "deviceId": "1032060008", + "name": "[126](10)吴中路基地检修库34-35道西", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080126", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627208", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "deviceId": "1032060009", + "name": "[143](10)吴中路基地检修库101仓库1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080143", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627209", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:01", + "echoMap": {}, + "deviceId": "1032060010", + "name": "[129](10)吴中路基地检修库39道西1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080129", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627210", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2025-12-28 06:32:04", + "echoMap": {}, + "deviceId": "1032060011", + "name": "[167](10)吴中路基地检修库平交道南2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080167", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627211", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:01", + "echoMap": {}, + "deviceId": "1032060012", + "name": "[128](10)吴中路基地检修库37-38道西", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080128", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627212", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:05", + "echoMap": {}, + "deviceId": "1032060013", + "name": "[170](10)吴中路基地东门人闸", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080170", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627213", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:58", + "echoMap": {}, + "deviceId": "1032060014", + "name": "[208](10)吴中路基地联合车库3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002026006080208", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627214", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1032060015", + "name": "[008](10)吴中路基地停车2库消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001005080008", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627215", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:06", + "echoMap": {}, + "deviceId": "1032060016", + "name": "[206](10)吴中路基地联合车库1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.70", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002026006080206", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627216", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:59", + "echoMap": {}, + "deviceId": "1032060017", + "name": "[207](10)吴中路基地联合车库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002026006080207", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627217", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:50", + "echoMap": {}, + "deviceId": "1032060018", + "name": "[173](10)吴中路基地周界8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080173", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627218", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:50", + "echoMap": {}, + "deviceId": "1032060019", + "name": "[174](10)吴中路基地周界9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080174", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627219", + "createdBy": null, + "createdTime": "2025-11-20 00:00:01", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "deviceId": "1032060020", + "name": "[202](10)吴中路基地周界3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080202", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627220", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:05:50", + "echoMap": {}, + "deviceId": "1032060021", + "name": "[203](10)吴中路基地周界1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080203", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627221", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:02", + "echoMap": {}, + "deviceId": "1032060022", + "name": "[091](10)吴中路基地经一路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080091", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627222", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "deviceId": "1032060023", + "name": "[184](10)吴中路基地洗车库北道路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080184", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627223", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:02", + "echoMap": {}, + "deviceId": "1032060024", + "name": "[125](10)吴中路基地检修库32道西", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080125", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627224", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "deviceId": "1032060025", + "name": "[189](10)吴中路基地垃圾房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080189", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627225", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1032060026", + "name": "[121](10)吴中路基地综合楼机房泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003011005080121", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627226", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:02", + "echoMap": {}, + "deviceId": "1032060027", + "name": "[124](10)吴中路基地检修库西通道", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080124", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627227", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:10", + "echoMap": {}, + "deviceId": "1032060028", + "name": "[146](10)吴中路基地检修库北绿化1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080146", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627228", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "deviceId": "1032060029", + "name": "[226](10)吴中路基地东围墙2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080226", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627229", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "deviceId": "1032060030", + "name": "[227](10)吴中路基地南围墙东1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080227", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627230", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "deviceId": "1032060031", + "name": "[225](10)吴中路基地东围墙1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080225", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627231", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:11", + "echoMap": {}, + "deviceId": "1032060032", + "name": "[082](10)吴中路基地纬一路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080082", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627232", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:50", + "echoMap": {}, + "deviceId": "1032060033", + "name": "[200](10)吴中路基地北围墙西1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080200", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627233", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:53", + "echoMap": {}, + "deviceId": "1032060034", + "name": "[177](10)吴中路基地北围墙西3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080177", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627234", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:53", + "echoMap": {}, + "deviceId": "1032060035", + "name": "[178](10)吴中路基地北围墙西4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080178", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627235", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:34:57", + "echoMap": {}, + "deviceId": "1032060036", + "name": "[176](10)吴中路基地北围墙西2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080176", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627236", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-01 05:08:55", + "echoMap": {}, + "deviceId": "1032060037", + "name": "[095](10)吴中路基地基地洗车库1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.145", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002006006080095", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627237", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:53", + "echoMap": {}, + "deviceId": "1032060038", + "name": "[096](10)吴中路基地基地洗车库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.146", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002006006080096", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627238", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-01-31 02:53:55", + "echoMap": {}, + "deviceId": "1032060039", + "name": "[093](10)吴中路基地洗车库北道路2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.143", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080093", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627239", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-01-31 01:23:56", + "echoMap": {}, + "deviceId": "1032060040", + "name": "[094](10)吴中路基地洗车库出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.144", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080094", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627240", + "createdBy": null, + "createdTime": "2025-11-20 00:00:02", + "updatedBy": null, + "updatedTime": "2026-01-31 12:23:55", + "echoMap": {}, + "deviceId": "1032060041", + "name": "[090](10)吴中路基地洗车库北马路2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080090", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627241", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-31 08:14:55", + "echoMap": {}, + "deviceId": "1032060042", + "name": "[092](10)吴中路基地洗车库出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080092", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627242", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-31 06:32:55", + "echoMap": {}, + "deviceId": "1032060043", + "name": "[089](10)吴中路基地洗车库北马路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080089", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627243", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-02-01 07:36:55", + "echoMap": {}, + "deviceId": "1032060044", + "name": "[087](10)吴中路基地纬1路8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080087", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627244", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-29 00:47:55", + "echoMap": {}, + "deviceId": "1032060045", + "name": "[088](10)吴中路基地综合楼外出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003011006080088", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627245", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-26 13:16:54", + "echoMap": {}, + "deviceId": "1032060046", + "name": "[085](10)吴中路基地纬1路6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080085", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627246", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-08 08:00:48", + "echoMap": {}, + "deviceId": "1032060047", + "name": "[086](10)吴中路基地纬1路7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080086", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627247", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-31 05:31:55", + "echoMap": {}, + "deviceId": "1032060048", + "name": "[105](10)吴中路基地弱电综合机房3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080105", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627248", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-08 08:00:48", + "echoMap": {}, + "deviceId": "1032060049", + "name": "[106](10)吴中路基地弱电电源室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080106", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627249", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-31 04:22:55", + "echoMap": {}, + "deviceId": "1032060050", + "name": "[103](10)吴中路基地弱电电源室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080103", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627250", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-31 09:36:55", + "echoMap": {}, + "deviceId": "1032060051", + "name": "[104](10)吴中路基地弱电综合机房2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080104", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627251", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-28 18:33:55", + "echoMap": {}, + "deviceId": "1032060052", + "name": "[102](10)吴中路基地弱电综合机房1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080102", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627252", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-29 01:47:55", + "echoMap": {}, + "deviceId": "1032060053", + "name": "[100](10)吴中路基地信号电源室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.150", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080100", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627253", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-28 18:31:55", + "echoMap": {}, + "deviceId": "1032060054", + "name": "[101](10)吴中路基地控制中心出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001004080101", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627254", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-29 11:37:55", + "echoMap": {}, + "deviceId": "1032060055", + "name": "[099](10)吴中路基地信号电源室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.149", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080099", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627255", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-02-02 10:32:55", + "echoMap": {}, + "deviceId": "1032060056", + "name": "[097](10)吴中路基地洗车库北道路3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.147", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080097", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627256", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-02-01 07:48:55", + "echoMap": {}, + "deviceId": "1032060057", + "name": "[098](10)吴中路基地停车1库平交道南", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.148", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080098", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627257", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-19 04:01:49", + "echoMap": {}, + "deviceId": "1032060058", + "name": "[116](10)吴中路基地信号设备室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080116", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627258", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1032060059", + "name": "[215](10)吴中路基地民用通信机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.7", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080215", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627259", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-19 17:01:49", + "echoMap": {}, + "deviceId": "1032060060", + "name": "[117](10)吴中路基地控制中心电梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080117", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627260", + "createdBy": null, + "createdTime": "2025-11-20 00:00:03", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1032060061", + "name": "[214](10)吴中路基地上层网机房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080214", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627261", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:04", + "echoMap": {}, + "deviceId": "1032060062", + "name": "[023](10)吴中路基地停车1库E区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.9", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080023", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627262", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-29 03:26:55", + "echoMap": {}, + "deviceId": "1032060063", + "name": "[114](10)吴中路基地信号设备室1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080114", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627263", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-30 06:48:55", + "echoMap": {}, + "deviceId": "1032060064", + "name": "[115](10)吴中路基地信号设备室2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080115", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627264", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-06 10:35:26", + "echoMap": {}, + "deviceId": "1032060065", + "name": "[112](10)吴中路基地控制中心出入口3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080112", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627265", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:04", + "echoMap": {}, + "deviceId": "1032060066", + "name": "[211](10)吴中路基地控制中心3F走廊3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.3", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080211", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627266", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-31 05:06:55", + "echoMap": {}, + "deviceId": "1032060067", + "name": "[113](10)吴中路基地控制中心1F西楼梯", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080113", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627267", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:04", + "echoMap": {}, + "deviceId": "1032060068", + "name": "[210](10)吴中路基地控制中心3F走廊2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.2", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080210", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627268", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-31 12:23:55", + "echoMap": {}, + "deviceId": "1032060069", + "name": "[110](10)吴中路基地控制中心1F东楼梯", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080110", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627269", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1032060070", + "name": "[213](10)吴中路基地控制中心气瓶间1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.5", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080213", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627270", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-29 12:53:55", + "echoMap": {}, + "deviceId": "1032060071", + "name": "[111](10)吴中路基地控制中心出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080111", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627271", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:04", + "echoMap": {}, + "deviceId": "1032060072", + "name": "[212](10)吴中路基地调度大厅外走廊", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.4", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080212", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627272", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-31 06:10:55", + "echoMap": {}, + "deviceId": "1032060073", + "name": "[109](10)吴中路基地弱电电源室4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080109", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627273", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "deviceId": "1032060074", + "name": "[107](10)吴中路基地弱电电源室3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080107", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627274", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-30 23:19:55", + "echoMap": {}, + "deviceId": "1032060075", + "name": "[108](10)吴中路基地弱电综合机房4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080108", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627275", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "deviceId": "1032060076", + "name": "[122](10)吴中路基地牵引变B1出入口2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068008001006080122", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627276", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "deviceId": "1032060077", + "name": "[123](10)吴中路基地牵引变B1出入口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068008001006080123", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627277", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-02-01 07:36:55", + "echoMap": {}, + "deviceId": "1032060078", + "name": "[119](10)吴中路基地综合楼1楼出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003011006080119", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627278", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2026-01-31 15:38:55", + "echoMap": {}, + "deviceId": "1032060079", + "name": "[120](10)吴中路基地综合楼2楼出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003011006080120", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627279", + "createdBy": null, + "createdTime": "2025-11-20 00:00:04", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:04", + "echoMap": {}, + "deviceId": "1032060080", + "name": "[209](10)吴中路基地控制中心3F走廊1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.1", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080209", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627280", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-31 01:23:56", + "echoMap": {}, + "deviceId": "1032060081", + "name": "[118](10)吴中路基地控制中心电梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001005080118", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627281", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-29 09:14:55", + "echoMap": {}, + "deviceId": "1032060082", + "name": "[040](10)吴中路基地停车1库G区5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080040", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627282", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-31 15:46:55", + "echoMap": {}, + "deviceId": "1032060083", + "name": "[041](10)吴中路基地停车1库G区6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080041", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627283", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "deviceId": "1032060084", + "name": "[039](10)吴中路基地停车1库G区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080039", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627284", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-27 03:31:55", + "echoMap": {}, + "deviceId": "1032060085", + "name": "[054](10)吴中路基地停车1库电梯间楼梯2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080054", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627285", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-26 11:44:04", + "echoMap": {}, + "deviceId": "1032060086", + "name": "[055](10)吴中路基地停车1库电梯间楼梯4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080055", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627286", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-27 00:00:54", + "echoMap": {}, + "deviceId": "1032060087", + "name": "[052](10)吴中路基地停车1库电梯间楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080052", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627287", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-29 15:28:55", + "echoMap": {}, + "deviceId": "1032060088", + "name": "[053](10)吴中路基地DCC", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003011004080053", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627288", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-29 04:38:55", + "echoMap": {}, + "deviceId": "1032060089", + "name": "[051](10)吴中路基地停车1库电梯间楼梯1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080051", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627289", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-29 03:22:56", + "echoMap": {}, + "deviceId": "1032060090", + "name": "[046](10)吴中路基地停车1库H区11", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080046", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627290", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-02-01 07:41:55", + "echoMap": {}, + "deviceId": "1032060091", + "name": "[050](10)吴中路基地列检库1楼梯3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080050", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627291", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-02-01 05:08:56", + "echoMap": {}, + "deviceId": "1032060092", + "name": "[044](10)吴中路基地停车1库H区9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080044", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627292", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-31 05:06:55", + "echoMap": {}, + "deviceId": "1032060093", + "name": "[045](10)吴中路基地停车1库H区10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080045", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627293", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-31 08:27:55", + "echoMap": {}, + "deviceId": "1032060094", + "name": "[042](10)吴中路基地停车1库G区7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080042", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627294", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-11 22:38:49", + "echoMap": {}, + "deviceId": "1032060095", + "name": "[043](10)吴中路基地停车1库H区8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080043", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627295", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-31 12:57:55", + "echoMap": {}, + "deviceId": "1032060096", + "name": "[068](10)吴中路基地停车1库西2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080068", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627296", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:05", + "echoMap": {}, + "deviceId": "1032060097", + "name": "[137](10)吴中路基地检修库东通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080137", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627297", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-01-12 03:09:48", + "echoMap": {}, + "deviceId": "1032060098", + "name": "[072](10)吴中路基地纬一路向上楼梯", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080072", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627298", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:05", + "echoMap": {}, + "deviceId": "1032060099", + "name": "[138](10)吴中路基地检修库39道西3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080138", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627299", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2026-02-02 06:00:55", + "echoMap": {}, + "deviceId": "1032060100", + "name": "[066](10)吴中路基地停车1库H区12", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080066", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627300", + "createdBy": null, + "createdTime": "2025-11-20 00:00:05", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:05", + "echoMap": {}, + "deviceId": "1032060101", + "name": "[135](10)吴中路基地检修库36-38道东", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080135", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627301", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:53", + "echoMap": {}, + "deviceId": "1032060102", + "name": "[067](10)吴中路基地停车1库H区13", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080067", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627302", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:06", + "echoMap": {}, + "deviceId": "1032060103", + "name": "[136](10)吴中路基地检修库37-38道东", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080136", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627303", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:06", + "echoMap": {}, + "deviceId": "1032060104", + "name": "[133](10)吴中路基地检修库32道东", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080133", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627304", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-14 06:58:49", + "echoMap": {}, + "deviceId": "1032060105", + "name": "[065](10)吴中路基地停车1库G区9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080065", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627305", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:06", + "echoMap": {}, + "deviceId": "1032060106", + "name": "[134](10)吴中路基地检修库34-35道东", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080134", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627306", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:15", + "echoMap": {}, + "deviceId": "1032060107", + "name": "[141](10)吴中路基地检修库北马路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080141", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627307", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060108", + "name": "[142](10)吴中路基地检修库北马路2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080142", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627308", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:06", + "echoMap": {}, + "deviceId": "1032060109", + "name": "[139](10)吴中路基地检修库39道东1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080139", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627309", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060110", + "name": "[140](10)吴中路基地出入场线", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068004001006080140", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627310", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-01 01:58:55", + "echoMap": {}, + "deviceId": "1032060111", + "name": "[063](10)吴中路基地停车1库F区8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080063", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627311", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-31 08:14:55", + "echoMap": {}, + "deviceId": "1032060112", + "name": "[064](10)吴中路基地停车1库G区8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080064", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627312", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-31 10:08:55", + "echoMap": {}, + "deviceId": "1032060113", + "name": "[061](10)吴中路基地停车1库E区10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080061", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627313", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-12 16:58:49", + "echoMap": {}, + "deviceId": "1032060114", + "name": "[062](10)吴中路基地停车1库F区7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080062", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627314", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-19 21:58:49", + "echoMap": {}, + "deviceId": "1032060115", + "name": "[059](10)吴中路基地停车1库西1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080059", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627315", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-29 08:26:55", + "echoMap": {}, + "deviceId": "1032060116", + "name": "[060](10)吴中路基地停车1库E区9", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080060", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627316", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2025-12-28 15:28:05", + "echoMap": {}, + "deviceId": "1032060117", + "name": "[083](10)吴中路基地纬1路地下通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080083", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627317", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060118", + "name": "[153](10)吴中路基地物资仓库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006006006080153", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627318", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-01-31 09:36:55", + "echoMap": {}, + "deviceId": "1032060119", + "name": "[084](10)吴中路基地西北门1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080084", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627319", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060120", + "name": "[154](10)吴中路基地纬二路3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080154", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627320", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "deviceId": "1032060121", + "name": "[080](10)吴中路基地纬1路4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080080", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627321", + "createdBy": null, + "createdTime": "2025-11-20 00:00:06", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060122", + "name": "[151](10)吴中路基地十号楼出入口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006006006080151", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627322", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "deviceId": "1032060123", + "name": "[081](10)吴中路基地纬1路5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080081", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627323", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060124", + "name": "[152](10)吴中路基地物资仓库3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006006006080152", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627324", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "deviceId": "1032060125", + "name": "[078](10)吴中路基地纬1路马路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080078", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627325", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:17", + "echoMap": {}, + "deviceId": "1032060126", + "name": "[148](10)吴中路基地东北铁门2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080148", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627326", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:12", + "echoMap": {}, + "deviceId": "1032060127", + "name": "[079](10)吴中路基地停车2库平交道南", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080079", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627327", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "deviceId": "1032060128", + "name": "[150](10)吴中路基地纬二路4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080150", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627328", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060129", + "name": "[147](10)吴中路基地东北铁门1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002003006080147", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627329", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060130", + "name": "[157](10)吴中路基地仓库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006006006080157", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627330", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060131", + "name": "[155](10)吴中路基地试车线平交道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080155", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627331", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:30:13", + "echoMap": {}, + "deviceId": "1032060132", + "name": "[156](10)吴中路基地试车线平交道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080156", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627332", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-01 05:10:55", + "echoMap": {}, + "deviceId": "1032060133", + "name": "[077](10)吴中路基地纬1路3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080077", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627333", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 01:52:55", + "echoMap": {}, + "deviceId": "1032060134", + "name": "[075](10)吴中路基地停车1库平交道北", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080075", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627334", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 13:36:53", + "echoMap": {}, + "deviceId": "1032060135", + "name": "[076](10)吴中路基地纬1路2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080076", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627335", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-01-20 15:00:50", + "echoMap": {}, + "deviceId": "1032060136", + "name": "[073](10)吴中路基地纬一路地下通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080073", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627336", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-01-29 01:44:55", + "echoMap": {}, + "deviceId": "1032060137", + "name": "[074](10)吴中路基地纬一路东1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080074", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627337", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:07", + "echoMap": {}, + "deviceId": "1032060138", + "name": "[164](10)吴中路基地镟轮库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.36", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002011006080164", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627338", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:07", + "echoMap": {}, + "deviceId": "1032060139", + "name": "[165](10)吴中路基地镟轮库3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.37", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002011006080165", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627339", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:07", + "echoMap": {}, + "deviceId": "1032060140", + "name": "[162](10)吴中路基地检修库平交道南1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080162", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627340", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:07", + "echoMap": {}, + "deviceId": "1032060141", + "name": "[163](10)吴中路基地镟轮库1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.35", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002011006080163", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627341", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:07", + "echoMap": {}, + "deviceId": "1032060142", + "name": "[160](10)吴中路基地纬二路1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.32", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080160", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627342", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:07", + "echoMap": {}, + "deviceId": "1032060143", + "name": "[161](10)吴中路基地镟轮库东", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002011006080161", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627343", + "createdBy": null, + "createdTime": "2025-11-20 00:00:07", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:18", + "echoMap": {}, + "deviceId": "1032060144", + "name": "[158](10)吴中路基地仓库外球", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001004080158", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627344", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060145", + "name": "[159](10)吴中路基地镟轮库西", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002011006080159", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627345", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060146", + "name": "[166](10)吴中路基地镟轮库4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.38", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002011006080166", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627346", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:40:20", + "echoMap": {}, + "deviceId": "1032060147", + "name": "[168](10)吴中路基地东门人闸2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.39", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080168", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627347", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-01-31 22:58:55", + "echoMap": {}, + "deviceId": "1032060148", + "name": "[009](10)吴中路基地停车2库A区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.78", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080009", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627348", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060149", + "name": "[037](10)吴中路基地停车1库1F走廊2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.15", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080037", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627349", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:29:38", + "echoMap": {}, + "deviceId": "1032060150", + "name": "[182](10)吴中路基地经一路2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.47", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080182", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627350", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-01-29 07:41:55", + "echoMap": {}, + "deviceId": "1032060151", + "name": "[007](10)吴中路基地停车2库西通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.77", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080007", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627351", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060152", + "name": "[038](10)吴中路基地停车1库1F走廊3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.16", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080038", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627352", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:00:16", + "echoMap": {}, + "deviceId": "1032060153", + "name": "[183](10)吴中路基地西围墙1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.48", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080183", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627353", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060154", + "name": "[035](10)吴中路基地停车1库E区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.13", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080035", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627354", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060155", + "name": "[180](10)吴中路基地西北门2(需要对焦", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.45", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080180", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627355", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-01-31 12:53:55", + "echoMap": {}, + "deviceId": "1032060156", + "name": "[010](10)吴中路基地停车2库B区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.79", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080010", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627356", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060157", + "name": "[036](10)吴中路基地停车1库E区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.14", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080036", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627357", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-25 22:38:44", + "echoMap": {}, + "deviceId": "1032060158", + "name": "[181](10)吴中路基地经一路", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.46", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080181", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627358", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-01 07:28:55", + "echoMap": {}, + "deviceId": "1032060159", + "name": "[004](10)吴中路基地停车2库C区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.74", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080004", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627359", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060160", + "name": "[025](10)吴中路基地停车1库H区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.11", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080025", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627360", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:33:57", + "echoMap": {}, + "deviceId": "1032060161", + "name": "[175](10)吴中路基地列检库2外出入口6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.43", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080175", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627361", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-01 08:35:55", + "echoMap": {}, + "deviceId": "1032060162", + "name": "[003](10)吴中路基地停车2库B区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.73", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627362", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060163", + "name": "[026](10)吴中路基地停车1库1F走廊1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.12", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080026", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627363", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 12:43:19", + "echoMap": {}, + "deviceId": "1032060164", + "name": "[179](10)吴中路基地停车场主出口1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.44", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080179", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627364", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-01-31 11:13:55", + "echoMap": {}, + "deviceId": "1032060165", + "name": "[006](10)吴中路基地停车2库西通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.76", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080006", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627365", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 13:50:53", + "echoMap": {}, + "deviceId": "1032060166", + "name": "[171](10)吴中路基地周界7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.41", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080171", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627366", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:50", + "echoMap": {}, + "deviceId": "1032060167", + "name": "[005](10)吴中路基地停车2库D区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.75", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080005", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627367", + "createdBy": null, + "createdTime": "2025-11-20 00:00:08", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:08", + "echoMap": {}, + "deviceId": "1032060168", + "name": "[024](10)吴中路基地停车1库西通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.10", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080024", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627368", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:49:55", + "echoMap": {}, + "deviceId": "1032060169", + "name": "[172](10)吴中路基地周界6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.42", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080172", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627369", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:09", + "echoMap": {}, + "deviceId": "1032060170", + "name": "[049](10)吴中路基地停车1库H区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.19", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080049", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627370", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:09", + "echoMap": {}, + "deviceId": "1032060171", + "name": "[047](10)吴中路基地停车1库H区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.17", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080047", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627371", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:09", + "echoMap": {}, + "deviceId": "1032060172", + "name": "[048](10)吴中路基地停车1库H区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.18", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080048", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627372", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:23", + "echoMap": {}, + "deviceId": "1032060173", + "name": "[228](10)吴中路基地南围墙东2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.100", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080228", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627373", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:23", + "echoMap": {}, + "deviceId": "1032060174", + "name": "[169](10)吴中路基地东门人闸3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.40", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080169", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627374", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:35:56", + "echoMap": {}, + "deviceId": "1032060175", + "name": "[002](10)吴中路基地停车2库A区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.72", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627375", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-01-31 09:08:57", + "echoMap": {}, + "deviceId": "1032060176", + "name": "[001](10)吴中路基地停车2库西通道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.71", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627376", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-01-20 20:48:50", + "echoMap": {}, + "deviceId": "1032060177", + "name": "[020](10)吴中路基地停车1库H区6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.89", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080020", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627377", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060178", + "name": "[194](10)吴中路基地南围墙4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.58", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080194", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627378", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-01-11 09:50:48", + "echoMap": {}, + "deviceId": "1032060179", + "name": "[217](10)吴中路基地博物馆走廊", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.26", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080217", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627379", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-01-26 13:38:57", + "echoMap": {}, + "deviceId": "1032060180", + "name": "[019](10)吴中路基地停车1库G区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.88", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080019", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627380", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060181", + "name": "[195](10)吴中路基地南围墙5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.59", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080195", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627381", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:09", + "echoMap": {}, + "deviceId": "1032060182", + "name": "[218](10)吴中路基地控制中心4F走廊1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.27", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080218", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627382", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:09", + "echoMap": {}, + "deviceId": "1032060183", + "name": "[070](10)吴中路基地停车1库H区5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.24", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080070", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627383", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060184", + "name": "[192](10)吴中路基地南围墙2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.56", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080192", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627384", + "createdBy": null, + "createdTime": "2025-11-20 00:00:09", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:09", + "echoMap": {}, + "deviceId": "1032060185", + "name": "[071](10)吴中路基地停车1库平交道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.25", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080071", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627385", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060186", + "name": "[193](10)吴中路基地南围墙3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.57", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080193", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627386", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060187", + "name": "[016](10)吴中路基地停车1库F区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.85", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080016", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627387", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-10 00:00:00", + "echoMap": {}, + "deviceId": "1032060188", + "name": "[058](10)吴中路基地停车1库1F走廊6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001005080058", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627388", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060189", + "name": "[190](10)吴中路基地南围墙1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.54", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080190", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627389", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-31 15:24:57", + "echoMap": {}, + "deviceId": "1032060190", + "name": "[015](10)吴中路基地停车1库E区5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.84", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080015", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627390", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:10", + "echoMap": {}, + "deviceId": "1032060191", + "name": "[069](10)吴中路基地停车1库消防泵房", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080069", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627391", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060192", + "name": "[191](10)吴中路基地周界10", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.55", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080191", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627392", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-31 11:13:57", + "echoMap": {}, + "deviceId": "1032060193", + "name": "[018](10)吴中路基地停车1库G区1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.87", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080018", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627393", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:10", + "echoMap": {}, + "deviceId": "1032060194", + "name": "[056](10)吴中路基地停车1库1F走廊4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.20", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080056", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627394", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:24", + "echoMap": {}, + "deviceId": "1032060195", + "name": "[187](10)吴中路基地易燃品库1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.52", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006001006080187", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627395", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-01 05:08:58", + "echoMap": {}, + "deviceId": "1032060196", + "name": "[017](10)吴中路基地停车1库F区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.86", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080017", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627396", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2025-11-20 00:00:10", + "echoMap": {}, + "deviceId": "1032060197", + "name": "[057](10)吴中路基地停车1库1F走廊5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080057", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627397", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "deviceId": "1032060198", + "name": "[188](10)吴中路基地易燃品库2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.53", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006001006080188", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627398", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-11 09:50:48", + "echoMap": {}, + "deviceId": "1032060199", + "name": "[219](10)吴中路基地控制中心4F走廊2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.28", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080219", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627399", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-11 09:50:48", + "echoMap": {}, + "deviceId": "1032060200", + "name": "[220](10)吴中路基地控制中心4F走廊3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.29", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080220", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627400", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-31 05:46:57", + "echoMap": {}, + "deviceId": "1032060201", + "name": "[012](10)吴中路基地停车2库D区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.81", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080012", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627401", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "deviceId": "1032060202", + "name": "[185](10)吴中路基地纬二路2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.50", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080185", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627402", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 01:10:57", + "echoMap": {}, + "deviceId": "1032060203", + "name": "[011](10)吴中路基地停车2库C区2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.80", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002002006080011", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627403", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:25", + "echoMap": {}, + "deviceId": "1032060204", + "name": "[186](10)吴中路基地易燃品库大门", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.51", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068006001006080186", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627404", + "createdBy": null, + "createdTime": "2025-11-20 00:00:10", + "updatedBy": null, + "updatedTime": "2026-01-29 08:22:57", + "echoMap": {}, + "deviceId": "1032060205", + "name": "[014](10)吴中路基地停车1库E区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.83", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080014", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627405", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-11 11:13:49", + "echoMap": {}, + "deviceId": "1032060206", + "name": "[013](10)吴中路基地停车1库西通道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.82", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080013", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627406", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:13:50", + "echoMap": {}, + "deviceId": "1032060207", + "name": "[205](10)吴中路基地峒口", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.69", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068004011006080205", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627407", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-01 01:14:58", + "echoMap": {}, + "deviceId": "1032060208", + "name": "[034](10)吴中路基地停车1库G区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.99", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080034", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627408", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:50", + "echoMap": {}, + "deviceId": "1032060209", + "name": "[204](10)吴中路基地周界2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.68", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080204", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627409", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-31 11:45:59", + "echoMap": {}, + "deviceId": "1032060210", + "name": "[031](10)吴中路基地停车1库F区4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.96", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080031", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627410", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:51", + "echoMap": {}, + "deviceId": "1032060211", + "name": "[201](10)吴中路基地轨道2", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.65", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068004006006080201", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627411", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-11 09:50:48", + "echoMap": {}, + "deviceId": "1032060212", + "name": "[224](10)吴中路基地控制中心4F走廊6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.33", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080224", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627412", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-01 03:44:00", + "echoMap": {}, + "deviceId": "1032060213", + "name": "[030](10)吴中路基地停车1库F区3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.95", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080030", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627413", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-31 04:20:00", + "echoMap": {}, + "deviceId": "1032060214", + "name": "[033](10)吴中路基地停车1库F区6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.98", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080033", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627414", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:03:51", + "echoMap": {}, + "deviceId": "1032060215", + "name": "[199](10)吴中路基地轨道1", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.63", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068004006006080199", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627415", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-31 10:26:01", + "echoMap": {}, + "deviceId": "1032060216", + "name": "[222](10)吴中路基地控制中心4F走廊4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.31", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080222", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627416", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-01 23:20:01", + "echoMap": {}, + "deviceId": "1032060217", + "name": "[032](10)吴中路基地停车1库F区5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.97", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080032", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627417", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-11 09:50:49", + "echoMap": {}, + "deviceId": "1032060218", + "name": "[223](10)吴中路基地控制中心4F走廊5", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.32", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080223", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627418", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-31 22:59:01", + "echoMap": {}, + "deviceId": "1032060219", + "name": "[027](10)吴中路基地停车1库E区6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.92", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080027", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627419", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:29", + "echoMap": {}, + "deviceId": "1032060220", + "name": "[197](10)吴中路基地周界16", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.61", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080197", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627420", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-01 07:42:01", + "echoMap": {}, + "deviceId": "1032060221", + "name": "[022](10)吴中路基地停车1库西通道3", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.91", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080022", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627421", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 14:02:57", + "echoMap": {}, + "deviceId": "1032060222", + "name": "[198](10)吴中路基地周界4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.62", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068005001006080198", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627422", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-11 09:50:49", + "echoMap": {}, + "deviceId": "1032060223", + "name": "[221](10)吴中路基地控制中心4F走廊7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.30", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080221", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627423", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 09:58:02", + "echoMap": {}, + "deviceId": "1032060224", + "name": "[029](10)吴中路基地停车1库E区8", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.94", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080029", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627424", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-12 07:42:49", + "echoMap": {}, + "deviceId": "1032060225", + "name": "[028](10)吴中路基地停车1库E区7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.93", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080028", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627425", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-02-02 13:01:30", + "echoMap": {}, + "deviceId": "1032060226", + "name": "[196](10)吴中路基地南围墙6", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.245.60", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068007001006080196", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "701967698216627426", + "createdBy": null, + "createdTime": "2025-11-20 00:00:11", + "updatedBy": null, + "updatedTime": "2026-01-31 22:54:02", + "echoMap": {}, + "deviceId": "1032060227", + "name": "[021](10)吴中路基地停车1库H区7", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.244.90", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068002001006080021", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "713077094984214546", + "createdBy": null, + "createdTime": "2025-12-22 00:00:00", + "updatedBy": null, + "updatedTime": "2025-12-22 00:00:00", + "echoMap": {}, + "deviceId": "1032060228", + "name": "[229](10)吴中路基地控制中心3F走廊4", + "manufacturer": "海康", + "state": true, + "model": "haikang", + "ipAddress": "10.18.246.34", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068003001006080229", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": 80, + "onvifUsername": "admin", + "onvifPassword": "abcd1234", + "onvifMajorIndex": 0, + "onvifMinorIndex": 1, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": null, + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "132", + "cameraType": "100", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmDecoder": [ + { + "id": "707147622049136925", + "createdBy": "0", + "createdTime": "2025-12-08 10:06:04", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": "1080070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"112336\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3675651423\",\"inUcastPkts\":\"369271742\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:2d:ee:34\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3192109401\",\"outQLen\":\"0\",\"outUcastPkts\":\"214450860\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.244.176\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:50\",\"stCommonInfo\":{\"设备ID\":\"8L091CAPAZ66619\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"37\",\"CPU使用率\":\"7\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "723106543700053557", + "createdBy": null, + "createdTime": "2026-01-27 14:34:39", + "updatedBy": null, + "updatedTime": "2026-01-27 14:34:39", + "echoMap": {}, + "deviceId": null, + "name": "机房键盘", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.51", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "723106543700053579", + "createdBy": null, + "createdTime": "2026-01-27 14:35:42", + "updatedBy": null, + "updatedTime": "2026-01-27 14:36:03", + "echoMap": {}, + "deviceId": null, + "name": "安保室键盘1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.52", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "723106543700053592", + "createdBy": null, + "createdTime": "2026-01-27 14:35:53", + "updatedBy": null, + "updatedTime": "2026-01-27 14:37:04", + "echoMap": {}, + "deviceId": null, + "name": "安保室键盘2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.53", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "723106547995020290", + "createdBy": null, + "createdTime": "2026-01-27 14:36:04", + "updatedBy": null, + "updatedTime": "2026-01-27 14:37:05", + "echoMap": {}, + "deviceId": null, + "name": "安保室键盘3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.54", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "141", + "community": null, + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmMediaServer": [], + "ndmNvr": [ + { + "id": "707147622049136902", + "createdBy": "0", + "createdTime": "2025-12-08 10:04:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:51", + "echoMap": {}, + "deviceId": "1080050003", + "name": "录像机2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.23", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068000000411000003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"63899552\",\"inErrors\":\"1704939\",\"inNUcastPkts\":\"65785133\",\"inOctets\":\"2865079093\",\"inUcastPkts\":\"2108429072\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ae:ab\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3616353034\",\"outQLen\":\"0\",\"outUcastPkts\":\"839976408\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4300\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4400\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4380\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4360\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.244.23\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:51\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":629414235,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node24423\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"56\",\"CPU使用率\":\"27\"}}", + "lastDiagTime": "2026-02-02 14:34:51", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.244.23" + }, + { + "id": "707147622049136903", + "createdBy": "0", + "createdTime": "2025-12-08 10:04:51", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:52", + "echoMap": {}, + "deviceId": "1080050002", + "name": "录像机1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.22", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068000000411000002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond1\",\"ifType\":\"6\",\"inDiscards\":\"63900170\",\"inErrors\":\"1704934\",\"inNUcastPkts\":\"53001230\",\"inOctets\":\"149357633\",\"inUcastPkts\":\"3997005619\",\"inUnknownProtos\":\"0\",\"index\":\"8\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"e8:61:1f:51:ae:b5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2845502979\",\"outQLen\":\"0\",\"outUcastPkts\":\"2034394217\",\"specific\":\"0.0\",\"speed\":\"2000000000\"},\"cdFanInfo\":[{\"索引号\":\"1\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"2\",\"风扇转速(rpm)\":\"4500\"},{\"索引号\":\"3\",\"风扇转速(rpm)\":\"4340\"},{\"索引号\":\"4\",\"风扇转速(rpm)\":\"4330\"},{\"索引号\":\"5\",\"风扇转速(rpm)\":\"4340\"}],\"cdPowerSupplyInfo\":[{\"索引号\":\"1\",\"电源状态\":\"2\"}],\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.244.22\",\"index\":\"8\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:34:52\",\"info\":{\"diskHealth\":[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],\"groupInfoList\":[{\"freeSize\":629414235,\"state\":1,\"stateValue\":\"正常\",\"totalSize\":1280555935}]},\"stCommonInfo\":{\"设备ID\":\"\",\"软件版本\":\"X86_64v2.3.1 417-2022.9.26\",\"设备厂商\":\"HIKVISION\",\"设备别名\":\"node24422\",\"设备型号\":\"DS-ASH036A-A;\",\"硬件版本\":\"hard_version:42DA8\",\"内存使用率\":\"60\",\"CPU使用率\":\"25\"}}", + "lastDiagTime": "2026-02-02 14:34:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true, + "recordCheckEnabled": false, + "clusterList": "10.18.244.22" + }, + { + "id": "707147622049136904", + "createdBy": "0", + "createdTime": "2025-12-08 10:04:51", + "updatedBy": null, + "updatedTime": "2025-12-08 10:04:51", + "echoMap": {}, + "deviceId": "1080050001", + "name": "录像机集群", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.21", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "01068000000411000001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "onvifMajorIndex": null, + "onvifMinorIndex": null, + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "118", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": false, + "recordCheckEnabled": true, + "clusterList": "10.18.244.22;10.18.244.23" + } + ], + "ndmSecurityBox": [ + { + "id": "719017962467524929", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:14", + "echoMap": {}, + "deviceId": "1080030042", + "name": "安防箱42", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.142", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:36:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524930", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:14", + "echoMap": {}, + "deviceId": "1080030041", + "name": "安防箱41", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.141", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261481\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69338424\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"201 days, 15:33:01.87\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261214\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:15:41\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.264,\"status\":1,\"voltage\":26.097002},{\"current\":0.25800002,\"status\":1,\"voltage\":26.097002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.097002},{\"current\":0.27100003,\"status\":1,\"voltage\":26.097002},{\"current\":0.26500002,\"status\":1,\"voltage\":26.097002},{\"current\":0.256,\"status\":1,\"voltage\":26.097002},{\"current\":0.26000002,\"status\":1,\"voltage\":26.097002},{\"current\":0.24300002,\"status\":1,\"voltage\":26.097002},{\"current\":0.001,\"status\":1,\"voltage\":26.097002},{\"current\":0.001,\"status\":1,\"voltage\":27.085001},{\"current\":0.003,\"status\":1,\"voltage\":27.085001},{\"current\":0.001,\"status\":1,\"voltage\":27.085001},{\"current\":0.001,\"status\":1,\"voltage\":27.085001},{\"current\":0.001,\"status\":1,\"voltage\":27.085001},{\"current\":0.001,\"status\":1,\"voltage\":27.085001},{\"current\":0.001,\"status\":1,\"voltage\":27.085001}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208304753\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:14", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524931", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:15", + "echoMap": {}, + "deviceId": "1080030040", + "name": "安防箱40", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.140", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261314\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329738\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"9 days, 5:09:05.56\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:14:92\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24200001,\"status\":1,\"voltage\":26.896002},{\"current\":0.23500001,\"status\":1,\"voltage\":26.896002},{\"current\":0.24100001,\"status\":1,\"voltage\":26.896002},{\"current\":0.23200001,\"status\":1,\"voltage\":26.896002},{\"current\":0.22500001,\"status\":1,\"voltage\":26.896002},{\"current\":0.25300002,\"status\":1,\"voltage\":26.896002},{\"current\":0.24900001,\"status\":1,\"voltage\":26.896002},{\"current\":0.259,\"status\":1,\"voltage\":26.896002},{\"current\":0.001,\"status\":1,\"voltage\":26.896002},{\"current\":0.001,\"status\":1,\"voltage\":27.387001},{\"current\":0.003,\"status\":1,\"voltage\":27.387001},{\"current\":0.001,\"status\":1,\"voltage\":27.387001},{\"current\":0.001,\"status\":1,\"voltage\":27.387001},{\"current\":0.001,\"status\":1,\"voltage\":27.387001},{\"current\":0.001,\"status\":1,\"voltage\":27.387001},{\"current\":0.001,\"status\":1,\"voltage\":27.387001}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0012512208304750\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524932", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:15", + "echoMap": {}, + "deviceId": "1080030039", + "name": "安防箱39", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.139", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1141099\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"62735730\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"376 days, 9:49:24.55\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1141104\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:ba\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.403002},{\"current\":0.001,\"status\":1,\"voltage\":28.403002},{\"current\":0.22800002,\"status\":1,\"voltage\":28.403002},{\"current\":0.26900002,\"status\":1,\"voltage\":28.403002},{\"current\":0.238,\"status\":1,\"voltage\":28.403002},{\"current\":0.001,\"status\":1,\"voltage\":28.403002},{\"current\":0.001,\"status\":1,\"voltage\":28.403002},{\"current\":0.001,\"status\":1,\"voltage\":28.403002},{\"current\":0.001,\"status\":0,\"voltage\":28.403002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208301401\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524933", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:15", + "echoMap": {}, + "deviceId": "1080030038", + "name": "安防箱38", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.138", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"457319\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"25142443\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"457324\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:37\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.771002},{\"current\":0.001,\"status\":1,\"voltage\":28.771002},{\"current\":0.294,\"status\":1,\"voltage\":28.771002},{\"current\":0.001,\"status\":1,\"voltage\":28.771002},{\"current\":0.215,\"status\":1,\"voltage\":28.771002},{\"current\":0.001,\"status\":1,\"voltage\":28.771002},{\"current\":0.001,\"status\":1,\"voltage\":28.771002},{\"current\":0.001,\"status\":1,\"voltage\":28.771002},{\"current\":0.001,\"status\":0,\"voltage\":28.771002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[1,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208302103\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524934", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:15", + "echoMap": {}, + "deviceId": "1080030037", + "name": "安防箱37", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.137", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"458731\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"25220363\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"458736\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:13:56\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":29.12},{\"current\":0.001,\"status\":1,\"voltage\":29.12},{\"current\":0.282,\"status\":1,\"voltage\":29.12},{\"current\":0.254,\"status\":1,\"voltage\":29.12},{\"current\":0.001,\"status\":1,\"voltage\":29.12},{\"current\":0.001,\"status\":1,\"voltage\":29.12},{\"current\":0.001,\"status\":1,\"voltage\":29.12},{\"current\":0.001,\"status\":1,\"voltage\":29.12},{\"current\":0.001,\"status\":0,\"voltage\":29.12},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":33,\"switches\":[1,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0010512208304016\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524935", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1080030036", + "name": "安防箱36", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.136", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"459094\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"25240494\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"459099\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:08:c4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.388},{\"current\":0.001,\"status\":1,\"voltage\":28.388},{\"current\":0.284,\"status\":1,\"voltage\":28.388},{\"current\":0.29500002,\"status\":1,\"voltage\":28.388},{\"current\":0.23,\"status\":1,\"voltage\":28.388},{\"current\":0.22600001,\"status\":1,\"voltage\":28.388},{\"current\":0.001,\"status\":1,\"voltage\":28.388},{\"current\":0.001,\"status\":1,\"voltage\":28.388},{\"current\":0.001,\"status\":0,\"voltage\":28.388},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[1,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208302244\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524936", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1080030035", + "name": "安防箱35", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.135", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261243\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69328940\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"12 days, 3:04:20.52\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261044\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:53\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":28.257002},{\"current\":0.23500001,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":28.257002},{\"current\":0.261,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":28.257002},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0001512208303411\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524937", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:16", + "echoMap": {}, + "deviceId": "1080030034", + "name": "安防箱34", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.134", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329278\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"26 days, 17:36:20.32\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:d2\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":29.061},{\"current\":0.23900001,\"status\":1,\"voltage\":29.061},{\"current\":0.23700002,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":29.061},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0001512208304306\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524938", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1080030033", + "name": "安防箱33", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.133", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69330356\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"26 days, 16:10:13.13\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:e5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":28.641},{\"current\":0.24100001,\"status\":1,\"voltage\":28.641},{\"current\":0.23700002,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":28.641},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208304325\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524939", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1080030032", + "name": "安防箱32", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.132", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329933\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"34 days, 8:33:00.85\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:12:b0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.908},{\"current\":0.001,\"status\":1,\"voltage\":27.908},{\"current\":0.24000001,\"status\":1,\"voltage\":27.908},{\"current\":0.287,\"status\":1,\"voltage\":27.908},{\"current\":0.0,\"status\":1,\"voltage\":27.908},{\"current\":0.0,\"status\":1,\"voltage\":27.908},{\"current\":0.0,\"status\":1,\"voltage\":27.908},{\"current\":0.0,\"status\":1,\"voltage\":27.908},{\"current\":0.0,\"status\":0,\"voltage\":27.908},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0010512208304042\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524940", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:17", + "echoMap": {}, + "deviceId": "1080030031", + "name": "安防箱31", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.131", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1141303\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"62745902\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"388 days, 15:09:36.26\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1141308\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:b5\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":27.697},{\"current\":0.001,\"status\":1,\"voltage\":27.697},{\"current\":0.282,\"status\":1,\"voltage\":27.697},{\"current\":0.26900002,\"status\":1,\"voltage\":27.697},{\"current\":0.29200003,\"status\":1,\"voltage\":27.697},{\"current\":0.268,\"status\":1,\"voltage\":27.697},{\"current\":0.001,\"status\":0,\"voltage\":27.697},{\"current\":0.001,\"status\":1,\"voltage\":27.697},{\"current\":0.001,\"status\":1,\"voltage\":27.697},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":25,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208301908\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:17", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524941", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:18", + "echoMap": {}, + "deviceId": "1080030030", + "name": "安防箱30", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.130", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329019\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"26 days, 17:17:21.14\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:a0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":29.053001},{\"current\":0.001,\"status\":1,\"voltage\":29.053001},{\"current\":0.25300002,\"status\":1,\"voltage\":29.053001},{\"current\":0.246,\"status\":1,\"voltage\":29.053001},{\"current\":0.215,\"status\":1,\"voltage\":29.053001},{\"current\":0.0,\"status\":1,\"voltage\":29.053001},{\"current\":0.0,\"status\":1,\"voltage\":29.053001},{\"current\":0.0,\"status\":1,\"voltage\":29.053001},{\"current\":0.0,\"status\":1,\"voltage\":29.053001},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0001512208303488\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524942", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:18", + "echoMap": {}, + "deviceId": "1080030029", + "name": "安防箱29", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.129", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329702\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"26 days, 14:50:35.59\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:94\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.899002},{\"current\":0.001,\"status\":1,\"voltage\":28.899002},{\"current\":0.23900001,\"status\":1,\"voltage\":28.899002},{\"current\":0.245,\"status\":1,\"voltage\":28.899002},{\"current\":0.24400002,\"status\":1,\"voltage\":28.899002},{\"current\":0.001,\"status\":1,\"voltage\":28.899002},{\"current\":0.0,\"status\":1,\"voltage\":28.899002},{\"current\":0.001,\"status\":1,\"voltage\":28.899002},{\"current\":0.001,\"status\":1,\"voltage\":28.899002},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0001512208304244\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524943", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:18", + "echoMap": {}, + "deviceId": "1080030028", + "name": "安防箱28", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.128", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"3532\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"194264\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3537\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:00\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":28.597002},{\"current\":0.001,\"status\":1,\"voltage\":28.597002},{\"current\":0.23,\"status\":1,\"voltage\":28.597002},{\"current\":0.307,\"status\":1,\"voltage\":28.597002},{\"current\":0.28,\"status\":1,\"voltage\":28.597002},{\"current\":0.21100001,\"status\":1,\"voltage\":28.597002},{\"current\":0.0,\"status\":1,\"voltage\":28.597002},{\"current\":0.001,\"status\":1,\"voltage\":28.597002},{\"current\":0.001,\"status\":0,\"voltage\":28.597002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208302304\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:18", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524944", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1080030027", + "name": "安防箱27", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.127", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"460276\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"25305312\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"460281\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:be\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.580002},{\"current\":0.001,\"status\":1,\"voltage\":28.580002},{\"current\":0.29900002,\"status\":1,\"voltage\":28.580002},{\"current\":0.002,\"status\":1,\"voltage\":28.580002},{\"current\":0.28800002,\"status\":1,\"voltage\":28.580002},{\"current\":0.354,\"status\":1,\"voltage\":28.580002},{\"current\":0.001,\"status\":1,\"voltage\":28.580002},{\"current\":0.001,\"status\":1,\"voltage\":28.580002},{\"current\":0.001,\"status\":0,\"voltage\":28.580002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[1,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208301405\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524945", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1080030026", + "name": "安防箱26", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.126", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1255040\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"68399897\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"172 days, 3:48:16.25\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1255045\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:a7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":29.086},{\"current\":0.001,\"status\":1,\"voltage\":29.086},{\"current\":0.25300002,\"status\":1,\"voltage\":29.086},{\"current\":0.23200001,\"status\":1,\"voltage\":29.086},{\"current\":0.201,\"status\":1,\"voltage\":29.086},{\"current\":0.001,\"status\":1,\"voltage\":29.086},{\"current\":0.0,\"status\":1,\"voltage\":29.086},{\"current\":0.001,\"status\":1,\"voltage\":29.086},{\"current\":0.001,\"status\":1,\"voltage\":29.086},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0001512208301894\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"53\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524946", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:19", + "echoMap": {}, + "deviceId": "1080030025", + "name": "安防箱25", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.125", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329786\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"13 days, 7:20:26.42\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:af\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.223,\"status\":1,\"voltage\":28.091002},{\"current\":0.29700002,\"status\":1,\"voltage\":28.091002},{\"current\":0.192,\"status\":1,\"voltage\":28.091002},{\"current\":0.19100001,\"status\":1,\"voltage\":28.091002},{\"current\":0.223,\"status\":1,\"voltage\":28.091002},{\"current\":0.19600001,\"status\":1,\"voltage\":28.091002},{\"current\":0.179,\"status\":1,\"voltage\":28.091002},{\"current\":0.201,\"status\":1,\"voltage\":28.091002},{\"current\":0.20400001,\"status\":1,\"voltage\":28.091002},{\"current\":0.0,\"status\":1,\"voltage\":28.130001},{\"current\":0.003,\"status\":1,\"voltage\":28.130001},{\"current\":0.001,\"status\":1,\"voltage\":28.130001},{\"current\":0.001,\"status\":1,\"voltage\":28.130001},{\"current\":0.001,\"status\":1,\"voltage\":28.130001},{\"current\":0.001,\"status\":1,\"voltage\":28.130001},{\"current\":0.0,\"status\":1,\"voltage\":28.130001}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0022512208301942\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:19", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524947", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:20", + "echoMap": {}, + "deviceId": "1080030024", + "name": "安防箱24", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.124", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261242\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69330121\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"0:00:00.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261043\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:de\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":28.543001},{\"current\":0.001,\"status\":1,\"voltage\":28.543001},{\"current\":0.20700002,\"status\":1,\"voltage\":28.543001},{\"current\":0.23400001,\"status\":1,\"voltage\":28.543001},{\"current\":0.19700001,\"status\":1,\"voltage\":28.543001},{\"current\":0.22900002,\"status\":1,\"voltage\":28.543001},{\"current\":0.32000002,\"status\":1,\"voltage\":28.543001},{\"current\":0.0,\"status\":1,\"voltage\":28.543001},{\"current\":0.0,\"status\":1,\"voltage\":28.543001},{\"current\":0.0,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208304062\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524948", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:20", + "echoMap": {}, + "deviceId": "1080030023", + "name": "安防箱23", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.123", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329943\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"19 days, 15:37:11.58\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:f7\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":28.068},{\"current\":0.25300002,\"status\":1,\"voltage\":28.068},{\"current\":0.28,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":28.068},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":27,\"switches\":[0,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0001512208304343\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524949", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:20", + "echoMap": {}, + "deviceId": "1080030022", + "name": "安防箱22", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.122", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261246\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69329505\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"6 days, 10:27:50.17\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261047\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:0a\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":29.160002},{\"current\":0.001,\"status\":1,\"voltage\":29.159002},{\"current\":0.246,\"status\":1,\"voltage\":29.159002},{\"current\":0.201,\"status\":1,\"voltage\":29.159002},{\"current\":0.001,\"status\":1,\"voltage\":29.159002},{\"current\":0.001,\"status\":1,\"voltage\":29.159002},{\"current\":0.001,\"status\":1,\"voltage\":29.159002},{\"current\":0.001,\"status\":1,\"voltage\":29.159002},{\"current\":0.001,\"status\":1,\"voltage\":29.159002},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[0,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208304362\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:36:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524950", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:20", + "echoMap": {}, + "deviceId": "1080030021", + "name": "安防箱21", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.121", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1140969\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"62728979\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"397 days, 13:36:09.12\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1140974\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:09:78\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":1,\"voltage\":28.382002},{\"current\":0.001,\"status\":1,\"voltage\":28.382002},{\"current\":0.246,\"status\":1,\"voltage\":28.382002},{\"current\":0.231,\"status\":1,\"voltage\":28.382002},{\"current\":0.22900002,\"status\":1,\"voltage\":28.382002},{\"current\":0.001,\"status\":1,\"voltage\":28.382002},{\"current\":0.001,\"status\":1,\"voltage\":28.382002},{\"current\":0.001,\"status\":1,\"voltage\":28.382002},{\"current\":0.001,\"status\":0,\"voltage\":28.382002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208302424\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"61\"}}", + "lastDiagTime": "2026-02-02 14:36:20", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524951", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1080030020", + "name": "安防箱20", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.120", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1141136\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"62737209\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"396 days, 6:41:39.89\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1141141\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:fa\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.003,\"status\":0,\"voltage\":29.107002},{\"current\":0.001,\"status\":1,\"voltage\":29.107002},{\"current\":0.001,\"status\":1,\"voltage\":29.107002},{\"current\":0.27100003,\"status\":1,\"voltage\":29.107002},{\"current\":0.347,\"status\":1,\"voltage\":29.107002},{\"current\":0.23600002,\"status\":1,\"voltage\":29.107002},{\"current\":0.256,\"status\":1,\"voltage\":29.107002},{\"current\":0.20500001,\"status\":1,\"voltage\":29.107002},{\"current\":0.193,\"status\":0,\"voltage\":29.107002},{\"current\":0.001,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":31,\"switches\":[1,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0001512208301977\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524952", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:21", + "echoMap": {}, + "deviceId": "1080030019", + "name": "安防箱19", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.119", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1140802\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"62718931\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"294 days, 23:27:43.15\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1140807\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:82\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26700002,\"status\":1,\"voltage\":28.097002},{\"current\":0.261,\"status\":1,\"voltage\":28.097002},{\"current\":0.25500003,\"status\":1,\"voltage\":28.097002},{\"current\":0.22200002,\"status\":1,\"voltage\":28.097002},{\"current\":0.20300001,\"status\":1,\"voltage\":28.097002},{\"current\":0.202,\"status\":1,\"voltage\":28.097002},{\"current\":0.194,\"status\":1,\"voltage\":28.097002},{\"current\":0.18800001,\"status\":1,\"voltage\":28.097002},{\"current\":0.18800001,\"status\":1,\"voltage\":28.097002},{\"current\":0.0,\"status\":1,\"voltage\":27.547},{\"current\":0.003,\"status\":1,\"voltage\":27.547},{\"current\":0.001,\"status\":1,\"voltage\":27.547},{\"current\":0.001,\"status\":1,\"voltage\":27.547},{\"current\":0.001,\"status\":1,\"voltage\":27.547},{\"current\":0.001,\"status\":1,\"voltage\":27.547},{\"current\":0.001,\"status\":1,\"voltage\":27.547}],\"fanSpeeds\":[0,0],\"humidity\":28,\"switches\":[0,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208304482\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:36:21", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524953", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:36:22", + "echoMap": {}, + "deviceId": "1080030018", + "name": "安防箱18", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.118", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1272180\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69933216\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"13 days, 4:24:42.51\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1271981\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:28:cf\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.22900002,\"status\":1,\"voltage\":28.69},{\"current\":0.3,\"status\":1,\"voltage\":28.69},{\"current\":0.22100002,\"status\":1,\"voltage\":28.69},{\"current\":0.20400001,\"status\":1,\"voltage\":28.69},{\"current\":0.201,\"status\":1,\"voltage\":28.69},{\"current\":0.18800001,\"status\":1,\"voltage\":28.69},{\"current\":0.192,\"status\":1,\"voltage\":28.69},{\"current\":0.001,\"status\":1,\"voltage\":28.69},{\"current\":0.001,\"status\":1,\"voltage\":28.69},{\"current\":0.001,\"status\":1,\"voltage\":27.497002},{\"current\":0.003,\"status\":0,\"voltage\":27.497002},{\"current\":0.001,\"status\":1,\"voltage\":27.497002},{\"current\":0.001,\"status\":0,\"voltage\":27.497002},{\"current\":0.001,\"status\":1,\"voltage\":27.497002},{\"current\":0.001,\"status\":0,\"voltage\":27.497002},{\"current\":0.0,\"status\":0,\"voltage\":27.497002}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":18}],\"stCommonInfo\":{\"设备ID\":\"0001512208302446\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"56\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:36:22", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524954", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "deviceId": "1080030017", + "name": "安防箱17", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.117", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:37:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524955", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "deviceId": "1080030016", + "name": "安防箱16", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.116", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261079\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69321127\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 19:56:36.60\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260880\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:cb\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.286,\"status\":1,\"voltage\":28.621002},{\"current\":0.257,\"status\":1,\"voltage\":28.621002},{\"current\":0.23700002,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.621002},{\"current\":0.001,\"status\":1,\"voltage\":28.343},{\"current\":0.002,\"status\":1,\"voltage\":28.343},{\"current\":0.001,\"status\":1,\"voltage\":28.343},{\"current\":0.001,\"status\":1,\"voltage\":28.343},{\"current\":0.001,\"status\":1,\"voltage\":28.343},{\"current\":0.001,\"status\":1,\"voltage\":28.343},{\"current\":0.001,\"status\":1,\"voltage\":28.343}],\"fanSpeeds\":[0,0],\"humidity\":34,\"switches\":[0,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0022512208302132\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524956", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:30", + "echoMap": {}, + "deviceId": "1080030015", + "name": "安防箱15", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.115", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1190010\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"65166259\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"297 days, 2:03:31.58\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1190015\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:66\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24900001,\"status\":1,\"voltage\":26.603},{\"current\":0.24800001,\"status\":1,\"voltage\":26.603},{\"current\":0.289,\"status\":1,\"voltage\":26.603},{\"current\":0.272,\"status\":1,\"voltage\":26.603},{\"current\":0.238,\"status\":1,\"voltage\":26.603},{\"current\":0.24300002,\"status\":1,\"voltage\":26.603},{\"current\":0.24000001,\"status\":1,\"voltage\":26.603},{\"current\":0.43100002,\"status\":1,\"voltage\":26.603},{\"current\":0.43500003,\"status\":1,\"voltage\":26.603},{\"current\":0.001,\"status\":1,\"voltage\":27.587002},{\"current\":0.003,\"status\":1,\"voltage\":27.587002},{\"current\":0.001,\"status\":1,\"voltage\":27.587002},{\"current\":0.001,\"status\":1,\"voltage\":27.587002},{\"current\":0.001,\"status\":1,\"voltage\":27.587002},{\"current\":0.001,\"status\":1,\"voltage\":27.587002},{\"current\":0.001,\"status\":1,\"voltage\":27.587002}],\"fanSpeeds\":[0,0],\"humidity\":26,\"switches\":[1,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0012512208304751\",\"软件版本\":\"31:2e:30:2e:34:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"58\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524957", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:31", + "echoMap": {}, + "deviceId": "1080030014", + "name": "安防箱14", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.114", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261751\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69357700\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"29 days, 1:33:22.99\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261552\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:29:25\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23600002,\"status\":1,\"voltage\":27.44},{\"current\":0.238,\"status\":1,\"voltage\":27.44},{\"current\":0.001,\"status\":0,\"voltage\":27.44},{\"current\":0.001,\"status\":0,\"voltage\":27.44},{\"current\":0.231,\"status\":1,\"voltage\":27.44},{\"current\":0.23300001,\"status\":1,\"voltage\":27.44},{\"current\":0.23300001,\"status\":1,\"voltage\":27.44},{\"current\":0.23400001,\"status\":1,\"voltage\":27.44},{\"current\":0.23,\"status\":1,\"voltage\":27.44},{\"current\":0.23500001,\"status\":1,\"voltage\":28.285002},{\"current\":0.002,\"status\":1,\"voltage\":28.285002},{\"current\":0.238,\"status\":1,\"voltage\":28.285002},{\"current\":0.24100001,\"status\":1,\"voltage\":28.285002},{\"current\":0.50100005,\"status\":1,\"voltage\":28.285002},{\"current\":0.0,\"status\":1,\"voltage\":28.285002},{\"current\":0.0,\"status\":1,\"voltage\":28.285002}],\"fanSpeeds\":[0,0],\"humidity\":24,\"switches\":[0,0,0,0],\"temperature\":26}],\"stCommonInfo\":{\"设备ID\":\"0001512208302532\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"55\",\"CPU使用率\":\"64\"}}", + "lastDiagTime": "2026-02-02 14:37:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524958", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:31", + "echoMap": {}, + "deviceId": "1080030013", + "name": "安防箱13", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.113", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69311193\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"29 days, 10:15:45.20\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:61\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24300002,\"status\":1,\"voltage\":28.969002},{\"current\":0.273,\"status\":1,\"voltage\":28.969002},{\"current\":0.001,\"status\":1,\"voltage\":28.969002},{\"current\":0.001,\"status\":1,\"voltage\":28.969002},{\"current\":0.001,\"status\":1,\"voltage\":28.969002},{\"current\":0.0,\"status\":1,\"voltage\":28.969002},{\"current\":0.0,\"status\":1,\"voltage\":28.969002},{\"current\":0.0,\"status\":1,\"voltage\":28.969002},{\"current\":0.0,\"status\":1,\"voltage\":28.969002},{\"current\":0.0,\"status\":1,\"voltage\":29.006},{\"current\":0.002,\"status\":1,\"voltage\":29.006},{\"current\":0.001,\"status\":1,\"voltage\":29.006},{\"current\":0.001,\"status\":1,\"voltage\":29.006},{\"current\":0.001,\"status\":1,\"voltage\":29.006},{\"current\":0.001,\"status\":1,\"voltage\":29.006},{\"current\":0.0,\"status\":1,\"voltage\":29.006}],\"fanSpeeds\":[0,0],\"humidity\":37,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0022512208302131\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524959", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1080030012", + "name": "安防箱12", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.112", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261079\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69320520\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"24 days, 12:25:04.20\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260880\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:c4\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.261,\"status\":1,\"voltage\":28.841002},{\"current\":0.263,\"status\":1,\"voltage\":28.841002},{\"current\":0.24300002,\"status\":1,\"voltage\":28.841002},{\"current\":0.23700002,\"status\":1,\"voltage\":28.841002},{\"current\":0.24200001,\"status\":1,\"voltage\":28.841002},{\"current\":0.001,\"status\":1,\"voltage\":28.841002},{\"current\":0.001,\"status\":1,\"voltage\":28.841002},{\"current\":0.001,\"status\":1,\"voltage\":28.841002},{\"current\":0.001,\"status\":1,\"voltage\":28.841002},{\"current\":0.001,\"status\":1,\"voltage\":28.914001},{\"current\":0.002,\"status\":1,\"voltage\":28.914001},{\"current\":0.001,\"status\":1,\"voltage\":28.914001},{\"current\":0.001,\"status\":1,\"voltage\":28.914001},{\"current\":0.001,\"status\":1,\"voltage\":28.914001},{\"current\":0.0,\"status\":1,\"voltage\":28.914001},{\"current\":0.0,\"status\":1,\"voltage\":28.914001}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0022512208302103\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524960", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:32", + "echoMap": {}, + "deviceId": "1080030011", + "name": "安防箱11", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.111", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261079\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69320298\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"29 days, 9:45:37.33\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260880\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:df\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.224,\"status\":1,\"voltage\":28.525002},{\"current\":0.29500002,\"status\":1,\"voltage\":28.525002},{\"current\":0.22700001,\"status\":1,\"voltage\":28.525002},{\"current\":0.21800001,\"status\":1,\"voltage\":28.525002},{\"current\":0.001,\"status\":1,\"voltage\":28.525002},{\"current\":0.001,\"status\":1,\"voltage\":28.525002},{\"current\":0.001,\"status\":1,\"voltage\":28.525002},{\"current\":0.001,\"status\":1,\"voltage\":28.525002},{\"current\":0.001,\"status\":1,\"voltage\":28.525002},{\"current\":0.001,\"status\":1,\"voltage\":28.971},{\"current\":0.002,\"status\":1,\"voltage\":28.971},{\"current\":0.001,\"status\":1,\"voltage\":28.971},{\"current\":0.001,\"status\":1,\"voltage\":28.971},{\"current\":0.001,\"status\":1,\"voltage\":28.971},{\"current\":0.001,\"status\":1,\"voltage\":28.971},{\"current\":0.001,\"status\":1,\"voltage\":28.971}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0022512208302100\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524961", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1080030010", + "name": "安防箱10", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.110", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260976\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69314723\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 4:29:10.56\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260777\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:d1\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26200002,\"status\":1,\"voltage\":28.907001},{\"current\":0.26000002,\"status\":1,\"voltage\":28.907001},{\"current\":0.22600001,\"status\":1,\"voltage\":28.907001},{\"current\":0.266,\"status\":1,\"voltage\":28.907001},{\"current\":0.261,\"status\":1,\"voltage\":28.907001},{\"current\":0.001,\"status\":1,\"voltage\":28.907001},{\"current\":0.001,\"status\":1,\"voltage\":28.907001},{\"current\":0.001,\"status\":1,\"voltage\":28.907001},{\"current\":0.001,\"status\":1,\"voltage\":28.907001},{\"current\":0.001,\"status\":1,\"voltage\":28.785002},{\"current\":0.002,\"status\":1,\"voltage\":28.785002},{\"current\":0.001,\"status\":1,\"voltage\":28.785002},{\"current\":0.001,\"status\":1,\"voltage\":28.785002},{\"current\":0.001,\"status\":1,\"voltage\":28.785002},{\"current\":0.001,\"status\":1,\"voltage\":28.785002},{\"current\":0.0,\"status\":1,\"voltage\":28.785002}],\"fanSpeeds\":[0,0],\"humidity\":36,\"switches\":[0,0,0,0],\"temperature\":18}],\"stCommonInfo\":{\"设备ID\":\"0022512208302141\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"51\",\"CPU使用率\":\"60\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524962", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1080030009", + "name": "安防箱9", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.109", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "1", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1261208\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69338767\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"1:51:22.00\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1261213\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0f:e0\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.002,\"status\":1,\"voltage\":28.694002},{\"current\":0.001,\"status\":1,\"voltage\":28.694002},{\"current\":0.26900002,\"status\":1,\"voltage\":28.694002},{\"current\":0.261,\"status\":1,\"voltage\":28.694002},{\"current\":0.252,\"status\":1,\"voltage\":28.694002},{\"current\":0.256,\"status\":1,\"voltage\":28.694002},{\"current\":0.257,\"status\":1,\"voltage\":28.694002},{\"current\":0.001,\"status\":1,\"voltage\":28.694002},{\"current\":0.001,\"status\":1,\"voltage\":28.694002},{\"current\":0.001,\"status\":1,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0},{\"current\":0.0,\"status\":0,\"voltage\":0.0}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0001512208304064\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"59\",\"CPU使用率\":\"62\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524963", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1080030008", + "name": "安防箱8", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.108", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69312184\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 4:09:34.42\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:26:dd\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.252,\"status\":1,\"voltage\":28.501001},{\"current\":0.24900001,\"status\":1,\"voltage\":28.501001},{\"current\":0.252,\"status\":1,\"voltage\":28.501001},{\"current\":0.246,\"status\":1,\"voltage\":28.501001},{\"current\":0.277,\"status\":1,\"voltage\":28.501001},{\"current\":0.27100003,\"status\":1,\"voltage\":28.501001},{\"current\":0.001,\"status\":1,\"voltage\":28.501001},{\"current\":0.001,\"status\":1,\"voltage\":28.501001},{\"current\":0.001,\"status\":1,\"voltage\":28.501001},{\"current\":0.001,\"status\":1,\"voltage\":28.763},{\"current\":0.002,\"status\":1,\"voltage\":28.763},{\"current\":0.001,\"status\":1,\"voltage\":28.763},{\"current\":0.001,\"status\":1,\"voltage\":28.763},{\"current\":0.001,\"status\":1,\"voltage\":28.763},{\"current\":0.001,\"status\":1,\"voltage\":28.763},{\"current\":0.001,\"status\":1,\"voltage\":28.763}],\"fanSpeeds\":[0,0],\"humidity\":36,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0022512208302102\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524964", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:33", + "echoMap": {}, + "deviceId": "1080030007", + "name": "安防箱7", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.107", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69312144\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 5:00:18.78\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:52:24:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23300001,\"status\":1,\"voltage\":28.702002},{\"current\":0.238,\"status\":1,\"voltage\":28.702002},{\"current\":0.246,\"status\":1,\"voltage\":28.702002},{\"current\":0.25800002,\"status\":1,\"voltage\":28.702002},{\"current\":0.263,\"status\":1,\"voltage\":28.702002},{\"current\":0.259,\"status\":1,\"voltage\":28.702002},{\"current\":0.24200001,\"status\":1,\"voltage\":28.702002},{\"current\":0.23600002,\"status\":1,\"voltage\":28.702002},{\"current\":0.224,\"status\":1,\"voltage\":28.702002},{\"current\":0.22200002,\"status\":1,\"voltage\":28.387001},{\"current\":0.002,\"status\":1,\"voltage\":28.387001},{\"current\":0.21700001,\"status\":1,\"voltage\":28.387001},{\"current\":0.21800001,\"status\":1,\"voltage\":28.387001},{\"current\":0.358,\"status\":1,\"voltage\":28.387001},{\"current\":0.0,\"status\":1,\"voltage\":28.387001},{\"current\":0.0,\"status\":1,\"voltage\":28.387001}],\"fanSpeeds\":[0,0],\"humidity\":35,\"switches\":[0,0,0,0],\"temperature\":19}],\"stCommonInfo\":{\"设备ID\":\"0022512208302140\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:37:33", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524965", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:42", + "echoMap": {}, + "deviceId": "1080030006", + "name": "安防箱6", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.106", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"info\":[{\"addrCode\":0,\"circuits\":[],\"fanSpeeds\":[],\"humidity\":-1,\"switches\":[],\"temperature\":-1}]}", + "lastDiagTime": "2026-02-02 14:38:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "20", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524966", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:42", + "echoMap": {}, + "deviceId": "1080030005", + "name": "安防箱5", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.105", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69311897\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 4:31:05.34\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:10:63\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.252,\"status\":1,\"voltage\":28.652},{\"current\":0.23700002,\"status\":1,\"voltage\":28.652},{\"current\":0.24700001,\"status\":1,\"voltage\":28.652},{\"current\":0.25,\"status\":1,\"voltage\":28.652},{\"current\":0.25300002,\"status\":1,\"voltage\":28.652},{\"current\":0.261,\"status\":1,\"voltage\":28.652},{\"current\":0.279,\"status\":1,\"voltage\":28.652},{\"current\":0.263,\"status\":1,\"voltage\":28.652},{\"current\":0.20600002,\"status\":1,\"voltage\":28.652},{\"current\":0.24000001,\"status\":1,\"voltage\":28.321001},{\"current\":0.002,\"status\":1,\"voltage\":28.321001},{\"current\":0.201,\"status\":1,\"voltage\":28.321001},{\"current\":0.001,\"status\":1,\"voltage\":28.321001},{\"current\":0.001,\"status\":1,\"voltage\":28.321001},{\"current\":0.001,\"status\":1,\"voltage\":28.321001},{\"current\":0.0,\"status\":1,\"voltage\":28.321001}],\"fanSpeeds\":[0,0],\"humidity\":32,\"switches\":[0,0,0,0],\"temperature\":20}],\"stCommonInfo\":{\"设备ID\":\"0022512208302214\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524967", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:42", + "echoMap": {}, + "deviceId": "1080030004", + "name": "安防箱4", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.104", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69311641\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 4:51:09.38\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0d:e3\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.26500002,\"status\":1,\"voltage\":27.986002},{\"current\":0.25300002,\"status\":1,\"voltage\":27.986002},{\"current\":0.25300002,\"status\":1,\"voltage\":27.986002},{\"current\":0.24200001,\"status\":1,\"voltage\":27.986002},{\"current\":0.24100001,\"status\":1,\"voltage\":27.986002},{\"current\":0.23300001,\"status\":1,\"voltage\":27.986002},{\"current\":0.22500001,\"status\":1,\"voltage\":27.986002},{\"current\":0.21700001,\"status\":1,\"voltage\":27.986002},{\"current\":0.321,\"status\":1,\"voltage\":27.986002},{\"current\":0.261,\"status\":1,\"voltage\":27.602001},{\"current\":0.002,\"status\":1,\"voltage\":27.602001},{\"current\":0.224,\"status\":1,\"voltage\":27.602001},{\"current\":0.187,\"status\":1,\"voltage\":27.602001},{\"current\":0.001,\"status\":1,\"voltage\":27.602001},{\"current\":0.001,\"status\":1,\"voltage\":27.602001},{\"current\":0.0,\"status\":1,\"voltage\":27.602001}],\"fanSpeeds\":[0,0],\"humidity\":30,\"switches\":[0,0,0,0],\"temperature\":22}],\"stCommonInfo\":{\"设备ID\":\"0022512208302133\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:42", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524968", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1080030003", + "name": "安防箱3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.103", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260913\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69311479\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 4:24:28.09\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260714\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:0e:6c\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.23,\"status\":1,\"voltage\":27.414001},{\"current\":0.23900001,\"status\":1,\"voltage\":27.414001},{\"current\":0.24400002,\"status\":1,\"voltage\":27.414001},{\"current\":0.25500003,\"status\":1,\"voltage\":27.414001},{\"current\":0.27100003,\"status\":1,\"voltage\":27.414001},{\"current\":0.264,\"status\":1,\"voltage\":27.414001},{\"current\":0.24700001,\"status\":1,\"voltage\":27.414001},{\"current\":0.23500001,\"status\":1,\"voltage\":27.414001},{\"current\":0.23,\"status\":1,\"voltage\":27.414001},{\"current\":0.21200001,\"status\":1,\"voltage\":27.435001},{\"current\":0.003,\"status\":1,\"voltage\":27.435001},{\"current\":0.215,\"status\":1,\"voltage\":27.435001},{\"current\":0.27100003,\"status\":1,\"voltage\":27.435001},{\"current\":0.19700001,\"status\":1,\"voltage\":27.435001},{\"current\":0.21400002,\"status\":1,\"voltage\":27.435001},{\"current\":0.001,\"status\":1,\"voltage\":27.435001}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":23}],\"stCommonInfo\":{\"设备ID\":\"0022512208302134\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524969", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1080030002", + "name": "安防箱2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.102", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260777\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69312008\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 21:52:04.02\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260714\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:11:a6\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24700001,\"status\":1,\"voltage\":28.358002},{\"current\":0.261,\"status\":1,\"voltage\":28.358002},{\"current\":0.277,\"status\":1,\"voltage\":28.358002},{\"current\":0.286,\"status\":1,\"voltage\":28.358002},{\"current\":0.001,\"status\":1,\"voltage\":28.358002},{\"current\":0.001,\"status\":1,\"voltage\":28.358002},{\"current\":0.001,\"status\":1,\"voltage\":28.358002},{\"current\":0.001,\"status\":1,\"voltage\":28.358002},{\"current\":0.001,\"status\":1,\"voltage\":28.358002},{\"current\":0.001,\"status\":1,\"voltage\":27.726002},{\"current\":0.002,\"status\":1,\"voltage\":27.726002},{\"current\":0.001,\"status\":1,\"voltage\":27.726002},{\"current\":0.001,\"status\":1,\"voltage\":27.726002},{\"current\":0.001,\"status\":1,\"voltage\":27.726002},{\"current\":0.0,\"status\":1,\"voltage\":27.726002},{\"current\":0.0,\"status\":1,\"voltage\":27.726002}],\"fanSpeeds\":[0,0],\"humidity\":29,\"switches\":[0,0,0,0],\"temperature\":21}],\"stCommonInfo\":{\"设备ID\":\"0001512208304518\",\"软件版本\":\"1.0.2\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "719017962467524970", + "createdBy": "0", + "createdTime": "2026-01-05 14:57:08", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1080030001", + "name": "安防箱1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.245.101", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"6\",\"ifType\":\"2048\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1260912\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"69310335\",\"index\":\"eth\",\"lastChange\":\"0\",\"mTU\":\"1500000\",\"macAddress\":\"1\",\"operStatus\":\"4 days, 18:53:18.52\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1260713\",\"outQLen\":\"0.0.0.0.0\",\"outUcastPkts\":\"0\",\"speed\":\"1c:87:79:50:12:86\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"0\",\"index\":\"1\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"2048\"},\"info\":[{\"addrCode\":0,\"circuits\":[{\"current\":0.24100001,\"status\":1,\"voltage\":27.321001},{\"current\":0.286,\"status\":1,\"voltage\":27.321001},{\"current\":0.252,\"status\":1,\"voltage\":27.321001},{\"current\":0.26900002,\"status\":1,\"voltage\":27.321001},{\"current\":0.252,\"status\":1,\"voltage\":27.321001},{\"current\":0.25800002,\"status\":1,\"voltage\":27.321001},{\"current\":0.23900001,\"status\":1,\"voltage\":27.321001},{\"current\":0.23,\"status\":1,\"voltage\":27.321001},{\"current\":0.0,\"status\":1,\"voltage\":27.321001},{\"current\":0.0,\"status\":1,\"voltage\":27.340002},{\"current\":0.003,\"status\":1,\"voltage\":27.340002},{\"current\":0.001,\"status\":1,\"voltage\":27.340002},{\"current\":0.001,\"status\":1,\"voltage\":27.340002},{\"current\":0.001,\"status\":1,\"voltage\":27.340002},{\"current\":0.001,\"status\":1,\"voltage\":27.340002},{\"current\":0.001,\"status\":1,\"voltage\":27.340002}],\"fanSpeeds\":[0,0],\"humidity\":23,\"switches\":[1,0,0,0],\"temperature\":25}],\"stCommonInfo\":{\"设备ID\":\"0012512208303619\",\"软件版本\":\"31:2e:30:2e:33:00\",\"设备厂商\":\"ShanghaiBeidian\",\"设备别名\":\"BD-PCM-20E\",\"设备型号\":\"BD-PCM-20E\",\"硬件版本\":\"HardVersion:1.0.0\",\"内存使用率\":\"52\",\"CPU使用率\":\"63\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "222", + "community": "public", + "frontendConfig": "null", + "linkDescription": "null", + "snmpEnabled": true + } + ], + "ndmSwitch": [ + { + "id": "706389246788778025", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040001", + "name": "H3C前端交换机1", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.151", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133474\",\"inUnknownProtos\":\"3980772026\",\"index\":\"634\",\"lastChange\":\"196 days, 0:50:00.24\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:67:e7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1175253774\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"127991242\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.151\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":1151157,\"inBytes\":264660714,\"inFlow\":421809,\"lastChangeTime\":\"246 days, 21:00:28.36\",\"lastInBytes\":264660714,\"lastOutBytes\":3388416558,\"outBytes\":3388416558,\"outFlow\":729348,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1653478,\"inBytes\":2460477475,\"inFlow\":914585,\"lastChangeTime\":\"322 days, 22:04:22.64\",\"lastInBytes\":2460477475,\"lastOutBytes\":3021746958,\"outBytes\":3021746958,\"outFlow\":738893,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1529406,\"inBytes\":3614602587,\"inFlow\":794372,\"lastChangeTime\":\"246 days, 21:00:33.96\",\"lastInBytes\":3614602587,\"lastOutBytes\":3890559507,\"outBytes\":3890559507,\"outFlow\":735033,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1529454,\"inBytes\":1338622932,\"inFlow\":794214,\"lastChangeTime\":\"246 days, 21:00:34.00\",\"lastInBytes\":1338622932,\"lastOutBytes\":2595384699,\"outBytes\":2595384699,\"outFlow\":735239,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1531753,\"inBytes\":1866344293,\"inFlow\":796230,\"lastChangeTime\":\"246 days, 21:00:26.74\",\"lastInBytes\":1866344293,\"lastOutBytes\":3980548749,\"outBytes\":3980548749,\"outFlow\":735523,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1531956,\"inBytes\":1993167200,\"inFlow\":796065,\"lastChangeTime\":\"246 days, 21:00:35.02\",\"lastInBytes\":1993167200,\"lastOutBytes\":3902194398,\"outBytes\":3902194398,\"outFlow\":735891,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1527645,\"inBytes\":812201880,\"inFlow\":792300,\"lastChangeTime\":\"246 days, 21:00:36.21\",\"lastInBytes\":812201880,\"lastOutBytes\":4027481953,\"outBytes\":4027481953,\"outFlow\":735344,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":904885,\"inBytes\":807926942,\"inFlow\":825558,\"lastChangeTime\":\"280 days, 1:38:56.77\",\"lastInBytes\":807926942,\"lastOutBytes\":1963567430,\"outBytes\":1963567430,\"outFlow\":79327,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":228,\"inFlow\":0,\"lastChangeTime\":\"254 days, 1:23:22.13\",\"lastInBytes\":228,\"lastOutBytes\":42614,\"outBytes\":42614,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":222114,\"inFlow\":0,\"lastChangeTime\":\"254 days, 1:30:02.38\",\"lastInBytes\":222114,\"lastOutBytes\":6812989,\"outBytes\":6812989,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":386202,\"inFlow\":0,\"lastChangeTime\":\"254 days, 1:27:21.66\",\"lastInBytes\":386202,\"lastOutBytes\":7427785,\"outBytes\":7427785,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":59472,\"inBytes\":136597901,\"inFlow\":119,\"lastChangeTime\":\"254 days, 1:18:08.93\",\"lastInBytes\":136597901,\"lastOutBytes\":1554411124,\"outBytes\":1554411124,\"outFlow\":59352,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7634673,\"inBytes\":1720835868,\"inFlow\":1482830,\"lastChangeTime\":\"254 days, 1:29:28.22\",\"lastInBytes\":1720835868,\"lastOutBytes\":346693637,\"outBytes\":346693637,\"outFlow\":6151843,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.438334000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778026", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040003", + "name": "H3C前端交换机2", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.152", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"135651\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"196 days, 0:59:53.06\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:a3:67\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.152\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1532701,\"inBytes\":2713740204,\"inFlow\":794631,\"lastChangeTime\":\"246 days, 21:08:26.89\",\"lastInBytes\":2713740204,\"lastOutBytes\":4260318305,\"outBytes\":4260318305,\"outFlow\":738069,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1156414,\"inBytes\":962175996,\"inFlow\":424364,\"lastChangeTime\":\"356 days, 19:48:50.07\",\"lastInBytes\":962175996,\"lastOutBytes\":2981784041,\"outBytes\":2981784041,\"outFlow\":732050,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1533088,\"inBytes\":2140424027,\"inFlow\":794658,\"lastChangeTime\":\"246 days, 21:08:38.13\",\"lastInBytes\":2140424027,\"lastOutBytes\":393974474,\"outBytes\":393974474,\"outFlow\":738429,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1532379,\"inBytes\":2662758196,\"inFlow\":794051,\"lastChangeTime\":\"246 days, 21:13:37.92\",\"lastInBytes\":2662758196,\"lastOutBytes\":470707582,\"outBytes\":470707582,\"outFlow\":738328,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":55920,\"inBytes\":131851667,\"inFlow\":119,\"lastChangeTime\":\"401 days, 0:15:29.71\",\"lastInBytes\":131851667,\"lastOutBytes\":1913149401,\"outBytes\":1913149401,\"outFlow\":55800,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2288812,\"inFlow\":0,\"lastChangeTime\":\"217 days, 20:50:08.48\",\"lastInBytes\":2288812,\"lastOutBytes\":70707378,\"outBytes\":70707378,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.05\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4217230,\"inBytes\":993908770,\"inFlow\":1402063,\"lastChangeTime\":\"196 days, 0:59:53.05\",\"lastInBytes\":993908770,\"lastOutBytes\":1676693459,\"outBytes\":1676693459,\"outFlow\":2815167,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.394263000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778027", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040004", + "name": "H3C前端交换机3", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.153", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"45\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"135661\",\"inUnknownProtos\":\"3174851464\",\"index\":\"634\",\"lastChange\":\"5 days, 22:22:41.95\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:58:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"980277897\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"144801182\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.153\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1516599,\"inBytes\":787278164,\"inFlow\":793322,\"lastChangeTime\":\"245 days, 19:59:33.28\",\"lastInBytes\":787278164,\"lastOutBytes\":603750826,\"outBytes\":603750826,\"outFlow\":723276,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1517556,\"inBytes\":3588520550,\"inFlow\":794829,\"lastChangeTime\":\"245 days, 19:59:28.64\",\"lastInBytes\":3588520550,\"lastOutBytes\":3058452972,\"outBytes\":3058452972,\"outFlow\":722727,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1517389,\"inBytes\":1047811763,\"inFlow\":794228,\"lastChangeTime\":\"245 days, 19:59:34.05\",\"lastInBytes\":1047811763,\"lastOutBytes\":3957229710,\"outBytes\":3957229710,\"outFlow\":723161,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1522347,\"inBytes\":2092707553,\"inFlow\":799162,\"lastChangeTime\":\"245 days, 19:59:38.82\",\"lastInBytes\":2092707553,\"lastOutBytes\":223172545,\"outBytes\":223172545,\"outFlow\":723184,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1517282,\"inBytes\":2416145343,\"inFlow\":794039,\"lastChangeTime\":\"245 days, 19:59:52.53\",\"lastInBytes\":2416145343,\"lastOutBytes\":3174643564,\"outBytes\":3174643564,\"outFlow\":723242,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1517799,\"inBytes\":3502452099,\"inFlow\":794892,\"lastChangeTime\":\"245 days, 19:59:41.66\",\"lastInBytes\":3502452099,\"lastOutBytes\":2973475313,\"outBytes\":2973475313,\"outFlow\":722906,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1517306,\"inBytes\":2002150117,\"inFlow\":794728,\"lastChangeTime\":\"344 days, 20:25:56.40\",\"lastInBytes\":2002150117,\"lastOutBytes\":2481157517,\"outBytes\":2481157517,\"outFlow\":722577,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1515953,\"inBytes\":2540446347,\"inFlow\":794619,\"lastChangeTime\":\"245 days, 19:59:48.78\",\"lastInBytes\":2540446347,\"lastOutBytes\":323455843,\"outBytes\":323455843,\"outFlow\":721333,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1575499,\"inBytes\":3772685099,\"inFlow\":850875,\"lastChangeTime\":\"245 days, 19:59:48.43\",\"lastInBytes\":3772685099,\"lastOutBytes\":1962470275,\"outBytes\":1962470275,\"outFlow\":724624,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1575804,\"inBytes\":3448754880,\"inFlow\":851197,\"lastChangeTime\":\"245 days, 20:04:32.66\",\"lastInBytes\":3448754880,\"lastOutBytes\":557563908,\"outBytes\":557563908,\"outFlow\":724606,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":950720,\"inBytes\":830044291,\"inFlow\":883575,\"lastChangeTime\":\"270 days, 4:18:12.40\",\"lastInBytes\":830044291,\"lastOutBytes\":3357180467,\"outBytes\":3357180467,\"outFlow\":67144,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":956655,\"inBytes\":1113389015,\"inFlow\":888980,\"lastChangeTime\":\"270 days, 4:18:24.11\",\"lastInBytes\":1113389015,\"lastOutBytes\":3054101260,\"outBytes\":3054101260,\"outFlow\":67675,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":890963,\"inBytes\":1964579482,\"inFlow\":825543,\"lastChangeTime\":\"270 days, 4:18:09.73\",\"lastInBytes\":1964579482,\"lastOutBytes\":398692689,\"outBytes\":398692689,\"outFlow\":65419,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":892142,\"inBytes\":95919547,\"inFlow\":825159,\"lastChangeTime\":\"270 days, 4:18:21.04\",\"lastInBytes\":95919547,\"lastOutBytes\":229813217,\"outBytes\":229813217,\"outFlow\":66982,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":589787,\"inFlow\":0,\"lastChangeTime\":\"252 days, 22:45:54.17\",\"lastInBytes\":589787,\"lastOutBytes\":18687378,\"outBytes\":18687378,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":60091,\"inBytes\":137941984,\"inFlow\":119,\"lastChangeTime\":\"0:01:32.68\",\"lastInBytes\":137941984,\"lastOutBytes\":1378703211,\"outBytes\":1378703211,\"outFlow\":59971,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":12874581,\"inBytes\":2708445494,\"inFlow\":1599708,\"lastChangeTime\":\"252 days, 23:33:26.75\",\"lastInBytes\":2708445494,\"lastOutBytes\":1375559059,\"outBytes\":1375559059,\"outFlow\":11274873,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.407116000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778028", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040005", + "name": "H3C前端交换机4", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.154", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"13\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"135490\",\"inUnknownProtos\":\"1554543942\",\"index\":\"634\",\"lastChange\":\"252 days, 22:21:21.51\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:4b:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1086889602\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"144874673\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.154\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1587878,\"inBytes\":2750651672,\"inFlow\":851668,\"lastChangeTime\":\"245 days, 20:05:16.78\",\"lastInBytes\":2750651672,\"lastOutBytes\":159778739,\"outBytes\":159778739,\"outFlow\":736210,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1530246,\"inBytes\":3249837639,\"inFlow\":794832,\"lastChangeTime\":\"245 days, 20:05:16.13\",\"lastInBytes\":3249837639,\"lastOutBytes\":2415489084,\"outBytes\":2415489084,\"outFlow\":735414,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1528191,\"inBytes\":3129913743,\"inFlow\":794307,\"lastChangeTime\":\"245 days, 20:05:20.31\",\"lastInBytes\":3129913743,\"lastOutBytes\":1607989329,\"outBytes\":1607989329,\"outFlow\":733883,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1529167,\"inBytes\":109134018,\"inFlow\":794431,\"lastChangeTime\":\"245 days, 20:05:17.35\",\"lastInBytes\":109134018,\"lastOutBytes\":3048686231,\"outBytes\":3048686231,\"outFlow\":734736,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1528736,\"inBytes\":3397960321,\"inFlow\":794489,\"lastChangeTime\":\"245 days, 20:05:20.63\",\"lastInBytes\":3397960321,\"lastOutBytes\":1554338567,\"outBytes\":1554338567,\"outFlow\":734246,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1529017,\"inBytes\":2005579873,\"inFlow\":794370,\"lastChangeTime\":\"245 days, 20:05:25.07\",\"lastInBytes\":2005579873,\"lastOutBytes\":2180747286,\"outBytes\":2180747286,\"outFlow\":734646,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1535030,\"inBytes\":2848838948,\"inFlow\":800388,\"lastChangeTime\":\"245 days, 20:05:27.24\",\"lastInBytes\":2848838948,\"lastOutBytes\":1975866290,\"outBytes\":1975866290,\"outFlow\":734641,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1528326,\"inBytes\":2141474266,\"inFlow\":794090,\"lastChangeTime\":\"245 days, 20:05:24.73\",\"lastInBytes\":2141474266,\"lastOutBytes\":2167428497,\"outBytes\":2167428497,\"outFlow\":734236,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":958237,\"inBytes\":4016166506,\"inFlow\":889268,\"lastChangeTime\":\"270 days, 4:18:45.02\",\"lastInBytes\":4016166506,\"lastOutBytes\":3960682286,\"outBytes\":3960682286,\"outFlow\":68968,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":952854,\"inBytes\":3583688877,\"inFlow\":884016,\"lastChangeTime\":\"270 days, 4:18:39.72\",\"lastInBytes\":3583688877,\"lastOutBytes\":37262183,\"outBytes\":37262183,\"outFlow\":68837,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":954984,\"inBytes\":2114570338,\"inFlow\":885568,\"lastChangeTime\":\"270 days, 4:18:52.91\",\"lastInBytes\":2114570338,\"lastOutBytes\":2884390364,\"outBytes\":2884390364,\"outFlow\":69415,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":953967,\"inBytes\":1461112513,\"inFlow\":884500,\"lastChangeTime\":\"270 days, 4:18:51.40\",\"lastInBytes\":1461112513,\"lastOutBytes\":724585204,\"outBytes\":724585204,\"outFlow\":69466,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.02\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":309533,\"inFlow\":0,\"lastChangeTime\":\"252 days, 22:21:41.62\",\"lastInBytes\":309533,\"lastOutBytes\":10735861,\"outBytes\":10735861,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":62917,\"inBytes\":136582744,\"inFlow\":119,\"lastChangeTime\":\"252 days, 22:40:31.38\",\"lastInBytes\":136582744,\"lastOutBytes\":1599778862,\"outBytes\":1599778862,\"outFlow\":62798,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":11250418,\"inBytes\":632950095,\"inFlow\":1561590,\"lastChangeTime\":\"252 days, 22:21:21.50\",\"lastInBytes\":632950095,\"lastOutBytes\":4118038565,\"outBytes\":4118038565,\"outFlow\":9688828,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.397490000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778029", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040006", + "name": "H3C前端交换机5", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.155", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"28\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133194\",\"inUnknownProtos\":\"3269273617\",\"index\":\"634\",\"lastChange\":\"5 days, 22:30:39.26\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:8a:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1090605730\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"128121147\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.155\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1520226,\"inBytes\":3377709182,\"inFlow\":794438,\"lastChangeTime\":\"245 days, 20:05:14.71\",\"lastInBytes\":3377709182,\"lastOutBytes\":3054267585,\"outBytes\":3054267585,\"outFlow\":725788,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1520661,\"inBytes\":2893049444,\"inFlow\":794470,\"lastChangeTime\":\"245 days, 20:09:47.50\",\"lastInBytes\":2893049444,\"lastOutBytes\":3178452027,\"outBytes\":3178452027,\"outFlow\":726190,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1520188,\"inBytes\":3792977501,\"inFlow\":794272,\"lastChangeTime\":\"245 days, 20:09:58.91\",\"lastInBytes\":3792977501,\"lastOutBytes\":2826945166,\"outBytes\":2826945166,\"outFlow\":725916,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1520821,\"inBytes\":2728459635,\"inFlow\":794602,\"lastChangeTime\":\"245 days, 20:10:08.57\",\"lastInBytes\":2728459635,\"lastOutBytes\":3076704438,\"outBytes\":3076704438,\"outFlow\":726219,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1522468,\"inBytes\":2494329358,\"inFlow\":796160,\"lastChangeTime\":\"245 days, 20:10:00.63\",\"lastInBytes\":2494329358,\"lastOutBytes\":3269067055,\"outBytes\":3269067055,\"outFlow\":726308,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1520440,\"inBytes\":2256296960,\"inFlow\":794343,\"lastChangeTime\":\"245 days, 20:10:07.70\",\"lastInBytes\":2256296960,\"lastOutBytes\":3425048429,\"outBytes\":3425048429,\"outFlow\":726096,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1519877,\"inBytes\":3009927687,\"inFlow\":794021,\"lastChangeTime\":\"245 days, 20:10:18.74\",\"lastInBytes\":3009927687,\"lastOutBytes\":3326626221,\"outBytes\":3326626221,\"outFlow\":725856,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1519909,\"inBytes\":2136173776,\"inFlow\":794210,\"lastChangeTime\":\"245 days, 20:10:16.81\",\"lastInBytes\":2136173776,\"lastOutBytes\":2628487696,\"outBytes\":2628487696,\"outFlow\":725699,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":892436,\"inBytes\":1152812465,\"inFlow\":825478,\"lastChangeTime\":\"270 days, 4:18:21.50\",\"lastInBytes\":1152812465,\"lastOutBytes\":162455139,\"outBytes\":162455139,\"outFlow\":66958,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":893397,\"inBytes\":4230406846,\"inFlow\":825285,\"lastChangeTime\":\"270 days, 4:18:14.42\",\"lastInBytes\":4230406846,\"lastOutBytes\":107461299,\"outBytes\":107461299,\"outFlow\":68112,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":952513,\"inBytes\":4203406283,\"inFlow\":884356,\"lastChangeTime\":\"270 days, 4:18:26.11\",\"lastInBytes\":4203406283,\"lastOutBytes\":4086462414,\"outBytes\":4086462414,\"outFlow\":68157,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":835453,\"inFlow\":0,\"lastChangeTime\":\"252 days, 23:27:36.00\",\"lastInBytes\":835453,\"lastOutBytes\":31803210,\"outBytes\":31803210,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":13003,\"inFlow\":0,\"lastChangeTime\":\"5 days, 22:32:27.36\",\"lastInBytes\":13003,\"lastOutBytes\":376038,\"outBytes\":376038,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":66148,\"inBytes\":137893050,\"inFlow\":118,\"lastChangeTime\":\"0:01:25.61\",\"lastInBytes\":137893050,\"lastOutBytes\":1121332380,\"outBytes\":1121332380,\"outFlow\":66029,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.13\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":11054514,\"inBytes\":1297911141,\"inFlow\":1558924,\"lastChangeTime\":\"252 days, 23:27:21.52\",\"lastInBytes\":1297911141,\"lastOutBytes\":2036767884,\"outBytes\":2036767884,\"outFlow\":9495590,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.385626000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778030", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040007", + "name": "H3C前端交换机6", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.156", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"6\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"55229\",\"inUnknownProtos\":\"3808925404\",\"index\":\"634\",\"lastChange\":\"254 days, 0:26:40.57\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:a0:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1208748101\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"60169970\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"62\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.156\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1215925,\"inBytes\":56682168,\"inFlow\":487658,\"lastChangeTime\":\"274 days, 2:42:00.54\",\"lastInBytes\":56682168,\"lastOutBytes\":2954223506,\"outBytes\":2954223506,\"outFlow\":728266,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1585529,\"inBytes\":529231645,\"inFlow\":850983,\"lastChangeTime\":\"270 days, 20:23:35.81\",\"lastInBytes\":529231645,\"lastOutBytes\":1975618816,\"outBytes\":1975618816,\"outFlow\":734546,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588815,\"inBytes\":2279176056,\"inFlow\":854269,\"lastChangeTime\":\"239 days, 20:52:02.04\",\"lastInBytes\":2279176056,\"lastOutBytes\":24570651,\"outBytes\":24570651,\"outFlow\":734546,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1940564,\"inBytes\":1460172416,\"inFlow\":1200219,\"lastChangeTime\":\"353 days, 0:53:30.56\",\"lastInBytes\":1460172416,\"lastOutBytes\":859974080,\"outBytes\":859974080,\"outFlow\":740345,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1583419,\"inBytes\":1099317050,\"inFlow\":850918,\"lastChangeTime\":\"239 days, 20:56:41.90\",\"lastInBytes\":1099317050,\"lastOutBytes\":3808925404,\"outBytes\":3808925404,\"outFlow\":732501,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":10642797,\"inFlow\":0,\"lastChangeTime\":\"247 days, 0:28:48.58\",\"lastInBytes\":10642797,\"lastOutBytes\":4187194442,\"outBytes\":4187194442,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":2},{\"flow\":952003,\"inBytes\":1223220276,\"inFlow\":881309,\"lastChangeTime\":\"264 days, 5:00:11.64\",\"lastInBytes\":1223220276,\"lastOutBytes\":724130414,\"outBytes\":724130414,\"outFlow\":70693,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":954994,\"inBytes\":1009181084,\"inFlow\":884785,\"lastChangeTime\":\"277 days, 22:26:30.73\",\"lastInBytes\":1009181084,\"lastOutBytes\":3927616546,\"outBytes\":3927616546,\"outFlow\":70208,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":958613,\"inBytes\":3333340003,\"inFlow\":888807,\"lastChangeTime\":\"264 days, 4:51:04.10\",\"lastInBytes\":3333340003,\"lastOutBytes\":71500308,\"outBytes\":71500308,\"outFlow\":69806,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3127355,\"inFlow\":0,\"lastChangeTime\":\"277 days, 22:32:08.43\",\"lastInBytes\":3127355,\"lastOutBytes\":176490888,\"outBytes\":176490888,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1527455,\"inBytes\":4190867272,\"inFlow\":794461,\"lastChangeTime\":\"247 days, 21:19:13.93\",\"lastInBytes\":4190867272,\"lastOutBytes\":145534090,\"outBytes\":145534090,\"outFlow\":732993,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":6836,\"inFlow\":0,\"lastChangeTime\":\"277 days, 22:29:37.06\",\"lastInBytes\":6836,\"lastOutBytes\":118288743,\"outBytes\":118288743,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":49472,\"inBytes\":9168,\"inFlow\":0,\"lastChangeTime\":\"254 days, 0:26:40.56\",\"lastInBytes\":9168,\"lastOutBytes\":1625983397,\"outBytes\":1625983397,\"outFlow\":49472,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":9289811,\"inBytes\":3183667332,\"inFlow\":1518105,\"lastChangeTime\":\"277 days, 22:23:23.87\",\"lastInBytes\":3183667332,\"lastOutBytes\":4009003134,\"outBytes\":4009003134,\"outFlow\":7771705,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.23\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.391255000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778031", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040008", + "name": "H3C前端交换机7", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.157", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"23\",\"0\",\"0\",\"0\",\"0\",\"0\",\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"135496\",\"inUnknownProtos\":\"656756309\",\"index\":\"634\",\"lastChange\":\"252 days, 22:50:54.90\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:c1:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"996309082\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"144785939\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.157\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":1588547,\"inBytes\":2275163938,\"inFlow\":851208,\"lastChangeTime\":\"245 days, 20:10:44.66\",\"lastInBytes\":2275163938,\"lastOutBytes\":4159416948,\"outBytes\":4159416948,\"outFlow\":737338,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588745,\"inBytes\":3124982786,\"inFlow\":851321,\"lastChangeTime\":\"245 days, 20:15:24.82\",\"lastInBytes\":3124982786,\"lastOutBytes\":2005377094,\"outBytes\":2005377094,\"outFlow\":737423,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588361,\"inBytes\":3776191922,\"inFlow\":851167,\"lastChangeTime\":\"245 days, 20:15:24.70\",\"lastInBytes\":3776191922,\"lastOutBytes\":1057622019,\"outBytes\":1057622019,\"outFlow\":737193,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588913,\"inBytes\":3408337333,\"inFlow\":851535,\"lastChangeTime\":\"245 days, 20:15:38.51\",\"lastInBytes\":3408337333,\"lastOutBytes\":3896462771,\"outBytes\":3896462771,\"outFlow\":737377,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588227,\"inBytes\":87414993,\"inFlow\":851373,\"lastChangeTime\":\"245 days, 20:15:37.18\",\"lastInBytes\":87414993,\"lastOutBytes\":656756309,\"outBytes\":656756309,\"outFlow\":736853,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588200,\"inBytes\":3972599230,\"inFlow\":851346,\"lastChangeTime\":\"245 days, 20:15:44.31\",\"lastInBytes\":3972599230,\"lastOutBytes\":3181440206,\"outBytes\":3181440206,\"outFlow\":736853,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1587755,\"inBytes\":3110940338,\"inFlow\":851441,\"lastChangeTime\":\"245 days, 20:15:44.75\",\"lastInBytes\":3110940338,\"lastOutBytes\":2543908158,\"outBytes\":2543908158,\"outFlow\":736314,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1585941,\"inBytes\":3287275201,\"inFlow\":851123,\"lastChangeTime\":\"245 days, 20:15:43.01\",\"lastInBytes\":3287275201,\"lastOutBytes\":204591075,\"outBytes\":204591075,\"outFlow\":734817,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1529936,\"inBytes\":3690810051,\"inFlow\":794388,\"lastChangeTime\":\"245 days, 20:15:47.93\",\"lastInBytes\":3690810051,\"lastOutBytes\":520679889,\"outBytes\":520679889,\"outFlow\":735548,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1530130,\"inBytes\":1860124010,\"inFlow\":794669,\"lastChangeTime\":\"252 days, 22:54:35.22\",\"lastInBytes\":1860124010,\"lastOutBytes\":2491361327,\"outBytes\":2491361327,\"outFlow\":735460,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":897650,\"inBytes\":2409268826,\"inFlow\":829713,\"lastChangeTime\":\"270 days, 4:18:33.55\",\"lastInBytes\":2409268826,\"lastOutBytes\":4077733826,\"outBytes\":4077733826,\"outFlow\":67936,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":893778,\"inBytes\":342538772,\"inFlow\":825938,\"lastChangeTime\":\"270 days, 4:18:47.34\",\"lastInBytes\":342538772,\"lastOutBytes\":4264316674,\"outBytes\":4264316674,\"outFlow\":67840,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":953987,\"inBytes\":1369934235,\"inFlow\":884705,\"lastChangeTime\":\"270 days, 4:18:38.31\",\"lastInBytes\":1369934235,\"lastOutBytes\":68018341,\"outBytes\":68018341,\"outFlow\":69281,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4298762,\"inFlow\":0,\"lastChangeTime\":\"252 days, 22:55:13.28\",\"lastInBytes\":4298762,\"lastOutBytes\":200365785,\"outBytes\":200365785,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":49135,\"inBytes\":136487025,\"inFlow\":118,\"lastChangeTime\":\"252 days, 22:51:32.42\",\"lastInBytes\":136487025,\"lastOutBytes\":1933373828,\"outBytes\":1933373828,\"outFlow\":49016,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":12806151,\"inBytes\":2907111797,\"inFlow\":1599871,\"lastChangeTime\":\"252 days, 22:54:53.24\",\"lastInBytes\":2907111797,\"lastOutBytes\":2127659540,\"outBytes\":2127659540,\"outFlow\":11206279,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.384400000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778032", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040009", + "name": "H3C前端交换机8", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.158", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"3\",\"0\",\"4\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"135380\",\"inUnknownProtos\":\"3682638591\",\"index\":\"634\",\"lastChange\":\"6 days, 2:13:33.74\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:5b:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1200977567\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.158\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":1592430,\"inBytes\":391837006,\"inFlow\":851433,\"lastChangeTime\":\"245 days, 20:20:54.51\",\"lastInBytes\":391837006,\"lastOutBytes\":2740795104,\"outBytes\":2740795104,\"outFlow\":740997,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1592458,\"inBytes\":642017320,\"inFlow\":851162,\"lastChangeTime\":\"245 days, 20:21:06.78\",\"lastInBytes\":642017320,\"lastOutBytes\":3581587660,\"outBytes\":3581587660,\"outFlow\":741295,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1592672,\"inBytes\":2579883322,\"inFlow\":851507,\"lastChangeTime\":\"245 days, 20:21:19.01\",\"lastInBytes\":2579883322,\"lastOutBytes\":2841306120,\"outBytes\":2841306120,\"outFlow\":741164,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1534889,\"inBytes\":495081828,\"inFlow\":794067,\"lastChangeTime\":\"245 days, 20:21:06.95\",\"lastInBytes\":495081828,\"lastOutBytes\":53518644,\"outBytes\":53518644,\"outFlow\":740822,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1534041,\"inBytes\":3415275328,\"inFlow\":794201,\"lastChangeTime\":\"245 days, 20:21:26.64\",\"lastInBytes\":3415275328,\"lastOutBytes\":3682428879,\"outBytes\":3682428879,\"outFlow\":739840,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1534743,\"inBytes\":3135591125,\"inFlow\":794599,\"lastChangeTime\":\"245 days, 20:21:28.91\",\"lastInBytes\":3135591125,\"lastOutBytes\":4137204296,\"outBytes\":4137204296,\"outFlow\":740144,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":47861,\"inFlow\":0,\"lastChangeTime\":\"223 days, 18:07:37.32\",\"lastInBytes\":47861,\"lastOutBytes\":988803,\"outBytes\":988803,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.10\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":116010,\"inFlow\":0,\"lastChangeTime\":\"6 days, 2:13:35.93\",\"lastInBytes\":116010,\"lastOutBytes\":644752,\"outBytes\":644752,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":50044,\"inBytes\":144475020,\"inFlow\":121,\"lastChangeTime\":\"20 days, 19:32:13.14\",\"lastInBytes\":144475020,\"lastOutBytes\":1219246392,\"outBytes\":1219246392,\"outFlow\":49923,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.11\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6227831,\"inBytes\":2328191576,\"inFlow\":1445915,\"lastChangeTime\":\"223 days, 18:07:39.74\",\"lastInBytes\":2328191576,\"lastOutBytes\":882599961,\"outBytes\":882599961,\"outFlow\":4781916,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.404047000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778033", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1080040010", + "name": "华为前端交换机9", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.159", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"217 days, 21:51:01.13\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:c3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.159\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:29\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":333678,\"inFlow\":0,\"lastChangeTime\":\"366 days, 3:57:04.22\",\"lastInBytes\":333678,\"lastOutBytes\":10160612,\"outBytes\":10160612,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":844500,\"inBytes\":3940393488,\"inFlow\":824594,\"lastChangeTime\":\"248 days, 0:16:47.73\",\"lastInBytes\":3940393488,\"lastOutBytes\":4207636919,\"outBytes\":4207636919,\"outFlow\":19905,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":844536,\"inBytes\":1738988303,\"inFlow\":825029,\"lastChangeTime\":\"280 days, 23:01:08.89\",\"lastInBytes\":1738988303,\"lastOutBytes\":260381215,\"outBytes\":260381215,\"outFlow\":19507,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":845573,\"inBytes\":2797434674,\"inFlow\":825756,\"lastChangeTime\":\"248 days, 0:16:46.49\",\"lastInBytes\":2797434674,\"lastOutBytes\":2698598355,\"outBytes\":2698598355,\"outFlow\":19816,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":844891,\"inBytes\":4007885799,\"inFlow\":825157,\"lastChangeTime\":\"248 days, 0:16:47.91\",\"lastInBytes\":4007885799,\"lastOutBytes\":3040719625,\"outBytes\":3040719625,\"outFlow\":19734,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":876834,\"inBytes\":3600102416,\"inFlow\":857105,\"lastChangeTime\":\"264 days, 7:55:59.07\",\"lastInBytes\":3600102416,\"lastOutBytes\":1990996830,\"outBytes\":1990996830,\"outFlow\":19728,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":126,\"inBytes\":129287729,\"inFlow\":1,\"lastChangeTime\":\"217 days, 22:03:33.05\",\"lastInBytes\":129287729,\"lastOutBytes\":1540679471,\"outBytes\":1540679471,\"outFlow\":125,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4275618,\"inBytes\":358214048,\"inFlow\":103705,\"lastChangeTime\":\"217 days, 22:03:16.96\",\"lastInBytes\":358214048,\"lastOutBytes\":1033915630,\"outBytes\":1033915630,\"outFlow\":4171913,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.392403000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778034", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040011", + "name": "H3C前端交换机10", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.160", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"138640\",\"inUnknownProtos\":\"3379939279\",\"index\":\"634\",\"lastChange\":\"6 days, 1:31:36.28\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:9f:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1283606552\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.160\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":1587402,\"inBytes\":835847893,\"inFlow\":851950,\"lastChangeTime\":\"406 days, 13:45:08.84\",\"lastInBytes\":835847893,\"lastOutBytes\":2869211661,\"outBytes\":2869211661,\"outFlow\":735451,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1586484,\"inBytes\":4050757399,\"inFlow\":851312,\"lastChangeTime\":\"245 days, 20:21:28.78\",\"lastInBytes\":4050757399,\"lastOutBytes\":1768876339,\"outBytes\":1768876339,\"outFlow\":735172,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1587256,\"inBytes\":1385873773,\"inFlow\":852243,\"lastChangeTime\":\"245 days, 20:21:30.37\",\"lastInBytes\":1385873773,\"lastOutBytes\":3210719083,\"outBytes\":3210719083,\"outFlow\":735013,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588104,\"inBytes\":3776734709,\"inFlow\":852857,\"lastChangeTime\":\"245 days, 20:21:46.34\",\"lastInBytes\":3776734709,\"lastOutBytes\":2076215083,\"outBytes\":2076215083,\"outFlow\":735246,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1588509,\"inBytes\":1938125210,\"inFlow\":852868,\"lastChangeTime\":\"245 days, 20:26:11.60\",\"lastInBytes\":1938125210,\"lastOutBytes\":3379939279,\"outBytes\":3379939279,\"outFlow\":735640,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":119026,\"inFlow\":0,\"lastChangeTime\":\"186 days, 1:15:49.52\",\"lastInBytes\":119026,\"lastOutBytes\":2358253,\"outBytes\":2358253,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":112599,\"inFlow\":0,\"lastChangeTime\":\"223 days, 18:27:19.18\",\"lastInBytes\":112599,\"lastOutBytes\":1614000,\"outBytes\":1614000,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":17271,\"inFlow\":0,\"lastChangeTime\":\"5 days, 22:18:38.97\",\"lastInBytes\":17271,\"lastOutBytes\":246270,\"outBytes\":246270,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":58168,\"inBytes\":138361220,\"inFlow\":118,\"lastChangeTime\":\"20 days, 21:04:16.96\",\"lastInBytes\":138361220,\"lastOutBytes\":263989988,\"outBytes\":263989988,\"outFlow\":58049,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.99\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":5414158,\"inBytes\":560798520,\"inFlow\":1427649,\"lastChangeTime\":\"223 days, 18:27:10.86\",\"lastInBytes\":560798520,\"lastOutBytes\":1078687763,\"outBytes\":1078687763,\"outFlow\":3986509,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.403748000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778035", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040012", + "name": "H3C前端交换机11", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139624\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"237 days, 22:39:23.43\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:76:67\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.161\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1528214,\"inBytes\":1558457369,\"inFlow\":795226,\"lastChangeTime\":\"259 days, 19:37:15.87\",\"lastInBytes\":1558457369,\"lastOutBytes\":2232269574,\"outBytes\":2232269574,\"outFlow\":732988,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1526638,\"inBytes\":3223468305,\"inFlow\":793605,\"lastChangeTime\":\"259 days, 19:37:20.40\",\"lastInBytes\":3223468305,\"lastOutBytes\":940930710,\"outBytes\":940930710,\"outFlow\":733033,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1527325,\"inBytes\":1075757203,\"inFlow\":794477,\"lastChangeTime\":\"259 days, 19:37:24.71\",\"lastInBytes\":1075757203,\"lastOutBytes\":2591573176,\"outBytes\":2591573176,\"outFlow\":732848,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":968718,\"inBytes\":560542088,\"inFlow\":881966,\"lastChangeTime\":\"284 days, 3:21:03.98\",\"lastInBytes\":560542088,\"lastOutBytes\":1561367049,\"outBytes\":1561367049,\"outFlow\":86751,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3665338,\"inFlow\":0,\"lastChangeTime\":\"237 days, 22:39:23.93\",\"lastInBytes\":3665338,\"lastOutBytes\":134148993,\"outBytes\":134148993,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":66650,\"inBytes\":138030942,\"inFlow\":118,\"lastChangeTime\":\"237 days, 22:39:23.43\",\"lastInBytes\":138030942,\"lastOutBytes\":3799296638,\"outBytes\":3799296638,\"outFlow\":66531,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.03\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4873521,\"inBytes\":3608173488,\"inFlow\":1415938,\"lastChangeTime\":\"237 days, 22:39:32.96\",\"lastInBytes\":3608173488,\"lastOutBytes\":3124549979,\"outBytes\":3124549979,\"outFlow\":3457583,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.389199000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778036", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040013", + "name": "H3C前端交换机12", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139588\",\"inUnknownProtos\":\"0\",\"index\":\"636\",\"lastChange\":\"237 days, 22:04:09.86\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:83:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.162\",\"index\":\"636\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1528929,\"inBytes\":2641126803,\"inFlow\":794480,\"lastChangeTime\":\"259 days, 18:58:22.46\",\"lastInBytes\":2641126803,\"lastOutBytes\":3158389100,\"outBytes\":3158389100,\"outFlow\":734449,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1529531,\"inBytes\":4130276697,\"inFlow\":795044,\"lastChangeTime\":\"259 days, 18:58:25.41\",\"lastInBytes\":4130276697,\"lastOutBytes\":2345867574,\"outBytes\":2345867574,\"outFlow\":734486,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1532358,\"inBytes\":2056328817,\"inFlow\":797915,\"lastChangeTime\":\"259 days, 18:58:31.18\",\"lastInBytes\":2056328817,\"lastOutBytes\":1145455080,\"outBytes\":1145455080,\"outFlow\":734442,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1528979,\"inBytes\":1555283886,\"inFlow\":794451,\"lastChangeTime\":\"259 days, 18:58:26.34\",\"lastInBytes\":1555283886,\"lastOutBytes\":3572227876,\"outBytes\":3572227876,\"outFlow\":734527,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1528618,\"inBytes\":1249902597,\"inFlow\":794503,\"lastChangeTime\":\"259 days, 18:58:46.99\",\"lastInBytes\":1249902597,\"lastOutBytes\":1481832438,\"outBytes\":1481832438,\"outFlow\":734115,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":503981,\"inFlow\":0,\"lastChangeTime\":\"237 days, 22:04:10.88\",\"lastInBytes\":503981,\"lastOutBytes\":12279825,\"outBytes\":12279825,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.90\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":54024,\"inBytes\":137980523,\"inFlow\":118,\"lastChangeTime\":\"237 days, 22:04:09.85\",\"lastInBytes\":137980523,\"lastOutBytes\":2139223287,\"outBytes\":2139223287,\"outFlow\":53905,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":5711173,\"inBytes\":4016867678,\"inFlow\":1435852,\"lastChangeTime\":\"237 days, 22:04:14.15\",\"lastInBytes\":4016867678,\"lastOutBytes\":1588014288,\"outBytes\":1588014288,\"outFlow\":4275320,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.388158000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778037", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040014", + "name": "H3C前端交换机13", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"2520482\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"41 days, 21:06:39.91\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:7c:67\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.163\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":1630268,\"inBytes\":2735071376,\"inFlow\":894352,\"lastChangeTime\":\"431 days, 12:29:29.70\",\"lastInBytes\":2735071376,\"lastOutBytes\":3055687639,\"outBytes\":3055687639,\"outFlow\":735916,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1583897,\"inBytes\":3175527987,\"inFlow\":851049,\"lastChangeTime\":\"266 days, 21:24:23.87\",\"lastInBytes\":3175527987,\"lastOutBytes\":3843983143,\"outBytes\":3843983143,\"outFlow\":732848,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":239407,\"inFlow\":0,\"lastChangeTime\":\"245 days, 0:29:13.22\",\"lastInBytes\":239407,\"lastOutBytes\":3359007,\"outBytes\":3359007,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":725108,\"inFlow\":0,\"lastChangeTime\":\"426 days, 19:13:38.43\",\"lastInBytes\":725108,\"lastOutBytes\":134302186,\"outBytes\":134302186,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":58257,\"inBytes\":137961900,\"inFlow\":119,\"lastChangeTime\":\"41 days, 21:06:32.97\",\"lastInBytes\":137961900,\"lastOutBytes\":4066454260,\"outBytes\":4066454260,\"outFlow\":58137,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":2998261,\"inBytes\":3622099778,\"inFlow\":1373138,\"lastChangeTime\":\"426 days, 19:12:56.31\",\"lastInBytes\":3622099778,\"lastOutBytes\":2531544514,\"outBytes\":2531544514,\"outFlow\":1625123,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.97\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.413131000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778038", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040015", + "name": "H3C前端交换机14", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.164", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"43\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"140278\",\"inUnknownProtos\":\"3934753506\",\"index\":\"634\",\"lastChange\":\"375 days, 22:10:26.81\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:80:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"985706441\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"87077911\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.164\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1558019,\"inBytes\":3383658187,\"inFlow\":825890,\"lastChangeTime\":\"423 days, 17:32:58.69\",\"lastInBytes\":3383658187,\"lastOutBytes\":3021064701,\"outBytes\":3021064701,\"outFlow\":732128,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1556457,\"inBytes\":3796951782,\"inFlow\":825555,\"lastChangeTime\":\"260 days, 17:26:52.81\",\"lastInBytes\":3796951782,\"lastOutBytes\":183067999,\"outBytes\":183067999,\"outFlow\":730901,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1856537,\"inBytes\":1962002979,\"inFlow\":1119985,\"lastChangeTime\":\"316 days, 23:54:40.62\",\"lastInBytes\":1962002979,\"lastOutBytes\":953628889,\"outBytes\":953628889,\"outFlow\":736552,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1553821,\"inBytes\":3859445357,\"inFlow\":826254,\"lastChangeTime\":\"260 days, 17:26:36.32\",\"lastInBytes\":3859445357,\"lastOutBytes\":3934546511,\"outBytes\":3934546511,\"outFlow\":727566,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1552986,\"inBytes\":2748893622,\"inFlow\":826527,\"lastChangeTime\":\"260 days, 17:26:44.12\",\"lastInBytes\":2748893622,\"lastOutBytes\":1952494680,\"outBytes\":1952494680,\"outFlow\":726459,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1544398,\"inBytes\":3132074149,\"inFlow\":825877,\"lastChangeTime\":\"268 days, 18:09:43.95\",\"lastInBytes\":3132074149,\"lastOutBytes\":3050801222,\"outBytes\":3050801222,\"outFlow\":718520,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1531460,\"inBytes\":1119295227,\"inFlow\":826512,\"lastChangeTime\":\"262 days, 17:10:26.38\",\"lastInBytes\":1119295227,\"lastOutBytes\":3397362435,\"outBytes\":3397362435,\"outFlow\":704947,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1557941,\"inBytes\":3131704442,\"inFlow\":825264,\"lastChangeTime\":\"260 days, 17:26:40.90\",\"lastInBytes\":3131704442,\"lastOutBytes\":412980615,\"outBytes\":412980615,\"outFlow\":732676,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":1558432,\"inBytes\":728476609,\"inFlow\":825965,\"lastChangeTime\":\"268 days, 18:09:42.44\",\"lastInBytes\":728476609,\"lastOutBytes\":2064636014,\"outBytes\":2064636014,\"outFlow\":732466,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":100000000,\"upDown\":1},{\"flow\":1558846,\"inBytes\":3170107094,\"inFlow\":825130,\"lastChangeTime\":\"260 days, 17:26:52.98\",\"lastInBytes\":3170107094,\"lastOutBytes\":1962866875,\"outBytes\":1962866875,\"outFlow\":733716,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":1619818,\"inBytes\":3249130115,\"inFlow\":884582,\"lastChangeTime\":\"423 days, 17:37:07.74\",\"lastInBytes\":3249130115,\"lastOutBytes\":42379897,\"outBytes\":42379897,\"outFlow\":735236,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1758917,\"inFlow\":0,\"lastChangeTime\":\"375 days, 22:12:01.28\",\"lastInBytes\":1758917,\"lastOutBytes\":264624539,\"outBytes\":264624539,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":57094,\"inBytes\":136758485,\"inFlow\":118,\"lastChangeTime\":\"375 days, 22:10:33.11\",\"lastInBytes\":136758485,\"lastOutBytes\":2859315993,\"outBytes\":2859315993,\"outFlow\":56975,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":10975554,\"inBytes\":1302196666,\"inFlow\":1566538,\"lastChangeTime\":\"375 days, 22:12:10.65\",\"lastInBytes\":1302196666,\"lastOutBytes\":495046723,\"outBytes\":495046723,\"outFlow\":9409015,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"14 days, 21:43:10.32\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.534955000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778039", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040016", + "name": "H3C前端交换机15", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.165", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"142023\",\"inUnknownProtos\":\"2626070503\",\"index\":\"634\",\"lastChange\":\"293 days, 21:38:41.93\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:28:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1048792127\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"157640964\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.165\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"30\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1219014,\"inBytes\":468294268,\"inFlow\":489407,\"lastChangeTime\":\"259 days, 17:21:07.30\",\"lastInBytes\":468294268,\"lastOutBytes\":1017479065,\"outBytes\":1017479065,\"outFlow\":729607,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1586990,\"inBytes\":3674321193,\"inFlow\":852398,\"lastChangeTime\":\"259 days, 17:21:12.80\",\"lastInBytes\":3674321193,\"lastOutBytes\":1566685100,\"outBytes\":1566685100,\"outFlow\":734591,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":1587589,\"inBytes\":2065684791,\"inFlow\":852460,\"lastChangeTime\":\"259 days, 17:21:13.39\",\"lastInBytes\":2065684791,\"lastOutBytes\":3315556991,\"outBytes\":3315556991,\"outFlow\":735129,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":1585828,\"inBytes\":3823984368,\"inFlow\":851118,\"lastChangeTime\":\"419 days, 17:59:57.77\",\"lastInBytes\":3823984368,\"lastOutBytes\":3352884500,\"outBytes\":3352884500,\"outFlow\":734710,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":1623794,\"inBytes\":1876470236,\"inFlow\":888688,\"lastChangeTime\":\"419 days, 17:59:59.20\",\"lastInBytes\":1876470236,\"lastOutBytes\":2626070503,\"outBytes\":2626070503,\"outFlow\":735106,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":1559623,\"inBytes\":1737794740,\"inFlow\":826186,\"lastChangeTime\":\"419 days, 18:00:03.67\",\"lastInBytes\":1737794740,\"lastOutBytes\":200691806,\"outBytes\":200691806,\"outFlow\":733437,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1559547,\"inBytes\":2365866266,\"inFlow\":826230,\"lastChangeTime\":\"419 days, 18:00:05.74\",\"lastInBytes\":2365866266,\"lastOutBytes\":676978194,\"outBytes\":676978194,\"outFlow\":733316,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1559552,\"inBytes\":3165232469,\"inFlow\":826177,\"lastChangeTime\":\"419 days, 17:58:51.75\",\"lastInBytes\":3165232469,\"lastOutBytes\":3998783099,\"outBytes\":3998783099,\"outFlow\":733375,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":1620180,\"inBytes\":294501787,\"inFlow\":885909,\"lastChangeTime\":\"419 days, 17:58:52.31\",\"lastInBytes\":294501787,\"lastOutBytes\":130176747,\"outBytes\":130176747,\"outFlow\":734270,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4848184,\"inFlow\":0,\"lastChangeTime\":\"334 days, 16:04:41.37\",\"lastInBytes\":4848184,\"lastOutBytes\":736359918,\"outBytes\":736359918,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":32327,\"inFlow\":0,\"lastChangeTime\":\"301 days, 15:46:11.04\",\"lastInBytes\":32327,\"lastOutBytes\":3608257,\"outBytes\":3608257,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6167588,\"inFlow\":0,\"lastChangeTime\":\"293 days, 21:20:32.07\",\"lastInBytes\":6167588,\"lastOutBytes\":272364822,\"outBytes\":272364822,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":55942,\"inBytes\":324090579,\"inFlow\":119,\"lastChangeTime\":\"334 days, 16:15:42.12\",\"lastInBytes\":324090579,\"lastOutBytes\":1133256791,\"outBytes\":1133256791,\"outFlow\":55823,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8492916,\"inBytes\":3332900644,\"inFlow\":1499223,\"lastChangeTime\":\"334 days, 16:14:57.12\",\"lastInBytes\":3332900644,\"lastOutBytes\":314238830,\"outBytes\":314238830,\"outFlow\":6993693,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.401270000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778040", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040017", + "name": "H3C前端交换机16", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.166", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"135769\",\"inUnknownProtos\":\"0\",\"index\":\"634\",\"lastChange\":\"224 days, 22:18:07.74\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:40:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"0\",\"speed\":\"4294967295\"},\"cpuRatio\":\"5\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.166\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":1587681,\"inBytes\":2365430920,\"inFlow\":851277,\"lastChangeTime\":\"246 days, 18:58:48.87\",\"lastInBytes\":2365430920,\"lastOutBytes\":4185650393,\"outBytes\":4185650393,\"outFlow\":736404,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":1587659,\"inBytes\":1547765425,\"inFlow\":851514,\"lastChangeTime\":\"246 days, 18:58:50.60\",\"lastInBytes\":1547765425,\"lastOutBytes\":1283643266,\"outBytes\":1283643266,\"outFlow\":736145,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":955065,\"inBytes\":406441604,\"inFlow\":884099,\"lastChangeTime\":\"279 days, 23:30:34.01\",\"lastInBytes\":406441604,\"lastOutBytes\":1260558153,\"outBytes\":1260558153,\"outFlow\":70966,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":768842,\"inFlow\":0,\"lastChangeTime\":\"224 days, 22:18:16.15\",\"lastInBytes\":768842,\"lastOutBytes\":26956952,\"outBytes\":26956952,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":8111202,\"inFlow\":0,\"lastChangeTime\":\"7 days, 0:22:44.01\",\"lastInBytes\":8111202,\"lastOutBytes\":353940063,\"outBytes\":353940063,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":55300,\"inBytes\":135914784,\"inFlow\":118,\"lastChangeTime\":\"279 days, 23:36:10.03\",\"lastInBytes\":135914784,\"lastOutBytes\":1266878209,\"outBytes\":1266878209,\"outFlow\":55181,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3993144,\"inBytes\":2767772497,\"inFlow\":1395072,\"lastChangeTime\":\"224 days, 22:18:07.73\",\"lastInBytes\":2767772497,\"lastOutBytes\":3023316418,\"outBytes\":3023316418,\"outFlow\":2598071,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.401543000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778041", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:30", + "echoMap": {}, + "deviceId": "1080040018", + "name": "华为前端交换机17", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.167", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"14 days, 23:44:32.22\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:4d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.167\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:29\",\"info\":{\"portInfoList\":[{\"flow\":484476,\"inBytes\":3470087113,\"inFlow\":470775,\"lastChangeTime\":\"261 days, 23:26:50.54\",\"lastInBytes\":3470087113,\"lastOutBytes\":229055471,\"outBytes\":229055471,\"outFlow\":13700,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":484616,\"inBytes\":2703668717,\"inFlow\":470920,\"lastChangeTime\":\"261 days, 23:22:49.50\",\"lastInBytes\":2703668717,\"lastOutBytes\":2663327458,\"outBytes\":2663327458,\"outFlow\":13696,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"261 days, 0:49:22.61\",\"lastInBytes\":0,\"lastOutBytes\":32581,\"outBytes\":32581,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":123,\"inBytes\":25528460,\"inFlow\":0,\"lastChangeTime\":\"261 days, 0:54:08.36\",\"lastInBytes\":25528460,\"lastOutBytes\":3240999519,\"outBytes\":3240999519,\"outFlow\":123,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":979542,\"inBytes\":1989514915,\"inFlow\":28698,\"lastChangeTime\":\"249 days, 23:24:02.24\",\"lastInBytes\":1989514915,\"lastOutBytes\":3582187366,\"outBytes\":3582187366,\"outFlow\":950844,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:56.519755000\"}}", + "lastDiagTime": "2026-02-02 14:38:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778042", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040019", + "name": "H3C前端交换机18", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.168", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"138933\",\"inUnknownProtos\":\"2011762075\",\"index\":\"634\",\"lastChange\":\"18 days, 18:34:36.53\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:86:67\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"489265569\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"381165059\",\"speed\":\"4294967295\"},\"cpuRatio\":\"10\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.168\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:02\",\"info\":{\"portInfoList\":[{\"flow\":959116,\"inBytes\":2883358727,\"inFlow\":883940,\"lastChangeTime\":\"283 days, 2:35:13.02\",\"lastInBytes\":2883358727,\"lastOutBytes\":3148190764,\"outBytes\":3148190764,\"outFlow\":75176,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":959286,\"inBytes\":1269795785,\"inFlow\":884446,\"lastChangeTime\":\"283 days, 2:35:14.28\",\"lastInBytes\":1269795785,\"lastOutBytes\":3040885738,\"outBytes\":3040885738,\"outFlow\":74840,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":958857,\"inBytes\":698832453,\"inFlow\":884331,\"lastChangeTime\":\"283 days, 2:35:19.73\",\"lastInBytes\":698832453,\"lastOutBytes\":2509730943,\"outBytes\":2509730943,\"outFlow\":74526,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":959942,\"inBytes\":3484767984,\"inFlow\":884685,\"lastChangeTime\":\"283 days, 2:35:09.40\",\"lastInBytes\":3484767984,\"lastOutBytes\":2340396580,\"outBytes\":2340396580,\"outFlow\":75257,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":957845,\"inBytes\":3493070658,\"inFlow\":882893,\"lastChangeTime\":\"283 days, 2:35:12.95\",\"lastInBytes\":3493070658,\"lastOutBytes\":2011762075,\"outBytes\":2011762075,\"outFlow\":74951,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":959794,\"inBytes\":1237065281,\"inFlow\":884330,\"lastChangeTime\":\"283 days, 2:35:19.19\",\"lastInBytes\":1237065281,\"lastOutBytes\":4031854850,\"outBytes\":4031854850,\"outFlow\":75464,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":959693,\"inBytes\":3293745401,\"inFlow\":884318,\"lastChangeTime\":\"283 days, 2:35:13.79\",\"lastInBytes\":3293745401,\"lastOutBytes\":816097195,\"outBytes\":816097195,\"outFlow\":75374,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":19938,\"inFlow\":0,\"lastChangeTime\":\"236 days, 23:18:01.99\",\"lastInBytes\":19938,\"lastOutBytes\":709288,\"outBytes\":709288,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":42826,\"inFlow\":0,\"lastChangeTime\":\"236 days, 23:17:02.05\",\"lastInBytes\":42826,\"lastOutBytes\":1525818,\"outBytes\":1525818,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":54696,\"inBytes\":133606805,\"inFlow\":118,\"lastChangeTime\":\"384 days, 23:24:42.93\",\"lastInBytes\":133606805,\"lastOutBytes\":4275277625,\"outBytes\":4275277625,\"outFlow\":54577,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.94\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7688592,\"inBytes\":1694900997,\"inFlow\":1477065,\"lastChangeTime\":\"236 days, 23:18:16.70\",\"lastInBytes\":1694900997,\"lastOutBytes\":3083398243,\"outBytes\":3083398243,\"outFlow\":6211527,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.545870000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778043", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040020", + "name": "H3C前端交换机19", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.169", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"3968219\",\"inUnknownProtos\":\"474294747\",\"index\":\"634\",\"lastChange\":\"18 days, 18:29:39.15\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c0:9e:67\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"730687768\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"397526814\",\"speed\":\"4294967295\"},\"cpuRatio\":\"8\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.169\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":569935,\"inBytes\":311154762,\"inFlow\":495640,\"lastChangeTime\":\"335 days, 23:35:37.65\",\"lastInBytes\":311154762,\"lastOutBytes\":1884166700,\"outBytes\":1884166700,\"outFlow\":74295,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":960844,\"inBytes\":4076106908,\"inFlow\":881646,\"lastChangeTime\":\"283 days, 2:43:11.99\",\"lastInBytes\":4076106908,\"lastOutBytes\":1441368338,\"outBytes\":1441368338,\"outFlow\":79198,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":965542,\"inBytes\":3353479304,\"inFlow\":885707,\"lastChangeTime\":\"283 days, 2:43:10.59\",\"lastInBytes\":3353479304,\"lastOutBytes\":1178978036,\"outBytes\":1178978036,\"outFlow\":79834,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":964293,\"inBytes\":1144348492,\"inFlow\":884556,\"lastChangeTime\":\"283 days, 2:43:17.25\",\"lastInBytes\":1144348492,\"lastOutBytes\":856593180,\"outBytes\":856593180,\"outFlow\":79737,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":964039,\"inBytes\":1882479249,\"inFlow\":884774,\"lastChangeTime\":\"283 days, 2:43:21.04\",\"lastInBytes\":1882479249,\"lastOutBytes\":474294747,\"outBytes\":474294747,\"outFlow\":79265,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":963933,\"inBytes\":1494143403,\"inFlow\":884495,\"lastChangeTime\":\"283 days, 2:43:08.71\",\"lastInBytes\":1494143403,\"lastOutBytes\":1858498043,\"outBytes\":1858498043,\"outFlow\":79437,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":967641,\"inBytes\":642610895,\"inFlow\":888067,\"lastChangeTime\":\"289 days, 18:35:30.09\",\"lastInBytes\":642610895,\"lastOutBytes\":4151860043,\"outBytes\":4151860043,\"outFlow\":79574,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":964021,\"inBytes\":3605883184,\"inFlow\":884425,\"lastChangeTime\":\"283 days, 2:43:10.50\",\"lastInBytes\":3605883184,\"lastOutBytes\":1604597125,\"outBytes\":1604597125,\"outFlow\":79595,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":903017,\"inBytes\":3016488970,\"inFlow\":825247,\"lastChangeTime\":\"283 days, 2:43:10.55\",\"lastInBytes\":3016488970,\"lastOutBytes\":1043651862,\"outBytes\":1043651862,\"outFlow\":77769,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":91060,\"inFlow\":0,\"lastChangeTime\":\"237 days, 0:04:24.47\",\"lastInBytes\":91060,\"lastOutBytes\":1516964,\"outBytes\":1516964,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":58611,\"inBytes\":118806240,\"inFlow\":3,\"lastChangeTime\":\"418 days, 19:13:30.27\",\"lastInBytes\":118806240,\"lastOutBytes\":3406105767,\"outBytes\":3406105767,\"outFlow\":58608,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.91\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9110197,\"inBytes\":1751151445,\"inFlow\":1512925,\"lastChangeTime\":\"237 days, 0:04:27.78\",\"lastInBytes\":1751151445,\"lastOutBytes\":1935484022,\"outBytes\":1935484022,\"outFlow\":7597271,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.408662000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778044", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:48", + "echoMap": {}, + "deviceId": "1080040021", + "name": "华为前端交换机20", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.170", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"207 days, 22:13:03.29\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:73\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.170\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:48\",\"info\":{\"portInfoList\":[{\"flow\":484307,\"inBytes\":3792195860,\"inFlow\":470745,\"lastChangeTime\":\"295 days, 6:32:40.80\",\"lastInBytes\":3792195860,\"lastOutBytes\":4210250206,\"outBytes\":4210250206,\"outFlow\":13562,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":484428,\"inBytes\":1889939363,\"inFlow\":470785,\"lastChangeTime\":\"295 days, 6:34:10.71\",\"lastInBytes\":1889939363,\"lastOutBytes\":3854796762,\"outBytes\":3854796762,\"outFlow\":13643,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":485916,\"inBytes\":3480424546,\"inFlow\":472461,\"lastChangeTime\":\"295 days, 6:49:05.02\",\"lastInBytes\":3480424546,\"lastOutBytes\":1567760411,\"outBytes\":1567760411,\"outFlow\":13455,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":483438,\"inBytes\":2684603047,\"inFlow\":469873,\"lastChangeTime\":\"295 days, 6:33:09.81\",\"lastInBytes\":2684603047,\"lastOutBytes\":3297491529,\"outBytes\":3297491529,\"outFlow\":13564,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":878832,\"inBytes\":1130333429,\"inFlow\":859291,\"lastChangeTime\":\"295 days, 6:33:28.53\",\"lastInBytes\":1130333429,\"lastOutBytes\":1430360485,\"outBytes\":1430360485,\"outFlow\":19540,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":879831,\"inBytes\":3254879587,\"inFlow\":860323,\"lastChangeTime\":\"283 days, 2:25:12.08\",\"lastInBytes\":3254879587,\"lastOutBytes\":472019206,\"outBytes\":472019206,\"outFlow\":19507,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":881989,\"inBytes\":3159947306,\"inFlow\":861715,\"lastChangeTime\":\"283 days, 2:33:33.23\",\"lastInBytes\":3159947306,\"lastOutBytes\":3704360446,\"outBytes\":3704360446,\"outFlow\":20274,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":1248,\"inBytes\":114130499,\"inFlow\":113,\"lastChangeTime\":\"418 days, 18:35:02.26\",\"lastInBytes\":114130499,\"lastOutBytes\":1524662536,\"outBytes\":1524662536,\"outFlow\":1134,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":4619588,\"inBytes\":641748398,\"inFlow\":119167,\"lastChangeTime\":\"207 days, 22:13:03.25\",\"lastInBytes\":641748398,\"lastOutBytes\":2872888601,\"outBytes\":2872888601,\"outFlow\":4500421,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:00.548441000\"}}", + "lastDiagTime": "2026-02-02 14:38:48", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778045", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:30", + "echoMap": {}, + "deviceId": "1080040022", + "name": "华为前端交换机21", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.171", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"207 days, 22:13:44.48\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:d4\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.171\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:29\",\"info\":{\"portInfoList\":[{\"flow\":884122,\"inBytes\":225634117,\"inFlow\":864367,\"lastChangeTime\":\"283 days, 2:25:45.79\",\"lastInBytes\":225634117,\"lastOutBytes\":1319338891,\"outBytes\":1319338891,\"outFlow\":19755,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":487100,\"inBytes\":1932250457,\"inFlow\":473430,\"lastChangeTime\":\"292 days, 0:04:37.96\",\"lastInBytes\":1932250457,\"lastOutBytes\":627089579,\"outBytes\":627089579,\"outFlow\":13669,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":883685,\"inBytes\":3703101701,\"inFlow\":863831,\"lastChangeTime\":\"283 days, 2:25:37.46\",\"lastInBytes\":3703101701,\"lastOutBytes\":2516044826,\"outBytes\":2516044826,\"outFlow\":19854,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":18722,\"inFlow\":0,\"lastChangeTime\":\"236 days, 23:43:12.84\",\"lastInBytes\":18722,\"lastOutBytes\":1614,\"outBytes\":1614,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":344,\"inBytes\":114088608,\"inFlow\":114,\"lastChangeTime\":\"418 days, 18:39:59.65\",\"lastInBytes\":114088608,\"lastOutBytes\":1539501765,\"outBytes\":1539501765,\"outFlow\":229,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2255597,\"inBytes\":3966212146,\"inFlow\":57035,\"lastChangeTime\":\"207 days, 22:13:44.45\",\"lastInBytes\":3966212146,\"lastOutBytes\":1948820748,\"outBytes\":1948820748,\"outFlow\":2198562,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:55.911172000\"}}", + "lastDiagTime": "2026-02-02 14:38:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778046", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1080040023", + "name": "华为前端交换机22", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.172", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:33\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.172\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:29\",\"info\":{\"portInfoList\":[{\"flow\":490869,\"inBytes\":76778016,\"inFlow\":477279,\"lastChangeTime\":\"279 days, 23:15:47.98\",\"lastInBytes\":76778016,\"lastOutBytes\":2346399704,\"outBytes\":2346399704,\"outFlow\":13590,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":488713,\"inBytes\":3609377951,\"inFlow\":475081,\"lastChangeTime\":\"279 days, 23:11:34.80\",\"lastInBytes\":3609377951,\"lastOutBytes\":774141453,\"outBytes\":774141453,\"outFlow\":13631,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":6186,\"inFlow\":0,\"lastChangeTime\":\"6 days, 19:36:13.19\",\"lastInBytes\":6186,\"lastOutBytes\":17836,\"outBytes\":17836,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"243 days, 23:29:36.25\",\"lastInBytes\":0,\"lastOutBytes\":608162,\"outBytes\":608162,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":100000000,\"upDown\":2},{\"flow\":344,\"inBytes\":129228518,\"inFlow\":114,\"lastChangeTime\":\"279 days, 23:17:48.85\",\"lastInBytes\":129228518,\"lastOutBytes\":3069757690,\"outBytes\":3069757690,\"outFlow\":230,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":978363,\"inBytes\":1519775895,\"inFlow\":29261,\"lastChangeTime\":\"195 days, 22:02:29.97\",\"lastInBytes\":1519775895,\"lastOutBytes\":3475052303,\"outBytes\":3475052303,\"outFlow\":949101,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.423331000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778047", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:30", + "echoMap": {}, + "deviceId": "1080040024", + "name": "华为前端交换机23", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.173", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"18:24:46.19\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:b8\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.173\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:29\",\"info\":{\"portInfoList\":[{\"flow\":886173,\"inBytes\":1185304775,\"inFlow\":866285,\"lastChangeTime\":\"293 days, 22:24:28.48\",\"lastInBytes\":1185304775,\"lastOutBytes\":33080114,\"outBytes\":33080114,\"outFlow\":19887,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":488604,\"inBytes\":3545156664,\"inFlow\":474809,\"lastChangeTime\":\"293 days, 22:24:34.93\",\"lastInBytes\":3545156664,\"lastOutBytes\":1867352228,\"outBytes\":1867352228,\"outFlow\":13794,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":5623058,\"inFlow\":0,\"lastChangeTime\":\"293 days, 22:23:25.13\",\"lastInBytes\":5623058,\"lastOutBytes\":2656137750,\"outBytes\":2656137750,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":128166340,\"inFlow\":114,\"lastChangeTime\":\"293 days, 22:24:40.95\",\"lastInBytes\":128166340,\"lastOutBytes\":2913976378,\"outBytes\":2913976378,\"outFlow\":235,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1378038,\"inBytes\":519943807,\"inFlow\":36360,\"lastChangeTime\":\"293 days, 22:21:01.78\",\"lastInBytes\":519943807,\"lastOutBytes\":3851126972,\"outBytes\":3851126972,\"outFlow\":1341678,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.446066000\"}}", + "lastDiagTime": "2026-02-02 14:38:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778048", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:38", + "echoMap": {}, + "deviceId": "1080040025", + "name": "华为前端交换机24", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.174", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:3b\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.174\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:37\",\"info\":{\"portInfoList\":[{\"flow\":881492,\"inBytes\":2088321236,\"inFlow\":861828,\"lastChangeTime\":\"264 days, 2:09:18.87\",\"lastInBytes\":2088321236,\"lastOutBytes\":1314490477,\"outBytes\":1314490477,\"outFlow\":19663,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":881919,\"inBytes\":1328133105,\"inFlow\":862312,\"lastChangeTime\":\"272 days, 23:59:52.20\",\"lastInBytes\":1328133105,\"lastOutBytes\":1333476356,\"outBytes\":1333476356,\"outFlow\":19607,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":881460,\"inBytes\":1408128416,\"inFlow\":861714,\"lastChangeTime\":\"273 days, 0:01:40.13\",\"lastInBytes\":1408128416,\"lastOutBytes\":3709950427,\"outBytes\":3709950427,\"outFlow\":19746,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":892955,\"inBytes\":1813502628,\"inFlow\":871917,\"lastChangeTime\":\"274 days, 0:00:57.96\",\"lastInBytes\":1813502628,\"lastOutBytes\":2975185956,\"outBytes\":2975185956,\"outFlow\":21038,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":498343,\"inBytes\":1114099638,\"inFlow\":483031,\"lastChangeTime\":\"273 days, 0:01:56.18\",\"lastInBytes\":1114099638,\"lastOutBytes\":1201461615,\"outBytes\":1201461615,\"outFlow\":15311,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":346,\"inBytes\":128887354,\"inFlow\":114,\"lastChangeTime\":\"236 days, 23:39:00.10\",\"lastInBytes\":128887354,\"lastOutBytes\":3133958840,\"outBytes\":3133958840,\"outFlow\":231,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":4061888,\"inBytes\":2695935842,\"inFlow\":101182,\"lastChangeTime\":\"188 days, 22:06:30.28\",\"lastInBytes\":2695935842,\"lastOutBytes\":2892668543,\"outBytes\":2892668543,\"outFlow\":3960706,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:58.152306000\"}}", + "lastDiagTime": "2026-02-02 14:38:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778049", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040026", + "name": "H3C前端交换机25", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.175", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"139029\",\"inUnknownProtos\":\"637115750\",\"index\":\"634\",\"lastChange\":\"18 days, 18:56:45.87\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:87:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1065087751\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"397201603\",\"speed\":\"4294967295\"},\"cpuRatio\":\"6\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.175\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":570236,\"inBytes\":481838529,\"inFlow\":485536,\"lastChangeTime\":\"292 days, 0:28:35.05\",\"lastInBytes\":481838529,\"lastOutBytes\":3681926958,\"outBytes\":3681926958,\"outFlow\":84699,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":975273,\"inBytes\":1313931287,\"inFlow\":884070,\"lastChangeTime\":\"283 days, 2:43:08.71\",\"lastInBytes\":1313931287,\"lastOutBytes\":1059751157,\"outBytes\":1059751157,\"outFlow\":91202,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":976199,\"inBytes\":39026379,\"inFlow\":884828,\"lastChangeTime\":\"283 days, 2:43:16.11\",\"lastInBytes\":39026379,\"lastOutBytes\":1062696164,\"outBytes\":1062696164,\"outFlow\":91370,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":973273,\"inBytes\":2606536294,\"inFlow\":881848,\"lastChangeTime\":\"283 days, 2:51:42.22\",\"lastInBytes\":2606536294,\"lastOutBytes\":76436650,\"outBytes\":76436650,\"outFlow\":91424,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":976498,\"inBytes\":660285458,\"inFlow\":885639,\"lastChangeTime\":\"283 days, 2:43:15.57\",\"lastInBytes\":660285458,\"lastOutBytes\":637115750,\"outBytes\":637115750,\"outFlow\":90859,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":978598,\"inBytes\":908776720,\"inFlow\":887157,\"lastChangeTime\":\"283 days, 2:43:07.99\",\"lastInBytes\":908776720,\"lastOutBytes\":884624865,\"outBytes\":884624865,\"outFlow\":91441,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":976240,\"inBytes\":2208876709,\"inFlow\":884835,\"lastChangeTime\":\"283 days, 2:43:12.91\",\"lastInBytes\":2208876709,\"lastOutBytes\":3775943121,\"outBytes\":3775943121,\"outFlow\":91405,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":976133,\"inBytes\":3207183539,\"inFlow\":884613,\"lastChangeTime\":\"283 days, 2:43:18.73\",\"lastInBytes\":3207183539,\"lastOutBytes\":608187720,\"outBytes\":608187720,\"outFlow\":91520,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":975490,\"inBytes\":3046493055,\"inFlow\":884278,\"lastChangeTime\":\"283 days, 2:51:38.28\",\"lastInBytes\":3046493055,\"lastOutBytes\":213504754,\"outBytes\":213504754,\"outFlow\":91212,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":248827,\"inFlow\":0,\"lastChangeTime\":\"237 days, 0:48:24.52\",\"lastInBytes\":248827,\"lastOutBytes\":8872274,\"outBytes\":8872274,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":52173,\"inFlow\":0,\"lastChangeTime\":\"18 days, 19:34:35.97\",\"lastInBytes\":52173,\"lastOutBytes\":413869,\"outBytes\":413869,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":70476,\"inBytes\":137554591,\"inFlow\":3,\"lastChangeTime\":\"256 days, 0:16:03.68\",\"lastInBytes\":137554591,\"lastOutBytes\":338821593,\"outBytes\":338821593,\"outFlow\":70472,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:42.95\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":9097697,\"inBytes\":1341101440,\"inFlow\":1511856,\"lastChangeTime\":\"237 days, 0:48:14.03\",\"lastInBytes\":1341101440,\"lastOutBytes\":744306632,\"outBytes\":744306632,\"outFlow\":7585840,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.410386000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778050", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:32", + "echoMap": {}, + "deviceId": "1080040027", + "name": "华为前端交换机26", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.176", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:11:03\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"76\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.176\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:32\",\"info\":{\"portInfoList\":[{\"flow\":877785,\"inBytes\":2225021631,\"inFlow\":858219,\"lastChangeTime\":\"46 days, 2:26:07.20\",\"lastInBytes\":2225021631,\"lastOutBytes\":1886589917,\"outBytes\":1886589917,\"outFlow\":19566,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":878022,\"inBytes\":1324402777,\"inFlow\":858537,\"lastChangeTime\":\"46 days, 2:26:00.19\",\"lastInBytes\":1324402777,\"lastOutBytes\":4077515935,\"outBytes\":4077515935,\"outFlow\":19484,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":879974,\"inBytes\":3525410084,\"inFlow\":860536,\"lastChangeTime\":\"46 days, 2:26:01.76\",\"lastInBytes\":3525410084,\"lastOutBytes\":1195731215,\"outBytes\":1195731215,\"outFlow\":19438,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":347,\"inBytes\":250040802,\"inFlow\":113,\"lastChangeTime\":\"19 days, 0:05:26.81\",\"lastInBytes\":250040802,\"lastOutBytes\":3055425281,\"outBytes\":3055425281,\"outFlow\":234,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2646106,\"inBytes\":708870116,\"inFlow\":62618,\"lastChangeTime\":\"0:01:55.20\",\"lastInBytes\":708870116,\"lastOutBytes\":2030193483,\"outBytes\":2030193483,\"outFlow\":2583487,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.763591000\"}}", + "lastDiagTime": "2026-02-02 14:38:32", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778051", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1080040028", + "name": "华为前端交换机27", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.177", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ad:0f\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.177\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:28\",\"info\":{\"portInfoList\":[{\"flow\":884781,\"inBytes\":4187773856,\"inFlow\":865267,\"lastChangeTime\":\"7 days, 1:10:35.48\",\"lastInBytes\":4187773856,\"lastOutBytes\":2025154599,\"outBytes\":2025154599,\"outFlow\":19514,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883987,\"inBytes\":3556211347,\"inFlow\":864390,\"lastChangeTime\":\"7 days, 1:10:22.52\",\"lastInBytes\":3556211347,\"lastOutBytes\":2013140935,\"outBytes\":2013140935,\"outFlow\":19596,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":486739,\"inBytes\":1977112970,\"inFlow\":473004,\"lastChangeTime\":\"7 days, 1:10:09.97\",\"lastInBytes\":1977112970,\"lastOutBytes\":1988899020,\"outBytes\":1988899020,\"outFlow\":13734,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":487653,\"inBytes\":1969559584,\"inFlow\":474056,\"lastChangeTime\":\"7 days, 1:11:01.95\",\"lastInBytes\":1969559584,\"lastOutBytes\":1980171181,\"outBytes\":1980171181,\"outFlow\":13597,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":256,\"inBytes\":56896309,\"inFlow\":92,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":56896309,\"lastOutBytes\":2049061523,\"outBytes\":2049061523,\"outFlow\":164,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":45572815,\"inFlow\":114,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":45572815,\"lastOutBytes\":1735208187,\"outBytes\":1735208187,\"outFlow\":234,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":7535673,\"inBytes\":1693936280,\"inFlow\":202925,\"lastChangeTime\":\"7 days, 1:02:37.63\",\"lastInBytes\":1693936280,\"lastOutBytes\":1977188718,\"outBytes\":1977188718,\"outFlow\":7332748,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4809006,\"inBytes\":3963201090,\"inFlow\":4676674,\"lastChangeTime\":\"7 days, 1:15:51.78\",\"lastInBytes\":3963201090,\"lastOutBytes\":3671832220,\"outBytes\":3671832220,\"outFlow\":132332,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.946357000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778052", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:37", + "echoMap": {}, + "deviceId": "1080040029", + "name": "华为前端交换机28", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.178", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:65\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.178\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:37\",\"info\":{\"portInfoList\":[{\"flow\":483571,\"inBytes\":2682306493,\"inFlow\":469601,\"lastChangeTime\":\"0:45:26.92\",\"lastInBytes\":2682306493,\"lastOutBytes\":193786114,\"outBytes\":193786114,\"outFlow\":13970,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":955507,\"inBytes\":1021874618,\"inFlow\":932523,\"lastChangeTime\":\"0:46:48.19\",\"lastInBytes\":1021874618,\"lastOutBytes\":246325136,\"outBytes\":246325136,\"outFlow\":22984,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":875351,\"inBytes\":626777808,\"inFlow\":855720,\"lastChangeTime\":\"0:48:18.40\",\"lastInBytes\":626777808,\"lastOutBytes\":221588299,\"outBytes\":221588299,\"outFlow\":19630,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":485635,\"inBytes\":2692165459,\"inFlow\":472167,\"lastChangeTime\":\"0:47:58.15\",\"lastInBytes\":2692165459,\"lastOutBytes\":186717411,\"outBytes\":186717411,\"outFlow\":13468,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":256,\"inBytes\":575930,\"inFlow\":92,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":575930,\"lastOutBytes\":189878877,\"outBytes\":189878877,\"outFlow\":164,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":251,\"inBytes\":541992,\"inFlow\":88,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":541992,\"lastOutBytes\":189868591,\"outBytes\":189868591,\"outFlow\":162,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":365251,\"inFlow\":114,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":365251,\"lastOutBytes\":116246502,\"outBytes\":116246502,\"outFlow\":235,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":10336734,\"inBytes\":511176879,\"inFlow\":275207,\"lastChangeTime\":\"0:13:29.17\",\"lastInBytes\":511176879,\"lastOutBytes\":4057789174,\"outBytes\":4057789174,\"outFlow\":10061526,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7519236,\"inBytes\":1332699388,\"inFlow\":7317522,\"lastChangeTime\":\"0:54:16.55\",\"lastInBytes\":1332699388,\"lastOutBytes\":3822024409,\"outBytes\":3822024409,\"outFlow\":201714,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:57.784472000\"}}", + "lastDiagTime": "2026-02-02 14:38:37", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778053", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:46", + "echoMap": {}, + "deviceId": "1080040030", + "name": "华为前端交换机29", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.179", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"13 days, 2:05:09.82\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:a3\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.179\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:46\",\"info\":{\"portInfoList\":[{\"flow\":252,\"inBytes\":1314453637,\"inFlow\":90,\"lastChangeTime\":\"380 days, 5:29:58.28\",\"lastInBytes\":1314453637,\"lastOutBytes\":2440058871,\"outBytes\":2440058871,\"outFlow\":162,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":877407,\"inBytes\":3745921106,\"inFlow\":857859,\"lastChangeTime\":\"379 days, 1:17:41.47\",\"lastInBytes\":3745921106,\"lastOutBytes\":608669566,\"outBytes\":608669566,\"outFlow\":19547,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":880472,\"inBytes\":1235930335,\"inFlow\":860974,\"lastChangeTime\":\"379 days, 1:17:29.72\",\"lastInBytes\":1235930335,\"lastOutBytes\":3712942606,\"outBytes\":3712942606,\"outFlow\":19498,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":875693,\"inBytes\":369623198,\"inFlow\":856027,\"lastChangeTime\":\"379 days, 1:17:34.24\",\"lastInBytes\":369623198,\"lastOutBytes\":871470457,\"outBytes\":871470457,\"outFlow\":19665,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5365,\"inFlow\":0,\"lastChangeTime\":\"231 days, 0:01:29.25\",\"lastInBytes\":5365,\"lastOutBytes\":2923,\"outBytes\":2923,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1048,\"inBytes\":128355757,\"inFlow\":113,\"lastChangeTime\":\"28 days, 1:27:06.46\",\"lastInBytes\":128355757,\"lastOutBytes\":3059327342,\"outBytes\":3059327342,\"outFlow\":935,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":8939471,\"inBytes\":845686675,\"inFlow\":214806,\"lastChangeTime\":\"224 days, 3:11:39.31\",\"lastInBytes\":845686675,\"lastOutBytes\":1696293175,\"outBytes\":1696293175,\"outFlow\":8724664,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6312425,\"inBytes\":1846685808,\"inFlow\":6117795,\"lastChangeTime\":\"204 days, 5:08:51.59\",\"lastInBytes\":1846685808,\"lastOutBytes\":1308595873,\"outBytes\":1308595873,\"outFlow\":194629,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:59.889212000\"}}", + "lastDiagTime": "2026-02-02 14:38:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778054", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:38", + "echoMap": {}, + "deviceId": "1080040031", + "name": "华为前端交换机30", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.180", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"13 days, 2:14:34.81\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:95\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.180\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:37\",\"info\":{\"portInfoList\":[{\"flow\":487127,\"inBytes\":2452940184,\"inFlow\":473846,\"lastChangeTime\":\"329 days, 3:17:42.73\",\"lastInBytes\":2452940184,\"lastOutBytes\":3603676439,\"outBytes\":3603676439,\"outFlow\":13280,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883850,\"inBytes\":1827826262,\"inFlow\":864221,\"lastChangeTime\":\"284 days, 2:27:46.16\",\"lastInBytes\":1827826262,\"lastOutBytes\":2302609818,\"outBytes\":2302609818,\"outFlow\":19628,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":885527,\"inBytes\":3684884768,\"inFlow\":865854,\"lastChangeTime\":\"284 days, 2:27:09.41\",\"lastInBytes\":3684884768,\"lastOutBytes\":2415889298,\"outBytes\":2415889298,\"outFlow\":19673,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"330 days, 5:19:32.78\",\"lastInBytes\":0,\"lastOutBytes\":3306039950,\"outBytes\":3306039950,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":2},{\"flow\":253,\"inBytes\":824102452,\"inFlow\":90,\"lastChangeTime\":\"357 days, 2:18:07.55\",\"lastInBytes\":824102452,\"lastOutBytes\":4100478175,\"outBytes\":4100478175,\"outFlow\":162,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1896,\"inFlow\":0,\"lastChangeTime\":\"231 days, 4:44:13.00\",\"lastInBytes\":1896,\"lastOutBytes\":1733,\"outBytes\":1733,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":350,\"inBytes\":128216368,\"inFlow\":114,\"lastChangeTime\":\"267 days, 5:28:46.80\",\"lastInBytes\":128216368,\"lastOutBytes\":2856309649,\"outBytes\":2856309649,\"outFlow\":236,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":6311870,\"inBytes\":1301593973,\"inFlow\":153854,\"lastChangeTime\":\"204 days, 5:08:57.37\",\"lastInBytes\":1301593973,\"lastOutBytes\":1863186832,\"outBytes\":1863186832,\"outFlow\":6158016,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4026515,\"inBytes\":3187496387,\"inFlow\":3927925,\"lastChangeTime\":\"7 days, 7:57:09.73\",\"lastInBytes\":3187496387,\"lastOutBytes\":3593336664,\"outBytes\":3593336664,\"outFlow\":98589,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:57.838599000\"}}", + "lastDiagTime": "2026-02-02 14:38:38", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778055", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:29", + "echoMap": {}, + "deviceId": "1080040032", + "name": "华为前端交换机31", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.181", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"12 days, 18:50:55.48\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:ca\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.181\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:28\",\"info\":{\"portInfoList\":[{\"flow\":883274,\"inBytes\":1014178486,\"inFlow\":863429,\"lastChangeTime\":\"277 days, 2:03:19.90\",\"lastInBytes\":1014178486,\"lastOutBytes\":1507897628,\"outBytes\":1507897628,\"outFlow\":19844,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883971,\"inBytes\":1682329376,\"inFlow\":864318,\"lastChangeTime\":\"277 days, 2:03:20.52\",\"lastInBytes\":1682329376,\"lastOutBytes\":632734243,\"outBytes\":632734243,\"outFlow\":19653,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":878430,\"inBytes\":1333775937,\"inFlow\":858593,\"lastChangeTime\":\"329 days, 21:59:06.91\",\"lastInBytes\":1333775937,\"lastOutBytes\":3505734978,\"outBytes\":3505734978,\"outFlow\":19836,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":486622,\"inBytes\":2022983367,\"inFlow\":473221,\"lastChangeTime\":\"329 days, 21:56:33.41\",\"lastInBytes\":2022983367,\"lastOutBytes\":1843211708,\"outBytes\":1843211708,\"outFlow\":13400,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":883800,\"inBytes\":1094895805,\"inFlow\":864016,\"lastChangeTime\":\"277 days, 2:03:02.90\",\"lastInBytes\":1094895805,\"lastOutBytes\":60555483,\"outBytes\":60555483,\"outFlow\":19783,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":114146537,\"inFlow\":114,\"lastChangeTime\":\"412 days, 17:55:53.52\",\"lastInBytes\":114146537,\"lastOutBytes\":1296299706,\"outBytes\":1296299706,\"outFlow\":234,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":4043311,\"inBytes\":3592744403,\"inFlow\":98809,\"lastChangeTime\":\"7 days, 0:21:14.88\",\"lastInBytes\":3592744403,\"lastOutBytes\":3199978647,\"outBytes\":3199978647,\"outFlow\":3944502,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"6 days, 17:32:08.57\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:56.070036000\"}}", + "lastDiagTime": "2026-02-02 14:38:29", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778056", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:30", + "echoMap": {}, + "deviceId": "1080040033", + "name": "华为前端交换机32", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.182", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"13 days, 5:05:36.50\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ae:d5\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.182\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:30\",\"info\":{\"portInfoList\":[{\"flow\":978959,\"inBytes\":539221386,\"inFlow\":955476,\"lastChangeTime\":\"336 days, 2:06:36.26\",\"lastInBytes\":539221386,\"lastOutBytes\":2474858443,\"outBytes\":2474858443,\"outFlow\":23482,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883580,\"inBytes\":457234965,\"inFlow\":863763,\"lastChangeTime\":\"336 days, 2:05:22.32\",\"lastInBytes\":457234965,\"lastOutBytes\":1919942542,\"outBytes\":1919942542,\"outFlow\":19816,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":253,\"inBytes\":1312869230,\"inFlow\":89,\"lastChangeTime\":\"357 days, 2:38:40.52\",\"lastInBytes\":1312869230,\"lastOutBytes\":4065545096,\"outBytes\":4065545096,\"outFlow\":163,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":249,\"inBytes\":1313071740,\"inFlow\":90,\"lastChangeTime\":\"357 days, 2:54:24.60\",\"lastInBytes\":1313071740,\"lastOutBytes\":4065155653,\"outBytes\":4065155653,\"outFlow\":158,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3302,\"inFlow\":0,\"lastChangeTime\":\"267 days, 3:54:12.43\",\"lastInBytes\":3302,\"lastOutBytes\":2566,\"outBytes\":2566,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":344,\"inBytes\":128581724,\"inFlow\":114,\"lastChangeTime\":\"336 days, 1:47:25.29\",\"lastInBytes\":128581724,\"lastOutBytes\":1591394702,\"outBytes\":1591394702,\"outFlow\":230,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":6799158,\"inBytes\":2467143137,\"inFlow\":164935,\"lastChangeTime\":\"202 days, 5:14:51.22\",\"lastInBytes\":2467143137,\"lastOutBytes\":1834291079,\"outBytes\":1834291079,\"outFlow\":6634222,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4924844,\"inBytes\":1344607943,\"inFlow\":4805701,\"lastChangeTime\":\"7 days, 1:12:15.42\",\"lastInBytes\":1344607943,\"lastOutBytes\":1179859855,\"outBytes\":1179859855,\"outFlow\":119143,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.035843000\"}}", + "lastDiagTime": "2026-02-02 14:38:30", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778057", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1080040034", + "name": "华为前端交换机33", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.183", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"13 days, 5:14:50.67\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:9e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.183\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:42\",\"info\":{\"portInfoList\":[{\"flow\":876357,\"inBytes\":4170338556,\"inFlow\":856867,\"lastChangeTime\":\"277 days, 9:39:55.17\",\"lastInBytes\":4170338556,\"lastOutBytes\":159327022,\"outBytes\":159327022,\"outFlow\":19489,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":879184,\"inBytes\":1756488509,\"inFlow\":859676,\"lastChangeTime\":\"277 days, 9:39:46.75\",\"lastInBytes\":1756488509,\"lastOutBytes\":40414109,\"outBytes\":40414109,\"outFlow\":19507,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":252,\"inBytes\":1313040350,\"inFlow\":90,\"lastChangeTime\":\"357 days, 3:36:25.95\",\"lastInBytes\":1313040350,\"lastOutBytes\":1517373165,\"outBytes\":1517373165,\"outFlow\":162,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":251,\"inBytes\":1311476393,\"inFlow\":90,\"lastChangeTime\":\"380 days, 6:53:23.65\",\"lastInBytes\":1311476393,\"lastOutBytes\":1176680047,\"outBytes\":1176680047,\"outFlow\":161,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2996,\"inFlow\":0,\"lastChangeTime\":\"186 days, 4:40:22.73\",\"lastInBytes\":2996,\"lastOutBytes\":2328,\"outBytes\":2328,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":550,\"inBytes\":129301509,\"inFlow\":113,\"lastChangeTime\":\"28 days, 2:14:21.64\",\"lastInBytes\":129301509,\"lastOutBytes\":514704132,\"outBytes\":514704132,\"outFlow\":436,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":3155132,\"inBytes\":1664612025,\"inFlow\":3056928,\"lastChangeTime\":\"7 days, 1:12:22.82\",\"lastInBytes\":1664612025,\"lastOutBytes\":3560857515,\"outBytes\":3560857515,\"outFlow\":98204,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4928649,\"inBytes\":645145074,\"inFlow\":118346,\"lastChangeTime\":\"7 days, 1:12:13.22\",\"lastInBytes\":645145074,\"lastOutBytes\":1716124778,\"outBytes\":1716124778,\"outFlow\":4810302,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:59.634739000\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778058", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:52", + "echoMap": {}, + "deviceId": "1080040035", + "name": "华为前端交换机34", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.184", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"13 days, 5:23:55.22\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:c1\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"19\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.184\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:51\",\"info\":{\"portInfoList\":[{\"flow\":884541,\"inBytes\":2664343289,\"inFlow\":865164,\"lastChangeTime\":\"277 days, 9:41:12.59\",\"lastInBytes\":2664343289,\"lastOutBytes\":623721541,\"outBytes\":623721541,\"outFlow\":19377,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":884289,\"inBytes\":2710792929,\"inFlow\":865022,\"lastChangeTime\":\"277 days, 9:41:16.40\",\"lastInBytes\":2710792929,\"lastOutBytes\":1357714750,\"outBytes\":1357714750,\"outFlow\":19266,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":249,\"inBytes\":1313607569,\"inFlow\":91,\"lastChangeTime\":\"357 days, 3:48:55.58\",\"lastInBytes\":1313607569,\"lastOutBytes\":767176735,\"outBytes\":767176735,\"outFlow\":158,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1982,\"inBytes\":129603091,\"inFlow\":113,\"lastChangeTime\":\"193 days, 4:27:41.53\",\"lastInBytes\":129603091,\"lastOutBytes\":93977752,\"outBytes\":93977752,\"outFlow\":1868,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1468683,\"inBytes\":312627751,\"inFlow\":1343067,\"lastChangeTime\":\"15 days, 5:23:22.63\",\"lastInBytes\":312627751,\"lastOutBytes\":3989715368,\"outBytes\":3989715368,\"outFlow\":125616,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3151030,\"inBytes\":3557616624,\"inFlow\":77330,\"lastChangeTime\":\"7 days, 1:12:33.50\",\"lastInBytes\":3557616624,\"lastOutBytes\":1687866805,\"outBytes\":1687866805,\"outFlow\":3073700,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:01.578209000\"}}", + "lastDiagTime": "2026-02-02 14:38:52", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778059", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:31", + "echoMap": {}, + "deviceId": "1080040036", + "name": "华为前端交换机35", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.185", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:0f:bf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"22\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.185\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:31\",\"info\":{\"portInfoList\":[{\"flow\":481244,\"inBytes\":3108328776,\"inFlow\":467754,\"lastChangeTime\":\"251 days, 23:04:10.26\",\"lastInBytes\":3108328776,\"lastOutBytes\":4099466164,\"outBytes\":4099466164,\"outFlow\":13489,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":878032,\"inBytes\":3498433880,\"inFlow\":858696,\"lastChangeTime\":\"262 days, 4:16:20.94\",\"lastInBytes\":3498433880,\"lastOutBytes\":552588360,\"outBytes\":552588360,\"outFlow\":19336,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":250,\"inBytes\":1314955949,\"inFlow\":90,\"lastChangeTime\":\"383 days, 20:52:00.55\",\"lastInBytes\":1314955949,\"lastOutBytes\":419574293,\"outBytes\":419574293,\"outFlow\":160,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4153,\"inFlow\":0,\"lastChangeTime\":\"177 days, 22:35:49.88\",\"lastInBytes\":4153,\"lastOutBytes\":3788,\"outBytes\":3788,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":343,\"inBytes\":129596025,\"inFlow\":113,\"lastChangeTime\":\"177 days, 22:35:17.89\",\"lastInBytes\":129596025,\"lastOutBytes\":4227200876,\"outBytes\":4227200876,\"outFlow\":229,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":1372933,\"inBytes\":3986334107,\"inFlow\":36300,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3986334107,\"lastOutBytes\":3866758635,\"outBytes\":3866758635,\"outFlow\":1336632,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:56.642402000\"}}", + "lastDiagTime": "2026-02-02 14:38:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778060", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:43", + "echoMap": {}, + "deviceId": "1080040037", + "name": "华为前端交换机36", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.186", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:6d\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.186\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:42\",\"info\":{\"portInfoList\":[{\"flow\":489181,\"inBytes\":1219390293,\"inFlow\":475443,\"lastChangeTime\":\"7 days, 1:10:19.99\",\"lastInBytes\":1219390293,\"lastOutBytes\":1854885428,\"outBytes\":1854885428,\"outFlow\":13737,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":489079,\"inBytes\":1230536856,\"inFlow\":475738,\"lastChangeTime\":\"7 days, 1:10:43.65\",\"lastInBytes\":1230536856,\"lastOutBytes\":1851000287,\"outBytes\":1851000287,\"outFlow\":13340,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":487365,\"inBytes\":1226045652,\"inFlow\":473509,\"lastChangeTime\":\"7 days, 1:11:08.72\",\"lastInBytes\":1226045652,\"lastOutBytes\":1845427604,\"outBytes\":1845427604,\"outFlow\":13856,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":490773,\"inBytes\":1190817444,\"inFlow\":477058,\"lastChangeTime\":\"7 days, 1:10:55.24\",\"lastInBytes\":1190817444,\"lastOutBytes\":1847342620,\"outBytes\":1847342620,\"outFlow\":13715,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":253,\"inBytes\":56674377,\"inFlow\":93,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":56674377,\"lastOutBytes\":1925320756,\"outBytes\":1925320756,\"outFlow\":160,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":253,\"inBytes\":56671788,\"inFlow\":93,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":56671788,\"lastOutBytes\":1925375953,\"outBytes\":1925375953,\"outFlow\":160,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":535,\"inBytes\":45436333,\"inFlow\":114,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":45436333,\"lastOutBytes\":1607446679,\"outBytes\":1607446679,\"outFlow\":421,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":2856705,\"inBytes\":2644203734,\"inFlow\":2759878,\"lastChangeTime\":\"0:04:58.41\",\"lastInBytes\":2644203734,\"lastOutBytes\":910641147,\"outBytes\":910641147,\"outFlow\":96826,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4784964,\"inBytes\":2360134203,\"inFlow\":132994,\"lastChangeTime\":\"7 days, 1:03:12.65\",\"lastInBytes\":2360134203,\"lastOutBytes\":3565317337,\"outBytes\":3565317337,\"outFlow\":4651969,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:59.838378000\"}}", + "lastDiagTime": "2026-02-02 14:38:43", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778061", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:26", + "echoMap": {}, + "deviceId": "1080040038", + "name": "华为前端交换机37", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.187", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:76\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.187\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:26\",\"info\":{\"portInfoList\":[{\"flow\":978976,\"inBytes\":2292511409,\"inFlow\":956166,\"lastChangeTime\":\"7 days, 1:08:17.81\",\"lastInBytes\":2292511409,\"lastOutBytes\":1827139959,\"outBytes\":1827139959,\"outFlow\":22809,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":978137,\"inBytes\":2345190789,\"inFlow\":954984,\"lastChangeTime\":\"7 days, 1:08:09.02\",\"lastInBytes\":2345190789,\"lastOutBytes\":1828211915,\"outBytes\":1828211915,\"outFlow\":23152,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":252,\"inBytes\":54574744,\"inFlow\":90,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":54574744,\"lastOutBytes\":1853533900,\"outBytes\":1853533900,\"outFlow\":161,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":347,\"inBytes\":45400392,\"inFlow\":114,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":45400392,\"lastOutBytes\":1534779577,\"outBytes\":1534779577,\"outFlow\":232,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":879763,\"inBytes\":2028119222,\"inFlow\":851662,\"lastChangeTime\":\"0:19:05.81\",\"lastInBytes\":2028119222,\"lastOutBytes\":3380876456,\"outBytes\":3380876456,\"outFlow\":28100,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2821250,\"inBytes\":718781100,\"inFlow\":76377,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":718781100,\"lastOutBytes\":2647675665,\"outBytes\":2647675665,\"outFlow\":2744872,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.135288000\"}}", + "lastDiagTime": "2026-02-02 14:38:26", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778062", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:25", + "echoMap": {}, + "deviceId": "1080040039", + "name": "华为前端交换机38", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.188", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:13:53.98\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ad:14\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"20\",\"memoryRatio\":\"75\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.188\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:25\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":51380,\"inFlow\":0,\"lastChangeTime\":\"0:18:01.27\",\"lastInBytes\":51380,\"lastOutBytes\":25483696,\"outBytes\":25483696,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":393067,\"inBytes\":978813573,\"inFlow\":382432,\"lastChangeTime\":\"7 days, 1:34:39.87\",\"lastInBytes\":978813573,\"lastOutBytes\":1239989108,\"outBytes\":1239989108,\"outFlow\":10634,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":487388,\"inBytes\":852414842,\"inFlow\":473714,\"lastChangeTime\":\"7 days, 1:11:01.83\",\"lastInBytes\":852414842,\"lastOutBytes\":1721047611,\"outBytes\":1721047611,\"outFlow\":13674,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":253,\"inBytes\":54505860,\"inFlow\":90,\"lastChangeTime\":\"0:00:32.76\",\"lastInBytes\":54505860,\"lastOutBytes\":1798733131,\"outBytes\":1798733131,\"outFlow\":162,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2636577,\"inFlow\":0,\"lastChangeTime\":\"0:35:35.09\",\"lastInBytes\":2636577,\"lastOutBytes\":177525855,\"outBytes\":177525855,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":5347,\"inFlow\":0,\"lastChangeTime\":\"0:11:24.28\",\"lastInBytes\":5347,\"lastOutBytes\":6502,\"outBytes\":6502,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":415,\"inBytes\":45478438,\"inFlow\":114,\"lastChangeTime\":\"0:35:38.46\",\"lastInBytes\":45478438,\"lastOutBytes\":1489902538,\"outBytes\":1489902538,\"outFlow\":301,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":859888,\"inBytes\":3380814294,\"inFlow\":28537,\"lastChangeTime\":\"0:13:59.67\",\"lastInBytes\":3380814294,\"lastOutBytes\":2030136272,\"outBytes\":2030136272,\"outFlow\":831350,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:36:56.051998000\"}}", + "lastDiagTime": "2026-02-02 14:38:25", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778063", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:31", + "echoMap": {}, + "deviceId": "1080040040", + "name": "华为前端交换机39", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.189", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"194 days, 22:31:40.92\",\"mTU\":\"1500\",\"macAddress\":\"64:5e:10:39:10:3e\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"21\",\"memoryRatio\":\"80\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.189\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:30\",\"info\":{\"portInfoList\":[{\"flow\":883532,\"inBytes\":3184485023,\"inFlow\":863819,\"lastChangeTime\":\"264 days, 0:55:49.56\",\"lastInBytes\":3184485023,\"lastOutBytes\":2759394855,\"outBytes\":2759394855,\"outFlow\":19712,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":883583,\"inBytes\":882627389,\"inFlow\":863975,\"lastChangeTime\":\"264 days, 1:04:02.72\",\"lastInBytes\":882627389,\"lastOutBytes\":1129725040,\"outBytes\":1129725040,\"outFlow\":19608,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":981794,\"inBytes\":2366816037,\"inFlow\":958154,\"lastChangeTime\":\"315 days, 17:58:22.71\",\"lastInBytes\":2366816037,\"lastOutBytes\":2965658405,\"outBytes\":2965658405,\"outFlow\":23640,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":349,\"inBytes\":114129685,\"inFlow\":114,\"lastChangeTime\":\"399 days, 17:01:27.18\",\"lastInBytes\":114129685,\"lastOutBytes\":1522677405,\"outBytes\":1522677405,\"outFlow\":235,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":2765940,\"inBytes\":4238454425,\"inFlow\":67318,\"lastChangeTime\":\"194 days, 22:30:47.90\",\"lastInBytes\":4238454425,\"lastOutBytes\":1896835192,\"outBytes\":1896835192,\"outFlow\":2698622,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:56.604320000\"}}", + "lastDiagTime": "2026-02-02 14:38:31", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778064", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:01", + "echoMap": {}, + "deviceId": "1080040041", + "name": "H3C前端交换机40", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.190", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"133925\",\"inUnknownProtos\":\"4155136861\",\"index\":\"634\",\"lastChange\":\"272 days, 4:16:31.36\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:77:27\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4015194870\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"68919486\",\"speed\":\"4294967295\"},\"cpuRatio\":\"3\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.190\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:00\",\"info\":{\"portInfoList\":[{\"flow\":886661,\"inBytes\":2946351387,\"inFlow\":823568,\"lastChangeTime\":\"262 days, 7:58:45.69\",\"lastInBytes\":2946351387,\"lastOutBytes\":2911235793,\"outBytes\":2911235793,\"outFlow\":63092,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":889526,\"inBytes\":305002143,\"inFlow\":826521,\"lastChangeTime\":\"262 days, 7:58:41.81\",\"lastInBytes\":305002143,\"lastOutBytes\":2121296841,\"outBytes\":2121296841,\"outFlow\":63005,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":889806,\"inBytes\":3279471323,\"inFlow\":826143,\"lastChangeTime\":\"262 days, 7:49:51.96\",\"lastInBytes\":3279471323,\"lastOutBytes\":2089297612,\"outBytes\":2089297612,\"outFlow\":63662,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":892896,\"inBytes\":1031530240,\"inFlow\":829460,\"lastChangeTime\":\"262 days, 7:58:31.40\",\"lastInBytes\":1031530240,\"lastOutBytes\":58924760,\"outBytes\":58924760,\"outFlow\":63436,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":889482,\"inBytes\":107087656,\"inFlow\":825546,\"lastChangeTime\":\"262 days, 7:49:46.38\",\"lastInBytes\":107087656,\"lastOutBytes\":4155136861,\"outBytes\":4155136861,\"outFlow\":63935,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":889281,\"inBytes\":3878333975,\"inFlow\":826207,\"lastChangeTime\":\"262 days, 7:58:46.63\",\"lastInBytes\":3878333975,\"lastOutBytes\":2262388641,\"outBytes\":2262388641,\"outFlow\":63074,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":948841,\"inBytes\":920393999,\"inFlow\":884762,\"lastChangeTime\":\"262 days, 7:49:43.20\",\"lastInBytes\":920393999,\"lastOutBytes\":1312274221,\"outBytes\":1312274221,\"outFlow\":64079,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":543139,\"inBytes\":3359161563,\"inFlow\":486512,\"lastChangeTime\":\"376 days, 23:22:35.68\",\"lastInBytes\":3359161563,\"lastOutBytes\":3516567293,\"outBytes\":3516567293,\"outFlow\":56626,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":1749819,\"inFlow\":0,\"lastChangeTime\":\"272 days, 4:16:33.53\",\"lastInBytes\":1749819,\"lastOutBytes\":50250465,\"outBytes\":50250465,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":62488,\"inBytes\":135608843,\"inFlow\":3,\"lastChangeTime\":\"272 days, 4:16:31.36\",\"lastInBytes\":135608843,\"lastOutBytes\":2597097269,\"outBytes\":2597097269,\"outFlow\":62484,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.01\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8190023,\"inBytes\":534559924,\"inFlow\":1490917,\"lastChangeTime\":\"272 days, 4:18:23.78\",\"lastInBytes\":534559924,\"lastOutBytes\":1421112364,\"outBytes\":1421112364,\"outFlow\":6699106,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:38:57.405193000\"}}", + "lastDiagTime": "2026-02-02 14:39:01", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778065", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040042", + "name": "H3C前端交换机41", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.191", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"1\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"136854\",\"inUnknownProtos\":\"3188450785\",\"index\":\"634\",\"lastChange\":\"286 days, 5:40:37.87\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c1:8b:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"3036746042\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"378727467\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.191\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":898384,\"inBytes\":2866540283,\"inFlow\":824777,\"lastChangeTime\":\"413 days, 1:42:25.81\",\"lastInBytes\":2866540283,\"lastOutBytes\":3342081135,\"outBytes\":3342081135,\"outFlow\":73607,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":874911,\"inBytes\":2220459706,\"inFlow\":802005,\"lastChangeTime\":\"281 days, 7:56:47.24\",\"lastInBytes\":2220459706,\"lastOutBytes\":3212824082,\"outBytes\":3212824082,\"outFlow\":72906,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":894510,\"inBytes\":3222414032,\"inFlow\":825582,\"lastChangeTime\":\"413 days, 1:42:25.86\",\"lastInBytes\":3222414032,\"lastOutBytes\":1807151433,\"outBytes\":1807151433,\"outFlow\":68927,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":898948,\"inBytes\":1775901636,\"inFlow\":826638,\"lastChangeTime\":\"413 days, 1:42:25.66\",\"lastInBytes\":1775901636,\"lastOutBytes\":1689029846,\"outBytes\":1689029846,\"outFlow\":72310,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":899019,\"inBytes\":2297116718,\"inFlow\":825021,\"lastChangeTime\":\"413 days, 1:42:25.75\",\"lastInBytes\":2297116718,\"lastOutBytes\":3188234765,\"outBytes\":3188234765,\"outFlow\":73997,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":892234,\"inBytes\":2303511845,\"inFlow\":819740,\"lastChangeTime\":\"413 days, 1:42:27.66\",\"lastInBytes\":2303511845,\"lastOutBytes\":3552048870,\"outBytes\":3552048870,\"outFlow\":72493,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":100000000,\"upDown\":1},{\"flow\":897546,\"inBytes\":2643283158,\"inFlow\":824348,\"lastChangeTime\":\"413 days, 1:42:28.18\",\"lastInBytes\":2643283158,\"lastOutBytes\":4011480558,\"outBytes\":4011480558,\"outFlow\":73198,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":100000000,\"upDown\":1},{\"flow\":900478,\"inBytes\":2454856266,\"inFlow\":827578,\"lastChangeTime\":\"413 days, 1:43:16.99\",\"lastInBytes\":2454856266,\"lastOutBytes\":3726568645,\"outBytes\":3726568645,\"outFlow\":72900,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":54967,\"inBytes\":134129754,\"inFlow\":3,\"lastChangeTime\":\"286 days, 5:44:47.42\",\"lastInBytes\":134129754,\"lastOutBytes\":482907614,\"outBytes\":482907614,\"outFlow\":54963,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":100000000,\"upDown\":1},{\"flow\":8563955,\"inBytes\":4095199431,\"inFlow\":1498429,\"lastChangeTime\":\"202 days, 5:25:45.48\",\"lastInBytes\":4095199431,\"lastOutBytes\":401072414,\"outBytes\":401072414,\"outFlow\":7065525,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.404847000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778066", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:56", + "echoMap": {}, + "deviceId": "1080040043", + "name": "H3C前端交换机42", + "manufacturer": "HUAWEI", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.192", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"14\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"04:e7:95:80:ac:d6\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outUcastPkts\":\"0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"18\",\"memoryRatio\":\"79\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.192\",\"index\":\"14\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:56\",\"info\":{\"portInfoList\":[{\"flow\":489018,\"inBytes\":4074605733,\"inFlow\":475490,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":4074605733,\"lastOutBytes\":1196937599,\"outBytes\":1196937599,\"outFlow\":13527,\"portName\":\"GigabitEthernet0/0/0\",\"speed\":100000000,\"upDown\":1},{\"flow\":884229,\"inBytes\":858943997,\"inFlow\":864218,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":858943997,\"lastOutBytes\":540083466,\"outBytes\":540083466,\"outFlow\":20010,\"portName\":\"GigabitEthernet0/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":885972,\"inBytes\":3847660366,\"inFlow\":865800,\"lastChangeTime\":\"39 days, 18:33:37.76\",\"lastInBytes\":3847660366,\"lastOutBytes\":4283876721,\"outBytes\":4283876721,\"outFlow\":20171,\"portName\":\"GigabitEthernet0/0/2\",\"speed\":100000000,\"upDown\":1},{\"flow\":892195,\"inBytes\":1177674984,\"inFlow\":871690,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":1177674984,\"lastOutBytes\":4196782478,\"outBytes\":4196782478,\"outFlow\":20504,\"portName\":\"GigabitEthernet0/0/3\",\"speed\":100000000,\"upDown\":1},{\"flow\":394,\"inBytes\":841678952,\"inFlow\":93,\"lastChangeTime\":\"41 days, 19:20:40.83\",\"lastInBytes\":841678952,\"lastOutBytes\":3859333648,\"outBytes\":3859333648,\"outFlow\":301,\"portName\":\"GigabitEthernet0/0/4\",\"speed\":100000000,\"upDown\":1},{\"flow\":483,\"inBytes\":841685227,\"inFlow\":93,\"lastChangeTime\":\"41 days, 19:19:19.99\",\"lastInBytes\":841685227,\"lastOutBytes\":3858570676,\"outBytes\":3858570676,\"outFlow\":390,\"portName\":\"GigabitEthernet0/0/5\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet0/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3157176,\"inBytes\":3987205223,\"inFlow\":77474,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":3987205223,\"lastOutBytes\":2575741965,\"outBytes\":2575741965,\"outFlow\":3079701,\"portName\":\"GigabitEthernet0/0/9\",\"speed\":1000000000,\"upDown\":1}],\"timestamp\":\"2026-02-02T14:37:01.938265000\"}}", + "lastDiagTime": "2026-02-02 14:38:56", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778067", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:39:02", + "echoMap": {}, + "deviceId": "1080040044", + "name": "H3C前端交换机45", + "manufacturer": "H3C", + "state": true, + "model": "FRONTEND", + "ipAddress": "10.18.245.195", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlan-interface245\",\"ifType\":\"136\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"38846\",\"inUnknownProtos\":\"278963650\",\"index\":\"634\",\"lastChange\":\"61 days, 1:09:40.11\",\"mTU\":\"1500\",\"macAddress\":\"e8:78:ee:c2:76:a7\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"586029\",\"outQLen\":\"0.0\",\"outUcastPkts\":\"109036648\",\"speed\":\"4294967295\"},\"cpuRatio\":\"4\",\"memoryRatio\":\"63\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.195\",\"index\":\"634\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:39:01\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":239336393,\"inFlow\":0,\"lastChangeTime\":\"140 days, 18:31:39.28\",\"lastInBytes\":239336393,\"lastOutBytes\":2880534331,\"outBytes\":2880534331,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":3609395,\"inBytes\":193712730,\"inFlow\":64769,\"lastChangeTime\":\"147 days, 1:17:58.66\",\"lastInBytes\":193712730,\"lastOutBytes\":1780669140,\"outBytes\":1780669140,\"outFlow\":3544625,\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1699708,\"inBytes\":2456493682,\"inFlow\":31654,\"lastChangeTime\":\"147 days, 1:19:11.31\",\"lastInBytes\":2456493682,\"lastOutBytes\":1700368510,\"outBytes\":1700368510,\"outFlow\":1668054,\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3610732,\"inBytes\":1254481021,\"inFlow\":67224,\"lastChangeTime\":\"147 days, 1:20:01.80\",\"lastInBytes\":1254481021,\"lastOutBytes\":2065700450,\"outBytes\":2065700450,\"outFlow\":3543508,\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":3691797,\"inFlow\":0,\"lastChangeTime\":\"249 days, 20:24:44.40\",\"lastInBytes\":3691797,\"lastOutBytes\":278963650,\"outBytes\":278963650,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":45254,\"inFlow\":0,\"lastChangeTime\":\"249 days, 20:24:38.75\",\"lastInBytes\":45254,\"lastOutBytes\":71899230,\"outBytes\":71899230,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":169850,\"inBytes\":520007164,\"inFlow\":53,\"lastChangeTime\":\"193 days, 0:39:26.87\",\"lastInBytes\":520007164,\"lastOutBytes\":3261703374,\"outBytes\":3261703374,\"outFlow\":169796,\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3937784,\"inBytes\":1190753208,\"inFlow\":23938,\"lastChangeTime\":\"61 days, 1:24:00.91\",\"lastInBytes\":1190753208,\"lastOutBytes\":875096337,\"outBytes\":875096337,\"outFlow\":3913846,\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":13189536,\"inBytes\":3673052008,\"inFlow\":12977125,\"lastChangeTime\":\"55 days, 23:33:16.81\",\"lastInBytes\":3673052008,\"lastOutBytes\":489540650,\"outBytes\":489540650,\"outFlow\":212410,\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:43.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"outBytes\":0,\"outFlow\":0,\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:57.400986000\"}}", + "lastDiagTime": "2026-02-02 14:39:02", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + }, + { + "id": "706389246788778068", + "createdBy": "0", + "createdTime": "2025-12-02 13:51:44", + "updatedBy": null, + "updatedTime": "2026-02-02 14:37:10", + "echoMap": {}, + "deviceId": "1080040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.245.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif245\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"105\",\"lastChange\":\"148 days, 4:26:48.54\",\"mTU\":\"1500\",\"macAddress\":\"5c:e7:47:81:2e:76\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"6\",\"temperature\":\"36\",\"memoryRatio\":\"26\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.245.64\",\"index\":\"105\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"51499470\",\"0\",\"0\",\"0\",\"0\",\"0\",\"289\",\"0\",\"0\",\"0\",\"197874619\",\"198676830\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:37:10\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.06\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68534286\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68009998\",\"portName\":\"GigabitEthernet3/0/0\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010062\",\"portName\":\"GigabitEthernet3/0/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010126\",\"portName\":\"GigabitEthernet3/0/2\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010190\",\"portName\":\"GigabitEthernet3/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010254\",\"portName\":\"GigabitEthernet3/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010318\",\"portName\":\"GigabitEthernet3/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010382\",\"portName\":\"GigabitEthernet3/0/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010446\",\"portName\":\"GigabitEthernet3/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010510\",\"portName\":\"GigabitEthernet3/0/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010574\",\"portName\":\"GigabitEthernet3/0/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010638\",\"portName\":\"GigabitEthernet3/0/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010702\",\"portName\":\"GigabitEthernet3/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010766\",\"portName\":\"GigabitEthernet3/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010830\",\"portName\":\"GigabitEthernet3/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12366,\"opticalReceivePower\":0,\"opticalTemperature\":30,\"opticalTransmitPower\":285,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010894\",\"portName\":\"GigabitEthernet3/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68010958\",\"portName\":\"GigabitEthernet3/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":244,\"opticalVoltage\":3344,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011022\",\"portName\":\"GigabitEthernet3/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011086\",\"portName\":\"GigabitEthernet3/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12876,\"opticalReceivePower\":0,\"opticalTemperature\":35,\"opticalTransmitPower\":247,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011150\",\"portName\":\"GigabitEthernet3/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011214\",\"portName\":\"GigabitEthernet3/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":560,\"inBytes\":1272455436,\"inFlow\":40,\"lastChangeTime\":\"52 days, 5:17:59.83\",\"lastInBytes\":1272455436,\"lastOutBytes\":1901276398,\"opticalBiasCurrent\":12718,\"opticalReceivePower\":283,\"opticalTemperature\":35,\"opticalTransmitPower\":307,\"opticalVoltage\":3310,\"outBytes\":1901276398,\"outFlow\":519,\"physicalNum\":\".68011278\",\"portName\":\"GigabitEthernet3/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011342\",\"portName\":\"GigabitEthernet3/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011406\",\"portName\":\"GigabitEthernet3/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011470\",\"portName\":\"GigabitEthernet3/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":6485910,\"inBytes\":2980877724,\"inFlow\":6282713,\"lastChangeTime\":\"102 days, 5:30:29.33\",\"lastInBytes\":2980877724,\"lastOutBytes\":4175973585,\"opticalBiasCurrent\":13227,\"opticalReceivePower\":133,\"opticalTemperature\":40,\"opticalTransmitPower\":297,\"opticalVoltage\":3310,\"outBytes\":4175973585,\"outFlow\":203197,\"physicalNum\":\".68011534\",\"portName\":\"GigabitEthernet3/0/24\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2279359,\"inBytes\":3178219892,\"inFlow\":2208758,\"lastChangeTime\":\"102 days, 4:59:06.60\",\"lastInBytes\":3178219892,\"lastOutBytes\":2430709966,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":9,\"opticalTemperature\":41,\"opticalTransmitPower\":251,\"opticalVoltage\":3338,\"outBytes\":2430709966,\"outFlow\":70601,\"physicalNum\":\".68011598\",\"portName\":\"GigabitEthernet3/0/25\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2361004,\"inBytes\":2881338987,\"inFlow\":2286410,\"lastChangeTime\":\"79 days, 4:58:03.05\",\"lastInBytes\":2881338987,\"lastOutBytes\":2398344419,\"opticalBiasCurrent\":9840,\"opticalReceivePower\":100,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3356,\"outBytes\":2398344419,\"outFlow\":74594,\"physicalNum\":\".68011662\",\"portName\":\"GigabitEthernet3/0/26\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5731339,\"inBytes\":198884984,\"inFlow\":5552310,\"lastChangeTime\":\"158 days, 3:52:08.92\",\"lastInBytes\":198884984,\"lastOutBytes\":1053010498,\"opticalBiasCurrent\":10362,\"opticalReceivePower\":211,\"opticalTemperature\":44,\"opticalTransmitPower\":248,\"opticalVoltage\":3328,\"outBytes\":1053010498,\"outFlow\":179028,\"physicalNum\":\".68011726\",\"portName\":\"GigabitEthernet3/0/27\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6028452,\"inBytes\":1664828108,\"inFlow\":5841513,\"lastChangeTime\":\"73 days, 2:55:40.02\",\"lastInBytes\":1664828108,\"lastOutBytes\":3830759473,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":227,\"opticalTemperature\":43,\"opticalTransmitPower\":251,\"opticalVoltage\":3338,\"outBytes\":3830759473,\"outFlow\":186939,\"physicalNum\":\".68011790\",\"portName\":\"GigabitEthernet3/0/28\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10684738,\"inBytes\":3942161723,\"inFlow\":223654,\"lastChangeTime\":\"73 days, 2:58:51.05\",\"lastInBytes\":3942161723,\"lastOutBytes\":3729451680,\"opticalBiasCurrent\":13227,\"opticalReceivePower\":222,\"opticalTemperature\":44,\"opticalTransmitPower\":256,\"opticalVoltage\":3310,\"outBytes\":3729451680,\"outFlow\":10461083,\"physicalNum\":\".68011854\",\"portName\":\"GigabitEthernet3/0/29\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":0,\"opticalReceivePower\":0,\"opticalTemperature\":36,\"opticalTransmitPower\":0,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011918\",\"portName\":\"GigabitEthernet3/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":244,\"opticalVoltage\":3338,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68011982\",\"portName\":\"GigabitEthernet3/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":825065145,\"inFlow\":0,\"lastChangeTime\":\"66 days, 0:02:28.94\",\"lastInBytes\":825065145,\"lastOutBytes\":1412104439,\"opticalBiasCurrent\":10000,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":261,\"opticalVoltage\":3344,\"outBytes\":1412104439,\"outFlow\":0,\"physicalNum\":\".68012046\",\"portName\":\"GigabitEthernet3/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":912393106,\"inFlow\":0,\"lastChangeTime\":\"66 days, 0:02:48.25\",\"lastInBytes\":912393106,\"lastOutBytes\":1399296032,\"opticalBiasCurrent\":12812,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":271,\"opticalVoltage\":3302,\"outBytes\":1399296032,\"outFlow\":0,\"physicalNum\":\".68012110\",\"portName\":\"GigabitEthernet3/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13227,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3310,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012174\",\"portName\":\"GigabitEthernet3/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13100,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3318,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012238\",\"portName\":\"GigabitEthernet3/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":8978766,\"inBytes\":1520291919,\"inFlow\":8674698,\"lastChangeTime\":\"306 days, 2:15:52.23\",\"lastInBytes\":1520291919,\"lastOutBytes\":2770356108,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":5,\"opticalTemperature\":45,\"opticalTransmitPower\":238,\"opticalVoltage\":3340,\"outBytes\":2770356108,\"outFlow\":304067,\"physicalNum\":\".68012302\",\"portName\":\"GigabitEthernet3/0/36\",\"speed\":1000000000,\"upDown\":1},{\"flow\":7664815,\"inBytes\":1869701937,\"inFlow\":7424155,\"lastChangeTime\":\"95 days, 0:54:59.45\",\"lastInBytes\":1869701937,\"lastOutBytes\":559603562,\"opticalBiasCurrent\":15336,\"opticalReceivePower\":184,\"opticalTemperature\":46,\"opticalTransmitPower\":246,\"opticalVoltage\":3330,\"outBytes\":559603562,\"outFlow\":240659,\"physicalNum\":\".68012366\",\"portName\":\"GigabitEthernet3/0/37\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5810276,\"inBytes\":1536810279,\"inFlow\":5627218,\"lastChangeTime\":\"73 days, 2:57:51.49\",\"lastInBytes\":1536810279,\"lastOutBytes\":3244782875,\"opticalBiasCurrent\":9605,\"opticalReceivePower\":107,\"opticalTemperature\":43,\"opticalTransmitPower\":258,\"opticalVoltage\":3328,\"outBytes\":3244782875,\"outFlow\":183058,\"physicalNum\":\".68012430\",\"portName\":\"GigabitEthernet3/0/38\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13227,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":255,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012494\",\"portName\":\"GigabitEthernet3/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":2706720,\"inBytes\":3863858229,\"inFlow\":2620676,\"lastChangeTime\":\"158 days, 4:36:14.49\",\"lastInBytes\":3863858229,\"lastOutBytes\":1026569371,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":206,\"opticalTemperature\":46,\"opticalTransmitPower\":243,\"opticalVoltage\":3362,\"outBytes\":1026569371,\"outFlow\":86044,\"physicalNum\":\".68012558\",\"portName\":\"GigabitEthernet3/0/40\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":246,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012622\",\"portName\":\"GigabitEthernet3/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":0,\"opticalTemperature\":47,\"opticalTransmitPower\":238,\"opticalVoltage\":3320,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012686\",\"portName\":\"GigabitEthernet3/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10828,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":248,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012750\",\"portName\":\"GigabitEthernet3/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":241,\"opticalVoltage\":3328,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012814\",\"portName\":\"GigabitEthernet3/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15552,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":244,\"opticalVoltage\":3354,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012878\",\"portName\":\"GigabitEthernet3/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14255,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":244,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68012942\",\"portName\":\"GigabitEthernet3/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11303,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":253,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68013006\",\"portName\":\"GigabitEthernet3/0/47\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":4294967295,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":4294967295,\"upDown\":2},{\"flow\":33552,\"inBytes\":1896604672,\"inFlow\":758,\"lastChangeTime\":\"64 days, 4:22:00.95\",\"lastInBytes\":1896604672,\"lastOutBytes\":3630387949,\"opticalBiasCurrent\":37500,\"opticalReceivePower\":413,\"opticalTemperature\":41,\"opticalTransmitPower\":561,\"opticalVoltage\":3341,\"outBytes\":3630387949,\"outFlow\":32794,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":4294967295,\"upDown\":1},{\"flow\":4664921,\"inBytes\":4032335844,\"inFlow\":2314,\"lastChangeTime\":\"66 days, 3:56:44.05\",\"lastInBytes\":4032335844,\"lastOutBytes\":156754127,\"opticalBiasCurrent\":36096,\"opticalReceivePower\":696,\"opticalTemperature\":39,\"opticalTransmitPower\":470,\"opticalVoltage\":3323,\"outBytes\":156754127,\"outFlow\":4662606,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":4294967295,\"upDown\":1},{\"flow\":5642268,\"inBytes\":1111994990,\"inFlow\":5460290,\"lastChangeTime\":\"131 days, 3:38:34.68\",\"lastInBytes\":1111994990,\"lastOutBytes\":526107216,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":145,\"opticalTemperature\":43,\"opticalTransmitPower\":238,\"opticalVoltage\":3338,\"outBytes\":526107216,\"outFlow\":181978,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2581601,\"inBytes\":1624594074,\"inFlow\":2496697,\"lastChangeTime\":\"73 days, 3:03:12.50\",\"lastInBytes\":1624594074,\"lastOutBytes\":769038253,\"opticalBiasCurrent\":14687,\"opticalReceivePower\":68,\"opticalTemperature\":42,\"opticalTransmitPower\":238,\"opticalVoltage\":3350,\"outBytes\":769038253,\"outFlow\":84903,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10338377,\"inBytes\":597318094,\"inFlow\":10013810,\"lastChangeTime\":\"131 days, 2:48:40.08\",\"lastInBytes\":597318094,\"lastOutBytes\":1919400092,\"opticalBiasCurrent\":13513,\"opticalReceivePower\":76,\"opticalTemperature\":41,\"opticalTransmitPower\":285,\"opticalVoltage\":3294,\"outBytes\":1919400092,\"outFlow\":324567,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8875374,\"inBytes\":2085481153,\"inFlow\":8596990,\"lastChangeTime\":\"131 days, 1:36:06.66\",\"lastInBytes\":2085481153,\"lastOutBytes\":1523888937,\"opticalBiasCurrent\":16631,\"opticalReceivePower\":9,\"opticalTemperature\":45,\"opticalTransmitPower\":240,\"opticalVoltage\":3320,\"outBytes\":1523888937,\"outFlow\":278383,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8120024,\"inBytes\":3392354692,\"inFlow\":7864426,\"lastChangeTime\":\"131 days, 2:42:33.13\",\"lastInBytes\":3392354692,\"lastOutBytes\":3090415618,\"opticalBiasCurrent\":10873,\"opticalReceivePower\":45,\"opticalTemperature\":47,\"opticalTransmitPower\":240,\"opticalVoltage\":3312,\"outBytes\":3090415618,\"outFlow\":255598,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6640751,\"inBytes\":462566139,\"inFlow\":6431633,\"lastChangeTime\":\"162 days, 0:55:41.14\",\"lastInBytes\":462566139,\"lastOutBytes\":2483336893,\"opticalBiasCurrent\":16416,\"opticalReceivePower\":218,\"opticalTemperature\":48,\"opticalTransmitPower\":245,\"opticalVoltage\":3312,\"outBytes\":2483336893,\"outFlow\":209118,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":4387626,\"inBytes\":3469789460,\"inFlow\":4248912,\"lastChangeTime\":\"101 days, 21:23:14.33\",\"lastInBytes\":3469789460,\"lastOutBytes\":356390486,\"opticalBiasCurrent\":13482,\"opticalReceivePower\":4,\"opticalTemperature\":45,\"opticalTransmitPower\":264,\"opticalVoltage\":3302,\"outBytes\":356390486,\"outFlow\":138713,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":9580054,\"inBytes\":3382386462,\"inFlow\":9278534,\"lastChangeTime\":\"131 days, 2:09:48.24\",\"lastInBytes\":3382386462,\"lastOutBytes\":1798885546,\"opticalBiasCurrent\":13260,\"opticalReceivePower\":93,\"opticalTemperature\":45,\"opticalTransmitPower\":283,\"opticalVoltage\":3302,\"outBytes\":1798885546,\"outFlow\":301520,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3687162,\"inBytes\":3885538782,\"inFlow\":3569964,\"lastChangeTime\":\"101 days, 21:38:47.01\",\"lastInBytes\":3885538782,\"lastOutBytes\":1415644661,\"opticalBiasCurrent\":10373,\"opticalReceivePower\":165,\"opticalTemperature\":47,\"opticalTransmitPower\":252,\"opticalVoltage\":3319,\"outBytes\":1415644661,\"outFlow\":117197,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3652968,\"inBytes\":2145728050,\"inFlow\":3536469,\"lastChangeTime\":\"101 days, 21:42:47.50\",\"lastInBytes\":2145728050,\"lastOutBytes\":1019784898,\"opticalBiasCurrent\":18360,\"opticalReceivePower\":39,\"opticalTemperature\":49,\"opticalTransmitPower\":251,\"opticalVoltage\":3332,\"outBytes\":1019784898,\"outFlow\":116498,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2957330,\"inBytes\":3609507398,\"inFlow\":2862566,\"lastChangeTime\":\"102 days, 2:44:04.45\",\"lastInBytes\":3609507398,\"lastOutBytes\":1405096400,\"opticalBiasCurrent\":13864,\"opticalReceivePower\":203,\"opticalTemperature\":44,\"opticalTransmitPower\":234,\"opticalVoltage\":3294,\"outBytes\":1405096400,\"outFlow\":94763,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3652314,\"inBytes\":2722894029,\"inFlow\":3535653,\"lastChangeTime\":\"102 days, 2:47:54.22\",\"lastInBytes\":2722894029,\"lastOutBytes\":2148578923,\"opticalBiasCurrent\":13928,\"opticalReceivePower\":123,\"opticalTemperature\":45,\"opticalTransmitPower\":288,\"opticalVoltage\":3302,\"outBytes\":2148578923,\"outFlow\":116661,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1491397,\"inBytes\":319816571,\"inFlow\":1440978,\"lastChangeTime\":\"283 days, 21:28:43.69\",\"lastInBytes\":319816571,\"lastOutBytes\":835736305,\"opticalBiasCurrent\":13513,\"opticalReceivePower\":26,\"opticalTemperature\":45,\"opticalTransmitPower\":268,\"opticalVoltage\":3318,\"outBytes\":835736305,\"outFlow\":50418,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":8602850,\"inBytes\":2248710402,\"inFlow\":8339280,\"lastChangeTime\":\"239 days, 3:48:55.40\",\"lastInBytes\":2248710402,\"lastOutBytes\":3505358421,\"opticalBiasCurrent\":10126,\"opticalReceivePower\":80,\"opticalTemperature\":46,\"opticalTransmitPower\":257,\"opticalVoltage\":3335,\"outBytes\":3505358421,\"outFlow\":263569,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6409068,\"inBytes\":177865768,\"inFlow\":6206396,\"lastChangeTime\":\"198 days, 22:37:14.64\",\"lastInBytes\":177865768,\"lastOutBytes\":3069906142,\"opticalBiasCurrent\":17711,\"opticalReceivePower\":7,\"opticalTemperature\":52,\"opticalTransmitPower\":242,\"opticalVoltage\":3346,\"outBytes\":3069906142,\"outFlow\":202672,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":2221457,\"inBytes\":2170228620,\"inFlow\":2149958,\"lastChangeTime\":\"102 days, 3:06:33.78\",\"lastInBytes\":2170228620,\"lastOutBytes\":3773707156,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":214,\"opticalTemperature\":47,\"opticalTransmitPower\":241,\"opticalVoltage\":3350,\"outBytes\":3773707156,\"outFlow\":71499,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":836707,\"inBytes\":3780174471,\"inFlow\":805524,\"lastChangeTime\":\"134 days, 1:39:59.85\",\"lastInBytes\":3780174471,\"lastOutBytes\":357656730,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":154,\"opticalTemperature\":48,\"opticalTransmitPower\":238,\"opticalVoltage\":3342,\"outBytes\":357656730,\"outFlow\":31183,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5314953,\"inBytes\":541126840,\"inFlow\":5151030,\"lastChangeTime\":\"102 days, 4:08:24.96\",\"lastInBytes\":541126840,\"lastOutBytes\":2303820263,\"opticalBiasCurrent\":10345,\"opticalReceivePower\":87,\"opticalTemperature\":46,\"opticalTransmitPower\":242,\"opticalVoltage\":3351,\"outBytes\":2303820263,\"outFlow\":163923,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":6494390,\"inBytes\":3944502660,\"inFlow\":6291018,\"lastChangeTime\":\"102 days, 4:46:40.07\",\"lastInBytes\":3944502660,\"lastOutBytes\":536618918,\"opticalBiasCurrent\":19007,\"opticalReceivePower\":9,\"opticalTemperature\":51,\"opticalTransmitPower\":246,\"opticalVoltage\":3332,\"outBytes\":536618918,\"outFlow\":203371,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3949353,\"inBytes\":3629480183,\"inFlow\":3818537,\"lastChangeTime\":\"73 days, 3:10:37.48\",\"lastInBytes\":3629480183,\"lastOutBytes\":3935395609,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":5,\"opticalTemperature\":51,\"opticalTransmitPower\":239,\"opticalVoltage\":3378,\"outBytes\":3935395609,\"outFlow\":130816,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1934639,\"inBytes\":1278689091,\"inFlow\":1871724,\"lastChangeTime\":\"73 days, 3:10:57.12\",\"lastInBytes\":1278689091,\"lastOutBytes\":1516410928,\"opticalBiasCurrent\":15119,\"opticalReceivePower\":65,\"opticalTemperature\":47,\"opticalTransmitPower\":244,\"opticalVoltage\":3342,\"outBytes\":1516410928,\"outFlow\":62915,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":838867,\"inBytes\":757181650,\"inFlow\":807599,\"lastChangeTime\":\"73 days, 3:20:05.29\",\"lastInBytes\":757181650,\"lastOutBytes\":2220885949,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":101,\"opticalTemperature\":44,\"opticalTransmitPower\":239,\"opticalVoltage\":3356,\"outBytes\":2220885949,\"outFlow\":31268,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":3471324,\"inBytes\":1968218285,\"inFlow\":3358503,\"lastChangeTime\":\"73 days, 3:20:29.03\",\"lastInBytes\":1968218285,\"lastOutBytes\":537360916,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":3,\"opticalTemperature\":42,\"opticalTransmitPower\":244,\"opticalVoltage\":3342,\"outBytes\":537360916,\"outFlow\":112820,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1177374,\"inBytes\":3872968496,\"inFlow\":1137877,\"lastChangeTime\":\"157 days, 4:39:49.96\",\"lastInBytes\":3872968496,\"lastOutBytes\":1681342985,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":124,\"opticalTemperature\":43,\"opticalTransmitPower\":246,\"opticalVoltage\":3362,\"outBytes\":1681342985,\"outFlow\":39497,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":1},{\"flow\":117473,\"inBytes\":660394590,\"inFlow\":78122,\"lastChangeTime\":\"64 days, 3:20:10.81\",\"lastInBytes\":660394590,\"lastOutBytes\":1290894853,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1290894853,\"outFlow\":39351,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":43912702,\"inBytes\":73372039,\"inFlow\":27717690,\"lastChangeTime\":\"64 days, 3:00:20.87\",\"lastInBytes\":73372039,\"lastOutBytes\":3711976044,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3711976044,\"outFlow\":16195012,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":1000000000,\"upDown\":1},{\"flow\":233946,\"inBytes\":313841068,\"inFlow\":70205,\"lastChangeTime\":\"64 days, 3:40:45.05\",\"lastInBytes\":313841068,\"lastOutBytes\":3254447231,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3254447231,\"outFlow\":163740,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":520,\"inBytes\":288443211,\"inFlow\":10,\"lastChangeTime\":\"223 days, 8:56:09.72\",\"lastInBytes\":288443211,\"lastOutBytes\":983224927,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":983224927,\"outFlow\":509,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":987353,\"inBytes\":880864806,\"inFlow\":40734,\"lastChangeTime\":\"299 days, 15:11:38.65\",\"lastInBytes\":880864806,\"lastOutBytes\":1615769900,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1615769900,\"outFlow\":946619,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":10044518,\"inBytes\":4119830983,\"inFlow\":1482063,\"lastChangeTime\":\"10 days, 2:50:27.82\",\"lastInBytes\":4119830983,\"lastOutBytes\":3541203153,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3541203153,\"outFlow\":8562455,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":16180676,\"inBytes\":2399719691,\"inFlow\":1438598,\"lastChangeTime\":\"10 days, 2:50:27.85\",\"lastInBytes\":2399719691,\"lastOutBytes\":4071283231,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4071283231,\"outFlow\":14742078,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":11445676,\"inBytes\":120709792,\"inFlow\":877815,\"lastChangeTime\":\"10 days, 5:36:49.06\",\"lastInBytes\":120709792,\"lastOutBytes\":3373968699,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3373968699,\"outFlow\":10567860,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":5647212,\"inBytes\":368777343,\"inFlow\":885255,\"lastChangeTime\":\"10 days, 5:37:06.25\",\"lastInBytes\":368777343,\"lastOutBytes\":4060620352,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4060620352,\"outFlow\":4761957,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1047,\"inBytes\":3394150613,\"inFlow\":319,\"lastChangeTime\":\"285 days, 1:00:05.86\",\"lastInBytes\":3394150613,\"lastOutBytes\":616326589,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":616326589,\"outFlow\":728,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":100000000,\"upDown\":1},{\"flow\":7404,\"inBytes\":3975169644,\"inFlow\":3630,\"lastChangeTime\":\"285 days, 1:00:04.29\",\"lastInBytes\":3975169644,\"lastOutBytes\":2658667283,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2658667283,\"outFlow\":3774,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":10928827,\"inFlow\":0,\"lastChangeTime\":\"225 days, 22:49:24.93\",\"lastInBytes\":10928827,\"lastOutBytes\":1887989715,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1887989715,\"outFlow\":0,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":31218096,\"inFlow\":0,\"lastChangeTime\":\"197 days, 23:30:36.24\",\"lastInBytes\":31218096,\"lastOutBytes\":577831768,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":577831768,\"outFlow\":0,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":59251,\"inFlow\":0,\"lastChangeTime\":\"218 days, 4:46:22.73\",\"lastInBytes\":59251,\"lastOutBytes\":98146,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":98146,\"outFlow\":0,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":433258,\"inFlow\":0,\"lastChangeTime\":\"225 days, 22:41:48.11\",\"lastInBytes\":433258,\"lastOutBytes\":4100819,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4100819,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:36:43.373399000\"}}", + "lastDiagTime": "2026-02-02 14:37:10", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "707147622049136950", + "createdBy": null, + "createdTime": "2025-12-08 10:08:21", + "updatedBy": null, + "updatedTime": "2026-02-02 14:34:50", + "echoMap": {}, + "deviceId": null, + "name": "视频服务器", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.244.6", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": null, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"0.74\",\"CPU使用率\":\"1.00\",\"系统运行时间\":\"242 days, 0:27:36.05\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"4225794\",\"inErrors\":\"0\",\"inNUcastPkts\":\"11156974\",\"inOctets\":\"1051782897\",\"inUcastPkts\":\"700619614\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:9b:df\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"4195057166\",\"outQLen\":\"0\",\"outUcastPkts\":\"712076726\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.244.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:34:50", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + }, + "1075": { + "ndmAlarmHost": [], + "ndmCamera": [], + "ndmDecoder": [ + { + "id": "723105959584561178", + "createdBy": "0", + "createdTime": "2026-01-27 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:15", + "echoMap": {}, + "deviceId": "1075070001", + "name": "解码器1", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.128.161", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "1075070001", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"319546\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"1630056024\",\"inUcastPkts\":\"1380061927\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"d4:43:0e:44:83:2c\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"2753495594\",\"outQLen\":\"0\",\"outUcastPkts\":\"1884946550\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.128.161\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:14\",\"stCommonInfo\":{\"设备ID\":\"AA097DEPAZ6DAD5\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"53\",\"CPU使用率\":\"44\"}}", + "lastDiagTime": "2026-02-02 14:35:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105959584561179", + "createdBy": "0", + "createdTime": "2026-01-27 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:15", + "echoMap": {}, + "deviceId": "1075070002", + "name": "解码器2", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.128.162", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "1075070002", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"eth0\",\"ifType\":\"6\",\"inDiscards\":\"191834\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"150913348\",\"inUcastPkts\":\"1254694022\",\"inUnknownProtos\":\"0\",\"index\":\"7\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"d4:43:0e:44:83:24\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"1125187022\",\"outQLen\":\"0\",\"outUcastPkts\":\"254768112\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.128.162\",\"index\":\"7\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:15\",\"stCommonInfo\":{\"设备ID\":\"AA097DEPAZ18FFA\",\"软件版本\":\"3.203.1ADZ000.0.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"43\",\"CPU使用率\":\"26\"}}", + "lastDiagTime": "2026-02-02 14:35:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105959584561180", + "createdBy": "0", + "createdTime": "2026-01-27 14:25:29", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:16", + "echoMap": {}, + "deviceId": "1075070003", + "name": "解码器3", + "manufacturer": "", + "state": true, + "model": "", + "ipAddress": "10.18.128.163", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "gbCode": "1075070003", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "onvifPort": null, + "onvifUsername": "", + "onvifPassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"bond0\",\"ifType\":\"6\",\"inDiscards\":\"305693\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"2920211297\",\"inUcastPkts\":\"21148502\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"0:00:00.00\",\"mTU\":\"1500\",\"macAddress\":\"3c:e3:6b:19:3a:16\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"169566732\",\"outQLen\":\"0\",\"outUcastPkts\":\"650217\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.128.163\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"},\"logTime\":\"2026-02-02 14:35:15\",\"stCommonInfo\":{\"设备ID\":\"8L0027FPAZBB6D9\",\"软件版本\":\"3.203.0000000.6.R\",\"设备厂商\":\"Dahua\",\"设备别名\":\"NVD_0905_4K\",\"设备型号\":\"NVD_0905_4K\",\"硬件版本\":\"1\",\"内存使用率\":\"37\",\"CPU使用率\":\"5\"}}", + "lastDiagTime": "2026-02-02 14:35:16", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "114", + "community": "public", + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + } + ], + "ndmKeyboard": [ + { + "id": "723105950994626583", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:15", + "echoMap": {}, + "deviceId": "1075080009", + "name": "调度大厅键盘9", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.59", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626584", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080008", + "name": "调度大厅键盘8", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.58", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626585", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080007", + "name": "调度大厅键盘7", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.57", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626586", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080006", + "name": "调度大厅键盘6", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.56", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626587", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080005", + "name": "调度大厅键盘5", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.55", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626588", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080004", + "name": "调度大厅键盘4", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.54", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626589", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080003", + "name": "调度大厅键盘3", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.53", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626590", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080002", + "name": "调度大厅键盘2", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.52", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + }, + { + "id": "723105950994626591", + "createdBy": "0", + "createdTime": "2026-01-27 14:19:44", + "updatedBy": null, + "updatedTime": "2026-01-27 14:20:16", + "echoMap": {}, + "deviceId": "1075080001", + "name": "调度大厅键盘1", + "manufacturer": "大华", + "state": true, + "model": "DH-NKB5000", + "ipAddress": "10.18.128.51", + "manageUrl": "", + "manageUsername": "admin", + "managePassword": "abcd1234", + "diagFlag": null, + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "", + "lastDiagTime": null, + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "141", + "community": null, + "frontendConfig": "", + "linkDescription": "null", + "snmpEnabled": true + } + ], + "ndmMediaServer": [ + { + "id": "585048535116834818", + "createdBy": "2", + "createdTime": "2025-03-07 14:21:14", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:46", + "echoMap": {}, + "deviceId": "1075090001", + "name": "occ中心流媒体服务器", + "manufacturer": "H3C", + "state": true, + "model": "R4900G5", + "ipAddress": "10.18.128.8", + "manageUrl": "", + "manageUsername": "ittc", + "managePassword": "ittc@123456", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"0.0\",\"内存使用率\":\"-1.00\",\"CPU使用率\":\"-1.00\",\"系统运行时间\":\"\"}}", + "lastDiagTime": "2026-02-02 14:35:46", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "403", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmNvr": [], + "ndmSecurityBox": [], + "ndmSwitch": [ + { + "id": "585048535116834819", + "createdBy": "2", + "createdTime": "2025-03-07 14:21:25", + "updatedBy": null, + "updatedTime": "2026-02-02 14:38:54", + "echoMap": {}, + "deviceId": "1075040002", + "name": "华为核心交换机", + "manufacturer": "HUAWEI", + "state": true, + "model": "", + "ipAddress": "10.18.128.64", + "manageUrl": "", + "manageUsername": "", + "managePassword": "", + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"inDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Vlanif128\",\"ifType\":\"53\",\"inDiscards\":\"0\",\"inErrors\":\"0\",\"inNUcastPkts\":\"0\",\"inOctets\":\"0\",\"inUcastPkts\":\"0\",\"inUnknownProtos\":\"0\",\"index\":\"111\",\"lastChange\":\"0:02:56.21\",\"mTU\":\"1500\",\"macAddress\":\"38:90:52:d3:ad:09\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"0\",\"outQLen\":\"0\",\"outUcastPkts\":\"0\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"cpuRatio\":\"0\",\"temperature\":\"0\",\"memoryRatio\":\"0\",\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.128.64\",\"index\":\"111\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"65535\"},\"outDiscard\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"3\",\"162680594\",\"3\",\"0\",\"0\",\"6\",\"1\",\"1\",\"51252464\",\"2\",\"8\",\"1\",\"2\",\"2\",\"0\",\"2\",\"0\",\"4\",\"8\",\"6\",\"0\",\"0\",\"163059561\",\"0\",\"258\",\"34\",\"45\",\"0\",\"34\",\"33\",\"34\",\"35\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"404370\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"logTime\":\"2026-02-02 14:38:53\",\"info\":{\"portInfoList\":[{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-1,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-1,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".68796430\",\"portName\":\"Ethernet0/0/0\",\"speed\":100000000,\"upDown\":2},{\"flow\":14469,\"inBytes\":99509938,\"inFlow\":1,\"lastChangeTime\":\"147 days, 1:54:19.98\",\"lastInBytes\":99509938,\"lastOutBytes\":1006146200,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1006146200,\"outFlow\":14467,\"physicalNum\":\".67485710\",\"portName\":\"GigabitEthernet1/0/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14469,\"inBytes\":93955738,\"inFlow\":1,\"lastChangeTime\":\"147 days, 1:42:00.64\",\"lastInBytes\":93955738,\"lastOutBytes\":686649939,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":686649939,\"outFlow\":14467,\"physicalNum\":\".67485774\",\"portName\":\"GigabitEthernet1/0/1\",\"speed\":100000000,\"upDown\":1},{\"flow\":14464,\"inBytes\":612619353,\"inFlow\":0,\"lastChangeTime\":\"147 days, 1:51:00.72\",\"lastInBytes\":612619353,\"lastOutBytes\":3649755561,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3649755561,\"outFlow\":14464,\"physicalNum\":\".67485838\",\"portName\":\"GigabitEthernet1/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67485902\",\"portName\":\"GigabitEthernet1/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14525,\"inBytes\":804162957,\"inFlow\":54,\"lastChangeTime\":\"147 days, 1:42:16.07\",\"lastInBytes\":804162957,\"lastOutBytes\":1513007464,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1513007464,\"outFlow\":14470,\"physicalNum\":\".67485966\",\"portName\":\"GigabitEthernet1/0/4\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14759,\"inBytes\":1520478640,\"inFlow\":248,\"lastChangeTime\":\"299 days, 11:41:14.33\",\"lastInBytes\":1520478640,\"lastOutBytes\":1380679921,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1380679921,\"outFlow\":14510,\"physicalNum\":\".67486030\",\"portName\":\"GigabitEthernet1/0/5\",\"speed\":1000000000,\"upDown\":1},{\"flow\":32179,\"inBytes\":933138055,\"inFlow\":4359,\"lastChangeTime\":\"204 days, 20:44:24.45\",\"lastInBytes\":933138055,\"lastOutBytes\":1614011362,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1614011362,\"outFlow\":27820,\"physicalNum\":\".67486094\",\"portName\":\"GigabitEthernet1/0/6\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14464,\"inBytes\":182639397,\"inFlow\":0,\"lastChangeTime\":\"286 days, 21:53:46.41\",\"lastInBytes\":182639397,\"lastOutBytes\":2463454857,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2463454857,\"outFlow\":14464,\"physicalNum\":\".67486158\",\"portName\":\"GigabitEthernet1/0/7\",\"speed\":1000000000,\"upDown\":1},{\"flow\":89348884,\"inBytes\":1990405052,\"inFlow\":39580010,\"lastChangeTime\":\"52 days, 3:09:18.05\",\"lastInBytes\":1990405052,\"lastOutBytes\":262321999,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":262321999,\"outFlow\":49768874,\"physicalNum\":\".67486222\",\"portName\":\"GigabitEthernet1/0/8\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15592,\"inBytes\":1212170869,\"inFlow\":1126,\"lastChangeTime\":\"152 days, 4:17:31.24\",\"lastInBytes\":1212170869,\"lastOutBytes\":2786570754,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2786570754,\"outFlow\":14466,\"physicalNum\":\".67486286\",\"portName\":\"GigabitEthernet1/0/9\",\"speed\":1000000000,\"upDown\":1},{\"flow\":15592,\"inBytes\":4036787528,\"inFlow\":1125,\"lastChangeTime\":\"152 days, 4:16:39.39\",\"lastInBytes\":4036787528,\"lastOutBytes\":2584321044,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2584321044,\"outFlow\":14467,\"physicalNum\":\".67486350\",\"portName\":\"GigabitEthernet1/0/10\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14558,\"inBytes\":730729520,\"inFlow\":68,\"lastChangeTime\":\"51 days, 21:02:56.31\",\"lastInBytes\":730729520,\"lastOutBytes\":2183671669,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2183671669,\"outFlow\":14489,\"physicalNum\":\".67486414\",\"portName\":\"GigabitEthernet1/0/11\",\"speed\":1000000000,\"upDown\":1},{\"flow\":90784,\"inBytes\":208851476,\"inFlow\":30446,\"lastChangeTime\":\"9 days, 22:40:07.87\",\"lastInBytes\":208851476,\"lastOutBytes\":3739007603,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3739007603,\"outFlow\":60337,\"physicalNum\":\".67486478\",\"portName\":\"GigabitEthernet1/0/12\",\"speed\":1000000000,\"upDown\":1},{\"flow\":466503,\"inBytes\":184522656,\"inFlow\":230077,\"lastChangeTime\":\"9 days, 22:43:57.25\",\"lastInBytes\":184522656,\"lastOutBytes\":1901953723,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1901953723,\"outFlow\":236425,\"physicalNum\":\".67486542\",\"portName\":\"GigabitEthernet1/0/13\",\"speed\":1000000000,\"upDown\":1},{\"flow\":611362,\"inBytes\":440166297,\"inFlow\":430427,\"lastChangeTime\":\"9 days, 22:47:11.49\",\"lastInBytes\":440166297,\"lastOutBytes\":1540365786,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1540365786,\"outFlow\":180935,\"physicalNum\":\".67486606\",\"portName\":\"GigabitEthernet1/0/14\",\"speed\":1000000000,\"upDown\":1},{\"flow\":53945,\"inBytes\":2570927949,\"inFlow\":20052,\"lastChangeTime\":\"9 days, 22:56:46.37\",\"lastInBytes\":2570927949,\"lastOutBytes\":3650501747,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3650501747,\"outFlow\":33892,\"physicalNum\":\".67486670\",\"portName\":\"GigabitEthernet1/0/15\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67486734\",\"portName\":\"GigabitEthernet1/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14465,\"inBytes\":136835946,\"inFlow\":0,\"lastChangeTime\":\"52 days, 0:37:42.02\",\"lastInBytes\":136835946,\"lastOutBytes\":2581397860,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2581397860,\"outFlow\":14465,\"physicalNum\":\".67486798\",\"portName\":\"GigabitEthernet1/0/17\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1625563,\"inBytes\":2202278179,\"inFlow\":17523,\"lastChangeTime\":\"45 days, 3:09:32.63\",\"lastInBytes\":2202278179,\"lastOutBytes\":2959256956,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2959256956,\"outFlow\":1608039,\"physicalNum\":\".67486862\",\"portName\":\"GigabitEthernet1/0/18\",\"speed\":1000000000,\"upDown\":1},{\"flow\":1814843,\"inBytes\":1906219648,\"inFlow\":28799,\"lastChangeTime\":\"264 days, 21:22:16.45\",\"lastInBytes\":1906219648,\"lastOutBytes\":974881334,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":974881334,\"outFlow\":1786043,\"physicalNum\":\".67486926\",\"portName\":\"GigabitEthernet1/0/19\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":4256866463,\"inFlow\":0,\"lastChangeTime\":\"286 days, 0:32:10.37\",\"lastInBytes\":4256866463,\"lastOutBytes\":1550770510,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1550770510,\"outFlow\":0,\"physicalNum\":\".67486990\",\"portName\":\"GigabitEthernet1/0/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7723782,\"inBytes\":1584736875,\"inFlow\":7112352,\"lastChangeTime\":\"287 days, 1:15:19.73\",\"lastInBytes\":1584736875,\"lastOutBytes\":1497594491,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1497594491,\"outFlow\":611430,\"physicalNum\":\".67487054\",\"portName\":\"GigabitEthernet1/0/21\",\"speed\":1000000000,\"upDown\":1},{\"flow\":28503,\"inBytes\":2680475759,\"inFlow\":27608,\"lastChangeTime\":\"273 days, 13:22:25.33\",\"lastInBytes\":2680475759,\"lastOutBytes\":4249541855,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4249541855,\"outFlow\":894,\"physicalNum\":\".67487118\",\"portName\":\"GigabitEthernet1/0/22\",\"speed\":100000000,\"upDown\":1},{\"flow\":0,\"inBytes\":2379218788,\"inFlow\":0,\"lastChangeTime\":\"278 days, 20:45:19.19\",\"lastInBytes\":2379218788,\"lastOutBytes\":1439194730,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1439194730,\"outFlow\":0,\"physicalNum\":\".67487182\",\"portName\":\"GigabitEthernet1/0/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1405504,\"inBytes\":1043857861,\"inFlow\":120177,\"lastChangeTime\":\"13 days, 3:22:07.55\",\"lastInBytes\":1043857861,\"lastOutBytes\":359502939,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":359502939,\"outFlow\":1285326,\"physicalNum\":\".67487246\",\"portName\":\"GigabitEthernet1/0/24\",\"speed\":1000000000,\"upDown\":1},{\"flow\":653345,\"inBytes\":2725963949,\"inFlow\":9384,\"lastChangeTime\":\"287 days, 1:36:04.85\",\"lastInBytes\":2725963949,\"lastOutBytes\":2559760159,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2559760159,\"outFlow\":643961,\"physicalNum\":\".67487310\",\"portName\":\"GigabitEthernet1/0/25\",\"speed\":1000000000,\"upDown\":1},{\"flow\":19449,\"inBytes\":3427272927,\"inFlow\":2284,\"lastChangeTime\":\"288 days, 21:42:14.47\",\"lastInBytes\":3427272927,\"lastOutBytes\":3542055157,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3542055157,\"outFlow\":17165,\"physicalNum\":\".67487374\",\"portName\":\"GigabitEthernet1/0/26\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":407056090,\"inFlow\":0,\"lastChangeTime\":\"278 days, 2:29:56.58\",\"lastInBytes\":407056090,\"lastOutBytes\":1846756282,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1846756282,\"outFlow\":0,\"physicalNum\":\".67487438\",\"portName\":\"GigabitEthernet1/0/27\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14465,\"inBytes\":46724,\"inFlow\":0,\"lastChangeTime\":\"286 days, 21:52:22.96\",\"lastInBytes\":46724,\"lastOutBytes\":1389974059,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1389974059,\"outFlow\":14465,\"physicalNum\":\".67487502\",\"portName\":\"GigabitEthernet1/0/28\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14465,\"inBytes\":501080758,\"inFlow\":42,\"lastChangeTime\":\"156 days, 19:35:53.01\",\"lastInBytes\":501080758,\"lastOutBytes\":889805912,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":889805912,\"outFlow\":14423,\"physicalNum\":\".67487566\",\"portName\":\"GigabitEthernet1/0/29\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14465,\"inBytes\":878,\"inFlow\":0,\"lastChangeTime\":\"286 days, 21:50:57.40\",\"lastInBytes\":878,\"lastOutBytes\":1383310402,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1383310402,\"outFlow\":14465,\"physicalNum\":\".67487630\",\"portName\":\"GigabitEthernet1/0/30\",\"speed\":1000000000,\"upDown\":1},{\"flow\":14465,\"inBytes\":508112858,\"inFlow\":42,\"lastChangeTime\":\"286 days, 21:49:50.57\",\"lastInBytes\":508112858,\"lastOutBytes\":875120712,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":875120712,\"outFlow\":14423,\"physicalNum\":\".67487694\",\"portName\":\"GigabitEthernet1/0/31\",\"speed\":1000000000,\"upDown\":1},{\"flow\":374041,\"inBytes\":3487134607,\"inFlow\":312525,\"lastChangeTime\":\"285 days, 0:38:11.83\",\"lastInBytes\":3487134607,\"lastOutBytes\":1073285921,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1073285921,\"outFlow\":61516,\"physicalNum\":\".67487758\",\"portName\":\"GigabitEthernet1/0/32\",\"speed\":100000000,\"upDown\":1},{\"flow\":79812,\"inBytes\":2903599702,\"inFlow\":35577,\"lastChangeTime\":\"286 days, 0:37:22.95\",\"lastInBytes\":2903599702,\"lastOutBytes\":2840226962,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2840226962,\"outFlow\":44235,\"physicalNum\":\".67487822\",\"portName\":\"GigabitEthernet1/0/33\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1911541646,\"inFlow\":0,\"lastChangeTime\":\"286 days, 0:32:10.48\",\"lastInBytes\":1911541646,\"lastOutBytes\":3732469531,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3732469531,\"outFlow\":0,\"physicalNum\":\".67487886\",\"portName\":\"GigabitEthernet1/0/34\",\"speed\":1000000000,\"upDown\":2},{\"flow\":115365,\"inBytes\":815924521,\"inFlow\":60859,\"lastChangeTime\":\"293 days, 13:41:29.79\",\"lastInBytes\":815924521,\"lastOutBytes\":4072810495,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":4072810495,\"outFlow\":54505,\"physicalNum\":\".67487950\",\"portName\":\"GigabitEthernet1/0/35\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":1113668,\"inFlow\":0,\"lastChangeTime\":\"285 days, 0:02:46.59\",\"lastInBytes\":1113668,\"lastOutBytes\":62337454,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":62337454,\"outFlow\":0,\"physicalNum\":\".67488014\",\"portName\":\"GigabitEthernet1/0/36\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":2756665757,\"inFlow\":0,\"lastChangeTime\":\"98 days, 20:15:17.36\",\"lastInBytes\":2756665757,\"lastOutBytes\":3251600119,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":3251600119,\"outFlow\":0,\"physicalNum\":\".67488078\",\"portName\":\"GigabitEthernet1/0/37\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":47453070,\"inFlow\":0,\"lastChangeTime\":\"9 days, 22:43:53.43\",\"lastInBytes\":47453070,\"lastOutBytes\":417615475,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":417615475,\"outFlow\":0,\"physicalNum\":\".67488142\",\"portName\":\"GigabitEthernet1/0/38\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":3484268962,\"inFlow\":0,\"lastChangeTime\":\"9 days, 22:47:07.78\",\"lastInBytes\":3484268962,\"lastOutBytes\":2027683176,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2027683176,\"outFlow\":0,\"physicalNum\":\".67488206\",\"portName\":\"GigabitEthernet1/0/39\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":212625121,\"inFlow\":0,\"lastChangeTime\":\"9 days, 22:33:36.50\",\"lastInBytes\":212625121,\"lastOutBytes\":1482955912,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":1482955912,\"outFlow\":0,\"physicalNum\":\".67488270\",\"portName\":\"GigabitEthernet1/0/40\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":401959039,\"inFlow\":0,\"lastChangeTime\":\"9 days, 22:40:03.28\",\"lastInBytes\":401959039,\"lastOutBytes\":481745450,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":481745450,\"outFlow\":0,\"physicalNum\":\".67488334\",\"portName\":\"GigabitEthernet1/0/41\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488398\",\"portName\":\"GigabitEthernet1/0/42\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488462\",\"portName\":\"GigabitEthernet1/0/43\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488526\",\"portName\":\"GigabitEthernet1/0/44\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488590\",\"portName\":\"GigabitEthernet1/0/45\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67488654\",\"portName\":\"GigabitEthernet1/0/46\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":168,\"inFlow\":0,\"lastChangeTime\":\"2:40:10.13\",\"lastInBytes\":168,\"lastOutBytes\":2140834,\"opticalBiasCurrent\":-255,\"opticalReceivePower\":-1,\"opticalTemperature\":-255,\"opticalTransmitPower\":-1,\"opticalVoltage\":-255,\"outBytes\":2140834,\"outFlow\":0,\"physicalNum\":\".67488718\",\"portName\":\"GigabitEthernet1/0/47\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14829,\"inBytes\":349400138,\"inFlow\":271,\"lastChangeTime\":\"73 days, 1:25:08.29\",\"lastInBytes\":349400138,\"lastOutBytes\":3257501568,\"opticalBiasCurrent\":15984,\"opticalReceivePower\":154,\"opticalTemperature\":42,\"opticalTransmitPower\":240,\"opticalVoltage\":3342,\"outBytes\":3257501568,\"outFlow\":14558,\"physicalNum\":\".67764238\",\"portName\":\"GigabitEthernet2/1/0\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10706,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":253,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764302\",\"portName\":\"GigabitEthernet2/1/1\",\"speed\":1000000000,\"upDown\":2},{\"flow\":36189153,\"inBytes\":1927083209,\"inFlow\":499486,\"lastChangeTime\":\"147 days, 1:48:14.66\",\"lastInBytes\":1927083209,\"lastOutBytes\":1736046672,\"opticalBiasCurrent\":10123,\"opticalReceivePower\":132,\"opticalTemperature\":45,\"opticalTransmitPower\":259,\"opticalVoltage\":3316,\"outBytes\":1736046672,\"outFlow\":35689667,\"physicalNum\":\".67764366\",\"portName\":\"GigabitEthernet2/1/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11154,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":240,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764430\",\"portName\":\"GigabitEthernet2/1/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13227,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":279,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764494\",\"portName\":\"GigabitEthernet2/1/4\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11114,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":240,\"opticalVoltage\":3340,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764558\",\"portName\":\"GigabitEthernet2/1/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10428,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":257,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764622\",\"portName\":\"GigabitEthernet2/1/6\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":12750,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":282,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764686\",\"portName\":\"GigabitEthernet2/1/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10729,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":255,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764750\",\"portName\":\"GigabitEthernet2/1/8\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13289,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":282,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764814\",\"portName\":\"GigabitEthernet2/1/9\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17496,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":247,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764878\",\"portName\":\"GigabitEthernet2/1/10\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":17280,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":250,\"opticalVoltage\":3272,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67764942\",\"portName\":\"GigabitEthernet2/1/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10185,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":249,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765006\",\"portName\":\"GigabitEthernet2/1/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10821,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":247,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765070\",\"portName\":\"GigabitEthernet2/1/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10571,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":258,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765134\",\"portName\":\"GigabitEthernet2/1/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10706,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":254,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765198\",\"portName\":\"GigabitEthernet2/1/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":14472,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":244,\"opticalVoltage\":3308,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765262\",\"portName\":\"GigabitEthernet2/1/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10413,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":239,\"opticalVoltage\":3312,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765326\",\"portName\":\"GigabitEthernet2/1/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":16847,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":241,\"opticalVoltage\":3282,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765390\",\"portName\":\"GigabitEthernet2/1/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10512,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":254,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765454\",\"portName\":\"GigabitEthernet2/1/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10741,\"opticalReceivePower\":0,\"opticalTemperature\":38,\"opticalTransmitPower\":242,\"opticalVoltage\":3324,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765518\",\"portName\":\"GigabitEthernet2/1/20\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10416,\"opticalReceivePower\":0,\"opticalTemperature\":40,\"opticalTransmitPower\":250,\"opticalVoltage\":3316,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765582\",\"portName\":\"GigabitEthernet2/1/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":19224,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":263,\"opticalVoltage\":3306,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765646\",\"portName\":\"GigabitEthernet2/1/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10538,\"opticalReceivePower\":0,\"opticalTemperature\":37,\"opticalTransmitPower\":246,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67765710\",\"portName\":\"GigabitEthernet2/1/23\",\"speed\":1000000000,\"upDown\":2},{\"flow\":59819514,\"inBytes\":3390249628,\"inFlow\":58797037,\"lastChangeTime\":\"0:06:25.49\",\"lastInBytes\":3390249628,\"lastOutBytes\":1069746796,\"opticalBiasCurrent\":31649,\"opticalReceivePower\":473,\"opticalTemperature\":41,\"opticalTransmitPower\":558,\"opticalVoltage\":3262,\"outBytes\":1069746796,\"outFlow\":1022477,\"physicalNum\":\".67747854\",\"portName\":\"XGigabitEthernet2/0/0\",\"speed\":4294967295,\"upDown\":1},{\"flow\":70869721,\"inBytes\":142540324,\"inFlow\":67099285,\"lastChangeTime\":\"0:06:26.07\",\"lastInBytes\":142540324,\"lastOutBytes\":1904116077,\"opticalBiasCurrent\":31409,\"opticalReceivePower\":613,\"opticalTemperature\":40,\"opticalTransmitPower\":598,\"opticalVoltage\":3272,\"outBytes\":1904116077,\"outFlow\":3770436,\"physicalNum\":\".67747918\",\"portName\":\"XGigabitEthernet2/0/1\",\"speed\":4294967295,\"upDown\":1},{\"flow\":42131202,\"inBytes\":3287376649,\"inFlow\":95679,\"lastChangeTime\":\"52 days, 0:37:00.66\",\"lastInBytes\":3287376649,\"lastOutBytes\":1656786643,\"opticalBiasCurrent\":9939,\"opticalReceivePower\":1059,\"opticalTemperature\":45,\"opticalTransmitPower\":247,\"opticalVoltage\":3284,\"outBytes\":1656786643,\"outFlow\":42035523,\"physicalNum\":\".67747982\",\"portName\":\"XGigabitEthernet2/0/2\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11060,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":255,\"opticalVoltage\":3292,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748046\",\"portName\":\"XGigabitEthernet2/0/3\",\"speed\":1000000000,\"upDown\":2},{\"flow\":42999001,\"inBytes\":4165768292,\"inFlow\":1451290,\"lastChangeTime\":\"287 days, 1:32:10.39\",\"lastInBytes\":4165768292,\"lastOutBytes\":2256293153,\"opticalBiasCurrent\":36450,\"opticalReceivePower\":552,\"opticalTemperature\":45,\"opticalTransmitPower\":562,\"opticalVoltage\":3292,\"outBytes\":2256293153,\"outFlow\":41547710,\"physicalNum\":\".67748110\",\"portName\":\"XGigabitEthernet2/0/4\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11039,\"opticalReceivePower\":0,\"opticalTemperature\":46,\"opticalTransmitPower\":256,\"opticalVoltage\":3300,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748174\",\"portName\":\"XGigabitEthernet2/0/5\",\"speed\":1000000000,\"upDown\":2},{\"flow\":1318817,\"inBytes\":3710449581,\"inFlow\":1318148,\"lastChangeTime\":\"64 days, 1:37:18.20\",\"lastInBytes\":3710449581,\"lastOutBytes\":1896664764,\"opticalBiasCurrent\":35071,\"opticalReceivePower\":693,\"opticalTemperature\":45,\"opticalTransmitPower\":478,\"opticalVoltage\":3286,\"outBytes\":1896664764,\"outFlow\":668,\"physicalNum\":\".67748238\",\"portName\":\"XGigabitEthernet2/0/6\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11454,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":247,\"opticalVoltage\":3279,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748302\",\"portName\":\"XGigabitEthernet2/0/7\",\"speed\":1000000000,\"upDown\":2},{\"flow\":7381943,\"inBytes\":724875511,\"inFlow\":7379475,\"lastChangeTime\":\"66 days, 1:12:01.69\",\"lastInBytes\":724875511,\"lastOutBytes\":1643277589,\"opticalBiasCurrent\":33479,\"opticalReceivePower\":490,\"opticalTemperature\":44,\"opticalTransmitPower\":653,\"opticalVoltage\":3287,\"outBytes\":1643277589,\"outFlow\":2468,\"physicalNum\":\".67748366\",\"portName\":\"XGigabitEthernet2/0/8\",\"speed\":4294967295,\"upDown\":1},{\"flow\":14302,\"inBytes\":205167347,\"inFlow\":12,\"lastChangeTime\":\"161 days, 1:15:34.74\",\"lastInBytes\":205167347,\"lastOutBytes\":3395577932,\"opticalBiasCurrent\":6407,\"opticalReceivePower\":554,\"opticalTemperature\":45,\"opticalTransmitPower\":528,\"opticalVoltage\":3261,\"outBytes\":3395577932,\"outFlow\":14289,\"physicalNum\":\".67748430\",\"portName\":\"XGigabitEthernet2/0/9\",\"speed\":4294967295,\"upDown\":1},{\"flow\":57879,\"inBytes\":2646057381,\"inFlow\":14855,\"lastChangeTime\":\"161 days, 1:16:36.08\",\"lastInBytes\":2646057381,\"lastOutBytes\":896789026,\"opticalBiasCurrent\":6480,\"opticalReceivePower\":571,\"opticalTemperature\":42,\"opticalTransmitPower\":522,\"opticalVoltage\":3261,\"outBytes\":896789026,\"outFlow\":43023,\"physicalNum\":\".67748494\",\"portName\":\"XGigabitEthernet2/0/10\",\"speed\":4294967295,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13131,\"opticalReceivePower\":0,\"opticalTemperature\":39,\"opticalTransmitPower\":293,\"opticalVoltage\":3262,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748558\",\"portName\":\"XGigabitEthernet2/0/11\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10850,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":253,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748622\",\"portName\":\"XGigabitEthernet2/0/12\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10899,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":260,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748686\",\"portName\":\"XGigabitEthernet2/0/13\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11126,\"opticalReceivePower\":0,\"opticalTemperature\":50,\"opticalTransmitPower\":257,\"opticalVoltage\":3345,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748750\",\"portName\":\"XGigabitEthernet2/0/14\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11055,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":250,\"opticalVoltage\":3332,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748814\",\"portName\":\"XGigabitEthernet2/0/15\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13578,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":274,\"opticalVoltage\":3302,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748878\",\"portName\":\"XGigabitEthernet2/0/16\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10704,\"opticalReceivePower\":0,\"opticalTemperature\":45,\"opticalTransmitPower\":249,\"opticalVoltage\":3353,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67748942\",\"portName\":\"XGigabitEthernet2/0/17\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":11154,\"opticalReceivePower\":0,\"opticalTemperature\":44,\"opticalTransmitPower\":255,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749006\",\"portName\":\"XGigabitEthernet2/0/18\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13003,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":268,\"opticalVoltage\":3294,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749070\",\"portName\":\"XGigabitEthernet2/0/19\",\"speed\":1000000000,\"upDown\":2},{\"flow\":14507,\"inBytes\":1068829719,\"inFlow\":41,\"lastChangeTime\":\"10 days, 1:55:29.49\",\"lastInBytes\":1068829719,\"lastOutBytes\":1803424335,\"opticalBiasCurrent\":17063,\"opticalReceivePower\":218,\"opticalTemperature\":45,\"opticalTransmitPower\":241,\"opticalVoltage\":3362,\"outBytes\":1803424335,\"outFlow\":14465,\"physicalNum\":\".67749134\",\"portName\":\"XGigabitEthernet2/0/20\",\"speed\":1000000000,\"upDown\":1},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":13513,\"opticalReceivePower\":0,\"opticalTemperature\":41,\"opticalTransmitPower\":245,\"opticalVoltage\":3333,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749198\",\"portName\":\"XGigabitEthernet2/0/21\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":10687,\"opticalReceivePower\":0,\"opticalTemperature\":42,\"opticalTransmitPower\":247,\"opticalVoltage\":3319,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749262\",\"portName\":\"XGigabitEthernet2/0/22\",\"speed\":1000000000,\"upDown\":2},{\"flow\":0,\"inBytes\":0,\"inFlow\":0,\"lastChangeTime\":\"0:00:00.00\",\"lastInBytes\":0,\"lastOutBytes\":0,\"opticalBiasCurrent\":15767,\"opticalReceivePower\":0,\"opticalTemperature\":43,\"opticalTransmitPower\":237,\"opticalVoltage\":3303,\"outBytes\":0,\"outFlow\":0,\"physicalNum\":\".67749326\",\"portName\":\"XGigabitEthernet2/0/23\",\"speed\":1000000000,\"upDown\":2}],\"timestamp\":\"2026-02-02T14:38:25.310290000\"}}", + "lastDiagTime": "2026-02-02 14:38:54", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "220", + "community": "shmetro", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ], + "ndmVideoServer": [ + { + "id": "585048535116834817", + "createdBy": "2", + "createdTime": "2025-03-07 14:21:02", + "updatedBy": null, + "updatedTime": "2026-02-02 14:35:15", + "echoMap": {}, + "deviceId": "1075110001", + "name": "occ中心视频服务器", + "manufacturer": "H3C", + "state": true, + "model": "R4900G5", + "ipAddress": "10.18.128.6", + "manageUrl": "", + "manageUsername": "ittc", + "managePassword": "ittc@123456", + "gbCode": "", + "gbPort": null, + "gbDomain": "", + "gb28181Enabled": false, + "diagFlag": "0", + "diagParam": "", + "diagFormat": "", + "lastDiagInfo": "{\"commInfo\":{\"磁盘使用率\":\"1.38\",\"内存使用率\":\"4.15\",\"CPU使用率\":\"6.00\",\"系统运行时间\":\"12 days, 20:48:59.45\"},\"ethInfo\":{\"adminStatus\":\"1\",\"desc\":\"Intel Corporation I350 Gigabit Network Connection\",\"ifType\":\"6\",\"inDiscards\":\"16316221\",\"inErrors\":\"0\",\"inNUcastPkts\":\"30875401\",\"inOctets\":\"3625475736\",\"inUcastPkts\":\"3151452104\",\"inUnknownProtos\":\"0\",\"index\":\"2\",\"lastChange\":\"213 days, 20:54:04.69\",\"mTU\":\"1500\",\"macAddress\":\"f4:e9:75:21:a7:cf\",\"operStatus\":\"1\",\"outDiscards\":\"0\",\"outErrors\":\"0\",\"outNUcastPkts\":\"0\",\"outOctets\":\"856837974\",\"outQLen\":\"0\",\"outUcastPkts\":\"2229299514\",\"specific\":\"0.0\",\"speed\":\"1000000000\"},\"ipInfo\":{\"broadcastAddress\":\"1\",\"iPAddress\":\"10.18.128.6\",\"index\":\"2\",\"mASK\":\"255.255.255.0\",\"reasmMaxSize\":\"0\"}}", + "lastDiagTime": "2026-02-02 14:35:15", + "icmpEnabled": true, + "description": "", + "deviceStatus": "10", + "deviceType": "401", + "community": "public", + "frontendConfig": null, + "linkDescription": null, + "snmpEnabled": true + } + ] + } + } +} \ No newline at end of file diff --git a/docs/data/ndm-station-store.json b/docs/data/ndm-station-store.json new file mode 100644 index 0000000..4b56bdc --- /dev/null +++ b/docs/data/ndm-station-store.json @@ -0,0 +1,203 @@ +{ + "stations": [ + { + "code": "1075", + "name": "吴中路控制中心", + "online": true, + "ip": "10.18.128.10", + "occ": true + }, + { + "code": "1001", + "name": "虹桥火车站", + "online": true, + "ip": "10.18.129.10" + }, + { + "code": "1002", + "name": "虹桥2号航站楼", + "online": true, + "ip": "10.18.131.10" + }, + { + "code": "1003", + "name": "虹桥一号航站楼", + "online": true, + "ip": "10.18.133.10" + }, + { + "code": "1004", + "name": "上海动物园", + "online": true, + "ip": "10.18.135.10" + }, + { + "code": "1005", + "name": "龙溪路", + "online": true, + "ip": "10.18.137.10" + }, + { + "code": "1006", + "name": "水城路", + "online": true, + "ip": "10.18.139.10" + }, + { + "code": "1007", + "name": "伊犁路", + "online": true, + "ip": "10.18.141.10" + }, + { + "code": "1008", + "name": "宋园路", + "online": true, + "ip": "10.18.143.10" + }, + { + "code": "1009", + "name": "虹桥路", + "online": true, + "ip": "10.18.145.10" + }, + { + "code": "1010", + "name": "交通大学", + "online": true, + "ip": "10.18.147.10" + }, + { + "code": "1011", + "name": "图书馆", + "online": true, + "ip": "10.18.149.10" + }, + { + "code": "1012", + "name": "陕西南路", + "online": true, + "ip": "10.18.151.10" + }, + { + "code": "1013", + "name": "新天地", + "online": true, + "ip": "10.18.153.10" + }, + { + "code": "1014", + "name": "老西门", + "online": true, + "ip": "10.18.155.10" + }, + { + "code": "1015", + "name": "豫园", + "online": true, + "ip": "10.18.157.10" + }, + { + "code": "1016", + "name": "南京东路", + "online": true, + "ip": "10.18.159.10" + }, + { + "code": "1017", + "name": "天潼路", + "online": true, + "ip": "10.18.161.10" + }, + { + "code": "1018", + "name": "四川北路", + "online": true, + "ip": "10.18.163.10" + }, + { + "code": "1019", + "name": "海伦路", + "online": true, + "ip": "10.18.165.10" + }, + { + "code": "1020", + "name": "邮电新村", + "online": true, + "ip": "10.18.167.10" + }, + { + "code": "1021", + "name": "四平路", + "online": true, + "ip": "10.18.169.10" + }, + { + "code": "1022", + "name": "同济大学", + "online": true, + "ip": "10.18.171.10" + }, + { + "code": "1023", + "name": "国权路", + "online": true, + "ip": "10.18.173.10" + }, + { + "code": "1024", + "name": "五角场", + "online": true, + "ip": "10.18.175.10" + }, + { + "code": "1025", + "name": "江湾体育场", + "online": true, + "ip": "10.18.177.10" + }, + { + "code": "1026", + "name": "三门路", + "online": true, + "ip": "10.18.179.10" + }, + { + "code": "1027", + "name": "殷高东路", + "online": true, + "ip": "10.18.181.10" + }, + { + "code": "1028", + "name": "新江湾城", + "online": true, + "ip": "10.18.183.10" + }, + { + "code": "1029", + "name": "航中路", + "online": true, + "ip": "10.18.185.10" + }, + { + "code": "1030", + "name": "紫藤路", + "online": true, + "ip": "10.18.187.10" + }, + { + "code": "1031", + "name": "龙柏新村", + "online": true, + "ip": "10.18.189.10" + }, + { + "code": "1032", + "name": "吴中路基地", + "online": true, + "ip": "10.18.244.10" + } + ] +} \ No newline at end of file